In this project, you'll generate your own Seinfeld TV scripts using RNNs. You'll be using part of the Seinfeld dataset of scripts from 9 seasons. The Neural Network you'll build will generate a new ,"fake" TV script, based on patterns it recognizes in this training data.
The data is already provided for you in ./data/Seinfeld_Scripts.txt and you're encouraged to open that file and look at the text.
- As a first step, we'll load in this data and look at some samples.
- Then, you'll be tasked with defining and training an RNN to generate a new script!
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# load in data
import helper
data_dir = './data/Seinfeld_Scripts.txt'
text = helper.load_data(data_dir)
Play around with view_line_range to view different parts of the data. This will give you a sense of the data you'll be working with. You can see, for example, that it is all lowercase text, and each new line of dialogue is separated by a newline character \n.
view_line_range = (0, 100)
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
import numpy as np
print('Dataset Stats')
print('Roughly the number of unique words: {}'.format(len({word: None for word in text.split()})))
lines = text.split('\n')
print('Number of lines: {}'.format(len(lines)))
word_count_line = [len(line.split()) for line in lines]
print('Average number of words in each line: {}'.format(np.average(word_count_line)))
print()
print('The lines {} to {}:'.format(*view_line_range))
print('\n'.join(text.split('\n')[view_line_range[0]:view_line_range[1]]))
Dataset Stats Roughly the number of unique words: 46367 Number of lines: 109233 Average number of words in each line: 5.544240293684143 The lines 0 to 100: jerry: do you know what this is all about? do you know, why were here? to be out, this is out...and out is one of the single most enjoyable experiences of life. people...did you ever hear people talking about we should go out? this is what theyre talking about...this whole thing, were all out now, no one is home. not one person here is home, were all out! there are people trying to find us, they dont know where we are. (on an imaginary phone) did you ring?, i cant find him. where did he go? he didnt tell me where he was going. he must have gone out. you wanna go out you get ready, you pick out the clothes, right? you take the shower, you get all ready, get the cash, get your friends, the car, the spot, the reservation...then youre standing around, what do you do? you go we gotta be getting back. once youre out, you wanna get back! you wanna go to sleep, you wanna get up, you wanna go out again tomorrow, right? where ever you are in life, its my feeling, youve gotta go. jerry: (pointing at georges shirt) see, to me, that button is in the worst possible spot. the second button literally makes or breaks the shirt, look at it. its too high! its in no-mans-land. you look like you live with your mother. george: are you through? jerry: you do of course try on, when you buy? george: yes, it was purple, i liked it, i dont actually recall considering the buttons. jerry: oh, you dont recall? george: (on an imaginary microphone) uh, no, not at this time. jerry: well, senator, id just like to know, what you knew and when you knew it. claire: mr. seinfeld. mr. costanza. george: are, are you sure this is decaf? wheres the orange indicator? claire: its missing, i have to do it in my head decaf left, regular right, decaf left, regular right...its very challenging work. jerry: can you relax, its a cup of coffee. claire is a professional waitress. claire: trust me george. no one has any interest in seeing you on caffeine. george: how come youre not doing the second show tomorrow? jerry: well, theres this uh, woman might be coming in. george: wait a second, wait a second, what coming in, what woman is coming in? jerry: i told you about laura, the girl i met in michigan? george: no, you didnt! jerry: i thought i told you about it, yes, she teaches political science? i met her the night i did the show in lansing... george: ha. jerry: (looks in the creamer) theres no milk in here, what... george: wait wait wait, what is she... (takes the milk can from jerry and puts it on the table) what is she like? jerry: oh, shes really great. i mean, shes got like a real warmth about her and shes really bright and really pretty and uh... the conversation though, i mean, it was... talking with her is like talking with you, but, you know, obviously much better. george: (smiling) so, you know, what, what happened? jerry: oh, nothing happened, you know, but is was great. george: oh, nothing happened, but it was... jerry: yeah. george: this is great! jerry: yeah. george: so, you know, she calls and says she wants to go out with you tomorrow night? god bless! devil you! jerry: yeah, well...not exactly. i mean, she said, you know, she called this morning and said she had to come in for a seminar and maybe well get together. george: (whistles disapprovingly) ho ho ho, had to? had to come in? jerry: yeah, but... george: had to come in and maybe well get together? had to and maybe? jerry: yeah! george: no...no...no, i hate to tell you this. youre not gonna see this woman. jerry: what, are you serious...why, why did she call? george: how do i know, maybe, you know, maybe she wanted to be polite. jerry: to be polite? you are insane! george: all right, all right, i didnt want to tell you this. you wanna know why she called you? jerry: yes! george: youre a back-up, youre a second-line, a just-in-case, a b-plan, a contingency! jerry: oh, i get it, this is about the button. george: claire, claire, youre a woman, right? claire: what gave it away, george? george: uhm...id like to ask you...ask you to analyze a hypothetical phone call, you know, from a female point of view. george: (to claire) now, a woman calls me, all right? claie: uh huh. george: she says she has to come to new york on business... jerry: oh you are beautiful!
The first thing to do to any dataset is pre-processing. Implement the following pre-processing functions below:
To create a word embedding, you first need to transform the words to ids. In this function, create two dictionaries:
vocab_to_intint_to_vocabReturn these dictionaries in the following tuple (vocab_to_int, int_to_vocab)
import problem_unittests as tests
import re
from collections import Counter
def create_lookup_tables(text):
"""
Create lookup tables for vocabulary
:param text: The text of tv scripts split into words
:return: A tuple of dicts (vocab_to_int, int_to_vocab)
"""
# TODO: Implement Function
# word_count = Counter(text)
# sorted_vocab = sorted(word_count, key=word_count.get, reverse=True)
# int_to_vocab = {ii : word for ii, word in enumerate(sorted_vocab)}
# vocab_to_int = {word : ii for ii, word in int_to_vocab.items()}
# return (int_to_vocab, vocab_to_int)
text = set(text)
vocab_to_int = {word: word_id for word_id, word in enumerate(text) }
int_to_vocab = {word_id: word for word, word_id in vocab_to_int.items()}
# return tuple
return (vocab_to_int, int_to_vocab)
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_create_lookup_tables(create_lookup_tables)
Tests Passed
We'll be splitting the script into a word array using spaces as delimiters. However, punctuations like periods and exclamation marks can create multiple ids for the same word. For example, "bye" and "bye!" would generate two different word ids.
Implement the function token_lookup to return a dict that will be used to tokenize symbols like "!" into "||Exclamation_Mark||". Create a dictionary for the following symbols where the symbol is the key and value is the token:
This dictionary will be used to tokenize the symbols and add the delimiter (space) around it. This separates each symbols as its own word, making it easier for the neural network to predict the next word. Make sure you don't use a value that could be confused as a word; for example, instead of using the value "dash", try using something like "||dash||".
def token_lookup():
"""
Generate a dict to turn punctuation into a token.
:return: Tokenized dictionary where the key is the punctuation and the value is the token
"""
# TODO: Implement Function
# Replace punctuation with tokens so we can use them in our model
return {
'.': '||period||',
',': '||comma||',
'"': '||quotemark||',
';': '||semicolon||',
'!': '||exclammark||',
'?': '||questionmark||',
'(': '||leftparen||',
')': '||rightparen||',
'-': '||dash||',
'\n': '||return||'
}
# return punc_dict
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_tokenize(token_lookup)
Tests Passed
Running the code cell below will pre-process all the data and save it to file. You're encouraged to lok at the code for preprocess_and_save_data in the helpers.py file to see what it's doing in detail, but you do not need to change this code.
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# pre-process training data
helper.preprocess_and_save_data(data_dir, token_lookup, create_lookup_tables)
['this', 'is', 'out', '||period||', '||period||', '||period||', 'and', 'out', 'is', 'one', 'of', 'the', 'single', 'most', 'enjoyable', 'experiences', 'of', 'life', '||period||', 'people', '||period||', '||period||', '||period||', 'did', 'you', 'ever', 'hear', 'people', 'talking', 'about', 'we', 'should', 'go', 'out', '||questionmark||', 'this', 'is', 'what', 'theyre', 'talking', 'about', '||period||', '||period||', '||period||', 'this', 'whole', 'thing', '||comma||', 'were', 'all', 'out', 'now', '||comma||', 'no', 'one', 'is', 'home', '||period||', 'not', 'one', 'person', 'here', 'is', 'home', '||comma||', 'were', 'all', 'out', '||exclammark||', 'there', 'are', 'people', 'trying', 'to', 'find', 'us', '||comma||', 'they', 'dont', 'know', 'where', 'we', 'are', '||period||', '||leftparen||', 'on', 'an', 'imaginary', 'phone', '||rightparen||', 'did', 'you', 'ring', '||questionmark||', '||comma||', 'i', 'cant', 'find', 'him', '||period||', 'where', 'did', 'he', 'go', '||questionmark||', 'he', 'didnt', 'tell', 'me', 'where', 'he', 'was', 'going', '||period||', 'he', 'must', 'have', 'gone', 'out', '||period||', 'you', 'wanna', 'go', 'out', 'you', 'get', 'ready', '||comma||', 'you', 'pick', 'out', 'the', 'clothes', '||comma||', 'right', '||questionmark||', 'you', 'take', 'the', 'shower', '||comma||', 'you', 'get', 'all', 'ready', '||comma||', 'get', 'the', 'cash', '||comma||', 'get', 'your', 'friends', '||comma||', 'the', 'car', '||comma||', 'the', 'spot', '||comma||', 'the', 'reservation', '||period||', '||period||', '||period||', 'then', 'youre', 'standing', 'around', '||comma||', 'what', 'do', 'you', 'do', '||questionmark||', 'you', 'go', 'we', 'gotta', 'be', 'getting', 'back', '||period||', 'once', 'youre', 'out', '||comma||', 'you', 'wanna', 'get', 'back', '||exclammark||', 'you', 'wanna', 'go', 'to', 'sleep', '||comma||', 'you', 'wanna', 'get', 'up', '||comma||', 'you', 'wanna', 'go', 'out', 'again', 'tomorrow', '||comma||', 'right', '||questionmark||', 'where', 'ever', 'you', 'are', 'in', 'life', '||comma||', 'its', 'my', 'feeling', '||comma||', 'youve', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'at', 'georges', 'shirt', '||rightparen||', 'see', '||comma||', 'to', 'me', '||comma||', 'that', 'button', 'is', 'in', 'the', 'worst', 'possible', 'spot', '||period||', 'the', 'second', 'button', 'literally', 'makes', 'or', 'breaks', 'the', 'shirt', '||comma||', 'look', 'at', 'it', '||period||', 'its', 'too', 'high', '||exclammark||', 'its', 'in', 'no', '||dash||', 'mans', '||dash||', 'land', '||period||', 'you', 'look', 'like', 'you', 'live', 'with', 'your', 'mother', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'through', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'do', 'of', 'course', 'try', 'on', '||comma||', 'when', 'you', 'buy', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'it', 'was', 'purple', '||comma||', 'i', 'liked', 'it', '||comma||', 'i', 'dont', 'actually', 'recall', 'considering', 'the', 'buttons', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'dont', 'recall', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'an', 'imaginary', 'microphone', '||rightparen||', 'uh', '||comma||', 'no', '||comma||', 'not', 'at', 'this', 'time', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'senator', '||comma||', 'id', 'just', 'like', 'to', 'know', '||comma||', 'what', 'you', 'knew', 'and', 'when', 'you', 'knew', 'it', '||period||', '||return||', '||return||', 'claire:', 'mr', '||period||', 'seinfeld', '||period||', 'mr', '||period||', 'costanza', '||period||', '||return||', '||return||', 'george:', 'are', '||comma||', 'are', 'you', 'sure', 'this', 'is', 'decaf', '||questionmark||', 'wheres', 'the', 'orange', 'indicator', '||questionmark||', '||return||', '||return||', 'claire:', 'its', 'missing', '||comma||', 'i', 'have', 'to', 'do', 'it', 'in', 'my', 'head', 'decaf', 'left', '||comma||', 'regular', 'right', '||comma||', 'decaf', 'left', '||comma||', 'regular', 'right', '||period||', '||period||', '||period||', 'its', 'very', 'challenging', 'work', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'relax', '||comma||', 'its', 'a', 'cup', 'of', 'coffee', '||period||', 'claire', 'is', 'a', 'professional', 'waitress', '||period||', '||return||', '||return||', 'claire:', 'trust', 'me', 'george', '||period||', 'no', 'one', 'has', 'any', 'interest', 'in', 'seeing', 'you', 'on', 'caffeine', '||period||', '||return||', '||return||', 'george:', 'how', 'come', 'youre', 'not', 'doing', 'the', 'second', 'show', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'theres', 'this', 'uh', '||comma||', 'woman', 'might', 'be', 'coming', 'in', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||comma||', 'what', 'coming', 'in', '||comma||', 'what', 'woman', 'is', 'coming', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'about', 'laura', '||comma||', 'the', 'girl', 'i', 'met', 'in', 'michigan', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'didnt', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'i', 'told', 'you', 'about', 'it', '||comma||', 'yes', '||comma||', 'she', 'teaches', 'political', 'science', '||questionmark||', 'i', 'met', 'her', 'the', 'night', 'i', 'did', 'the', 'show', 'in', 'lansing', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'ha', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looks', 'in', 'the', 'creamer', '||rightparen||', 'theres', 'no', 'milk', 'in', 'here', '||comma||', 'what', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'wait', 'wait', 'wait', '||comma||', 'what', 'is', 'she', '||period||', '||period||', '||period||', '||leftparen||', 'takes', 'the', 'milk', 'can', 'from', 'jerry', 'and', 'puts', 'it', 'on', 'the', 'table', '||rightparen||', 'what', 'is', 'she', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'shes', 'really', 'great', '||period||', 'i', 'mean', '||comma||', 'shes', 'got', 'like', 'a', 'real', 'warmth', 'about', 'her', 'and', 'shes', 'really', 'bright', 'and', 'really', 'pretty', 'and', 'uh', '||period||', '||period||', '||period||', 'the', 'conversation', 'though', '||comma||', 'i', 'mean', '||comma||', 'it', 'was', '||period||', '||period||', '||period||', 'talking', 'with', 'her', 'is', 'like', 'talking', 'with', 'you', '||comma||', 'but', '||comma||', 'you', 'know', '||comma||', 'obviously', 'much', 'better', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'so', '||comma||', 'you', 'know', '||comma||', 'what', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'nothing', 'happened', '||comma||', 'you', 'know', '||comma||', 'but', 'is', 'was', 'great', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'nothing', 'happened', '||comma||', 'but', 'it', 'was', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'great', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'know', '||comma||', 'she', 'calls', 'and', 'says', 'she', 'wants', 'to', 'go', 'out', 'with', 'you', 'tomorrow', 'night', '||questionmark||', 'god', 'bless', '||exclammark||', 'devil', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||period||', '||period||', '||period||', 'not', 'exactly', '||period||', 'i', 'mean', '||comma||', 'she', 'said', '||comma||', 'you', 'know', '||comma||', 'she', 'called', 'this', 'morning', 'and', 'said', 'she', 'had', 'to', 'come', 'in', 'for', 'a', 'seminar', 'and', 'maybe', 'well', 'get', 'together', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'whistles', 'disapprovingly', '||rightparen||', 'ho', 'ho', 'ho', '||comma||', 'had', 'to', '||questionmark||', 'had', 'to', 'come', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'had', 'to', 'come', 'in', 'and', 'maybe', 'well', 'get', 'together', '||questionmark||', 'had', 'to', 'and', 'maybe', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', '||period||', 'no', '||period||', '||period||', '||period||', 'no', '||comma||', 'i', 'hate', 'to', 'tell', 'you', 'this', '||period||', 'youre', 'not', 'gonna', 'see', 'this', 'woman', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'are', 'you', 'serious', '||period||', '||period||', '||period||', 'why', '||comma||', 'why', 'did', 'she', 'call', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'do', 'i', 'know', '||comma||', 'maybe', '||comma||', 'you', 'know', '||comma||', 'maybe', 'she', 'wanted', 'to', 'be', 'polite', '||period||', '||return||', '||return||', 'jerry:', 'to', 'be', 'polite', '||questionmark||', 'you', 'are', 'insane', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'i', 'didnt', 'want', 'to', 'tell', 'you', 'this', '||period||', 'you', 'wanna', 'know', 'why', 'she', 'called', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', '||return||', '||return||', 'george:', 'youre', 'a', 'back', '||dash||', 'up', '||comma||', 'youre', 'a', 'second', '||dash||', 'line', '||comma||', 'a', 'just', '||dash||', 'in', '||dash||', 'case', '||comma||', 'a', 'b', '||dash||', 'plan', '||comma||', 'a', 'contingency', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'get', 'it', '||comma||', 'this', 'is', 'about', 'the', 'button', '||period||', '||return||', '||return||', 'george:', 'claire', '||comma||', 'claire', '||comma||', 'youre', 'a', 'woman', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'claire:', 'what', 'gave', 'it', 'away', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'uhm', '||period||', '||period||', '||period||', 'id', 'like', 'to', 'ask', 'you', '||period||', '||period||', '||period||', 'ask', 'you', 'to', 'analyze', 'a', 'hypothetical', 'phone', 'call', '||comma||', 'you', 'know', '||comma||', 'from', 'a', 'female', 'point', 'of', 'view', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'claire', '||rightparen||', 'now', '||comma||', 'a', 'woman', 'calls', 'me', '||comma||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'claie:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', 'she', 'says', 'she', 'has', 'to', 'come', 'to', 'new', 'york', 'on', 'business', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'you', 'are', 'beautiful', '||exclammark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'and', '||comma||', 'and', 'maybe', 'shell', 'see', 'me', 'when', 'she', 'gets', 'there', '||comma||', 'does', 'this', 'woman', 'intend', 'to', 'spend', 'time', 'with', 'me', '||questionmark||', '||return||', '||return||', 'claire:', 'id', 'have', 'to', 'say', '||comma||', 'uh', '||comma||', 'no', '||period||', '||return||', '||return||', '||leftparen||', 'george', 'shows', 'his', 'note', '||dash||', 'block', 'to', 'jerry', '||semicolon||', 'it', 'says', 'very', 'largely:', 'no', '||period||', '||rightparen||', '||return||', '||return||', 'claire:', 'to', 'be', 'polite', '||period||', '||return||', '||return||', 'george:', 'to', 'be', 'polite', '||period||', 'i', 'rest', 'my', 'case', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'did', 'you', 'have', 'fun', '||questionmark||', 'you', 'have', 'no', 'idea', '||comma||', 'what', 'youre', 'talking', 'about', '||comma||', 'now', '||comma||', 'come', 'on', '||comma||', 'come', 'with', 'me', '||period||', '||leftparen||', 'stands', 'up', '||rightparen||', 'i', 'gotta', 'go', 'get', 'my', 'stuff', 'out', 'of', 'the', 'dryer', 'anyway', '||period||', '||return||', '||return||', 'george:', 'im', 'not', 'gonna', 'watch', 'you', 'do', 'laundry', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||comma||', 'be', 'a', 'come', '||dash||', 'with', 'guy', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'im', 'tired', '||period||', '||return||', '||return||', 'claire:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'dont', 'worry', '||comma||', 'i', 'gave', 'him', 'a', 'little', 'caffeine', '||period||', 'hell', 'perk', 'up', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'panicking', '||rightparen||', 'right', '||comma||', 'i', 'knew', 'i', 'felt', 'something', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', 'i', 'have', 'to', 'tell', 'you', 'something', '||period||', 'this', 'is', 'the', 'dullest', 'moment', 'ive', 'ever', 'experienced', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'look', 'at', 'this', 'guy', '||period||', 'look', '||comma||', 'hes', 'got', 'everything', '||comma||', 'hes', 'got', 'detergents', '||comma||', 'sprays', '||comma||', 'fabric', 'softeners', '||period||', 'this', 'is', 'not', 'his', 'first', 'load', '||period||', '||return||', '||return||', 'george:', 'i', 'need', 'a', 'break', '||comma||', 'jerry', '||comma||', 'you', 'know', '||period||', 'i', 'gotta', 'get', 'out', 'of', 'the', 'city', '||period||', 'i', 'feel', 'so', 'cramped', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'didnt', 'even', 'hear', 'how', 'she', 'sounded', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'laura', '||period||', '||return||', '||return||', 'george:', 'i', 'cant', 'believe', '||dash||', '||leftparen||', 'falls', 'on', 'his', 'knees', '||rightparen||', 'we', 'already', 'discussed', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'how', 'could', 'you', 'be', 'so', 'sure', '||questionmark||', '||return||', '||return||', 'george:', 'cause', 'its', 'signals', '||comma||', 'jerry', '||comma||', 'its', 'signals', '||exclammark||', '||leftparen||', 'snapping', 'his', 'fingers', '||rightparen||', 'dont', 'you', '||dash||', 'all', 'right', '||period||', 'did', 'she', 'even', 'ask', 'you', '||comma||', 'what', 'you', 'were', 'doing', 'tomorrow', 'night', '||comma||', 'if', 'you', 'were', 'busy', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'she', 'calls', 'you', 'today', 'and', 'she', 'doesnt', 'make', 'a', 'plan', 'for', 'tomorrow', '||questionmark||', 'what', 'is', 'that', '||questionmark||', 'its', 'saturday', 'night', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||questionmark||', 'its', 'ridiculous', '||exclammark||', 'you', 'dont', 'even', 'know', 'what', 'hotel', 'shes', 'staying', 'at', '||comma||', 'you', 'cant', 'call', 'her', '||period||', 'thats', 'a', 'signal', '||comma||', 'jerry', '||comma||', 'thats', 'a', 'signal', '||exclammark||', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', 'signal', '||exclammark||', '||return||', '||return||', 'jerry:', 'maybe', 'youre', 'right', '||period||', '||return||', '||return||', 'george:', 'maybe', 'im', 'right', '||questionmark||', 'of', 'course', 'im', 'right', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'insane', '||period||', 'you', 'know', '||comma||', 'i', 'dont', 'even', 'know', 'where', 'shes', 'staying', '||exclammark||', 'she', '||comma||', 'shes', 'not', 'gonna', 'call', 'me', '||comma||', 'this', 'is', 'unbelievable', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'listen', '||comma||', 'your', 'stuff', 'has', 'to', 'be', 'done', 'by', 'now', '||comma||', 'why', 'dont', 'you', 'just', 'see', 'if', 'its', 'dry', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'no', 'no', '||comma||', 'dont', 'interrupt', 'the', 'cycle', '||period||', 'the', 'machine', 'is', 'working', '||comma||', 'it', '||comma||', 'it', 'knows', 'what', 'its', 'doing', '||period||', 'just', 'let', 'it', 'finish', '||period||', '||return||', '||return||', 'george:', 'youre', 'gonna', 'over', '||dash||', 'dry', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', '||comma||', 'you', 'cant', 'over', '||dash||', 'dry', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'same', 'as', 'you', 'cant', 'over', '||dash||', 'wet', '||period||', 'you', 'see', '||comma||', 'once', 'something', 'is', 'wet', '||comma||', 'its', 'wet', '||period||', 'same', 'thing', 'with', 'death', '||period||', 'like', 'once', 'you', 'die', 'youre', 'dead', '||comma||', 'right', '||questionmark||', 'lets', 'say', 'you', 'drop', 'dead', 'and', 'i', 'shoot', 'you', '||period||', 'youre', 'not', 'gonna', 'die', 'again', '||comma||', 'youre', 'already', 'dead', '||period||', 'you', 'cant', 'over', '||dash||', 'die', '||comma||', 'you', 'cant', 'over', '||dash||', 'dry', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'other', 'laundry', 'patrons', '||rightparen||', 'any', 'questions', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'could', 'she', 'not', 'tell', 'me', 'where', 'she', 'was', 'staying', '||questionmark||', '||return||', '||return||', 'george:', 'look', 'at', 'that', '||period||', 'theyre', 'done', '||exclammark||', '||return||', '||return||', 'jerry:', 'laundry', 'day', 'is', 'the', 'only', 'exciting', 'day', 'in', 'the', 'life', 'of', 'clothes', '||period||', 'it', 'is', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'think', 'about', 'it', '||period||', 'the', 'washing', 'machine', 'is', 'the', 'nightclub', 'of', 'clothes', '||period||', 'you', 'know', '||comma||', 'its', 'dark', '||comma||', 'theres', 'bubbles', 'happening', '||comma||', 'theyre', 'all', 'kinda', 'dancing', 'around', 'in', 'there', '||dash||', 'shirt', 'grabs', 'the', 'underwear', '||comma||', 'cmon', 'babe', '||comma||', 'lets', 'go', '||period||', 'you', 'come', 'by', '||comma||', 'you', 'open', 'up', 'the', 'lid', 'and', 'theyll', '||dash||', '||leftparen||', 'stiffens', 'up', '||comma||', 'as', 'the', 'clothes', '||rightparen||', 'socks', 'are', 'the', 'most', 'amazing', 'article', 'of', 'clothing', '||period||', 'they', 'hate', 'their', 'lives', '||comma||', 'theyre', 'in', 'the', 'shoes', 'with', 'stinky', 'feet', '||comma||', 'the', 'boring', 'drawers', '||period||', 'the', 'dryer', 'is', 'their', 'only', 'chance', 'to', 'escape', 'and', 'they', 'all', 'know', 'it', '||period||', 'they', 'knew', 'a', 'escape', 'from', 'the', 'dryer', '||period||', 'they', 'plan', 'it', 'in', 'the', 'hamper', 'the', 'night', 'before', '||comma||', 'tomorrow', '||comma||', 'the', 'dryer', '||comma||', 'im', 'goin', '||period||', 'you', 'wait', 'here', '||exclammark||', 'the', 'dryer', 'door', 'swings', 'open', 'and', 'the', 'sock', 'is', 'waiting', 'up', 'against', 'the', 'side', 'wall', '||period||', 'he', 'hopes', 'you', 'dont', 'see', 'him', 'and', 'then', 'he', 'goes', 'down', 'the', 'road', '||period||', 'they', 'get', 'buttons', 'sewn', 'on', 'their', 'faces', '||comma||', 'join', 'a', 'puppet', 'show', '||period||', 'so', 'theyre', 'showing', 'me', 'on', 'television', 'the', 'detergent', 'for', 'getting', 'out', 'bloodstains', '||period||', 'is', 'this', 'a', 'violent', 'image', 'to', 'anybody', '||questionmark||', 'bloodstains', '||questionmark||', 'i', 'mean', '||comma||', 'come', 'on', '||comma||', 'you', 'got', 'a', 't', '||dash||', 'shirt', 'with', 'bloodstains', 'all', 'over', 'it', '||comma||', 'maybe', 'laundry', 'isnt', 'your', 'biggest', 'problem', 'right', 'now', '||period||', 'you', 'gotta', 'get', 'the', 'harpoon', 'out', 'your', 'chest', 'first', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', '||comma||', 'quickly', '||rightparen||', 'if', 'you', 'know', 'what', 'happened', 'in', 'the', 'met', 'game', '||comma||', 'dont', 'say', 'anything', '||comma||', 'i', 'taped', 'it', '||comma||', 'hello', '||period||', 'yeah', '||comma||', 'no', '||comma||', 'im', 'sorry', '||comma||', 'you', 'have', 'the', 'wrong', 'number', '||period||', 'yeah', '||comma||', 'no', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'door', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'kessler:', 'are', 'you', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kessler', '||rightparen||', 'yeah', '||period||', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'yeah', '||comma||', 'people', 'do', 'move', '||period||', 'have', 'you', 'ever', 'seen', 'the', 'big', 'trucks', 'out', 'on', 'the', 'street', '||questionmark||', 'yeah', '||comma||', 'no', 'problem', '||period||', '||return||', '||return||', 'kessler:', 'boy', '||comma||', 'the', 'mets', 'blew', 'it', 'tonight', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'upset', '||rightparen||', 'ohhhh', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'kessler', '||comma||', 'its', 'a', 'tape', '||exclammark||', 'i', 'taped', 'the', 'game', '||comma||', 'its', 'one', 'oclock', 'in', 'the', 'morning', '||exclammark||', 'i', 'avoided', 'human', 'contact', 'all', 'night', 'to', 'watch', 'this', '||period||', '||return||', '||return||', 'kessler:', 'hey', '||comma||', 'im', 'sorry', '||comma||', 'i', '||dash||', 'you', 'know', '||comma||', 'i', '||comma||', 'i', 'thought', 'you', 'knew', '||period||', '||leftparen||', 'takes', 'two', 'loaves', 'of', 'bread', 'out', 'of', 'his', 'pockets', '||comma||', 'and', 'holds', 'them', 'out', 'to', 'jerry', '||period||', '||rightparen||', 'you', 'got', 'any', 'meat', '||questionmark||', '||return||', '||return||', 'jerry:', 'meat', '||questionmark||', 'i', 'dont', '||comma||', 'i', 'dont', 'know', '||comma||', 'go', '||period||', '||period||', '||period||', 'hunt', '||exclammark||', '||leftparen||', 'kessler', 'opens', 'the', 'refrigerator', 'and', 'sticks', 'his', 'head', 'in', '||period||', '||rightparen||', 'well', 'what', 'happened', 'in', 'the', 'game', 'anyway', '||questionmark||', '||return||', '||return||', 'kessler:', '||leftparen||', 'from', 'the', 'refrigerator', '||rightparen||', 'what', 'happened', '||questionmark||', 'well', '||comma||', 'they', 'stunk', '||comma||', 'thats', 'what', 'happened', '||exclammark||', '||return||', '||return||', 'kessler:', 'you', 'know', '||comma||', 'i', 'almost', 'wound', 'up', 'going', 'to', 'that', 'game', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cynical', '||rightparen||', 'yeah', 'you', 'almost', 'went', 'to', 'the', 'game', '||period||', 'you', 'havent', 'been', 'out', 'of', 'the', 'building', 'in', 'ten', 'years', '||exclammark||', '||return||', '||return||', 'kessler:', 'yeah', '||period||', '||leftparen||', 'jerry', 'sits', 'down', 'on', 'the', 'couch', '||period||', 'kessler', 'walks', 'over', 'with', 'his', 'sandwich', 'and', 'looks', 'at', 'jerry', 'and', 'uses', 'expressions', 'to', 'ask', 'jerry', 'to', 'move', 'the', 'newspapers', 'on', 'the', 'other', 'side', 'of', 'the', 'couch', 'so', 'he', 'could', 'site', 'down', '||period||', 'kessler', 'sits', 'down', 'next', 'to', 'him', 'and', 'starts', 'turning', 'over', 'the', 'pages', 'of', 'a', 'magazine', '||period||', 'suddenly', 'he', 'spots', 'an', 'article', 'he', 'likes', 'and', 'tears', 'it', 'out', '||period||', 'jerry', 'gives', 'him', 'a', 'look', 'as', 'if', 'to', 'say', '||comma||', 'do', 'you', 'mind', '||questionmark||', '||rightparen||', 'are', 'you', 'done', 'with', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kessler:', 'when', 'youre', 'done', '||comma||', 'let', 'me', 'know', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'you', 'can', 'have', 'it', 'tomorrow', '||period||', '||return||', '||return||', 'kessler:', 'i', 'thought', 'i', 'wasnt', 'allowed', 'to', 'be', 'in', 'here', 'this', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'its', 'okay', 'now', '||comma||', 'that', '||comma||', 'that', 'girl', 'is', 'not', 'coming', '||period||', 'uh', '||comma||', 'i', 'misread', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'kessler:', 'you', 'want', 'me', 'to', 'talk', 'to', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'think', 'so', '||period||', '||return||', '||return||', 'kessler:', 'oh', '||comma||', 'i', 'can', 'be', 'very', 'persuasive', '||period||', 'do', 'you', 'know', 'that', 'i', 'was', 'almost', '||period||', '||period||', '||period||', 'a', 'lawyer', '||period||', '||return||', '||return||', 'jerry:', 'that', 'close', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kessler:', 'you', 'better', 'believe', 'it', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', '||period||', 'oh', '||comma||', 'hi', '||comma||', 'laura', '||period||', '||return||', '||return||', 'kessler:', 'oh', '||comma||', 'give', 'me', 'it', '||period||', '||period||', '||period||', 'let', 'me', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'no', 'believe', 'me', '||comma||', 'im', 'always', 'up', 'at', 'this', 'hour', '||period||', 'how', 'are', 'you', '||questionmark||', '||period||', '||period||', '||period||', 'great', '||period||', '||period||', '||period||', 'sure', '||period||', '||period||', '||period||', 'what', 'time', 'does', 'the', 'plane', 'get', 'in', '||questionmark||', '||period||', '||period||', '||period||', 'i', 'got', 'my', 'friend', 'george', 'to', 'take', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'kessler:', '||leftparen||', 'to', 'the', 'tv', '||rightparen||', 'slide', '||exclammark||', 'wow', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'its', '||comma||', 'its', 'just', 'my', 'neighbor', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'i', 'got', 'it', '||period||', '||leftparen||', 'jerry', 'takes', 'a', 'pencil', 'and', 'a', 'cereal', 'box', 'to', 'write', 'on', '||period||', '||rightparen||', 'ten', '||dash||', 'fifteen', '||period||', '||period||', '||period||', 'no', '||comma||', 'dont', 'be', 'silly', '||comma||', 'go', 'ahead', 'and', 'ask', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'sure', '||period||', '||period||', '||period||', 'okay', '||comma||', 'great', '||comma||', 'no', 'no', '||comma||', 'its', 'no', 'trouble', 'at', 'all', '||period||', '||period||', '||period||', 'ill', 'see', 'you', 'tomorrow', '||period||', '||period||', '||period||', 'great', '||comma||', 'bye', '||period||', '||leftparen||', 'he', 'hangs', 'up', 'the', 'phone', '||semicolon||', 'to', 'kessler', '||rightparen||', 'i', 'dont', 'believe', 'it', '||period||', 'that', 'was', 'her', '||period||', 'she', 'wants', 'to', 'stay', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'if', 'my', 'father', 'was', 'moving', 'this', 'he', 'had', 'to', 'have', 'a', 'cigarette', 'in', 'his', 'mouth', 'the', 'whole', 'way', '||period||', '||leftparen||', 'as', 'his', 'father', '||rightparen||', "'have", 'you', 'got', 'your', 'end', '||questionmark||', '||period||', '||period||', '||period||', 'your', 'ends', 'got', 'to', 'come', 'down', 'first', '||comma||', 'easy', 'now', '||comma||', 'drop', 'it', 'down', '||period||', '||period||', '||period||', 'drop', 'it', 'down', '||comma||', 'your', 'ends', 'got', 'to', 'come', 'down', '||period||', "'", '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'cant', 'believe', 'youre', 'bringing', 'in', 'an', 'extra', 'bed', 'for', 'woman', 'that', 'wants', 'to', 'sleep', 'with', 'you', '||period||', 'why', 'dont', 'you', 'bring', 'in', 'an', 'extra', 'guy', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'its', 'a', 'very', 'awkward', 'situation', '||period||', 'i', 'dont', 'wanna', 'be', 'presumptuous', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'one', 'more', 'time', '||comma||', 'one', 'more', 'time', '||exclammark||', 'what', 'was', 'the', 'exact', 'phrasing', 'of', 'the', 'request', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'she', 'said', 'she', 'couldnt', 'find', 'a', 'decent', 'hotel', 'room', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'a', 'decent', 'hotel', '||dash||', 'room', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'a', 'decent', 'hotel', '||dash||', 'room', '||comma||', 'would', 'it', 'be', 'terribly', 'inconvenient', 'if', 'she', 'stayed', 'at', 'my', 'place', '||period||', '||return||', '||return||', 'george:', 'you', 'cant', 'be', 'serious', '||period||', 'this', 'is', 'new', 'york', 'city', '||period||', 'there', 'must', 'be', 'eleven', 'million', 'decent', 'hotel', 'rooms', '||exclammark||', 'what', 'do', 'you', 'need', '||questionmark||', 'a', 'flag', '||questionmark||', '||leftparen||', 'waving', 'his', 'handkerchief', '||rightparen||', 'this', 'is', 'the', 'signal', '||comma||', 'jerry', '||comma||', 'this', 'is', 'the', 'signal', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cynical', '||rightparen||', 'this', 'is', 'the', 'signal', '||questionmark||', 'thank', 'you', '||comma||', 'mr', '||period||', 'signal', '||period||', 'where', 'were', 'you', 'yesterday', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'was', 'affected', 'by', 'the', 'caffeine', '||period||', '||return||', '||return||', 'george:', 'ho', '||comma||', 'ho', '||comma||', 'ho', '||comma||', 'good', 'dog', '||comma||', 'good', 'dog', '||period||', '||period||', '||period||', '||return||', '||return||', 'kessler:', 'hey', '||comma||', 'he', 'really', 'likes', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'thats', 'flattering', '||period||', '||return||', '||return||', 'kessler:', 'oh', '||comma||', 'hes', 'getting', 'a', 'drink', 'of', 'water', '||period||', '||leftparen||', 'pointing', 'to', 'the', 'mattress', '||rightparen||', 'is', 'this', 'for', 'that', 'girl', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kessler:', 'why', 'even', 'give', 'her', 'an', 'option', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'a', 'person', 'i', 'like', '||comma||', 'its', 'not', 'how', 'to', 'score', 'on', 'spring', 'break', '||period||', '||return||', '||return||', 'george:', 'right', '||comma||', 'can', 'we', 'go', '||questionmark||', 'cause', 'im', 'double', '||dash||', 'parked', '||comma||', 'im', 'gonna', 'get', 'a', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'okay', '||period||', 'oh', '||comma||', 'wait', 'a', 'second', '||period||', 'oh', '||comma||', 'i', 'forgot', 'to', 'clean', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||questionmark||', 'thats', 'good', '||period||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'how', 'could', 'that', 'be', 'good', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'filth', 'is', 'good', '||period||', 'what', 'do', 'you', 'think', '||comma||', 'rock', 'stars', 'have', 'sponges', 'and', 'ammonia', 'lying', 'around', 'the', 'bathroom', '||questionmark||', 'they', '||comma||', 'have', 'a', 'woman', 'coming', 'over', '||comma||', 'ive', 'gotta', 'tidy', 'up', '||questionmark||', 'yeah', 'right', '||comma||', 'in', 'these', 'matters', 'you', 'never', 'do', 'what', 'your', 'instincts', 'tell', 'you', '||period||', 'always', '||comma||', 'always', 'do', 'the', 'opposite', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'how', 'you', 'operate', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'wish', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'just', 'wipe', 'the', 'sink', '||period||', '||return||', '||return||', 'kessler:', 'why', 'even', 'give', 'her', 'an', 'option', 'for', '||questionmark||', '||return||', '||return||', 'kessler:', '||leftparen||', 'to', 'george', '||comma||', 'pointing', 'at', 'the', 'mattress', '||rightparen||', 'its', 'unbelievable', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kessler:', 'hows', 'the', 'real', 'estate', '||dash||', 'business', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'feeling', 'awkward', '||rightparen||', 'its', 'uh', '||comma||', 'not', 'bad', '||comma||', 'its', 'coming', 'along', '||period||', 'why', '||questionmark||', 'did', 'you', 'need', 'something', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'handle', 'any', 'of', 'that', 'commercial', '||period||', '||period||', '||period||', 'real', 'estate', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'might', 'be', 'getting', 'into', 'that', '||period||', '||return||', '||return||', 'kessler:', '||leftparen||', 'slaps', 'george', 'on', 'the', 'arm', '||rightparen||', 'you', 'keep', 'me', 'posted', '||exclammark||', '||return||', '||return||', 'george:', 'im', 'aware', 'of', 'you', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'all', 'right', '||comma||', 'lets', 'go', '||leftparen||', 'opens', 'the', 'bathroom', 'door', '||rightparen||', 'lets', 'go', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'dating', 'world', 'is', 'not', 'a', 'fun', 'world', '||period||', '||period||', '||period||', 'its', 'a', 'pressure', 'world', '||comma||', 'its', 'a', 'world', 'of', 'tension', '||comma||', 'its', 'a', 'world', 'of', 'pain', '||period||', '||period||', '||period||', 'and', 'you', 'know', '||comma||', 'if', 'a', 'woman', 'comes', 'over', 'to', 'my', 'house', '||comma||', 'i', 'gotta', 'get', 'that', 'bathroom', 'ready', '||comma||', 'cause', 'she', 'needs', 'things', '||period||', 'women', 'need', 'equipment', '||period||', 'i', 'dont', 'know', 'what', 'they', 'need', '||period||', 'i', 'know', 'i', 'dont', 'have', 'it', '||comma||', 'i', 'know', 'that', '||dash||', 'you', 'know', 'what', 'they', 'need', '||comma||', 'women', 'seem', 'to', 'need', 'a', 'lot', 'of', 'cotton', '||dash||', 'balls', '||period||', 'this', 'is', 'the', 'one', 'im', '||dash||', 'always', 'has', 'been', 'one', 'of', 'the', 'amazing', 'things', 'to', 'me', '||period||', '||period||', '||period||', 'i', 'have', 'no', 'cotton', '||dash||', 'balls', '||comma||', 'were', 'all', 'human', 'beings', '||comma||', 'what', 'is', 'the', 'story', '||questionmark||', 'ive', 'never', 'had', 'one', '||period||', '||period||', '||period||', 'i', 'never', 'bought', 'one', '||comma||', 'i', 'never', 'needed', 'one', '||comma||', 'ive', 'never', 'been', 'in', 'a', 'situation', '||comma||', 'when', 'i', 'thought', 'to', 'myself', 'i', 'could', 'use', 'a', 'cotton', '||dash||', 'ball', 'right', 'now', '||period||', 'i', 'can', 'certainly', 'get', 'out', 'of', 'this', 'mess', '||period||', 'women', 'need', 'them', 'and', 'they', 'dont', 'need', 'one', 'or', 'two', '||comma||', 'they', 'need', 'thousands', 'of', 'them', '||comma||', 'they', 'need', 'bags', '||comma||', 'theyre', 'like', 'peat', 'moss', 'bags', '||comma||', 'have', 'you', 'ever', 'seen', 'these', 'giant', 'bags', '||questionmark||', 'theyre', 'huge', 'and', 'two', 'days', 'later', '||comma||', 'theyre', 'out', '||comma||', 'theyre', 'gone', '||comma||', 'the', '||comma||', 'the', 'bag', 'is', 'empty', '||comma||', 'where', 'are', 'the', 'cotton', '||dash||', 'balls', '||comma||', 'ladies', '||questionmark||', 'what', 'are', 'you', 'doin', 'with', 'them', '||questionmark||', 'the', 'only', 'time', 'i', 'ever', 'see', 'em', 'is', 'in', 'the', 'bottom', 'of', 'your', 'little', 'waste', 'basket', '||comma||', 'theres', 'two', 'or', 'three', '||comma||', 'that', 'look', 'like', 'theyve', 'been', 'through', 'some', 'horrible', 'experience', '||period||', '||period||', '||period||', 'tortured', '||comma||', 'interrogated', '||comma||', 'i', 'dont', 'know', 'what', 'happened', 'to', 'them', '||period||', 'i', 'once', 'went', 'out', 'with', 'a', 'girl', 'who', 'left', 'a', 'little', 'zip', '||dash||', 'lock', '||dash||', 'baggy', 'of', 'cotton', '||dash||', 'balls', 'over', 'at', 'my', 'house', '||period||', 'i', 'dont', 'know', 'what', 'to', 'do', 'with', 'them', '||comma||', 'i', 'took', 'them', 'out', '||comma||', 'i', 'put', 'them', 'on', 'my', 'kitchen', 'floor', 'like', 'little', 'tumbleweeds', '||period||', 'i', 'thought', 'maybe', 'the', 'cockroaches', 'would', 'see', 'it', '||comma||', 'figure', 'this', 'is', 'a', 'dead', 'town', '||period||', 'lets', 'move', 'on', '||period||', 'the', 'dating', 'world', 'is', 'a', 'world', 'of', 'pressure', '||period||', 'lets', 'face', 'it', 'a', 'date', 'is', 'a', 'job', 'interview', 'that', 'lasts', 'all', 'night', '||period||', 'the', 'only', 'difference', 'between', 'a', 'date', 'and', 'a', 'job', 'interview', 'is', 'not', 'many', 'job', 'interviews', 'is', 'there', 'a', 'chance', 'youll', 'end', 'up', 'naked', 'at', 'the', 'end', 'of', 'it', '||period||', 'you', 'know', '||questionmark||', 'well', '||comma||', 'bill', '||comma||', 'the', 'boss', 'thinks', 'youre', 'the', 'man', 'for', 'the', 'position', '||comma||', 'why', 'dont', 'you', 'strip', 'down', 'and', 'meet', 'some', 'of', 'the', 'people', 'youll', 'be', 'working', 'with', '||questionmark||', '||return||', '||return||', 'jerry:', 'wouldnt', 'it', 'be', 'great', 'if', 'you', 'could', 'ask', 'a', 'woman', 'what', 'shes', 'thinking', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'a', 'world', 'that', 'would', 'be', '||comma||', 'if', 'you', 'just', 'could', 'ask', 'a', 'woman', 'what', 'shes', 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'instead', '||comma||', 'im', 'like', 'a', 'detective', '||period||', 'i', 'gotta', 'pick', 'up', 'clues', '||comma||', 'the', 'whole', 'thing', 'is', 'a', 'murder', 'investigation', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'listen', '||comma||', 'dont', 'get', 'worked', 'up', '||comma||', 'cause', 'youre', 'gonna', 'know', 'the', 'whole', 'story', 'the', 'minute', 'she', 'steps', 'off', 'the', 'plane', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'how', '||questionmark||', '||return||', '||return||', 'george:', 'cause', 'its', 'all', 'in', 'the', 'greeting', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'if', 'she', 'puts', 'the', 'bags', 'down', 'before', 'she', 'greets', 'you', '||comma||', 'thats', 'a', 'good', 'sign', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'anything', 'in', 'the', '||comma||', 'in', 'the', 'lip', 'area', 'is', 'good', '||period||', '||return||', '||return||', 'jerry:', 'lip', 'area', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'a', 'hug', 'definitely', 'good', '||period||', '||return||', '||return||', 'jerry:', 'hug', 'is', 'definitely', 'good', '||period||', '||return||', '||return||', 'george:', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'although', 'what', 'if', 'its', 'one', 'of', 'those', 'hugs', 'where', 'the', 'shoulders', 'are', 'touching', '||comma||', 'the', 'hips', 'are', 'eight', 'feet', 'apart', '||questionmark||', '||return||', '||return||', 'george:', 'thats', 'so', 'brutal', '||comma||', 'i', 'hate', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'how', 'they', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'thats', 'why', '||comma||', 'you', 'know', '||comma||', 'a', 'shake', 'is', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'shake', 'is', 'bad', '||comma||', 'but', 'what', 'if', 'its', 'the', 'two', '||dash||', 'hander', '||questionmark||', 'the', 'hand', 'on', 'the', 'bottom', '||comma||', 'the', 'hand', 'on', 'the', 'top', '||comma||', 'the', 'warm', 'look', 'in', 'the', 'eyes', '||questionmark||', '||return||', '||return||', 'george:', 'hand', 'sandwich', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'george:', 'i', 'see', '||comma||', 'well', '||comma||', 'thats', 'open', 'to', 'interpretation', '||period||', 'because', 'so', 'much', 'depends', 'on', 'the', 'layering', 'and', 'the', 'quality', 'of', 'the', 'wetness', 'in', 'the', 'eyes', '||period||', '||return||', '||return||', 'laura:', 'guess', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||period||', '||return||', '||return||', 'laura', '&', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'its', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'laura:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'my', 'friend', 'george', '||period||', '||return||', '||return||', 'laura:', 'hi', '||comma||', 'how', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'laura', '||period||', '||return||', '||return||', 'george:', 'laura', '||comma||', 'sure', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'laura', '||rightparen||', 'i', 'cant', 'believe', 'youre', 'here', '||period||', '||return||', '||return||', 'george', '&', 'jerry:', 'ooh', 'yeah', '||comma||', 'the', 'bags', '||comma||', 'sure', '||period||', '||return||', '||return||', 'laura:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'aside', '||comma||', 'to', 'george', '||rightparen||', 'now', 'that', 'was', 'an', 'interesting', 'greeting', '||comma||', 'did', 'you', 'notice', 'that', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'the', 'surprise', 'blindfold', 'greeting', '||period||', 'that', 'wasnt', 'in', 'the', 'manual', '||comma||', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'jerry:', 'so', 'uh', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'laura:', 'wow', '||exclammark||', 'this', 'place', 'isnt', 'so', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'kind', 'a', 'motivates', 'me', 'to', 'work', 'on', 'the', 'road', '||period||', 'so', 'uh', '||comma||', 'make', 'yourself', 'at', 'home', '||period||', '||leftparen||', 'laura', 'sits', 'down', 'on', 'the', 'couch', '||comma||', 'takes', 'off', 'her', 'shoes', 'and', 'opens', 'some', 'buttons', 'of', 'her', 'shirt', '||period||', '||rightparen||', 'so', 'uh', '||comma||', 'can', 'i', 'get', 'you', 'anything', '||questionmark||', 'uh', '||comma||', 'bread', '||comma||', 'water', '||period||', '||period||', '||period||', 'salad', '||dash||', 'dressing', '||questionmark||', '||return||', '||return||', 'laura:', '||leftparen||', 'laughs', '||rightparen||', 'actually', '||comma||', 'um', '||comma||', 'do', 'you', 'have', 'any', 'wine', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||comma||', 'i', 'think', 'i', 'do', '||period||', '||return||', '||return||', 'laura:', '||leftparen||', 'referring', 'to', 'a', 'lamp', '||rightparen||', 'oh', '||comma||', 'do', 'you', 'mind', 'if', 'i', 'turn', 'this', 'down', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'no', '||comma||', 'yeah', '||comma||', 'go', 'right', 'ahead', '||period||', '||return||', '||return||', 'laura:', 'uh', '||comma||', 'jerry', '||comma||', 'uh', '||comma||', 'i', 'was', 'wandering', '||comma||', 'would', 'it', 'be', 'possible', 'and', 'if', 'its', 'not', '||comma||', 'fine', 'for', 'me', 'to', 'stay', 'here', 'tomorrow', 'night', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'sure', '||comma||', 'why', 'dont', 'you', 'stay', '||questionmark||', 'yeah', '||comma||', 'uh…what', 'is', 'your', '||comma||', 'what', 'is', 'your', 'schedule', 'for', 'tomorrow', '||questionmark||', 'are', 'you', '||comma||', 'are', 'you', 'doing', 'anything', '||questionmark||', '||return||', '||return||', 'laura:', 'no', '||comma||', 'id', 'love', 'to', 'do', 'something', '||period||', 'uh', '||comma||', 'i', 'have', 'my', 'seminar', 'in', 'the', 'morning', '||comma||', 'then', 'after', 'that', 'im', 'right', 'open', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'what', 'would', 'you', 'like', 'to', 'do', '||questionmark||', '||return||', '||return||', 'laura:', 'well', '||period||', '||period||', '||period||', 'now', 'i', 'know', 'this', 'sounds', 'touristy', '||comma||', 'but', 'id', 'just', 'love', 'to', 'go', 'on', 'one', 'of', 'those', 'five', '||dash||', 'hour', 'boat', 'rides', 'around', 'manhattan', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unenthusiastic', '||rightparen||', 'yeah', '||comma||', 'we', 'could', 'do', 'that', '||period||', '||period||', '||period||', 'why', 'not', '||comma||', 'why', 'not', '||period||', '||leftparen||', 'pouring', 'the', 'wine', '||rightparen||', 'im', 'just', '||comma||', 'im', 'really', 'glad', 'youre', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', '||rightparen||', 'yeah', '||comma||', 'hello', '||period||', '||period||', '||period||', 'yes', '||period||', '||period||', '||period||', 'yes', '||comma||', 'she', 'is', '||comma||', 'hold', 'on', '||period||', '||leftparen||', 'to', 'laura', '||rightparen||', 'um', '||comma||', 'its', 'for', 'you', '||period||', '||return||', '||return||', 'laura:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', '||period||', '||period||', '||period||', 'hi', '||exclammark||', '||period||', '||period||', '||period||', 'no', 'no', 'it', 'was', 'great', '||comma||', 'right', 'on', 'time', '||period||', '||period||', '||period||', 'no', '||comma||', 'i', '||comma||', 'im', 'gonna', 'stay', 'here', 'tomorrow', '||period||', '||period||', '||period||', 'yes', '||comma||', 'yes', 'its', 'fine', '||period||', '||period||', '||period||', 'no', '||comma||', 'were', 'going', 'on', 'a', 'boat', 'ride', '||period||', '||period||', '||period||', 'dont', 'be', 'silly', '||period||', '||period||', '||period||', 'im', 'not', 'gonna', 'have', 'this', 'conversation', '||period||', '||period||', '||period||', 'look', '||comma||', 'ill', 'call', 'you', 'tomorrow', '||period||', '||period||', '||period||', 'okay', '||comma||', 'bye', '||period||', '||leftparen||', 'she', 'hangs', 'up', 'the', 'phone', '||period||', '||rightparen||', 'never', 'get', 'engaged', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'excited', '||rightparen||', 'youre', 'engaged', '||questionmark||', '||return||', '||return||', 'laura:', 'you', '||comma||', 'you', 'really', 'have', 'no', 'idea', 'what', 'its', 'like', 'until', 'you', 'actually', 'do', 'it', '||period||', 'and', 'im', 'on', 'this', 'emotional', 'roller', 'coaster', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'engaged', '||questionmark||', '||return||', '||return||', 'laura:', 'you', 'know', '||comma||', 'i', 'cant', 'believe', 'it', 'myself', 'sometimes', '||period||', 'you', 'have', 'to', 'start', 'thinking', 'in', 'terms', 'of', 'we', '||period||', 'ugh', '||comma||', 'its', 'a', 'very', 'stressful', 'situation', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'matter', '||dash||', 'of', '||dash||', 'factly', '||rightparen||', 'youre', 'engaged', '||period||', '||return||', '||return||', 'laura:', 'yeah', '||comma||', 'yeah', '||comma||', 'hes', 'a', 'great', 'guy', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'laura:', 'you', 'would', 'really', 'like', 'him', '||comma||', 'you', 'know', '||comma||', 'i', 'cant', 'wait', 'to', 'get', 'on', 'that', 'boat', '||period||', '||return||', '||return||', 'jerry:', 'me', 'too', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'swear', '||comma||', 'i', 'have', 'absolutely', 'no', 'idea', 'what', 'women', 'are', 'thinking', '||period||', 'i', 'dont', 'get', 'it', '||comma||', 'okay', '||questionmark||', 'i', '||comma||', 'i', '||comma||', 'i', 'admit', '||comma||', 'i', '||comma||', 'im', 'not', 'getting', 'the', 'signals', '||period||', 'i', 'am', 'not', 'getting', 'it', '||exclammark||', 'women', '||comma||', 'theyre', 'so', 'subtle', '||comma||', 'their', 'little', '||period||', '||period||', '||period||', 'everything', 'they', 'do', 'is', 'subtle', '||period||', 'men', 'are', 'not', 'subtle', '||comma||', 'we', 'are', 'obvious', '||period||', 'women', 'know', 'what', 'men', 'want', '||comma||', 'men', 'know', 'what', 'men', 'want', '||comma||', 'what', 'do', 'we', 'want', '||questionmark||', 'we', 'want', 'women', '||comma||', 'thats', 'it', '||exclammark||', 'its', 'the', 'only', 'thing', 'we', 'know', 'for', 'sure', '||comma||', 'it', 'really', 'is', '||period||', 'we', 'want', 'women', '||period||', 'how', 'do', 'we', 'get', 'them', '||questionmark||', 'oh', '||comma||', 'we', 'dont', 'know', 'bout', 'that', '||comma||', 'we', 'dont', 'know', '||period||', 'the', 'next', 'step', 'after', 'that', 'we', 'have', 'no', 'idea', '||period||', 'this', 'is', 'why', 'you', 'see', 'men', 'honking', 'car', '||dash||', 'horns', '||comma||', 'yelling', 'from', 'construction', 'sites', '||period||', 'these', 'are', 'the', 'best', 'ideas', 'weve', 'had', 'so', 'far', '||period||', 'the', 'car', '||dash||', 'horn', 'honk', '||period||', 'have', 'you', 'seen', 'men', 'doing', 'this', '||questionmark||', 'what', 'is', 'this', '||questionmark||', 'the', 'man', 'is', 'in', 'the', 'car', '||comma||', 'the', 'woman', 'walks', 'by', 'the', 'front', 'of', 'the', 'car', '||comma||', 'he', 'honks', '||period||', 'hey', '||exclammark||', 'this', 'man', 'is', 'out', 'of', 'ideas', '||period||', 'how', 'does', 'it', '||period||', '||period||', '||period||', '||questionmark||', 'i', 'dont', 'think', 'she', 'likes', 'me', '||period||', 'the', 'amazing', 'thing', 'is', '||comma||', 'that', 'we', 'still', 'get', 'women', '||comma||', 'dont', 'we', '||questionmark||', 'men', '||comma||', 'i', 'mean', '||comma||', 'men', 'are', 'with', 'women', '||period||', 'you', 'see', 'men', 'with', 'women', '||period||', 'how', 'are', 'men', 'getting', 'women', '||comma||', 'many', 'people', 'wonder', '||period||', 'let', 'me', 'tell', 'you', 'a', 'little', 'bit', 'about', 'our', 'organization', '||period||', 'wherever', 'women', 'are', '||comma||', 'we', 'have', 'a', 'man', 'working', 'on', 'the', 'situation', 'right', 'now', '||period||', 'now', '||comma||', 'he', 'may', 'not', 'be', 'our', 'best', 'man', '||comma||', 'okay', '||comma||', 'we', 'have', 'a', 'lot', 'of', 'areas', 'to', 'cover', '||comma||', 'but', 'someone', 'from', 'our', 'staff', 'is', 'on', 'the', 'scene', '||period||', 'thats', 'why', '||comma||', 'i', 'think', '||comma||', 'men', 'get', 'frustrated', '||comma||', 'when', 'we', 'see', 'women', 'reading', 'articles', '||comma||', 'like', 'where', 'to', 'meet', 'men', '||questionmark||', 'were', 'here', '||comma||', 'we', 'are', 'everywhere', '||period||', 'were', 'honking', 'our', 'horns', 'to', 'serve', 'you', 'better', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'im', 'on', 'line', 'at', 'the', 'supermarket', '||period||', 'two', 'women', 'in', 'front', 'of', 'me', '||period||', 'one', 'of', 'them', '||comma||', 'her', 'total', 'was', 'eight', 'dollars', '||comma||', 'the', 'other', 'three', 'dollars', '||period||', 'they', 'both', 'of', 'course', 'choose', 'to', 'pay', 'by', 'the', 'use', 'of', 'the', '||period||', '||period||', '||period||', '||return||', '||return||', 'audience:', 'cheque', '||period||', '||return||', '||return||', 'jerry:', 'cheque', '||period||', 'now', '||comma||', 'the', 'fact', 'is', '||comma||', 'if', 'its', 'a', 'woman', 'in', 'front', 'of', 'you', 'thats', 'writing', 'the', 'cheque', '||comma||', 'you', 'will', 'not', 'be', 'waiting', 'long', '||period||', 'i', 'have', 'noticed', 'that', 'women', 'are', 'very', 'fast', 'with', 'cheques', '||comma||', 'you', 'know', '||comma||', 'cause', 'they', 'write', 'out', 'so', 'many', 'cheques', '||period||', 'the', 'keys', '||comma||', 'they', 'can', 'never', 'find', 'in', 'their', 'purse', '||comma||', 'they', 'dont', 'know', 'where', 'that', 'is', '||comma||', 'but', 'the', 'cheque', 'book', 'they', 'got', 'that', '||period||', 'they', 'never', 'fumble', 'for', 'the', 'cheque', 'book', '||period||', 'the', 'cheque', 'book', 'comes', 'out', 'of', 'a', 'holster', '||leftparen||', 'jerry', 'draws', 'imaginary', 'book', 'from', 'a', 'holster', '||period||', '||rightparen||', 'who', 'do', 'i', 'make', 'it', 'out', 'to', '||questionmark||', 'theres', 'my', 'id', '||period||', 'theres', 'something', 'about', 'a', 'cheque', 'that', '||comma||', 'to', 'a', 'man', '||comma||', 'is', 'not', 'masculine', '||period||', 'i', 'dont', 'know', 'exactly', 'what', 'it', 'is', '||period||', 'i', 'think', 'to', 'a', 'man', '||comma||', 'a', 'cheque', 'is', 'like', 'a', 'note', 'from', 'your', 'mother', 'that', 'says', '||comma||', 'i', 'dont', 'have', 'any', 'money', '||comma||', 'but', 'if', 'youll', 'contact', 'these', 'people', '||comma||', 'im', 'sure', 'theyll', 'stick', 'up', 'for', 'me', '||period||', '||period||', '||period||', 'if', 'you', 'just', 'trust', 'me', 'this', 'one', 'time', '||dash||', 'i', 'dont', 'have', 'any', 'money', 'but', 'i', 'have', 'these', '||period||', 'i', 'wrote', 'on', 'these', '||period||', 'is', 'this', 'of', 'any', 'value', 'at', 'all', '||questionmark||', '||return||', '||return||', 'jerry:', 'whats', 'that', 'one', '||questionmark||', '||return||', '||return||', 'elaine:', 'coccoon', 'ii', 'the', 'return', '||period||', 'i', 'guess', 'they', 'didnt', 'like', 'it', 'up', 'there', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'they', 'came', 'back', 'for', 'chinese', 'food', '||period||', 'yknow', 'maureen', 'stapleton', '||comma||', 'if', 'she', 'gets', 'a', 'craving', '||comma||', 'shes', 'probably', 'screamin', 'at', 'those', 'aliens', '||comma||', 'i', 'gotta', 'have', 'a', 'lo', 'mein', '||exclammark||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'whatre', 'we', 'doing', 'here', '||questionmark||', 'i', 'have', 'seen', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||questionmark||', 'i', 'dont', 'believe', 'youve', 'seen', '||period||', '||period||', '||period||', 'this', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'lovely', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'think', 'their', 'parents', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'uh', '||comma||', 'whats', 'your', 'son', 'doing', 'now', '||comma||', 'dr', '||period||', 'stevens', '||questionmark||', 'oh', '||comma||', 'hes', 'a', 'public', 'fornicator', '||period||', 'yes', '||comma||', 'hes', 'a', 'fine', 'boy', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||questionmark||', 'this', 'would', 'be', 'a', 'really', 'funny', 'gift', 'for', 'pamelas', 'birthday', '||period||', '||return||', '||return||', 'jerry:', 'pamela', '||questionmark||', 'do', 'i', 'know', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'met', 'her', 'when', 'we', 'were', 'going', 'out', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'have', 'no', 'idea', 'who', 'im', 'talking', 'about', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quickly', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'blonde', 'hair', '||comma||', 'remember', '||questionmark||', 'glasses', '||questionmark||', '||leftparen||', 'pause', '||rightparen||', 'have', 'you', 'totally', 'blocked', 'out', 'the', 'entire', 'time', 'we', 'were', 'a', 'couple', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'a', 'lightbulb', 'goes', 'on', 'in', 'his', 'head', '||rightparen||', 'riverside', 'drive', '||period||', '||return||', '||return||', 'elaine:', 'right', '||exclammark||', 'in', 'fact', '||period||', '||period||', '||period||', 'no', '||comma||', 'never', 'mind', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'a', 'bunch', 'of', 'people', 'are', 'getting', 'together', 'tomorrow', 'night', 'at', 'some', 'bar', 'for', 'her', 'birthday', '||comma||', 'but', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'turns', 'in', 'disgust', '||rightparen||', 'you', 'dont', 'want', 'to', 'go', 'to', '||period||', '||period||', '||period||', 'that', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||period||', 'we', 'could', 'work', 'out', 'a', 'little', 'deal', 'here', '||period||', '||return||', '||return||', 'elaine:', 'what', 'little', 'deal', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'will', 'go', 'to', 'that', '||comma||', 'if', 'you', 'go', 'with', 'me', 'to', 'a', 'little', 'family', 'wedding', 'i', 'have', 'on', 'saturday', '||period||', '||return||', '||return||', 'elaine:', 'a', 'wedding', '||questionmark||', 'have', 'you', 'lost', 'it', '||comma||', 'man', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'my', 'parents', 'are', 'coming', 'in', 'for', 'this', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'theyre', 'coming', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'tomorrow', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'did', 'your', 'father', 'ever', 'get', 'that', 'hair', 'weave', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', 'still', 'doing', 'the', 'big', 'sweep', 'across', '||period||', '||return||', '||return||', 'elaine:', 'why', 'does', 'he', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'doesnt', 'think', 'anyone', 'can', 'tell', '||period||', 'so', 'cmon', '||comma||', 'do', 'we', 'have', 'a', 'deal', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'wedding', '||questionmark||', '||return||', '||return||', 'jerry:', 'theres', 'a', 'lot', 'of', 'people', 'to', 'mock', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'what', 'the', 'hell', '||period||', '||return||', '||return||', 'jerry:', 'great', '||exclammark||', '||return||', '||return||', 'woman:', 'when', 'youre', 'dead', '||comma||', 'youre', 'dead', '||period||', 'thats', 'it', '||period||', 'youre', 'not', 'going', 'anywhere', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'cmon', 'lets', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'was', 'i', 'supposed', 'to', 'bring', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'could', 'have', '||period||', '||return||', '||return||', 'jerry:', 'i', 'met', 'her', 'one', 'time', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'it', 'is', 'not', 'necessary', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', 'then', '||questionmark||', '||return||', '||return||', 'elaine:', 'shh', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'pamela:', 'hi', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'pamela', '||comma||', 'you', 'remember', 'jerry', '||period||', '||return||', '||return||', 'pamela:', '||leftparen||', 'shakes', "jerry's", 'hand', '||rightparen||', 'yes', '||comma||', 'we', 'met', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'happy', 'birthday', '||period||', '||return||', '||return||', 'pamela:', 'thanks', '||comma||', 'ah', '||comma||', 'everybody', '||comma||', 'this', 'is', 'elaine', 'and', 'jerry', '||period||', '||return||', '||return||', 'guests', '||comma||', 'jerry', 'and', 'elaine:', 'hi', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'bring', 'anything', '||period||', '||return||', '||return||', 'pamela:', 'uh', '||comma||', 'i', 'put', 'you', 'two', 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'okay', '||leftparen||', 'turns', 'to', 'rest', 'of', 'table', '||rightparen||', 'im', 'sorry', '||comma||', 'i', 'didnt', 'know', 'what', 'to', 'bring', '||comma||', 'nobody', 'told', 'me', '||period||', '||return||', '||return||', 'vanessa:', 'how', 'big', 'a', 'tip', 'do', 'you', 'think', 'it', 'would', 'take', 'to', 'get', 'him', 'to', 'stop', '||questionmark||', '||return||', '||return||', 'jerry:', 'im', 'in', 'for', 'five', '||period||', '||period||', '||period||', '||return||', '||return||', 'vanessa:', 'ill', 'supply', 'the', 'hat', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'uh', '||dash||', 'oh', '||period||', '||period||', '||period||', 'what', 'do', 'we', 'have', 'here', '||questionmark||', '||return||', '||return||', 'vanessa:', 'why', 'dont', 'you', 'relax', 'and', 'take', 'your', 'jacket', 'off', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'cant', '||period||', 'uh', '||comma||', 'i', 'have', 'a', 'tendency', 'to', 'get', 'chilly', '||period||', '||return||', '||return||', 'vanessa:', 'how', 'masculine', '||period||', '||return||', '||return||', 'jerry:', 'plus', 'im', 'wearing', 'short', 'sleeves', '||comma||', 'i', 'dont', 'want', 'to', 'expose', 'my', 'tattoos', '||period||', '||leftparen||', 'vanessa', 'smiles', '||semicolon||', 'thinking', '||rightparen||', 'shes', 'unbelievable', '||exclammark||', '||return||', '||return||', 'roger:', '||leftparen||', 'to', 'vanessa', '||rightparen||', 'hey', '||comma||', 'this', 'guy', 'says', 'he', 'knows', 'bricker', '||period||', '||return||', '||return||', 'vanessa:', 'oh', '||comma||', 'you', 'know', 'bricker', '||exclammark||', 'from', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'whats', 'going', 'on', 'here', '||questionmark||', 'gotta', 'be', 'her', 'boyfriend', '||comma||', 'shes', 'too', 'good', 'to', 'be', 'alone', '||period||', 'whats', 'the', 'difference', '||comma||', 'i', 'cant', 'manouver', 'anyway', 'with', 'elaine', 'next', 'to', 'me', '||period||', '||return||', '||return||', 'vanessa:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'how', 'do', 'you', 'know', 'pamela', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'friend', 'of', 'a', 'friend', '||period||', 'and', 'you', '||questionmark||', '||return||', '||return||', 'vanessa:', 'we', 'went', 'to', 'law', 'school', 'together', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'interrupting', "jerry's", 'conversation', '||rightparen||', 'oh', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'turning', 'to', 'elaine', '||semicolon||', 'thinking', '||rightparen||', 'oh', 'no', '||comma||', 'not', 'now', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', 'this', 'dream', 'last', 'night', 'and', 'you', 'were', 'in', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'really', '||questionmark||', '||leftparen||', 'tries', 'turning', 'away', 'in', 'the', 'hopes', 'elaine', 'gets', 'the', 'hint', '||semicolon||', 'thinking', '||rightparen||', 'oh', 'god', '||comma||', 'i', 'gotta', 'get', 'out', 'of', 'this', '||period||', '||return||', '||return||', 'elaine:', 'you', 'were', 'you', '||comma||', 'but', '||comma||', 'you', 'werent', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', 'kidding', '||period||', '||leftparen||', 'thinking', '||rightparen||', 'why', 'is', 'this', 'happening', '||questionmark||', 'please', '||comma||', 'make', 'her', 'stop', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'think', '||comma||', 'i', 'think', 'we', 'were', 'in', 'my', 'house', 'where', 'i', 'grew', 'up', '||comma||', 'and', 'you', 'were', 'standing', 'there', '||comma||', 'you', 'were', 'looking', 'out', 'the', 'window', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'this', 'is', 'brutal', '||period||', '||return||', '||return||', 'elaine:', 'you', 'turned', 'around', 'and', 'you', 'had', 'these', 'wooden', 'teeth', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'like', 'that', '||questionmark||', '||leftparen||', 'tries', 'to', 'turn', 'away', 'again', '||semicolon||', 'thinking', '||rightparen||', 'can', 'i', 'turn', 'now', '||questionmark||', 'is', 'this', 'over', '||questionmark||', 'no', '||comma||', 'i', 'cant', '||comma||', 'i', 'cant', '||period||', 'im', 'stuck', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'noticing', 'jerry', 'not', 'wanting', 'to', 'listen', '||semicolon||', 'annoyed', '||rightparen||', 'jerry', '||questionmark||', 'are', 'you', 'listening', 'to', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'heard', 'you', '||period||', '||return||', '||return||', 'pamela:', 'elaine', '||comma||', 'whats', 'the', 'name', 'of', 'that', 'jewelry', 'store', 'you', 'took', 'me', 'to', 'that', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'thank', 'you', '||comma||', 'pamela', '||exclammark||', '||leftparen||', 'turns', 'to', 'talk', 'to', 'vanessa', '||semicolon||', 'to', 'vanessa', '||rightparen||', 'so', '||comma||', 'youre', 'a', 'lawyer', '||period||', '||period||', '||period||', '||return||', '||return||', 'vanessa:', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'vanessa', '||rightparen||', 'of', 'course', '||comma||', 'they', 'handled', 'my', 'tattoo', 'removal', 'lawsuit', '||period||', '||return||', '||return||', 'vanessa:', 'oh', '||comma||', 'that', 'was', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'imagine', '||comma||', 'spelling', 'mom', 'with', 'two', 'os', '||period||', '||return||', '||return||', 'vanessa:', 'very', 'funny', '||exclammark||', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'comedian', '||period||', '||return||', '||return||', 'vanessa:', 'really', '||questionmark||', 'that', 'explains', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||semicolon||', 'quickly', '||rightparen||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', '||return||', '||return||', 'roger:', 'are', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'vanessa:', 'we', 'gotta', 'run', '||period||', 'happy', 'birthday', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'i', 'cant', 'believe', 'it', '||period||', 'i', 'got', 'nothing', '||exclammark||', 'i', 'dont', 'even', 'know', 'her', 'name', '||exclammark||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppen', '||period||', '||period||', '||period||', 'sagman', '||period||', '||period||', '||period||', 'sag', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'that', 'wasnt', 'so', 'bad', '||comma||', 'really', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'um', '||comma||', 'you', 'could', 'use', 'a', 'little', 'work', 'on', 'your', 'manners', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'wel', '||dash||', 'well', '||comma||', 'i', 'just', 'dont', 'appreciate', 'these', 'little', 'courtesy', 'responses', '||comma||', 'like', 'im', 'selling', 'you', 'aluminum', 'siding', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'listening', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'you', 'couldnt', 'wait', 'to', 'get', 'back', 'to', 'your', 'little', '||period||', '||period||', '||period||', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', 'were', 'talking', 'about', 'the', '||comma||', 'the', 'um', '||comma||', 'the', 'dream', 'you', 'had', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', 'had', '||comma||', 'uh', '||comma||', 'wooden', 'teeth', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'no', '||exclammark||', 'you', 'had', 'wooden', 'teeth', '||exclammark||', 'you', 'had', 'wooden', 'teeth', '||exclammark||', 'i', 'didnt', 'have', 'wooden', 'teeth', '||comma||', 'you', 'did', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'so', 'i', 'had', 'wooden', 'teeth', '||comma||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'nothing', '||exclammark||', 'nothing', '||period||', '||leftparen||', 'annoyed', 'sigh', '||rightparen||', '||return||', '||return||', 'jerry:', 'apparently', 'plato', '||comma||', 'who', 'came', 'up', 'with', 'the', 'concept', 'of', 'the', 'platonic', 'relationship', '||comma||', 'was', 'pretty', 'excited', 'about', 'it', '||period||', 'he', 'named', 'it', 'after', 'himself', '||period||', 'he', 'said', '||comma||', 'yeah', '||comma||', 'i', 'got', 'this', 'new', 'thing', 'platonic', '||period||', 'my', 'idea', '||comma||', 'my', 'name', '||comma||', 'callin', 'it', 'after', 'myself', '||period||', 'what', 'i', 'do', 'is', '||comma||', 'i', 'go', 'out', 'with', 'the', 'girls', '||comma||', 'i', 'talk', 'with', 'them', '||dash||', 'dont', 'do', 'anything', '||comma||', 'and', 'go', 'right', 'home', '||period||', 'whatd', 'you', 'think', '||questionmark||', 'i', 'think', 'its', 'going', 'to', 'be', 'big', '||exclammark||', 'i', 'bet', 'you', 'there', 'were', 'other', 'guys', 'in', 'history', 'that', 'tried', 'to', 'get', 'relationships', 'named', 'after', 'them', '||comma||', 'but', 'it', 'didnt', 'work', '||period||', 'yknow', '||comma||', 'i', 'bet', 'you', 'there', 'were', 'guys', 'who', 'tried', 'to', 'do', 'it', '||comma||', 'just', 'went', '||comma||', 'uh', '||comma||', 'hi', '||comma||', 'uh', 'my', 'names', 'rico', '||period||', 'would', 'you', 'like', 'to', 'go', 'to', 'bed', 'immediately', '||questionmark||', 'hey', '||comma||', 'its', 'a', 'riconic', 'relationship', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'morty:', 'ah', '||comma||', 'there', 'he', 'is', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'what', 'i', 'like', '||comma||', 'see', '||questionmark||', 'you', 'come', 'home', 'and', 'your', 'parents', 'are', 'in', 'your', 'bed', '||exclammark||', '||return||', '||return||', 'helen:', 'yknow', '||comma||', 'jerry', '||comma||', 'we', 'dont', 'have', 'to', 'do', 'this', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talkin', 'about', '||questionmark||', 'its', 'fine', '||comma||', 'i', 'love', 'having', 'you', 'here', '||period||', '||return||', '||return||', 'helen:', 'tomorrow', 'well', 'go', 'to', 'a', 'hotel', '||period||', '||return||', '||return||', 'jerry:', 'ma', '||comma||', 'will', 'you', 'stop', '||questionmark||', '||return||', '||return||', 'helen:', 'no', '||comma||', 'why', 'should', 'we', 'take', 'over', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'care', '||period||', 'im', 'sleeping', 'next', 'door', '||period||', '||return||', '||return||', 'helen:', 'your', 'friend', 'kramer', 'doesnt', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'hes', 'making', 'a', 'bouillabaisse', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'dad', '||comma||', 'lemme', 'ask', 'you', 'a', 'question', '||period||', 'how', 'many', 'people', 'work', 'at', 'these', 'big', 'law', 'offices', '||questionmark||', '||return||', '||return||', 'morty:', 'depends', 'on', 'the', 'firm', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'if', 'you', 'called', 'up', 'and', 'described', 'someone', '||comma||', 'do', 'you', 'think', 'they', 'would', 'know', 'who', 'it', 'was', '||questionmark||', '||return||', '||return||', 'morty:', 'whats', 'the', 'matter', '||questionmark||', 'you', 'need', 'a', 'lawyer', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'met', 'someone', 'at', 'this', 'party', '||comma||', 'and', 'i', 'know', 'where', 'she', 'works', '||comma||', 'but', 'i', 'dont', 'know', 'her', 'name', '||period||', '||return||', '||return||', 'morty:', 'so', 'why', 'dont', 'you', 'ask', 'someone', 'who', 'was', 'at', 'the', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'the', 'only', 'one', 'i', 'could', 'ask', 'is', 'elaine', '||comma||', 'and', 'i', 'cant', 'ask', 'her', '||period||', '||return||', '||return||', 'helen:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'its', 'complicated', '||period||', 'theres', 'some', 'tension', 'there', '||period||', '||return||', '||return||', 'helen:', 'he', 'used', 'to', 'go', 'with', 'her', '||period||', '||return||', '||return||', 'helen:', 'which', 'one', 'is', 'she', '||questionmark||', '||return||', '||return||', 'morty:', 'from', 'maryland', '||period||', 'the', 'one', 'who', 'brought', 'you', 'the', 'chocolate', 'covered', 'cherries', 'you', 'didnt', 'like', '||period||', '||return||', '||return||', 'helen:', 'oh', 'yeah', '||comma||', 'very', 'alert', '||period||', 'warm', 'person', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'shes', 'great', '||period||', '||return||', '||return||', 'helen:', 'so', '||comma||', 'how', 'come', 'nothing', 'materialized', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'its', 'a', 'tough', 'thing', 'to', 'talk', 'about', 'uh', '||period||', 'i', 'dunno', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'i', 'know', 'what', 'it', 'was', '||period||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'know', 'what', 'it', 'was', '||period||', '||return||', '||return||', 'helen:', 'so', '||comma||', 'what', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'fight', 'a', 'lot', 'for', 'some', 'reason', '||period||', '||return||', '||return||', 'helen', '&', 'morty:', 'oh', '||comma||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'and', 'there', 'was', 'a', 'little', 'problem', 'with', 'the', 'physical', 'chemistry', '||period||', '||return||', '||return||', 'helen:', 'well', '||comma||', 'i', 'think', 'shes', 'a', 'very', 'attractive', 'girl', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'she', 'is', '||comma||', 'she', 'absolutely', 'is', '||period||', '||return||', '||return||', 'helen:', 'i', 'can', 'see', 'if', 'there', 'was', 'a', 'weight', 'problem', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'its', 'not', 'that', '||period||', 'it', 'wasnt', 'all', 'one', '||dash||', 'sided', '||period||', '||return||', '||return||', 'helen:', 'you', 'know', '||comma||', 'you', 'cant', 'be', 'so', 'particular', '||period||', 'nobodys', 'perfect', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', 'yknow', 'jerry', '||comma||', 'its', 'a', 'good', 'thing', 'i', 'wasnt', 'so', 'particular', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'hits', 'morty', '||rightparen||', 'idiot', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'so', 'whore', 'you', 'looking', 'for', '||comma||', 'sophia', 'loren', '||questionmark||', '||return||', '||return||', 'jerry:', 'thats', 'got', 'nothin', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'morty:', 'how', 'about', 'loni', 'anderson', '||questionmark||', '||return||', '||return||', 'helen:', 'where', 'do', 'you', 'get', 'loni', 'anderson', '||questionmark||', '||return||', '||return||', 'morty:', 'why', '||comma||', 'whats', 'wrong', 'with', 'loni', 'anderson', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'like', 'elaine', 'more', 'than', 'loni', 'anderson', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'two', 'talking', 'about', '||questionmark||', 'look', '||comma||', 'elaine', 'just', 'wasnt', 'the', 'one', '||period||', '||return||', '||return||', 'helen:', 'and', 'this', 'other', 'ones', 'the', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||comma||', 'maybe', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', 'so', 'ask', 'elaine', 'there', 'for', 'her', 'number', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', '||period||', 'shell', 'get', 'upset', '||period||', 'i', 'never', 'talk', 'about', 'other', 'women', 'with', 'her', '||comma||', 'especially', 'this', 'one', 'tonight', '||period||', '||return||', '||return||', 'helen:', 'how', 'could', 'you', 'still', 'see', 'her', 'if', 'your', 'not', 'interested', '||questionmark||', '||return||', '||return||', 'jerry:', 'were', 'friends', '||period||', '||return||', '||return||', 'morty:', 'doesnt', 'sound', 'like', 'youre', 'friends', 'to', 'me', '||period||', 'if', 'you', 'were', 'friends', "you'd", '||dash||', 'youd', 'ask', 'her', 'for', 'the', 'number', '||period||', 'do', 'you', 'know', 'where', 'this', 'other', 'one', 'works', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'go', 'up', 'to', 'the', 'office', '||period||', '||return||', '||return||', 'helen:', 'up', 'to', 'her', 'office', '||questionmark||', '||return||', '||return||', 'morty:', 'go', 'to', 'the', 'building', '||period||', 'she', 'goes', 'out', 'to', 'lunch', '||comma||', 'doesnt', 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'guess', '||period||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'you', 'stand', 'in', 'the', 'lobby', '||comma||', 'by', 'the', 'elevator', '||comma||', 'and', 'wait', 'for', 'her', 'to', 'come', 'down', 'for', 'lunch', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'stakeout', 'the', 'lobby', '||questionmark||', '||return||', '||return||', 'helen:', 'morty', '||comma||', 'thats', 'ridiculous', '||period||', 'just', 'ask', 'elaine', 'for', 'the', 'number', '||exclammark||', '||return||', '||return||', 'morty:', 'he', 'doesnt', 'want', 'to', 'ask', 'elaine', 'for', 'the', 'number', '||period||', '||return||', '||return||', 'helen:', 'so', 'youve', 'got', 'him', 'standing', 'by', 'the', 'elevator', 'like', 'a', 'dope', '||exclammark||', 'what', 'happens', 'when', 'he', 'sees', 'her', '||questionmark||', '||return||', '||return||', 'morty:', 'he', 'pretends', 'he', 'bumped', 'into', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'yknow', 'what', '||questionmark||', 'this', 'is', 'not', 'that', 'bad', 'an', 'idea', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'she', 'look', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', 'hard', 'to', 'say', '||period||', '||return||', '||return||', 'george:', 'what', 'actress', 'does', 'she', 'remind', 'you', 'of', '||questionmark||', '||return||', '||return||', 'jerry:', 'loni', 'anderson', '||period||', '||return||', '||return||', 'george:', 'loni', 'anderson', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'theres', 'something', 'wrong', 'with', 'loni', 'anderson', '||questionmark||', '||leftparen||', 'pause', '||rightparen||', 'hey', 'listen', '||comma||', 'thanks', 'again', 'for', 'running', 'over', 'here', '||period||', 'i', 'appreciate', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'sure', '||period||', 'i', 'was', 'showing', 'a', 'condo', 'on', '48th', 'street', '||period||', 'besides', '||comma||', 'you', 'think', 'i', 'wanna', 'miss', 'this', '||questionmark||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'jerry:', 'im', 'a', 'little', 'nervous', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'me', 'too', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'if', 'i', 'see', 'her', '||comma||', 'what', 'do', 'i', 'say', 'that', 'im', 'doing', 'here', 'in', 'the', 'building', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'came', 'to', 'see', 'me', '||period||', 'i', 'work', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'an', 'architect', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'an', 'architect', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'see', 'architecture', 'comin', 'from', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'somewhat', 'annoyed', '||rightparen||', 'i', 'suppose', 'you', 'could', 'be', 'an', 'architect', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'said', 'that', 'i', 'was', 'the', 'architect', '||period||', 'just', 'somethin', 'else', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'shes', 'not', 'even', 'gonna', 'ask', '||comma||', 'if', 'we', 'see', 'her', '||comma||', 'which', 'is', 'remote', '||period||', '||return||', '||return||', 'jerry:', 'well', 'whaddaya', 'want', 'me', 'to', 'say', '||comma||', 'that', 'i', 'just', 'wandered', 'in', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'were', 'having', 'lunch', 'with', 'a', 'friend', '||period||', 'he', 'works', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'his', 'name', '||questionmark||', '||return||', '||return||', 'george:', 'bert', '||period||', '||period||', '||period||', 'har', '||period||', '||period||', '||period||', 'bin', '||period||', '||period||', '||period||', 'son', '||period||', 'bert', 'har', '||dash||', 'bin', '||dash||', 'son', '||period||', '||return||', '||return||', 'jerry:', 'bert', 'harbinson', '||questionmark||', 'it', 'sounds', 'made', 'up', '||period||', '||return||', '||return||', 'george:', 'no', 'good', '||questionmark||', 'all', 'right', '||comma||', 'uh', 'how', 'about', 'art', '||period||', '||period||', '||period||', 'cor', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'art', 'cor', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'velay', '||period||', '||return||', '||return||', 'jerry:', 'corvelay', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'does', 'he', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'hes', 'an', 'importer', '||period||', '||return||', '||return||', 'jerry:', 'just', 'imports', '||comma||', 'no', 'exports', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', 'hes', 'an', 'importer/exporter', '||comma||', 'okay', '||questionmark||', '||leftparen||', 'beat', '||rightparen||', 'elaine', 'ever', 'call', 'you', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'guess', 'shes', 'still', 'mad', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'understand', '||comma||', 'you', 'never', 'talk', 'to', 'her', 'about', 'other', 'women', '||questionmark||', '||return||', '||return||', 'jerry:', 'never', '||period||', '||leftparen||', 'the', 'elevator', 'door', 'opens', '||period||', '||rightparen||', 'wait', 'a', 'second', '||period||', 'thats', 'her', '||period||', 'on', 'the', 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'anxious', '||rightparen||', 'i', 'forgot', 'who', 'i', 'am', '||exclammark||', 'who', 'am', 'i', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'youre', 'you', '||period||', 'were', 'having', 'lunch', 'with', 'art', 'corvelay', '||period||', '||return||', '||return||', 'george:', 'vandelay', '||exclammark||', '||return||', '||return||', 'jerry:', 'corvelay', '||exclammark||', '||return||', '||return||', 'george:', 'let', 'me', 'be', 'the', 'architect', '||exclammark||', 'i', 'can', 'do', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||period||', 'uh', 'pamelas', 'birthday', 'party', '||comma||', 'didnt', 'i', 'see', 'you', 'there', '||questionmark||', 'jerry', '||period||', '||return||', '||return||', 'vanessa:', 'sure', '||exclammark||', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'this', 'is', 'george', '||period||', '||leftparen||', 'reaches', 'for', 'her', 'name', '||rightparen||', 'im', 'sorry', '||period||', '||period||', '||period||', '||return||', '||return||', 'vanessa:', 'vanessa', '||period||', '||return||', '||return||', 'george:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'sagman', '||comma||', 'bennet', '||comma||', 'robbins', '||comma||', 'oppenheim', 'and', 'taft', '||period||', '||return||', '||return||', 'vanessa:', 'thats', 'right', '||exclammark||', 'yea', '||comma||', 'whatre', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'were', 'meeting', 'a', 'friend', 'of', 'ours', 'for', 'lunch', '||period||', 'he', 'works', 'here', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'art', 'vandelay', '||period||', '||return||', '||return||', 'vanessa:', 'really', '||questionmark||', 'which', 'company', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'george:', '||leftparen||', 'turning', 'to', 'each', 'other', '||rightparen||', 'i', 'dont', 'know', '||period||', 'hes', 'an', 'importer', '||period||', '||return||', '||return||', 'vanessa:', 'importer', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'and', 'exporter', '||period||', '||return||', '||return||', 'jerry:', 'hes', 'an', 'importer/exporter', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'clears', 'his', 'throat', '||rightparen||', 'im', '||comma||', 'uh', '||comma||', 'im', 'an', 'architect', '||period||', '||return||', '||return||', 'vanessa:', 'really', '||period||', 'what', 'do', 'you', 'design', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'railroads', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'vanessa:', 'i', 'thought', 'engineers', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'they', 'can', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yknow', 'im', 'sorry', 'you', 'had', 'to', 'leave', 'so', 'early', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'vanessa:', 'oh', '||comma||', 'me', 'too', '||period||', 'my', 'cousin', 'had', 'to', 'go', 'back', 'to', 'boston', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'that', 'guy', 'was', 'your', 'cousin', '||exclammark||', '||leftparen||', 'walking', 'in', 'front', 'of', 'george', 'so', 'he', 'gets', 'the', 'picture', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'vanessa:', 'yeah', '||comma||', 'and', 'that', 'woman', 'was', 'your', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'friend', '||exclammark||', '||return||', '||return||', 'george:', 'ill', 'just', '||comma||', 'uh', '||comma||', 'get', 'a', 'paper', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'um', '||comma||', 'do', 'you', 'date', 'uh', 'immature', 'men', '||questionmark||', '||return||', '||return||', 'vanessa:', 'almost', 'exclusively', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'bum', 'bum', 'bum', 'bum', '||period||', '||period||', '||period||', 'i', 'have', 'no', 'letters', '||period||', '||period||', '||period||', 'bum', 'bum', 'bum', 'bum', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'annoyed', '||rightparen||', 'ma', '||comma||', 'will', 'you', 'go', 'already', '||questionmark||', '||return||', '||return||', 'helen:', 'bum', 'bum', 'bum', 'bum', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'helen:', 'wait', '||comma||', 'i', 'just', 'want', 'to', 'see', 'something', '||period||', '||return||', '||return||', 'jerry:', 'you', 'cant', 'look', 'in', 'there', '||comma||', 'were', 'playing', '||exclammark||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'cleaning', 'his', 'shoes', '||rightparen||', 'good', 'evening', '||comma||', 'mr', '||period||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'morty', '||exclammark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'salad', 'dressing', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||period||', '||return||', '||return||', 'helen:', 'quo', '||period||', 'is', 'that', 'a', 'word', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', '||exclammark||', '||return||', '||return||', 'helen:', 'will', 'you', 'challenge', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'ma', '||comma||', 'you', 'cant', 'look', 'up', 'words', 'in', 'the', 'dictionary', '||exclammark||', '||leftparen||', 'to', 'morty', '||rightparen||', 'dad', '||comma||', 'shes', 'cheating', '||exclammark||', '||return||', '||return||', 'kramer:', 'quo', '||questionmark||', 'thats', 'not', 'a', 'word', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'youre', 'such', 'a', 'stickler', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', 'put', 'something', 'down', '||comma||', 'youre', 'taking', 'twenty', 'minutes', 'on', 'this', '||period||', 'so', 'is', 'uncle', 'mac', 'and', 'artie', '||comma||', 'theyre', 'all', 'coming', 'over', 'here', 'before', 'the', 'wedding', '||questionmark||', '||return||', '||return||', 'helen:', 'theyll', 'be', 'here', 'at', 'two', 'oclock', '||period||', 'oh', '||comma||', 'elaine', 'called', '||period||', 'she', 'said', 'shed', 'be', 'here', 'at', 'two', '||dash||', 'thirty', '||period||', 'and', 'she', 'says', 'hope', 'your', 'meeting', 'went', 'well', 'with', 'art', 'vandelay', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'said', 'what', '||questionmark||', '||return||', '||return||', 'helen:', 'just', 'what', 'i', 'said', '||comma||', 'here', '||period||', '||return||', '||return||', 'jerry:', 'she', 'knows', '||exclammark||', 'oh', '||comma||', 'i', 'am', 'such', 'a', 'jackass', '||period||', '||return||', '||return||', 'helen:', 'she', 'knows', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'knows', 'the', 'whole', 'stupid', 'thing', '||period||', 'vanessa', 'and', 'the', 'elevator', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'that', 'wont', 'do', '||period||', 'he', 'may', 'have', 'a', 'z', '||period||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'how', 'did', 'she', 'find', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', '||comma||', 'vanessa', 'probably', 'told', 'pamela', '||comma||', 'and', 'pamela', 'probably', 'told', 'elaine', '||period||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'what', 'are', 'you', '||questionmark||', 'afraid', 'of', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'yes', 'i', 'am', '||exclammark||', '||leftparen||', 'to', 'helen', '||rightparen||', 'what', 'else', 'did', 'she', 'say', 'on', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'helen:', 'whatever', 'i', 'wrote', 'down', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'what', 'was', 'the', 'tone', 'in', 'her', 'voice', '||questionmark||', 'how', 'did', 'she', 'sound', '||questionmark||', '||return||', '||return||', 'helen:', 'who', 'am', 'i', '||comma||', 'rich', 'little', '||questionmark||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'she', 'cant', 'be', 'too', 'mad', '||period||', 'shes', 'still', 'coming', 'to', 'the', 'wedding', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'now', 'im', 'nervous', '||period||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'jerry:', 'quone', '||questionmark||', '||return||', '||return||', 'helen:', '||period||', '||period||', '||period||', '30', '||period||', '||period||', '||period||', '31', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'quone', '||questionmark||', 'no', '||comma||', 'im', 'afraid', 'that', 'im', 'going', 'to', 'have', 'to', 'challenge', 'that', '||period||', '||return||', '||return||', 'helen:', '||period||', '||period||', '||period||', '32', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'you', 'dont', 'have', 'to', 'challenge', 'that', '||period||', 'thats', 'a', 'word', '||period||', 'thats', 'a', 'definite', 'word', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'challenging', '||period||', '||return||', '||return||', 'kramer:', 'quone', '||period||', 'to', 'quone', 'something', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'helen:', 'im', 'not', 'playing', 'with', 'you', 'anymore', '||period||', '||return||', '||return||', 'morty:', 'quones', 'not', 'a', 'word', '||period||', '||return||', '||return||', 'jerry:', 'no', 'good', '||period||', 'sorry', '||period||', 'there', 'it', 'is', '||period||', 'get', 'it', 'off', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'why', 'did', 'you', 'make', 'me', 'put', 'that', 'down', '||questionmark||', '||return||', '||return||', 'kramer:', 'nah', '||comma||', 'we', 'need', 'a', 'medical', 'dictionary', '||exclammark||', 'if', 'a', 'patient', 'gets', 'difficult', '||comma||', 'you', 'quone', 'him', '||period||', '||return||', '||return||', 'carol:', 'you', 'want', 'some', 'funny', 'material', '||comma||', 'you', 'oughta', 'come', 'down', 'to', 'where', 'i', 'work', '||comma||', 'now', 'thats', 'a', 'sitcom', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'must', 'have', 'quite', 'a', 'time', 'down', 'there', '||period||', '||return||', '||return||', 'carol:', 'we', 'got', 'plenty', 'of', 'time', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'im', 'sorry', '||period||', 'im', 'just', 'waiting', 'for', 'someone', '||period||', '||return||', '||return||', 'uncle', 'mac:', 'watch', 'what', 'you', 'say', 'to', 'this', 'guy', '||period||', 'hell', 'put', 'it', 'in', 'his', 'next', 'act', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'uncle', 'mac:', 'jerry', '||comma||', 'did', 'i', 'tell', 'you', 'that', 'im', 'writing', 'a', 'book', '||questionmark||', 'an', 'autobiography', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'uncle', 'mac', '||comma||', 'you', 'mentioned', 'it', '||period||', '||return||', '||return||', 'uncle', 'mac:', 'its', 'based', 'on', 'all', 'my', 'experiences', '||exclammark||', '||return||', '||return||', 'jerry:', 'thats', 'perfect', '||period||', '||return||', '||return||', 'jerry:', 'could', 'you', 'excuse', 'me', 'one', 'second', '||questionmark||', 'im', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'do', '||questionmark||', '||leftparen||', 'introducing', 'himself', '||rightparen||', 'uh', '||comma||', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'how', 'do', 'you', 'do', '||questionmark||', 'elaine', 'benes', '||period||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'do', 'you', 'want', 'to', 'do', 'this', 'now', '||comma||', 'or', 'do', 'you', 'want', 'to', 'wait', 'until', 'we', 'get', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'no', '||comma||', 'lets', 'do', 'it', 'now', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'the', 'whole', 'elevator', 'business', '||comma||', 'let', 'me', 'just', 'explain', '||dash||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'artie:', 'jerry', '||comma||', 'were', 'you', 'goin', 'with', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'im', 'gonna', 'take', 'my', 'car', '||period||', '||return||', '||return||', 'artie:', 'thats', 'why', 'i', 'brought', 'the', 'wagon', '||period||', 'why', 'the', 'hell', 'did', 'i', 'bring', 'the', 'wagon', '||questionmark||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'you', 'know', 'why', 'i', 'didnt', 'ask', 'you', '||comma||', 'i', 'mean', 'i', 'felt', 'so', 'uncomfortable', '||comma||', 'and', 'you', 'were', 'so', 'annoyed', 'in', 'the', 'cab', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'jerry', '||comma||', 'i', 'never', 'saw', 'you', 'flirt', 'with', 'anyone', 'before', '||period||', 'it', 'was', 'quite', 'the', 'spectacle', '||period||', '||return||', '||return||', 'carol:', 'jerry', '||comma||', 'well', 'see', 'you', 'there', '||period||', 'bye', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'bye', '||period||', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'artie:', 'oh', '||comma||', 'we', 'didnt', 'meet', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'im', 'sorry', '||period||', 'elaine', '||comma||', 'this', 'is', 'my', 'cousin', '||comma||', 'artie', 'levine', '||period||', '||return||', '||return||', 'artie:', '||leftparen||', 'correcting', 'jerry', '||rightparen||', 'levine', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'yeah', '||comma||', 'levine', '||period||', 'and', 'im', 'jerry', 'cougar', 'mellencamp', '||period||', 'anyway', '||comma||', 'i', 'admit', 'it', 'was', 'a', 'fairly', 'ridiculous', 'thing', 'to', 'do', '||comma||', 'but', 'i', 'mean', '||comma||', 'i', 'mean', '||comma||', 'obviously', 'we', 'have', 'a', 'little', 'problem', 'here', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'obviously', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'if', 'were', 'gonna', 'be', 'friends', '||comma||', 'we', 'gotta', 'be', 'able', 'to', 'talk', 'about', 'other', 'people', '||period||', '||return||', '||return||', 'elaine:', 'couldnt', 'agree', 'more', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||return||', '||return||', 'elaine:', 'good', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||return||', '||return||', 'elaine:', 'great', '||exclammark||', '||return||', '||return||', 'jerry:', 'great', '||questionmark||', 'where', 'do', 'you', 'get', 'great', '||questionmark||', '||return||', '||return||', 'elaine:', 'its', 'great', 'to', '||period||', '||period||', '||period||', 'talk', 'about', '||period||', '||period||', '||period||', 'other', 'people', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'guys', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', 'yeah', '||period||', 'so', '||comma||', 'anybody', 'specific', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'a', 'general', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'really', '||questionmark||', 'elaine', 'marie', 'benes', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'no', '||comma||', 'its', 'not', 'a', 'big', 'deal', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'thats', 'great', '||exclammark||', 'thats', 'terrific', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'we', 'just', 'met', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'doesnt', 'matter', '||period||', 'whats', 'the', 'young', 'mans', 'name', '||questionmark||', 'i', 'would', 'like', 'to', 'meet', 'him', '||period||', '||return||', '||return||', 'elaine:', 'hmmm', '||comma||', 'i', 'dont', 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'does', 'he', 'do', '||questionmark||', 'is', 'he', 'an', 'artisan', '||comma||', 'a', 'craftsman', '||comma||', 'a', 'labourer', 'of', 'some', 'sort', '||questionmark||', '||return||', '||return||', 'elaine:', 'wall', 'street', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'high', 'finance', '||period||', 'bulls', '||comma||', 'bears', '||comma||', 'people', 'from', 'conneticut', '||period||', '||return||', '||return||', 'elaine:', 'and', 'he', 'happens', 'to', 'be', 'pretty', 'good', 'lookin', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'all', 'right', '||comma||', 'sir', '||period||', '||return||', '||return||', 'elaine:', 'and', '||period||', '||period||', '||period||', 'hes', 'hilarious', '||period||', '||return||', '||return||', 'jerry:', 'now', 'thats', 'not', 'fair', '||exclammark||', 'so', 'where', 'did', 'you', 'meet', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'staked', 'out', 'his', 'health', 'club', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', 'when', 'youre', 'on', 'a', 'stakeout', '||comma||', 'do', 'you', 'find', 'its', 'better', 'to', 'stand', 'up', 'against', 'the', 'wall', '||comma||', 'or', 'kinda', 'crouch', 'down', 'behind', 'a', 'big', 'plant', '||questionmark||', '||return||', '||return||', 'jerry:', 'yknow', 'i', 'think', 'that', 'even', 'if', 'youve', 'had', 'a', 'relationship', 'with', 'someone', '||comma||', 'or', 'lets', 'say', '||comma||', 'especially', 'if', 'youve', 'had', 'a', 'relationship', 'with', 'someone', 'and', 'you', 'try', 'to', 'become', 'friends', 'afterwards', '||comma||', 'its', 'very', 'difficult', '||period||', 'isnt', 'this', '||questionmark||', 'its', 'hard', '||period||', 'because', '||comma||', 'you', 'know', 'each', 'other', 'so', 'well', '||comma||', 'you', 'know', 'all', 'of', 'each', 'others', 'tricks', '||period||', 'its', 'like', 'two', 'magicians', '||comma||', 'trying', 'to', 'entertain', 'each', 'other', '||period||', 'the', 'one', 'goes', '||comma||', 'look', '||comma||', 'a', 'rabbit', '||period||', 'the', 'other', 'goes', '||comma||', 'so', '||questionmark||', 'i', 'believe', 'this', 'is', 'your', 'card', '||period||', 'look', '||comma||', 'why', 'dont', 'we', 'just', 'saw', 'each', 'other', 'in', 'half', 'and', 'call', 'it', 'a', 'night', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'move', 'into', 'the', 'centre', 'lane', '||comma||', 'now', 'i', 'get', 'ahead', 'of', 'this', 'women', '||comma||', 'who', 'felt', 'for', 'some', 'reason', 'i', 'guess', '||comma||', 'that', 'she', 'thought', 'that', 'i', 'cut', 'her', 'off', '||period||', 'so', '||comma||', 'she', 'pulls', 'up', 'along', 'side', 'of', 'me', '||comma||', 'gives', 'me', 'the', 'finger', '||period||', 'it', 'seems', 'like', 'such', 'an', 'arbitrary', '||comma||', 'ridiculous', 'thing', 'to', 'just', 'pick', 'a', 'finger', 'and', 'you', 'show', 'it', 'to', 'the', 'person', '||period||', 'its', 'a', 'finger', '||comma||', 'what', 'does', 'it', 'mean', '||questionmark||', 'someone', 'shows', 'me', 'one', 'of', 'their', 'fingers', 'and', 'im', 'supposed', 'to', 'feel', 'bad', '||period||', 'is', 'that', 'the', 'way', 'its', 'supposed', 'to', 'work', '||questionmark||', 'i', 'mean', '||comma||', 'you', 'could', 'just', 'give', 'someone', 'the', 'toe', '||comma||', 'really', '||comma||', 'couldnt', 'you', '||questionmark||', 'i', 'would', 'feel', 'worse', 'if', 'i', 'got', 'the', 'toe', '||comma||', 'than', 'if', 'i', 'got', 'the', 'finger', '||period||', 'cause', 'its', 'not', 'easy', 'to', 'give', 'someone', 'the', 'toe', '||comma||', 'youve', 'gotta', 'get', 'the', 'shoe', 'off', '||comma||', 'the', 'sock', 'off', 'and', 'drive', '||comma||', 'get', 'it', 'up', 'and', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'pretends', 'to', 'drive', 'with', 'one', 'foot', 'in', 'the', 'air', '||comma||', 'giving', 'the', 'toe', '||period||', '||rightparen||', 'look', 'at', 'that', 'toe', '||comma||', 'buddy', '||period||', '||leftparen||', 'he', 'puts', 'his', 'foot', 'down', '||period||', '||rightparen||', 'i', 'mean', '||comma||', 'thats', 'really', 'insulting', 'to', 'get', 'the', 'toe', '||comma||', 'isnt', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'it', '||questionmark||', 'got', 'the', 'cue', 'tips', '||comma||', 'got', 'the', 'mini', '||dash||', 'umbrella', '||comma||', 'something', 'boring', 'to', 'read', 'on', 'the', 'plane', '||period||', '||leftparen||', 'jerry', 'zips', 'his', 'bag', 'ceremoniously', '||period||', '||rightparen||', 'thats', 'it', '||period||', 'done', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'claps', 'her', 'hands', '||rightparen||', 'that', 'is', 'the', 'single', 'greatest', 'packing', 'performance', 'i', 'have', 'ever', 'seen', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'proudly', '||rightparen||', 'i', 'am', '||period||', '||period||', '||period||', 'the', 'master', 'packer', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'yeah', '||comma||', 'right', '||comma||', 'youre', 'the', 'master', 'packer', '||period||', '||return||', '||return||', 'jerry:', 'what', 'you', 'must', 'understand', '||comma||', 'elaine', '||comma||', '||leftparen||', 'picking', 'up', 'the', 'umbrella', '||rightparen||', 'packing', 'is', 'no', 'different', 'than', 'leading', 'men', 'into', 'battle', '||period||', '||leftparen||', 'jerry', 'hits', 'his', 'bag', 'rhythmically', 'with', 'his', 'umbrella', '||period||', '||rightparen||', 'youve', 'gotta', 'know', 'the', 'strengths', 'and', 'weaknesses', 'of', 'every', 'soldier', 'in', 'that', 'platoon', '||period||', 'from', 'a', 'collapsible', 'toothbrush', 'to', 'a', 'pair', 'of', 'ordinary', 'black', 'socks', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'raising', 'her', 'hand', '||rightparen||', 'scuse', 'me', '||comma||', 'master', 'packer', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'just', 'gimme', 'your', 'keys', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'sir', '||period||', '||leftparen||', 'he', 'tosses', 'elaine', 'his', 'keys', '||period||', 'the', 'apartment', 'buzzer', 'goes', 'off', '||semicolon||', 'jerry', 'presses', 'the', 'first', 'button', '||semicolon||', 'to', 'the', 'intercom', '||rightparen||', 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'from', 'the', 'intercom', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'so', '||comma||', 'now', '||comma||', 'is', 'there', 'anything', 'else', 'i', 'need', 'to', 'know', 'about', 'this', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||comma||', 'the', '||comma||', 'uh', '||comma||', 'hot', 'water', 'takes', 'a', 'little', 'while', 'to', 'come', 'on', '||period||', 'so', '||comma||', 'the', 'best', 'thing', 'to', 'do', 'is', 'to', 'turn', 'it', 'on', '||comma||', 'do', 'all', 'your', 'shopping', '||comma||', 'you', 'come', 'back', 'and', 'take', 'a', 'shower', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'this', 'is', 'quite', 'a', 'place', '||period||', '||return||', '||return||', 'jerry:', 'theres', 'more', '||period||', 'the', 'refrigerator', '||period||', '||return||', '||return||', 'jerry:', 'deduct', 'a', 'minimum', 'of', 'two', 'days', 'off', 'all', 'expiration', 'dates', '||period||', '||leftparen||', 'he', 'uses', 'the', 'umbrella', 'to', 'point', 'to', 'certain', 'compartments', 'in', 'the', 'fridge', '||period||', '||rightparen||', 'no', 'meat', '||comma||', 'no', 'leftovers', '||comma||', 'no', 'butter', '||period||', '||leftparen||', 'he', 'closes', 'the', 'fridge', '||period||', '||rightparen||', 'and', 'i', 'cannot', 'overstate', 'this', 'no', 'soft', 'cheeses', 'of', 'any', 'kind', '||period||', 'is', 'that', 'clear', '||questionmark||', '||return||', '||return||', 'elaine:', 'ill', 'eat', 'out', '||period||', '||return||', '||return||', 'jerry:', 'one', 'more', 'thing', '||comma||', 'benes', '||comma||', 'regarding', 'sexual', 'activity', 'strictly', 'prohibited', '||comma||', 'but', 'if', 'you', 'absolutely', 'must', '||comma||', 'do', 'us', 'all', 'a', 'big', 'favour', '||period||', 'do', 'it', 'in', 'the', 'tub', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'one', 'sec', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'george:', 'coming', 'to', 'the', 'airport', 'with', 'us', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'im', 'staying', 'here', 'for', 'the', 'weekend', '||period||', 'im', 'getting', 'a', 'break', 'from', 'my', 'roommate', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'actress', '||dash||', 'waitress', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'the', 'waitress', '||dash||', 'actress', '||period||', 'she', 'just', 'got', 'some', 'part', 'in', 'some', 'dinner', 'theater', 'production', 'of', 'a', 'chorus', 'line', '||period||', 'so', '||comma||', 'now', 'all', 'day', 'long', 'shes', 'walking', 'around', 'the', 'apartment', 'singing', '||comma||', 'god', '||comma||', 'i', 'hope', 'i', 'get', 'it', '||comma||', 'i', 'hope', 'i', 'get', 'it', '||exclammark||', 'shes', 'gonna', 'get', 'it', 'right', 'in', 'her', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'so', 'just', 'kick', 'her', 'out', '||period||', '||return||', '||return||', 'elaine:', 'shes', 'on', 'the', 'lease', '||exclammark||', 'george', 'you', 'have', 'got', 'to', 'find', 'another', 'place', 'for', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', '||period||', '||period||', '||period||', 'a', 'little', 'rough', 'finding', 'something', 'good', 'in', 'your', 'price', '||dash||', 'range', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'but', 'you', '||comma||', 'my', 'friend', '||comma||', 'may', 'be', 'in', 'luck', '||period||', '||return||', '||return||', 'jerry:', 'im', 'not', 'looking', '||period||', '||return||', '||return||', 'george:', 'no', 'no', 'no', '||comma||', 'this', 'ones', 'different', '||period||', 'this', 'ones', 'a', 'beauty', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'whats', 'it', 'like', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'havent', 'seen', 'it', 'yet', '||comma||', 'but', 'its', 'a', 'two', '||dash||', 'bedroom', '||comma||', 'its', 'on', 'the', 'uh', '||comma||', 'west', '83rd', '||comma||', 'bout', 'a', 'half', 'block', 'from', 'the', 'park', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'twice', 'what', 'youre', 'payin', 'here', '||comma||', 'but', 'its', 'a', 'great', 'building', '||period||', 'its', 'two', 'bedrooms', '||exclammark||', '||return||', '||return||', 'jerry:', 'two', 'bedrooms', '||questionmark||', 'why', 'do', 'i', 'need', 'two', 'bedrooms', '||questionmark||', 'i', 'got', 'enough', 'trouble', 'maintaining', 'activity', 'in', 'one', '||period||', '||leftparen||', 'george', 'gives', 'elaine', 'a', 'look', 'while', 'jerrys', 'back', 'is', 'turned', '||period||', 'jerry', 'turns', 'around', '||period||', '||rightparen||', 'i', 'saw', 'that', '||period||', '||return||', '||return||', 'elaine:', 'you', 'oughta', 'at', 'least', 'take', 'a', 'look', 'at', 'it', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'cause', 'then', 'i', 'could', 'move', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'ohhhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'its', 'time', 'you', 'got', 'outta', 'here', 'anyway', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'tell', 'im', '||period||', 'but', 'quickly', '||comma||', 'im', 'double', 'parked', 'here', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'jerry', '||comma||', 'this', 'place', 'is', 'falling', 'apart', '||period||', 'you', 'have', 'no', 'hot', 'water', '||comma||', 'you', 'cant', 'have', 'soft', 'cheese', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'lets', 'not', 'forget', 'the', 'radiator', '||period||', 'the', 'steam', 'has', 'been', 'on', 'here', 'for', 'ten', 'years', '||period||', 'no', 'human', 'can', 'turn', 'this', 'off', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'come', 'on', '||comma||', 'youre', 'doin', 'okay', 'now', '||period||', 'you', 'should', 'at', 'least', 'take', 'a', 'look', 'at', 'this', 'place', '||period||', 'you', 'shouldnt', 'have', 'to', 'live', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', 'like', 'this', '||questionmark||', 'you', 'just', 'said', 'you', 'wanted', 'to', 'live', 'here', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'for', 'me', 'its', 'a', 'step', 'up', '||period||', 'its', 'like', 'moving', 'from', 'iceland', 'to', 'finland', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'what', 'do', 'you', '||comma||', 'you', 'wanna', '||comma||', 'you', 'wanna', 'see', 'the', 'place', 'or', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'think', 'about', 'it', 'now', '||period||', 'come', 'on', '||comma||', 'im', 'going', 'to', 'minneapolis', '||period||', 'i', 'got', 'four', 'shows', 'this', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||leftparen||', 'jerry', 'puts', 'his', 'bags', 'down', '||comma||', 'sits', 'down', 'on', 'the', 'couch', '||comma||', 'picks', 'up', 'the', 'remote', 'control', 'and', 'points', 'it', 'at', 'the', 'spot', 'the', 'tv', 'usually', 'occupies', '||period||', 'the', 'tv', 'is', 'not', 'there', '||period||', 'he', 'continues', 'to', 'point', 'the', 'remote', 'at', 'random', 'things', 'around', 'the', 'room', '||comma||', 'searching', 'for', 'the', 'tv', '||period||', '||rightparen||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'from', 'the', 'bathroom', '||rightparen||', 'jerry', '||exclammark||', '||leftparen||', 'elaine', 'enters', 'the', 'living', '||dash||', 'room', '||period||', '||rightparen||', 'jerry', '||comma||', 'oh', '||comma||', 'hi', '||comma||', 'welcome', 'back', '||period||', 'how', 'were', 'the', 'shows', '||questionmark||', '||return||', '||return||', 'jerry:', 'great', '||comma||', 'i', 'had', 'fun', '||period||', 'wheres', 'the', 'tv', '||comma||', 'wheres', 'the', 'vcr', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'were', 'stolen', '||period||', '||return||', '||return||', 'jerry:', 'stolen', '||questionmark||', 'when', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'couple', 'a', 'hours', 'ago', '||period||', 'the', 'police', 'are', 'coming', 'right', 'over', '||period||', '||return||', '||return||', 'jerry:', 'stolen', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'at', 'kramer', '||rightparen||', 'someone', 'left', 'the', 'door', 'open', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'left', 'the', 'door', 'open', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'jer', '||comma||', 'well', 'you', 'know', '||comma||', 'i', 'was', 'cookin', 'and', 'i', '||comma||', 'i', 'uh', '||comma||', 'i', 'came', 'in', 'to', 'get', 'this', 'spatula', '||period||', '||period||', '||period||', 'and', 'i', 'left', 'the', 'door', 'open', '||comma||', 'cause', 'i', 'was', 'gonna', 'bring', 'the', 'spatula', 'right', 'back', '||exclammark||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'you', 'left', 'the', 'lock', 'open', 'or', 'the', 'door', 'open', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'guiltily', '||rightparen||', 'the', 'door', '||period||', '||return||', '||return||', 'jerry:', 'the', 'door', '||questionmark||', 'you', 'left', 'the', 'door', 'open', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'was', 'gonna', 'bring', 'the', 'spatula', 'right', 'back', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'got', 'caught', 'up', '||period||', '||period||', '||period||', 'watching', 'a', 'soap', 'opera', '||period||', 'the', 'bold', 'and', 'the', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'so', 'the', 'door', 'was', 'wide', 'open', '||questionmark||', '||return||', '||return||', 'kramer:', 'wide', 'open', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'and', 'where', 'were', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'was', 'at', 'bloomingdales', '||period||', '||period||', '||period||', 'waiting', 'for', 'the', 'shower', 'to', 'heat', 'up', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'jerry', '||comma||', 'im', 'sorry', '||comma||', 'im', 'uh', '||dash||', 'you', 'have', 'insurance', '||comma||', 'right', 'buddy', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shocked', '||rightparen||', 'how', 'can', 'you', 'not', 'have', 'insurance', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', 'spent', 'my', 'money', 'on', 'the', 'clapgo', 'd', '||dash||', '29', '||period||', 'its', 'the', 'most', 'impenetrable', 'lock', 'on', 'the', 'market', 'today', '||period||', 'it', 'has', 'only', 'one', 'design', 'flaw', '||period||', 'the', 'door', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'pushes', 'the', 'door', 'shut', '||period||', '||rightparen||', '||period||', '||period||', '||period||', 'must', 'be', 'closed', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||exclammark||', 'im', 'gonna', 'find', 'your', 'stuff', '||period||', 'im', 'gonna', 'solve', 'it', '||comma||', 'im', 'on', 'the', 'case', '||comma||', 'buddy', '||comma||', 'im', 'on', 'the', 'case', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'dont', 'investigate', '||comma||', 'dont', 'pay', 'me', 'back', '||comma||', 'it', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'theatrical', '||rightparen||', 'i', 'made', 'a', 'mistake', '||period||', '||return||', '||return||', 'elaine:', 'these', 'things', 'happen', '||period||', '||return||', '||return||', 'kramer:', 'im', 'human', '||period||', '||return||', '||return||', 'jerry:', 'in', 'your', 'way', '||period||', '||return||', '||return||', 'policeman:', 'lets', 'see', '||comma||', 'thats', '||comma||', 'one', 'tv', '||comma||', 'a', 'stereo', '||comma||', 'one', 'leather', 'jacket', '||comma||', 'a', 'vcr', 'and', 'a', 'computer', '||period||', '||period||', '||period||', 'is', 'that', 'bout', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'answering', 'machine', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disappointed', '||rightparen||', 'answering', 'machine', '||period||', '||leftparen||', 'jovially', '||rightparen||', 'oh', '||comma||', 'i', 'hate', 'the', 'idea', 'of', 'somebody', 'out', 'there', 'returning', 'my', 'calls', '||period||', '||return||', '||return||', 'policeman:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'its', 'a', 'joke', '||period||', '||return||', '||return||', 'policeman:', 'i', 'see', '||period||', 'well', '||comma||', 'mister', 'seinfeld', 'uh', '||comma||', 'well', 'look', 'into', 'it', 'and', 'uh', '||comma||', 'well', 'let', 'you', 'know', 'if', 'we', 'uh', '||comma||', 'you', 'know', '||comma||', 'if', 'we', 'find', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ever', 'find', 'anything', '||questionmark||', '||return||', '||return||', 'policeman:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thanks', 'anyway', '||period||', '||return||', '||return||', 'policeman:', 'you', 'bet', '||period||', '||return||', '||return||', 'elaine:', 'i', 'didnt', 'get', 'that', 'joke', 'either', '||period||', '||return||', '||return||', 'jerry:', 'the', 'crook', 'has', 'the', 'machine', '||period||', 'the', 'messages', 'arent', 'for', 'him', '||period||', 'hes', 'the', 'crook', '||period||', 'why', 'would', 'he', 'answer', '||dash||', '||leftparen||', 'jerry', 'gives', 'up', 'on', 'the', 'explanation', 'and', 'turns', 'around', 'to', 'see', 'george', 'standing', 'behind', 'him', '||period||', '||rightparen||', 'how', 'did', 'you', 'get', 'in', 'here', '||questionmark||', '||return||', '||return||', 'george', ':', 'i', 'walked', 'in', '||comma||', 'your', 'lobby', 'door', 'is', 'broken', 'again', '||period||', '||return||', '||return||', 'jerry:', 'again', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', 'how', 'you', 'put', 'up', 'with', 'this', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'tell', 'im', 'george', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'would', 'still', 'wanna', 'move', 'in', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', 'you', 'dont', 'understand', '||period||', 'im', 'living', 'with', 'ethel', 'merman', 'without', 'the', 'talent', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'is', 'that', 'uh', '||comma||', 'other', 'apartment', 'still', 'available', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'ripped', 'off', 'for', 'about', 'the', '||period||', '||period||', '||period||', '18th', 'time', '||questionmark||', 'and', 'now', '||comma||', 'the', 'first', 'couple', 'a', 'times', 'you', 'go', 'through', 'it', '||comma||', 'its', 'very', 'upsetting', 'and', 'your', 'first', 'reaction', 'or', 'one', 'of', 'your', 'friends', 'will', 'say', '||comma||', 'call', 'the', 'police', '||period||', 'you', 'really', 'should', 'call', 'the', 'police', '||period||', 'so', 'you', 'think', 'to', 'yourself', '||comma||', 'you', 'know', '||comma||', 'you', 'watch', 'tv', '||comma||', 'you', 'think', '||comma||', 'yeah', '||comma||', 'im', 'calling', 'the', 'police', '||period||', 'stakeouts', '||comma||', 'manhunts', '||period||', '||period||', '||period||', 'im', 'gonna', 'see', 'some', 'real', 'action', '||period||', 'right', '||comma||', 'you', 'think', 'that', '||period||', 'so', '||comma||', 'the', 'police', 'come', 'over', 'to', 'your', 'house', '||comma||', 'they', 'fill', 'out', 'the', 'report', '||period||', 'they', 'give', 'you', 'your', 'copy', '||period||', 'now', '||comma||', 'unless', 'they', 'give', 'the', 'crook', 'his', 'copy', '||comma||', 'i', 'dont', 'really', 'think', 'were', 'gonna', 'crack', 'this', 'case', '||comma||', 'do', 'you', '||questionmark||', 'its', 'not', 'like', 'batman', '||comma||', 'where', 'theres', 'three', 'crooks', 'in', 'the', 'city', 'and', 'everybody', 'pretty', 'much', 'knows', '||comma||', 'who', 'they', 'are', '||period||', 'very', 'few', 'crooks', 'even', 'go', 'to', 'the', 'trouble', 'to', 'come', 'up', 'with', 'a', 'theme', 'for', 'their', 'careers', 'anymore', '||period||', 'it', 'makes', 'them', 'a', 'lot', 'tougher', 'to', 'spot', '||period||', 'did', 'you', 'lose', 'a', 'sony', '||questionmark||', 'it', 'could', 'be', 'the', 'penguin', '||period||', 'i', 'think', 'we', 'can', 'round', 'him', 'up', '||comma||', 'hes', 'dressed', 'like', 'a', 'penguin', '||exclammark||', 'we', 'can', 'find', 'him', '||comma||', 'hes', 'a', 'penguin', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'come', 'on', '||period||', 'this', 'is', 'an', 'apartment', '||comma||', 'this', 'is', 'a', 'home', '||exclammark||', 'this', 'is', 'a', 'place', 'to', 'live', '||period||', 'oooh', '||comma||', 'a', 'fireplace', '||comma||', 'are', 'you', 'kidding', 'me', '||exclammark||', 'does', 'this', 'work', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'didnt', 'know', 'there', 'was', 'a', 'fireplace', '||period||', 'a', 'fireplace', '||comma||', "that's", 'incredible', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'get', 'all', 'that', 'wood', 'in', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'deliver', 'it', '||period||', '||return||', '||return||', 'jerry:', 'they', 'deliver', 'wood', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'tip', 'a', 'wood', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'didnt', 'know', 'there', 'was', 'a', 'fireplace', '||period||', '||return||', '||return||', 'elaine:', 'look', '||exclammark||', 'look', 'at', '||dash||', 'look', 'at', 'this', '||exclammark||', 'theres', 'a', 'garden', '||period||', '||return||', '||return||', 'george:', 'a', 'garden', '||exclammark||', 'i', 'cant', 'believe', 'theres', 'a', 'garden', '||exclammark||', '||return||', '||return||', 'jerry:', 'would', 'i', 'have', 'to', 'get', 'a', 'gardener', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'can', 'get', 'a', 'gardener', '||period||', '||return||', '||return||', 'jerry:', 'you', 'tip', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'can', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'dont', 'tip', 'a', 'gardener', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'can', 'tip', 'a', 'gardener', '||period||', '||return||', '||return||', 'george:', 'you', 'dont', 'need', 'a', 'gardener', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'can', 'barbecue', 'back', 'here', '||period||', '||return||', '||return||', 'jerry:', 'they', 'deliver', 'the', 'coal', '||questionmark||', '||return||', '||return||', 'elaine:', 'sure', '||comma||', 'its', '||period||', '||period||', '||period||', 'probably', 'the', 'same', 'guy', '||comma||', 'who', 'delivers', 'the', 'wood', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'then', 'i', 'gotta', 'tip', 'him', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'damn', '||comma||', 'this', 'place', 'is', 'incredible', '||comma||', 'look', 'at', 'all', 'this', 'great', 'light', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'have', 'any', 'plants', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'plants', '||period||', '||leftparen||', 'snorts', '||rightparen||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'look', 'at', 'this', 'closet', '||exclammark||', 'look', 'at', 'this', '||exclammark||', 'im', 'walking', 'in', 'it', '||exclammark||', '||leftparen||', 'elaine', 'walks', 'into', 'the', 'closet', '||period||', '||rightparen||', 'its', 'a', 'walk', '||dash||', 'in', '||period||', 'can', 'you', 'believe', 'it', '||questionmark||', 'im', 'nuts', 'about', 'this', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'like', 'that', '||period||', '||leftparen||', 'he', 'opens', 'the', 'closet', '||period||', 'elaine', 'walks', 'out', 'with', 'an', 'angry', 'look', '||period||', '||rightparen||', 'what', 'do', 'you', 'think', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'its', 'your', 'decision', '||period||', '||return||', '||return||', 'jerry:', 'im', 'takin', 'it', '||comma||', 'im', 'takin', 'the', 'place', '||period||', 'im', 'gonna', 'take', 'it', '||comma||', 'this', 'is', 'gonna', 'be', 'my', 'new', 'place', '||period||', 'im', 'livin', 'here', '||period||', '||period||', '||period||', 'im', 'movin', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', 'with', 'joy', '||rightparen||', 'your', 'movin', '||questionmark||', 'that', 'means', 'im', 'movin', '||period||', '||leftparen||', 'she', 'hugs', 'jerry', '||period||', '||rightparen||', 'geeeeee', '||leftparen||', 'to', 'george', '||rightparen||', 'isnt', 'that', 'incredible', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'unenthusiastic', '||rightparen||', 'congratulations', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'the', 'couch', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'like', 'the', 'couch', '||questionmark||', 'ill', 'tell', 'you', 'what', 'im', 'gonna', 'do', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'youre', 'movin', 'in', '||comma||', 'youre', 'a', 'good', 'friend', '||comma||', 'i', 'wanna', 'start', 'you', 'off', 'on', 'the', 'right', 'foot', '||period||', 'give', 'me', '||period||', '||period||', '||period||', 'a', 'hundred', 'and', 'fifty', 'dollars', '||period||', '||leftparen||', 'elaine', 'is', 'shocked', '||comma||', 'jerry', 'opens', 'the', 'door', 'to', 'the', 'hall', '||period||', '||rightparen||', 'get', 'it', 'outta', 'here', 'right', 'now', '||comma||', 'take', 'it', 'out', 'the', 'door', '||comma||', 'i', 'dont', 'even', 'wanna', 'see', 'it', '||comma||', 'go', '||comma||', 'get', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', 'a', 'hundred', 'and', 'fifty', 'dollars', '||questionmark||', 'a', 'hundred', 'and', 'fifty', 'dollars', 'for', 'what', '||questionmark||', 'for', 'this', 'couch', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'for', 'this', 'couch', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'you', 'tell', 'me', '||period||', 'what', 'is', 'it', 'worth', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'uh', '||comma||', 'ill', 'tell', 'you', 'what', '||period||', 'i', 'could', 'go', 'as', 'high', 'as', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'takes', 'a', 'closer', 'look', 'at', 'couch', '||period||', '||rightparen||', 'i', 'dont', 'know', '||comma||', 'maybe', '||period||', '||period||', '||period||', 'twenty', 'dollars', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'from', 'the', 'intercom', '||rightparen||', 'yeah', '||comma||', 'its', 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||leftparen||', 'jerry', 'presses', 'the', 'second', 'button', 'and', 'opens', 'the', 'apartment', 'door', '||period||', 'he', 'walks', 'back', 'to', 'the', 'couch', '||period||', '||rightparen||', 'oh', '||comma||', 'all', 'right', '||comma||', 'forget', 'it', '||comma||', 'im', 'gonna', 'take', 'it', 'with', 'me', 'now', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'picks', 'up', 'the', 'cushions', '||period||', '||rightparen||', 'im', 'just', 'gonna', 'pack', 'up', 'the', 'cushions', 'right', 'now', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'okay', 'okay', 'okay', 'okay', '||comma||', 'you', 'win', '||period||', 'forty', 'dollars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continuing', 'unphased', '||rightparen||', 'you', 'wanna', 'get', 'the', 'other', 'end', '||comma||', 'cause', 'i', 'wanna', 'get', 'it', 'in', 'the', 'hall', '||period||', '||return||', '||return||', 'elaine:', 'fifty', 'dollars', '||comma||', 'okay', '||questionmark||', 'fifty', 'dollars', '||comma||', 'is', 'that', 'all', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'fifty', 'dollars', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'whats', 'goin', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'just', 'bought', 'jerrys', 'couch', 'for', 'fifty', 'dollars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'so', 'did', 'you', 'bring', 'the', 'lease', '||questionmark||', '||leftparen||', 'george', 'takes', 'the', 'lease', 'from', 'his', 'inside', 'pocket', 'and', 'hands', 'it', 'to', 'jerry', '||period||', '||rightparen||', 'all', 'right', '||comma||', 'gee', '||comma||', 'three', 'years', '||comma||', 'that', 'kinda', 'seems', 'like', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantic', '||rightparen||', 'oh', '||comma||', 'jerry', 'jerry', 'jerry', 'jerry', 'jerry', '||comma||', 'listen', '||comma||', 'if', '||comma||', 'if', 'you', 'are', 'feeling', 'uncomfortable', 'about', 'this', 'at', 'all', '||comma||', 'at', 'all', '||period||', 'do', 'not', 'feel', 'like', 'you', 'have', 'to', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'if', 'youre', 'having', 'second', 'thoughts', '||comma||', 'if', 'you', 'didnt', 'want', 'it', '||comma||', 'dont', 'worry', 'about', 'it', 'because', 'uh', '||comma||', 'you', 'know', '||comma||', 'i', '||comma||', 'i', '||period||', '||period||', '||period||', 'i', 'could', 'take', 'it', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'you', 'could', 'take', 'it', '||questionmark||', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'dont', 'want', 'it', '||period||', 'i', 'want', 'it', '||comma||', 'if', 'you', 'dont', 'want', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'do', 'want', 'it', '||period||', '||return||', '||return||', 'george:', 'no', 'i', '||comma||', 'i', 'want', 'it', 'if', 'you', 'dont', 'want', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'just', 'said', 'you', 'wanted', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'im', 'saying', '||comma||', 'if', 'a', 'situation', 'arose', 'in', 'which', 'you', 'didnt', 'want', 'it', '||comma||', 'i', 'might', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'take', 'it', '||period||', '||return||', '||return||', 'george:', 'how', 'can', 'i', 'take', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'can', 'i', 'take', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'its', 'your', 'apartment', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'can', 'i', 'want', 'it', 'now', '||comma||', 'if', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||comma||', 'uh', '||comma||', 'i', 'dont', 'mean', 'to', 'cause', 'any', 'trouble', 'here', '||comma||', 'but', 'george', '||comma||', 'if', 'you', 'take', 'it', '||comma||', 'can', 'i', 'take', 'your', 'place', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'but', 'i', 'am', 'not', 'taking', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', '||period||', '||period||', '||period||', 'am', 'not', 'taking', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'one', 'of', 'you', 'better', 'damn', 'well', 'take', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'whaddaya', 'wanna', 'do', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'wanna', 'flip', 'a', 'coin', '||questionmark||', '||return||', '||return||', 'george:', 'who', 'flips', '||questionmark||', 'youll', 'flip', '||comma||', 'ill', 'call', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'fine', '||period||', '||leftparen||', 'jerry', 'takes', 'a', 'coin', 'from', 'his', 'pocket', '||period||', '||rightparen||', 'this', 'is', 'the', 'official', 'flip', '||period||', 'no', 'crying', '||comma||', 'no', 'guilt', '||comma||', 'winner', 'takes', 'all', 'and', 'thats', 'it', '||period||', 'agreed', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'good', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||comma||', 'who', 'to', 'root', 'for', '||comma||', 'georges', 'place', 'has', 'carpeting', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'now', 'you', 'call', 'it', 'in', 'the', 'air', '||period||', '||return||', '||return||', 'george:', 'no', 'catchin', '||period||', '||return||', '||return||', 'jerry:', 'no', 'no', '||period||', '||return||', '||return||', 'george:', 'flip', 'it', '||period||', '||return||', '||return||', 'george:', 'heads', '||exclammark||', '||return||', '||return||', 'jerry:', 'tails', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'it', 'hit', 'the', 'table', '||comma||', 'it', 'hit', 'the', 'table', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'interference', '||exclammark||', 'you', 'cant', 'count', 'that', '||exclammark||', 'come', 'on', '||comma||', 'are', 'you', 'crazy', '||questionmark||', '||exclammark||', 'the', 'coin', 'cannot', 'touch', 'anything', '||comma||', 'it', 'affects', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'didnt', 'call', 'no', 'interference', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'dont', 'have', 'to', 'call', 'that', '||exclammark||', 'thats', 'a', 'rule', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'believe', 'this', '||period||', '||return||', '||return||', 'george:', 'oh', 'oh', 'oh', '||comma||', 'all', 'right', '||comma||', 'fine', '||comma||', 'jerry', '||comma||', 'you', 'win', '||period||', 'take', 'it', '||comma||', 'just', 'take', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'wanna', 'win', 'it', 'like', 'this', '||exclammark||', 'elaine', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'id', 'better', 'not', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'ill', 'tell', 'you', 'what', '||period||', 'ill', 'choose', 'you', 'for', 'it', '||period||', 'straight', 'choose', '||comma||', 'three', 'takes', 'it', '||comma||', 'no', 'disputes', '||period||', '||period||', '||period||', 'thats', 'it', '||comma||', 'you', 'gotta', 'win', 'three', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||leftparen||', 'they', 'walk', 'around', 'each', 'other', '||period||', '||rightparen||', 'ok', '||period||', 'ill', 'choose', 'you', '||period||', 'whaddaya', 'want', '||questionmark||', '||return||', '||return||', 'jerry:', 'odds', '||period||', '||return||', '||return||', 'george:', 'i', 'want', 'evens', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'odds', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'evens', '||period||', '||return||', '||return||', 'george:', 'right', '||comma||', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'for', 'the', 'apartment', '||period||', '||return||', '||return||', 'both:', 'once', '||comma||', 'twice', '||comma||', 'three', '||comma||', 'shoot', '||exclammark||', '||return||', '||return||', 'jerry:', 'mine', '||exclammark||', '||return||', '||return||', 'both:', 'once', '||comma||', 'twice', '||comma||', 'three', '||comma||', 'shoot', '||exclammark||', '||return||', '||return||', 'jerry:', 'mine', '||exclammark||', '||return||', '||return||', 'both:', 'once', '||comma||', 'twice', '||comma||', 'three', '||comma||', 'shoot', '||exclammark||', '||return||', '||return||', 'george:', 'mine', '||exclammark||', '||return||', '||return||', 'both:', 'once', '||comma||', 'twice', '||comma||', 'three', '||comma||', 'shoot', '||exclammark||', '||return||', '||return||', 'george:', 'congratulations', '||period||', '||period||', '||period||', 'congratulations', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'george:', "i'm", 'just', 'gonna', '||period||', '||period||', '||period||', 'wash', '||period||', '||leftparen||', 'george', 'walks', 'to', 'the', 'bathroom', '||semicolon||', 'screaming', '||rightparen||', 'why', 'did', 'i', 'put', 'up', 'two', '||questionmark||', 'why', 'did', 'i', 'put', 'up', 'two', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'think', 'im', 'on', 'to', 'something', '||period||', 'i', 'think', 'i', 'found', 'your', 'stuff', '||period||', 'you', 'know', 'the', 'englishman', 'who', 'lives', 'down', 'the', 'hall', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'the', 'last', 'couple', 'a', 'days', 'hes', 'been', 'acting', 'very', 'strange', '||period||', 'i', 'think', 'hes', 'avoiding', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hard', 'to', 'imagine', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'and', 'get', 'this', 'i', 'just', 'got', 'off', 'the', 'elevator', 'with', 'him', 'and', 'i', 'tested', 'him', '||comma||', 'i', 'tested', 'him', '||comma||', 'like', 'i', '||period||', '||period||', '||period||', 'this', 'is', 'what', 'i', 'said', 'to', 'him', '||comma||', 'like', 'i', '||comma||', 'i', 'was', 'like', 'this', '||comma||', 'i', 'went', '||comma||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'i', 'know', 'about', 'the', 'stuff', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', 'you', 'know', '||comma||', 'very', 'casually', '||comma||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', "cont'd", '||rightparen||', 'so', 'that', 'he', 'was', 'gonna', 'take', 'me', 'into', 'his', 'confidence', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'stuff', '||questionmark||', '||return||', '||return||', 'jerry:', 'ooh', '||comma||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'case', 'closed', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'you', 'dont', 'understand', '||comma||', 'you', 'see', '||comma||', 'he', 'swallowed', '||period||', 'see', '||comma||', 'the', 'guy', '||comma||', 'he', 'swallowed', '||period||', 'oh', '||comma||', 'he', 'was', 'nervous', 'about', 'something', '||exclammark||', 'now', '||comma||', 'im', 'gonna', 'go', 'over', 'there', '||comma||', 'im', 'gonna', 'borrow', 'some', 'tea', '||period||', 'if', 'i', 'dont', 'get', 'back', 'in', 'five', 'minutes', '||comma||', 'maybe', 'youd', 'better', 'call', 'the', 'police', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'starting', '||period||', '||period||', '||period||', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'one', 'of', 'the', 'problems', 'in', 'life', 'is', 'that', 'when', 'youre', 'a', 'kid', '||comma||', 'you', 'have', 'a', 'certain', 'way', 'of', 'working', 'out', 'disagreements', '||period||', 'and', 'those', 'laws', 'do', 'not', 'work', 'in', 'the', 'adult', 'world', '||period||', 'one', 'of', 'the', 'main', 'ways', 'that', 'kids', 'resolve', 'any', 'dispute', 'is', 'by', 'calling', 'it', '||period||', 'one', 'of', 'them', 'says', '||comma||', 'i', 'got', 'the', 'front', 'seat', 'i', 'wanted', 'the', 'front', 'seat', '||exclammark||', 'i', 'called', 'it', '||period||', 'and', 'the', 'other', 'kid', 'knows', 'hes', 'got', 'nothing', 'to', 'say', 'he', 'called', 'it', '||period||', 'what', 'can', 'i', 'do', '||questionmark||', 'if', 'there', 'was', 'a', 'kid', 'court', 'of', 'law', '||comma||', 'it', 'holds', 'up', '||period||', 'your', 'honour', '||comma||', 'my', 'client', 'did', 'ask', 'for', 'the', 'front', 'seat', 'and', 'the', 'judge', 'would', 'go', '||comma||', 'did', 'he', 'call', 'it', '||questionmark||', 'well', 'no', '||comma||', 'he', 'didnt', 'call', '||dash||', 'bang', '||exclammark||', '||leftparen||', 'jerry', 'imitates', 'a', 'judge', 'banging', 'his', 'gavel', '||period||', '||rightparen||', 'he', 'has', 'to', 'call', 'it', '||comma||', 'case', 'closed', '||period||', 'objection', 'overruled', '||period||', '||return||', '||return||', 'george:', 'i', 'love', 'the', 'mirror', 'in', 'that', 'bathroom', '||exclammark||', 'i', 'dont', 'know', 'what', 'in', 'the', 'hell', 'it', 'is', '||period||', 'i', 'look', 'terrific', 'in', 'that', 'mirror', '||period||', '||leftparen||', 'george', 'sits', '||period||', '||rightparen||', 'i', 'dont', 'know', 'if', 'its', 'the', 'tile', 'or', 'the', 'lighting', '||period||', '||period||', '||period||', 'i', 'feel', 'like', 'robert', 'wagner', '||period||', '||return||', '||return||', 'jerry:', 'its', 'a', 'good', 'mirror', '||period||', '||leftparen||', 'they', 'look', 'at', 'their', 'menus', '||period||', '||rightparen||', 'so', '||comma||', 'what', 'are', 'you', 'gettin', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||comma||', 'i', 'cant', 'eat', '||period||', 'you', '||comma||', 'you', 'cant', 'have', 'anything', 'anymore', '||period||', 'look', 'at', 'this', '||comma||', 'look', 'at', 'this', '||period||', 'eggs', 'out', '||period||', 'coffee', 'out', '||period||', 'french', 'fries', 'out', '||period||', 'blt', 'out', '||exclammark||', 'i', 'go', 'to', 'visit', 'my', 'grandparents', 'three', 'big', 'brisket', 'sandwiches', '||comma||', 'im', 'sittin', 'here', 'with', 'a', 'carrot', '||exclammark||', 'theyre', 'closing', 'in', 'on', 'a', 'hundred', '||comma||', 'im', 'sayin', 'to', 'them', '||comma||', 'how', 'can', 'you', 'eat', 'that', 'stuff', '||questionmark||', '||leftparen||', 'they', 'look', 'at', 'their', 'menus', 'again', '||period||', '||rightparen||', 'im', 'so', 'sick', 'about', 'losin', 'that', 'choose', '||comma||', 'you', 'dont', 'know', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'forget', 'it', '||comma||', 'forget', 'it', '||period||', 'im', 'not', 'taking', 'the', 'place', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'can', 'i', 'live', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', 'at', 'you', '||comma||', 'youre', 'still', 'thinking', 'about', 'it', '||period||', 'ill', 'never', 'feel', 'comfortable', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'get', 'outta', 'here', '||period||', '||return||', '||return||', 'jerry:', 'how', 'can', 'i', 'ever', 'have', 'you', 'over', '||questionmark||', 'youll', 'sit', 'there', 'moping', '||period||', '||return||', '||return||', 'george:', 'i', 'wont', 'mope', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'already', 'moping', '||exclammark||', 'would', 'you', 'take', 'the', 'place', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'impossible', '||exclammark||', 'its', 'your', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'you', 'found', 'the', 'place', '||period||', '||return||', '||return||', 'george:', 'you', 'won', 'the', 'choose', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'forget', 'it', '||comma||', 'its', 'over', '||comma||', 'im', 'not', 'moving', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'me', 'neither', '||period||', '||return||', '||return||', 'jerry:', 'definitely', '||questionmark||', '||return||', '||return||', 'george:', 'definitely', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'then', 'just', 'get', 'rid', 'of', 'it', '||period||', 'you', 'wont', 'have', 'any', 'problem', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'its', 'not', 'a', 'problem', '||comma||', 'i', 'can', 'get', 'rid', 'of', 'the', 'apartment', 'this', 'afternoon', '||period||', '||return||', '||return||', 'carol:', 'what', 'apartment', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'its', 'a', 'great', 'place', '||comma||', 'its', 'uh', 'two', '||dash||', 'bedroom', 'uh', '||comma||', 'west', '83rd', 'bout', 'half', 'block', 'from', 'the', 'park', '||period||', '||return||', '||return||', 'carol:', 'whats', 'the', 'rent', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||comma||', 'what', 'were', 'doin', 'here', '||comma||', 'this', 'is', 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', 'she', 'wanted', 'to', 'thank', 'us', 'for', 'the', 'apartment', '||period||', '||return||', '||return||', 'elaine:', 'i', 'cant', 'believe', 'i', 'lost', 'the', 'deposit', 'on', 'that', 'u', '||dash||', 'haul', '||period||', 'and', 'i', 'threw', 'out', 'my', 'couch', '||period||', '||return||', '||return||', 'jerry:', 'if', 'only', 'the', 'coin', 'hadnt', 'hit', 'the', 'table', '||period||', '||return||', '||return||', 'george:', 'the', 'table', 'is', 'interference', '||comma||', 'you', 'know', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'is', 'not', '||exclammark||', '||return||', '||return||', 'george:', 'it', 'is', 'too', '||exclammark||', '||return||', '||return||', 'elaine:', 'my', 'roommate', 'starts', 'rehearsal', 'tonight', 'on', 'carousel', '||period||', '||return||', '||return||', 'carol:', 'hi', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'carol', '||period||', '||return||', '||return||', 'carol:', 'i', 'just', 'wanted', 'to', 'introduce', 'you', 'to', 'my', 'husband', '||comma||', 'this', 'is', 'larry', '||period||', '||return||', '||return||', 'carol:', 'this', 'is', 'george', '||comma||', 'elaine', 'and', 'jerry', '||period||', 'these', 'are', 'the', 'guys', 'who', 'got', 'us', 'the', 'apartment', '||period||', '||return||', '||return||', 'larry:', 'oh', '||comma||', 'you', 'dont', 'know', 'how', 'grateful', 'i', 'am', '||comma||', 'if', 'theres', 'anything', 'i', 'can', 'ever', 'do', 'to', 'repay', 'you', '||comma||', 'i', '||comma||', 'i', 'mean', '||comma||', 'were', 'just', 'so', 'thrilled', 'with', 'this', 'place', '||period||', '||return||', '||return||', 'carol:', 'its', 'a', 'dream', '||period||', '||return||', '||return||', 'larry:', 'im', 'running', 'in', 'the', 'park', 'now', '||comma||', 'ive', 'lost', 'weight', '||comma||', 'were', 'barbecuing', 'every', 'night', 'and', 'the', 'rent', 'is', 'unbelievable', '||period||', '||return||', '||return||', 'george:', 'were', 'really', 'glad', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'couldnt', 'be', 'happier', '||period||', '||return||', '||return||', 'jerry:', 'its', 'wonderful', '||period||', '||return||', '||return||', 'carol:', 'diane', '||comma||', 'diane', '||comma||', 'come', 'here', '||period||', '||return||', '||return||', 'carol:', 'this', 'is', 'my', 'new', 'next', 'door', 'neighbour', '||comma||', 'diane', '||period||', '||return||', '||return||', 'carol:', '||leftparen||', 'to', 'diane', '||rightparen||', 'these', 'are', 'the', 'guys', '||comma||', 'who', 'turned', 'this', 'place', 'down', '||comma||', 'can', 'you', 'believe', 'it', '||questionmark||', '||leftparen||', 'to', 'jerry', '||comma||', 'george', 'and', 'elaine', '||rightparen||', 'diane', 'gave', 'me', 'the', 'greatest', 'backrub', 'today', '||period||', 'shes', 'a', 'masseuse', '||exclammark||', '||return||', '||return||', 'diane:', 'how', '||comma||', 'how', 'could', 'you', 'guys', 'have', 'turned', 'this', 'place', 'down', '||comma||', 'its', 'such', 'a', 'great', 'location', 'and', 'its', '||period||', '||period||', '||period||', 'so', 'close', 'to', 'the', 'park', '||period||', '||return||', '||return||', 'george:', 'were', 'aware', 'of', 'the', 'proximity', 'to', 'the', 'park', '||comma||', 'yes', '||period||', '||return||', '||return||', 'diane:', 'well', '||comma||', 'it', 'was', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'george:', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'jerry:', 'how', 'late', 'are', 'the', 'stores', 'open', '||questionmark||', 'im', 'thinking', 'of', 'maybe', 'uh', '||comma||', 'buying', 'a', 'new', 'tv', 'and', 'smash', 'it', 'over', 'my', 'head', '||period||', '||return||', '||return||', 'man', '#1:', 'i', 'get', 'a', 'call', 'from', 'gilmour', 'this', 'morning', '||comma||', 'and', 'get', 'this', 'theyre', 'restructuring', 'the', 'organization', 'in', 'atlanta', 'and', 'i', 'gotta', 'be', 'there', 'on', 'the', 'first', 'of', 'the', 'month', '||period||', '||return||', '||return||', 'man', '#2:', 'really', '||questionmark||', 'what', 'are', 'you', 'gonna', 'bout', 'the', 'apartment', '||questionmark||', '||return||', '||return||', 'man', '#1:', 'well', '||comma||', 'what', 'can', 'i', 'do', '||questionmark||', 'give', 'it', 'up', '||period||', '||return||', '||return||', 'jerry', '||comma||', 'george', '&', 'elaine:', 'whats', 'the', 'rent', '||questionmark||', '||return||', '||return||', 'jerry:', 'most', 'men', 'like', 'working', 'on', 'things', '||period||', 'tools', '||comma||', 'objects', '||comma||', 'fixing', 'things', '||period||', 'this', 'is', 'what', 'men', 'enjoy', 'doing', '||period||', 'have', 'you', 'ever', 'noticed', 'a', 'guys', 'out', 'in', 'his', 'driveway', 'working', 'on', 'something', 'with', 'tools', '||comma||', 'how', 'all', 'the', 'other', 'men', 'in', 'the', 'neighborhood', 'are', 'magnetically', 'drawn', 'to', 'this', 'activity', '||period||', 'they', 'just', 'come', 'wandering', 'out', 'of', 'the', 'house', 'like', 'zombies', '||period||', 'men', '||comma||', 'its', 'true', '||comma||', 'men', 'hear', 'a', 'drill', '||comma||', 'its', 'like', 'a', 'dog', 'whistle', '||period||', 'just', '||period||', '||period||', '||period||', '||leftparen||', 'his', 'head', 'perks', 'up', '||rightparen||', 'you', 'know', '||comma||', 'they', 'go', 'running', 'up', 'to', 'that', 'living', 'room', 'curtain', '||comma||', 'honey', '||comma||', 'i', 'think', 'jims', 'working', 'on', 'something', 'over', 'there', '||period||', 'so', 'they', 'run', 'over', 'to', 'the', 'guy', '||period||', 'now', 'they', 'dont', 'actually', 'help', 'the', 'guy', '||period||', 'no', '||comma||', 'they', 'just', 'want', 'to', 'hang', 'around', 'the', 'area', 'where', 'work', 'is', 'being', 'done', '||period||', 'thats', 'what', 'men', 'want', 'to', 'do', '||period||', 'we', 'want', 'to', 'watch', 'the', 'guy', '||comma||', 'we', 'want', 'to', 'talk', 'to', 'him', '||comma||', 'we', 'want', 'to', 'ask', 'him', 'dumb', 'questions', '||period||', 'you', 'know', '||comma||', 'what', 'are', 'you', 'using', '||comma||', 'a', 'phillips', '||dash||', 'head', '||questionmark||', 'you', 'know', '||comma||', 'we', 'feel', 'involved', '||period||', 'thats', 'why', 'when', 'they', 'have', 'construction', 'sites', '||comma||', 'they', 'have', 'to', 'have', 'those', 'wood', 'panel', 'fences', 'around', 'it', '||comma||', 'thats', 'just', 'to', 'keep', 'the', 'men', 'out', '||period||', 'they', 'cut', 'those', 'little', 'holes', 'for', 'us', 'so', 'we', 'can', 'see', 'what', 'the', 'hell', 'is', 'going', 'on', '||period||', 'but', 'if', 'they', 'dont', 'cut', 'those', 'holes', '||comma||', 'we', 'are', 'climbing', 'those', 'fences', '||period||', 'right', 'over', 'there', '||period||', 'what', 'are', 'you', 'using', 'the', 'steel', 'girders', 'down', 'there', '||questionmark||', 'yeah', '||comma||', 'thatll', 'hold', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'to', 'say', 'something', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'i', 'had', 'to', 'say', 'something', '||period||', 'everything', 'was', 'going', 'so', 'well', '||period||', 'i', 'had', 'to', 'say', 'something', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'think', 'you', 'did', 'anything', 'wrong', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'her', 'i', 'liked', 'her', '||period||', 'why', '||questionmark||', 'why', 'did', 'i', 'tell', 'her', 'i', 'like', 'her', '||questionmark||', 'i', 'have', 'this', 'sick', 'compulsion', 'to', 'tell', 'women', 'how', 'i', 'feel', '||period||', 'i', 'like', 'you', 'i', 'dont', 'tell', 'you', '||period||', '||return||', '||return||', 'jerry:', 'we', 'can', 'only', 'thank', 'god', 'for', 'that', '||period||', '||return||', '||return||', 'george:', 'im', 'outta', 'the', 'picture', '||period||', 'i', 'am', 'outta', 'the', 'picture', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'its', 'only', 'a', 'matter', 'of', 'time', 'now', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'imagining', 'this', '||period||', 'really', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', 'no', 'no', 'no', 'no', '||period||', '||return||', '||return||', 'george:', 'ill', 'tell', 'you', 'when', 'it', 'happened', '||period||', 'when', 'that', 'floss', 'came', 'flying', 'out', 'of', 'my', 'pocket', '||period||', '||return||', '||return||', 'jerry:', 'what', 'floss', '||questionmark||', 'when', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'were', 'in', 'the', 'lobby', 'during', 'the', 'intermission', 'of', 'the', 'play', '||period||', 'i', 'was', 'buying', 'her', 'one', 'of', 'those', 'containers', 'of', 'orange', 'drink', '||comma||', 'for', 'five', 'dollars', '||period||', 'i', 'reached', 'into', 'my', 'pocket', 'to', 'pay', 'for', 'it', '||comma||', 'i', 'looked', 'down', '||semicolon||', 'theres', 'this', 'piece', 'of', 'green', 'floss', 'hanging', 'from', 'my', 'fingers', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'mint', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', 'so', '||comma||', 'im', 'looking', 'at', 'it', '||period||', 'i', 'look', 'up', '||comma||', 'i', 'see', 'shes', 'looking', 'at', 'it', '||period||', 'our', 'eyes', 'lock', '||period||', 'it', 'was', 'a', 'horrible', 'moment', '||period||', 'i', 'just', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', 'let', 'me', 'get', 'this', 'straight', '||period||', 'she', 'saw', 'the', 'floss', '||comma||', 'you', 'panicked', 'and', 'you', 'told', 'her', 'you', 'liked', 'her', '||period||', '||return||', '||return||', 'george:', 'if', 'i', 'didnt', 'put', 'that', 'floss', 'in', 'my', 'pocket', '||comma||', 'id', 'be', 'crawling', 'around', 'her', 'bedroom', 'right', 'now', 'looking', 'for', 'my', 'glasses', '||period||', '||return||', '||return||', 'jerry:', 'and', 'youre', 'sure', 'the', 'floss', 'was', 'the', 'catalyst', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'think', 'it', 'mightve', 'had', 'anything', 'to', 'do', 'with', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'you', 'dont', 'like', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'looks', 'like', 'your', 'belt', 'is', 'digesting', 'a', 'small', 'animal', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'oh', '||comma||', 'theyve', 'got', 'a', 'cure', 'for', 'cancer', '||period||', 'see', '||comma||', 'its', 'all', 'big', 'business', '||period||', 'oh', 'hey', '||comma||', 'jerry', 'just', 'walked', 'in', '||period||', 'hi', '||comma||', 'george', '||period||', '||leftparen||', 'to', 'the', 'phone', 'again', '||rightparen||', 'yeah', 'yeah', 'yeah', 'yeah', 'take', 'my', 'number', '||period||', '555', '||dash||', '8643', '||period||', 'okay', '||comma||', 'here', 'he', 'is', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'its', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', '||leftparen||', 'disappointed', '||rightparen||', 'oh', '||comma||', 'hi', 'joel', '||period||', '||leftparen||', 'jerry', 'hits', 'kramer', 'with', 'a', 'magazine', '||period||', '||rightparen||', 'no', '||period||', 'uh', '||comma||', 'i', 'was', 'out', 'of', 'town', '||period||', 'i', 'just', 'got', 'back', '||period||', 'kramer', 'doesnt', 'know', 'anything', '||period||', 'hes', 'just', 'my', 'next', '||dash||', 'door', 'neighbor', '||period||', 'uh', '||comma||', 'nothing', 'much', '||period||', '||period||', '||period||', 'tuesday', '||questionmark||', 'uh', '||comma||', 'tuesday', '||comma||', 'no', '||period||', 'im', 'meeting', 'somebody', '||period||', '||period||', '||period||', 'uh', '||comma||', 'wednesday', '||questionmark||', 'wednesdays', 'okay', '||period||', '||period||', '||period||', 'all', 'right', '||period||', 'uh', '||comma||', 'im', 'a', 'little', 'busy', 'right', 'now', '||period||', 'can', 'we', 'talk', 'wednesday', 'morning', '||questionmark||', '||period||', '||period||', '||period||', 'okay', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'right', '||period||', '||period||', '||period||', 'thanks', '||period||', '||period||', '||period||', 'bye', '||period||', '||leftparen||', 'jerry', 'hangs', 'up', '||semicolon||', 'to', 'kramer', '||rightparen||', 'why', 'did', 'you', 'put', 'me', 'on', 'the', 'phone', 'with', 'him', '||questionmark||', 'i', 'hate', 'just', 'being', 'handed', 'a', 'phone', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'its', 'your', 'phone', '||period||', 'he', 'wanted', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'didnt', 'want', 'to', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'bothers', 'me', '||period||', 'i', 'dont', 'even', 'answer', 'the', 'phone', 'anymore', 'because', 'of', 'him', '||period||', 'hes', 'turned', 'me', 'into', 'a', 'screener', '||period||', 'now', 'i', 'gotta', 'go', 'see', 'him', 'on', 'wednesday', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', 'wednesday', '||questionmark||', 'i', 'though', 'we', 'had', 'tickets', 'to', 'the', 'knick', 'game', 'wednesday', '||period||', 'we', 'got', 'seats', 'behind', 'the', 'bench', '||exclammark||', 'what', 'happened', '||questionmark||', 'were', 'not', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'were', 'going', '||period||', 'thats', 'next', 'wednesday', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'who', 'is', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'his', 'name', 'is', 'joel', 'horneck', '||period||', 'he', 'lived', 'like', 'three', 'houses', 'down', 'from', 'me', 'when', 'i', 'grew', 'up', '||period||', 'he', 'had', 'a', 'ping', 'pong', 'table', '||period||', 'we', 'were', 'friends', '||period||', 'should', 'i', 'suffer', 'the', 'rest', 'of', 'my', 'life', 'because', 'i', 'like', 'to', 'play', 'ping', 'pong', '||questionmark||', 'i', 'was', 'ten', '||period||', 'i', 'wouldve', 'been', 'friends', 'with', 'stalin', 'if', 'he', 'had', 'a', 'ping', 'pong', 'table', '||period||', 'hes', 'so', 'self', '||dash||', 'involved', '||period||', '||return||', '||return||', 'kramer:', 'thats', 'for', 'me', '||period||', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'kramerica', 'industries', '||period||', 'oh', '||comma||', 'hi', '||comma||', 'mark', '||period||', 'no', 'no', 'no', '||period||', 'forget', 'that', '||period||', 'i', 'got', 'a', 'better', 'idea', '||period||', 'a', 'pizza', 'place', 'where', 'you', 'make', 'your', 'own', 'pie', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'conduct', 'your', 'business', 'elsewhere', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'ignoring', 'jerry', '||rightparen||', 'no', 'no', 'no', '||period||', 'im', 'talking', 'about', 'a', 'whole', 'chain', 'of', 'em', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', 'why', 'you', 'even', 'bother', 'with', 'this', 'ping', 'pong', 'guy', '||comma||', 'ill', 'tell', 'you', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'bother', 'with', 'him', '||period||', 'hes', 'been', 'calling', 'me', 'for', 'seven', 'years', '||period||', 'ive', 'never', 'called', 'him', 'once', '||exclammark||', 'hes', 'got', 'the', 'attention', 'span', 'of', 'a', 'five', '||dash||', 'year', '||dash||', 'old', '||period||', 'sometimes', 'i', 'sit', 'there', 'and', 'i', 'make', 'up', 'things', 'just', 'to', 'see', 'if', 'hes', 'paying', 'attention', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'understand', 'why', 'you', 'spend', 'time', 'with', 'this', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'can', 'i', 'do', '||questionmark||', 'break', 'up', 'with', 'him', '||questionmark||', 'tell', 'him', '||comma||', 'i', 'dont', 'think', 'were', 'right', 'for', 'each', 'other', '||period||', 'hes', 'a', 'guy', '||exclammark||', 'at', 'least', 'with', 'a', 'woman', '||comma||', 'theres', 'a', 'precendent', '||period||', 'you', 'know', '||comma||', 'the', 'relationship', 'goes', 'sour', '||comma||', 'you', 'end', 'it', '||period||', '||return||', '||return||', 'george:', 'no', 'no', 'no', 'no', '||comma||', 'you', 'have', 'to', 'approach', 'this', 'as', 'if', 'he', 'was', 'a', 'woman', '||period||', '||return||', '||return||', 'jerry:', 'just', 'break', 'up', 'with', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'absolutely', '||period||', 'you', 'just', 'tell', 'him', 'the', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'the', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'as', 'a', 'guy', 'i', 'dont', 'know', 'how', 'i', 'can', 'break', 'up', 'with', 'another', 'guy', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'i', 'dont', 'know', 'how', 'to', 'say', '||comma||', 'bill', '||comma||', 'i', 'feel', 'i', 'need', 'to', 'see', 'other', 'men', '||period||', 'do', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'theres', 'nothing', 'i', 'can', 'do', '||period||', 'i', 'have', 'to', 'wait', 'for', 'someone', 'to', 'die', '||period||', 'i', 'think', 'thats', 'the', 'only', 'way', 'out', 'of', 'this', 'relationship', '||period||', 'it', 'could', 'be', 'a', 'long', 'time', '||period||', 'see', '||comma||', 'the', 'great', 'thing', 'about', 'guys', 'is', 'that', 'we', 'can', 'become', 'friends', 'based', 'on', 'almost', 'nothing', '||period||', 'just', 'two', 'guys', 'will', 'just', 'become', 'friends', 'just', 'because', 'theyre', 'two', 'guys', '||period||', 'thats', 'almost', 'all', 'we', 'need', 'to', 'have', 'in', 'common', '||period||', 'cause', 'sports', 'sports', 'and', 'women', 'is', 'really', 'all', 'we', 'talk', 'about', '||period||', 'if', 'there', 'was', 'no', 'sports', 'and', 'no', 'women', 'the', 'only', 'thing', 'guys', 'would', 'ever', 'say', 'is', '||comma||', 'so', '||comma||', 'whats', 'in', 'the', 'refrigerator', '||questionmark||', '||return||', '||return||', 'joel:', '||period||', '||period||', '||period||', 'so', 'my', 'shrink', 'wants', 'me', 'to', 'bring', 'my', 'mother', 'in', 'for', 'a', 'session', '||period||', 'this', 'guy', 'is', 'a', 'brilliant', 'man', '||period||', 'lenny', 'bruce', 'used', 'to', 'go', 'to', 'him', '||period||', 'and', 'i', 'think', '||comma||', 'uh', '||comma||', 'geraldo', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'read', 'the', 'lenny', 'bruce', 'biography', '||comma||', 'i', 'thought', 'it', 'was', 'really', '||period||', '||period||', '||period||', 'interesting', '||period||', 'he', 'would', '||dash||', '||return||', '||return||', 'joel:', '||leftparen||', 'to', 'the', 'counter', 'of', 'the', 'restaurant', '||rightparen||', 'hey', 'hey', 'hey', 'hey', '||comma||', 'were', 'starving', 'here', '||exclammark||', 'weve', 'been', 'waiting', 'here', 'for', 'ten', 'minutes', 'already', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'testing', 'joel', '||rightparen||', 'so', '||comma||', 'im', 'thinking', 'about', 'going', 'to', 'iran', 'this', 'summer', '||period||', '||return||', '||return||', 'joel:', 'i', 'have', 'to', 'eat', '||exclammark||', 'i', 'mean', '||comma||', 'im', 'hypoglycemic', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'the', 'hizballah', 'has', 'invited', 'me', 'to', 'perform', '||period||', '||leftparen||', 'joel', 'shakes', 'his', 'head', 'agreeing', '||semicolon||', 'jerry', 'smiles', '||rightparen||', 'you', 'know', '||comma||', 'its', 'their', 'annual', 'terrorist', 'luncheon', '||period||', '||return||', '||return||', 'joel:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "cont'd", '||rightparen||', 'im', 'gonna', 'do', 'it', 'in', 'farsi', '||period||', '||return||', '||return||', 'joel:', 'do', 'you', 'think', 'i', 'need', 'a', 'haircut', '||questionmark||', '||return||', '||return||', 'claire:', 'are', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'ill', 'have', 'the', 'egg', 'salad', 'on', 'whole', 'wheat', '||period||', '||return||', '||return||', 'joel:', '||leftparen||', 'to', 'the', 'waitress', '||rightparen||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'this', '||comma||', 'uh', '||comma||', 'this', 'turkey', 'sandwich', 'here', '||comma||', 'is', 'that', 'real', 'turkey', '||comma||', 'or', 'is', 'it', 'a', 'turkey', 'roll', '||questionmark||', 'i', 'dont', 'want', 'that', 'processed', 'turkey', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'hate', 'it', '||period||', '||return||', '||return||', 'waitress:', 'i', 'think', 'its', 'real', 'turkey', '||period||', '||return||', '||return||', 'joel:', 'is', 'there', 'a', 'real', 'bird', 'in', 'the', 'back', '||questionmark||', '||return||', '||return||', 'waitress:', 'no', '||comma||', 'theres', 'not', 'bird', 'but', '||dash||', '||return||', '||return||', 'joel:', 'well', '||comma||', 'how', 'do', 'you', 'know', 'for', 'sure', '||questionmark||', 'look', '||comma||', 'why', 'dont', 'you', 'do', 'me', 'a', 'favor', '||period||', 'why', 'dont', 'you', 'go', 'in', 'the', 'back', 'and', 'find', 'out', '||comma||', 'okay', '||questionmark||', '||leftparen||', 'the', 'waitress', 'leaves', '||period||', '||rightparen||', 'unbelievable', '||period||', '||return||', '||return||', 'jerry:', 'how', 'can', 'you', 'talk', 'to', 'someone', 'like', 'that', '||questionmark||', '||return||', '||return||', 'joel:', 'what', 'are', 'you', 'saying', '||questionmark||', 'what', '||comma||', 'you', 'like', 'turkey', 'roll', '||questionmark||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'joel', '||period||', 'theres', 'something', 'i', 'have', 'to', 'tell', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'joel:', '||leftparen||', 'laughing', '||rightparen||', 'wait', '||comma||', 'youll', 'never', 'guess', 'who', 'i', 'ran', 'into', '||period||', '||return||', '||return||', 'jerry', 'and', 'joel:', 'howard', 'metro', '||period||', '||return||', '||return||', 'joel:', 'he', 'asked', 'me', 'if', 'i', 'still', 'saw', 'you', '||period||', 'i', 'said', '||comma||', 'sure', '||comma||', 'i', 'see', 'him', 'all', 'the', 'time', '||period||', 'were', 'still', 'great', 'friends', '||period||', 'anyway', '||comma||', 'howard', 'says', 'hello', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'joel', '||comma||', 'i', 'dont', 'think', 'we', 'should', 'see', 'each', 'other', 'anymore', '||period||', '||return||', '||return||', 'joel:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'friendship', 'its', 'not', 'working', '||period||', '||return||', '||return||', 'joel:', 'not', 'working', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'were', 'just', 'not', 'suited', 'to', 'be', 'friends', '||period||', '||return||', '||return||', 'joel:', 'how', 'can', 'you', 'say', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'youre', 'a', 'nice', 'guy', '||comma||', 'its', 'just', 'that', '||period||', '||period||', '||period||', 'we', 'dont', 'have', 'anything', 'in', 'common', '||period||', '||return||', '||return||', 'joel:', '||leftparen||', 'starting', 'to', 'cry', '||rightparen||', 'wai', '||dash||', 'wait', '||period||', 'what', 'did', 'i', 'do', '||questionmark||', 'tell', 'me', '||period||', 'i', 'want', 'to', 'know', 'what', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'y', '||dash||', 'you', 'didnt', 'do', 'anything', '||period||', 'its', 'not', 'you', '||comma||', 'its', 'me', '||period||', 'its', '||dash||', 'this', 'is', 'very', 'difficult', '||period||', '||return||', '||return||', 'joel:', 'look', '||comma||', 'i', 'know', 'i', 'call', 'you', 'too', 'much', '||comma||', 'right', '||questionmark||', 'i', 'mean', '||comma||', 'i', 'know', 'youre', 'a', 'very', 'busy', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'its', 'not', 'that', '||period||', '||return||', '||return||', 'joel:', '||leftparen||', 'crying', '||rightparen||', 'youre', 'one', 'of', 'the', 'few', 'people', 'i', 'can', 'talk', 'to', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||period||', 'thats', 'not', 'true', '||period||', '||return||', '||return||', 'joel:', 'i', 'always', 'tell', 'everybody', 'about', 'you', '||period||', 'tell', 'everybody', 'to', '||leftparen||', 'to', 'the', 'rest', 'of', 'the', 'coffee', 'shop', '||rightparen||', 'go', 'see', 'his', 'show', '||exclammark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'mean', '||comma||', 'im', 'your', 'biggest', 'fan', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'joel:', 'i', 'mean', '||comma||', 'youre', 'my', 'best', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'best', 'friend', '||dash||', 'ive', 'never', 'been', 'to', 'your', 'apartment', '||period||', '||return||', '||return||', 'joel:', 'i', 'cannot', 'believe', 'that', 'this', 'is', 'happening', '||period||', 'i', 'cant', 'believe', 'it', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'okay', '||period||', 'forget', 'it', '||period||', 'its', 'okay', '||period||', 'i', 'didnt', 'mean', 'it', '||period||', '||return||', '||return||', 'joel:', 'didnt', 'mean', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'i', 'said', '||period||', 'ive', 'been', 'under', 'a', 'lot', 'of', 'stress', '||period||', '||return||', '||return||', 'joel:', 'oh', '||comma||', 'youve', 'been', 'under', 'a', 'lot', 'of', 'stress', '||period||', '||return||', '||return||', 'jerry:', 'just', '||comma||', 'can', 'we', 'just', 'forget', 'the', 'whole', 'thing', 'ever', 'happend', '||questionmark||', 'im', 'sorry', '||period||', 'i', 'didnt', 'mean', 'it', '||period||', 'i', 'took', 'it', 'out', 'on', 'you', '||period||', 'were', 'still', 'friends', '||period||', 'were', 'still', 'friends', '||period||', 'still', 'friends', '||period||', 'okay', '||questionmark||', 'look', '||comma||', 'ill', 'tell', 'you', 'what', '||period||', 'ive', 'got', 'knick', 'tickets', 'this', 'wednesday', '||period||', 'great', 'seats', 'behind', 'the', 'bench', '||period||', 'you', 'want', 'to', 'come', 'with', 'me', '||questionmark||', 'come', 'on', '||period||', '||return||', '||return||', 'joel:', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'next', 'wednesday', '||period||', 'if', 'it', 'was', 'tonight', '||comma||', 'i', 'wouldve', 'said', 'tonight', '||period||', '||return||', '||return||', 'joel:', 'do', 'you', 'really', 'want', 'me', 'to', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'lying', '||rightparen||', 'yes', '||period||', '||return||', '||return||', 'joel:', 'okay', '||period||', '||leftparen||', 'jerry', 'gives', 'him', 'some', 'napkins', 'to', 'clean', 'himself', 'up', '||rightparen||', 'yeah', '||comma||', 'okay', '||period||', 'great', '||exclammark||', 'that', 'would', 'be', '||comma||', 'thatd', 'be', 'great', '||period||', 'so', '||comma||', 'next', 'wednesday', '||period||', '||return||', '||return||', 'jerry:', 'next', 'wednesday', '||period||', '||return||', '||return||', 'joel:', 'where', 'is', 'that', 'waitress', '||questionmark||', '||leftparen||', 'to', 'the', 'counter', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'she', 'calls', 'me', 'up', 'at', 'my', 'office', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', "cont'd", '||rightparen||', 'she', 'says', '||comma||', 'we', 'have', 'to', 'talk', '||period||', '||return||', '||return||', 'jerry:', 'ugh', '||comma||', 'the', 'four', 'worst', 'words', 'in', 'the', 'english', 'language', '||period||', '||return||', '||return||', 'george:', 'that', '||comma||', 'or', 'whos', 'bra', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'is', 'worse', '||period||', '||return||', '||return||', 'george:', 'so', 'we', 'order', 'lunch', '||comma||', 'and', 'were', 'talking', '||period||', 'finally', '||comma||', 'she', 'blurts', 'out', 'how', 'its', 'not', 'working', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'im', 'thinking', '||comma||', 'as', 'shes', 'saying', 'this', '||comma||', 'im', 'thinking', 'great', '||comma||', 'the', 'relationships', 'over', '||period||', 'but', 'the', 'egg', 'salads', 'on', 'the', 'way', '||period||', 'so', 'now', 'i', 'have', 'a', 'decision', 'do', 'i', 'walk', 'or', 'do', 'i', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', 'hm', '||period||', 'you', 'ate', '||period||', '||return||', '||return||', 'george:', 'we', 'sat', 'there', 'for', 'twenty', 'minutes', '||comma||', 'chewing', '||comma||', 'staring', 'at', 'each', 'other', 'in', 'a', 'defunct', 'relationship', '||period||', '||return||', '||return||', 'jerry:', 'someone', 'says', '||comma||', 'get', 'out', 'of', 'my', 'life', '||comma||', 'and', 'that', 'doesnt', 'affect', 'your', 'appetite', '||questionmark||', '||return||', '||return||', 'george:', 'have', 'you', 'ever', 'had', 'their', 'egg', 'salad', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'is', 'unbelievable', '||period||', '||return||', '||return||', 'george:', 'its', 'unbelievable', '||period||', 'you', 'know', 'what', 'else', 'is', 'unbelievable', '||questionmark||', 'i', 'picked', 'up', 'the', 'check', '||period||', 'she', 'didnt', 'even', 'offer', '||period||', 'she', 'ended', 'it', '||period||', 'the', 'least', 'she', 'could', 'do', 'is', 'send', 'me', 'off', 'with', 'a', 'sandwich', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'could', 'you', 'possibly', 'have', 'in', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'its', 'my', 'money', '||period||', 'what', 'should', 'i', 'do', '||questionmark||', 'throw', 'it', 'out', 'the', 'window', '||questionmark||', 'i', 'know', 'a', 'guy', 'who', 'took', 'his', 'vacation', 'on', 'his', 'change', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', 'whered', 'he', 'go', '||comma||', 'to', 'an', 'arcade', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sarcastically', '||rightparen||', 'thats', 'funny', '||period||', 'youre', 'a', 'funny', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'cmon', '||comma||', 'move', 'up', '||period||', '||return||', '||return||', 'customer:', 'oh', 'great', '||comma||', 'ewings', 'hurt', '||period||', '||return||', '||return||', 'george:', 'ewings', 'hurt', '||questionmark||', 'how', 'long', 'is', 'he', 'going', 'to', 'be', 'out', '||questionmark||', '||return||', '||return||', 'customer:', 'a', 'couple', 'of', 'days', 'at', 'the', 'most', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'geez', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'god', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'scared', 'there', 'for', 'a', 'second', '||period||', 'the', 'knicks', 'without', 'ewing', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'george', '||comma||', 'little', 'problem', 'with', 'the', 'game', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'thing', 'is', '||comma||', 'yesterday', '||comma||', 'i', 'kind', 'of', '||period||', '||period||', 'uh', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'gave', 'your', 'ticket', 'to', 'horneck', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'believing', 'him', '||rightparen||', 'you', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'im', 'sorry', '||period||', 'i', 'had', 'to', 'give', 'it', 'to', 'horneck', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'my', 'ticket', '||questionmark||', '||exclammark||', 'you', 'gave', 'my', 'ticket', 'to', 'horneck', '||questionmark||', '||return||', '||return||', 'jerry:', 'cmon', '||comma||', 'cmon', '||comma||', 'go', 'ahead', '||comma||', 'move', 'up', '||period||', '||return||', '||return||', 'george:', 'why', 'did', 'you', 'give', 'him', 'my', 'ticket', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'didnt', 'see', 'him', '||period||', 'it', 'was', 'horrible', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'cmon', '||comma||', 'jerry', '||period||', 'i', 'cant', 'believe', 'this', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'please', '||period||', '||leftparen||', 'to', 'the', 'teller', '||rightparen||', 'can', 'you', 'change', 'this', 'into', 'bills', '||questionmark||', '||return||', '||return||', 'teller:', 'im', 'sorry', '||comma||', 'sir', '||period||', 'we', 'cant', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'want', 'to', 'go', 'with', 'him', '||questionmark||', 'you', 'go', '||period||', 'i', 'dont', 'mind', '||period||', '||return||', '||return||', 'george:', 'im', 'not', 'going', 'with', 'him', '||period||', 'i', 'dont', 'even', 'know', 'the', 'guy', '||period||', '||leftparen||', 'to', 'the', 'teller', '||rightparen||', 'look', '||comma||', 'they', 'did', 'this', 'for', 'me', 'before', '||period||', '||return||', '||return||', 'teller:', 'look', '||comma||', 'i', 'can', 'give', 'you', 'these', 'and', 'you', 'can', 'roll', 'them', 'yourself', '||period||', '||return||', '||return||', 'george:', 'you', 'want', 'me', 'to', 'roll', 'six', 'thousand', 'of', 'these', '||questionmark||', '||exclammark||', 'what', '||comma||', 'should', 'i', 'quit', 'my', 'job', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'do', 'not', 'like', 'the', 'bank', '||period||', 'ive', 'heard', 'the', 'expression', 'laughing', 'all', 'the', 'way', 'to', 'the', 'bank', '||period||', 'i', 'have', 'never', 'seen', 'anyone', 'actually', 'doing', 'it', '||period||', 'and', 'those', 'bank', 'lines', '||period||', 'i', 'hate', 'it', 'when', 'theres', 'nobody', 'on', 'the', 'line', 'at', 'all', '||comma||', 'you', 'know', 'that', 'part', '||comma||', 'you', 'go', 'to', 'the', 'bank', '||comma||', 'its', 'empty', 'and', 'you', 'still', 'have', 'to', 'go', 'through', 'the', 'little', 'maze', '||period||', '||leftparen||', 'walking', 'on', 'the', 'stage', 'like', 'he', 'is', 'going', 'through', 'a', 'maze', '||rightparen||', 'can', 'you', 'get', 'a', 'little', 'piece', 'of', 'cheese', 'for', 'me', '||questionmark||', 'im', 'almost', 'at', 'the', 'front', '||period||', 'id', 'like', 'a', 'reward', 'for', 'this', 'please', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'thirty', '||dash||', 'two', '||comma||', 'thirty', '||dash||', 'three', '||dash||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||return||', '||return||', 'george:', 'not', 'now', '||period||', '||return||', '||return||', 'jerry:', 'could', 'you', 'stop', 'the', 'counting', '||questionmark||', '||return||', '||return||', 'george:', 'nnnnnnngaaa', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'can', 'i', 'make', 'it', 'up', 'to', 'you', '||questionmark||', 'ill', 'give', 'you', 'fifty', 'bucks', 'for', 'the', 'jug', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||period||', 'keep', 'your', 'money', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'then', 'im', 'not', 'going', 'to', 'the', 'game', 'either', '||period||', 'okay', '||questionmark||', 'ill', 'give', 'him', 'both', 'tickets', '||period||', '||return||', '||return||', 'george:', 'oh', 'geeeee', '||period||', '||leftparen||', 'george', 'pantomimes', 'sticking', 'a', 'knife', 'in', 'his', 'heart', '||comma||', 'and', 'twists', 'it', '||period||', '||rightparen||', 'go', '||comma||', 'go', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', '||dash||', 'no', '||comma||', 'i', 'dont', 'want', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'he', 'was', 'really', 'crying', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'had', 'to', 'give', 'him', 'a', 'tissue', '||period||', 'in', 'fact', '||comma||', 'let', 'me', 'call', 'his', 'machine', 'now', 'and', 'ill', 'just', 'make', 'up', 'some', 'excuse', 'why', 'i', 'cant', 'go', 'to', 'the', 'game', 'either', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||period||', 'wait', 'a', 'minute', '||period||', 'as', 'long', 'as', 'youre', 'going', 'to', 'lie', 'to', 'the', 'guy', '||comma||', 'why', 'dont', 'you', 'tell', 'him', 'that', 'you', 'lost', 'both', 'of', 'the', 'tickets', '||comma||', 'then', 'we', 'can', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'the', 'man', 'wept', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', 'guys', '||period||', 'man', '||comma||', 'im', 'telling', 'you', '||comma||', 'this', 'pizza', 'idea', '||comma||', 'is', 'really', 'going', 'to', 'happen', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'the', 'thing', 'where', 'you', 'go', 'and', 'you', 'have', 'to', 'make', 'your', 'own', 'pizza', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'we', 'give', 'you', 'the', 'dough', '||comma||', 'you', 'smash', 'it', '||comma||', 'you', 'pound', 'it', '||comma||', 'you', 'fling', 'it', 'in', 'the', 'air', '||period||', 'and', 'then', 'you', 'get', 'to', 'put', 'your', 'sauce', 'and', 'you', 'get', 'to', 'sprinkle', 'your', 'cheese', '||comma||', 'and', 'then', '||dash||', 'you', 'slide', 'it', 'into', 'the', 'oven', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'you', 'have', 'to', 'know', 'how', 'to', 'do', 'that', '||period||', 'you', 'cant', 'have', 'people', 'shoving', 'their', 'arms', 'into', 'a', 'six', '||dash||', 'hundred', 'degree', 'oven', '||exclammark||', '||return||', '||return||', 'kramer:', 'its', 'all', 'supervised', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'all', 'of', 'it', '||period||', 'you', 'want', 'to', 'invest', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'moneys', 'all', 'tied', 'up', 'in', 'change', 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'im', 'tellin', 'you', '||comma||', 'people', '||comma||', 'they', 'really', 'want', 'to', 'make', 'their', 'own', 'pizza', 'pie', '||period||', '||return||', '||return||', 'jerry:', 'i', '||dash||', 'i', 'have', 'to', 'say', 'something', '||period||', 'with', 'all', 'due', 'respect', '||comma||', 'i', 'just', 'never', '||dash||', 'i', 'cant', 'imagine', 'anyone', 'in', 'any', 'walk', 'of', 'life', '||comma||', 'under', 'any', 'circumstance', '||comma||', 'wanting', 'to', 'make', 'their', 'own', 'pizza', 'pie', '||period||', '||period||', '||period||', 'but', 'thats', 'me', '||period||', 'alright', '||return||', '||return||', 'kramer:', 'thats', 'you', '||period||', '||return||', '||return||', 'jerry:', 'im', 'just', 'saying', '||period||', '||period||', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'okay', '||period||', 'i', 'just', 'wanted', 'to', 'check', 'with', 'you', 'guys', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'this', 'business', 'is', 'going', 'to', 'be', 'big', '||period||', 'i', 'just', 'wanted', '||dash||', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'one', 'day', '||comma||', 'youll', 'beg', 'me', 'to', 'make', 'your', 'own', 'pie', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hi', '||comma||', 'joel', '||period||', 'this', 'is', 'jerry', '||period||', 'i', 'hope', 'you', 'get', 'this', 'before', 'you', '||dash||', 'oh', '||comma||', 'hi', '||period||', 'joel', '||period||', '||period||', '||period||', 'oh', '||comma||', 'you', 'just', 'came', 'in', '||period||', '||period||', '||period||', 'listen', '||comma||', 'i', 'cant', 'make', 'it', 'to', 'the', 'game', 'tonight', '||period||', '||period||', '||period||', 'i', '||comma||', 'uh', '||comma||', 'have', 'to', 'tutor', 'my', 'nephew', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'hes', 'got', 'an', 'exam', 'tomorrow', '||period||', '||period||', '||period||', 'geometry', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'trapezoids', '||comma||', 'rhombus', '||period||', '||period||', '||period||', 'anyway', '||comma||', 'listen', '||comma||', 'you', 'take', 'the', 'tickets', '||period||', 'theyre', 'at', 'the', 'will', '||dash||', 'call', 'window', '||period||', '||period||', '||period||', 'and', 'im', 'really', 'sorry', '||period||', '||period||', '||period||', 'have', 'a', 'good', 'time', '||period||', '||period||', '||period||', 'well', 'talk', 'next', 'week', '||period||', '||period||', '||period||', 'okay', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'i', 'dont', '||period||', '||period||', '||period||', 'fine', '||period||', '||period||', 'fine', '||period||', '||period||', '||period||', 'bye', '||period||', '||return||', '||return||', 'george:', 'trapezoid', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'im', 'really', 'running', 'out', 'of', 'excuses', 'with', 'this', 'guy', '||period||', 'i', 'need', 'some', 'kind', 'of', 'excuse', 'rolodex', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', 'lets', 'go', 'do', 'something', '||period||', 'i', 'dont', 'wanna', 'just', 'sit', 'around', 'here', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'want', 'to', 'go', 'get', 'something', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', 'do', 'you', 'want', 'to', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'care', '||comma||', 'im', 'not', 'hungry', '||period||', '||return||', '||return||', 'jerry:', 'we', 'could', 'go', 'to', 'one', 'of', 'those', 'uh', 'cappuccino', 'places', '||period||', 'they', 'let', 'you', 'just', 'sit', 'there', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'we', 'gonna', 'do', 'there', '||questionmark||', 'talk', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'could', 'talk', '||period||', '||return||', '||return||', 'elaine:', 'ill', 'go', 'if', 'i', 'dont', 'have', 'to', 'talk', '||period||', '||return||', '||return||', 'jerry:', 'then', 'well', 'just', 'sit', 'there', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', 'im', 'gonna', 'check', 'my', 'machine', 'first', '||period||', '||leftparen||', 'elaine', 'sees', 'a', 'pad', 'of', 'paper', 'by', 'the', 'phone', '||semicolon||', 'reading', '||rightparen||', 'picking', 'someone', 'up', 'at', 'the', 'airport', '||comma||', 'jury', 'duty', '||comma||', 'waiting', 'for', 'cable', 'guy', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'just', 'hand', 'that', 'over', '||comma||', 'please', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'its', 'a', 'list', 'of', 'excuses', '||comma||', 'its', 'for', 'that', 'guy', '||comma||', 'horneck', '||comma||', 'whos', 'at', 'the', 'game', 'tonight', 'with', 'my', 'tickets', '||period||', 'i', 'have', 'that', 'list', 'now', 'so', 'in', 'case', 'he', 'calls', '||comma||', 'i', 'just', 'consult', 'it', 'and', 'i', 'dont', 'have', 'to', 'see', 'him', '||period||', '||leftparen||', 'elaine', 'laughs', '||period||', '||rightparen||', 'i', 'need', 'it', '||period||', '||leftparen||', 'elaine', 'starts', 'writing', 'on', 'the', 'list', '||period||', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'some', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'need', 'any', 'more', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', 'no', '||comma||', 'these', 'are', 'good', '||period||', 'listen', '||comma||', 'listen', 'you', 'ran', 'out', 'of', 'underwear', '||comma||', 'you', 'cant', 'leave', 'the', 'house', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'amused', '||rightparen||', 'very', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'how', 'about', 'youve', 'been', 'diagnosed', 'as', 'a', 'multiple', 'personality', '||period||', 'youre', 'not', 'even', 'you', '||period||', 'youre', 'dan', '||period||', '||return||', '||return||', 'jerry:', 'im', 'dan', '||period||', 'can', 'i', 'have', 'my', 'list', 'back', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'elaine:', 'here', '||comma||', 'here', '||period||', 'jerry', 'seinfeld', '||comma||', 'i', 'cannot', 'believe', 'youre', 'doing', 'this', '||period||', 'this', 'is', 'absolutely', 'infantile', '||period||', '||return||', '||return||', 'jerry:', 'what', 'can', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'deal', 'with', 'it', '||period||', 'be', 'a', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||period||', 'thats', 'impossible', '||period||', 'id', 'rather', 'lie', 'to', 'him', 'for', 'the', 'rest', 'of', 'my', 'life', 'that', 'go', 'through', 'that', 'again', '||period||', 'he', 'was', 'crying', '||period||', 'tears', '||period||', 'accompanied', 'by', 'mucus', '||period||', '||return||', '||return||', 'elaine:', 'you', 'made', 'a', 'man', 'cry', '||questionmark||', 'ive', 'never', 'made', 'a', 'man', 'cry', '||period||', 'i', 'even', 'kicked', 'a', 'guy', 'in', 'the', 'groin', 'once', 'and', 'he', 'didnt', 'cry', '||period||', 'i', 'got', 'the', 'cab', '||period||', '||return||', '||return||', 'jerry:', 'couple', 'of', 'tough', 'monkeys', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hi', 'elaine', '||comma||', 'hey', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'you', 'missed', 'a', 'great', 'game', 'tonight', '||comma||', 'buddy', '||exclammark||', '||return||', '||return||', 'jerry:', 'game', '||questionmark||', '||return||', '||return||', 'kramer:', 'knick', 'game', '||period||', 'horneck', 'took', 'me', '||period||', 'we', 'were', 'sitting', 'two', 'rows', 'behind', 'the', 'bench', '||period||', "we're", 'getting', 'hit', 'by', 'sweat', '||exclammark||', '||return||', '||return||', 'jerry:', 'wait', '||period||', 'how', 'does', 'horneck', 'know', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'last', 'week', '||period||', 'when', 'i', '||comma||', 'you', 'know', '||comma||', 'gave', 'you', 'the', 'phone', '||period||', 'hes', 'really', 'into', 'my', 'pizza', 'place', 'idea', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'too', 'much', '||period||', '||return||', '||return||', 'elaine:', 'wait', '||comma||', 'what', 'pizza', 'place', 'idea', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'kramer:', 'you', 'get', 'to', 'make', 'your', 'own', 'pie', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'sounds', 'like', 'a', 'great', 'idea', '||period||', 'it', 'would', 'be', 'fun', '||period||', '||return||', '||return||', 'kramer:', 'yea', '||period||', '||return||', '||return||', 'joel:', '||leftparen||', 'from', 'the', 'hallway', '||rightparen||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'perfect', '||period||', '||return||', '||return||', 'joel:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'who', 'wants', 'meatloaf', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'no', 'thanks', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'joel', '||rightparen||', 'its', 'gonna', 'be', 'hot', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'joel:', 'so', '||comma||', 'i', 'though', 'you', 'were', 'tutoring', 'your', 'nephew', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'we', 'finished', 'early', '||period||', '||return||', '||return||', 'joel:', 'm', '||dash||', 'hm', '||comma||', 'ill', 'bet', '||period||', 'so', '||comma||', 'are', 'you', 'going', 'to', 'introduce', 'me', 'to', 'your', 'nephew', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', 'benes', '||comma||', 'this', 'is', 'joel', 'horneck', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'joel:', 'whoa', '||comma||', 'nelson', '||exclammark||', 'this', 'is', 'elaine', '||questionmark||', 'i', 'though', 'you', 'guys', 'split', '||questionmark||', '||return||', '||return||', 'jerry:', 'were', 'still', 'friends', '||period||', '||return||', '||return||', 'joel:', 'so', '||comma||', 'thanks', 'again', 'for', 'those', 'tickets', '||period||', 'but', 'next', 'week', '||comma||', 'im', 'going', 'to', 'take', 'you', '||period||', 'how', 'about', 'next', 'tuesday', 'night', '||questionmark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'and', 'why', 'dont', 'you', 'come', 'along', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', 'no', '||period||', 'tuesdays', 'uh', 'no', 'good', 'becasue', 'weve', 'got', 'choir', 'practice', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', 'i', 'forgot', 'about', 'choir', '||period||', '||return||', '||return||', 'elaine:', 'we', '||dash||', 'were', 'doing', 'that', 'evening', 'of', 'eastern', 'european', 'national', 'anthems', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', 'you', 'know', '||comma||', 'the', 'wall', 'being', 'down', 'and', 'everything', '||period||', '||return||', '||return||', 'joel:', 'what', 'about', 'thursday', 'night', '||questionmark||', 'i', 'mean', 'theyre', 'playing', 'the', 'sonics', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||period||', '||period||', 'thursday', 'is', 'no', 'good', 'because', 'weve', 'got', 'to', 'get', 'to', 'the', 'hospital', 'to', 'see', 'if', 'we', 'qualify', 'as', 'those', 'organ', 'donors', '||period||', '||return||', '||return||', 'joel:', 'you', 'know', '||comma||', 'i', 'should', 'really', 'try', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', 'really', 'should', '||period||', '||return||', '||return||', 'joel:', 'well', '||comma||', 'lets', 'just', 'take', 'a', 'look', 'here', '||period||', '||return||', '||return||', 'joel:', 'forty', '||dash||', 'one', 'home', 'games', '||period||', "let's", 'see', 'saturday', 'night', 'weve', 'got', 'the', 'mavericks', '||period||', 'if', 'you', 'dont', 'like', 'the', 'mavericks', '||comma||', 'next', 'tuesday', 'lakers', '||period||', 'i', 'mean', '||comma||', 'you', 'gotta', 'like', 'magic', '||comma||', 'right', '||questionmark||', 'lets', 'see', '||comma||', 'on', 'the', 'road', '||comma||', 'on', 'the', 'road', '||comma||', 'on', 'the', 'road', '||comma||', 'on', 'the', 'road', '||comma||', 'back', 'on', 'the', 'fourteenth', '||period||', 'they', 'play', 'the', 'bulls', '||period||', 'you', 'cant', 'miss', 'air', 'jordan', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'really', '||period||', '||period||', '||period||', 'ive', 'come', 'to', 'the', 'conclusion', 'that', 'there', 'are', 'certain', 'friends', 'in', 'your', 'life', 'that', 'theyre', 'just', 'always', 'your', 'friends', '||comma||', 'and', 'you', 'have', 'to', 'accept', 'it', '||period||', 'you', 'see', 'them', '||comma||', 'you', 'dont', 'really', 'wanna', 'see', 'them', '||period||', 'you', 'dont', 'call', 'them', '||comma||', 'they', 'call', 'you', '||period||', 'you', 'dont', 'call', 'back', '||comma||', 'they', 'call', 'again', '||period||', 'the', 'only', 'way', 'to', 'get', 'through', 'talking', 'with', 'people', 'that', 'you', 'dont', 'really', 'have', 'anything', 'in', 'common', 'with', 'is', 'to', 'pretend', 'youre', 'hosting', 'your', 'own', 'little', 'talk', 'show', '||period||', 'this', 'is', 'what', 'i', 'do', '||period||', 'you', 'pretend', 'theres', 'a', 'little', 'desk', 'around', 'you', '||period||', 'the', 'only', 'problem', 'with', 'this', 'is', 'theres', 'no', 'way', 'you', 'can', 'say', '||comma||', 'hey', '||comma||', 'its', 'been', 'great', 'having', 'you', 'on', 'the', 'show', '||period||', 'were', 'out', 'of', 'time', '||period||', '||return||', '||return||', 'jerry:', 'went', 'out', 'to', 'dinner', 'the', 'other', 'night', '||period||', 'check', 'came', 'at', 'the', 'end', 'of', 'the', 'meal', '||comma||', 'as', 'it', 'always', 'does', '||period||', 'never', 'liked', 'the', 'check', 'at', 'the', 'end', 'of', 'the', 'meal', 'system', '||comma||', 'because', 'moneys', 'a', 'very', 'different', 'thing', 'before', 'and', 'after', 'you', 'eat', '||period||', 'before', 'you', 'eat', '||comma||', 'money', 'has', 'no', 'value', '||period||', 'and', 'you', 'dont', 'care', 'about', 'money', 'when', 'youre', 'hungry', '||period||', 'you', 'sit', 'down', 'at', 'a', 'restaurant', '||comma||', 'youre', 'like', 'the', 'ruler', 'of', 'an', 'empire', '||period||', 'more', 'drinks', '||comma||', 'appetizers', '||comma||', 'quickly', '||comma||', 'quickly', '||exclammark||', 'it', 'will', 'be', 'the', 'greatest', 'meal', 'of', 'our', 'lives', '||period||', 'then', 'after', 'the', 'meal', '||comma||', 'you', 'know', '||comma||', 'youve', 'got', 'the', 'pants', 'open', '||comma||', 'youve', 'got', 'the', 'napkins', 'destroyed', '||comma||', 'cigarette', 'butt', 'in', 'the', 'mashed', 'potatoes', '||period||', 'then', 'the', 'check', 'comes', 'at', 'that', 'moment', '||period||', 'people', 'are', 'always', 'upset', '||comma||', 'you', 'know', '||period||', 'theyre', 'mystified', 'by', 'the', 'check', '||period||', 'what', 'is', 'this', '||questionmark||', 'how', 'could', 'this', 'be', '||questionmark||', 'they', 'start', 'passing', 'it', 'around', 'the', 'table', '||comma||', 'does', 'this', 'look', 'right', 'to', 'you', '||questionmark||', 'were', 'not', 'hungry', 'now', '||period||', 'why', 'are', 'we', 'buying', 'all', 'this', 'food', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'superman', 'probably', 'has', 'a', 'very', 'good', 'sense', 'of', 'humor', '||period||', '||return||', '||return||', 'george:', 'i', 'never', 'heard', 'him', 'say', 'anything', 'really', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'but', 'its', 'common', 'sense', '||period||', 'hes', 'got', 'super', 'strength', '||comma||', 'super', 'speed', '||period||', 'im', 'sure', 'hes', 'got', 'super', 'humor', '||period||', '||return||', '||return||', 'george:', 'you', 'would', 'think', 'that', '||comma||', 'but', 'either', 'youre', 'born', 'with', 'a', 'sense', 'of', 'humor', '||comma||', 'or', 'youre', 'not', '||period||', 'its', 'not', 'going', 'to', 'change', 'even', 'if', 'you', 'go', 'from', 'the', 'red', 'sun', 'of', 'krypton', 'all', 'the', 'way', 'to', 'the', 'yellow', 'sun', 'of', 'the', 'earth', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', 'why', 'would', 'that', 'one', 'area', 'of', 'his', 'mind', 'not', 'be', 'affected', 'by', 'the', 'yellow', 'sun', 'of', 'earth', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'but', 'he', 'aint', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'im', 'sorry', 'im', 'late', '||period||', '||return||', '||return||', 'jerry:', 'no', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dropped', 'a', 'grape', '||period||', '||return||', '||return||', 'george:', 'pardon', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dropped', 'a', 'grape', 'in', 'the', 'kitchen', 'and', 'it', 'disappeared', '||period||', 'i', 'couldnt', 'find', 'it', '||period||', 'i', 'was', '||comma||', 'i', 'was', 'literally', 'on', 'my', 'knees', 'for', 'ten', 'minutes', 'looking', 'for', 'this', 'stupid', 'grape', '||period||', 'i', 'have', 'no', 'idea', 'where', 'it', 'went', '||period||', '||return||', '||return||', 'jerry:', 'were', 'you', 'crying', '||questionmark||', 'i', 'mean', '||comma||', 'its', 'just', 'a', 'grape', '||period||', 'youll', 'find', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'im', 'just', 'getting', 'over', 'an', 'allergy', 'attack', '||period||', 'this', 'guy', 'im', 'going', 'out', 'with', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'robert', '||period||', '||return||', '||return||', 'elaine:', 'robert', '||period||', 'yes', '||period||', 'thank', 'you', '||period||', 'he', 'has', 'two', 'cats', 'and', 'im', 'allergic', 'to', 'them', '||period||', 'you', 'know', '||comma||', 'i', 'finally', 'meet', 'a', 'normal', 'man', '||comma||', 'and', 'i', 'cant', 'even', 'go', 'into', 'his', 'apartment', '||comma||', 'you', 'know', '||period||', 'and', '||comma||', 'of', 'course', '||comma||', 'my', 'apartment', 'is', 'the', 'actors', 'studio', 'so', 'we', 'cant', 'go', 'there', '||period||', 'its', 'really', 'causing', 'a', 'lot', 'of', 'problems', '||comma||', 'you', 'know', '||period||', 'he', 'wont', 'even', 'go', 'away', 'for', 'the', 'weekend', 'because', 'of', 'these', 'cats', '||period||', '||return||', '||return||', 'george:', 'guys', 'with', 'cats', '||period||', '||period||', '||period||', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'jerry:', 'ive', 'been', 'thinking', 'about', 'asking', 'this', 'girl', 'im', '||comma||', 'uh', '||comma||', 'seeing', '||dash||', '||return||', '||return||', 'elaine:', 'vanessa', '||period||', '||return||', '||return||', 'jerry:', 'vanessa', '||comma||', 'thank', 'you', '||period||', 'ive', 'been', 'thinking', 'about', 'asking', 'her', 'to', 'go', 'away', 'for', 'a', 'couple', 'of', 'days', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', 'no', 'no', 'no', 'no', 'no', '||period||', 'id', 'have', 'to', 'advise', 'against', 'that', '||period||', 'what', '||comma||', 'do', 'you', 'know', 'this', 'woman', 'a', 'month', '||questionmark||', 'lets', 'see', '||comma||', 'youre', 'going', 'to', 'be', 'with', 'her', 'seventy', '||dash||', 'two', 'hours', '||period||', 'thats', 'a', 'dating', 'decathlon', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'balancing', 'a', 'spoon', 'on', 'her', 'nose', '||rightparen||', 'hey', '||comma||', 'why', 'dont', 'you', 'take', 'her', 'to', 'that', 'place', 'in', 'vermont', 'i', 'was', 'telling', 'you', 'about', '||questionmark||', 'you', 'know', '||comma||', 'that', 'really', 'charming', 'place', 'with', 'the', 'separate', 'faucets', 'for', 'the', 'hot', 'and', 'cold', '||period||', 'shell', 'love', 'it', '||period||', '||return||', '||return||', 'george:', 'thats', 'exquisite', '||period||', 'listen', '||comma||', 'uh', '||comma||', 'if', 'its', 'not', 'too', 'much', 'trouble', '||comma||', 'could', 'you', 'pass', 'me', 'that', 'paper', 'over', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'better', 'find', 'that', 'grape', 'before', 'it', 'mutates', 'into', 'another', 'life', 'form', '||period||', 'there', 'was', 'once', 'a', 'mutant', 'grape', 'that', 'terrorized', 'an', 'entire', 'town', 'in', 'the', 'texas', 'panhandle', '||period||', 'they', 'brought', 'in', 'the', 'army', '||comma||', 'nobody', 'could', 'stop', 'it', '||period||', 'apparently', 'it', 'had', 'a', 'pit', 'of', 'steel', '||period||', '||return||', '||return||', 'george:', 'up', 'again', '||questionmark||', '||exclammark||', 'this', 'is', 'incredible', '||exclammark||', 'im', '||period||', '||period||', 'im', 'getting', 'it', '||period||', '||return||', '||return||', 'elaine:', 'youre', 'getting', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'stock', '||period||', '||return||', '||return||', 'jerry:', 'what', 'stock', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'ever', 'meet', 'my', 'friend', '||comma||', 'simons', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', '||period||', '||return||', '||return||', 'george:', 'he', 'knows', 'this', 'guy', '||comma||', 'wilkinson', '||period||', 'he', 'made', 'a', 'fortune', 'in', 'the', 'stock', 'market', '||period||', 'now', 'hes', 'got', 'some', 'new', 'thing', '||period||', 'you', 'know', '||comma||', 'theres', 'supposed', 'to', 'be', 'a', 'big', 'merger', '||period||', 'he', 'wasnt', 'even', 'supposed', 'to', 'say', 'anything', '||period||', 'you', 'guys', 'should', 'think', 'about', 'doing', 'this', 'too', '||period||', '||return||', '||return||', 'jerry:', 'how', 'highs', 'it', 'suppose', 'to', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'but', 'simons', 'said', 'that', 'if', 'i', 'wanted', 'to', 'get', 'involved', '||comma||', 'that', 'wilkinson', 'would', 'tell', 'me', 'the', 'exact', 'right', 'minute', 'to', 'sell', '||period||', 'you', 'wanna', 'do', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'boy', '||period||', '||period||', '||period||', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'elaine:', 'id', 'do', 'it', 'but', 'i', 'dont', 'have', 'any', 'money', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'company', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'its', 'called', 'sendrax', '||period||', 'theyve', 'got', 'some', 'new', 'kind', 'of', 'technique', 'for', 'televising', 'opera', '||period||', '||return||', '||return||', 'elaine:', 'televising', 'opera', '||questionmark||', '||return||', '||return||', 'george:', 'some', 'sort', 'of', 'electronic', 'thingy', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'how', 'much', 'are', 'you', 'going', 'to', 'invest', '||questionmark||', '||return||', '||return||', 'george:', 'five', 'thousand', '||period||', '||period||', '||period||', 'ten', '||period||', 'ten', 'thousand', '||period||', 'five', 'thousand', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'cmon', '||period||', 'wilkinsons', 'got', 'millions', 'invested', 'in', 'this', 'stock', '||period||', 'its', 'gone', 'up', 'three', 'points', 'since', 'ive', 'been', 'watching', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'i', 'lose', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'cmon', '||comma||', 'go', 'for', 'twenty', '||dash||', 'five', 'hundred', '||period||', 'well', 'do', 'it', 'together', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||period||', 'were', 'in', 'it', 'together', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'twenty', '||dash||', 'five', 'hundred', '||period||', '||return||', '||return||', 'george:', 'thats', 'it', '||period||', '||return||', '||return||', 'waitress:', 'yeah', '||comma||', 'can', 'i', 'take', 'your', 'order', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'gesturing', 'to', 'jerry', '||rightparen||', 'check', 'the', 'raiser', '||period||', '||return||', '||return||', 'jerry:', 'my', 'bet', '||questionmark||', 'all', 'right', '||period||', 'ill', 'open', 'with', 'a', 'tuna', 'sandwich', '||period||', '||return||', '||return||', 'elaine:', 'tuna', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'dolphin', 'thing', '||questionmark||', '||return||', '||return||', 'elaine:', 'theyre', 'dying', 'in', 'the', 'nets', '||period||', '||return||', '||return||', 'jerry:', 'ohhh', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'the', 'whole', 'concept', 'of', 'lunch', 'is', 'based', 'on', 'tuna', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'cant', 'you', 'incorporate', 'one', 'unselfish', 'act', 'in', 'your', 'daily', 'routine', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'when', 'im', 'driving', '||comma||', 'i', 'let', 'people', 'in', 'ahead', 'of', 'me', 'all', 'the', 'time', '||period||', 'im', 'always', 'waving', 'everybody', 'in', '||period||', 'go', 'ahead', '||comma||', 'go', 'ahead', '||comma||', 'go', 'ahead', '||period||', '||period||', '||period||', '||period||', 'all', 'right', '||period||', 'all', 'right', '||period||', 'ill', 'have', 'a', 'chicken', 'salad', '||period||', '||return||', '||return||', 'elaine:', 'and', 'im', 'going', 'to', 'have', 'an', 'english', 'muffin', 'with', 'margarine', 'on', 'the', 'side', 'and', 'a', 'cup', 'of', 'coffee', '||period||', '||return||', '||return||', 'waitress:', 'okay', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'ill', 'have', 'the', 'tuna', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'say', '||comma||', 'those', 'people', 'talking', 'behind', 'us', 'really', 'ruined', 'that', 'movie', 'for', 'me', '||period||', '||return||', '||return||', 'vanessa:', 'why', 'didnt', 'you', 'do', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', 'i', 'gave', 'the', 'guy', 'the', 'half', '||dash||', 'turn', '||period||', '||leftparen||', 'acts', 'like', 'he', 'did', 'in', 'the', 'movie', '||rightparen||', 'then', 'i', 'gave', 'him', 'the', 'full', '||dash||', 'turn', 'with', 'the', 'eye', 'roll', '||period||', '||leftparen||', 'does', 'the', 'next', 'look', '||rightparen||', 'i', 'mean', '||comma||', 'beyond', 'that', '||comma||', 'im', 'risking', 'a', 'punch', 'in', 'the', 'mouth', '||period||', '||leftparen||', 'to', 'a', 'stock', 'boy', '||rightparen||', 'excuse', 'me', '||comma||', 'do', 'you', 'have', 'these', 'in', 'the', 'puffs', '||questionmark||', '||return||', '||return||', 'stock', 'boy:', 'no', 'puffs', '||period||', 'just', 'flakes', '||period||', '||return||', '||return||', 'jerry', ':', 'have', 'you', 'thought', 'any', 'more', 'about', 'that', 'trip', '||questionmark||', '||return||', '||return||', 'vanessa:', 'yeah', '||comma||', 'ive', 'been', 'thinking', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'my', 'friend', 'told', 'me', 'about', 'this', 'great', 'place', 'in', 'vermont', '||period||', '||return||', '||return||', 'vanessa:', 'i', 'dont', 'know', '||period||', 'i', 'just', 'worry', 'about', 'trips', 'like', 'this', '||period||', 'its', 'a', 'lot', 'of', 'pressure', '||period||', '||return||', '||return||', 'jerry:', 'its', 'great', '||exclammark||', 'it', 'speeds', 'up', 'the', 'intimacy', 'level', '||period||', 'its', 'like', 'putting', 'the', 'relationship', 'in', 'a', 'time', 'compressor', '||period||', 'where', 'we', 'would', 'be', 'six', 'months', 'from', 'now', 'we', 'accomplish', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', 'three', 'days', '||period||', '||return||', '||return||', 'vanessa:', 'oh', '||comma||', 'so', 'you', 'want', 'to', 'move', 'our', 'relationship', 'into', 'phase', 'two', '||questionmark||', '||return||', '||return||', 'jerry:', 'exactly', '||period||', 'i', 'love', 'phase', 'two', '||period||', 'extra', 'toothbrushes', '||comma||', 'increased', 'phone', 'call', 'frequency', '||comma||', 'walking', 'around', 'naked', '||period||', 'you', 'know', '||comma||', 'the', 'presents', 'get', 'a', 'lot', 'better', 'in', 'phase', 'two', '||period||', '||return||', '||return||', 'vanessa:', 'really', '||questionmark||', 'could', 'we', 'go', 'fishing', 'up', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'we', 'can', 'fish', '||period||', 'what', '||questionmark||', 'blues', '||comma||', 'carp', '||comma||', 'marlin', '||questionmark||', '||return||', '||return||', 'vanessa:', 'they', 'have', 'marlin', 'in', 'vermont', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'big', 'fighting', 'marlin', '||period||', '||leftparen||', 'jerry', 'acts', 'like', 'he', 'is', 'catching', 'a', 'marlin', '||rightparen||', '||return||', '||return||', 'vanessa:', 'jerry', '||comma||', 'the', 'stock', 'is', 'the', 'same', 'as', 'when', 'you', 'checked', 'it', 'earlier', '||period||', 'there', 'are', 'no', 'changes', 'after', 'the', 'market', 'closes', '||period||', 'the', 'stock', 'is', 'still', 'down', '||period||', '||return||', '||return||', 'jerry', ':', 'i', 'know', '||period||', 'but', 'this', 'is', 'a', 'different', 'paper', '||period||', 'i', 'thought', 'maybe', 'they', 'have', '||comma||', 'uh', '||comma||', 'different', '||period||', '||period||', '||period||', 'sources', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'my', 'paper', '||questionmark||', '||return||', '||return||', 'kramer:', 'bad', 'news', '||comma||', 'my', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', 'news', '||questionmark||', '||return||', '||return||', 'kramer', ':', 'sendrax', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'cmon', '||exclammark||', 'its', 'down', 'again', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'two', 'and', 'a', 'half', 'points', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'cant', 'believe', 'it', '||period||', 'let', 'me', 'see', 'that', '||period||', '||leftparen||', 'jerry', 'takes', 'the', 'paper', '||period||', '||rightparen||', 'thats', 'four', 'and', 'a', 'half', 'points', 'in', 'three', 'days', '||exclammark||', 'thats', 'almost', 'half', 'my', 'money', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||comma||', 'you', 'told', 'me', '||period||', '||return||', '||return||', 'kramer:', 'its', 'all', 'manipulated', 'with', 'junk', 'bonds', '||period||', 'you', 'cant', 'win', '||period||', '||return||', '||return||', 'jerry:', 'theres', 'one', 'thing', 'i', 'dont', 'understand', '||period||', 'why', 'does', 'it', 'please', 'you', '||questionmark||', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'george', 'costanza', '||comma||', 'please', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'dont', 'care', '||period||', 'im', 'just', 'telling', 'you', 'to', '||leftparen||', 'yelling', '||rightparen||', 'get', 'rid', 'of', 'that', 'stock', '||comma||', 'now', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'george', '||comma||', 'whats', 'going', 'on', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'sell', 'it', '||comma||', 'just', 'say', 'im', 'selling', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'well', '||comma||', 'where', 'is', 'the', 'guy', '||questionmark||', '||exclammark||', '||period||', '||period||', '||period||', 'nothing', '||questionmark||', '||exclammark||', 'almost', 'half', 'my', 'moneys', 'gone', '||period||', '||period||', '||period||', 'well', '||comma||', 'call', 'me', 'right', 'back', '||period||', '||leftparen||', 'jerry', 'hangs', 'up', '||period||', '||rightparen||', 'nobody', 'can', 'reach', 'wilkinson', '||period||', 'he', 'hasnt', 'been', 'home', 'or', 'in', 'his', 'office', 'in', 'the', 'past', 'three', 'days', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'cant', 'believe', 'you', 'put', 'your', 'money', 'in', 'that', 'sendrax', '||period||', 'and', 'you', 'couldve', 'invested', 'in', 'my', 'roll', '||dash||', 'out', 'tie', 'dispenser', '||period||', '||return||', '||return||', 'jerry:', 'roll', '||dash||', 'out', 'tie', 'dispenser', '||questionmark||', 'what', 'was', 'that', 'one', '||questionmark||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'youre', 'in', 'a', 'restaurant', '||period||', 'youve', 'got', 'a', 'very', 'big', 'meeting', 'coming', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looks', 'at', 'his', 'shirt', 'as', 'if', 'he', 'had', 'a', 'tie', 'on', '||rightparen||', 'oh', 'man', '||comma||', 'you', 'got', 'mustard', 'on', 'your', 'tie', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'going', 'along', 'with', 'it', '||rightparen||', 'oh', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'just', '||leftparen||', 'makes', 'the', 'tearing', 'sound', '||rightparen||', 'tear', 'it', 'off', '||comma||', 'and', 'vvvvrrrpppp', 'you', 'got', 'a', 'new', 'one', 'right', 'here', '||period||', 'then', 'youre', 'gone', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'gone', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', 'map', '||rightparen||', 'hey', '||comma||', 'where', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', 'you', 'gonna', 'take', 'a', 'trip', '||questionmark||', 'the', 'map', '||period||', '||period||', '||period||', 'what', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'im', 'going', 'to', 'vermont', 'with', 'uh', 'vanessa', 'for', 'a', 'few', 'days', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'can', 'i', 'use', 'your', 'place', '||questionmark||', 'i', 'got', 'a', 'bunch', 'of', 'friends', 'coming', 'over', 'this', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'what', 'friends', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'its', 'just', 'some', 'people', 'i', 'met', 'at', 'a', 'rock', 'concert', '||period||', '||leftparen||', 'phone', 'rings', '||period||', '||rightparen||', 'do', 'you', 'mind', 'if', 'they', 'use', 'your', 'bed', '||questionmark||', '||leftparen||', 'jerry', 'give', 'kramer', 'a', 'look', '||period||', '||rightparen||', 'cause', 'theyre', 'really', 'good', 'people', '||comma||', 'jerry', '||period||', 'im', 'telling', 'you', '||period||', 'you', 'know', '||comma||', 'theyre', 'anarchists', '||period||', 'theyre', '||period||', '||period||', 'theyre', '||period||', '||period||', 'theyre', '||period||', '||period||', 'huge', '||period||', '||return||', '||return||', 'jerry:', 'george', '||dash||', 'what', '||questionmark||', '||exclammark||', 'youre', 'kidding', '||period||', '||period||', '||period||', 'well', '||comma||', 'whats', 'wrong', '||questionmark||', '||period||', '||period||', '||period||', 'so', '||comma||', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||period||', '||period||', '||period||', 'great', '||exclammark||', '||period||', '||period||', '||period||', 'all', 'right', '||comma||', 'ill', 'speak', 'to', 'you', 'later', '||period||', '||leftparen||', 'he', 'hangs', 'up', '||period||', '||rightparen||', 'wilkinson', '||comma||', 'the', 'guy', 'whos', 'supposed', 'to', 'tell', 'us', 'when', 'to', 'sell', 'the', 'stock', '||comma||', 'hes', 'in', 'the', 'hospital', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'dont', 'know', 'whats', 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'simons', 'was', 'able', 'to', 'find', 'out', 'is', 'that', 'hes', 'in', 'the', 'hospital', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'fine', '||period||', 'has', 'simons', 'been', 'in', 'touch', 'with', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', 'hes', 'been', 'in', 'touch', 'with', 'him', '||period||', 'hes', 'left', 'two', 'messages', '||period||', 'he', 'just', 'hasnt', 'heard', 'back', 'yet', '||comma||', 'thats', 'all', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'this', 'is', 'it', '||period||', 'im', 'selling', '||period||', '||return||', '||return||', 'george:', 'just', 'give', 'it', 'a', 'little', 'more', 'time', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'shouldve', 'gotten', 'involved', 'in', 'this', '||period||', 'im', 'a', 'nervous', 'wreck', '||period||', 'im', 'not', 'cut', 'out', 'for', 'investing', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'thats', 'it', '||period||', 'im', 'gonna', 'go', 'down', 'there', '||period||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'george:', 'to', 'the', 'hospital', '||period||', '||return||', '||return||', 'jerry:', 'the', 'hospital', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'going', 'to', 'find', 'out', 'whats', 'going', 'on', '||period||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'nuts', '||questionmark||', 'you', 'dont', 'even', 'know', 'the', 'guy', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||questionmark||', 'ill', 'start', 'talking', 'to', 'him', '||comma||', 'you', 'know', '||comma||', 'casual', '||comma||', 'and', 'ill', 'work', 'my', 'way', 'around', 'to', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'hes', 'in', 'an', 'iron', 'lung', 'or', 'something', '||questionmark||', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||leftparen||', 'jerry', 'knocks', 'on', 'imaginary', 'glass', '||period||', '||rightparen||', 'how', 'you', 'feeling', '||comma||', 'mr', '||period||', 'wilkinson', '||questionmark||', '||leftparen||', 'he', 'makes', 'a', 'hissing', 'sound', '||period||', '||rightparen||', 'by', 'the', 'way', '||comma||', 'whats', 'happening', 'with', 'sendrax', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'hes', 'resting', '||period||', '||return||', '||return||', 'jerry:', 'who', 'goes', 'to', 'the', 'hospital', 'to', 'rest', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', '||comma||', 'a', 'doctor', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'fine', '||comma||', 'fine', '||period||', 'when', 'are', 'you', 'going', 'down', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'today', '||period||', 'im', 'going', 'today', '||period||', 'just', 'dont', 'do', 'anything', 'until', 'you', 'hear', 'from', 'me', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'woman', '||rightparen||', 'boy', '||comma||', 'i', 'have', 'to', 'get', 'to', 'a', 'bathroom', '||period||', '||return||', '||return||', 'dry', 'cleaner:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'picked', 'up', 'this', 'shirt', 'here', 'yesterday', '||period||', 'its', 'completely', 'shrunk', '||period||', 'theres', 'absolutely', 'no', 'way', 'i', 'can', 'wear', 'it', '||period||', '||return||', '||return||', 'dry', 'cleaner:', 'when', 'did', 'you', 'bring', 'it', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'whats', 'the', 'difference', '||questionmark||', 'look', 'at', 'it', '||exclammark||', 'do', 'you', 'see', 'the', 'size', 'of', 'this', 'shirt', '||questionmark||', '||exclammark||', '||return||', '||return||', 'dry', 'cleaner:', 'you', 'got', 'a', 'receipt', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'find', 'the', 'receipt', '||period||', '||return||', '||return||', 'dry', 'cleaner:', 'you', 'should', 'get', 'the', 'receipt', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'forget', 'about', 'the', 'receipt', '||comma||', 'all', 'right', '||questionmark||', 'even', 'if', 'i', 'had', 'the', 'receipt', '||dash||', 'look', 'at', 'it', '||exclammark||', 'its', 'a', 'hand', 'puppet', '||period||', 'what', 'am', 'i', 'gonna', 'do', 'with', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'dry', 'cleaner:', 'yes', '||comma||', 'but', 'how', 'do', 'i', 'know', 'we', 'did', 'the', 'shirt', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', 'this', 'is', 'a', 'little', 'scam', 'i', 'have', '||questionmark||', 'i', 'take', 'this', 'tiny', 'shirt', 'all', 'over', 'the', 'city', 'conning', 'dry', 'cleaners', 'out', 'of', 'money', '||questionmark||', 'in', 'fact', '||comma||', 'forget', 'the', 'money', '||period||', 'i', 'dont', 'even', 'want', 'the', 'money', '||period||', 'i', 'just', 'once', '||comma||', 'i', 'would', 'like', 'to', 'hear', 'a', 'dry', 'cleaner', 'admit', 'that', 'something', 'was', 'their', 'fault', '||period||', 'thats', 'what', 'i', 'want', '||period||', 'i', 'want', 'an', 'admission', 'of', 'guilt', '||period||', '||return||', '||return||', 'dry', 'cleaner:', 'maybe', 'you', 'asked', 'for', 'it', 'to', 'be', 'washed', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'dry', '||dash||', 'cleaned', '||period||', '||return||', '||return||', 'dry', 'cleane:', 'let', 'me', 'explain', 'to', 'you', 'something', '||comma||', 'okay', '||questionmark||', 'with', 'certain', 'types', 'of', 'fabrics', '||comma||', 'different', 'chemicals', 'can', 'react', '||comma||', 'causing', '||dash||', '||return||', '||return||', 'jerry:', 'you', 'shrunk', 'it', '||exclammark||', 'you', 'know', 'you', 'shrunk', 'it', '||exclammark||', 'just', 'tell', 'me', 'that', 'you', 'shrunk', 'it', '||exclammark||', '||return||', '||return||', 'dry', 'cleaner:', '||leftparen||', 'looks', 'around', 'making', 'sure', 'not', 'too', 'many', 'people', 'are', 'listening', '||rightparen||', 'i', 'shrunk', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'the', 'only', 'reason', 'we', 'go', 'to', 'the', 'dry', 'cleaner', 'is', 'so', 'i', 'can', 'say', 'to', 'the', 'dry', 'cleaner', '||comma||', 'well', '||comma||', 'its', 'ruined', '||period||', 'and', 'of', 'course', '||comma||', 'the', 'dry', 'cleaner', 'can', 'respond', '||comma||', 'its', 'not', 'our', 'fault', '||period||', 'were', 'not', 'responsible', '||period||', 'we', 'just', 'ruin', 'the', 'clothes', '||period||', 'that', 'ends', 'our', 'legal', 'obligation', '||period||', 'you', 'see', '||comma||', 'the', 'whole', 'problem', 'with', 'dry', 'cleaning', 'is', 'that', 'we', 'all', 'believe', 'that', 'this', 'is', 'actually', 'possible', '||period||', 'th', '||dash||', 'right', '||questionmark||', 'theyre', 'cleaning', 'our', 'clothes', '||comma||', 'but', 'theyre', 'not', 'getting', 'anything', 'wet', '||period||', 'its', 'all', 'dry', '||period||', 'i', 'know', 'theres', 'gotta', 'be', 'some', 'liquids', 'back', 'there', '||comma||', 'some', 'fluids', 'that', 'theyre', 'using', '||period||', 'theres', 'no', 'such', 'thing', 'as', 'dry', 'cleaning', '||period||', 'when', 'you', 'get', 'something', 'on', 'your', 'shirt', '||comma||', 'ever', 'get', 'something', 'on', 'your', 'shirt', 'and', 'try', 'to', 'get', 'it', 'off', 'like', 'that', '||leftparen||', 'jerry', 'brushes', 'off', 'his', 'shirt', '||period||', '||rightparen||', 'thats', 'dry', 'cleaning', '||period||', 'i', 'dont', 'think', 'thats', 'what', 'theyre', 'doing', 'back', 'there', '||period||', 'they', 'dont', 'have', 'eighty', 'guys', 'going', '||comma||', 'come', 'on', '||comma||', 'hurry', 'up', '||exclammark||', 'theres', 'a', 'lot', 'of', 'shirts', 'today', '||exclammark||', '||return||', '||return||', 'jerry:', 'bless', 'you', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||period||', 'what', 'evidence', 'is', 'there', 'that', 'cats', 'are', 'so', 'smart', '||comma||', 'anyway', '||questionmark||', 'huh', '||questionmark||', 'what', 'do', 'they', 'do', '||questionmark||', 'because', 'theyre', 'clean', '||questionmark||', 'i', 'am', 'sorry', '||period||', 'my', 'uncle', 'pete', 'showers', 'four', 'times', 'a', 'day', 'and', 'he', 'cant', 'count', 'to', 'ten', '||comma||', 'so', 'dont', 'give', 'me', 'hygiene', '||period||', '||return||', '||return||', 'jerry', ':', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||period||', 'i', 'cant', 'think', 'of', 'any', 'solution', '||comma||', 'unless', 'of', 'course', 'they', 'should', 'meet', 'with', 'some', 'unfortunate', 'accident', '||period||', 'what', 'do', 'you', 'think', 'a', 'hit', 'man', 'would', 'charge', 'to', 'rub', 'out', 'a', 'couple', 'of', 'cats', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'couldnt', 'be', 'too', 'expensive', '||period||', 'thirteen', '||comma||', 'fourteen', 'bucks', 'a', 'cat', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'think', '||comma||', 'jerry', '||questionmark||', 'you', 'wanna', 'make', 'twenty', '||dash||', 'eight', 'bucks', '||questionmark||', '||return||', '||return||', 'jerry:', 'im', 'no', 'cat', 'killer', '||period||', '||return||', '||return||', 'elaine:', 'how', 'about', 'we', 'go', 'over', 'there', 'right', 'now', 'and', 'we', 'shave', 'them', '||questionmark||', '||return||', '||return||', 'jerry:', 'id', 'really', 'like', 'to', 'go', '||comma||', 'elaine', '||period||', 'but', '||comma||', 'george', 'is', 'coming', 'back', 'from', 'the', 'hospital', '||period||', 'i', 'gotta', 'wait', 'for', 'him', '||period||', 'but', 'otherwise', 'i', 'would', 'definitely', 'go', '||period||', '||return||', '||return||', 'elaine:', 'he', 'actually', 'went', 'to', 'the', 'hospital', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'man', '||comma||', 'hes', 'nuts', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'hes', 'nuts', '||period||', 'you', 'wanta', 'bump', 'off', 'a', 'couple', 'of', 'cats', '||period||', '||leftparen||', 'enter', 'kramer', '||comma||', 'holding', 'a', 'paper', 'up', 'to', 'jerry', '||period||', '||rightparen||', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'its', 'down', 'again', '||period||', '||return||', '||return||', 'kramer:', 'how', 'much', 'are', 'you', 'down', 'altogether', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', '||period||', 'fifteen', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'wow', '||period||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'have', 'to', 'say', 'wow', '||period||', 'i', 'know', 'its', 'wow', '||period||', '||leftparen||', 'kramer', 'smiling', '||rightparen||', 'and', 'theres', 'that', 'smile', 'again', '||period||', 'well', '||comma||', 'what', 'is', 'that', '||questionmark||', '||leftparen||', 'intercom', 'buzzes', '||period||', '||rightparen||', 'its', 'george', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'look', 'at', 'this', 'one', 'by', 'the', 'bus', 'stop', '||period||', 'jerry', '||comma||', 'come', 'here', '||period||', 'take', 'a', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'jerry:', 'i', 'really', 'dont', 'need', 'to', 'look', '||period||', '||return||', '||return||', 'kramer:', 'what', 'a', 'body', '||period||', 'yeeaahh', '||period||', 'thats', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'youre', 'just', 'what', 'shes', 'looking', 'for', 'too', 'a', 'stranger', 'leering', 'through', 'a', 'pair', 'of', 'binoculars', 'ten', 'floors', 'up', '||period||', '||return||', '||return||', 'kramer:', 'im', 'gonna', 'go', 'down', 'there', 'and', 'try', 'and', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', '||questionmark||', 'did', 'you', 'go', 'down', 'there', '||questionmark||', '||leftparen||', 'george', 'nods', '||period||', '||rightparen||', 'did', 'he', 'tell', 'you', 'whats', 'gonna', 'happen', '||questionmark||', '||leftparen||', 'george', 'shakes', 'his', 'head', '||period||', '||rightparen||', 'how', 'long', 'were', 'you', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'fifteen', 'seconds', '||period||', '||return||', '||return||', 'jerry:', 'you', 'told', 'him', 'you', 'knew', 'simons', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'mentioned', 'simons', '||period||', 'next', 'thing', 'i', 'know', '||comma||', 'im', 'in', 'the', 'parking', 'lot', '||period||', 'perhaps', 'they', 'had', 'some', 'sort', 'of', 'a', 'falling', 'out', '||period||', 'ill', 'tell', 'you', 'one', 'thing', '||period||', 'i', 'dont', 'know', 'what', 'hes', 'got', '||period||', 'but', 'for', 'a', 'sick', 'guy', '||comma||', 'hes', 'very', 'strong', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thats', 'it', '||period||', 'look', '||comma||', 'im', 'going', 'to', 'vermont', '||period||', 'i', 'dont', 'want', 'to', 'think', 'about', 'this', '||period||', 'im', 'selling', '||period||', '||return||', '||return||', 'elaine:', 'didnt', 'work', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'not', 'quite', '||period||', '||return||', '||return||', 'elaine:', 'we', '||dash||', 'well', '||comma||', 'what', 'are', 'you', 'gonna', 'do', 'about', 'the', 'stock', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'keeping', 'it', '||period||', 'im', 'going', 'down', 'with', 'the', 'ship', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'know', 'this', 'guy', '||period||', 'im', 'getting', 'all', 'my', 'sneakers', 'at', 'a', 'discount', 'now', '||period||', '||return||', '||return||', 'vanessa:', 'i', 'know', '||period||', 'you', 'mentioned', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'oh', 'god', '||period||', 'get', 'me', 'out', 'of', 'here', '||period||', 'what', 'a', 'mistake', '||period||', 'what', 'made', 'me', 'think', 'this', 'would', 'work', '||questionmark||', 'and', 'ive', 'still', 'got', 'another', 'day', '||exclammark||', 'ive', 'got', 'nothing', 'left', 'to', 'say', '||period||', 'wait', '||period||', '||period||', '||period||', 'wait', '||period||', '||period||', '||period||', 'got', 'one', '||period||', '||leftparen||', 'to', 'vanessa', '||rightparen||', 'thats', 'a', 'nice', 'watch', '||period||', 'do', 'you', 'wind', 'it', '||questionmark||', '||return||', '||return||', 'vanessa:', 'no', '||comma||', 'its', 'got', 'a', 'little', 'battery', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thats', 'good', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'well', '||comma||', 'the', 'drive', 'home', 'should', 'be', 'a', 'delight', '||period||', 'im', 'speeding', 'the', 'whole', 'way', '||period||', 'let', 'them', 'throw', 'me', 'in', 'jail', '||period||', 'i', 'dont', 'care', '||period||', '||leftparen||', 'to', 'vanessa', '||rightparen||', "that's", 'the', 'manager', '||questionmark||', 'do', 'you', 'want', 'me', 'to', 'see', 'if', 'we', 'can', 'get', 'another', 'room', '||questionmark||', '||return||', '||return||', 'vanessa:', 'no', '||comma||', 'its', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'i', 'guess', 'you', 'dont', 'find', 'the', 'separate', 'faucets', 'for', 'the', 'hot', 'and', 'cold', '||comma||', 'charming', '||questionmark||', '||return||', '||return||', 'vanessa:', 'not', 'especially', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'do', 'you', 'want', 'to', 'do', 'this', 'afternoon', '||questionmark||', '||return||', '||return||', 'vanessa:', 'what', 'can', 'we', 'do', '||questionmark||', 'its', 'raining', '||period||', '||return||', '||return||', 'jerry:', 'we', 'cold', 'play', 'sorry', '||exclammark||', 'we', 'cold', 'play', 'steal', 'the', 'old', 'mans', 'bundle', '||period||', '||leftparen||', 'vanessa', 'not', 'amused', '||semicolon||', 'jerry', 'thinking', '||rightparen||', 'maybe', 'i', 'can', 'get', 'an', 'extension', 'cord', 'and', 'hang', 'myself', '||period||', '||leftparen||', 'to', 'vanessa', '||rightparen||', 'what', 'kind', 'of', 'perfume', 'is', 'that', 'youre', 'wearing', '||questionmark||', '||return||', '||return||', 'vanessa:', 'oh', '||comma||', 'youve', 'never', 'heard', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'what', '||questionmark||', 'what', 'kind', 'is', 'it', '||questionmark||', '||return||', '||return||', 'vanessa:', 'i', 'cant', 'tell', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'yeah', '||comma||', 'thats', 'normal', '||period||', '||leftparen||', 'to', 'a', 'man', 'nearby', '||rightparen||', 'excuse', 'me', '||comma||', 'sir', '||period||', 'could', 'i', 'have', 'a', 'look', 'at', 'that', 'business', 'section', '||questionmark||', '||return||', '||return||', 'vanessa:', 'that', 'stock', '||questionmark||', 'i', 'thought', 'you', 'got', 'out', 'of', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'did', '||period||', 'im', 'just', 'curious', '||period||', 'its', 'been', 'almost', 'a', 'week', '||period||', 'i', 'want', 'to', 'check', 'it', 'out', '||period||', '||leftparen||', 'he', 'finds', 'the', 'stock', '||period||', '||rightparen||', 'six', 'points', '||questionmark||', '||leftparen||', 'to', 'vanessa', '||rightparen||', 'its', 'up', 'six', 'points', '||exclammark||', '||return||', '||return||', 'vanessa:', 'i', 'told', 'you', 'not', 'to', 'sell', '||period||', '||return||', '||return||', 'jerry:', 'you', 'did', 'not', 'tell', 'me', 'not', 'to', 'sell', '||period||', '||return||', '||return||', 'vanessa:', 'i', 'said', 'the', 'market', 'fluctuates', '||period||', 'remember', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'vanessa', '||comma||', 'of', 'course', 'the', 'market', 'fluctuates', '||period||', 'everybody', 'knows', 'that', '||period||', 'i', 'just', 'got', 'fluctuated', 'out', 'of', 'four', 'thousand', 'dollars', '||exclammark||', '||return||', '||return||', 'vanessa:', 'thats', 'probably', 'why', "we're", '||dash||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'vanessa:', 'forget', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'what', '||questionmark||', 'thats', 'probably', 'why', '||period||', '||period||', '||return||', '||return||', 'vanessa:', 'thats', 'probably', 'why', 'were', 'staying', 'here', '||comma||', 'because', 'you', 'lost', 'money', 'on', 'the', 'stock', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'so', '||comma||', 'what', 'am', 'i', 'looking', 'at', 'here', '||questionmark||', 'twenty', '||dash||', 'nine', 'hours', 'to', 'go', '||period||', 'well', '||comma||', 'at', 'least', 'i', 'got', 'plenty', 'of', 'time', 'to', 'find', 'out', 'the', 'name', 'of', 'that', 'perfume', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughing', '||rightparen||', 'have', 'something', 'else', '||period||', 'cmon', '||comma||', 'have', 'a', 'little', 'dessert', '||questionmark||', '||return||', '||return||', 'jerry', ':', 'im', 'good', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'get', 'something', '||exclammark||', 'its', 'all', 'taken', 'care', 'of', '||period||', '||return||', '||return||', 'elaine:', 'im', 'kinda', 'full', '||period||', '||return||', '||return||', 'george:', 'so', 'dont', 'finish', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'acidly', '||rightparen||', 'shes', 'full', '||period||', 'so', '||comma||', 'big', 'daddy', '||period||', 'im', 'just', 'curious', '||period||', 'how', 'much', 'did', 'you', 'clear', 'on', 'your', 'little', 'transaction', 'there', '||comma||', 'all', 'told', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'like', 'to', 'discuss', 'figures', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||comma||', 'what', '||questionmark||', 'eight', 'thousand', '||period||', 'its', 'a', 'hyundai', '||period||', 'get', 'out', 'of', 'here', '||period||', 'i', 'told', 'you', 'not', 'to', 'sell', '||period||', 'simons', 'made', 'money', '||comma||', 'wilkinson', 'cleaned', 'up', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'wilkinsons', 'out', 'of', 'the', 'hospital', 'now', '||questionmark||', '||return||', '||return||', 'george', ':', 'no', '||period||', 'youd', 'be', 'surprised', '||period||', 'you', 'dont', 'recover', 'that', 'quickly', 'from', 'a', 'nose', 'job', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'still', 'from', 'the', 'cats', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'just', 'have', 'a', 'cold', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'ever', 'happened', 'with', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'gave', 'him', 'an', 'ultimatum', '||period||', '||return||', '||return||', 'george:', 'he', 'chose', 'the', 'cats', '||questionmark||', '||return||', '||return||', 'elaine:', 'theyre', 'very', 'clean', 'animals', '||period||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'say', '||comma||', 'thats', 'pretty', 'sad', '||period||', 'losing', 'out', 'to', 'a', 'cat', '||period||', '||return||', '||return||', 'elaine:', 'almost', 'as', 'bad', 'as', 'losing', 'out', 'to', 'a', 'perfume', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'you', 'those', 'trips', 'were', 'relationship', 'killers', '||period||', 'too', 'bad', 'you', 'cant', 'get', 'your', 'buddy', 'superman', 'to', 'fly', 'around', 'the', 'earth', 'at', 'super', 'speed', 'and', 'reverse', 'time', '||period||', 'youd', 'get', 'all', 'the', 'money', 'back', '||comma||', 'you', 'could', 'have', 'avoided', 'the', 'whole', 'trip', 'to', 'vermont', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'superman', 'can', 'go', 'back', 'in', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'went', 'over', 'that', '||period||', '||return||', '||return||', 'george:', 'pst', '||period||', '||leftparen||', 'moves', 'in', 'close', 'with', 'elaine', 'and', 'jerry', '||rightparen||', 'wilkinsons', 'got', 'a', 'bite', 'on', 'a', 'new', 'one', '||period||', 'petramco', 'corp', '||period||', 'out', 'of', '||comma||', 'uh', 'springfield', '||period||', 'i', 'think', '||period||', 'theyre', 'about', 'to', 'introduce', 'some', 'sort', 'of', 'a', 'robot', 'butcher', '||period||', '||return||', '||return||', 'jerry:', 'a', 'robot', 'butcher', '||questionmark||', '||return||', '||return||', 'george:', 'shhhhh', '||period||', 'if', 'you', 'want', 'to', 'get', 'in', '||comma||', 'theres', 'very', 'little', 'time', '||period||', '||leftparen||', 'calling', 'to', 'the', 'waitress', '||rightparen||', 'sweetheart', '||period||', '||period||', '||leftparen||', 'waitress', 'approaches', 'and', 'tears', 'off', 'a', 'check', '||period||', 'george', 'stops', 'her', '||period||', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'that', 'ought', 'to', 'cover', 'it', '||period||', '||leftparen||', 'he', 'hands', 'her', 'some', 'money', '||semicolon||', 'she', 'turns', 'to', 'leave', '||semicolon||', 'george', 'stops', 'her', '||period||', '||rightparen||', 'just', 'a', 'second', '||period||', 'just', 'a', '||period||', '||period||', '||period||', 'let', 'me', 'jus', '||dash||', 'peek', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'looks', 'at', 'the', 'check', '||comma||', 'then', 'takes', 'some', 'money', 'out', 'of', 'her', 'hand', '||period||', 'george', 'urges', 'jerry', 'and', 'elaine', 'to', 'eat', '||period||', '||rightparen||', 'come', 'on', '||comma||', 'come', 'on', '||comma||', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'im', 'not', 'an', 'investor', '||period||', 'people', 'always', 'tell', 'me', '||comma||', 'you', 'should', 'have', 'your', 'money', 'working', 'for', 'you', '||period||', 'ive', 'decided', 'ill', 'do', 'the', 'work', '||period||', 'im', 'gonna', 'let', 'the', 'money', 'relax', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'cause', 'you', 'send', 'your', 'money', 'out', 'there', 'working', 'for', 'you', 'a', 'lot', 'of', 'times', '||comma||', 'it', 'gets', 'fired', '||period||', 'you', 'go', 'back', 'there', '||comma||', 'what', 'happened', '||questionmark||', 'i', 'had', 'my', 'money', '||period||', 'it', 'was', 'here', '||comma||', 'it', 'was', 'working', 'for', 'me', '||period||', 'yeah', '||comma||', 'i', 'remember', 'your', 'money', '||period||', 'showing', 'up', 'late', '||period||', 'taking', 'time', 'off', '||period||', 'we', 'had', 'to', 'let', 'him', 'go', '||period||', '||return||', '||return||', 'jerry:', 'im', 'always', 'in', 'traffic', 'with', 'the', 'lane', 'expert', '||period||', 'you', 'know', 'this', 'type', 'of', 'person', '||questionmark||', 'constantly', 'reevaluating', 'their', 'lane', 'choice', '||period||', 'never', 'quite', 'sure', '||comma||', 'is', 'this', 'the', 'best', 'lane', 'for', 'me', '||questionmark||', 'for', 'my', 'life', '||questionmark||', 'theyre', 'always', 'a', 'little', 'bit', 'ahead', 'of', 'you', '||comma||', 'can', 'i', 'get', 'in', 'over', 'there', '||questionmark||', 'could', 'i', 'get', 'in', 'over', 'here', '||questionmark||', 'could', 'i', 'get', 'in', 'there', '||questionmark||', 'yeah', '||comma||', 'come', 'on', 'over', 'here', '||comma||', 'pal', '||period||', 'were', 'zoomin', 'over', 'here', '||period||', 'this', 'is', 'the', 'secret', 'lane', '||comma||', 'nobody', 'knows', 'about', 'it', '||period||', 'the', 'ultimate', '||comma||', 'i', 'think', 'the', 'ultimate', 'psychological', 'test', 'of', 'traffic', 'is', 'the', 'total', 'dead', 'stop', '||period||', 'not', 'even', 'rolling', '||period||', 'and', 'you', 'look', 'out', 'the', 'window', '||comma||', 'you', 'can', 'see', 'gum', 'clearly', '||period||', 'so', 'we', 'know', 'that', 'in', 'the', 'future', 'traffic', 'will', 'get', 'even', 'worse', 'than', 'that', '||period||', 'i', 'mean', '||comma||', 'what', 'will', 'happen', '||questionmark||', 'will', 'it', 'start', 'moving', 'backwords', '||comma||', 'i', 'wonder', '||questionmark||', 'i', 'mean', '||comma||', 'is', 'that', 'possible', '||questionmark||', 'that', 'someday', 'well', 'be', 'going', '||comma||', '||leftparen||', 'jerry', 'pretends', 'hes', 'driving', 'in', 'reverse', '||period||', '||rightparen||', 'boy', '||comma||', 'this', 'is', 'some', 'really', 'bad', 'traffic', 'now', '||comma||', 'boy', '||period||', 'this', '||comma||', 'is', 'really', 'bad', '||period||', 'im', 'gonna', 'try', 'to', 'get', 'off', 'and', 'get', 'back', 'on', 'going', 'the', 'other', 'way', '||period||', '||return||', '||return||', 'george:', 'she', 'cant', 'kill', 'me', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'george:', 'people', 'break', 'up', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'everyday', '||period||', '||return||', '||return||', 'george:', 'it', 'just', 'didnt', 'work', 'out', '||period||', 'what', 'can', 'i', 'do', '||questionmark||', 'i', 'wanted', 'to', 'love', 'her', '||period||', 'i', 'tried', 'to', 'love', 'her', '||period||', 'i', 'couldnt', '||period||', '||return||', '||return||', 'jerry:', 'you', 'tried', '||period||', '||return||', '||return||', 'george:', 'i', 'kept', 'looking', 'at', 'her', 'face', '||period||', 'id', 'go', '||comma||', 'cmon', '||comma||', 'love', 'her', '||period||', 'love', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'tell', 'her', 'you', 'loved', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'had', 'no', 'choice', '||period||', 'she', 'squeezed', 'it', 'out', 'of', 'me', '||exclammark||', 'shed', 'tell', 'me', 'she', 'loved', 'me', '||period||', 'all', 'right', '||comma||', 'at', 'first', '||comma||', 'i', 'just', 'look', 'at', 'her', '||period||', 'id', 'go', '||comma||', 'oh', '||comma||', 'really', '||questionmark||', 'or', 'uh', '||comma||', 'boy', '||comma||', 'thats', '||comma||', 'thats', 'something', '||period||', 'but', '||comma||', 'eventually', 'you', 'have', 'to', 'come', 'back', 'with', '||comma||', 'well', '||comma||', 'i', 'love', 'you', '||period||', 'you', 'know', '||comma||', 'you', 'can', 'only', 'hold', 'out', 'for', 'so', 'long', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'a', 'human', 'being', '||period||', '||return||', '||return||', 'george:', 'and', 'i', 'didnt', 'even', 'ask', 'her', 'out', '||period||', 'she', 'asked', 'me', 'out', 'first', '||period||', 'she', 'called', 'me', 'up', '||period||', 'what', 'was', 'i', 'supposed', 'to', 'do', '||questionmark||', 'say', 'no', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', 'i', 'cant', 'do', 'that', 'to', 'someone', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'too', 'nice', 'a', 'guy', '||period||', '||return||', '||return||', 'george:', 'i', 'am', '||period||', 'im', 'a', 'nice', 'guy', '||period||', 'and', 'she', 'seduced', 'me', '||exclammark||', 'we', 'were', 'in', 'my', 'apartment', '||comma||', 'im', 'sitting', 'on', 'the', 'couch', '||comma||', 'shes', 'on', 'the', 'chair', '||period||', 'i', 'get', 'up', 'to', 'go', 'to', 'the', 'bathroom', '||comma||', 'i', 'come', 'back', '||comma||', 'shes', 'on', 'the', 'couch', '||period||', 'what', 'am', 'i', 'supposed', 'to', 'do', '||questionmark||', 'not', 'do', 'anything', '||questionmark||', 'i', 'couldnt', 'do', 'that', '||period||', 'i', 'wouldve', 'insulted', 'her', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'flesh', 'and', 'blood', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'nothing', 'to', 'do', 'wtih', 'any', 'of', 'this', '||exclammark||', 'i', 'met', 'all', 'her', 'friends', '||comma||', 'i', 'didnt', 'want', 'to', 'meet', 'them', '||period||', 'i', 'kept', 'trying', 'to', 'avoid', 'it', '||period||', 'i', 'knew', 'it', 'would', 'only', 'get', 'me', 'in', 'deeper', '||period||', 'but', 'they', 'were', 'everywhere', '||exclammark||', 'they', 'kept', 'popping', 'up', 'all', 'over', 'the', 'place', '||period||', 'this', 'is', 'nancy', '||comma||', 'this', 'is', 'susan', '||comma||', 'this', 'is', 'amy', '||comma||', 'this', 'is', 'my', 'cousin', '||comma||', 'this', 'is', 'my', 'brother', '||comma||', 'this', 'is', 'my', 'father', '||period||', '||period||', '||period||', 'its', 'like', 'im', 'in', 'quicksand', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'when', 'i', 'met', 'her', '||period||', '||return||', '||return||', 'george:', 'my', 'back', 'is', 'killing', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'go', 'to', 'my', 'chiropractor', '||comma||', 'hes', 'the', 'best', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'everybodys', 'guy', 'is', 'the', 'best', '||period||', '||return||', '||return||', 'jerry:', 'im', 'gonna', 'make', 'an', 'appointment', 'for', 'you', '||period||', 'well', 'go', 'together', '||period||', '||return||', '||return||', 'george:', 'please', '||period||', 'they', 'dont', 'do', 'anything', '||period||', 'look', '||comma||', 'do', 'i', 'have', 'to', 'break', 'up', 'with', 'her', 'in', 'person', '||questionmark||', 'cant', 'i', 'do', 'it', 'over', 'the', 'phone', '||questionmark||', 'i', '||dash||', 'i', 'have', 'no', 'stomach', 'for', 'these', 'things', '||period||', '||return||', '||return||', 'jerry:', 'you', 'should', 'just', 'do', 'it', 'like', 'a', 'band', '||dash||', 'aid', '||period||', 'one', 'motion', '||exclammark||', 'right', 'off', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'letting', 'you', 'in', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'no', '||period||', 'no', '||period||', 'i', 'dont', 'want', 'to', 'sit', 'in', 'the', 'back', '||period||', 'ill', 'be', 'left', 'out', 'of', 'the', 'conversation', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'wont', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'i', 'will', '||comma||', 'george', '||period||', 'ill', 'have', 'to', 'stick', 'my', 'chin', 'on', 'top', 'of', 'the', 'seat', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'why', 'cant', 'you', 'sit', 'in', 'the', 'middle', '||questionmark||', '||return||', '||return||', 'george:', 'please', '||comma||', 'it', 'doesnt', 'look', 'good', '||period||', 'boy', '||comma||', 'boy', '||comma||', 'girl', '||period||', '||return||', '||return||', 'elaine:', 'youre', 'afraid', 'to', 'sit', 'next', 'to', 'a', 'man', '||period||', 'youre', 'a', 'little', 'homophobic', '||comma||', 'arent', 'ya', '||questionmark||', '||return||', '||return||', 'george:', 'is', 'it', 'that', 'obvious', '||questionmark||', '||return||', '||return||', 'elaine:', 'hello', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'get', 'a', 'haircut', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'shower', '||period||', 'so', '||comma||', 'where', 'are', 'we', 'eating', '||questionmark||', '||return||', '||return||', 'elaine:', 'tell', 'me', 'if', 'you', 'think', 'this', 'is', 'strange', '||period||', 'theres', 'this', 'guy', 'who', 'lives', 'in', 'my', 'building', '||comma||', 'who', 'i', 'was', 'introduced', 'to', 'a', 'couple', 'of', 'years', 'ago', 'by', 'a', 'friend', '||period||', 'hes', 'a', 'uh', 'teacher', '||comma||', 'or', 'something', '||period||', 'anyway', '||comma||', 'after', 'we', 'met', '||comma||', 'whenever', 'wed', 'run', 'into', 'each', 'other', 'on', 'the', 'street', '||comma||', 'or', 'in', 'the', 'lobby', '||comma||', 'or', 'whatever', '||comma||', 'we', 'would', 'stop', 'and', 'we', 'would', 'chat', 'a', 'little', '||period||', 'nothing', 'much', '||period||', 'little', 'pleasantries', '||period||', 'hes', 'a', 'nice', 'guy', '||comma||', 'hes', 'got', 'a', 'family', '||period||', 'then', 'after', 'a', 'while', '||comma||', 'i', 'noticed', 'there', 'was', 'not', 'more', 'stopping', '||period||', 'just', 'saying', 'hello', 'and', 'continuing', 'on', 'our', 'way', '||period||', 'and', 'then', 'the', 'verbal', 'hellos', 'stopped', '||comma||', 'and', 'we', 'just', 'went', 'into', 'these', 'little', 'sort', 'of', 'nods', 'of', 'recognition', '||period||', 'so', '||comma||', 'fine', '||period||', 'i', 'figure', '||comma||', 'thats', 'where', 'this', 'relationship', 'is', 'finally', 'gonna', 'settle', 'polite', 'nodding', '||period||', 'then', 'one', 'day', '||comma||', 'he', 'doesnt', 'nod', '||period||', 'like', 'i', 'dont', 'exist', '||questionmark||', '||exclammark||', 'he', 'went', 'from', 'nods', 'to', 'nothing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', '||semicolon||', 'imitating', 'tony', 'bennett', '||rightparen||', 'you', 'know', '||comma||', 'id', 'go', 'from', 'nods', 'to', 'nothing', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'and', 'now', '||comma||', 'theres', 'this', 'intense', 'animosity', 'whenever', 'we', 'pass', '||period||', 'i', 'mean', '||comma||', 'its', 'like', 'we', 'really', 'hate', 'each', 'other', '||period||', 'its', 'based', 'on', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'a', 'relationship', 'is', 'an', 'organism', '||period||', 'you', 'created', 'this', 'thing', 'and', 'then', 'you', 'starved', 'it', 'so', 'it', 'turned', 'against', 'you', '||period||', 'same', 'thing', 'happened', 'in', 'the', 'blob', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'you', 'absolutely', 'have', 'to', 'say', 'something', 'to', 'this', 'guy', '||period||', 'confront', 'him', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'you', 'would', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'if', 'i', 'was', 'a', 'different', 'person', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', '||period||', 'hello', '||period||', 'is', 'glen', 'there', '||questionmark||', '||period||', '||period||', '||period||', 'im', 'sorry', '||period||', 'is', 'this', '805', '||dash||', '555', '||dash||', '3234', '||questionmark||', '||period||', '||period||', '||period||', 'yes', '||comma||', 'i', 'know', 'i', 'have', 'the', 'wrong', 'number', '||comma||', 'but', 'i', 'just', 'want', 'to', 'know', 'if', 'i', 'dialed', 'wrong', 'or', 'if', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'intercom', '||rightparen||', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'oh', '||comma||', 'its', 'you', 'again', '||period||', 'see', '||comma||', 'now', 'if', 'you', 'had', 'answered', 'me', '||comma||', 'i', 'wouldnt', 'have', 'had', 'to', 'do', 'this', '||period||', 'now', 'thats', 'two', 'long', 'distance', 'calls', 'i', 'made', 'to', 'you', 'why', 'cant', 'you', '||period||', '||period||', '||period||', '||leftparen||', 'the', 'guy', 'hangs', 'up', 'on', 'jerry', 'again', '||semicolon||', 'to', 'nobody', '||rightparen||', 'why', '||questionmark||', 'why', 'do', 'they', 'just', 'hang', 'up', 'like', 'that', '||questionmark||', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'kramer:', 'taste', 'this', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'just', 'had', 'a', 'sandwich', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'taste', 'it', '||period||', 'taste', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'want', 'cantaloupe', 'now', '||period||', '||return||', '||return||', 'kramer:', 'youve', 'never', 'had', 'cantaloupe', 'like', 'this', 'before', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'only', 'eat', 'cantaloupe', 'at', 'certain', 'times', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'jerry', '||period||', 'this', 'is', 'great', 'cantaloupe', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'all', 'right', '||exclammark||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'huh', '||period||', 'its', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'its', 'very', 'good', '||period||', '||return||', '||return||', 'kramer:', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'it', 'at', 'joes', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'kramer:', 'forty', '||dash||', 'nine', 'cents', 'a', 'pound', '||period||', 'thats', 'practically', 'half', 'than', 'what', 'youre', 'paying', 'at', 'the', 'supermarket', '||period||', 'i', 'dont', 'know', 'why', 'you', 'dont', 'go', 'to', 'joes', '||period||', '||return||', '||return||', 'jerry:', 'its', 'too', 'far', '||period||', '||return||', '||return||', 'kramer:', 'its', 'three', 'blocks', 'further', '||period||', 'you', 'can', 'use', 'my', 'shopping', 'cart', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'im', 'not', 'pulling', 'a', 'shopping', 'cart', '||period||', 'what', '||comma||', 'am', 'i', 'suppose', 'to', 'wear', 'a', 'kerchief', '||questionmark||', 'put', 'stockings', 'on', 'and', 'roll', 'em', 'down', 'below', 'my', 'knee', '||questionmark||', '||return||', '||return||', 'kramer:', 'see', '||comma||', 'the', 'other', 'thing', 'is', '||comma||', 'if', 'you', 'dont', 'like', 'anything', '||comma||', 'he', 'takes', 'it', 'right', 'back', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'return', 'fruit', '||period||', 'fruit', 'is', 'a', 'gamble', '||period||', 'i', 'know', 'that', 'going', 'in', '||period||', '||return||', '||return||', 'george:', 'im', 'outta', 'there', '||period||', 'i', 'did', 'it', '||exclammark||', 'its', 'over', '||period||', '||return||', '||return||', 'jerry:', 'you', 'did', 'it', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'her', '||period||', 'in', 'the', 'kitchen', 'which', 'was', 'risky', 'cause', 'its', 'near', 'all', 'the', 'knives', '||period||', 'i', 'started', 'with', 'the', 'word', 'listen', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'said', '||comma||', 'listen', 'marlene', '||comma||', 'and', 'then', 'the', 'next', 'thing', 'i', 'know', '||comma||', 'im', 'in', 'the', 'middle', 'of', 'it', '||period||', 'and', 'theres', 'this', 'voice', 'inside', 'of', 'me', 'going', '||comma||', 'youre', 'doing', 'it', '||exclammark||', 'youre', 'doing', 'it', '||exclammark||', 'and', 'then', 'she', 'started', 'to', 'cry', '||comma||', 'and', 'i', 'weakened', 'a', 'bit', '||period||', 'i', 'almost', 'relented', '||comma||', 'but', 'the', 'voice', '||comma||', 'jerry', '||comma||', 'the', 'voice', 'said', '||comma||', 'keep', 'going', '||comma||', 'keep', 'going', '||period||', 'youre', 'almost', 'out', '||exclammark||', 'its', 'like', 'i', 'was', 'making', 'a', 'prison', 'break', '||comma||', 'you', 'know', '||comma||', 'and', 'im', 'heading', 'for', 'the', 'wall', '||comma||', 'and', 'i', 'trip', 'and', 'i', 'twist', 'my', 'ankle', '||comma||', 'and', 'they', 'throw', 'the', 'light', 'on', 'you', '||comma||', 'you', 'know', '||period||', 'so', '||comma||', 'somehow', 'i', 'get', 'though', 'the', 'crying', 'and', 'i', 'keep', 'running', '||period||', 'then', 'the', 'cursing', 'started', '||period||', 'shes', 'firing', 'at', 'me', 'from', 'the', 'guard', 'tower', '||period||', 'son', 'of', 'a', 'bang', '||exclammark||', 'son', 'of', 'a', 'boom', '||exclammark||', 'i', 'get', 'to', 'the', 'top', 'of', 'the', 'wall', 'the', 'front', 'door', '||period||', 'i', 'opened', 'it', 'up', '||comma||', 'im', 'one', 'foot', 'away', '||comma||', 'i', 'took', 'one', 'last', 'look', 'around', 'the', 'penitentiary', '||comma||', 'and', 'i', 'jumped', '||exclammark||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'its', 'never', 'as', 'bad', 'as', 'you', 'imagine', '||period||', '||return||', '||return||', 'kramer:', 'i', 'liked', 'marlene', '||period||', 'whats', 'her', 'number', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'no', '||comma||', 'i', '||comma||', 'i', 'dont', 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'could', 'you', 'stop', 'that', 'smacking', '||questionmark||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'i', 'want', 'you', 'to', 'taste', 'this', 'cantaloupe', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'its', 'the', 'best', 'cantaloupe', 'i', 'ever', 'had', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'really', '||period||', 'no', '||comma||', 'no', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'tell', 'him', 'how', 'good', 'this', 'cantaloupe', 'is', '||period||', '||return||', '||return||', 'jerry:', 'its', 'very', 'good', 'cantaloupe', '||period||', '||leftparen||', 'kramer', 'leaves', '||semicolon||', 'to', 'george', '||rightparen||', 'so', 'thats', 'it', '||questionmark||', 'youre', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'except', 'for', 'one', 'small', 'problem', '||period||', 'hah', '||comma||', 'i', 'left', 'some', 'books', 'in', 'her', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'go', 'get', 'them', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', '||comma||', 'i', 'cant', 'go', 'back', 'there', '||period||', 'jerry', '||comma||', 'its', 'so', 'awkward', 'and', '||comma||', 'you', 'know', '||comma||', 'it', 'could', 'be', 'dangerous', 'sexually', '||period||', 'something', 'could', 'happen', '||comma||', 'id', 'be', 'right', 'back', 'where', 'i', 'started', 'from', '||period||', '||return||', '||return||', 'jerry:', 'so', 'forget', 'about', 'the', 'books', '||period||', 'did', 'you', 'read', 'them', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'need', 'them', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'theyre', 'books', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', 'obsession', 'people', 'have', 'with', 'books', '||questionmark||', 'they', 'put', 'them', 'in', 'their', 'houses', 'like', 'theyre', 'trophies', '||period||', 'what', 'do', 'you', 'need', 'it', 'for', 'after', 'you', 'read', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'theyre', 'my', 'books', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'me', 'to', 'get', 'the', 'books', '||questionmark||', 'is', 'that', 'it', '||questionmark||', '||return||', '||return||', 'marlene:', '||period||', '||period||', '||period||', 'so', '||comma||', 'it', 'mustve', 'been', 'ninety', '||dash||', 'five', 'degrees', 'that', 'night', '||comma||', 'and', 'everyones', 'just', 'standing', 'around', 'the', 'pool', 'with', 'little', 'drinks', 'in', 'their', 'hands', '||period||', 'i', 'was', 'wearing', 'my', 'old', 'jeans', 'and', 't', '||dash||', 'shirt', '||period||', 'and', 'i', 'dont', 'know', '||comma||', 'i', 'was', 'just', 'in', 'one', 'of', 'those', 'moods', '||period||', 'so', 'i', 'said', 'to', 'myself', '||comma||', 'marlene', '||comma||', 'just', 'do', 'it', '||period||', 'and', 'i', 'jumped', 'in', '||period||', 'and', 'as', 'im', 'getting', 'out', '||comma||', 'i', 'feel', 'all', 'these', 'eyes', 'on', 'me', '||comma||', 'and', 'i', 'look', 'up', 'and', 'everyone', 'is', 'just', 'staring', 'at', 'me', '||period||', '||return||', '||return||', 'jerry:', 'so', 'whatd', 'you', 'do', '||questionmark||', '||return||', '||return||', 'marlene:', 'well', '||comma||', 'nothing', '||period||', 'its', 'no', 'skin', 'off', 'my', 'hide', 'if', 'people', 'like', 'to', 'look', '||period||', 'i', 'just', 'didnt', 'see', 'what', 'the', 'big', 'attraction', 'was', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'have', 'a', 'general', 'idea', 'what', 'it', 'was', '||period||', 'i', 'could', 'take', 'a', 'guess', '||period||', '||return||', '||return||', 'marlene:', 'hey', '||comma||', 'you', 'know', '||comma||', 'jerry', '||comma||', 'just', 'because', 'george', 'and', 'i', 'dont', 'see', 'each', 'other', 'anymore', '||comma||', 'it', 'doesnt', 'mean', 'we', 'shouldnt', 'stay', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'marlene:', 'good', 'enough', '||period||', 'im', 'really', 'glad', 'we', 'got', 'that', 'settled', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', 'how', 'this', 'happened', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'its', 'not', 'my', 'fault', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', 'its', 'not', 'your', 'fault', '||period||', 'books', '||comma||', 'books', '||comma||', 'i', 'need', 'my', 'books', '||period||', 'have', 'you', 're', '||dash||', 'read', 'those', 'books', 'yet', '||comma||', 'by', 'the', 'way', '||questionmark||', 'you', 'know', 'the', 'great', 'thing', '||questionmark||', 'when', 'you', 'read', 'moby', 'dick', 'the', 'second', 'time', '||comma||', 'ahab', 'and', 'the', 'whale', 'become', 'good', 'friends', '||period||', 'you', 'know', '||comma||', 'its', 'not', 'like', 'marlenes', 'a', 'bad', 'person', 'or', 'anything', '||comma||', 'but', '||comma||', 'my', 'god', '||exclammark||', 'i', 'mean', '||comma||', 'weve', 'had', 'like', 'three', 'lunches', 'and', 'a', 'movie', '||comma||', 'and', 'she', 'never', 'stops', 'calling', '||period||', '||leftparen||', 'george', 'nods', '||period||', '||rightparen||', 'and', 'its', 'these', 'meaningless', '||comma||', 'purposeless', '||comma||', 'blather', 'calls', '||period||', 'she', 'never', 'asks', 'if', 'im', 'busy', 'or', 'anything', '||period||', 'i', 'just', 'pick', 'up', 'the', 'phone', '||comma||', 'and', 'shes', 'in', 'the', 'middle', 'of', 'a', 'sentence', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'standard', '||period||', 'has', 'she', 'left', 'you', 'one', 'of', 'those', 'messages', 'where', 'she', 'uses', 'up', 'the', 'whole', 'machine', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disgusted', '||rightparen||', 'ohh', '||exclammark||', 'you', 'know', '||comma||', 'and', 'sometimes', 'shell', 'go', '||comma||', '||leftparen||', 'imitates', 'marlene', '||rightparen||', 'hello', '||comma||', 'jerry', '||questionmark||', 'and', 'ill', 'go', '||comma||', 'oh', '||comma||', 'hi', 'marlene', '||period||', 'and', 'then', 'its', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', '&', 'george:', 'i', 'dunno', 'sometimes', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', 'trying', 'to', 'get', 'off', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'more', 'disgusted', '||rightparen||', 'ohhhh', '||exclammark||', 'you', 'cant', '||exclammark||', 'its', 'impossible', '||exclammark||', 'theres', 'no', 'break', 'in', 'the', 'conversation', 'where', 'you', 'can', 'go', '||comma||', 'all', 'right', 'then', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'it', 'just', 'goes', 'on', 'and', 'on', 'and', 'on', 'without', 'a', 'break', 'in', 'the', 'wall', '||period||', 'i', 'mean', '||comma||', 'i', 'gotta', 'put', 'a', 'stop', 'to', 'this', '||period||', '||return||', '||return||', 'george:', 'just', 'do', 'it', 'like', 'a', 'band', '||dash||', 'aid', '||period||', 'one', 'motion', '||period||', 'right', 'off', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', 'she', 'is', 'sexy', 'though', '||period||', 'dont', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'yes', '||comma||', 'she', 'is', '||period||', '||return||', '||return||', 'receptionist:', 'mr', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'receptionist:', 'the', 'doctor', 'will', 'see', 'you', 'now', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||comma||', 'sarcastically', '||rightparen||', 'yeah', '||comma||', 'doctor', '||period||', 'im', 'going', 'to', 'have', 'to', 'wait', 'in', 'that', 'little', 'room', 'all', 'by', 'myself', '||comma||', 'arent', 'i', '||questionmark||', '||leftparen||', 'he', 'picks', 'up', 'a', 'crossword', 'puzzle', '||period||', '||rightparen||', 'i', 'better', 'take', 'this', '||period||', 'i', 'hate', 'the', 'little', 'room', '||period||', '||leftparen||', 'george', 'walks', 'into', 'the', 'hallway', 'that', 'leads', 'to', 'the', 'doctors', 'office', '||period||', '||rightparen||', 'oh', '||comma||', 'hello', '||comma||', 'doctor', '||period||', '||return||', '||return||', 'jerry:', 'the', 'waiting', 'room', '||period||', 'i', 'hate', 'when', 'they', 'make', 'you', 'wait', 'in', 'the', 'room', '||period||', 'cause', 'it', 'says', 'waiting', 'room', '||period||', 'theres', 'no', 'chance', 'of', 'not', 'waiting', '||period||', 'cause', 'they', 'call', 'it', 'the', 'waiting', 'room', '||comma||', 'theyre', 'gonna', 'use', 'it', '||period||', 'theyve', 'got', 'it', '||period||', 'its', 'all', 'set', 'up', 'for', 'you', 'to', 'wait', '||period||', 'and', 'you', 'sit', 'there', '||comma||', 'you', 'know', '||comma||', 'and', 'youve', 'got', 'your', 'little', 'magazine', '||period||', 'you', 'pretend', 'youre', 'reading', 'it', '||comma||', 'but', 'youre', 'really', 'looking', 'at', 'the', 'other', 'people', '||period||', 'you', 'know', '||comma||', 'youre', 'thinking', 'about', 'about', 'them', '||period||', 'things', 'like', '||comma||', 'i', 'wonder', 'what', 'hes', 'got', '||period||', 'as', 'soon', 'as', 'she', 'goes', '||comma||', 'im', 'getting', 'her', 'magazine', '||period||', 'and', 'then', '||comma||', 'they', 'finally', 'call', 'you', 'and', 'its', 'a', 'very', 'exciting', 'moment', '||period||', 'they', 'finally', 'call', 'you', '||comma||', 'and', 'you', 'stand', 'up', 'and', 'you', 'kinda', 'look', 'around', 'at', 'the', 'other', 'people', 'in', 'the', 'room', '||period||', 'well', '||comma||', 'i', 'guess', 'ive', 'been', 'chosen', '||period||', 'ill', 'see', 'you', 'all', 'later', '||period||', 'you', 'know', '||comma||', 'so', 'you', 'think', 'youre', 'going', 'to', 'see', 'the', 'doctor', '||comma||', 'but', 'youre', 'not', '||comma||', 'are', 'you', '||questionmark||', 'no', '||period||', 'youre', 'going', 'into', 'the', 'next', 'waiting', 'room', 'the', 'littler', 'waiting', 'room', '||period||', 'but', 'if', 'they', 'are', '||comma||', 'you', 'know', '||comma||', 'doing', 'some', 'sort', 'of', 'medical', 'thing', 'to', 'you', '||comma||', 'you', 'want', 'to', 'be', 'in', 'the', 'smallest', 'room', 'that', 'they', 'have', '||comma||', 'i', 'think', '||period||', 'you', 'dont', 'wnat', 'to', 'be', 'in', 'the', 'largest', 'room', 'that', 'they', 'have', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'you', 'ever', 'see', 'these', 'operating', 'theaters', '||comma||', 'that', 'they', 'have', '||comma||', 'with', 'like', '||comma||', 'stadium', 'seating', '||questionmark||', 'you', 'dont', 'want', 'them', 'doing', 'anything', 'to', 'you', 'that', 'makes', 'other', 'doctors', 'go', '||comma||', 'i', 'have', 'to', 'see', 'this', '||exclammark||', 'are', 'you', 'kidding', '||questionmark||', 'are', 'they', 'really', 'gonna', 'do', 'that', 'to', 'him', '||questionmark||', 'are', 'there', 'seats', '||questionmark||', 'can', 'we', 'get', 'in', '||questionmark||', 'do', 'they', 'scalp', 'tickets', 'to', 'these', 'things', '||questionmark||', 'i', 'got', 'two', 'for', 'the', 'winslow', 'tumor', '||comma||', 'i', 'got', 'two', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'in', 'there', 'for', 'two', 'minutes', '||period||', 'he', 'didnt', 'do', 'anything', '||period||', 'touch', 'this', '||comma||', 'feel', 'that', 'seventy', '||dash||', 'five', 'bucks', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'its', 'a', 'first', 'visit', '||period||', '||return||', '||return||', 'george:', 'whats', 'seventy', '||dash||', 'five', 'bucks', '||questionmark||', '||exclammark||', 'what', '||comma||', 'am', 'i', 'seeing', 'sinatra', 'in', 'there', '||questionmark||', '||exclammark||', 'am', 'i', 'being', 'entertained', '||questionmark||', 'i', 'dont', 'understand', 'this', '||period||', 'im', 'only', 'paying', 'half', '||period||', '||return||', '||return||', 'jerry:', 'you', 'cant', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'hes', 'a', 'doctor', '||period||', 'you', 'gotta', 'pay', 'what', 'he', 'says', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', 'i', 'pay', 'what', 'i', 'say', '||period||', '||return||', '||return||', 'marlene:', 'are', 'you', 'feeling', 'weird', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'im', 'fine', '||period||', '||return||', '||return||', 'marlene:', 'nothing', 'really', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'marlene:', 'we', 'just', 'kissed', 'a', 'little', '||period||', 'people', 'kiss', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'marlene:', 'well', '||period||', '||period||', '||period||', 'night', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'belated', '||rightparen||', 'good', 'night', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'it', '||exclammark||', 'this', 'time', '||comma||', 'i', 'got', 'it', '||exclammark||', '||return||', '||return||', 'jerry', ':', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'hips', '||exclammark||', 'see', '||comma||', 'its', 'all', 'hips', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'kramer:', 'you', 'gotta', 'come', 'through', 'with', 'the', 'hips', 'first', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'out', 'there', '||period||', '||return||', '||return||', 'kramer:', 'joes', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'supermarket', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'is', 'it', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'its', 'uh', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'taste', 'it', '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', 'that', 'stinks', '||period||', 'you', 'cant', 'eat', 'that', '||period||', 'you', 'should', 'take', 'that', 'back', '||period||', '||return||', '||return||', 'jerry:', 'im', 'not', 'taking', 'it', 'back', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'ill', 'take', 'it', 'back', '||period||', 'im', 'going', 'by', 'there', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'care', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'should', 'care', '||period||', 'cantaloupe', 'like', 'this', 'should', 'be', 'taken', 'out', 'of', 'circulation', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'take', 'it', 'back', '||period||', '||return||', '||return||', 'jerry\x92s', 'message:', 'leave', 'a', 'message', '||comma||', 'ill', 'call', 'you', 'back', '||period||', '||return||', '||return||', 'marlene:', '||leftparen||', 'from', 'the', 'phone', '||rightparen||', 'jerry', '||comma||', 'have', 'you', 'ever', 'taken', 'a', 'bath', 'in', 'the', 'dark', '||questionmark||', 'if', 'im', 'not', 'talking', 'into', 'the', 'soap', 'right', 'now', '||comma||', 'call', 'me', 'back', '||period||', '||return||', '||return||', 'kramer:', 'well', '||questionmark||', '||return||', '||return||', 'jerry:', 'marlene', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiles', '||rightparen||', 'oh', '||period||', 'oh', '||comma||', 'marlene', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'took', 'her', 'home', 'one', 'night', 'we', 'kinda', 'started', 'up', 'a', 'little', 'bit', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'you', 'were', 'trying', 'to', 'get', 'rid', 'of', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', '||period||', 'but', '||comma||', 'shes', 'got', 'me', '||comma||', 'like', '||comma||', 'hypnotized', '||period||', '||return||', '||return||', 'kramer:', 'does', 'george', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'hed', 'go', 'nuts', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'no', 'kidding', '||period||', '||return||', '||return||', 'jerry:', 'i', 'feel', 'terrible', '||period||', '||leftparen||', 'kramer', 'smiling', '||rightparen||', 'i', 'mean', '||comma||', 'ive', 'seen', 'her', 'a', 'couple', 'of', 'times', 'since', 'then', '||comma||', 'and', 'i', 'know', 'i', 'cant', 'go', 'any', 'further', '||comma||', 'but', '||period||', '||period||', '||period||', 'shes', 'just', 'got', 'this', 'like', '||comma||', 'psychosexual', 'hold', 'over', 'me', '||period||', 'i', 'just', 'want', 'her', '||comma||', 'i', 'cant', 'breathe', '||period||', 'its', 'like', 'a', 'drug', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', 'psychosexual', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', 'how', 'im', 'going', 'to', 'tell', 'him', '||period||', '||return||', '||return||', 'kramer:', 'man', '||comma||', 'i', 'dont', 'understand', 'people', '||period||', 'i', 'mean', '||comma||', 'why', 'would', 'george', 'want', 'to', 'deprive', 'you', 'of', 'pleasure', '||questionmark||', 'is', 'it', 'just', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'its', 'partially', 'you', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'youre', 'his', 'friend', '||period||', 'better', 'that', 'she', 'should', 'sleep', 'with', 'someone', 'else', '||questionmark||', 'some', 'jerk', 'that', 'he', 'doesnt', 'even', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'he', 'cant', 'kill', 'me', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'youre', 'a', 'human', 'being', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'she', 'called', 'me', '||period||', 'i', 'havent', 'called', 'her', '||period||', 'she', 'started', 'it', '||period||', '||return||', '||return||', 'kramer:', 'youre', 'flesh', 'and', 'blood', '||period||', '||return||', '||return||', 'jerry:', 'im', 'a', 'nice', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'excited', '||rightparen||', 'oh', '||comma||', 'my', 'little', 'airplane', 'lamp', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'you', 'have', 'the', 'slowest', 'elevator', 'in', 'the', 'entire', 'city', '||period||', 'thats', 'hard', 'to', 'get', 'used', 'to', 'when', 'youre', 'in', 'so', 'many', 'other', 'fast', 'ones', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'the', 'apartment', 'elevators', 'are', 'always', 'slower', 'than', 'the', 'offices', '||comma||', 'because', 'you', 'dont', 'have', 'to', 'be', 'home', 'on', 'time', '||period||', '||return||', '||return||', 'elaine:', 'unless', 'youre', 'married', 'to', 'a', 'dictator', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', 'because', 'they', 'would', 'be', 'very', 'demanding', 'people', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', 'exactly', '||period||', 'so', 'i', 'imagine', 'at', 'some', 'point', 'somebodys', 'going', 'to', 'offer', 'me', 'some', 'cantaloupe', '||questionmark||', '||return||', '||return||', 'kramer:', 'nope', '||period||', 'no', 'good', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', 'what', 'they', 'say', '||period||', 'lucky', 'in', 'love', '||comma||', 'unlucky', 'with', 'fruit', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'im', 'taking', 'this', 'back', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'i', 'had', 'what', 'you', 'might', 'call', 'a', 'little', 'encounter', 'this', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'that', 'guy', 'who', 'stopped', 'saying', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'you', 'talked', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', 'i', 'spotted', 'him', 'getting', 'his', 'mail', '||period||', 'and', 'at', 'first', '||comma||', 'i', 'was', 'just', 'going', 'to', 'walk', 'on', 'by', '||comma||', 'but', 'then', 'i', 'thought', '||comma||', 'no', 'no', 'no', '||period||', 'no', '||period||', 'do', 'not', 'be', 'afraid', 'of', 'this', 'man', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'i', 'walked', 'up', 'behind', 'him', 'and', 'i', 'tapped', 'him', 'on', 'the', 'shoulder', '||period||', 'and', 'i', 'said', '||comma||', 'hi', '||comma||', 'remember', 'me', '||questionmark||', 'and', 'he', 'furrows', 'his', 'brow', '||comma||', 'as', 'if', 'hes', 'really', 'trying', 'to', 'figure', 'it', 'out', '||period||', 'so', 'i', 'said', 'to', 'him', '||comma||', 'i', 'said', '||comma||', 'you', 'little', 'phony', '||period||', 'you', 'know', 'exactly', 'who', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'you', 'said', '||quotemark||', 'you', 'little', 'phony', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'did', '||period||', 'i', 'most', 'certainly', 'did', '||period||', 'and', 'he', 'said', '||comma||', 'he', 'goes', '||comma||', 'oh', '||comma||', 'yeah', '||period||', 'youre', 'jeanettes', 'friend', '||period||', 'we', 'did', 'meet', 'once', '||period||', 'and', 'i', 'said', '||comma||', 'well', '||comma||', 'how', 'do', 'you', 'go', 'from', 'that', 'to', 'totally', 'ignoring', 'a', 'person', 'when', 'they', 'walk', 'by', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'amazing', '||period||', '||return||', '||return||', 'elaine:', 'and', 'he', 'says', '||comma||', 'he', 'says', '||comma||', 'look', '||comma||', 'i', 'just', 'didnt', 'want', 'to', 'say', 'hello', 'anymore', '||comma||', 'all', 'right', '||questionmark||', 'and', 'i', 'said', '||comma||', 'fine', '||period||', 'fine', '||period||', 'i', 'didnt', 'want', 'to', 'say', 'hello', 'anymore', 'either', '||comma||', 'but', 'just', 'i', 'wanted', 'you', 'to', 'know', 'that', 'im', 'aware', 'of', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'are', 'the', 'queen', 'of', 'confrontation', '||period||', 'youre', 'my', 'new', 'hero', '||period||', 'in', 'fact', '||comma||', 'youve', 'inspired', 'me', '||period||', 'im', 'gonna', 'call', 'george', 'about', 'something', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', 'this', 'cantaloupe', 'stinks', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'considers', 'for', 'a', 'second', '||rightparen||', 'i', 'dont', 'care', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'kidding', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'dont', 'care', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'absolutely', '||period||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'care', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'not', 'care', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'but', 'i', 'dont', '||period||', 'im', 'actually', 'almost', 'happy', 'to', 'hear', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'youd', 'be', 'upset', '||period||', '||return||', '||return||', 'george:', 'i', 'guess', 'i', 'should', 'be', '||comma||', 'but', 'im', 'not', '||period||', '||return||', '||return||', 'jerry:', 'am', 'i', 'a', 'bad', 'person', '||questionmark||', 'did', 'i', 'do', 'something', 'terrible', '||questionmark||', '||return||', '||return||', 'george:', 'youre', 'a', 'fine', 'person', '||period||', 'youre', 'a', 'humanitarian', '||period||', 'shes', 'very', 'sexy', '||period||', '||return||', '||return||', 'jerry:', 'that', 'voice', '||period||', 'that', 'voice', '||period||', 'shes', 'driving', 'me', 'crazy', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'can', 'see', 'her', 'tonight', '||comma||', 'and', 'you', 'dont', 'care', '||questionmark||', '||return||', '||return||', 'george:', 'see', 'her', 'tonight', '||period||', 'see', 'her', 'tomorrow', '||period||', 'go', '||period||', 'knock', 'yourself', 'out', '||period||', 'shes', 'too', 'crazy', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'as', 'long', 'as', 'youre', 'okay', '||period||', 'because', 'i', 'cant', 'stop', 'thinking', 'about', 'her', '||period||', '||return||', '||return||', 'george:', 'im', 'okay', '||period||', 'im', 'fine', '||period||', 'im', 'wonderful', '||period||', 'i', 'never', 'felt', 'better', 'in', 'my', 'whole', 'life', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'and', 'ill', 'tell', 'you', 'what', '||period||', '||period||', '||period||', 'you', 'dont', 'have', 'to', 'pay', 'me', 'back', 'the', 'thirty', '||dash||', 'five', 'i', 'gave', 'to', 'the', 'chiropractor', 'for', 'the', 'rest', 'of', 'your', 'bill', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shocked', 'and', 'angry', '||rightparen||', 'you', 'paid', 'that', 'crook', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'had', 'to', '||period||', '||return||', '||return||', 'george:', 'he', 'didnt', 'do', 'anything', '||comma||', 'jerry', '||period||', 'its', 'a', 'scam', '||exclammark||', 'who', 'told', 'you', 'to', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'embarrassing', 'to', 'me', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'was', 'trying', 'to', 'make', 'a', 'point', '||period||', '||return||', '||return||', 'jerry:', 'why', 'dont', 'you', 'make', 'a', 'point', 'with', 'your', 'own', 'doctor', '||questionmark||', '||leftparen||', 'george', 'gulps', '||period||', '||rightparen||', 'whats', 'wrong', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'gasping', '||rightparen||', 'i', 'think', 'i', 'swallowed', 'a', 'fly', '||exclammark||', 'i', 'swallowed', 'a', 'fly', '||exclammark||', 'what', 'do', 'i', 'do', '||questionmark||', '||leftparen||', 'he', 'turns', 'to', 'a', 'coffee', 'shop', 'patron', 'at', 'the', 'counter', '||period||', '||rightparen||', 'what', 'can', 'happen', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'wanna', 'come', 'up', 'for', 'a', 'few', 'minutes', '||questionmark||', '||return||', '||return||', 'marlene:', 'im', 'sorry', '||comma||', 'jerry', '||period||', 'i', 'just', 'dont', 'think', 'this', 'is', 'gonna', 'work', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'i', 'thought', '||period||', '||period||', '||period||', '||return||', '||return||', 'marlene:', 'i', 'know', '||comma||', 'im', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'gee', '||comma||', 'i', 'just', 'didnt', 'expect', 'it', 'from', 'the', 'way', 'youve', 'been', 'acting', '||period||', '||return||', '||return||', 'marlene:', 'you', 'sure', 'you', 'want', 'to', 'talk', 'about', 'this', '||questionmark||', 'cause', 'i', 'sure', 'dont', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'i', 'want', 'to', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'marlene:', 'well', '||comma||', 'okay', '||period||', 'i', 'guess', 'things', 'changed', 'for', 'me', 'on', 'tuesday', 'night', '||period||', '||return||', '||return||', 'jerry:', 'tuesday', 'night', '||questionmark||', 'what', 'happened', 'tuesday', 'night', '||questionmark||', '||return||', '||return||', 'marlene:', 'i', 'saw', 'your', 'act', '||period||', '||return||', '||return||', 'jerry:', 'my', 'act', '||questionmark||', 'wha', '||dash||', 'what', 'does', 'that', 'have', 'to', 'do', 'with', 'anything', '||questionmark||', '||return||', '||return||', 'marlene:', 'well', '||comma||', 'to', 'be', 'honest', '||comma||', 'it', 'just', 'didnt', 'make', 'it', 'for', 'me', '||period||', 'its', 'just', 'so', 'much', 'fluff', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'believe', 'this', '||period||', 'so', 'what', 'are', 'you', 'saying', '||questionmark||', 'you', 'didnt', 'like', 'my', 'act', '||comma||', 'so', 'thats', 'it', '||questionmark||', '||return||', '||return||', 'marlene:', 'i', 'cant', 'be', 'with', 'someone', 'if', 'i', 'dont', 'respect', 'what', 'they', 'do', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'a', 'cashier', '||exclammark||', '||return||', '||return||', 'marlene:', 'look', '||comma||', 'jerry', '||comma||', 'its', 'just', "wasn't", 'my', 'kind', 'of', 'humor', '||period||', '||return||', '||return||', 'jerry:', 'you', 'cant', 'go', 'by', 'the', 'audience', 'that', 'night', '||period||', 'it', 'was', 'late', '||period||', 'they', 'were', 'terrible', '||period||', '||return||', '||return||', 'marlene:', 'i', 'heard', 'the', 'material', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'other', 'stuff', '||period||', 'y', '||dash||', 'you', 'should', 'come', 'see', 'me', 'on', 'the', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'women', 'need', 'to', 'like', 'the', 'job', 'of', 'the', 'guy', 'theyre', 'with', '||period||', 'if', 'they', 'dont', 'like', 'the', 'job', '||comma||', 'they', 'dont', 'like', 'the', 'guy', '||period||', 'men', 'know', 'this', '||period||', 'which', 'is', 'why', 'we', 'make', 'up', 'the', 'phony', '||comma||', 'bogus', 'names', 'for', 'the', 'jobs', 'that', 'we', 'have', '||period||', 'well', '||comma||', 'right', 'now', '||comma||', 'im', 'the', 'regional', 'management', 'supervisor', '||period||', 'im', 'in', 'development', '||comma||', 'research', '||comma||', 'consulting', '||period||', '||period||', '||period||', 'men', 'on', 'the', 'other', 'hand', 'if', 'they', 'are', 'physically', 'attracted', 'to', 'a', 'woman', 'are', 'not', 'that', 'concerned', 'with', 'her', 'job', '||period||', 'are', 'we', '||questionmark||', 'men', 'dont', 'really', 'care', '||period||', 'menll', 'just', 'go', '||comma||', 'really', '||questionmark||', 'slaughterhouse', '||questionmark||', 'is', 'that', 'where', 'you', 'work', '||questionmark||', 'that', 'sounds', 'interesting', '||period||', 'so', 'whaddaya', 'got', 'a', 'big', 'cleaver', 'there', '||questionmark||', 'youre', 'just', 'lopping', 'their', 'heads', 'off', '||questionmark||', 'that', 'sounds', 'great', '||exclammark||', 'listen', '||comma||', 'why', 'dont', 'you', 'shower', 'up', '||comma||', 'and', 'well', 'get', 'some', 'burgers', 'and', 'catch', 'a', 'movie', '||period||', '||return||', '||return||', 'jerry:', 'my', 'parents', 'live', 'in', 'florida', 'now', '||period||', 'they', 'moved', 'there', 'last', 'year', '||period||', 'they', 'didnt', 'want', 'to', 'move', 'to', 'florida', '||comma||', 'but', 'theyre', 'in', 'their', 'sixties', '||comma||', 'and', 'thats', 'the', 'law', '||period||', 'you', 'know', 'how', 'it', 'works', '||period||', 'they', 'got', 'the', 'leisure', 'police', '||period||', 'they', 'pull', 'up', 'in', 'front', 'of', 'the', 'old', 'peoples', 'house', 'with', 'a', 'golf', 'cart', '||comma||', 'jump', 'out', '||comma||', 'lets', 'go', 'pop', '||comma||', 'white', 'belt', '||comma||', 'white', 'pants', '||comma||', 'white', 'shoes', '||comma||', 'get', 'in', 'the', 'back', '||period||', 'drop', 'the', 'snow', 'shovel', 'right', 'there', '||period||', 'drop', 'it', '||exclammark||', 'i', 'am', 'not', 'much', 'for', 'the', 'family', 'gathering', '||period||', 'you', 'know', '||comma||', 'you', 'sit', 'there', '||comma||', 'and', 'the', 'conversations', 'so', 'boring', '||period||', 'its', 'so', 'dull', '||period||', 'and', 'you', 'start', 'to', 'fantasize', '||period||', 'you', 'know', '||comma||', 'you', 'think', '||comma||', 'what', 'if', 'i', 'just', 'got', 'up', 'and', 'jumped', 'out', 'that', 'window', '||questionmark||', 'what', 'would', 'it', 'be', 'like', '||questionmark||', 'just', 'crashed', 'right', 'through', 'the', 'glass', '||period||', 'you', 'know', '||period||', 'come', 'back', 'in', '||comma||', 'theres', 'broken', 'glass', '||comma||', 'everybodys', 'all', 'upset', '||period||', 'no', '||comma||', 'im', 'all', 'right', '||period||', 'i', 'was', 'just', 'a', 'little', 'bored', 'there', '||period||', 'and', 'uh', 'no', '||comma||', 'im', 'fine', '||period||', 'i', 'came', 'back', '||period||', 'i', 'wanted', 'to', 'hear', 'a', 'little', 'more', 'about', 'that', 'hummel', 'collection', '||comma||', 'aunt', 'rose', '||period||', 'lets', 'pick', 'it', 'up', 'right', 'there', '||period||', '||return||', '||return||', 'helen:', 'you', 'have', 'so', 'many', 'nice', 'jackets', '||period||', 'i', 'dont', 'know', 'why', 'you', 'had', 'to', 'bring', 'this', 'jacket', '||period||', 'who', 'wears', 'a', 'jacket', 'like', 'this', '||questionmark||', 'whats', 'wrong', 'with', 'that', 'nice', 'gray', 'one', '||questionmark||', 'you', 'have', 'beautiful', 'clothes', '||period||', 'they', 'sit', 'in', 'your', 'closet', '||period||', 'morty', '||comma||', 'you', 'cant', 'wear', 'this', '||exclammark||', '||return||', '||return||', 'morty:', 'are', 'you', 'getting', 'that', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'thought', 'you', 'were', 'getting', 'it', '||period||', '||return||', '||return||', 'morty:', 'should', 'i', 'pick', 'up', '||questionmark||', '||return||', '||return||', 'helen:', 'you', 'want', 'me', 'to', 'get', 'that', '||questionmark||', '||return||', '||return||', 'morty:', 'ill', 'get', 'it', '||exclammark||', '||return||', '||return||', 'helen:', 'ill', 'get', 'it', '||exclammark||', '||return||', '||return||', 'helen:', 'hello', '||questionmark||', '||period||', '||period||', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'helen:', 'hi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'morty', '||rightparen||', 'would', 'you', 'make', 'this', 'thing', 'lower', '||exclammark||', 'i', 'can', 'hear', 'it', 'on', 'the', 'street', '||exclammark||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'howd', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'won', '||period||', 'i', 'made', 'an', 'incredible', 'play', 'in', 'the', 'field', '||exclammark||', 'there', 'was', 'a', 'tag', '||dash||', 'up', 'at', 'third', 'base', 'and', 'i', 'threw', 'the', 'guy', 'out', 'from', 'left', 'field', 'on', 'a', 'fly', '||exclammark||', 'well', 'be', 'in', 'the', 'championship', 'game', 'wednesday', 'because', 'of', 'me', '||period||', 'it', 'was', 'the', 'single', 'greatest', 'moment', 'in', 'my', 'life', '||period||', '||return||', '||return||', 'helen:', 'this', 'is', 'your', 'greatest', 'moment', '||questionmark||', 'a', 'game', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'no', '||period||', 'sharon', 'besser', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'morty:', 'you', 'know', 'what', 'my', 'greatest', 'moment', 'was', '||comma||', 'dont', 'you', '||questionmark||', 'nineteen', '||dash||', 'forty', '||dash||', 'six', '||period||', 'i', 'went', 'to', 'work', 'for', 'harry', 'flemming', 'and', 'i', 'came', 'up', 'with', 'the', 'idea', 'for', 'the', 'beltless', 'trenchcoat', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'look', 'at', 'this', 'sport', 'jacket', '||period||', 'is', 'this', 'a', 'jacket', 'to', 'wear', 'to', 'an', 'anniversary', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'the', 'mans', 'an', 'individualist', 'he', 'worked', 'for', 'harry', 'flemming', '||period||', 'he', 'knows', 'what', 'hes', 'doing', '||period||', '||return||', '||return||', 'helen:', 'but', 'its', 'their', '50th', 'anniversary', '||period||', '||return||', '||return||', 'morty:', 'your', 'mother', "doesn't", 'like', 'my', 'taste', 'in', 'clothing', '||period||', '||return||', '||return||', 'helen:', 'you', 'know', '||comma||', 'i', 'spoke', 'to', 'manya', 'and', 'isaac', 'on', 'the', 'phone', 'today', '||period||', 'they', 'invited', 'you', 'again', '||period||', 'i', 'think', 'you', 'should', 'go', '||period||', '||return||', '||return||', 'jerry:', 'first', 'of', 'all', '||comma||', 'i', 'made', 'plans', 'with', 'elaine', '||period||', '||return||', '||return||', 'helen:', 'so', 'bring', 'her', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'even', 'know', 'them', '||period||', 'what', 'is', 'she', '||comma||', 'your', 'second', 'cousin', '||questionmark||', 'i', 'mean', '||comma||', 'ive', 'met', 'them', 'three', 'times', 'in', 'my', 'life', '||period||', '||return||', '||return||', 'morty:', 'i', 'dont', 'know', 'her', 'either', '||period||', '||leftparen||', 'gesturing', 'to', 'helen', '||rightparen||', 'she', 'makes', 'me', 'fly', 'all', 'the', 'way', 'from', 'florida', 'for', 'this', '||comma||', 'and', 'then', 'she', 'criticizes', 'my', 'jacket', '||period||', '||return||', '||return||', 'helen:', 'at', 'least', 'come', 'and', 'say', 'hello', '||comma||', 'have', 'a', 'cup', 'of', 'coffee', '||comma||', 'then', 'youll', 'leave', '||period||', '||return||', '||return||', 'morty:', 'how', 'come', 'he', 'gets', 'to', 'leave', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'i', 'wind', 'up', 'sitting', 'next', 'to', 'uncle', 'leo', '||comma||', 'i', 'am', 'leaving', '||period||', 'hes', 'always', 'grabbing', 'my', 'arm', 'when', 'he', 'talks', 'to', 'me', '||period||', 'i', 'guess', 'its', 'because', 'so', 'many', 'people', 'have', 'left', 'in', 'the', 'middle', 'of', 'his', 'conversation', '||period||', '||return||', '||return||', 'morty:', 'and', 'its', 'always', 'about', 'jeffrey', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'he', 'talks', 'about', 'him', 'like', 'he', 'split', 'the', 'atom', '||period||', 'the', 'kid', 'works', 'for', 'the', 'parks', 'department', '||period||', '||return||', '||return||', 'kramer:', 'morty', '||comma||', 'are', 'you', 'coming', 'in', '||questionmark||', '||return||', '||return||', 'morty:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'forgot', 'all', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'howd', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'won', '||period||', 'were', 'in', 'the', 'finals', 'on', 'wednesday', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', 'and', 'morty', '||rightparen||', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'im', 'completely', 'changing', 'the', 'configuration', 'of', 'the', 'apartment', '||period||', 'youre', 'not', 'gonna', 'believe', 'it', 'when', 'you', 'see', 'it', '||period||', 'a', 'whole', 'new', 'lifestyle', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'levels', '||period||', '||return||', '||return||', 'jerry:', 'levels', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'im', 'getting', 'rid', 'of', 'all', 'my', 'furniture', '||period||', 'all', 'of', 'it', '||period||', 'and', 'im', 'going', 'to', 'build', 'these', 'different', 'levels', '||comma||', 'with', 'steps', '||comma||', 'and', 'itll', 'all', 'be', 'carpeted', 'with', 'a', 'lot', 'of', 'pillows', '||period||', 'you', 'know', '||comma||', 'like', 'ancient', 'egypt', '||period||', '||return||', '||return||', 'jerry:', 'you', 'drew', 'up', 'plans', 'for', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'no', '||period||', 'its', 'all', 'in', 'my', 'head', '||period||', '||return||', '||return||', 'morty:', 'i', 'dont', 'know', 'how', 'youre', 'going', 'to', 'be', 'comfortable', 'like', 'that', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'ill', 'be', 'comfortable', '||period||', '||return||', '||return||', 'jerry:', 'when', 'do', 'you', 'intend', 'to', 'do', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'ohh', '||period||', '||period||', '||period||', 'should', 'be', 'done', 'by', 'the', 'end', 'of', 'the', 'month', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'doing', 'this', 'yourself', '||questionmark||', '||return||', '||return||', 'kramer:', 'its', 'a', 'simple', 'job', '||period||', 'why', '||comma||', 'you', 'dont', 'think', 'i', 'can', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', 'its', 'not', 'that', 'i', 'dont', 'think', 'you', 'can', '||period||', 'i', 'know', 'that', 'you', 'cant', '||comma||', 'and', 'im', 'positive', 'that', 'you', 'wont', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'got', 'the', 'tools', '||period||', 'i', 'got', 'the', 'pillows', '||period||', 'all', 'i', 'need', 'is', 'the', 'lumber', '||period||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'thats', 'some', 'big', 'job', '||period||', '||return||', '||return||', 'jerry:', 'i', '||comma||', 'dont', 'see', 'it', 'happening', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'time', '||comma||', 'this', 'time', 'youre', 'wrong', '||period||', 'cmon', '||period||', 'ill', 'even', 'bet', 'you', '||period||', '||return||', '||return||', 'jerry:', 'seriously', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'dont', 'want', 'you', 'betting', '||period||', 'morty', '||comma||', 'dont', 'let', 'him', 'bet', '||period||', '||return||', '||return||', 'kramer:', 'a', 'big', 'dinner', 'with', 'dessert', '||period||', 'but', 'ive', 'got', 'till', 'the', 'end', 'of', 'the', 'month', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'give', 'you', 'a', 'year', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||period||', 'end', 'of', 'the', 'month', '||period||', '||return||', '||return||', 'jerry:', 'its', 'a', 'bet', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'seriously', '||comma||', 'do', 'you', 'wanna', 'switch', 'chairs', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'im', 'fine', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||comma||', 'are', 'you', 'listening', 'to', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'uncle', 'leo', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'so', '||comma||', 'so', '||comma||', 'now', 'the', 'parks', 'commissioner', 'is', 'recommending', 'jeffrey', 'for', 'a', 'citation', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', 'for', 'the', 'reducing', 'of', 'the', 'pond', 'scum', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'no', '||comma||', 'for', 'the', 'walking', 'tours', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'where', 'the', 'people', 'eat', 'the', 'plant', 'life', '||period||', 'the', 'edible', 'foliage', 'tour', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'thats', 'exactly', 'right', '||period||', 'he', 'knows', 'the', 'whole', 'history', 'of', 'the', 'park', '||period||', 'for', 'two', 'hours', 'hes', 'talking', 'and', 'answering', 'questions', '||period||', 'but', 'you', 'want', 'to', 'know', 'something', '||questionmark||', 'whenever', 'he', 'has', 'a', 'problem', 'with', 'one', 'of', 'these', 'high', '||dash||', 'powered', 'big', 'shots', 'in', 'the', 'parks', 'department', '||comma||', 'you', 'know', 'who', 'he', 'calls', '||questionmark||', '||return||', '||return||', 'jerry:', 'mickey', 'mantle', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'saving', 'jerry', 'from', 'leo', '||rightparen||', 'jerry', '||comma||', 'jerry', '||period||', 'did', 'you', 'taste', 'these', 'peas', '||questionmark||', '||leftparen||', 'to', 'manya', '||rightparen||', 'these', 'peas', 'are', 'great', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'eating', 'a', 'forkful', '||rightparen||', 'these', 'peas', 'are', 'bursting', 'with', 'country', 'fresh', 'flavor', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||period||', '||period||', '||period||', 'phenomenal', 'peas', '||period||', '||return||', '||return||', 'morty:', 'are', 'you', 'ready', 'for', 'dessert', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'actually', '||comma||', 'we', 'do', 'have', 'to', 'kind', 'of', 'get', 'going', '||period||', '||return||', '||return||', 'manya:', '||leftparen||', 'surprised', '||rightparen||', 'youre', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'uh', '||comma||', 'i', 'dont', 'really', 'eat', 'dessert', '||period||', 'im', 'dieting', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'cant', 'eat', 'dessert', 'either', '||period||', 'the', 'sugar', 'makes', 'my', 'ankles', 'swell', 'up', '||comma||', 'and', 'i', 'cant', 'dance', '||period||', '||return||', '||return||', 'manya', ':', 'cant', 'dance', '||questionmark||', '||return||', '||return||', 'helen:', 'hes', 'kidding', '||comma||', 'manya', '||period||', '||return||', '||return||', 'manya:', 'is', 'that', 'a', 'joke', '||questionmark||', '||return||', '||return||', 'helen:', 'so', '||comma||', 'did', 'you', 'hear', 'claires', 'getting', 'married', '||questionmark||', '||return||', '||return||', 'manya:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'helen:', 'i', 'hear', 'the', 'fella', 'owns', 'a', 'couple', 'of', 'racehorses', '||period||', 'you', 'know', '||comma||', 'trotters', '||comma||', 'like', 'at', 'yonkers', '||period||', '||return||', '||return||', 'jerry:', 'horses', '||questionmark||', 'theyre', 'like', 'big', 'riding', 'dogs', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'ponies', '||questionmark||', 'what', 'kind', 'of', 'abnormal', 'animal', 'is', 'that', '||questionmark||', 'and', 'those', 'kids', 'who', 'had', 'their', 'own', 'ponies', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'hated', 'those', 'kids', '||period||', 'in', 'fact', '||comma||', 'i', 'hate', 'anyone', 'that', 'ever', 'had', 'a', 'pony', 'when', 'they', 'were', 'growing', 'up', '||period||', '||return||', '||return||', 'manya:', '||leftparen||', 'angry', '||rightparen||', 'i', 'had', 'a', 'pony', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'didnt', 'uh', 'really', 'mean', 'a', 'pony', '||comma||', 'per', 'se', '||period||', '||period||', '||period||', '||return||', '||return||', 'manya:', 'when', 'i', 'was', 'a', 'little', 'girl', 'in', 'poland', '||comma||', 'we', 'all', 'had', 'ponies', '||period||', 'my', 'sister', 'had', 'pony', '||comma||', 'my', 'cousin', 'had', 'pony', '||period||', '||period||', '||period||', 'so', '||comma||', 'whats', 'wrong', 'with', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', 'nothing', 'at', 'all', '||period||', 'i', 'was', 'just', 'merely', 'expressing', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'should', 'we', 'have', 'coffee', '||questionmark||', 'whos', 'having', 'coffee', '||questionmark||', '||return||', '||return||', 'manya:', 'he', 'was', 'a', 'beautiful', 'pony', '||exclammark||', 'and', 'i', 'loved', 'him', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'im', 'sure', 'you', 'did', '||period||', 'who', 'wouldnt', 'love', 'a', 'pony', '||questionmark||', 'who', 'wouldnt', 'love', 'a', 'person', 'that', 'had', 'a', 'pony', '||questionmark||', '||return||', '||return||', 'manya:', 'you', '||exclammark||', 'you', 'said', 'so', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'see', '||comma||', 'we', 'didnt', 'have', 'ponies', '||period||', 'im', 'sure', 'at', 'that', 'time', 'in', 'poland', '||comma||', 'they', 'were', 'very', 'common', '||period||', 'they', 'were', 'probably', 'like', 'compact', 'cars', '||period||', '||period||', '||return||', '||return||', 'manya:', 'thats', 'it', '||exclammark||', 'i', 'had', 'enough', '||exclammark||', '||return||', '||return||', 'isaac:', 'have', 'your', 'coffee', '||comma||', 'everybody', '||period||', 'shes', 'a', 'little', 'upset', '||period||', 'its', 'been', 'an', 'emotional', 'day', '||period||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'know', 'she', 'had', 'a', 'pony', '||period||', 'how', 'was', 'i', 'to', 'know', 'she', 'had', 'a', 'pony', '||questionmark||', 'who', 'figures', 'an', 'immigrants', 'going', 'to', 'have', 'a', 'pony', '||questionmark||', 'do', 'you', 'know', 'what', 'the', 'odds', 'are', 'on', 'that', '||questionmark||', 'i', 'mean', '||comma||', 'in', 'all', 'the', 'pictures', 'i', 'saw', 'of', 'immigrants', 'on', 'boats', 'coming', 'into', 'new', 'york', 'harbor', '||comma||', 'i', 'never', 'saw', 'one', 'of', 'them', 'sittin', 'on', 'a', 'pony', '||period||', 'why', 'would', 'anybody', 'come', 'here', 'if', 'they', 'had', 'a', 'pony', '||questionmark||', 'who', 'leaves', 'a', 'country', 'packed', 'with', 'ponies', 'to', 'come', 'to', 'a', 'non', '||dash||', 'pony', 'country', '||questionmark||', 'it', 'doesnt', 'make', 'sense', '||period||', 'am', 'i', 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'ill', 'drive', 'you', 'to', 'the', 'airport', '||period||', '||return||', '||return||', 'helen:', 'no', '||comma||', 'were', 'taking', 'a', 'cab', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'hope', 'that', 'whole', 'pony', 'incident', 'didnt', 'put', 'a', 'damper', 'on', 'the', 'trip', '||period||', '||return||', '||return||', 'helen:', 'dont', 'be', 'ridiculous', '||period||', 'it', 'was', 'a', 'misunderstanding', '||period||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'i', 'agree', 'with', 'him', '||period||', 'nobody', 'likes', 'a', 'kid', 'with', 'a', 'pony', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'you', 'ever', 'talk', 'to', 'her', '||comma||', 'tell', 'her', 'im', 'sorry', '||period||', 'elaine', 'too', '||period||', 'she', 'feels', 'terrible', '||period||', '||return||', '||return||', 'helen:', 'you', 'know', '||comma||', 'you', 'should', 'give', 'manya', 'a', 'call', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'will', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hi', '||period||', 'i', 'uh', 'just', 'came', 'to', 'say', 'goodbye', '||period||', '||return||', '||return||', 'kramer:', 'need', 'any', 'help', 'with', 'those', '||questionmark||', '||return||', '||return||', 'morty:', 'its', 'nothing', '||period||', 'i', 'got', 'it', '||period||', 'so', '||comma||', 'how', 'are', 'your', 'levels', 'coming', 'along', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||period||', '||period||', '||period||', 'i', 'decided', 'im', 'not', 'gonna', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'laughing', '||rightparen||', 'really', '||questionmark||', 'what', 'a', 'shock', '||period||', '||return||', '||return||', 'helen:', 'goodbye', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'take', 'care', '||period||', '||return||', '||return||', 'helen:', 'well', 'call', 'you', '||period||', '||return||', '||return||', 'morty:', 'bye', '||comma||', 'jer', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||comma||', 'dad', '||period||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'morty:', 'bye', '||comma||', 'mr', '||period||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'so', 'long', '||comma||', 'morty', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'when', 'do', 'i', 'get', 'my', 'dinner', '||questionmark||', '||return||', '||return||', 'kramer:', 'theres', 'no', 'dinner', '||period||', 'the', 'bets', 'off', '||period||', 'im', 'not', 'gonna', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'know', 'youre', 'not', 'gonna', 'do', 'it', '||period||', 'thats', 'why', 'i', 'bet', '||period||', '||return||', '||return||', 'kramer:', 'ya', 'well', '||comma||', 'theres', 'no', 'bet', 'if', 'im', 'not', 'doing', 'it', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'the', 'bet', '||exclammark||', 'that', 'youre', 'not', 'doing', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'could', 'do', 'it', '||period||', 'i', 'dont', 'wanna', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'we', 'didnt', 'bet', 'on', 'if', 'you', 'wanted', 'to', '||period||', 'we', 'bet', 'on', 'if', 'it', 'would', 'be', 'done', '||period||', '||return||', '||return||', 'kramer:', 'and', 'it', 'could', 'be', 'done', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'of', 'course', 'it', 'could', 'be', 'done', '||exclammark||', 'anything', 'could', 'be', 'done', '||exclammark||', 'but', 'it', 'only', 'is', 'done', 'if', 'its', 'done', '||exclammark||', 'show', 'me', 'the', 'levels', '||exclammark||', 'the', 'bet', 'is', 'the', 'levels', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'dont', 'want', 'the', 'levels', '||exclammark||', '||return||', '||return||', 'jerry:', 'thats', 'the', 'bet', '||exclammark||', '||leftparen||', 'the', 'phone', 'rings', '||semicolon||', 'jerry', 'answers', 'it', '||period||', '||rightparen||', 'hello', '||questionmark||', '||period||', '||period||', '||period||', 'no', '||dash||', 'oh', '||comma||', 'hi', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'leaves', '||rightparen||', 'no', '||comma||', 'they', 'just', 'left', '||period||', '||period||', '||period||', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||period||', 'hang', 'on', 'a', 'second', '||period||', 'maybe', 'i', 'can', 'still', 'catch', 'em', '||period||', '||leftparen||', 'jerry', 'goes', 'over', 'to', 'the', 'window', 'and', 'opens', 'it', '||semicolon||', 'calling', 'out', 'the', 'window', '||rightparen||', 'ma', '||exclammark||', 'ma', '||exclammark||', 'up', 'here', '||exclammark||', 'dont', 'get', 'in', 'the', 'cab', '||exclammark||', 'manya', 'died', '||exclammark||', 'manya', 'died', '||exclammark||', '||exclammark||', '||return||', '||return||', 'helen:', 'who', 'did', 'you', 'talk', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||period||', '||return||', '||return||', 'helen:', 'and', 'whens', 'the', 'funeral', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', 'he', 'said', 'hed', 'call', 'back', '||period||', '||return||', '||return||', 'morty:', 'you', 'know', 'what', 'this', 'means', '||comma||', 'dont', 'you', '||questionmark||', 'we', 'lost', 'the', 'supersaver', '||period||', 'those', 'tickets', 'are', 'non', '||dash||', 'refundable', '||period||', '||return||', '||return||', 'helen:', 'she', 'just', 'had', 'a', 'check', '||dash||', 'up', '||period||', 'the', 'doctor', 'said', 'she', 'was', 'fine', '||period||', 'unless', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'think', '||period||', '||period||', '||period||', 'what', '||questionmark||', 'the', 'pony', 'remark', '||questionmark||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'dont', 'be', 'ridiculous', '||period||', 'she', 'was', 'an', 'old', 'woman', '||period||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'think', 'that', 'i', 'killed', 'her', '||questionmark||', '||return||', '||return||', 'morty:', 'you', 'know', 'what', 'the', 'flight', 'backll', 'cost', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'just', 'an', 'innocent', 'comment', '||exclammark||', 'i', 'didnt', 'know', 'she', 'had', 'a', 'pony', '||exclammark||', '||return||', '||return||', 'morty:', 'maybe', 'we', 'can', 'get', 'an', 'army', 'transport', 'flight', '||period||', 'they', 'got', 'a', 'base', 'in', 'sarasota', '||comma||', 'i', 'think', '||period||', '||return||', '||return||', 'jerry:', 'the', 'whole', 'thing', 'was', 'taking', 'out', 'of', 'context', '||period||', 'it', 'was', 'a', 'joke', '||period||', '||leftparen||', 'the', 'phone', 'rings', '||period||', '||rightparen||', 'thats', 'probably', 'uncle', 'leo', '||period||', '||return||', '||return||', 'helen:', 'hello', '||questionmark||', '||period||', '||period||', '||period||', 'yes', '||comma||', 'i', 'know', '||period||', '||period||', '||period||', 'well', '||comma||', 'its', 'just', 'one', 'of', 'those', 'things', '||period||', '||period||', '||period||', 'sure', '||comma||', 'sure', '||comma||', 'well', 'see', 'you', 'then', '||period||', '||return||', '||return||', 'helen:', 'the', 'funerals', 'wednesday', '||period||', '||return||', '||return||', 'jerry:', 'wednesday', '||questionmark||', 'what', '||comma||', 'what', 'wednesday', '||questionmark||', '||return||', '||return||', 'helen:', 'two', 'o', 'clock', '||comma||', 'wednesday', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||return||', '||return||', 'helen:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'ive', 'got', 'the', 'softball', 'game', 'on', 'wednesday', '||period||', 'its', 'the', 'championship', '||period||', '||return||', '||return||', 'helen:', 'so', '||questionmark||', 'youre', 'not', 'obligated', '||period||', 'go', 'play', 'in', 'your', 'game', '||period||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'even', 'know', 'the', 'woman', '||period||', '||return||', '||return||', 'helen:', 'so', 'dont', 'go', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'i', 'met', 'her', 'three', 'times', '||period||', 'i', 'dont', 'even', 'know', 'her', 'last', 'name', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'no', 'ones', 'forcing', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'who', 'has', 'a', 'funeral', 'on', 'a', 'wednesday', '||questionmark||', 'thats', 'what', 'i', 'want', 'to', 'know', '||period||', 'i', 'mean', '||comma||', 'its', 'the', 'championship', '||comma||', 'im', 'hitting', 'everything', '||period||', '||return||', '||return||', 'helen:', 'i', 'dont', 'have', 'a', 'dress', 'to', 'wear', '||period||', '||leftparen||', 'to', 'morty', '||rightparen||', 'and', 'you', '||period||', 'you', 'dont', 'have', 'anything', '||period||', '||return||', '||return||', 'morty:', 'i', 'got', 'my', 'sport', 'jacket', '||period||', '||return||', '||return||', 'helen:', 'youre', 'not', 'wearing', 'that', 'to', 'a', 'funeral', '||period||', '||return||', '||return||', 'morty:', 'whats', 'wrong', 'with', 'it', '||questionmark||', '||return||', '||return||', 'helen:', 'it', 'looks', 'ridiculous', '||period||', '||return||', '||return||', 'morty:', 'what', '||questionmark||', 'im', 'gonna', 'buy', 'a', 'new', 'sport', 'jacket', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', 'what', 'to', 'do', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'depressed', '||rightparen||', 'you', 'know', 'what', 'this', 'funerals', 'gonna', 'wind', 'up', 'costing', 'me', '||questionmark||', 'oh', 'boy', '||exclammark||', '||return||', '||return||', 'jerry:', 'we', 'dont', 'understand', 'death', '||period||', 'and', 'the', 'proof', 'of', 'this', 'is', 'that', 'we', 'give', 'dead', 'people', 'a', 'pillow', '||period||', 'and', '||comma||', 'uh', '||comma||', 'i', 'mean', '||comma||', 'hey', '||comma||', 'you', 'know', '||period||', 'i', 'think', 'if', 'you', 'cant', 'stretch', 'out', 'and', 'get', 'some', 'solid', 'rest', 'at', 'that', 'point', '||comma||', 'i', 'dont', 'see', 'how', 'bedding', 'accessories', 'really', 'make', 'the', 'difference', '||period||', 'i', 'mean', '||comma||', 'they', 'got', 'the', 'guy', 'in', 'a', 'suit', 'with', 'a', 'pillow', '||period||', 'now', '||comma||', 'is', 'he', 'going', 'to', 'a', 'meeting', '||comma||', 'or', 'is', 'he', 'catching', 'forty', 'winks', '||questionmark||', 'i', 'mean', '||comma||', 'lets', 'make', 'up', 'our', 'mind', 'where', 'we', 'think', 'theyre', 'going', '||period||', '||return||', '||return||', 'elaine:', 'i', 'actually', 'like', 'ponies', '||period||', 'i', 'was', 'just', 'trying', 'to', 'make', 'conversation', '||period||', 'what', 'times', 'your', 'game', '||questionmark||', '||return||', '||return||', 'jerry:', 'two', 'forty', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', 'and', 'what', 'times', 'the', 'funeral', '||questionmark||', '||return||', '||return||', 'jerry:', 'two', 'o', 'clock', '||period||', '||return||', '||return||', 'elaine:', 'how', 'long', 'does', 'a', 'funeral', 'take', '||questionmark||', '||return||', '||return||', 'jerry:', 'depends', 'on', 'how', 'nice', 'the', 'person', 'was', '||period||', 'but', 'you', 'gotta', 'figure', '||comma||', 'even', 'oswald', 'took', 'forty', '||dash||', 'five', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'so', 'you', 'cant', 'do', 'both', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'the', 'situation', 'were', 'reversed', 'and', 'manya', 'had', 'some', 'mah', '||dash||', 'jongg', 'championship', 'or', 'something', '||comma||', 'i', 'wouldnt', 'expect', 'her', 'to', 'go', 'to', 'my', 'funeral', '||period||', 'i', 'would', 'understand', '||period||', '||return||', '||return||', 'elaine:', 'how', 'can', 'you', 'even', 'consider', 'not', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'ive', 'been', 'thinking', '||period||', 'i', 'cannot', 'envision', 'any', 'circumstances', 'in', 'which', 'ill', 'ever', 'have', 'the', 'opportunity', 'to', 'have', 'sex', 'again', '||period||', 'hows', 'it', 'gonna', 'happen', '||questionmark||', 'i', 'just', 'dont', 'see', 'how', 'it', 'could', 'occur', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'funerals', 'always', 'make', 'me', 'think', 'about', 'my', 'own', 'mortality', 'and', 'how', 'im', 'actually', 'gonna', 'die', 'someday', '||period||', 'me', '||comma||', 'dead', '||period||', 'imagine', 'that', '||period||', '||return||', '||return||', 'george:', 'they', 'always', 'make', 'me', 'take', 'stock', 'of', 'my', 'life', '||period||', 'and', 'how', 'ive', 'pretty', 'much', 'wasted', 'all', 'of', 'it', '||comma||', 'and', 'how', 'i', 'plan', 'to', 'continue', 'wasting', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'and', 'then', 'you', 'say', 'to', 'yourself', '||comma||', 'from', 'this', 'moment', 'on', '||comma||', 'im', 'not', 'gonna', 'waste', 'any', 'more', 'of', 'it', '||period||', 'but', 'then', 'you', 'go', '||comma||', 'how', '||questionmark||', 'what', 'can', 'i', 'do', 'thats', 'not', 'wasting', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'is', 'this', 'a', 'waste', 'of', 'time', '||questionmark||', 'what', 'should', 'we', 'be', 'doing', '||questionmark||', 'cant', 'you', 'have', 'coffee', 'with', 'people', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'cant', 'believe', 'youre', 'even', 'considering', 'not', 'playing', '||period||', 'we', 'need', 'you', '||period||', 'youre', 'hitting', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'he', 'has', 'to', 'go', '||period||', 'he', 'may', 'have', 'killed', 'her', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', 'what', 'about', 'you', '||questionmark||', 'you', 'brought', 'up', 'the', 'pony', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'but', 'i', 'didnt', 'say', 'i', 'hated', 'anyone', 'who', 'had', 'one', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'whos', 'going', 'to', 'play', 'left', 'field', '||questionmark||', '||return||', '||return||', 'jerry:', 'bender', '||period||', '||return||', '||return||', 'george:', 'bender', '||questionmark||', 'he', 'cant', 'play', 'left', '||period||', 'he', 'stinks', '||period||', 'i', 'just', 'dont', 'see', 'what', 'purpose', 'is', 'it', 'gonna', 'serve', 'your', 'going', '||questionmark||', 'i', 'mean', '||comma||', 'you', 'think', 'dead', 'peole', 'care', 'whos', 'at', 'their', 'funeral', '||questionmark||', 'they', 'dont', 'even', 'know', 'theyre', 'having', 'a', 'funeral', '||period||', 'its', 'not', 'like', 'shes', 'hanging', 'out', 'in', 'the', 'back', 'going', '||comma||', 'i', 'cant', 'believe', 'jerry', 'didnt', 'show', 'up', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'shes', 'there', 'in', 'spirit', '||period||', 'how', 'about', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'if', 'youre', 'a', 'spirit', '||comma||', 'and', 'you', 'can', 'travel', 'to', 'other', 'dimensions', 'and', 'galaxies', '||comma||', 'and', 'find', 'out', 'the', 'mysteries', 'of', 'the', 'universe', '||comma||', 'you', 'think', 'shes', 'gonna', 'wanna', 'hang', 'around', 'drexlers', 'funeral', 'home', 'on', 'ocean', 'parkway', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'i', 'met', 'this', 'woman', '||period||', 'she', 'is', 'not', 'traveling', 'to', 'any', 'other', 'dimensions', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'how', 'easy', 'it', 'is', 'for', 'dead', 'people', 'to', 'travel', '||questionmark||', 'its', 'not', 'like', 'getting', 'on', 'a', 'bus', '||period||', 'one', 'second', '||period||', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', 'its', 'all', 'mental', '||period||', '||return||', '||return||', 'jerry:', 'fifty', 'years', 'they', 'were', 'married', '||period||', 'now', 'hes', 'moving', 'to', 'pheonix', '||period||', '||return||', '||return||', 'elaine:', 'phoenix', '||questionmark||', 'whats', 'happening', 'with', 'his', 'appartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', 'theyve', 'been', 'in', 'there', 'since', '||comma||', 'like', '||comma||', 'world', 'war', 'ii', '||period||', 'the', 'rents', 'three', 'hundred', 'a', 'month', '||period||', '||return||', '||return||', 'elaine:', 'three', 'hundred', 'a', 'month', '||questionmark||', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'eulogist:', 'although', 'this', 'may', 'seem', 'like', 'a', 'sad', 'event', '||comma||', 'it', 'should', 'not', 'be', 'a', 'day', 'of', 'mourning', '||period||', 'for', 'manya', 'had', 'a', 'rich', '||comma||', 'fulfilling', 'life', '||period||', 'she', 'grew', 'up', 'in', 'a', 'different', 'world', 'a', 'simpler', 'world', 'with', 'loving', 'parents', '||comma||', 'a', 'beautiful', 'home', 'in', 'the', 'country', '||comma||', 'and', 'from', 'what', 'i', 'understand', '||comma||', 'she', 'eve', 'had', 'a', 'pony', '||period||', '||leftparen||', 'jerry', 'throws', 'up', 'his', 'hands', '||period||', '||rightparen||', 'oh', '||comma||', 'how', 'she', 'loved', 'that', 'pony', '||period||', 'even', 'in', 'her', 'declining', 'years', '||comma||', 'whenever', 'she', 'would', 'speak', 'of', 'it', '||comma||', 'her', 'eyes', 'would', 'light', 'up', '||period||', 'its', 'lustrous', 'coat', '||comma||', 'its', 'flowing', 'mane', '||period||', 'it', 'was', 'the', 'pride', 'of', 'krakow', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'the', 'games', 'starting', 'just', 'about', 'now', '||period||', '||return||', '||return||', 'helen:', 'it', 'was', 'good', 'that', 'the', 'two', 'of', 'you', 'came', '||period||', 'it', 'was', 'a', 'nice', 'gesture', '||period||', '||return||', '||return||', 'nephew:', 'im', 'not', 'a', 'doctor', 'yet', '||comma||', 'uncle', 'morty', '||period||', 'im', 'just', 'an', 'intern', '||period||', 'i', 'cant', 'write', 'a', 'note', 'to', 'an', 'airline', '||period||', '||return||', '||return||', 'morty:', 'youve', 'got', 'your', 'degree', '||period||', 'they', 'dont', 'care', '||period||', 'they', 'just', 'want', 'to', 'see', 'something', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'wanted', 'to', 'say', 'how', 'sorry', 'i', 'was', '||period||', '||period||', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||comma||', 'you', 'wanna', 'hear', 'something', '||questionmark||', 'your', 'cousin', '||comma||', 'jeffrey', '||comma||', 'is', 'switching', 'parks', '||period||', 'theyre', 'transferring', 'him', 'to', 'riverside', '||dash||', 'so', 'hell', 'completely', 'revamp', 'that', 'operation', '||comma||', 'you', 'understand', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'hell', 'do', 'in', 'riverside', 'what', 'he', 'did', 'in', 'central', 'park', '||period||', 'more', 'money', '||period||', 'so', '||comma||', 'thats', 'your', 'cousin', '||period||', '||return||', '||return||', 'morty:', 'you', 'dont', 'understand', '||comma||', 'ive', 'never', 'paid', 'a', 'full', 'fare', '||period||', '||return||', '||return||', 'jerry:', 'once', 'again', '||comma||', 'i', 'just', 'want', 'to', 'say', 'how', 'sorry', 'i', 'am', 'about', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'isaac:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', 'she', 'forgot', 'all', 'about', 'that', '||period||', 'she', 'was', 'much', 'more', 'upset', 'about', 'the', 'potato', 'salad', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'i', 'understand', 'youre', 'moving', 'to', 'phoenix', '||questionmark||', '||return||', '||return||', 'isaac:', 'yeah', '||comma||', 'my', 'brother', 'lives', 'there', '||period||', 'i', 'think', 'manya', 'wouldve', 'liked', 'phoenix', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||comma||', 'gorgeous', '||comma||', 'exquisite', 'town', '||period||', 'so', '||comma||', 'whats', 'happening', 'with', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'isaac:', 'of', 'course', 'its', 'very', 'hot', 'there', '||period||', 'ill', 'have', 'to', 'get', 'uh', 'air', 'conditioner', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'can', 'have', 'mine', '||period||', 'ill', 'ship', 'it', 'out', 'to', 'you', '||period||', '||leftparen||', 'isaac', "isn't", 'listening', 'to', 'elaine', '||rightparen||', 'but', 'what', 'about', 'that', 'big', 'apartment', 'on', 'west', 'end', 'avenue', '||questionmark||', '||return||', '||return||', 'isaac:', 'although', 'they', 'say', 'its', 'a', 'dry', 'heat', '||period||', '||return||', '||return||', 'elaine:', 'dry', '||comma||', 'wet', '||period||', '||period||', '||period||', '||leftparen||', 'trying', 'to', 'get', 'through', 'to', 'him', '||rightparen||', 'whats', 'happening', 'with', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'isaac:', 'i', 'dont', 'even', 'know', 'if', 'i', 'should', 'take', 'my', 'winter', 'clothing', '||period||', '||return||', '||return||', 'elaine:', 'i', 'have', 'an', 'idea', '||period||', 'leave', 'the', 'winter', 'clothing', 'in', 'the', 'apartment', '||comma||', 'and', 'ill', 'watch', 'it', 'for', 'you', 'and', 'ill', 'live', 'there', 'and', 'ill', 'make', 'sure', 'that', 'nothing', 'happens', 'to', 'it', '||period||', '||return||', '||return||', 'isaac:', 'oh', '||comma||', 'the', 'apartment', '||period||', 'jeffreys', 'taking', 'the', 'apartment', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'jeffrey', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'jeffery', '||questionmark||', '||return||', '||return||', 'elaine', ':', 'yeah', '||comma||', 'from', 'what', 'i', 'understand', '||comma||', 'he', 'works', 'for', 'the', 'parks', 'department', '||period||', '||return||', '||return||', 'helen:', 'its', 'raining', '||period||', '||return||', '||return||', 'jerry:', 'its', 'raining', '||questionmark||', 'its', 'raining', '||period||', 'the', 'game', 'will', 'be', 'postponed', '||period||', 'well', 'play', 'tomorrow', '||period||', '||return||', '||return||', 'morty:', 'believe', 'me', '||comma||', 'i', 'wouldnt', 'bother', 'you', 'if', 'the', 'army', 'hadnt', 'closed', 'that', 'base', 'in', 'sarasota', '||period||', 'here', '||comma||', 'scribble', 'a', 'little', 'something', 'here', '||period||', '||return||', '||return||', 'nephew:', 'i', 'cant', '||period||', 'ill', 'get', 'in', 'trouble', '||period||', '||return||', '||return||', 'morty:', 'oh', '||comma||', 'for', 'gods', 'sake', '||exclammark||', '||return||', '||return||', 'george:', 'who', 'gets', 'picked', 'off', 'in', 'softball', '||questionmark||', 'its', 'unheard', 'of', '||period||', '||return||', '||return||', 'jerry:', 'its', 'never', 'happened', 'to', 'me', 'before', '||period||', '||return||', '||return||', 'elaine:', 'i', 'remember', 'saying', 'to', 'myself', '||comma||', 'why', 'is', 'jerry', 'so', 'far', 'off', 'the', 'base', '||questionmark||', '||return||', '||return||', 'jerry:', 'ill', 'have', 'to', 'live', 'with', 'this', 'shame', 'for', 'the', 'rest', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'george:', 'and', 'then', 'in', 'the', 'fifth', 'inning', '||comma||', 'why', 'did', 'you', 'take', 'off', 'on', 'the', 'pop', 'fly', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'there', 'were', 'two', 'outs', '||period||', '||return||', '||return||', 'elaine:', 'i', 'couldnt', 'believe', 'it', 'when', 'i', 'saw', 'you', 'running', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'i', 'thought', 'maybe', 'they', 'had', 'changed', 'the', 'rules', 'or', 'something', '||period||', '||return||', '||return||', 'jerry', ':', 'it', 'was', 'the', 'single', 'worst', 'moment', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'what', 'about', 'sharon', 'besser', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||comma||', 'of', 'course', '||period||', 'nineteen', '||dash||', 'seventy', '||dash||', 'three', '||period||', '||return||', '||return||', 'elaine:', 'makes', 'you', 'wonder', '||comma||', 'though', '||comma||', 'doesnt', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'wonder', 'about', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||period||', '||period||', '||period||', '||leftparen||', 'looking', 'up', '||rightparen||', 'the', 'spirit', 'world', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', 'manya', 'showed', 'up', 'during', 'the', 'game', 'and', 'put', 'a', 'hex', 'on', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'never', 'saw', 'anyone', 'play', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'went', 'to', 'the', 'funeral', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'that', 'doesnt', 'make', 'up', 'for', 'killin', 'her', '||period||', '||return||', '||return||', 'george:', 'maybe', 'manya', 'missed', 'the', 'funeral', 'because', 'she', 'was', 'off', 'visiting', 'another', 'galaxy', 'that', 'day', '||period||', '||return||', '||return||', 'jerry:', 'dont', 'you', 'think', 'she', 'woulda', 'heard', 'i', 'was', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'necessarily', '||period||', '||return||', '||return||', 'jerry:', 'who', 'figures', 'and', 'immigrants', 'gonna', 'have', 'a', 'pony', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'the', 'pony', '||questionmark||', 'what', 'is', 'the', 'point', 'of', 'the', 'pony', '||questionmark||', 'why', 'do', 'we', 'have', 'these', 'animals', '||comma||', 'these', 'ponies', '||questionmark||', 'what', 'do', 'we', 'do', 'with', 'them', '||questionmark||', 'besides', 'the', 'pony', 'ride', '||period||', 'why', 'ponies', '||questionmark||', 'what', 'are', 'we', 'doing', 'with', 'them', '||questionmark||', 'i', 'mean', '||comma||', 'police', 'dont', 'use', 'them', 'for', '||comma||', 'you', 'know', '||comma||', 'crowd', 'control', '||period||', '||leftparen||', 'jerry', 'crouches', 'down', '||comma||', 'and', 'makes', 'like', 'hes', 'riding', 'a', 'pony', '||period||', '||rightparen||', 'hey', '||comma||', 'uh', '||comma||', 'you', 'wanna', 'get', 'back', 'behind', 'the', 'barricades', '||period||', 'hey', '||exclammark||', 'hey', '||comma||', 'little', 'boy', '||period||', 'yeah', '||comma||', 'im', 'talking', 'to', 'you', '||period||', 'behind', 'the', 'barricades', '||exclammark||', 'so', 'somebody', '||comma||', 'i', 'assume', '||comma||', 'genetically', 'engineered', 'these', 'ponies', '||period||', 'do', 'you', 'think', 'they', 'could', 'make', 'them', 'any', 'size', '||questionmark||', 'i', 'mean', '||comma||', 'could', 'they', 'make', 'them', 'like', 'the', 'size', 'of', 'a', 'quarter', '||comma||', 'if', 'they', 'wanted', '||questionmark||', 'that', 'would', 'be', 'fun', 'for', 'monopoly', '||comma||', 'though', '||comma||', 'wouldnt', 'it', '||questionmark||', 'just', 'have', 'a', 'little', 'pony', 'and', 'you', 'put', 'him', 'on', 'the', '||period||', '||period||', '||period||', 'baltic', '||comma||', 'thats', 'two', 'down', '||comma||', 'go', 'ahead', '||period||', 'hold', 'it', '||period||', 'right', 'there', '||period||', 'baltic', '||period||', 'yeah', '||comma||', 'thats', 'it', '||period||', 'fine', '||period||', 'right', 'there', '||comma||', 'hold', 'it', 'right', 'there', '||period||', '||return||', '||return||', 'jerry:', 'i', 'hate', 'clothes', '||comma||', 'okay', '||questionmark||', 'i', 'hate', 'buying', 'them', '||period||', 'i', 'hate', 'picking', 'them', 'out', 'of', 'my', 'closet', '||period||', 'i', 'cant', 'stand', 'every', 'day', 'trying', 'to', 'come', 'up', 'with', 'little', 'outfits', 'for', 'myself', '||period||', 'i', 'think', 'eventually', 'fashion', 'wont', 'even', 'exist', '||period||', 'it', 'wont', '||period||', 'i', 'think', 'eventually', 'well', 'all', 'be', 'wearing', 'the', 'same', 'thing', '||period||', 'cause', 'anytime', 'i', 'see', 'a', 'movie', 'or', 'a', 'tv', 'show', 'where', 'theres', 'people', 'from', 'the', 'future', 'or', 'another', 'planet', '||comma||', 'theyre', 'all', 'wearing', 'the', 'same', 'thing', '||period||', 'somehow', 'they', 'decided', '||comma||', 'this', 'is', 'going', 'to', 'be', 'our', 'outfit', '||period||', 'one', '||dash||', 'piece', 'silver', 'jumpsuit', '||comma||', 'v', '||dash||', 'stripe', '||comma||', 'and', 'boots', '||period||', 'thats', 'it', '||period||', 'we', 'should', 'come', 'up', 'for', 'an', 'outfit', 'for', 'earth', '||period||', 'an', 'earth', 'outfit', '||period||', 'we', 'should', 'vote', 'on', 'it', '||period||', 'candidates', 'propose', 'different', 'outfits', '||period||', 'no', 'speeches', '||period||', 'they', 'walk', 'out', '||comma||', 'twirl', '||comma||', 'walk', 'off', '||period||', 'we', 'just', 'sit', 'in', 'the', 'audience', 'and', 'go', '||comma||', 'that', 'was', 'nice', '||period||', 'i', 'could', 'wear', 'that', '||period||', '||return||', '||return||', 'jerry', ':', 'i', 'think', 'ive', 'seen', 'enough', '||period||', '||return||', '||return||', 'salesman:', 'well', '||comma||', 'i', 'might', 'have', 'something', 'in', 'the', 'back', '||period||', '||return||', '||return||', 'elaine:', 'the', 'back', '||questionmark||', 'they', 'never', 'find', 'anything', 'in', 'the', 'back', '||period||', 'if', 'they', 'had', 'anything', 'good', 'in', 'the', 'back', '||comma||', 'theyd', 'put', 'it', 'out', 'in', 'the', 'front', '||period||', '||return||', '||return||', 'jerry:', 'why', 'dont', 'they', 'open', 'up', 'an', 'entire', 'store', 'for', 'the', 'back', '||questionmark||', 'call', 'it', '||comma||', 'just', 'back', '||period||', 'all', 'back', '||semicolon||', 'no', 'front', '||period||', 'you', 'walk', 'in', 'the', 'front', '||comma||', 'youre', 'immediately', 'in', 'the', 'back', '||period||', '||leftparen||', 'jerry', 'picks', 'up', 'a', 'tie', 'display', '||comma||', 'and', 'shakes', 'it', 'rhythmically', 'from', 'left', 'to', 'right', '||period||', '||rightparen||', 'look', '||comma||', 'elaine', '||comma||', 'tie', 'carwash', '||period||', '||return||', '||return||', 'customer:', 'oh', '||comma||', 'i', 'just', 'read', 'that', '||period||', 'thats', 'terrific', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'to', 'elaine', '||rightparen||', 'her', 'father', 'wrote', 'that', '||period||', '||return||', '||return||', 'customer:', 'alton', 'benes', 'is', 'your', 'father', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'customer:', 'i', 'always', 'felt', 'he', 'deserved', 'a', 'wider', 'audience', '||period||', '||return||', '||return||', 'elaine:', 'im', 'not', 'so', 'sure', 'he', 'wants', 'one', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'dont', 'forget', 'sunday', '||comma||', 'okay', '||questionmark||', 'you', 'and', 'george', 'are', 'coming', '||comma||', 'right', '||questionmark||', 'hotel', 'westbury', '||comma||', 'eight', 'oclock', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'im', 'coming', '||period||', 'i', 'mean', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', '||comma||', 'you', 'dont', 'want', 'to', 'go', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'ill', 'go', '||period||', 'im', 'going', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'jerry', '||comma||', 'you', 'have', 'to', '||period||', 'i', 'need', 'a', 'buffer', '||period||', 'you', 'know', '||comma||', 'i', 'havent', 'seen', 'my', 'father', 'in', 'a', 'while', 'and', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'im', 'worried', 'i', 'wont', 'be', 'able', 'to', 'talk', 'to', 'him', '||period||', 'hes', 'such', 'a', 'great', 'writer', '||period||', 'frankly', '||comma||', 'i', 'prefer', 'the', 'company', 'of', 'nitwits', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'thats', 'why', 'were', 'not', 'together', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'beautiful', '||period||', 'these', 'jackets', 'never', 'fit', 'me', 'right', '||period||', '||return||', '||return||', 'elaine:', 'try', 'it', 'on', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||comma||', 'this', 'is', 'soft', 'suede', '||period||', '||return||', '||return||', 'jerry:', 'this', 'may', 'be', 'the', 'most', 'perfect', 'jacket', 'i', 'have', 'ever', 'put', 'on', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shocked', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'bad', '||questionmark||', '||leftparen||', 'elaine', 'nods', '||period||', '||rightparen||', 'very', 'bad', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'some', 'idea', '||period||', '||return||', '||return||', 'elaine:', 'no', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'ive', 'got', 'a', 'ballpark', '||period||', '||return||', '||return||', 'elaine:', 'there', 'is', 'no', 'park', 'and', 'the', 'team', 'has', 'relocated', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'see', 'that', '||period||', '||leftparen||', 'jerry', 'looks', 'at', 'the', 'tag', '||period||', '||rightparen||', 'that', 'is', 'high', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'man', '||comma||', 'that', 'is', 'a', 'beautiful', 'jacket', '||comma||', 'though', '||period||', '||return||', '||return||', 'jerry:', 'whats', 'with', 'the', 'pink', 'lining', 'and', 'the', 'candy', 'stripes', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'its', 'just', 'a', 'lining', '||period||', 'you', 'can', 'always', 'have', 'it', 'changed', '||period||', '||return||', '||return||', 'jerry:', 'should', 'i', 'get', 'it', '||questionmark||', 'i', 'hate', 'these', 'moments', '||period||', 'im', 'hearing', 'the', 'dual', 'voices', 'now', '||comma||', 'you', 'know', '||comma||', 'what', 'about', 'the', 'money', '||questionmark||', 'whats', 'money', '||questionmark||', '||return||', '||return||', 'salesman:', 'it', 'looks', 'wonderful', 'on', 'you', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'new', 'jacket', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'kramer:', 'its', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'is', 'it', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'thats', 'definitely', 'you', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'thats', 'more', 'you', 'than', 'youve', 'ever', 'been', '||period||', 'hey', '||comma||', 'what', 'is', 'with', 'the', 'pink', 'lining', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', 'its', 'got', 'a', 'pink', 'lining', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', 'so', '||comma||', 'what', 'did', 'you', 'pay', 'for', 'this', '||questionmark||', '||return||', '||return||', 'jerry', ':', 'i', 'paid', 'what', 'it', 'costs', '||period||', '||return||', '||return||', 'kramer:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'jerry:', 'whats', 'the', 'difference', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'youre', 'not', 'gonna', 'tell', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'id', 'rather', 'not', 'say', 'it', 'out', 'loud', '||period||', 'its', 'embarrassing', '||period||', '||return||', '||return||', 'kramer:', 'over', 'three', 'hundred', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'but', 'lets', 'just', 'stop', 'it', 'right', 'there', '||period||', '||return||', '||return||', 'kramer:', 'its', 'over', 'four', 'hundred', '||questionmark||', '||return||', '||return||', 'jerry', ':', 'really', '||comma||', 'im', 'not', 'answering', 'anymore', '||period||', '||return||', '||return||', 'kramer:', 'is', 'it', 'over', 'four', 'hundred', '||questionmark||', '||return||', '||return||', 'jerry:', 'would', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', 'nelson', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'gonna', 'do', 'with', 'the', 'leather', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'are', 'you', 'gonna', 'wear', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', '||period||', '||return||', '||return||', 'kramer:', 'youre', 'not', 'going', 'to', 'wear', 'this', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||period||', 'okay', '||period||', 'ill', 'take', 'it', '||period||', 'i', 'like', 'the', 'jacket', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'take', 'it', '||period||', '||return||', '||return||', 'kramer:', 'heey', '||comma||', 'good', 'karma', 'for', 'you', '||period||', '||leftparen||', 'kramer', 'puts', 'on', 'jerrys', 'old', 'jacket', 'and', 'stands', 'next', 'to', 'jerry', '||comma||', 'looking', 'in', 'the', 'mirror', '||period||', '||rightparen||', 'oh', 'baby', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', '||rightparen||', 'master', 'of', 'the', 'house/doling', 'out', 'the', 'charm/ready', 'with', 'a', 'handshake', 'and', 'an', 'open', 'palm/tells', 'a', 'saucy', 'talk/loves', 'to', 'make', 'a', 'stir/everyone', 'appreciates', 'a', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'song', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'its', 'from', 'les', 'miserables', '||period||', 'i', 'went', 'to', 'see', 'it', 'last', 'week', '||period||', 'i', 'cant', 'get', 'it', 'out', 'of', 'my', 'head', '||period||', 'i', 'just', 'keep', 'singing', 'it', 'over', 'and', 'over', '||period||', 'it', 'just', 'comes', 'out', '||period||', 'i', 'have', 'no', 'control', 'over', 'it', '||period||', 'im', 'singin', 'it', 'on', 'elevators', '||comma||', 'buses', '||period||', 'im', 'singin', 'it', 'in', 'front', 'of', 'clients', '||period||', 'its', 'taken', 'over', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'schumann', 'went', 'mad', 'from', 'that', '||period||', '||return||', '||return||', 'george:', 'artie', 'schuman', '||questionmark||', 'from', 'camp', 'hatchapee', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', 'idiot', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', '||comma||', 'bud', 'abbott', '||questionmark||', 'what', 'are', 'you', 'callin', 'me', 'an', 'idiot', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'dont', 'know', 'robert', 'schumann', '||questionmark||', 'the', 'composer', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'schumann', '||period||', 'of', 'course', '||period||', '||return||', '||return||', 'jerry:', 'he', 'went', 'crazy', 'from', 'one', 'note', '||period||', 'he', 'couldnt', 'get', 'it', 'out', 'of', 'his', 'head', '||period||', 'i', 'think', 'it', 'was', 'an', 'a', '||period||', 'he', 'kept', 'repeating', 'it', 'over', 'and', 'over', 'again', '||period||', 'he', 'had', 'to', 'be', 'institutionalized', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||leftparen||', 'jerry', 'nods', 'his', 'head', '||rightparen||', 'well', '||comma||', 'what', 'if', 'it', 'doesnt', 'stop', '||questionmark||', 'oh', '||comma||', 'that', 'i', 'really', 'needed', 'to', 'hear', '||period||', 'that', 'helps', 'a', 'lot', '||exclammark||', 'all', 'right', '||comma||', 'just', 'say', 'something', '||period||', 'just', 'start', 'talking', '||period||', 'change', 'the', 'subject', '||period||', 'lets', 'just', 'go', '||comma||', 'all', 'right', '||questionmark||', 'i', 'cant', 'believe', 'were', 'having', 'dinner', 'with', 'alton', 'benes', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'exactly', 'whats', 'gonna', 'happen', 'tonight', '||period||', 'im', 'gonna', 'try', 'and', 'act', 'like', 'im', 'not', 'impressed', '||comma||', 'hes', 'gonna', 'see', 'right', 'through', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'hell', 'be', 'looking', 'at', 'us', 'like', 'hes', 'backstage', 'at', 'a', 'puppet', 'show', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'just', 'get', 'my', 'jacket', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', '||rightparen||', 'master', 'of', 'the', 'house/keeper', 'of', 'the', 'inn', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 're', '||dash||', 'enters', 'the', 'living', 'room', 'and', 'modestly', 'models', 'his', 'new', 'jacket', 'for', 'george', '||period||', 'george', 'is', 'impressed', '||period||', '||rightparen||', 'this', 'is', 'huge', '||exclammark||', 'when', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'jerry:', 'wednesday', '||period||', 'this', 'jacket', 'has', 'completely', 'changed', 'my', 'life', '||period||', 'when', 'i', 'leave', 'the', 'house', 'in', 'this', '||comma||', 'its', 'with', 'a', 'whole', 'different', 'confidence', '||period||', 'like', 'tonight', '||comma||', 'i', 'mightve', 'been', 'a', 'little', 'nervous', '||period||', 'but', '||comma||', 'inside', 'this', 'jacket', '||comma||', 'i', 'am', 'composed', '||comma||', 'grounded', '||comma||', 'secure', 'that', 'i', 'can', 'meet', 'any', 'social', 'challenge', '||period||', '||return||', '||return||', 'george:', 'can', 'i', 'say', 'one', 'thing', 'to', 'you', '||questionmark||', 'and', 'i', 'say', 'this', 'with', 'an', 'unblemished', 'record', 'of', 'staunch', 'heterosexuality', '||period||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', '||return||', '||return||', 'george:', 'its', 'fabulous', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'and', 'ill', 'tell', 'you', 'something', 'else', '||comma||', 'im', 'not', 'even', 'going', 'to', 'ask', 'you', '||period||', 'i', 'want', 'to', 'know', '||period||', 'but', 'im', 'not', 'gonna', 'ask', '||period||', 'youll', 'tell', 'me', 'when', 'you', 'feel', 'comfortable', '||period||', 'so', 'what', 'was', 'it', '||questionmark||', 'four', 'hundred', '||questionmark||', 'five', 'hundred', '||questionmark||', 'did', 'you', 'pay', 'five', 'hundred', 'for', 'this', '||questionmark||', '||leftparen||', 'jerry', 'coyly', 'ignores', 'georges', 'questions', '||comma||', 'while', 'george', 'grows', 'increasingly', 'serious', '||period||', '||rightparen||', 'over', 'six', '||questionmark||', 'cant', 'be', 'seven', '||period||', 'dont', 'tell', 'me', 'you', 'paid', 'seven', 'hundred', 'dollars', 'for', 'this', 'jacket', '||exclammark||', 'did', 'you', 'pay', 'seven', 'hundred', 'dollars', 'for', 'this', 'jacket', '||questionmark||', 'is', 'that', 'what', 'youre', 'saying', 'to', 'me', '||questionmark||', 'you', 'are', 'sick', '||exclammark||', 'is', 'that', 'what', 'you', 'paid', 'for', 'this', 'jacket', '||questionmark||', 'over', 'seven', 'hundred', '||questionmark||', 'what', 'did', 'you', 'pay', 'for', 'this', 'jacket', '||questionmark||', '||exclammark||', 'i', 'wont', 'say', 'anything', '||period||', 'i', 'wanna', 'know', 'what', 'you', 'paid', 'for', 'this', 'jacket', '||exclammark||', 'oh', 'my', 'god', '||exclammark||', 'a', 'thousand', 'dollars', '||questionmark||', '||exclammark||', 'you', 'paid', 'a', 'thousand', 'dollars', 'for', 'this', 'jacket', '||questionmark||', '||exclammark||', 'all', 'right', '||comma||', 'fine', '||period||', '||leftparen||', 'george', 'heads', 'for', 'the', 'door', '||period||', '||rightparen||', 'im', 'walking', 'outta', 'here', 'right', 'now', 'thinking', 'you', 'paid', 'a', 'thousand', 'dollars', 'for', 'this', 'jacket', '||comma||', 'unless', 'you', 'tell', 'me', 'different', '||period||', '||leftparen||', 'jerry', 'remains', 'silent', '||period||', '||rightparen||', 'oh', '||comma||', 'ho', '||exclammark||', 'all', 'right', '||exclammark||', 'ill', 'tell', 'you', 'what', '||comma||', 'if', 'you', 'dont', 'say', 'anything', 'in', 'the', 'next', 'five', 'seconds', '||comma||', 'ill', 'know', 'it', 'was', 'over', 'a', 'thousand', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||period||', 'hey', '||comma||', 'would', 'you', 'do', 'me', 'a', 'solid', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'kind', 'of', 'solid', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'need', 'you', 'to', 'sit', 'in', 'the', 'car', 'for', 'two', 'minutes', 'while', 'its', 'double', '||dash||', 'parked', '||period||', 'i', 'gotta', 'pick', 'up', 'some', 'birds', '||period||', '||return||', '||return||', 'jerry:', 'birds', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'a', 'friend', 'of', 'mine', '||comma||', 'hes', 'a', 'magician', '||period||', 'hes', 'going', 'away', 'on', 'vacation', '||period||', 'he', 'asked', 'me', 'to', 'take', 'care', 'of', 'his', 'doves', '||period||', '||return||', '||return||', 'jerry:', 'so', 'take', 'a', 'cab', '||period||', '||return||', '||return||', 'kramer:', 'they', 'wont', 'take', 'a', 'cage', 'full', 'of', 'birds', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', '||period||', 'im', 'on', 'my', 'way', 'out', '||period||', 'theres', 'no', 'way', 'i', 'can', 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'do', 'me', 'a', 'solid', '||questionmark||', 'two', 'minutes', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'im', 'going', 'with', 'him', '||period||', 'id', 'like', 'to', '||period||', '||period||', '||period||', 'ive', 'never', 'done', 'a', 'solid', 'before', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', '||period||', '||period||', 'yeah', '||period||', 'all', 'right', '||comma||', 'have', 'a', 'good', 'one', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'scoffs', '||rightparen||', 'two', 'minutes', '||period||', 'believe', 'me', '||comma||', 'i', 'know', 'his', 'two', 'minutes', '||period||', 'by', 'his', 'conception', 'of', 'time', '||comma||', 'his', 'life', 'will', 'last', 'over', 'two', 'thousand', 'years', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', '||rightparen||', 'master', 'of', 'the', 'house/quick', 'to', 'catch', 'your', 'eye/never', 'wants', 'a', 'passerby', 'to', 'pass', 'him', 'by', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'schumann', '||period||', '||leftparen||', 'george', 'stops', 'himself', '||comma||', 'frightened', '||period||', 'jerry', 'looks', 'around', 'the', 'lobby', '||period||', '||rightparen||', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'he', 'didnt', 'show', 'up', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'you', 'dont', 'want', 'to', 'do', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'think', 'theres', 'ever', 'been', 'an', 'appointment', 'in', 'my', 'life', 'where', 'i', 'wanted', 'the', 'other', 'guy', 'to', 'show', 'up', '||period||', '||leftparen||', 'george', 'notices', 'an', 'elderly', 'man', 'in', 'a', 'leather', 'chair', '||period||', '||rightparen||', 'wait', 'a', 'second', '||comma||', 'is', 'that', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'think', 'it', 'is', '||period||', '||leftparen||', 'they', 'walk', 'toward', 'the', 'man', '||period||', 'jerry', 'hesitates', '||period||', '||rightparen||', 'wheres', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'nervous', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'man', '||rightparen||', 'excuse', 'me', '||period||', 'mister', 'benes', '||questionmark||', '||return||', '||return||', 'alton:', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'im', 'jerry', '||comma||', 'elaines', 'friend', '||comma||', 'and', 'this', 'is', 'george', '||period||', '||return||', '||return||', 'george:', 'its', 'a', 'great', 'thrill', 'to', 'meet', 'you', '||comma||', 'sir', '||period||', '||return||', '||return||', 'alton:', 'sit', 'down', '||period||', 'want', 'a', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'alton:', 'whatll', 'you', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'waiter', '||rightparen||', 'ill', 'have', 'a', 'cranberry', 'juice', 'with', 'two', 'limes', '||period||', '||return||', '||return||', 'george:', 'and', '||comma||', 'ill', 'have', 'a', 'club', 'soda', 'with', 'no', 'ice', '||period||', '||return||', '||return||', 'benes:', 'ill', 'have', 'another', 'scotch', 'with', 'plenty', 'of', 'ice', '||period||', '||return||', '||return||', 'george:', 'you', 'like', 'ice', '||questionmark||', '||return||', '||return||', 'alton:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'said', '||comma||', 'do', 'you', 'like', 'ice', '||questionmark||', '||return||', '||return||', 'alton:', 'like', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'dont', 'you', 'think', 'you', 'get', 'more', 'without', 'it', '||questionmark||', '||return||', '||return||', 'alton:', 'wheres', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'thought', 'she', 'was', 'meeting', 'you', 'earlier', '||period||', 'shes', 'usually', 'pretty', 'punctual', '||period||', 'dont', 'you', 'find', 'that', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'shes', 'punctual', '||period||', '||period||', '||period||', 'and', 'uh', 'shes', 'been', 'late', '||comma||', 'sometimes', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', 'sometimes', 'shes', 'on', 'time', '||comma||', 'and', '||period||', '||period||', '||period||', 'sometimes', 'shes', 'late', '||period||', '||return||', '||return||', 'george:', 'i', 'guess', '||period||', '||period||', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'today', 'shes', 'late', '||period||', '||return||', '||return||', 'jerry:', 'it', 'appears', 'that', 'way', '||period||', '||return||', '||return||', 'george:', 'yup', '||period||', '||return||', '||return||', 'jerry:', 'yup', '||period||', '||return||', '||return||', 'alton:', 'looks', 'like', 'rain', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'know', '||comma||', 'thats', 'what', 'they', 'said', '||period||', '||return||', '||return||', 'alton:', 'who', 'said', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'weather', 'guy', '||comma||', 'dr', '||period||', 'waldo', '||period||', '||return||', '||return||', 'alton:', 'i', 'dont', 'need', 'anybody', 'to', 'tell', 'me', 'its', 'gonna', 'rain', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'of', 'course', 'not', '||period||', 'i', 'didnt', '||dash||', '||return||', '||return||', 'alton:', 'all', 'i', 'have', 'to', 'do', 'is', 'stick', 'my', 'head', 'out', 'the', 'window', '||period||', '||leftparen||', 'the', 'waiter', 'returns', 'with', 'the', 'drinks', '||comma||', 'and', 'distributes', 'them', 'to', 'the', 'men', '||period||', '||rightparen||', 'which', 'ones', 'suppose', 'to', 'be', 'the', 'funny', 'guy', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pointing', 'at', 'jerry', '||rightparen||', 'oh', '||comma||', 'hes', 'the', 'comedian', '||period||', '||return||', '||return||', 'jerry:', 'im', 'just', 'a', 'regular', 'person', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'hes', 'just', 'being', 'modest', '||period||', '||return||', '||return||', 'alton:', 'we', 'had', 'a', 'funny', 'guy', 'with', 'us', 'in', 'korea', '||period||', 'tailgunner', '||period||', 'they', 'blew', 'his', 'brains', 'out', 'all', 'over', 'the', 'pacific', '||period||', 'theres', 'nothing', 'funny', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'would', 'you', 'excuse', 'me', 'a', 'minute', '||questionmark||', 'im', 'gonna', 'go', 'to', 'the', 'bathroom', '||period||', 'ill', 'be', 'right', 'back', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'wanted', 'to', 'tell', 'you', 'that', 'i', 'really', 'enjoyed', 'fair', 'game', '||period||', 'i', 'thought', 'it', 'was', 'just', 'brilliant', '||period||', '||return||', '||return||', 'alton:', 'drivel', '||period||', '||return||', '||return||', 'george:', 'yea', '||comma||', 'well', '||comma||', 'maybe', 'some', 'parts', '||period||', '||return||', '||return||', 'alton:', '||leftparen||', 'defensive', '||rightparen||', 'what', 'parts', '||questionmark||', '||return||', '||return||', 'george:', 'the', '||period||', '||period||', '||period||', 'drivel', '||period||', '||period||', '||period||', 'parts', '||period||', 'oh', 'my', 'gosh', '||comma||', 'i', 'just', 'realized', 'i', 'have', 'to', 'make', 'a', 'phone', 'call', '||period||', 'i', '||dash||', 'i', 'cant', 'believe', '||dash||', 'would', 'you', '||dash||', '||return||', '||return||', 'george:', 'thank', 'you', 'for', 'leaving', 'me', 'alone', 'with', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'that', 'was', 'brutal', '||period||', 'i', 'cant', 'go', 'back', 'out', 'there', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'lets', 'just', 'leave', '||period||', '||return||', '||return||', 'jerry:', 'elainell', 'kill', 'me', '||period||', '||return||', '||return||', 'george:', 'where', 'is', 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'shes', 'gotta', 'be', 'here', 'soon', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'she', 'leave', 'us', 'alone', 'with', 'this', 'lunatic', '||questionmark||', 'ten', 'more', 'minutes', '||comma||', 'and', 'thats', 'it', '||exclammark||', 'im', 'leaving', '||period||', 'i', 'have', 'to', 'tell', 'you', '||comma||', 'this', 'guy', 'scares', 'me', '||period||', '||return||', '||return||', 'jerry:', 'the', 'waiter', 'was', 'trembling', '||exclammark||', '||return||', '||return||', 'george:', 'if', 'she', 'doesnt', 'show', 'up', '||comma||', 'we', 'cant', 'possibly', 'have', 'dinner', 'with', 'him', 'alone', '||period||', '||return||', '||return||', 'jerry:', 'how', 'are', 'we', 'gonna', 'get', 'out', 'of', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'say', 'were', 'frightened', 'and', 'we', 'have', 'to', 'go', 'home', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'thats', 'good', '||period||', 'hed', 'clunk', 'our', 'heads', 'together', 'like', 'moe', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'just', 'start', 'scratching', '||period||', 'tell', 'him', 'you', 'have', 'the', 'crabs', '||period||', 'he', 'was', 'in', 'the', 'military', '||period||', 'hell', 'understand', 'that', '||period||', '||return||', '||return||', 'jerry:', 'all', 'fathers', 'are', 'intimidating', '||period||', 'theyre', 'intimidating', 'because', 'they', 'are', 'fathers', '||period||', 'once', 'a', 'man', 'has', 'children', '||comma||', 'for', 'the', 'rest', 'of', 'his', 'life', '||comma||', 'his', 'attitude', 'is', '||comma||', 'to', 'hell', 'with', 'the', 'world', '||comma||', 'i', 'can', 'make', 'my', 'own', 'people', '||period||', 'ill', 'eat', 'whatever', 'i', 'want', '||comma||', 'ill', 'wear', 'whatever', 'i', 'want', '||comma||', 'and', 'ill', 'create', 'whoever', 'i', 'want', '||period||', '||return||', '||return||', 'alton:', '||leftparen||', 'to', 'george', '||rightparen||', 'whod', 'you', 'call', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'improvising', '||rightparen||', 'my', 'uh', 'uncle', 'is', 'having', 'an', 'operation', '||period||', 'i', 'just', 'wanted', 'to', 'see', 'how', 'he', 'was', '||period||', '||return||', '||return||', 'alton:', 'what', 'kind', 'of', 'operation', '||questionmark||', '||return||', '||return||', 'george:', 'bone', 'marrow', '||period||', '||return||', '||return||', 'manager:', 'mister', 'benes', '||questionmark||', '||return||', '||return||', 'alton:', 'yes', '||questionmark||', '||return||', '||return||', 'manager:', 'a', 'message', 'for', 'you', '||period||', '||return||', '||return||', 'alton:', 'from', 'elaine', '||period||', 'she', 'got', 'tied', 'up', '||period||', 'shell', 'be', 'here', 'in', 'thirty', 'minutes', '||period||', '||return||', '||return||', 'alton:', 'yeah', '||comma||', 'they', 'shouldve', 'taken', 'care', 'of', 'castro', 'when', 'they', 'had', 'the', 'chance', '||period||', 'like', 'we', 'did', 'in', 'guatamala', 'in', 'fifty', '||dash||', 'three', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'guatamala', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'sure', '||comma||', 'guatamala', '||period||', '||period||', '||period||', '||return||', '||return||', 'alton:', 'all', 'right', '||comma||', 'you', 'boys', 'get', 'yourselves', 'together', '||period||', 'well', 'head', 'up', 'to', 'the', 'restaurant', '||period||', 'ill', 'leave', 'a', 'note', 'for', 'elaine', '||period||', 'im', 'going', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'lets', 'go', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'to', 'hell', 'with', 'elaine', '||exclammark||', '||return||', '||return||', 'jerry:', 'shell', 'be', 'furious', '||period||', '||return||', '||return||', 'george:', 'were', 'dying', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'thats', 'her', '||exclammark||', 'shes', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'im', 'sorry', '||period||', 'im', 'so', 'sorry', '||period||', 'where', 'is', 'dad', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'contemptuously', '||comma||', 'imitating', 'altons', 'voice', '||rightparen||', 'hes', 'in', 'the', 'bathroom', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'where', 'have', 'you', 'been', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', 'that', '||period||', '||period||', '||period||', 'kramer', '||exclammark||', 'im', 'just', 'about', 'to', 'leave', '||comma||', 'he', 'calls', 'me', 'up', '||period||', 'he', 'begs', 'me', 'to', 'sit', 'in', 'his', 'car', 'for', 'two', 'minutes', '||comma||', 'so', 'he', 'can', 'pick', 'up', 'these', 'birds', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'didnt', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', 'said', 'hed', 'drive', 'me', 'here', 'right', 'after', '||period||', 'so', '||comma||', 'i', 'am', 'sitting', 'in', 'his', 'car', 'twenty', 'minutes', '||exclammark||', 'he', 'doesnt', 'come', 'down', '||period||', 'i', 'am', 'freezing', '||period||', 'then', 'a', 'cop', 'comes', 'by', '||comma||', 'tells', 'me', 'to', 'get', 'out', 'of', 'the', 'car', '||period||', 'hes', 'a', 'city', 'marshal', '||period||', 'hes', 'towing', 'the', 'car', 'away', '||period||', 'kramer', 'owes', 'thousands', 'of', 'dollars', 'in', 'back', 'tickets', '||period||', 'he', 'was', 'going', 'to', 'tow', 'it', 'with', 'me', 'in', 'the', 'car', '||exclammark||', 'so', '||comma||', 'they', 'tow', 'the', 'car', '||period||', 'now', '||comma||', 'i', 'am', 'standing', 'outside', '||comma||', 'and', 'i', 'am', 'freezing', '||comma||', 'but', 'i', 'cannot', 'leave', 'because', 'i', 'have', 'to', 'tell', 'him', 'what', 'happened', 'to', 'the', 'car', '||period||', 'so', '||comma||', 'finally', '||comma||', 'he', 'finally', 'comes', 'down', 'with', 'his', 'giant', 'cage', 'filled', 'with', 'doves', '||period||', 'he', 'said', 'he', 'was', 'getting', 'special', 'instructions', '||comma||', 'that', 'each', 'dove', 'has', 'a', 'different', 'diet', '||period||', '||period||', '||period||', 'so', '||comma||', 'were', 'wandering', 'around', 'trying', 'to', 'get', 'a', 'cab', '||comma||', 'when', 'two', 'of', 'these', 'doves', 'fly', 'out', '||exclammark||', 'now', 'were', 'running', 'down', 'the', 'street', 'after', 'these', 'doves', '||semicolon||', 'i', 'almost', 'got', 'hit', 'by', 'a', 'bus', '||exclammark||', '||leftparen||', 'elaine', 'sits', 'in', 'altons', 'chair', 'and', 'takes', 'a', 'deep', 'breath', '||period||', '||rightparen||', 'so', 'hows', 'everything', 'going', 'over', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'great', '||period||', '||return||', '||return||', 'george:', 'couldnt', 'be', 'better', '||period||', '||return||', '||return||', 'elaine:', 'good', '||period||', 'cause', 'dad', 'can', 'make', 'some', 'people', 'a', 'little', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'george:', 'get', 'outta', 'here', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'man', '||comma||', 'kramer', '||exclammark||', 'i', 'could', 'kill', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'believe', 'it', '||period||', 'you', 'know', 'better', 'than', 'to', 'get', 'involved', 'with', 'kramer', '||period||', '||return||', '||return||', 'elaine', ':', 'he', 'said', 'hed', 'give', 'me', 'a', 'lift', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'the', 'lift', '||period||', 'like', 'the', 'lure', 'of', 'the', 'sirens', 'song', '||period||', 'never', 'what', 'it', 'seems', 'to', 'be', '||comma||', 'yet', 'who', 'among', 'us', 'can', 'resist', '||questionmark||', '||return||', '||return||', 'george:', 'where', 'do', 'you', 'come', 'up', 'with', 'this', 'stuff', '||questionmark||', '||return||', '||return||', 'alton:', 'well', '||comma||', 'look', 'whos', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||comma||', 'dad', '||period||', '||return||', '||return||', 'alton:', 'hello', '||comma||', 'dear', '||period||', '||return||', '||return||', 'alton:', 'whos', 'the', 'lipstick', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'one', '||period||', '||return||', '||return||', 'alton:', 'hows', 'your', 'mother', '||questionmark||', '||return||', '||return||', 'elaine:', 'fine', '||period||', '||return||', '||return||', 'alton:', 'how', 'about', 'you', '||questionmark||', 'are', 'you', 'working', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'im', 'reading', 'manuscripts', 'for', 'pendant', 'publishing', '||period||', 'i', 'told', 'you', 'ten', 'times', '||period||', '||return||', '||return||', 'alton:', 'pendant', '||exclammark||', 'those', 'bastards', '||period||', 'well', 'all', 'right', '||comma||', 'boys', '||period||', 'well', 'go', 'to', 'that', 'pakistani', 'restaurant', 'on', '46th', 'street', '||period||', 'youre', 'not', 'afraid', 'of', 'a', 'little', 'spice', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', '||rightparen||', 'master', 'of', 'the', 'house/doling', 'out', 'the', 'charm/ready', 'with', 'a', 'handshake', 'and', 'an', 'open', '||period||', '||period||', '||period||', '||return||', '||return||', 'alton:', 'pipe', 'down', '||comma||', 'chorus', 'boy', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||period||', '||period||', '||period||', 'its', 'snowing', '||period||', 'its', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'snow', '||period||', 'snow', '||comma||', 'that', 'cant', 'be', 'good', 'for', 'suede', '||comma||', 'can', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'wouldnt', 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'what', 'should', 'i', 'do', '||questionmark||', '||leftparen||', 'to', 'alton', '||rightparen||', 'uh', '||comma||', 'were', 'taking', 'a', 'cab', '||comma||', 'arent', 'we', '||questionmark||', '||return||', '||return||', 'alton:', 'cab', '||questionmark||', 'its', 'only', 'five', 'blocks', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'why', 'dont', 'you', 'just', 'turn', 'it', 'inside', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'inside', 'out', '||exclammark||', 'great', '||period||', '||return||', '||return||', 'alton:', 'wait', 'a', 'minute', '||period||', 'what', 'the', 'hell', 'do', 'you', 'call', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'turned', 'my', 'jacket', 'inside', 'out', '||period||', '||return||', '||return||', 'alton:', 'well', '||comma||', 'you', 'look', 'like', 'a', 'damn', 'fool', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'its', 'a', 'new', 'suede', 'jacket', '||period||', 'it', 'might', 'get', 'ruined', '||period||', '||return||', '||return||', 'alton:', 'well', '||comma||', 'youre', 'not', 'going', 'to', 'walk', 'down', 'the', 'street', 'with', 'me', 'and', 'my', 'daughter', 'dressed', 'like', 'that', '||period||', 'thats', 'for', 'damn', 'sure', '||period||', '||return||', '||return||', 'george:', 'its', 'uh', '||comma||', "it's", 'only', 'a', 'few', 'blocks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'intercom', '||rightparen||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'ive', 'gotta', 'feed', 'the', 'birds', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'got', 'any', 'of', 'those', 'mini', 'ritzes', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'believe', 'i', 'do', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'well', '||comma||', 'are', 'you', 'going', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'wheres', 'your', 'new', 'jacket', '||questionmark||', '||leftparen||', 'jerry', 'points', 'to', 'the', 'jacket', 'hanging', 'in', 'the', 'bathroom', '||period||', 'its', 'ruined', '||period||', '||rightparen||', 'what', '||questionmark||', '||leftparen||', 'kramer', 'enters', 'the', 'bathroom', '||comma||', 'and', 'sees', 'the', 'garment', '||period||', '||rightparen||', 'ohhh', '||period||', 'what', 'did', 'you', 'do', 'to', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'out', 'in', 'the', 'snow', 'last', 'night', '||period||', '||return||', '||return||', 'kramer:', 'dont', 'you', 'know', 'what', 'that', 'does', 'to', 'suede', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'an', 'idea', '||period||', '||leftparen||', 'elaine', 'enters', '||semicolon||', 'to', 'elaine', '||rightparen||', 'we', 'can', 'make', 'the', 'nine', '||dash||', 'thirty', 'at', 'cinema', 'three', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hello', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'listen', '||comma||', 'thanks', 'again', 'for', 'coming', 'last', 'night', '||period||', 'dad', 'said', 'he', 'had', 'a', 'great', 'time', '||period||', '||return||', '||return||', 'jerry:', 'is', 'he', 'still', 'in', 'town', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'hes', 'driving', 'back', 'to', 'maryland', 'tonight', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'uh', '||period||', '||period||', '||period||', 'what', 'are', 'you', 'gonna', 'do', 'with', 'that', 'one', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiling', '||rightparen||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'didnt', 'want', 'to', 'tell', 'you', 'this', '||comma||', 'but', 'usually', 'he', 'hates', 'everyone', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'gonna', 'throw', 'this', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'cant', 'wear', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'he', 'like', 'you', 'though', '||period||', 'said', 'you', 'reminded', 'him', 'of', 'somebody', 'he', 'knew', 'in', 'korea', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'well', '||comma||', 'if', 'youre', 'just', 'gonna', 'throw', 'it', 'out', '||comma||', 'you', 'know', '||comma||', 'i', 'could', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'go', 'ahead', '||comma||', 'take', 'it', '||period||', '||return||', '||return||', 'elaine:', 'dad', 'thinks', 'george', 'is', 'gay', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'because', 'of', 'all', 'the', 'singing', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'he', 'pretty', 'much', 'thinks', 'everyone', 'is', 'gay', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'see', '||comma||', 'i', 'like', 'it', 'like', 'this', '||period||', '||return||', '||return||', 'elaine:', 'isnt', 'that', '||period||', '||period||', '||period||', '||questionmark||', '||leftparen||', 'jerry', 'nods', '||period||', '||rightparen||', 'oh', '||comma||', 'is', 'this', 'from', 'the', 'snow', 'last', 'night', '||questionmark||', '||leftparen||', 'jerry', 'nods', '||period||', '||rightparen||', 'ugh', '||period||', '||period||', '||period||', 'you', 'know', 'what', 'you', 'shouldve', 'done', '||questionmark||', 'you', 'shouldve', 'turned', 'it', 'inside', 'out', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'try', 'and', 'remember', 'that', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'its', 'too', 'bad', 'you', 'gave', 'me', 'this', 'one', 'too', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'too', 'bad', '||period||', '||return||', '||return||', 'kramer:', 'im', 'gonna', 'have', 'to', 'do', 'something', 'about', 'this', 'lining', '||period||', '||return||', '||return||', 'alton:', '||leftparen||', 'singing', '||rightparen||', 'master', 'of', 'the', 'house/doling', 'out', 'the', 'charm/ready', 'with', 'a', 'handshake', 'and', 'an', 'open', 'palm', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'leather', 'jacket', 'that', 'got', 'ruined', '||period||', 'now', '||comma||', 'why', 'does', 'moisture', 'ruin', 'leather', '||questionmark||', 'i', 'dont', 'get', 'this', '||period||', 'arent', 'cows', 'outside', 'most', 'of', 'the', 'time', '||questionmark||', 'i', 'dont', 'understand', 'it', '||period||', 'when', 'its', 'raining', 'do', 'cows', 'go', 'up', 'to', 'the', 'farmhouse', '||comma||', 'let', 'us', 'in', '||comma||', 'were', 'all', 'wearin', 'leather', '||period||', 'open', 'the', 'door', '||exclammark||', 'were', 'gonna', 'ruin', 'the', 'whole', 'outfit', 'here', '||exclammark||', 'is', 'it', 'suede', '||questionmark||', 'i', 'am', 'suede', '||comma||', 'the', 'whole', 'thing', 'is', 'suede', '||comma||', 'i', 'cant', 'have', 'this', 'cleaned', '||period||', 'its', 'all', 'i', 'got', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'bad', 'thing', 'about', 'television', 'is', 'that', 'everybody', 'you', 'see', 'on', 'television', 'is', 'doing', 'something', 'better', 'than', 'what', 'youre', 'doing', '||period||', 'you', 'ever', 'see', 'anybody', 'on', 'tv', 'like', 'just', 'sliding', 'off', 'the', 'front', 'of', 'the', 'sofa', 'with', 'potato', 'chip', 'crumbs', 'on', 'their', 'face', '||questionmark||', 'some', 'people', 'have', 'a', 'little', 'too', 'much', 'fun', 'on', 'television', '||period||', 'the', 'soda', 'commercial', 'people', '||period||', 'where', 'do', 'they', 'summon', 'this', 'enthusiasm', '||questionmark||', 'have', 'you', 'seen', 'them', '||questionmark||', 'we', 'have', 'soda', '||comma||', 'we', 'have', 'soda', '||comma||', 'we', 'have', 'soda', '||comma||', 'jumping', '||comma||', 'laughing', '||comma||', 'flying', 'through', 'the', 'air', '||period||', 'its', 'a', 'can', 'of', 'soda', '||exclammark||', 'have', 'you', 'ever', 'been', 'standing', 'there', 'and', 'youre', 'watching', 'tv', 'and', 'youre', 'drinking', 'the', 'exact', 'same', 'product', 'that', 'theyre', 'advertising', 'right', 'there', 'on', 'tv', '||comma||', 'and', 'its', 'like', '||comma||', 'you', 'know', '||comma||', 'theyre', 'spiking', 'volleyballs', '||comma||', 'jet', '||dash||', 'skiing', '||comma||', 'girls', 'in', 'bikinis', 'and', 'im', 'standing', 'there', '||comma||', 'maybe', 'im', 'putting', 'too', 'much', 'ice', 'in', 'mine', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||rightparen||', 'so', 'then', '||comma||', 'as', 'we', 'were', 'leaving', '||comma||', 'we', 'were', 'just', 'kind', 'of', 'standing', 'there', '||comma||', 'and', 'she', 'was', 'sort', 'of', 'smiling', 'at', 'me', '||comma||', 'and', 'i', 'wasnt', 'sure', 'if', 'she', 'wanted', 'me', 'to', 'ask', 'her', 'out', '||comma||', 'because', 'when', 'women', 'smile', 'at', 'me', 'i', 'dont', 'know', 'what', 'it', 'means', '||period||', 'sometimes', 'i', 'interpret', 'it', 'like', 'theyre', 'psychotic', 'or', 'something', 'and', 'i', 'dont', 'know', 'if', 'im', 'supposed', 'to', 'smile', 'back', '||comma||', 'i', 'dont', 'know', 'what', 'to', 'do', '||period||', 'so', 'i', 'just', 'stood', 'there', 'like', 'remember', 'how', 'quayle', 'looked', 'when', 'benson', 'gave', 'him', 'that', 'kennedy', 'line', '||questionmark||', 'thats', 'what', 'i', 'looked', 'like', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'didnt', 'ask', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'froze', '||period||', '||return||', '||return||', 'jerry:', 'counter', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||period||', 'so', 'wait', '||comma||', 'wait', '||period||', 'a', 'half', '||dash||', 'hour', 'later', 'im', 'back', 'in', 'the', 'office', '||comma||', 'i', 'tell', 'lloyd', 'the', 'whole', 'story', '||period||', 'he', 'says', '||comma||', 'so', 'why', 'dont', 'you', 'call', 'her', '||questionmark||', 'i', 'says', '||comma||', 'i', 'cant', '||period||', 'i', 'couldnt', '||comma||', 'i', 'couldnt', 'do', 'it', 'right', 'then', '||period||', 'for', 'me', 'to', 'ask', 'a', 'woman', 'out', 'i', 'gotta', 'get', 'into', 'a', 'mental', 'state', 'like', 'the', 'karate', 'guys', 'before', 'they', 'break', 'the', 'bricks', '||period||', 'so', 'lloyd', 'calls', 'me', 'a', 'wuss', '||period||', '||return||', '||return||', 'jerry:', 'he', 'said', 'wuss', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'anyway', '||comma||', 'he', 'shamed', 'me', 'into', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'called', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', 'and', '||comma||', 'and', 'to', 'cover', 'my', 'nervousness', 'i', 'started', 'eating', 'an', 'apple', '||comma||', 'because', 'i', 'think', 'if', 'they', 'hear', 'you', 'chewing', 'on', 'the', 'other', 'end', 'of', 'the', 'phone', '||comma||', 'it', 'makes', 'you', 'sound', 'casual', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'like', 'a', 'farm', 'boy', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', 'so', 'i', 'call', 'her', 'up', '||comma||', 'i', 'tell', 'her', 'its', 'me', '||comma||', 'she', 'gives', 'me', 'an', 'enthusiastic', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'the', 'enthusiastic', 'hi', '||period||', 'thats', 'beautiful', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'dont', 'get', 'the', 'enthusiastic', 'hi', '||comma||', 'im', 'outta', 'there', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'so', 'youre', 'chewing', 'your', 'apple', '||comma||', 'you', 'got', 'your', 'enthusiastic', 'hi', '||period||', '||period||', '||period||', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'were', 'talking', '||comma||', 'and', 'i', 'dont', 'like', 'to', 'go', 'too', 'long', 'before', 'i', 'ask', 'them', 'out', '||comma||', 'i', 'wanna', 'get', 'it', 'over', 'with', 'right', 'away', '||comma||', 'so', 'i', 'just', 'blurt', 'out', '||comma||', 'what', 'are', 'you', 'doing', 'saturday', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'bought', '||period||', '||return||', '||return||', 'jerry:', 'great', 'day', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'george:', 'then', 'i', 'got', 'off', 'the', 'phone', 'right', 'away', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'its', 'like', 'robbing', 'a', 'bank', '||period||', 'you', 'dont', 'loiter', 'around', 'in', 'front', 'of', 'the', 'teller', 'holding', 'that', 'big', 'bag', 'of', 'money', '||period||', 'you', 'come', 'in', '||comma||', 'you', 'hit', 'and', 'get', 'out', '||period||', '||return||', '||return||', 'george:', 'its', 'amazing', '||period||', 'we', '||comma||', 'we', 'both', 'have', 'dates', 'on', 'the', 'same', 'night', '||period||', 'i', 'cant', 'remember', 'the', 'last', 'time', 'that', 'happened', '||period||', '||return||', '||return||', 'george:', 'i', 'cant', 'stand', 'doing', 'laundry', '||period||', 'thats', 'why', 'i', 'have', 'forty', 'pairs', 'of', 'underwear', '||period||', '||return||', '||return||', 'carol:', 'you', 'do', 'not', '||period||', '||return||', '||return||', 'george:', 'absolutely', '||period||', 'because', 'instead', 'of', 'doing', 'a', 'wash', '||comma||', 'i', 'just', 'keep', 'buying', 'underwear', '||period||', 'my', 'goal', 'is', 'to', 'have', 'over', 'three', 'hundred', 'and', 'sixty', 'pair', '||period||', 'that', 'way', '||comma||', 'i', 'only', 'have', 'to', 'do', 'wash', 'once', 'a', 'year', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'an', 'attempted', 'scottish', 'accent', '||rightparen||', 'come', 'on', '||comma||', 'try', 'it', '||period||', 'let', 'me', 'hear', 'you', 'try', 'a', 'scottish', 'accent', '||period||', '||return||', '||return||', 'donna:', 'thats', 'irish', '||period||', '||return||', '||return||', 'jerry:', 'irish', '||comma||', 'scottish', '||comma||', 'whats', 'the', 'difference', '||comma||', 'lassie', '||questionmark||', '||return||', '||return||', 'carol:', 'so', '||comma||', 'uh', '||comma||', 'thanks', 'for', 'dinner', '||period||', 'it', 'was', 'great', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'clears', 'his', 'throat', '||rightparen||', 'we', 'should', 'do', 'this', 'again', '||period||', '||return||', '||return||', 'carol:', 'would', 'you', 'like', 'to', 'come', 'upstairs', 'for', 'some', 'coffee', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'thanks', '||period||', 'i', 'cant', 'drink', 'coffee', 'late', 'at', 'night', '||comma||', 'it', 'keeps', 'me', 'up', '||period||', '||return||', '||return||', 'carol:', '||leftparen||', 'confused', 'by', 'his', 'response', '||rightparen||', 'so', '||comma||', 'um', '||comma||', 'okay', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'carol:', 'goodnight', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'donna:', 'thanks', 'again', 'for', 'the', 'movie', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'welcome', '||period||', '||return||', '||return||', 'donna:', 'id', 'invite', 'you', 'up', '||comma||', 'but', 'the', 'place', 'is', 'being', 'painted', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'thats', 'okay', '||period||', '||return||', '||return||', 'donna:', 'unless', 'you', 'want', 'to', 'go', 'to', 'your', 'place', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||period||', 'but', 'theres', 'no', 'cake', 'or', 'anything', '||comma||', 'if', 'thats', 'what', 'youre', 'looking', 'for', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'take', 'it', 'easy', '||exclammark||', 'huh', '||exclammark||', 'take', 'it', 'easy', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'if', 'ones', 'going', 'to', 'kill', 'oneself', '||comma||', 'the', 'least', 'you', 'could', 'do', 'is', 'leave', 'a', 'note', '||period||', 'its', 'common', 'courtesy', '||period||', 'i', 'dont', 'know', '||period||', 'thats', 'just', 'the', 'way', 'i', 'was', 'brought', 'up', '||period||', '||return||', '||return||', 'donna:', 'values', 'are', 'very', 'important', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', 'important', '||period||', 'so', 'what', 'are', 'you', 'doing', 'uh', 'thursday', 'night', '||questionmark||', 'you', 'wanna', 'have', 'dinner', '||questionmark||', '||return||', '||return||', 'donna:', 'thursdays', 'great', '||period||', '||return||', '||return||', 'jerry:', 'tan', 'pants', '||period||', 'why', 'do', 'i', 'buy', 'tan', 'pants', '||comma||', 'donna', '||questionmark||', 'i', 'dont', 'feel', 'comfortable', 'in', 'them', '||period||', '||return||', '||return||', 'donna:', 'are', 'those', 'cotton', 'dockers', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'cant', 'begin', 'to', 'tell', 'you', 'how', 'much', 'i', 'hate', 'that', 'commercial', '||period||', '||return||', '||return||', 'donna:', 'really', '||questionmark||', 'i', 'like', 'that', 'commercial', '||period||', '||return||', '||return||', 'jerry:', 'you', 'like', 'that', 'commercial', '||questionmark||', '||return||', '||return||', 'donna:', 'yeah', '||comma||', 'its', 'clever', '||period||', '||return||', '||return||', 'jerry:', 'now', 'wait', 'a', 'second', '||comma||', 'you', 'mean', 'the', 'one', 'where', 'the', 'guys', 'are', 'all', 'standing', 'around', '||comma||', 'supposedly', 'being', 'very', 'casual', 'and', 'witty', '||questionmark||', '||return||', '||return||', 'donna:', 'yeah', '||comma||', 'thats', 'the', 'one', '||period||', '||return||', '||return||', 'jerry:', 'what', 'could', 'you', 'possibly', 'like', 'about', 'that', '||questionmark||', '||return||', '||return||', 'donna:', 'i', 'dont', 'know', '||period||', 'i', 'like', 'the', '||comma||', 'guys', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'theyre', 'so', 'funny', 'and', 'so', 'comfortable', 'with', 'each', 'other', '||comma||', 'and', 'i', 'could', 'be', 'comfortable', 'too', '||comma||', 'if', 'i', 'had', 'pants', 'like', 'that', '||period||', 'i', 'could', 'sit', 'on', 'a', 'porch', 'and', 'wrestle', 'around', '||comma||', 'and', 'maybe', 'even', 'be', 'part', 'of', 'a', 'real', 'bull', 'session', '||period||', '||return||', '||return||', 'donna', ':', 'hey', '||comma||', 'i', 'know', 'guys', 'like', 'that', '||period||', 'to', 'me', 'the', 'dialogue', 'rings', 'true', '||period||', '||return||', '||return||', 'jerry:', 'even', 'if', 'the', 'dialogue', 'did', 'ring', 'true', '||period||', '||leftparen||', 'donna', 'starts', 'to', 'get', 'annoyed', 'that', 'jerry', "won't", 'let', 'the', 'conversation', 'go', '||rightparen||', 'even', 'if', 'somehow', 'somewhere', 'men', 'actually', 'talk', 'like', 'that', '||comma||', 'what', 'does', 'that', 'have', 'to', 'do', 'with', 'the', 'pants', '||questionmark||', 'doesnt', 'that', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'donna:', '||leftparen||', 'annoyed', '||rightparen||', 'thats', 'the', 'idea', '||period||', 'thats', 'whats', 'clever', 'about', 'it', '||comma||', 'that', 'theyre', 'not', 'talking', 'about', 'the', 'pants', '||period||', '||return||', '||return||', 'jerry:', 'but', 'theyre', 'talking', 'about', 'nothing', '||period||', '||return||', '||return||', 'donna:', 'thats', 'the', 'point', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'the', 'point', '||period||', '||return||', '||return||', 'donna:', 'no', 'one', 'is', 'telling', 'you', 'to', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'all', 'those', 'quick', 'shots', 'of', 'the', 'pants', '||period||', 'just', 'pants', '||comma||', 'pants', '||comma||', 'pants', '||comma||', 'pants', '||comma||', 'pants', '||comma||', 'pants', '||comma||', 'pants', '||period||', 'what', 'is', 'that', 'supposed', 'to', 'be', '||questionmark||', '||return||', '||return||', 'jerry:', 'whats', 'brutal', 'about', 'the', 'date', 'is', 'the', 'scrutiny', 'that', 'you', 'put', 'each', 'other', 'through', '||period||', 'because', 'whenever', 'you', 'think', 'about', 'this', 'person', 'in', 'terms', 'of', 'the', 'future', '||comma||', 'you', 'have', 'to', 'magnify', 'everything', 'about', 'them', '||period||', 'you', 'know', '||comma||', 'like', 'the', 'guyll', 'be', 'like', '||comma||', 'i', 'dont', 'think', 'her', 'eyebrows', 'are', 'even', '||period||', 'could', 'i', 'look', 'at', 'uneven', 'eyebrows', 'for', 'the', 'rest', 'of', 'my', 'life', '||questionmark||', 'and', 'of', 'course', 'the', 'womans', 'looking', 'at', 'the', 'guy', '||comma||', 'thinking', '||comma||', 'what', 'is', 'he', 'looking', 'at', '||questionmark||', 'do', 'i', 'want', 'somebody', 'looking', 'at', 'me', 'like', 'this', 'for', 'the', 'rest', 'of', 'my', 'life', '||questionmark||', '||return||', '||return||', 'jerry:', 'im', 'supposed', 'to', 'see', 'her', 'again', 'on', 'thursday', '||comma||', 'but', 'can', 'i', 'go', 'out', 'with', 'someone', 'who', 'actually', 'likes', 'this', 'commercial', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'once', 'broke', 'up', 'with', 'a', 'guy', 'because', 'he', 'didnt', 'keep', 'his', 'bathroom', 'clean', 'enough', '||period||', '||return||', '||return||', 'jerry:', 'no', 'kidding', '||period||', 'did', 'you', 'tell', 'him', 'that', 'was', 'the', 'reason', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'i', 'told', 'him', 'all', 'the', 'time', '||period||', 'you', 'would', 'not', 'have', 'believed', 'his', 'tub', '||period||', 'germs', 'were', 'building', 'a', 'town', 'in', 'there', 'they', 'were', 'constructing', 'offices', '||period||', 'houses', 'near', 'the', 'drain', 'were', 'going', 'for', 'a', 'hundred', 'and', 'fifty', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'still', 'thinking', 'about', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'invites', 'me', 'up', 'at', 'twelve', 'oclock', 'at', 'night', '||comma||', 'for', 'coffee', '||comma||', 'and', 'i', 'dont', 'go', 'up', '||period||', 'no', 'thank', 'you', '||period||', 'i', 'dont', 'want', 'coffee', '||period||', 'it', 'keeps', 'me', 'up', '||period||', 'too', 'late', 'for', 'me', 'to', 'drink', 'coffee', '||period||', 'i', 'said', 'this', 'to', 'her', '||period||', 'people', 'this', 'stupid', 'shouldnt', 'be', 'allowed', 'to', 'live', '||period||', 'i', 'cant', 'imagine', 'what', 'she', 'must', 'think', 'of', 'me', '||period||', '||return||', '||return||', 'jerry:', 'she', 'thinks', 'youre', 'a', 'guy', 'that', 'doesnt', 'like', 'coffee', '||period||', '||return||', '||return||', 'george:', 'she', 'invited', 'me', 'up', '||period||', 'coffees', 'not', 'coffee', '||comma||', 'coffee', 'is', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'coffee', 'was', 'coffee', '||period||', '||return||', '||return||', 'george:', 'coffees', 'coffee', 'in', 'the', 'morning', '||period||', 'its', 'not', 'coffee', 'at', 'twelve', 'oclock', 'at', 'night', '||period||', '||return||', '||return||', 'elaine:', 'well', 'some', 'people', 'drink', 'coffee', 'that', 'late', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'people', 'who', 'work', 'at', 'norad', '||comma||', 'whore', 'on', 'twenty', '||dash||', 'four', 'hour', 'missile', 'watch', '||period||', 'everything', 'was', 'going', 'along', 'so', 'great', '||period||', 'she', 'was', 'laughing', '||comma||', 'i', 'was', 'funny', '||period||', '||period||', '||period||', 'i', 'kept', 'saying', 'to', 'myself', '||comma||', 'keep', 'it', 'up', '||comma||', 'dont', 'blow', 'it', '||comma||', 'youre', 'doing', 'great', '||period||', '||return||', '||return||', 'elaine:', 'its', 'all', 'in', 'your', 'head', '||period||', 'all', 'she', 'knows', 'is', 'she', 'had', 'a', 'good', 'time', '||period||', 'i', 'think', 'you', 'should', 'call', 'her', '||period||', '||return||', '||return||', 'george:', 'i', 'cant', 'call', 'her', 'now', '||period||', 'its', 'too', 'soon', '||period||', 'im', 'planning', 'a', 'wednesday', 'call', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'why', '||questionmark||', 'i', 'love', 'it', 'when', 'guys', 'call', 'me', 'the', 'next', 'day', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'you', 'do', '||comma||', 'but', 'youre', 'imagining', 'a', 'guy', 'you', 'like', '||comma||', 'not', 'a', 'guy', 'who', 'goes', '||comma||', 'oh', 'no', '||comma||', 'i', 'dont', 'drink', 'coffee', 'late', 'at', 'night', '||period||', 'if', 'i', 'call', 'her', 'now', '||comma||', 'shes', 'gonna', 'think', 'im', 'too', 'needy', '||period||', 'women', 'dont', 'wanna', 'see', 'need', '||period||', 'they', 'want', 'a', 'take', '||dash||', 'charge', 'guy', 'a', 'colonel', '||comma||', 'a', 'kaiser', '||comma||', 'a', 'tsar', '||period||', '||return||', '||return||', 'elaine:', 'all', 'shell', 'think', 'is', 'that', 'you', 'like', 'her', '||period||', '||return||', '||return||', 'george:', "that's", 'exactly', 'what', "i'm", 'trying', 'to', 'avoid', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'she', 'wants', 'you', 'to', 'like', 'her', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'she', 'wants', 'me', 'to', 'like', 'her', '||comma||', 'if', 'she', 'likes', 'me', '||period||', 'but', 'she', 'doesnt', 'like', 'me', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', 'what', 'your', 'parents', 'did', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'just', 'thought', 'of', 'a', 'really', 'funny', 'thing', 'for', 'your', 'act', '||period||', 'all', 'right', '||comma||', 'youre', 'up', 'there', '||comma||', 'youre', 'on', 'the', 'stage', 'and', 'you', 'go', '||comma||', 'hey', '||comma||', 'you', 'ever', 'notice', 'how', 'cars', 'here', 'in', 'new', 'york', '||comma||', 'they', 'never', 'get', 'out', 'of', 'the', 'way', 'of', 'ambulances', 'anymore', '||period||', 'someones', 'in', 'a', 'life', '||dash||', 'and', '||dash||', 'death', 'situation', '||comma||', 'and', 'were', 'thinking', '||comma||', 'well', '||comma||', 'sorry', 'buddy', '||comma||', 'you', 'shouldve', 'thought', 'of', 'that', 'when', 'you', 'were', 'eating', 'cheese', 'omelettes', 'and', 'sauages', 'for', 'breakfast', 'every', 'morning', 'for', 'the', 'last', 'thirty', 'years', '||period||', '||return||', '||return||', 'kramer:', 'so', 'you', 'gonna', 'use', 'it', '||questionmark||', '||return||', '||return||', 'jerry', ':', 'i', 'dont', 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'its', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'it', 'is', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'i', 'like', 'to', 'use', 'my', 'own', 'material', '||period||', '||return||', '||return||', 'kramer:', 'thats', 'as', 'good', 'as', 'anything', 'you', 'do', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'i', 'gotta', 'make', 'a', 'call', '||period||', 'everybody', 'out', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'we', 'have', 'to', 'leave', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'i', 'cant', 'call', 'a', 'woman', 'with', 'other', 'people', 'in', 'the', 'room', '||period||', 'come', 'on', '||comma||', 'lets', 'go', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'see', '||comma||', 'this', 'is', 'the', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'kicking', 'me', 'out', 'of', 'my', 'house', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'encouraging', '||rightparen||', 'dont', 'forget', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'right', '||comma||', 'alright', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'oh', 'jerry', '||comma||', 'do', 'you', 'have', 'any', 'apples', '||questionmark||', '||return||', '||return||', 'jerry:', 'dont', 'do', 'the', 'apples', '||period||', 'its', 'enough', 'already', 'with', 'the', 'apples', '||period||', '||return||', '||return||', 'carol:', '||leftparen||', 'from', 'the', 'phone', '||semicolon||', 'a', 'recorded', 'message', '||rightparen||', 'hi', '||comma||', 'its', 'carol', '||comma||', 'ill', 'get', 'back', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'um', '||comma||', 'hi', '||comma||', 'its', 'george', '||comma||', 'george', 'costanza', '||comma||', 'remember', 'me', '||questionmark||', 'the', 'guy', 'that', 'didnt', 'come', 'up', 'for', 'coffee', '||period||', 'you', 'see', '||comma||', 'i', 'didnt', 'realise', 'that', 'coffee', 'didnt', 'really', 'mean', '||period||', '||period||', '||period||', 'well', '||comma||', 'whatever', '||period||', 'anyway', '||comma||', 'it', 'was', 'fun', '||period||', 'it', 'was', '||period||', '||period||', '||period||', 'it', 'was', 'fun', '||comma||', 'so', '||period||', '||period||', '||period||', 'oh', 'boy', '||comma||', 'um', '||comma||', 'so', '||period||', '||period||', '||period||', 'you', 'call', 'me', 'back', '||period||', 'if', 'you', 'want', '||period||', 'its', 'up', 'to', 'you', '||comma||', 'you', 'know', '||comma||', 'whatever', 'you', 'wanna', 'do', '||period||', 'either', 'way', '||period||', 'the', 'balls', 'in', 'your', 'court', '||period||', 'so', 'uh', '||comma||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'jerry:', 'im', 'just', 'gonna', 'get', 'my', 'jacket', '||comma||', 'ill', 'meet', 'you', 'downstairs', '||period||', 'whats', 'the', 'matter', '||comma||', 'did', 'you', 'call', '||questionmark||', '||return||', '||return||', 'george:', 'got', 'her', 'machine', '||period||', 'im', 'dead', '||comma||', 'im', 'a', 'dead', 'man', '||period||', 'thats', 'it', '||period||', 'im', 'dead', '||comma||', 'im', 'a', 'dead', 'man', '||period||', 'dead', 'man', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', 'what', 'the', 'hell', 'i', 'said', '||period||', 'i', 'gave', 'her', 'an', 'ultimatum', 'and', 'theres', 'nothing', 'i', 'can', 'do', '||period||', 'its', 'a', 'machine', '||period||', 'the', 'little', 'light', 'is', 'blinking', 'right', 'now', '||comma||', 'come', 'and', 'listen', 'to', 'the', 'idiot', '||period||', 'hey', 'everybody', '||comma||', 'the', 'idiots', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'after', 'one', 'date', 'you', 'try', 'and', 'improvise', 'on', 'her', 'machine', '||questionmark||', '||return||', '||return||', 'george:', 'now', 'im', 'in', 'the', 'worst', 'position', 'of', 'all', '||period||', '||return||', '||return||', 'elaine:', 'yknow', '||comma||', 'my', 'brother', '||dash||', 'in', '||dash||', 'law', 'once', 'left', 'a', 'message', 'on', 'this', 'guys', 'machine', '||comma||', 'and', 'he', 'blurted', 'out', 'some', 'business', 'information', 'he', 'wasnt', 'supposed', 'to', '||comma||', 'and', 'it', 'would', 'have', 'cost', 'him', 'fifteen', 'thousand', 'dollars', '||comma||', 'so', 'he', 'waited', 'outside', 'the', 'guys', 'house', 'and', 'when', 'the', 'guy', 'came', 'home', 'he', 'went', 'upstairs', 'with', 'him', 'and', 'he', 'switched', 'the', 'tape', '||period||', '||return||', '||return||', 'george:', 'he', 'did', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'somebody', 'did', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'shell', 'call', 'you', 'back', '||period||', 'youre', 'overreacting', '||period||', '||return||', '||return||', 'jerry:', 'not', 'once', '||period||', '||return||', '||return||', 'donna:', 'never', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'never', 'seen', 'one', 'episode', 'of', 'i', 'love', 'lucy', 'in', 'my', 'life', '||comma||', 'ever', '||period||', '||return||', '||return||', 'donna:', 'thats', 'amazing', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'donna:', 'is', 'there', 'anything', 'else', 'about', 'you', 'i', 'should', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'im', 'lactose', 'intolerant', '||period||', '||return||', '||return||', 'donna:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'no', 'patience', 'for', 'lactose', '||period||', 'and', 'i', 'wont', 'stand', 'for', 'it', '||period||', 'um', '||comma||', 'ill', 'be', 'right', 'back', '||period||', '||return||', '||return||', 'george:', 'wait', 'till', 'you', 'hear', 'this', '||exclammark||', '||leftparen||', 'george', 'sees', 'donna', 'and', 'no', 'jerry', '||period||', '||rightparen||', 'whoa', '||comma||', 'ah', '||comma||', 'im', 'sorry', '||comma||', 'i', 'didnt', '||comma||', 'i', 'had', 'no', 'idea', '||period||', '||return||', '||return||', 'donna:', 'wait', '||comma||', 'wait', '||period||', 'hes', 'in', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'wanted', 'to', 'talk', 'to', 'him', 'for', 'a', 'minute', '||comma||', 'but', 'ill', 'come', 'back', '||period||', '||return||', '||return||', 'donna:', 'you', 'dont', 'have', 'to', 'leave', '||period||', '||return||', '||return||', 'george:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'donna:', 'yes', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'donna:', 'im', 'donna', '||period||', '||return||', '||return||', 'george:', 'donna', '||period||', 'oh', '||comma||', 'youre', 'the', 'one', 'that', 'likes', 'that', 'commercial', '||exclammark||', '||return||', '||return||', 'donna:', 'he', 'told', 'you', 'about', 'that', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'back', '||dash||', 'pedalling', '||rightparen||', 'no', '||comma||', 'he', '||comma||', 'he', 'didnt', 'actually', 'tell', 'me', 'that', '||comma||', 'uh', '||comma||', 'we', 'were', 'talking', 'about', 'that', 'commercial', 'in', 'fact', 'i', 'think', 'i', 'brought', 'it', 'up', 'because', 'i', 'like', 'that', 'commercial', '||period||', 'no', '||comma||', 'he', '||comma||', 'he', 'would', 'never', 'tell', 'me', 'anything', '||period||', 'he', 'never', 'discusses', 'anything', '||period||', 'hes', '||comma||', 'hes', 'like', 'a', 'clam', '||period||', 'youre', 'not', 'gonna', 'mention', 'this', '||comma||', 'to', 'him', '||period||', '||period||', '||period||', '||return||', '||return||', 'donna:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'so', 'you', 'go', 'around', 'telling', 'your', 'friends', 'im', 'not', 'hip', 'because', 'i', 'like', 'that', 'commercial', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||leftparen||', 'to', 'george', '||rightparen||', 'what', 'did', '||comma||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'say', '||questionmark||', 'what', '||questionmark||', 'nothing', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'donna:', 'you', 'told', 'him', 'how', 'i', 'like', 'the', 'commercial', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', 'what', 'if', 'i', 'said', 'that', '||questionmark||', '||return||', '||return||', 'donna:', 'well', '||comma||', 'so', '||comma||', 'you', 'didnt', 'have', 'to', 'tell', 'your', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'had', 'to', 'tell', 'my', 'friends', 'my', 'friends', 'didnt', 'have', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'donna', '||rightparen||', 'why', 'did', 'you', 'have', 'to', 'get', 'me', 'in', 'trouble', '||questionmark||', '||return||', '||return||', 'donna:', 'i', 'dont', 'like', 'you', 'talking', 'about', 'me', 'with', 'your', 'friends', 'behind', 'my', 'back', '||period||', '||return||', '||return||', 'george:', 'boy', 'oh', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'said', 'i', 'couldnt', 'believe', 'you', 'liked', 'that', 'commercial', '||period||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'donna:', 'i', 'asked', 'some', 'friends', 'of', 'mine', 'this', 'week', '||comma||', 'and', 'all', 'of', 'them', 'liked', 'the', 'commercial', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'bet', 'you', 'got', 'a', 'regular', 'algonquin', 'round', 'table', 'there', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'uh', '||comma||', 'kramer', '||comma||', 'this', 'is', 'donna', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'cotton', 'dockers', '||exclammark||', '||return||', '||return||', 'george:', 'hello', '||exclammark||', 'all', 'right', '||comma||', 'we', 'should', 'be', 'going', '||period||', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'where', 'are', 'we', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'come', 'on', '||exclammark||', '||return||', '||return||', 'donna:', 'dont', 'bother', '||comma||', 'im', 'leaving', '||period||', '||return||', '||return||', 'jerry:', 'donna', '||comma||', 'really', '||comma||', 'youre', 'making', 'too', 'much', 'of', 'this', '||period||', '||return||', '||return||', 'kramer:', 'one', 'hundred', 'percent', 'cotton', 'dockers', '||period||', 'if', 'theyre', 'not', 'dockers', '||comma||', 'theyre', 'just', 'pants', '||return||', '||return||', 'jerry:', 'please', '||comma||', 'donna', '||period||', '||period||', '||period||', '||return||', '||return||', 'donna:', 'i', 'dont', 'wanna', 'hear', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'cant', 'believe', 'i', 'said', 'that', '||period||', 'you', 'know', 'me', '||comma||', 'im', 'a', 'vault', '||period||', '||return||', '||return||', 'jerry:', 'dont', 'worry', 'about', 'it', '||comma||', 'it', 'wasnt', 'working', 'anyway', '||period||', '||return||', '||return||', 'kramer:', 'what', 'happened', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'ill', 'tell', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'you', 'are', 'not', 'gonna', 'believe', 'whats', 'going', 'on', 'with', 'this', 'woman', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'so', 'you', 'remember', 'i', 'made', 'the', 'initial', 'call', 'sunday', '||comma||', 'she', 'doesnt', 'call', 'back', '||period||', 'i', 'call', 'again', 'monday', '||comma||', 'i', 'leave', 'another', 'message', '||period||', 'i', 'call', 'tuesday', '||comma||', 'i', 'get', 'the', 'machine', 'again', '||comma||', 'i', 'know', 'youre', 'there', '||comma||', 'i', 'dont', 'know', 'what', 'your', 'story', 'is', '||period||', 'yesterday', '||comma||', 'im', 'a', 'volcano', 'i', 'try', 'one', 'more', 'call', '||comma||', 'the', 'machine', 'comes', 'on', '||comma||', 'and', 'i', 'let', 'fly', 'like', 'mussolini', 'from', 'the', 'balcony', '||comma||', 'where', 'the', 'hell', 'do', 'you', 'get', 'the', 'nerve', '||questionmark||', 'you', 'invite', 'me', 'up', 'for', 'coffee', 'and', 'then', 'you', 'dont', 'call', 'me', 'back', 'for', 'four', 'days', '||questionmark||', 'i', 'dont', 'like', 'coffee', '||comma||', 'i', 'dont', 'have', 'to', 'come', 'up', '||period||', 'id', 'like', 'to', 'get', 'one', 'more', 'shot', 'at', 'the', 'coffee', 'just', 'so', 'i', 'could', 'spit', 'it', 'in', 'your', 'face', '||period||', '||return||', '||return||', 'jerry:', 'you', 'said', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'lost', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'blame', 'you', '||period||', 'i', 'cant', 'believe', 'she', 'never', 'called', 'you', 'back', '||period||', '||return||', '||return||', 'george:', 'she', 'did', '||period||', 'today', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'called', 'my', 'office', '||period||', 'she', 'said', 'shes', 'been', 'in', 'the', 'hamptons', 'since', 'sunday', '||period||', 'she', 'didnt', 'know', 'if', 'i', 'was', 'trying', 'to', 'get', 'in', 'touch', 'with', 'her', '||period||', 'her', 'machine', 'broke', '||comma||', 'and', 'shes', 'been', 'using', 'her', 'old', 'machine', 'and', 'she', 'doesnt', 'have', 'the', 'beeper', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'she', 'didnt', 'get', 'the', 'messages', '||period||', '||return||', '||return||', 'george:', 'exactly', '||comma||', 'but', 'theyre', 'on', 'there', 'waiting', '||period||', 'she', 'said', 'she', 'cant', 'wait', 'to', 'see', 'me', '||comma||', 'were', 'having', 'dinner', 'tonight', '||period||', 'shes', 'supposed', 'to', 'call', 'me', 'as', 'soon', 'as', 'she', 'gets', 'home', '||period||', '||return||', '||return||', 'jerry:', 'but', 'what', 'about', 'the', 'messages', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaines', 'thing', '||questionmark||', 'how', 'you', 'gonna', 'get', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'ill', 'meet', 'her', 'outside', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'know', 'as', 'soon', 'as', 'she', 'gets', 'in', 'the', 'apartment', 'shes', 'going', 'right', 'for', 'that', 'machine', '||period||', '||return||', '||return||', 'george:', 'unless', 'she', 'goes', 'for', 'the', 'bathroom', '||period||', 'thats', 'my', 'only', 'chance', '||period||', '||leftparen||', 'george', 'crumbles', '||period||', 'he', 'drops', 'the', 'cassette', 'on', 'the', 'table', '||period||', '||rightparen||', 'who', 'am', 'i', 'kidding', '||questionmark||', 'i', 'cant', 'do', 'this', '||comma||', 'i', 'cant', 'do', 'this', '||period||', 'i', 'dont', 'even', 'know', 'how', 'to', 'work', 'those', 'stupid', 'machines', '||period||', '||return||', '||return||', 'jerry:', 'theres', 'nothing', 'to', 'it', '||period||', 'you', 'lift', 'the', 'lid', '||comma||', 'it', 'comes', 'right', 'out', '||period||', '||return||', '||return||', 'george:', 'you', 'do', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'itll', 'be', 'so', 'much', 'easier', '||period||', '||return||', '||return||', 'jerry:', 'how', 'you', 'gonna', 'get', 'me', 'up', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'ill', 'tell', 'her', 'i', 'bumped', 'into', 'you', '||comma||', 'im', 'giving', 'you', 'a', 'ride', 'uptown', '||period||', '||return||', '||return||', 'jerry:', 'and', 'who', 'makes', 'the', 'switch', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'do', '||period||', '||return||', '||return||', 'jerry:', 'i', 'do', '||period||', '||return||', '||return||', 'george', ':', 'i', 'cant', 'do', 'it', '||period||', 'ill', '||comma||', 'ill', 'keep', 'her', 'busy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'get', 'involved', 'in', 'this', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'may', 'be', 'in', 'love', 'with', 'this', 'woman', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'she', 'sees', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'are', 'such', 'a', 'wuss', '||period||', '||return||', '||return||', 'jerry:', 'a', 'wuss', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'call', 'me', 'a', 'wuss', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'there', 'is', 'traffic', '||period||', 'it', 'might', 'take', 'her', 'till', 'eight', '||dash||', 'fifteen', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'one', 'problem', '||period||', 'youre', 'keeping', 'her', 'busy', 'in', 'the', 'other', 'room', '||period||', 'now', '||comma||', 'what', 'if', 'she', 'somehow', 'gets', 'away', 'from', 'you', 'and', 'is', 'coming', 'in', '||questionmark||', 'you', 'have', 'to', 'signal', 'me', 'that', 'shes', 'coming', '||period||', '||return||', '||return||', 'george:', 'a', 'signal', '||comma||', 'right', '||comma||', 'um', '||comma||', 'okay', '||comma||', 'uh', '||comma||', 'okay', '||comma||', 'the', 'signal', 'is', '||comma||', 'ill', 'call', 'out', 'tippy', '||dash||', 'toe', '||exclammark||', '||return||', '||return||', 'jerry:', 'tippy', 'toe', '||questionmark||', 'i', 'dont', 'think', 'so', '||period||', '||return||', '||return||', 'george:', 'you', 'dont', 'like', 'tippy', 'toe', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'tippy', 'toe', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'uh', '||comma||', 'okay', '||comma||', 'i', 'got', 'it', '||comma||', 'um', '||comma||', 'ill', 'sing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'song', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'solve', 'a', 'problem', 'like', 'maria', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'its', 'a', 'lovely', 'song', '||period||', '||leftparen||', 'singing', '||rightparen||', 'how', 'do', 'you', 'solve', 'a', 'problem', 'like', 'maria', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'pick', 'it', '||period||', '||return||', '||return||', 'jerry:', 'lemon', 'tree', '||period||', '||return||', '||return||', 'george:', 'peter', '||comma||', 'paul', 'and', 'mary', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'trini', 'lopez', '||period||', '||return||', '||return||', 'jerry', '&', 'george:', '||leftparen||', 'singing', '||rightparen||', 'lemon', 'tree', '||comma||', 'very', 'pretty', 'and', 'a', 'lemon', 'flower', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'alright', 'ok', '||period||', 'you', 'got', 'the', 'tape', '||questionmark||', '||return||', '||return||', 'jerry:', 'standard', '||period||', 'micro', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'feel', '||questionmark||', 'confident', '||questionmark||', '||return||', '||return||', 'jerry:', 'feel', 'good', '||period||', '||return||', '||return||', 'george:', 'you', 'nervous', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'get', 'up', '||comma||', 'get', 'up', '||comma||', 'its', 'her', '||exclammark||', 'oh', '||comma||', 'the', 'hell', 'with', 'this', '||comma||', 'im', 'scared', 'to', 'death', '||comma||', 'just', 'walk', 'away', '||comma||', 'its', 'off', '||comma||', 'cancel', 'everything', '||comma||', 'go', '||exclammark||', '||return||', '||return||', 'carol:', 'hey', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', 'i', 'thought', 'i', 'was', 'supposed', 'to', 'call', 'you', 'when', 'i', 'got', 'home', '||period||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', 'couldnt', 'wait', '||period||', 'i', 'was', 'too', 'anxious', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'carol:', 'oh', '||comma||', 'thats', 'so', 'sweet', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'my', 'friend', '||comma||', 'jerry', 'seinfeld', '||period||', 'i', 'just', 'bumped', 'into', 'him', 'around', 'the', 'corner', '||period||', 'isnt', 'that', 'a', 'coincidence', '||questionmark||', 'the', 'funny', 'thing', 'is', '||comma||', 'i', 'see', 'him', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'carol:', 'its', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'carol:', 'so', '||comma||', 'im', 'starving', '||period||', 'where', 'are', 'we', 'gonna', 'eat', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'we', 'could', 'go', 'uptown', '||comma||', 'and', 'that', 'way', 'we', 'could', 'give', 'jerry', 'a', 'ride', 'home', '||period||', '||return||', '||return||', 'carol:', 'okay', '||period||', 'lets', 'go', '||comma||', 'im', 'ready', '||comma||', 'whered', 'you', 'park', '||questionmark||', '||return||', '||return||', 'george:', 'dont', 'you', 'wanna', 'go', 'upstairs', 'first', '||questionmark||', '||return||', '||return||', 'carol:', 'no', '||comma||', 'what', 'for', '||questionmark||', 'ill', 'just', 'give', 'my', 'bag', 'to', 'the', 'doorman', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'really', 'need', 'to', 'use', 'the', 'bathroom', '||period||', '||return||', '||return||', 'carol:', 'oh', 'well', 'theres', 'a', 'bathroom', 'in', 'the', 'coffee', 'shop', 'just', 'next', 'door', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||comma||', 'but', 'uh', '||comma||', 'i', 'have', 'to', 'make', 'a', 'call', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'carol:', 'well', 'they', 'have', 'a', 'phone', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'jerry', '||period||', 'he', 'has', 'this', 'phobia', 'about', 'public', 'toilets', '||period||', 'i', 'think', 'we', 'really', 'should', 'go', 'upstairs', '||period||', '||return||', '||return||', 'carol:', '||leftparen||', 'aloud', '||rightparen||', 'you', 'know', '||comma||', 'i', 'think', 'i', 'will', 'go', 'upstairs', '||period||', 'i', 'can', 'check', 'my', 'machine', '||period||', '||return||', '||return||', 'george:', 'right', '||comma||', 'right', '||period||', '||return||', '||return||', 'carol:', 'the', 'bathrooms', 'on', 'the', 'hall', 'to', 'the', 'right', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'you', 'know', '||comma||', 'why', 'dont', 'you', 'go', 'first', '||comma||', 'you', 'just', 'had', 'a', 'long', 'trip', '||period||', '||return||', '||return||', 'carol:', 'no', '||comma||', 'im', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'you', 'know', '||comma||', 'its', 'the', 'damnedest', 'thing', '||period||', 'it', 'went', 'away', '||period||', '||return||', '||return||', 'carol:', 'oh', '||comma||', 'thats', 'weird', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'that', 'can', 'happen', '||period||', 'ive', '||comma||', 'uh', '||comma||', 'ive', 'read', 'about', 'that', 'in', 'medical', 'journals', '||period||', 'its', 'a', 'freak', 'thing', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'carol:', 'well', '||comma||', 'let', 'me', 'just', 'check', 'my', 'messages', '||comma||', 'and', 'well', 'go', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'carol', '||comma||', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'second', '||questionmark||', 'right', 'now', '||questionmark||', '||return||', '||return||', 'carol:', 'sure', '||period||', '||return||', '||return||', 'george:', 'please', '||comma||', 'this', 'is', 'very', '||comma||', 'very', 'important', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'from', 'other', 'room', '||rightparen||', 'uh', '||comma||', 'tippy', 'toe', '||exclammark||', 'tippy', 'toe', '||exclammark||', 'lemon', 'tree', '||exclammark||', '||return||', '||return||', 'carol:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'now', 'i', 'know', 'who', 'you', 'are', '||exclammark||', 'youre', 'a', 'comedian', '||period||', 'ive', 'seen', 'you', '||comma||', 'its', 'driving', 'me', 'crazy', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', 'i', 'am', '||period||', '||return||', '||return||', 'george:', 'carol', '||comma||', 'thats', 'so', 'rude', '||period||', 'please', '||comma||', 'im', 'serious', '||comma||', 'just', 'for', 'a', 'moment', '||comma||', 'if', 'you', 'wouldnt', 'mind', '||period||', 'and', 'then', 'well', 'talk', 'to', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'calls', '||rightparen||', 'hey', 'you', 'two', '||period||', 'im', 'ready', 'to', 'go', '||period||', '||return||', '||return||', 'carol:', 'thats', 'what', 'you', 'had', 'to', 'tell', 'me', '||questionmark||', 'your', 'father', 'wears', 'sneakers', 'in', 'the', 'pool', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'dont', 'you', 'find', 'that', 'strange', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'carol:', 'well', '||comma||', 'ill', 'just', 'check', 'my', 'machine', 'and', 'well', 'go', '||period||', '||return||', '||return||', 'carol:', 'no', '||comma||', 'nothing', 'here', '||comma||', 'lets', 'go', '||period||', '||leftparen||', 'carol', '||comma||', 'george', 'and', 'jerry', 'head', 'for', 'the', 'door', '||period||', 'carol', 'opens', 'it', '||period||', '||rightparen||', 'oh', '||comma||', 'i', 'forgot', 'to', 'tell', 'you', '||period||', 'after', 'i', 'talked', 'to', 'you', 'today', 'my', 'neighbour', 'called', 'me', 'and', 'played', 'my', 'messages', 'to', 'me', 'over', 'the', 'phone', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'carol:', 'yours', 'were', 'hilarious', '||comma||', 'we', 'were', 'both', 'cracking', 'up', '||period||', 'i', 'just', 'love', 'jokes', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'my', 'phone', 'machine', '||period||', 'i', 'wish', 'i', 'was', 'a', 'phone', 'machine', '||period||', 'i', 'wish', 'if', 'i', 'saw', 'somebody', 'on', 'the', 'street', 'i', 'didnt', 'want', 'to', 'talk', 'to', '||comma||', 'i', 'could', 'go', '||comma||', 'excuse', 'me', '||comma||', 'im', 'not', 'in', 'right', 'now', '||period||', 'if', 'you', 'would', 'just', 'leave', 'a', 'message', '||comma||', 'i', 'could', 'walk', 'away', '||period||', 'i', 'also', 'have', 'a', 'cordless', 'phone', '||comma||', 'but', 'i', 'dont', 'like', 'that', 'as', 'much', '||comma||', 'because', 'you', 'cant', 'slam', 'down', 'a', 'cordless', 'phone', '||period||', 'you', 'get', 'mad', 'at', 'somebody', 'on', 'a', 'real', 'phone', 'you', 'cant', 'talk', 'to', 'me', 'like', 'that', '||exclammark||', 'bang', '||exclammark||', 'you', 'know', '||period||', 'you', 'get', 'mad', 'at', 'somebody', 'on', 'a', 'cordless', 'phone', 'you', 'cant', 'talk', 'to', 'me', 'like', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'painted', 'my', 'apartment', 'again', '||period||', 'ive', 'been', 'living', 'in', 'this', 'apartment', 'for', 'years', 'and', 'years', '||comma||', 'and', 'every', 'time', 'i', 'paint', 'it', '||comma||', 'it', 'kinda', 'gets', 'me', 'down', '||period||', 'i', 'look', 'around', '||comma||', 'and', 'i', 'think', '||comma||', 'well', '||comma||', 'its', 'a', 'little', 'bit', 'smaller', 'now', '||period||', 'you', 'know', '||comma||', 'i', 'realize', 'its', 'just', 'the', 'thickness', 'of', 'the', 'paint', '||comma||', 'but', 'im', 'aware', 'of', 'it', '||period||', 'it', 'just', 'coming', 'in', 'and', 'coming', 'in', '||period||', 'every', '||dash||', 'time', 'i', 'paint', 'it', '||comma||', 'its', 'closer', 'and', 'closer', '||period||', 'i', 'dont', 'even', 'know', 'where', 'the', 'wall', 'outlets', 'are', 'anymore', '||period||', 'i', 'just', 'look', 'for', 'like', 'a', 'lump', 'with', 'two', 'slots', 'in', 'it', '||period||', 'kinda', 'looks', 'like', 'a', 'pig', 'is', 'trying', 'to', 'push', 'his', 'way', 'through', 'from', 'the', 'other', 'side', '||period||', 'thats', 'where', 'i', 'plug', 'in', '||period||', 'my', 'idea', 'of', 'the', 'perfect', 'living', 'room', 'would', 'be', 'the', 'bridge', 'on', 'the', 'starship', 'enterprise', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'big', 'chair', '||comma||', 'nice', 'screen', '||comma||', 'remote', 'control', '||period||', '||period||', '||period||', 'thats', 'why', 'star', 'trek', 'really', 'was', 'the', 'ultimate', 'male', 'fantasy', '||period||', 'just', 'hurtling', 'through', 'space', 'in', 'your', 'living', 'room', '||comma||', 'watching', 'tv', '||period||', 'thats', 'why', 'all', 'the', 'aliens', 'were', 'always', 'dropping', 'in', '||comma||', 'because', 'kirk', 'was', 'the', 'only', 'one', 'that', 'had', 'the', 'big', 'screen', '||period||', 'they', 'came', 'over', 'friday', 'nights', '||comma||', 'klingon', 'boxing', '||comma||', 'gotta', 'be', 'there', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'mousse', '||period||', 'i', 'moussed', 'up', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', 'it', 'was', 'just', 'a', 'matter', 'of', 'time', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', "should've", 'done', 'this', 'years', 'ago', '||period||', 'i', 'mean', '||comma||', 'i', 'feel', 'like', "i've", 'had', 'two', 'lives', '||period||', 'my', 'pre', '||dash||', 'mousse', '||period||', 'and', 'now', '||comma||', 'i', 'begin', 'my', 'post', '||dash||', 'mousse', '||period||', 'hey', '||comma||', 'tell', 'me', 'the', 'truth', '||comma||', 'have', 'you', 'ever', 'seen', 'a', 'better', 'looking', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'looks', 'are', 'so', 'subjective', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'mean', 'to', 'interrupt', 'or', 'anything', '||comma||', 'but', 'on', 'sunday', '||comma||', 'my', 'friend', 'is', 'having', 'a', 'brunch', 'for', 'the', 'new', 'york', 'marathon', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'annoyed', 'that', 'he', 'forgot', '||rightparen||', 'oh', '||comma||', 'i', 'keep', 'forgetting', 'to', 'enter', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', 'she', 'lives', 'right', 'above', 'first', 'avenue', '||comma||', 'says', 'she', 'has', 'a', 'perfect', 'view', 'of', 'the', 'race', '||period||', 'and', 'she', 'said', 'i', 'can', 'invite', 'some', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'maybe', '||period||', '||return||', '||return||', 'harold:', '||leftparen||', 'o', '||period||', 's', '||period||', '||rightparen||', 'no', '||comma||', 'im', 'not', 'going', 'up', 'there', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'harold', 'and', 'manny', '||period||', '||return||', '||return||', 'harold:', 'im', 'not', 'going', '||period||', '||return||', '||return||', 'jerry:', 'boys', '||comma||', 'boys', '||period||', '||return||', '||return||', 'harold:', 'oh', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', 'slid', 'the', 'rent', 'under', 'your', 'door', '||comma||', 'harold', '||period||', 'did', 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'harold:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'hey', '||comma||', 'jerry', '||comma||', 'would', 'you', 'like', 'anything', 'from', 'mrs', '||period||', 'hudwalkers', 'apartment', '||questionmark||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'you', "can't", 'give', 'him', 'anything', 'from', 'there', '||exclammark||', '||return||', '||return||', 'harold:', 'i', 'was', 'only', 'joking', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'he', 'thinks', 'im', 'gonna', 'give', 'you', 'mrs', '||period||', 'hudwalkers', 'things', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'you', 'offered', 'them', 'to', 'him', '||period||', '||return||', '||return||', 'harold:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'we', 'have', 'to', 'go', 'up', 'there', 'now', 'and', 'clean', 'the', 'apartment', '||period||', 'its', 'a', 'good', 'thing', 'her', 'rent', 'was', 'overdue', '||period||', 'shed', 'be', 'rotting', 'up', 'there', 'for', 'a', 'month', '||period||', '||return||', '||return||', 'jerry:', 'she', 'died', '||questionmark||', 'mrs', '||period||', 'hudwalker', 'died', '||questionmark||', '||return||', '||return||', 'harold:', 'ninety', '||dash||', 'four', 'years', 'old', '||period||', 'i', 'found', 'her', 'yesterday', '||period||', 'she', 'didnt', 'have', 'her', 'wig', 'on', '||period||', 'it', 'was', 'horrifying', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'harold', '||comma||', 'come', 'on', '||comma||', 'hurry', 'up', '||exclammark||', '||return||', '||return||', 'harold:', '||leftparen||', 'to', 'manny', '||rightparen||', 'whats', 'the', 'matter', 'with', 'you', '||questionmark||', 'im', 'talking', '||exclammark||', 'so', '||comma||', 'jerry', '||comma||', 'you', 'know', 'anyone', 'who', 'needs', 'an', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'kidding', '||questionmark||', 'you', 'know', 'my', 'friend', 'elaine', '||questionmark||', '||return||', '||return||', 'harold:', 'oh', 'yeah', '||comma||', 'i', 'like', 'her', '||period||', 'she', 'always', 'says', 'hello', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'its', 'not', 'promised', 'to', 'anybody', '||questionmark||', 'cause', 'shed', 'take', 'it', 'in', 'a', 'second', '||period||', '||return||', '||return||', 'harold:', 'well', '||comma||', 'manny', 'wanted', 'it', 'for', 'his', 'brother', '||comma||', 'but', 'he', 'got', 'deported', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'what', 'do', 'you', 'mean', 'deported', '||questionmark||', 'it', 'was', 'a', 'misunderstanding', 'with', 'the', 'department', 'of', 'immigration', '||period||', '||return||', '||return||', 'harold:', 'whats', 'the', 'difference', '||questionmark||', 'its', 'true', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'its', 'okay', '||questionmark||', 'i', 'could', 'just', 'tell', 'her', 'she', 'can', 'have', 'it', '||questionmark||', '||return||', '||return||', 'harold:', 'sure', '||comma||', 'sure', '||period||', 'shes', 'getting', 'a', 'bargain', '||comma||', 'too', '||period||', 'its', 'only', 'four', 'hundred', 'dollars', 'a', 'month', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'four', 'hundred', 'dollars', '||questionmark||', 'what', 'are', 'you', 'nuts', '||questionmark||', 'someone', 'will', 'pay', 'more', '||period||', '||return||', '||return||', 'harold:', 'okay', '||period||', '||period||', '||period||', '||return||', '||return||', 'harold:', 'okay', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'harold', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'harold:', 'manny', '||comma||', 'look', '||period||', 'kramer', 'put', 'mousse', 'in', 'his', 'hair', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'it', 'looks', 'worse', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'not', 'understanding', 'him', '||rightparen||', 'hey', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'what', 'was', 'that', 'all', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'coyly', '||rightparen||', 'oh', '||comma||', 'nothing', 'important', '||period||', '||return||', '||return||', 'elaine:', 'whats', 'going', 'on', '||questionmark||', 'what', 'is', 'that', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'look', '||questionmark||', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'somethings', 'going', 'on', 'here', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', 'if', 'you', 'should', 'sit', 'for', 'this', 'or', 'not', '||period||', 'sitting', 'is', 'good', 'if', 'you', 'faint', '||comma||', 'but', 'standing', 'is', 'good', 'for', 'jumping', 'up', 'and', 'down', '||period||', 'i', 'cant', 'decide', '||period||', '||return||', '||return||', 'elaine:', 'jumping', 'up', 'and', 'down', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'cmon', '||period||', 'cough', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'elaine', '||period||', 'you', 'know', 'the', 'way', 'i', 'am', 'rarely', 'ever', 'thinking', 'of', 'myself', '||period||', 'my', 'only', 'concern', 'is', 'the', 'welfare', 'and', 'happiness', 'of', 'those', 'close', 'to', 'me', '||period||', 'sure', '||comma||', 'it', 'hurts', 'sometimes', 'to', 'give', '||comma||', 'and', 'give', '||comma||', 'and', 'give', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'would', 'you', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'would', 'you', 'say', 'if', 'i', 'told', 'you', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'told', 'me', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'i', 'got', 'you', 'an', 'apartment', 'in', 'this', 'building', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dumbfounded', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'you', 'didnt', '||period||', '||return||', '||return||', 'jerry:', 'i', 'did', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'me', 'an', 'apartment', 'in', 'the', 'building', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'you', 'an', 'apartment', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'elaine:', 'how', 'did', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'remember', 'mrs', '||period||', 'hudwalker', '||questionmark||', 'the', 'ninety', '||dash||', 'four', '||dash||', 'year', '||dash||', 'old', 'woman', 'who', 'lived', 'above', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'she', 'died', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thrilled', '||rightparen||', 'she', 'died', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'died', '||period||', '||return||', '||return||', 'elaine:', 'she', 'died', '||exclammark||', '||return||', '||return||', 'jerry:', 'and', 'the', 'rent', 'is', 'only', 'four', 'hundred', 'dollars', 'a', 'month', '||exclammark||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'four', 'hundred', 'a', 'month', '||questionmark||', 'only', 'four', 'hundred', 'a', 'month', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'four', 'hundred', 'a', 'month', '||period||', '||return||', '||return||', 'elaine:', 'and', 'ill', 'be', 'right', 'upstairs', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', 'upstairs', '||period||', '||return||', '||return||', 'elaine:', 'right', 'above', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', 'above', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'were', 'neighbors', '||period||', 'ill', 'be', 'here', 'all', 'the', 'time', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'overly', 'excited', '||rightparen||', 'we', 'can', 'exchange', 'keys', 'so', 'we', 'can', 'come', 'in', 'and', 'out', '||period||', 'oh', '||comma||', 'this', 'is', 'going', 'to', 'be', 'great', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'the', 'problem', 'with', 'talking', 'is', 'that', 'nobody', 'stops', 'you', 'from', 'saying', 'the', 'wrong', 'thing', '||period||', 'i', 'think', 'life', 'would', 'be', 'a', 'lot', 'better', 'if', 'it', 'was', 'like', 'youre', 'always', 'making', 'a', 'movie', '||period||', 'you', 'mess', 'up', '||comma||', 'somebody', 'just', 'walks', 'on', 'the', 'set', '||comma||', 'and', 'stops', 'the', 'whole', 'shot', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'think', 'of', 'the', 'things', 'you', 'wish', 'you', 'could', 'take', 'back', '||period||', 'youre', 'out', 'somewhere', 'with', 'people', '||comma||', 'gee', '||comma||', 'you', 'look', 'pregnant', '||period||', '||period||', 'are', 'you', '||questionmark||', 'cut', '||comma||', 'cut', '||comma||', 'cut', '||comma||', 'cut', '||comma||', 'cut', '||comma||', 'thats', 'not', 'gonna', 'work', 'at', 'all', '||period||', 'walk', 'out', 'the', 'door', '||comma||', 'and', 'come', 'back', 'in', '||period||', 'lets', 'take', 'this', 'whole', 'scene', 'again', '||period||', 'people', '||comma||', 'think', 'about', 'what', 'youre', 'saying', '||exclammark||', '||return||', '||return||', 'george:', 'thanks', '||comma||', 'see', 'you', 'later', '||comma||', 'donna', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'cant', 'believe', 'what', 'i', 'just', 'did', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'could', 'tell', 'you', 'what', 'i', 'did', '||comma||', 'but', 'you', 'wouldnt', 'believe', 'it', '||period||', 'its', 'not', 'believable', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'could', 'i', 'have', 'done', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'done', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'elaine', 'about', 'an', 'apartment', 'opening', 'up', 'in', 'my', 'building', '||period||', 'shes', 'going', 'to', 'move', 'in', '||period||', '||return||', '||return||', 'george:', 'elaines', 'moving', 'into', 'your', 'building', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'right', 'above', 'me', '||period||', '||return||', '||return||', 'george:', 'right', 'above', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'youre', 'gonna', 'be', 'neighbors', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'neighbors', '||period||', '||return||', '||return||', 'george:', 'shes', 'right', 'above', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', 'above', 'me', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'cause', 'im', 'an', 'idiot', '||exclammark||', 'you', 'may', 'think', 'youre', 'an', 'idiot', '||comma||', 'but', 'with', 'all', 'due', 'respect', '||comma||', 'im', 'a', 'much', 'bigger', 'idiot', 'than', 'you', 'are', '||period||', '||return||', '||return||', 'george:', 'dont', 'insult', 'me', '||comma||', 'my', 'friend', '||period||', 'remember', 'who', 'youre', 'talking', 'to', '||period||', 'no', 'ones', 'a', 'bigger', 'idiot', 'than', 'me', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'ever', 'ask', 'an', 'ex', '||dash||', 'girlfriend', 'to', 'move', 'into', 'your', 'building', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'ever', 'go', 'to', 'a', 'singles', 'weekend', 'in', 'the', 'poconos', '||questionmark||', '||return||', '||return||', 'jerry:', 'shes', 'right', 'in', 'my', 'building', '||exclammark||', 'right', 'above', 'me', '||exclammark||', 'every', 'time', 'i', 'come', 'in', 'the', 'building', '||comma||', 'im', 'gonna', 'have', 'to', 'sneak', 'around', 'like', 'a', 'cat', 'burglar', '||period||', '||return||', '||return||', 'george:', 'youre', 'doomed', '||period||', 'youre', 'gonna', 'have', 'to', 'have', 'all', 'your', 'sex', 'at', 'womens', 'apartments', '||period||', 'itll', 'be', 'like', 'a', 'permanent', 'road', 'trip', '||period||', 'forget', 'about', 'the', 'home', 'bed', 'advantage', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'need', 'the', 'home', 'bed', 'advantage', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', 'we', 'all', 'do', '||period||', '||return||', '||return||', 'jerry:', 'come', 'in', 'for', 'two', 'minutes', 'and', 'sit', 'with', 'me', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'just', 'in', 'there', '||period||', 'its', 'embarrassing', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'whos', 'gonna', 'know', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'saw', 'me', 'walk', 'out', '||period||', '||return||', '||return||', 'jerry:', 'two', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'my', 'censoring', 'system', 'broke', 'down', '||period||', 'you', 'know', 'that', 'little', 'guy', 'in', 'your', 'head', 'who', 'watches', 'everything', 'you', 'say', '||questionmark||', 'makes', 'sure', 'you', 'dont', 'make', 'a', 'mistake', '||questionmark||', 'he', 'went', 'for', 'a', 'cup', 'of', 'coffee', '||period||', 'and', 'in', 'that', 'second', 'ruined', 'my', 'life', '||period||', '||return||', '||return||', 'george:', 'my', 'censor', 'quit', 'two', 'years', 'ago', '||period||', 'he', 'checked', 'into', 'a', 'clinic', '||period||', 'emotionally', 'exhausted', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'is', 'there', 'any', 'way', 'out', 'of', 'this', 'elaine', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'tough', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'water', 'pressures', 'terrible', 'in', 'my', 'building', '||period||', 'and', 'she', 'loves', 'a', 'good', 'shower', '||period||', '||return||', '||return||', 'george:', 'i', 'never', 'heard', 'of', 'anyone', 'would', 'turned', 'down', 'an', 'apartment', 'because', 'of', 'a', 'weak', 'shower', 'spray', '||period||', '||return||', '||return||', 'jerry:', 'if', 'they', 'were', 'fanatic', 'about', 'showers', '||comma||', 'they', 'might', '||period||', '||return||', '||return||', 'george:', 'for', 'that', 'rent', '||comma||', 'shed', 'take', 'a', 'bath', 'in', 'the', 'toilet', 'tank', 'if', 'she', 'had', 'to', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'that', 'woman', 'feeding', 'her', 'baby', 'greasy', '||comma||', 'disgusting', '||comma||', 'coffee', 'shop', 'corned', 'beef', 'hash', '||period||', 'isnt', 'that', 'child', 'abuse', '||questionmark||', '||return||', '||return||', 'george:', 'id', 'like', 'to', 'have', 'a', 'kid', '||period||', 'of', 'course', '||comma||', 'you', 'have', 'to', 'have', 'a', 'date', 'first', '||period||', '||period||', '||period||', 'remember', 'my', 'friend', '||comma||', 'adam', '||comma||', 'from', 'detroit', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'the', 'guy', 'with', 'the', 'flat', 'head', '||period||', '||return||', '||return||', 'george:', 'hes', 'a', 'cube', '||period||', 'anyway', '||comma||', 'he', 'got', 'married', 'six', 'months', 'ago', '||period||', 'he', 'told', 'me', 'ever', 'since', 'hes', 'been', 'wearing', 'a', 'wedding', 'band', '||comma||', 'women', 'have', 'been', 'coming', 'on', 'to', 'him', 'everywhere', 'he', 'goes', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'ive', 'heard', 'that', 'about', 'wedding', 'bands', '||period||', '||return||', '||return||', 'george:', 'i', 'wonder', 'if', 'thats', 'really', 'true', '||period||', '||return||', '||return||', 'jerry:', 'that', 'would', 'be', 'an', 'interesting', 'sociological', 'experiment', '||period||', 'you', 'know', '||comma||', 'kramer', 'has', 'his', 'fathers', 'band', '||period||', 'hed', 'loan', 'it', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'thanks', 'a', 'lot', '||period||', 'ill', 'give', 'it', 'back', 'to', 'you', 'in', 'a', 'week', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'dont', 'even', 'know', 'why', 'youre', 'fooling', 'around', 'with', 'this', 'ring', '||period||', 'ive', 'been', 'telling', 'you', '||comma||', 'get', 'yourself', 'some', 'plugs', '||period||', 'or', 'a', 'piece', '||period||', '||return||', '||return||', 'george:', 'im', 'not', 'doing', 'that', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'man', '||period||', 'you', 'know', '||comma||', 'youre', 'crazy', '||period||', 'youre', 'a', 'good', 'looking', 'guy', '||period||', 'what', 'do', 'you', 'want', 'to', 'walk', 'around', 'like', 'that', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'ill', 'put', 'half', 'a', 'can', 'of', 'mousse', 'in', 'my', 'head', 'like', 'you', '||period||', '||return||', '||return||', 'harold:', 'i', 'told', 'you', 'i', 'dont', 'like', 'these', 'sponges', '||comma||', 'theyre', 'too', 'small', '||exclammark||', 'i', 'want', 'a', 'big', 'sponge', '||exclammark||', '||return||', '||return||', 'harold:', 'you', 'cant', 'pick', 'up', 'anything', 'with', 'these', '||exclammark||', 'theres', 'no', 'absorption', '||exclammark||', '||return||', '||return||', 'jerry:', 'boys', '||comma||', 'boys', '||period||', '||return||', '||return||', 'harold:', 'hi', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'manny:', 'hello', '||comma||', 'jerry', '||period||', '||leftparen||', 'in', 'spanish', 'to', 'harold', '||rightparen||', 'you', 'tell', 'him', '||period||', '||return||', '||return||', 'harold:', 'okay', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', 'to', 'harold', 'again', '||rightparen||', 'you', 'tell', 'him', '||period||', '||return||', '||return||', 'harold:', 'your', 'friend', 'cant', 'have', 'the', 'apartment', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'harold:', 'because', 'somebody', 'offered', 'manny', 'five', 'thousand', 'dollars', 'for', 'the', 'apartment', '||period||', 'i', 'dont', 'want', 'to', 'do', 'it', '||period||', 'manny', 'wants', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'why', 'are', 'you', 'telling', 'him', "it's", 'my', 'fault', '||questionmark||', '||return||', '||return||', 'harold:', 'because', 'its', 'true', '||exclammark||', 'why', 'shouldnt', 'i', 'tell', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||period||', 'i', 'understand', '||period||', 'youre', 'businessmen', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'tell', 'him', 'that', 'if', 'his', 'friend', 'can', 'come', 'up', 'with', 'the', 'same', 'money', 'then', 'she', 'can', 'have', 'the', 'apartment', '||period||', '||return||', '||return||', 'harold:', 'oh', '||comma||', 'now', '||comma||', 'he', 'says', 'that', 'if', 'your', 'friend', 'has', 'five', 'thousand', 'dollars', '||comma||', 'well', 'give', 'it', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thats', 'a', 'lot', 'of', 'money', '||period||', 'but', '||comma||', 'if', 'thats', 'the', 'way', 'its', 'gotta', 'be', '||comma||', 'thats', 'the', 'way', 'its', 'gotta', 'be', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'used', 'to', 'think', 'that', 'the', 'universe', 'is', 'a', 'random', '||comma||', 'chaotic', 'sequence', 'of', 'meaningless', 'events', '||comma||', 'but', 'i', 'see', 'now', 'that', 'there', 'is', 'reason', 'and', 'purpose', 'to', 'all', 'things', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'religion', '||comma||', 'my', 'friend', '||comma||', 'thats', 'what', 'happened', 'to', 'me', '||period||', 'because', '||comma||', 'i', 'have', 'just', 'been', 'informed', 'that', 'its', 'going', 'to', 'cost', 'elaine', 'the', 'sum', 'of', 'five', 'thousand', 'dollars', 'to', 'get', 'the', 'apartment', 'upstairs', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'jubilant', '||rightparen||', 'five', 'thousand', 'dollars', '||questionmark||', 'she', 'doesnt', 'have', 'five', 'thousand', 'dollars', '||exclammark||', '||return||', '||return||', 'jerry:', 'of', 'course', 'she', 'doesnt', 'have', 'five', 'thousand', 'dollars', '||exclammark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'she', 'cant', 'get', 'the', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'cant', 'get', 'it', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'she', 'doesnt', 'move', 'in', '||period||', '||return||', '||return||', 'jerry:', 'no', 'move', '||period||', 'so', '||comma||', 'you', 'see', '||comma||', 'its', 'all', 'part', 'of', 'a', 'divine', 'plan', '||period||', '||return||', '||return||', 'george:', 'and', 'how', 'does', 'the', 'baldness', 'fit', 'into', 'that', 'plan', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'intercom', '||rightparen||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'all', 'right', '||comma||', 'this', 'is', 'going', 'to', 'require', 'some', 'great', 'acting', 'now', '||period||', 'i', 'have', 'to', 'pretend', 'im', 'disappointed', '||period||', 'youre', 'going', 'to', 'really', 'see', 'me', 'being', 'a', 'phony', '||comma||', 'now', '||period||', 'i', 'hope', 'you', 'can', 'take', 'this', '||period||', 'maybe', 'you', 'should', 'go', 'in', 'the', 'other', 'room', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'kidding', '||questionmark||', 'i', 'lie', 'every', 'second', 'of', 'the', 'day', '||period||', 'my', 'whole', 'life', 'is', 'a', 'sham', '||exclammark||', '||return||', '||return||', 'jerry:', 'cause', 'you', 'know', '||comma||', 'i', 'love', 'elaine', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'you', 'do', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'know', '||period||', '||period||', '||period||', 'not', 'in', 'the', 'building', '||period||', 'really', '||comma||', 'i', 'feel', 'terrible', 'about', 'this', '||period||', 'my', 'intentions', 'were', 'good', '||period||', 'what', 'can', 'i', 'do', '||questionmark||', 'tell', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'someone', 'in', 'the', 'hallway', '||rightparen||', 'no', '||comma||', 'ill', 'be', 'seeing', 'you', '||period||', '||leftparen||', 'she', 'enters', 'the', 'apartment', '||semicolon||', 'singing', '||rightparen||', '||quotemark||', 'good', 'morning', '||comma||', 'good', 'morning', '||period||', '||period||', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', 'have', 'you', 'ever', 'gotten', 'up', 'in', 'the', 'morning', 'and', 'felt', 'its', 'great', 'to', 'be', 'alive', '||questionmark||', 'that', 'every', 'breath', 'is', 'a', 'gift', 'of', 'sweet', 'life', 'from', 'above', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'and', 'before', 'i', 'forget', '||comma||', 'i', 'have', 'the', 'checks', 'for', 'the', 'first', 'month', '||comma||', 'last', 'months', 'security', 'deposit', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'i', 'have', 'seventy', '||dash||', 'five', 'dollars', 'left', 'in', 'my', 'account', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', 'theres', 'a', 'little', 'bit', 'of', 'a', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'know', '||period||', 'theres', 'a', 'weak', 'shower', 'spray', '||comma||', 'i', 'know', '||period||', 'ive', 'already', 'thought', 'about', 'it', '||comma||', 'and', 'im', 'switching', 'to', 'baths', '||period||', 'as', 'winston', 'churchill', 'said', '||comma||', 'why', 'stand', 'when', 'you', 'can', 'sit', '||questionmark||', 'maybe', 'ill', 'get', 'some', 'rubber', 'duckies', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'no', 'uh', '||comma||', 'someone', 'offered', 'harold', 'and', 'manny', 'five', 'thousand', 'for', 'the', 'apartment', '||period||', 'im', 'sure', 'theyd', 'just', 'as', 'soon', 'give', 'it', 'to', 'you', '||comma||', 'but', 'youd', 'have', 'to', 'come', 'up', 'with', 'that', 'money', '||period||', '||return||', '||return||', 'elaine:', 'five', 'thousand', 'dollars', '||questionmark||', 'i', 'dont', 'have', 'five', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'disappointed', '||rightparen||', 'how', 'am', 'i', 'going', 'to', 'get', 'five', 'thousand', 'dollars', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hey', '||comma||', 'my', 'new', 'neighbor', '||exclammark||', '||return||', '||return||', 'elaine:', 'im', 'not', 'moving', 'in', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'want', 'five', 'thousand', 'dollars', 'now', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'okay', 'uh', 'whats', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'have', 'five', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'cmon', '||comma||', 'you', 'can', 'come', 'up', 'with', 'five', 'thousand', 'dollars', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'jerry', '||comma||', 'you', 'dont', 'have', 'five', 'thousand', 'dollars', 'you', 'can', 'led', 'her', '||questionmark||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'didnt', '||dash||', 'is', 'that', 'something', 'you', 'want', 'to', 'borrow', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'thats', 'too', 'much', 'money', 'to', 'borrow', '||period||', '||return||', '||return||', 'kramer:', 'loan', 'her', 'the', 'money', '||period||', 'you', 'can', 'afford', 'it', '||period||', '||return||', '||return||', 'jerry:', 'she', 'doesnt', 'wanna', 'borrow', 'the', 'money', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'cmon', '||period||', 'shell', 'pay', 'you', 'back', '||period||', 'whats', 'five', 'grand', 'between', 'friends', '||questionmark||', '||return||', '||return||', 'elaine:', 'of', 'course', 'id', 'pay', 'you', 'back', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'so', 'whats', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'said', 'theres', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', 'see', 'he', 'said', 'hed', 'loan', 'you', 'the', 'money', '||period||', '||return||', '||return||', 'elaine:', 'well', 'jerry', '||comma||', 'it', 'might', 'take', 'a', 'while', 'for', 'me', 'to', 'pay', 'you', 'back', '||period||', 'maybe', 'a', 'few', 'years', '||period||', 'how', 'do', 'you', 'feel', 'about', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'thats', 'okay', '||period||', 'he', 'doesnt', 'care', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'money', 'can', 'sometimes', 'come', 'between', 'friends', '||period||', '||return||', '||return||', 'kramer:', 'get', 'outta', 'here', '||period||', '||return||', '||return||', 'elaine:', 'let', 'me', 'think', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'whats', 'to', 'think', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||period||', '||period||', '||period||', 'i', 'dont', 'know', '||period||', 'five', 'thousand', '||period||', '||period||', '||period||', 'let', 'me', 'just', 'take', 'one', 'more', 'look', 'at', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'it', 'was', 'all', 'over', '||exclammark||', 'taken', 'care', 'of', '||period||', 'done', '||exclammark||', 'finished', '||period||', 'five', 'thousand', '||period||', 'wheres', 'she', 'gonna', 'get', 'five', 'thousand', '||questionmark||', 'she', 'doesnt', 'have', 'five', 'thousand', '||period||', 'clean', '||period||', 'good', 'bye', '||period||', 'shes', 'gone', '||period||', 'then', 'you', 'come', 'in', '||comma||', 'why', 'dont', 'you', 'loan', 'her', 'five', 'thousand', '||questionmark||', 'what', 'do', 'you', 'care', '||questionmark||', 'youve', 'got', 'five', 'thousand', '||period||', 'give', 'her', 'five', 'thousand', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'didnt', 'want', 'her', 'in', 'the', 'building', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'didnt', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'then', 'what', 'did', 'you', 'loan', 'her', 'the', 'five', 'thousand', 'for', '||questionmark||', 'oh', '||comma||', 'look', '||comma||', 'maybe', 'she', 'wont', 'take', 'it', '||period||', 'i', 'mean', '||comma||', 'she', 'did', 'say', 'that', 'she', 'was', 'gonna', 'think', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'people', 'dont', 'turn', 'down', 'money', '||period||', 'its', 'what', 'separates', 'us', 'from', 'the', 'animals', '||period||', '||return||', '||return||', 'kramer:', 'i', 'still', 'dont', 'understand', 'what', 'the', 'problem', 'is', 'having', 'her', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'explain', 'something', 'to', 'you', '||period||', 'you', 'see', '||comma||', 'youre', 'not', 'normal', '||period||', 'youre', 'a', 'great', 'guy', '||comma||', 'i', 'love', 'you', '||comma||', 'but', 'youre', 'a', 'pod', '||period||', 'i', '||comma||', 'on', 'the', 'other', 'hand', '||comma||', 'am', 'a', 'human', 'being', '||period||', 'i', 'sometimes', 'feel', 'awkward', '||comma||', 'uncomfortable', '||comma||', 'even', 'inhibited', 'in', 'certain', 'situations', 'with', 'the', 'other', 'human', 'beings', '||period||', 'you', 'wouldnt', 'understand', '||period||', '||return||', '||return||', 'kramer:', 'because', 'im', 'a', 'pod', '||questionmark||', '||return||', '||return||', 'elaine:', 'ill', 'take', 'it', '||exclammark||', '||return||', '||return||', 'roxanne:', 'hi', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||comma||', 'roxanne', '||period||', 'nice', 'to', 'be', 'here', '||period||', 'these', 'are', 'my', 'friends', '||period||', 'this', 'is', 'george', '||comma||', 'and', 'this', 'is', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||return||', '||return||', 'elaine:', 'jerrys', 'the', 'one', 'who', 'got', 'me', 'my', 'new', 'apartment', '||period||', '||return||', '||return||', 'roxanne:', 'so', '||comma||', 'youre', 'elaines', 'hero', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'its', 'my', 'lifes', 'work', '||period||', '||return||', '||return||', 'roxanne:', 'there', 'are', 'so', 'few', 'true', 'heroes', 'left', 'in', 'this', 'world', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'my', 'wife', 'couldnt', 'make', 'it', 'today', '||period||', 'shes', 'got', 'something', 'with', 'her', 'mother', '||period||', '||period||', '||period||', 'who', 'knows', 'whats', 'going', 'on', 'with', 'her', '||period||', 'dont', 'let', 'any', 'one', 'kid', 'you', '||comma||', 'its', 'tough', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'better', 'load', 'up', 'on', 'some', 'carbos', 'before', 'the', 'race', '||period||', '||return||', '||return||', 'roxanne:', 'oh', '||comma||', 'the', 'marathon', 'is', 'great', '||comma||', 'isnt', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yes', '||period||', 'particularly', 'if', 'youre', 'not', 'in', 'it', '||period||', '||return||', '||return||', 'roxanne:', 'i', 'wish', 'we', 'had', 'a', 'view', 'of', 'the', 'finish', 'line', '||period||', '||return||', '||return||', 'jerry:', 'whats', 'to', 'see', '||questionmark||', 'a', 'woman', 'from', 'norway', '||comma||', 'a', 'guy', 'from', 'kenya', '||comma||', 'and', 'twenty', 'thousand', 'losers', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'my', 'wife', 'started', 'getting', 'on', 'me', 'about', 'the', 'lawn', 'today', '||period||', 'im', 'tellin', 'you', '||comma||', 'its', 'one', 'thing', 'after', 'another', '||period||', '||return||', '||return||', 'rita:', 'is', 'she', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'uh', 'no', 'no', '||comma||', 'shes', 'working', '||period||', '||return||', '||return||', 'rita:', 'what', 'does', 'she', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'shes', 'an', '||period||', '||period||', '||period||', 'etymologist', '||period||', 'you', 'know', '||comma||', 'bees', '||comma||', 'flies', '||comma||', 'gnats', '||period||', 'w', '||dash||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'rita:', 'i', 'work', 'for', 'the', 'director', 'of', 'madison', 'square', 'garden', '||period||', 'its', 'great', '||exclammark||', 'i', 'can', 'get', 'free', 'tickets', 'to', 'any', 'sporting', 'in', 'new', 'york', '||period||', 'anyway', '||comma||', 'shes', 'a', 'very', 'luck', 'woman', '||period||', 'enjoy', 'the', 'race', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'calling', 'after', 'her', '||rightparen||', 'but', '||period||', '||period||', '||return||', '||return||', 'roxanne:', 'hi', 'stan', '||period||', 'joanne', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'this', 'is', 'joanne', '||comma||', 'and', 'this', 'is', 'stan', '||period||', 'theyre', 'in', 'my', 'short', 'story', 'class', 'with', 'roxanne', 'and', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'how', 'are', 'ya', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'jerry', 'just', 'got', 'me', 'a', 'great', 'apartment', 'in', 'his', 'building', '||exclammark||', '||return||', '||return||', 'joanne:', 'well', '||comma||', 'jerry', '||comma||', 'itll', 'be', 'nice', 'having', 'a', 'close', 'friend', 'nearby', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'no', 'amused', '||rightparen||', 'fantastic', '||period||', '||return||', '||return||', 'stan:', 'she', 'can', 'pop', 'in', 'whenever', 'she', 'wants', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'joanne:', 'she', 'doesnt', 'even', 'need', 'to', 'knock', '||exclammark||', '||return||', '||return||', 'jerry:', 'its', 'tremendous', '||period||', '||return||', '||return||', 'stan:', 'anytime', 'of', 'day', '||period||', '||return||', '||return||', 'jerry:', 'im', 'in', 'heaven', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'rita', 'come', 'here', '||period||', 'this', 'is', 'jerry', '||period||', 'hes', 'the', 'one', 'who', 'got', 'me', 'the', 'apartment', '||period||', '||return||', '||return||', 'rita:', 'oh', '||comma||', 'hi', '||period||', '||leftparen||', 'calling', 'to', 'someone', '||rightparen||', 'bob', '||comma||', 'this', 'is', 'the', 'guy', 'who', 'got', 'elaine', 'the', 'apartment', '||period||', '||return||', '||return||', 'george:', 'im', 'sorry', '||comma||', 'i', 'dont', 'see', 'the', 'big', 'deal', 'about', 'being', 'a', 'matador', '||period||', 'the', 'bull', 'charges', '||comma||', 'you', 'move', 'the', 'cape', '||comma||', 'whats', 'so', 'hard', '||questionmark||', '||return||', '||return||', 'susie:', 'so', 'uh', '||comma||', 'are', 'you', 'really', 'married', '||questionmark||', 'because', '||comma||', 'ive', 'actually', 'heard', 'of', 'single', 'guys', 'who', 'wear', 'wedding', 'bands', 'to', 'attract', 'women', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'youd', 'have', 'to', 'be', 'a', 'real', 'loser', 'to', 'try', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'susie:', 'thats', 'too', 'bad', '||comma||', 'because', 'i', 'really', 'have', 'a', 'thing', 'for', 'bald', 'guys', 'with', 'glasses', '||period||', '||return||', '||return||', 'rita:', 'hey', 'everybody', '||exclammark||', 'here', 'come', 'the', 'runners', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'so', 'you', 'and', 'roxanne', 'are', 'hitting', 'it', 'off', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'wouldnt', 'quite', 'say', 'that', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'from', 'a', 'distance', '||comma||', 'you', 'seemed', 'to', 'be', 'coming', 'on', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'im', 'a', 'guy', 'it', 'always', 'looks', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'because', '||comma||', 'i', 'was', 'thinking', '||period||', '||period||', '||period||', 'are', 'you', 'at', 'all', 'concerned', 'that', 'living', 'in', 'the', 'same', 'building', 'will', '||comma||', 'yknow', '||period||', '||period||', '||period||', 'cramp', 'our', 'styles', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'because', '||comma||', 'i', 'was', 'worried', 'that', 'there', 'might', 'be', 'a', 'situation', 'in', 'which', 'one', 'of', 'us', 'come', 'home', 'with', 'somebody', '||comma||', 'it', 'could', 'get', 'a', 'little', 'uncomfortable', '||period||', 'but', '||comma||', 'as', 'long', 'as', 'youre', 'okay', 'with', 'it', '||comma||', 'its', 'fine', 'with', 'me', '||period||', '||return||', '||return||', 'janice:', 'ive', 'never', 'been', 'able', 'to', 'be', 'with', 'just', 'one', 'person', '||period||', 'i', 'can', '||comma||', 'however', '||comma||', 'carry', 'on', 'strictly', 'physical', 'relationships', 'which', 'can', 'last', 'for', 'years', 'and', 'years', '||period||', 'its', 'a', 'shame', 'youre', 'married', '||period||', '||return||', '||return||', 'george:', 'umm', '||comma||', 'im', 'not', '||period||', 'its', 'just', 'a', 'sociological', 'experiment', '||exclammark||', '||return||', '||return||', 'janice:', 'please', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'no', 'idea', 'what', 'an', 'idiot', 'is', '||period||', 'elaine', 'just', 'gave', 'me', 'a', 'chance', 'to', 'get', 'out', 'and', 'i', 'didnt', 'take', 'it', '||period||', '||leftparen||', 'pointing', 'to', 'himself', '||rightparen||', 'this', 'is', 'an', 'idiot', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'right', '||questionmark||', 'i', 'just', 'threw', 'away', 'a', 'lifetime', 'of', 'guilt', '||dash||', 'free', 'sex', '||comma||', 'and', 'floor', 'seats', 'for', 'ever', 'sporting', 'event', 'in', 'madison', 'square', 'garden', '||period||', 'so', 'please', '||comma||', 'a', 'little', 'respect', '||period||', 'for', 'i', 'am', 'costanza', 'lord', 'of', 'the', 'idiots', '||exclammark||', '||return||', '||return||', 'roxanne:', '||leftparen||', 'yelling', 'out', 'the', 'window', '||rightparen||', 'youre', 'all', 'winners', '||exclammark||', '||return||', '||return||', 'george:', 'but', 'suddenly', '||comma||', 'a', 'new', 'contender', 'has', 'emerged', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'i', 'didnt', 'sleep', 'at', 'all', 'last', 'night', '||period||', 'i', 'decided', 'i', 'have', 'to', 'tell', 'her', '||period||', 'im', 'just', 'going', 'to', 'be', 'honest', '||period||', 'thats', 'all', '||period||', '||period||', '||period||', 'yes', '||comma||', 'im', 'nervous', '||period||', '||period||', '||period||', 'are', 'you', 'listening', 'to', 'me', '||questionmark||', '||period||', '||period||', '||period||', 'just', 'put', 'some', 'soap', 'on', 'your', 'finger', '||period||', 'itll', 'slide', 'right', 'off', '||period||', '||period||', '||period||', 'then', 'try', 'axle', 'grease', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'enters', '||semicolon||', 'to', 'the', 'phone', '||rightparen||', 'ill', 'call', 'you', 'back', 'after', 'i', 'talk', 'to', 'her', '||period||', '||period||', '||period||', 'bye', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'its', 'all', 'taken', 'care', 'of', '||period||', 'everythings', 'cool', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'whats', 'cool', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'found', 'a', 'guy', 'whos', 'willing', 'to', 'pay', 'ten', 'thousand', 'dollars', 'for', 'the', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||exclammark||', 'get', 'out', '||exclammark||', '||leftparen||', 'pushes', 'kramer', '||rightparen||', 'ten', 'thousand', '||questionmark||', '||return||', '||return||', 'kramer:', 'cash', '||period||', '||return||', '||return||', 'jerry:', 'who', 'would', 'pay', 'that', 'much', '||questionmark||', '||return||', '||return||', 'kramer:', 'hes', 'in', 'the', 'music', 'business', '||period||', '||return||', '||return||', 'jerry:', 'elaine', 'would', 'never', 'borrow', 'that', 'much', 'money', '||exclammark||', '||leftparen||', 'jerry', 'hugs', 'kramer', '||comma||', 'then', 'grabs', 'him', 'by', 'the', 'cheeks', '||period||', '||rightparen||', 'kramer', '||comma||', 'my', 'god', '||comma||', 'man', '||exclammark||', 'this', 'is', 'beautiful', '||exclammark||', 'i', 'think', 'im', 'in', 'the', 'clear', 'here', '||period||', 'elaines', 'not', 'moving', 'in', '||period||', 'i', 'dont', 'have', 'to', 'confront', 'her', '||period||', 'she', 'has', 'no', 'idea', 'i', 'never', 'wanted', 'her', 'to', 'move', 'in', '||period||', 'im', 'golden', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'occasionally', 'i', 'like', 'to', 'help', 'the', 'humans', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||period||', 'youre', 'right', '||period||', 'that', 'is', 'loud', '||period||', '||return||', '||return||', 'jerry:', 'its', 'just', 'unbelievable', '||period||', '||return||', '||return||', 'elaine:', 'they', 'rehearse', 'all', 'the', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'the', 'time', '||period||', 'ive', 'been', 'up', 'there', 'six', 'times', '||period||', 'they', 'refuse', 'to', 'stop', '||period||', 'i', 'cant', 'live', 'like', 'this', '||period||', 'i', 'dont', 'know', 'what', 'im', 'gonna', 'do', '||period||', 'im', 'heading', 'for', 'breakdown', '||exclammark||', '||leftparen||', 'to', 'harold', '||rightparen||', 'cant', 'you', 'do', 'something', '||questionmark||', '||return||', '||return||', 'harold:', 'im', 'not', 'going', 'up', '||period||', 'it', 'stinks', 'up', 'there', '||period||', '||return||', '||return||', 'jerry:', 'manny', '||period||', '||period||', '||period||', '||return||', '||return||', 'manny:', '||leftparen||', 'in', 'spanish', '||rightparen||', 'theyre', 'allowed', 'to', 'play', 'until', 'eleven', 'oclock', '||exclammark||', '||return||', '||return||', 'harold:', 'im', 'not', 'the', 'one', 'who', 'said', 'eleven', 'oclock', '||period||', 'he', 'makes', 'up', 'his', 'own', 'rules', '||period||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', 'too', 'bad', '||period||', 'if', 'i', 'was', 'up', 'there', '||comma||', 'youd', 'never', 'hear', 'a', 'peep', 'out', 'of', 'me', '||period||', 'im', 'as', 'quiet', 'as', 'a', 'mouse', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'love', 'the', 'one', 'they', 'do', 'right', 'after', 'this', 'one', '||exclammark||', '||leftparen||', 'starts', 'dancing', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', 'what', 'do', 'you', 'do', 'when', 'a', 'neighbor', 'is', 'making', '||comma||', 'like', '||comma||', 'a', 'lot', 'of', 'noise', 'at', 'three', 'oclock', 'in', 'the', 'morning', '||questionmark||', 'i', 'mean', '||comma||', 'can', 'you', 'knock', 'on', 'someones', 'door', 'and', 'tell', 'them', 'to', 'keep', 'it', 'down', '||questionmark||', 'youre', 'really', 'altering', 'your', 'whole', 'self', '||dash||', 'image', '||period||', 'i', 'mean', '||comma||', 'what', 'am', 'i', '||comma||', 'fred', 'mertz', 'now', '||questionmark||', 'whats', 'happening', 'to', 'me', '||questionmark||', 'can', 'i', 'do', 'this', '||questionmark||', 'am', 'i', 'a', 'shusher', '||questionmark||', 'i', 'used', 'to', 'be', 'a', 'shushee', '||period||', 'theres', 'a', 'lot', 'of', 'shushing', 'going', 'on', 'in', 'movie', 'theaters', '||period||', 'people', 'are', 'always', 'shushing', '||period||', 'shh', '||period||', '||period||', '||period||', 'shh', '||period||', '||period||', '||period||', 'shhh', '||period||', '||period||', '||period||', 'shhh', '||period||', '||period||', '||period||', 'doesnt', 'work', '||comma||', 'cause', 'nobody', 'knows', 'where', 'a', 'shush', 'is', 'coming', 'from', '||period||', 'they', 'just', 'hear', 'a', 'shh', '||period||', 'was', 'that', 'a', 'shush', '||questionmark||', 'i', 'think', 'somebody', 'just', 'shushed', 'me', '||period||', 'some', 'people', 'you', 'cant', 'shush', 'in', 'a', 'movie', 'theater', '||period||', 'theres', 'always', 'that', 'certain', 'group', 'of', 'people', '||comma||', 'isnt', 'it', '||questionmark||', 'theyre', 'talking', 'and', 'talking', '||comma||', 'and', 'everyone', 'around', 'them', 'is', 'shushing', 'them', '||comma||', 'and', 'shushing', 'them', '||period||', 'they', 'wont', 'shush', '||period||', 'theyre', 'the', 'unshushables', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'tell', 'you', 'that', 'i', 'did', 'some', 'very', 'exciting', 'news', 'recently', '||comma||', 'and', 'i', 'dont', 'know', 'if', 'i', 'should', 'really', 'tell', 'you', 'exactly', 'what', 'it', 'is', 'because', 'its', 'really', 'not', 'a', 'definite', 'thing', 'yet', '||period||', '||leftparen||', 'crowd', 'cheers', 'him', 'on', 'to', 'tell', 'them', '||rightparen||', 'well', '||comma||', 'i', 'will', 'tell', 'you', 'what', 'i', 'know', 'so', 'far', '||period||', 'according', 'to', 'the', 'information', 'that', 'i', 'have', 'in', 'the', 'envelope', 'that', 'ive', 'received', '||comma||', 'it', 'seems', 'that', 'i', 'may', 'have', 'already', 'won', 'some', 'very', 'valuable', 'prizes', '||period||', '||leftparen||', 'audience', 'applauds', '||rightparen||', 'well', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', 'very', 'much', '||comma||', 'well', 'thank', 'you', '||period||', "that's", 'very', 'nice', 'to', 'hear', 'that', '||period||', 'but', '||comma||', 'in', 'all', 'honesty', '||comma||', 'i', 'have', 'to', 'say', '||comma||', 'i', 'didnt', 'even', 'know', 'i', 'was', 'in', 'this', 'thing', '||period||', 'but', '||comma||', 'according', 'to', 'the', 'readout', '||comma||', 'it', 'looks', 'like', 'i', 'am', 'among', 'the', 'top', 'people', 'that', 'they', 'are', 'considering', '||period||', 'you', 'know', '||comma||', 'thats', 'what', 'annoys', 'me', 'about', 'the', 'sweepstakes', 'companies', '||comma||', 'they', 'always', 'tease', 'you', 'with', 'that', '||comma||', 'you', 'may', 'have', 'already', 'won', '||period||', 'id', 'like', 'once', 'for', 'a', 'sweepstakes', 'company', 'to', 'have', 'some', 'guts', '||comma||', 'come', 'out', 'with', 'the', 'truth', '||comma||', 'just', 'tell', 'people', 'the', 'truth', 'one', 'time', '||period||', 'send', 'out', 'envelopes', '||comma||', 'you', 'have', 'definitely', 'lost', '||exclammark||', 'you', 'turn', 'it', 'over', '||comma||', 'giant', 'printing', '||comma||', 'not', 'even', 'close', '||exclammark||', 'you', 'open', 'it', 'up', '||comma||', 'theres', 'this', 'whole', 'letter', 'of', 'explanation', '||comma||', 'even', 'we', 'cannot', 'believe', 'how', 'badly', 'you', 'have', 'done', 'in', 'this', 'contest', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'to', 'the', 'right', '||period||', '||return||', '||return||', 'george:', 'that', 'took', 'awhile', '||period||', '||return||', '||return||', 'jerry:', 'dont', 'get', 'up', '||period||', '||return||', '||return||', 'george:', 'id', 'like', 'to', 'help', '||comma||', 'but', 'my', 'neck', '||period||', '||period||', '||return||', '||return||', 'george:', 'so', 'how', 'long', 'has', 'it', 'been', 'in', 'the', 'basement', '||questionmark||', '||return||', '||return||', 'jerry:', 'since', 'my', 'grandfather', 'died', '||period||', 'i', 'was', 'suppose', 'to', 'send', 'it', 'down', 'to', 'my', 'parents', 'in', 'florida', '||comma||', 'but', 'they', 'didnt', 'want', 'it', '||period||', 'they', 'told', 'me', 'to', 'get', 'rid', 'of', 'it', '||comma||', 'but', 'i', 'felt', 'funny', 'and', 'then', 'i', 'sort', 'of', 'forgot', 'about', 'it', '||period||', 'and', 'its', 'been', 'sitting', 'down', 'there', 'for', 'three', 'years', 'until', 'he', 'saw', 'it', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'all', 'right', '||comma||', 'so', '||comma||', 'just', 'take', 'what', 'you', 'want', 'and', 'lets', 'get', 'it', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'george:', 'whats', 'in', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'grandpa', 'clothes', '||comma||', 'i', 'cant', 'wear', 'em', '||period||', '||return||', '||return||', 'kramer:', 'you', 'want', 'these', '||questionmark||', 'knee', 'socks', '||period||', 'you', 'dont', 'wear', 'knee', 'socks', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'go', 'ahead', '||period||', 'look', 'at', 'this', 'place', '||period||', 'i', 'cant', 'wait', 'to', 'get', 'it', 'cleaned', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'someone', 'wholl', 'do', 'it', '||period||', 'shes', 'good', '||period||', 'shes', 'honest', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'elaines', 'got', 'this', 'writer', 'friend', 'from', 'finland', '||comma||', 'rava', '||period||', 'her', 'boyfriend', 'goes', 'to', 'columbia', 'grad', 'school', '||comma||', 'and', 'hes', 'suppose', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'students', 'cant', 'clean', '||period||', 'its', 'anathema', '||period||', '||leftparen||', 'explaining', '||rightparen||', 'they', 'dont', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'have', 'you', 'been', 'waiting', 'to', 'squeeze', 'that', 'into', 'a', 'conversation', '||questionmark||', '||return||', '||return||', 'kramer:', 'now', 'this', 'i', 'like', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||period||', '||leftparen||', 'george', 'gets', 'up', 'and', 'heads', 'for', 'the', 'statue', 'in', 'kramers', 'hands', '||period||', '||rightparen||', 'i', 'cant', 'believe', 'this', '||exclammark||', 'let', 'me', 'see', 'this', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'just', 'see', 'it', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'just', 'see', 'it', 'for', 'a', 'second', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||comma||', 'its', 'exactly', 'the', 'same', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'i', 'was', 'ten', 'years', 'old', '||comma||', 'my', 'parents', 'had', 'this', 'very', 'same', 'statue', 'on', 'the', 'mantle', 'of', 'our', 'apartment', '||period||', 'exactly', '||period||', 'and', '||comma||', 'one', 'day', '||comma||', 'i', 'grabbed', 'it', '||comma||', 'and', 'i', 'was', 'using', 'it', 'as', 'a', 'microphone', '||period||', 'i', 'was', 'singing', '||comma||', 'macarthur', 'park', '||comma||', 'and', 'i', 'got', 'to', 'the', 'part', 'about', '||comma||', 'ill', 'never', 'have', 'that', 'recipe', 'again', '||comma||', 'and', 'it', 'slipped', 'out', 'of', 'my', 'hand', 'and', 'it', 'broke', '||period||', 'my', 'parents', 'looked', 'at', 'me', 'like', 'i', 'smashed', 'the', 'ten', 'commandments', '||period||', 'to', 'this', 'day', '||comma||', 'they', 'bring', 'it', 'up', '||period||', 'it', 'was', 'the', 'single', 'most', 'damaging', 'experience', 'in', 'my', 'life', '||comma||', 'aside', 'from', 'seeing', 'my', 'father', 'naked', '||period||', '||return||', '||return||', 'kramer:', 'cmon', '||comma||', 'george', '||period||', 'i', 'saw', 'it', 'first', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'kramer', '||period||', 'i', 'have', 'to', 'have', 'this', 'statue', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'got', 'dibs', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'no', 'dibs', '||exclammark||', 'i', 'need', 'this', 'statue', '||period||', 'cmon', '||comma||', 'give', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'spread', 'out', '||comma||', 'spread', 'out', 'you', 'numbskulls', '||period||', 'why', 'dont', 'you', 'just', 'settle', 'it', 'like', 'mature', 'adults', '||questionmark||', '||return||', '||return||', 'kramer:', 'potato', 'man', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', 'potato', 'man', '||period||', 'inka', '||dash||', 'dink', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', '||period||', '||period||', 'yea', 'well', 'uh', 'start', 'with', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'good', '||comma||', 'good', '||period||', '||return||', '||return||', 'jerry:', 'inka', '||dash||', 'dink', '||comma||', 'a', 'bottle', 'of', 'ink', '||comma||', 'the', 'cork', 'fell', 'out', '||comma||', 'and', 'you', 'stink', '||period||', '||return||', '||return||', 'jerry:', 'not', 'because', 'youre', 'dirty', '||comma||', 'not', 'because', 'youre', 'clean', 'just', 'because', 'you', 'kissed', 'the', 'girl', 'behind', 'the', 'magazine', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'are', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||exclammark||', 'wait', 'a', 'minute', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'oh', '||comma||', 'oh', '||comma||', 'okay', '||period||', 'hes', 'out', '||period||', 'i', 'get', 'it', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'im', 'it', '||period||', 'i', 'win', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'hes', 'it', '||period||', 'he', 'wins', '||period||', 'it', 'is', 'good', '||period||', '||return||', '||return||', 'kramer:', 'do', 'over', 'start', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'come', 'on', '||comma||', 'kramer', '||period||', 'now', '||comma||', 'you', 'got', 'the', 'socks', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'you', 'can', 'have', 'it', '||period||', '||leftparen||', 'kramer', 'tosses', 'the', 'statue', 'to', 'george', '||period||', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'expecting', 'the', 'statue', 'to', 'be', 'thrown', '||rightparen||', 'dit', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'im', 'gonna', 'take', 'the', 'suit', '||comma||', 'and', 'the', 'shoes', '||comma||', 'and', 'the', 'hat', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'cmon', '||period||', 'lets', 'go', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'look', 'like', 'joe', 'friday', 'in', 'dragnet', '||period||', '||return||', '||return||', 'george:', 'i', 'cant', 'believe', 'i', 'won', 'at', 'inka', '||dash||', 'dink', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'lets', 'go', '||period||', '||return||', '||return||', 'george:', 'yea', '||period||', '||return||', '||return||', 'jerry:', 'arent', 'you', 'gonna', 'take', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'dont', 'want', 'to', 'carry', 'it', 'around', 'all', 'night', '||period||', 'ill', 'pick', 'it', 'up', 'later', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'what', 'about', 'your', 'stuff', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'uh', '||comma||', 'well', '||dash||', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'lets', 'go', '||period||', 'hey', '||comma||', 'you', 'know', '||comma||', 'you', 'owe', 'me', 'one', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'inka', '||dash||', 'dink', '||period||', '||period||', 'you', 'were', 'it', '||period||', '||return||', '||return||', 'george:', 'its', 'bad', '||questionmark||', '||return||', '||return||', 'jerry:', 'its', 'very', 'bad', '||period||', '||return||', '||return||', 'rava:', 'well', '||comma||', 'if', 'they', 'dont', 'let', 'you', 'be', 'my', 'editor', 'on', 'this', 'book', '||comma||', 'ill', 'go', 'to', 'another', 'publisher', '||period||', 'its', 'that', 'simple', '||period||', '||return||', '||return||', 'elaine:', 'you', 'told', 'them', 'that', '||questionmark||', '||return||', '||return||', 'rava:', 'of', 'course', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'excited', '||rightparen||', 'this', 'is', 'so', 'fantastic', '||period||', 'i', 'dont', 'know', 'how', 'to', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'rava', '||rightparen||', 'so', '||comma||', 'wheres', 'this', 'boyfriend', 'of', 'yours', '||questionmark||', 'i', 'cant', 'wait', 'much', 'longer', '||period||', 'ive', 'got', 'a', 'flight', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'probably', 'caught', 'in', 'traffic', '||period||', '||return||', '||return||', 'rava:', 'or', 'maybe', 'hes', 'dead', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'do', 'you', 'write', '||comma||', 'childrens', 'books', '||questionmark||', '||return||', '||return||', 'rava:', 'thats', 'ray', '||period||', '||return||', '||return||', 'ray:', 'ah', '||comma||', 'greetings', '||comma||', 'greetings', '||comma||', 'and', 'salutations', '||period||', 'i', 'beg', 'your', 'forgiveness', '||period||', 'my', 'tardiness', 'was', 'unavoidable', '||period||', 'rava', '||comma||', 'my', 'love', '||period||', 'elaine', '||comma||', 'my', 'dear', 'friend', '||period||', 'and', 'you', 'must', 'be', 'jerry', '||period||', 'lord', 'of', 'the', 'manor', '||period||', 'ah', '||comma||', 'my', 'liege', '||period||', 'a', 'pleasure', 'to', 'serve', 'you', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'rava:', 'and', 'we', 'have', 'to', 'get', 'back', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'get', 'to', 'the', 'airport', '||period||', '||return||', '||return||', 'ray:', 'your', 'palace', 'shall', 'sparkle', 'like', 'the', 'stars', 'in', 'heaven', 'upon', 'your', 'save', 'arrival', '||comma||', 'sire', '||period||', '||return||', '||return||', 'jerry:', 'the', 'uh', 'toilet', 'brush', 'is', 'under', 'the', 'sink', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'really', 'feel', 'that', 'comfortable', 'with', 'a', 'maid', '||comma||', 'either', '||comma||', 'because', 'theres', 'that', 'guilt', 'when', 'you', 'have', 'someone', 'cleaning', 'your', 'house', '||period||', 'you', 'know', '||comma||', 'youre', 'sitting', 'there', 'on', 'your', 'sofa', '||comma||', 'and', 'they', 'go', 'by', 'with', 'the', 'vacuum', '||comma||', 'im', 'really', 'sorry', 'about', 'this', '||period||', 'i', 'dont', 'know', 'why', 'i', 'left', 'that', 'stuff', 'over', 'there', '||period||', 'and', 'thats', 'why', 'i', 'could', 'never', 'be', 'a', 'maid', '||comma||', 'because', 'id', 'have', 'an', 'attitude', '||period||', 'id', 'find', 'them', '||comma||', 'wherever', 'they', 'are', 'in', 'the', 'house', '||comma||', 'oh', '||comma||', 'i', 'suppose', 'you', 'couldnt', 'do', 'this', '||questionmark||', 'no', '||comma||', 'dont', 'get', 'up', '||comma||', 'let', 'me', 'clean', 'up', 'your', 'filth', '||period||', 'no', '||comma||', 'you', 'couldnt', 'dust', '||period||', 'no', '||comma||', 'this', 'is', 'too', 'tough', '||comma||', 'isnt', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'really', 'did', 'an', 'amazing', 'job', '||period||', 'look', '||exclammark||', 'he', 'uncoagulated', 'the', 'top', 'of', 'the', 'dishwashing', 'liquid', '||exclammark||', '||leftparen||', 'jerry', 'opens', 'refrigerator', '||period||', '||rightparen||', 'he', 'cleaned', 'out', 'the', 'bottom', 'of', 'the', 'little', 'egg', 'cups', '||exclammark||', 'come', 'here', '||comma||', 'look', 'at', 'this', '||period||', '||leftparen||', 'he', 'gets', 'on', 'his', 'knees', 'and', 'points', '||period||', '||rightparen||', 'he', 'cleaned', 'the', 'little', 'one', '||dash||', 'inch', 'area', 'between', 'the', 'refrigerator', 'and', 'the', 'counter', '||period||', 'how', 'did', 'he', 'get', 'in', 'there', '||questionmark||', '||exclammark||', 'he', 'must', 'be', 'like', 'rubber', 'man', '||exclammark||', '||return||', '||return||', 'elaine:', 'theres', 'no', 'rubber', 'man', '||period||', '||return||', '||return||', 'jerry:', 'why', 'did', 'i', 'think', 'there', 'was', 'a', 'rubber', 'man', '||questionmark||', 'theres', 'elastic', 'man', '||period||', '||period||', '||period||', 'plastic', 'man', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'im', 'leaving', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'to', 'ravas', 'house', '||period||', 'ive', 'gotta', 'pick', 'up', 'her', 'manuscript', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'wait', '||period||', 'ill', 'go', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'he', 'windexed', 'the', 'little', 'peep', 'hole', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'rava', '||rightparen||', 'so', '||comma||', 'the', 'meeting', 'with', 'lippman', 'is', 'all', 'set', '||period||', 'hes', 'the', 'editor', '||dash||', 'in', '||dash||', 'chief', '||exclammark||', 'i', 'think', 'because', 'of', 'your', 'request', '||dash||', '||return||', '||return||', 'rava:', 'demand', '||period||', '||return||', '||return||', 'elaine:', "they're", 'going', 'to', 'promote', 'me', 'to', 'editor', '||period||', '||return||', '||return||', 'rava:', 'daantotin', '||period||', '||leftparen||', 'there', 'is', 'a', 'sound', 'of', 'the', 'front', 'door', 'being', 'unlocked', '||period||', '||rightparen||', 'theres', 'ray', '||period||', '||period||', '||period||', 'late', 'as', 'usual', '||period||', '||return||', '||return||', 'ray:', 'well', '||comma||', 'this', 'is', 'an', 'unexpected', 'surprise', 'and', 'delight', '||exclammark||', 'the', 'once', 'and', 'future', 'king', 'of', 'comedy', '||comma||', 'jerry', 'the', 'first', '||comma||', 'gracing', 'our', 'humble', 'abode', '||period||', 'rava', '||comma||', 'were', 'in', 'the', 'presence', 'of', 'royalty', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'ray', '||comma||', 'listen', '||comma||', 'you', 'really', 'did', 'a', 'tremendous', 'job', 'cleaning', 'that', 'apartment', '||period||', '||return||', '||return||', 'ray:', 'but', 'i', 'didnt', 'just', 'clean', 'your', 'apartment', '||period||', 'it', 'was', 'a', 'ritual', '||comma||', 'a', 'ceremony', '||comma||', 'a', 'celebration', 'of', 'life', '||period||', '||return||', '||return||', 'jerry:', 'shouldnt', 'you', 'be', 'out', 'on', 'a', 'ledge', 'somewhere', '||questionmark||', '||return||', '||return||', 'rava:', 'the', 'water', 'is', 'boiling', '||period||', 'are', 'you', 'having', 'tea', '||questionmark||', '||return||', '||return||', 'elaine', '&', 'ray:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'rava:', '||leftparen||', 'from', 'the', 'kitchen', '||rightparen||', 'ray', '||comma||', 'would', 'you', 'give', 'me', 'a', 'hand', '||questionmark||', '||return||', '||return||', 'ray:', 'yeah', '||comma||', 'im', 'coming', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'thats', 'the', 'statue', 'from', 'my', 'house', '||period||', 'that', 'looks', 'like', 'the', 'statue', 'from', 'my', 'house', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'statue', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'statue', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'have', 'a', 'statue', '||questionmark||', 'i', 'never', 'saw', 'a', 'statue', '||period||', '||return||', '||return||', 'jerry:', 'my', 'grandfather', 'gave', 'me', 'a', 'statue', '||exclammark||', '||return||', '||return||', 'elaine:', 'since', 'when', '||questionmark||', '||return||', '||return||', 'jerry:', 'whats', 'the', 'difference', '||questionmark||', '||exclammark||', 'thats', 'the', 'one', '||exclammark||', 'he', 'ripped', 'me', 'off', '||exclammark||', 'this', 'guy', 'ripped', 'me', 'off', '||exclammark||', '||return||', '||return||', 'ray:', 'do', 'you', 'take', 'sugar', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'uhh', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'believe', 'it', '||exclammark||', 'this', 'guy', 'ripped', 'me', 'off', '||exclammark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'realize', 'what', 'youre', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', 'this', 'guy', 'ripped', 'me', 'off', '||exclammark||', 'he', 'stole', 'that', 'statue', 'right', 'out', 'of', 'my', 'house', '||exclammark||', '||return||', '||return||', 'ray:', 'lemon', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'uh', '||period||', '||period||', '||period||', 'sure/yeah', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', 'pretty', 'sure', '||exclammark||', 'ninety', '||dash||', 'nine', 'percent', 'sure', '||period||', '||return||', '||return||', 'elaine:', 'ninety', '||dash||', 'nine', 'percent', 'sure', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ray:', 'ah', '||comma||', 'sweet', 'elixir', '||period||', 'its', 'fragrant', 'nectar', 'a', 'soothing', 'balm', 'for', 'the', 'soul', '||period||', '||return||', '||return||', 'rava:', 'ah', 'those', 'are', 'the', 'pastries', '||comma||', 'ray', 'take', 'care', 'of', 'that', '||comma||', "i'm", 'going', 'to', 'get', 'elaine', 'the', 'manuscript', '||period||', '||return||', '||return||', 'ray:', 'ah', '||comma||', 'the', 'pastries', '||exclammark||', '||return||', '||return||', 'elaine:', 'maybe', 'it', 'just', 'looks', 'the', 'same', '||period||', 'maybe', 'its', 'just', 'a', 'coincidence', '||period||', '||return||', '||return||', 'jerry:', 'coincidence', '||questionmark||', 'this', 'guys', 'in', 'my', 'apartment', 'and', 'then', '||comma||', 'just', 'by', 'coincidence', '||comma||', 'he', 'has', 'the', 'same', 'exact', 'statue', 'in', 'his', 'apartment', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'never', 'saw', 'the', 'statue', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'statue', '||exclammark||', 'what', 'should', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'call', 'kramer', '||period||', 'he', 'can', 'check', 'my', 'house', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'jerry', '||comma||', 'dont', 'blow', 'this', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'dont', 'worry', '||period||', '||leftparen||', 'whispering', 'into', 'the', 'phone', '||rightparen||', 'kramer', '||exclammark||', 'kramer', '||exclammark||', '||period||', '||period||', '||period||', 'its', 'jerry', '||exclammark||', '||period||', '||period||', '||period||', 'jerry', '||exclammark||', '||period||', '||period||', '||period||', 'from', 'next', 'door', '||exclammark||', '||period||', '||period||', '||period||', 'never', 'mind', 'where', 'i', 'am', '||exclammark||', '||period||', '||period||', '||period||', 'yes', '||comma||', 'jerry', 'seinfeld', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'ma', '||comma||', 'i', 'told', 'you', '||comma||', 'just', 'dip', 'the', 'bread', 'in', 'the', 'batter', '||comma||', 'and', 'put', 'in', 'right', 'in', 'the', 'pan', '||period||', '||period||', '||period||', 'okay', '||comma||', 'bye', '||period||', '||leftparen||', 'jerry', 'hangs', 'up', '||semicolon||', 'to', 'rava', '||rightparen||', 'my', 'mother', '||period||', 'she', 'forgot', 'how', 'to', 'make', 'french', 'toast', '||period||', 'you', 'know', 'how', 'mothers', 'are', '||period||', '||return||', '||return||', 'rava:', 'my', 'mother', 'left', 'us', 'when', 'i', 'was', 'six', 'years', 'old', '||period||', 'all', 'seven', 'of', 'us', '||period||', 'we', 'never', 'heard', 'from', 'her', 'again', '||period||', 'i', 'hope', 'shes', 'rotting', 'in', 'an', 'alley', 'somewhere', '||exclammark||', '||return||', '||return||', 'jerry:', 'my', 'moms', 'down', 'in', 'florida', '||period||', 'shes', 'got', 'uh', 'one', 'of', 'those', 'condos', '||period||', 'hot', 'down', 'there', 'in', 'the', 'summer', '||period||', 'you', 'ever', 'been', 'down', 'there', '||questionmark||', '||return||', '||return||', 'ray:', 'i', 'love', 'these', 'pastries', '||period||', 'you', 'know', '||comma||', 'in', 'scandinavian', 'mythology', '||comma||', 'the', 'pastries', 'were', 'the', 'food', 'of', 'the', 'gods', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'uh', 'i', 'just', 'remembered', '||period||', '||period||', '||period||', 'im', '||period||', '||period||', '||period||', 'uh', '||comma||', 'getting', 'a', 'facial', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'see', 'you', 'tomorrow', 'morning', '||period||', '||return||', '||return||', 'ray:', 'how', 'about', 'dinner', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'dont', 'eat', 'dinner', '||period||', 'dinners', 'for', 'suckers', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'okay', '||comma||', 'thanks', 'anyway', '||period||', '||period||', '||period||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'nope', '||comma||', 'the', 'cop', 'says', 'its', 'my', 'word', 'against', 'his', '||period||', 'theres', 'nothing', 'they', 'can', 'do', '||period||', '||return||', '||return||', 'kramer:', 'lets', 'go', 'get', 'him', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'george:', 'we', 'cant', 'just', 'let', 'him', 'get', 'away', 'with', 'this', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'realize', 'how', 'crazy', 'he', 'had', 'to', 'be', 'to', 'do', 'something', 'like', 'this', '||questionmark||', 'he', 'knew', 'i', 'was', 'gonna', 'know', 'its', 'missing', '||comma||', 'and', 'he', 'took', 'it', '||exclammark||', 'and', 'of', 'all', 'things', 'to', 'take', '||exclammark||', 'i', 'left', 'my', 'watch', '||comma||', 'tape', 'recorder', '||comma||', 'stereo', '||period||', 'hes', 'crazy', '||period||', '||return||', '||return||', 'kramer:', 'you', 'wanna', 'go', 'get', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'then', '||comma||', 'if', 'hes', 'crazy', 'you', 'should', 'just', 'forget', 'it', '||period||', '||return||', '||return||', 'george:', 'forget', 'it', '||questionmark||', 'i', 'already', 'called', 'my', 'parents', '||period||', 'i', 'told', 'them', 'to', 'expect', 'the', 'surprise', 'of', 'a', 'lifetime', '||period||', 'my', 'mothers', 'making', 'her', 'roasted', 'potatoes', '||exclammark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'do', 'you', 'realize', 'that', 'rava', 'has', 'asked', 'me', 'to', 'edit', 'her', 'book', '||questionmark||', '||return||', '||return||', 'george:', 'who', 'is', 'this', 'rava', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'say', 'we', 'get', 'him', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', '||return||', '||return||', 'george:', 'let', 'me', 'just', 'call', 'him', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'call', 'him', '||period||', '||leftparen||', 'jerry', 'picks', 'up', 'the', 'cordless', 'phone', '||period||', 'he', 'points', 'to', 'the', 'rotary', 'phone', 'on', 'the', 'coffee', 'table', '||period||', 'kramer', '||comma||', 'george', '||comma||', 'and', 'elaine', 'struggle', 'for', 'it', '||period||', '||rightparen||', 'hello', '||comma||', 'ray', '||questionmark||', '||period||', '||period||', '||period||', 'hi', '||comma||', 'ray', '||comma||', 'this', 'is', 'ravas', 'friend', '||comma||', 'elaines', 'friend', '||comma||', 'jerry', '||period||', '||period||', '||period||', 'the', 'king', 'of', 'comedy', '||comma||', 'right', '||period||', 'listen', '||comma||', 'you', 'know', 'that', 'statue', 'on', 'your', 'mantle', '||comma||', 'the', 'one', 'with', 'the', 'blue', 'lady', '||questionmark||', '||leftparen||', 'he', 'covers', 'the', 'reciever', 'and', 'yells', 'at', 'kramer', 'and', 'george', '||period||', '||rightparen||', 'would', 'you', 'shut', 'up', '||questionmark||', '||exclammark||', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'yeah', '||comma||', 'you', 'dont', 'want', 'to', 'talk', 'about', 'it', 'over', 'the', 'phone', '||questionmark||', '||period||', '||period||', 'you', 'dont', 'want', 'rava', 'to', 'hear', '||questionmark||', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'i', 'understand', '||period||', '||period||', '||period||', 'you', 'know', 'that', 'coffee', 'shop', 'near', 'my', 'house', '||comma||', 'monks', '||questionmark||', '||period||', '||period||', '||period||', 'all', 'right', '||comma||', 'tomorrow', '||period||', '||period||', '||period||', 'one', 'o', 'clock', '||period||', '||period||', '||period||', 'great', '||comma||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'look', '||comma||', 'look', '||comma||', 'look', '||period||', 'lets', 'say', 'he', 'stole', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'he', 'stole', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'cmon', '||comma||', 'you', 'cant', 'do', 'anything', 'about', 'it', '||period||', 'the', 'cops', 'wont', 'do', 'anything', '||period||', 'what', '||comma||', 'are', 'you', 'going', 'to', 'fight', 'him', '||questionmark||', 'why', 'dont', 'you', 'just', 'forget', 'it', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'george:', 'no', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'you', 'said', 'one', 'oclock', '||period||', '||return||', '||return||', 'jerry:', 'relax', '||comma||', 'hes', 'late', '||period||', 'hes', 'always', 'late', '||period||', 'its', 'part', 'of', 'his', 'm', '||period||', 'o', '||period||', '||return||', '||return||', 'george:', 'remember', '||comma||', 'dont', 'take', 'any', 'crap', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', 'dont', 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'ill', 'be', 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'comforting', '||period||', 'shh', '||period||', 'hes', 'coming', '||period||', '||leftparen||', 'to', 'ray', '||rightparen||', 'ray', '||questionmark||', '||return||', '||return||', 'ray:', 'oh', '||comma||', 'jerry', '||period||', 'i', 'cant', 'believe', 'you', 'asked', 'me', 'about', 'that', 'statue', '||period||', 'do', 'you', 'know', 'how', 'much', 'trouble', 'you', 'couldve', 'got', 'me', 'into', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'didnt', '||period||', '||period||', '||period||', '||return||', '||return||', 'ray:', 'rava', 'was', 'standing', 'right', 'next', 'to', 'me', '||period||', 'i', 'never', 'told', 'her', 'where', 'i', 'got', 'the', 'statue', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', 'to', 'himself', '||rightparen||', 'i', 'wonder', 'why', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'just', 'give', 'it', 'back', '||comma||', 'and', 'i', 'wont', 'say', 'anything', '||period||', '||return||', '||return||', 'ray:', 'give', 'it', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'ray:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'is', 'he', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'ray:', 'im', 'talking', 'about', 'the', 'statue', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'ray:', 'give', 'it', 'back', 'to', 'whom', '||questionmark||', '||return||', '||return||', 'jerry:', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'him', '||period||', '||return||', '||return||', 'ray:', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'me', '||period||', '||return||', '||return||', 'ray:', 'im', 'not', 'getting', 'this', '||period||', '||return||', '||return||', 'george:', 'you', 'already', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'ray', '||comma||', 'i', 'had', 'a', 'statue', 'in', 'my', 'house', '||period||', 'you', 'were', 'in', 'my', 'house', 'and', 'then', 'i', 'saw', 'it', 'in', 'your', 'house', '||period||', '||return||', '||return||', 'ray:', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'saying', '||questionmark||', '||return||', '||return||', 'george:', 'take', 'a', 'wild', 'guess', '||period||', '||return||', '||return||', 'ray:', 'are', 'you', 'saying', 'i', 'stole', 'your', 'statue', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'a', 'mind', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'ray:', 'i', 'cant', 'believe', 'what', 'im', 'hearing', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'believe', 'what', 'im', 'hearing', '||period||', '||return||', '||return||', 'george:', 'i', 'cant', 'believe', 'what', 'im', 'hearing', '||period||', '||return||', '||return||', 'ray:', 'for', 'your', 'information', '||comma||', 'i', 'got', 'that', 'statue', 'in', 'a', 'pawn', 'shop', '||period||', '||return||', '||return||', 'george:', 'pawn', 'shop', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'pawn', 'shop', '||questionmark||', '||return||', '||return||', 'ray:', 'yes', '||period||', 'in', 'chinatown', 'with', 'the', 'money', 'i', 'earned', 'cleaning', 'peoples', 'apartments', '||period||', '||return||', '||return||', 'george:', 'cleaning', 'them', 'out', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'excuse', 'me', '||period||', '||period||', '||period||', 'look', '||comma||', 'ray', '||comma||', 'you', 'were', 'the', 'only', 'person', 'in', 'my', 'house', '||period||', '||return||', '||return||', 'ray:', 'whats', 'behind', 'this', '||questionmark||', 'its', 'rava', '||comma||', 'isnt', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'again', 'with', 'the', 'rava', '||period||', '||return||', '||return||', 'ray:', 'you', 'want', 'her', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'shes', 'a', 'little', 'too', 'cheery', 'for', 'me', '||period||', '||return||', '||return||', 'ray:', 'shes', 'from', 'finland', '||comma||', 'for', 'crying', 'out', 'loud', '||period||', 'finland', '||exclammark||', 'do', 'you', 'understand', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'finland', '||period||', 'theyre', 'neutral', '||period||', '||return||', '||return||', 'ray:', 'is', 'it', 'me', '||questionmark||', 'do', 'i', 'rub', 'you', 'the', 'wrong', 'way', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'actually', 'find', 'you', 'quite', 'charming', '||period||', 'a', 'bit', 'verbose', 'at', 'times', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'find', 'you', 'so', 'charming', '||period||', 'you', 'wuss', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'did', 'you', 'call', 'me', 'a', 'wuss', '||questionmark||', '||return||', '||return||', 'ray:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', 'luss', '||period||', 'im', 'at', 'a', 'luss', '||period||', '||return||', '||return||', 'ray:', 'i', 'would', 'just', 'love', 'to', 'take', 'you', 'down', 'to', 'the', 'shop', 'where', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'not', 'necessary', '||period||', '||leftparen||', 'george', 'slams', 'his', 'menu', 'down', 'on', 'the', 'table', 'repeatedly', '||period||', '||rightparen||', 'you', 'know', '||comma||', 'maybe', 'its', 'not', 'that', 'bad', 'an', 'idea', '||period||', '||return||', '||return||', 'ray:', 'and', 'i', 'would', 'love', 'to', '||period||', 'nothing', 'would', 'please', 'me', 'more', '||period||', 'but', '||comma||', 'unfortunately', '||comma||', 'the', 'guy', 'retired', 'and', 'moved', 'to', 'singapore', '||period||', '||return||', '||return||', 'george:', 'singapore', '||questionmark||', '||exclammark||', 'do', 'you', 'hear', 'this', '||questionmark||', '||return||', '||return||', 'ray:', 'if', 'you', 'really', 'want', '||comma||', 'maybe', 'i', 'can', 'contact', 'the', 'guy', 'in', 'singapore', 'and', 'have', 'him', 'make', 'a', 'photostat', 'of', 'the', 'receipt', 'and', 'send', 'it', 'over', '||period||', '||return||', '||return||', 'george:', 'thats', 'it', '||exclammark||', 'thats', 'it', '||exclammark||', 'i', 'cant', 'take', 'it', '||period||', 'i', 'cant', 'take', 'it', 'anymore', '||exclammark||', 'you', 'stole', 'the', 'statue', '||exclammark||', 'youre', 'a', 'theif', '||exclammark||', 'youre', 'a', 'liar', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'ray:', 'who', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'the', 'judge', 'and', 'the', 'jury', '||comma||', 'pal', '||period||', 'and', 'the', 'verdict', 'is', 'guilty', '||exclammark||', '||return||', '||return||', 'ray:', 'whats', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'guilty', '||exclammark||', '||return||', '||return||', 'ray:', 'your', 'friend', 'is', 'crazy', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'im', 'crazy', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'ray:', 'ive', 'got', 'to', 'get', 'going', '||period||', 'i', 'have', 'a', 'class', '||period||', '||return||', '||return||', 'george:', 'oh', 'ho', '||exclammark||', 'class', '||comma||', 'huh', '||questionmark||', 'at', 'columbia', '||questionmark||', 'let', 'me', 'tell', 'you', 'something', '||comma||', 'pal', '||period||', 'i', 'called', 'the', 'registrars', 'office', '||period||', 'i', 'checked', 'you', 'out', '||period||', 'they', 'have', 'no', 'record', 'of', 'a', 'ray', 'thomas', 'at', 'that', 'school', '||exclammark||', 'you', 'liar', '||exclammark||', '||return||', '||return||', 'ray:', 'well', '||comma||', 'thats', 'because', 'im', 'registered', 'under', 'my', 'full', 'legal', 'name', '||comma||', 'raymond', 'thomas', 'wochinski', '||period||', 'ray', 'thomas', 'is', 'my', 'professional', 'name', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'alias', '||period||', '||return||', '||return||', 'ray:', 'you', 'are', 'starting', 'to', 'make', 'me', 'angry', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'that', 'was', 'bound', 'to', 'happen', '||period||', '||return||', '||return||', 'ray:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'hope', 'you', 'think', 'about', 'what', 'youve', 'done', 'here', 'today', '||period||', 'and', 'if', 'you', 'want', 'to', 'call', 'and', 'apologize', '||comma||', 'you', 'know', 'where', 'to', 'reach', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'ray', '||period||', '||return||', '||return||', 'ray:', 'yes', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'get', 'the', 'goop', 'out', 'of', 'the', 'top', 'of', 'the', 'dishwashing', 'liquid', '||questionmark||', 'it', 'was', 'like', 'a', 'brand', '||dash||', 'new', 'nozzle', '||exclammark||', '||return||', '||return||', 'elaine:', 'nervous', '||questionmark||', '||return||', '||return||', 'rava:', 'why', 'should', 'i', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'right', '||period||', '||return||', '||return||', 'rava:', 'your', 'notes', 'are', 'very', 'insightful', '||period||', '||return||', '||return||', 'elaine:', 'the', 'book', 'is', 'great', '||period||', 'did', 'you', 'go', 'out', 'last', 'night', '||questionmark||', '||return||', '||return||', 'rava:', 'no', '||period||', 'we', 'made', 'love', 'on', 'the', 'floor', 'like', 'two', 'animals', '||period||', 'ray', 'is', 'insatiable', '||period||', '||return||', '||return||', 'elaine:', 'they', 'all', 'are', '||period||', '||return||', '||return||', 'rava:', 'was', 'jerry', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'cant', 'remember', '||period||', '||return||', '||return||', 'rava:', 'you', 'know', '||comma||', 'ray', 'is', 'very', 'upset', 'over', 'these', 'accusations', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'im', 'staying', 'out', 'of', 'this', 'one', '||period||', 'this', 'is', 'between', 'them', '||period||', 'i', 'am', 'not', 'getting', 'involved', '||period||', '||return||', '||return||', 'rava:', 'so', 'you', 'think', 'he', 'stole', 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'have', 'to', 'admit', '||period||', '||period||', '||period||', 'the', 'circumstantial', 'evidence', '||period||', '||period||', '||period||', '||return||', '||return||', 'rava:', 'i', 'admit', 'nothing', '||exclammark||', '||return||', '||return||', 'man:', 'will', 'you', 'put', 'that', 'cigarette', 'out', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'mean', '||comma||', 'he', 'was', 'in', 'the', 'apartment', '||comma||', 'and', 'then', 'its', 'gone', 'and', 'its', 'in', 'your', 'apartment', '||period||', '||return||', '||return||', 'rava:', 'maybe', 'you', 'think', 'were', 'in', 'cahoots', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'but', 'it', 'is', 'quite', 'a', 'coincidence', '||period||', '||return||', '||return||', 'rava:', 'yes', '||comma||', 'thats', 'all', 'a', 'coincidence', '||exclammark||', '||return||', '||return||', 'elaine:', 'a', 'big', 'coincidence', '||period||', '||return||', '||return||', 'rava:', 'not', 'a', 'big', 'coincidence', '||period||', 'a', 'coincidence', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'thats', 'a', 'big', 'coincidence', '||period||', '||return||', '||return||', 'rava:', 'thats', 'what', 'a', 'coincidence', 'is', '||exclammark||', 'there', 'are', 'no', 'small', 'coincidences', 'and', 'big', 'coincidences', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'there', 'are', 'degrees', 'of', 'coincidences', '||period||', '||return||', '||return||', 'rava:', 'no', '||comma||', 'there', 'are', 'only', 'coincidences', '||exclammark||', 'ask', 'anyone', '||exclammark||', '||return||', '||return||', 'rava:', 'are', 'there', 'big', 'coincidences', 'and', 'small', 'coincidences', '||comma||', 'or', 'just', 'coincidences', '||questionmark||', 'well', '||questionmark||', '||exclammark||', 'well', '||questionmark||', '||exclammark||', '||return||', '||return||', 'man:', 'will', 'you', 'put', 'that', 'cigarette', 'out', '||questionmark||', '||exclammark||', '||return||', '||return||', 'rava:', 'maybe', 'i', 'put', 'it', 'out', 'on', 'your', 'face', '||exclammark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'its', 'just', 'like', 'ray', 'said', '||period||', 'you', 'and', 'jerry', 'are', 'jealous', 'of', 'our', 'love', '||period||', 'youre', 'trying', 'to', 'destroy', 'us', '||period||', '||return||', '||return||', 'elaine:', 'shouldnt', 'you', 'be', 'out', 'on', 'a', 'ledge', 'somewhere', '||questionmark||', '||return||', '||return||', 'george:', 'ma', '||comma||', 'will', 'you', 'stop', '||questionmark||', '||period||', '||period||', '||period||', 'its', 'just', 'a', 'statue', '||exclammark||', '||period||', '||period||', '||period||', 'how', 'is', 'it', 'my', 'fault', '||questionmark||', '||exclammark||', '||period||', '||period||', '||period||', 'it', 'was', 'stolen', '||period||', 'i', 'didnt', 'even', 'touch', 'it', 'this', 'time', '||period||', '||period||', '||period||', 'okay', '||comma||', 'fine', '||period||', '||period||', '||period||', 'i', 'dont', 'see', 'why', 'this', 'should', 'affect', 'to', 'potatoes', '||exclammark||', '||period||', '||period||', '||period||', 'okay', '||period||', '||period||', '||period||', 'goodbye', '||period||', '||leftparen||', 'george', 'hangs', 'up', '||period||', '||rightparen||', 'she', 'doesnt', 'react', 'to', 'disappointment', 'very', 'well', '||period||', 'unlike', 'me', '||period||', '||return||', '||return||', 'kramer:', 'im', 'not', 'happy', 'about', 'this', '||period||', '||return||', '||return||', 'elaine:', 'why', 'dont', 'we', 'just', 'throw', 'a', 'molotov', 'cocktail', 'through', 'their', 'window', '||questionmark||', '||return||', '||return||', 'george:', 'theres', 'just', 'no', 'justice', '||period||', 'this', 'experience', 'has', 'changed', 'me', '||period||', 'its', 'made', 'me', 'more', 'cynical', '||comma||', 'more', 'bitter', '||comma||', 'more', 'jaded', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'casually', '||rightparen||', 'sure', '||comma||', 'why', 'not', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'how', 'do', 'you', 'think', 'i', 'feel', '||questionmark||', 'instead', 'of', 'editing', 'the', 'first', 'novel', 'of', 'a', 'major', 'young', 'writing', 'talent', '||comma||', 'i', 'am', 'proofreading', 'a', 'food', 'allergy', 'cookbook', '||period||', '||return||', '||return||', 'jerry:', 'cant', 'you', 'talk', 'to', 'your', 'boss', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'did', '||period||', 'he', 'loves', 'rava', '||period||', 'worse', '||comma||', 'he', 'loves', 'ray', '||period||', 'and', 'he', "didn't", 'think', 'youre', 'funny', 'at', 'all', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'talking', 'to', 'himself', '||rightparen||', 'im', 'not', 'happy', 'about', 'this', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'perhaps', 'we', 'can', 'take', 'comfort', 'in', 'the', 'knowledge', 'that', 'in', 'the', 'next', 'world', '||comma||', 'ray', 'will', 'be', 'the', 'recipient', 'of', 'a', 'much', 'larger', 'and', 'more', 'harsh', 'brand', 'of', 'justice', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'hell', 'have', 'my', 'parents', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'the', 'other', 'side', 'of', 'the', 'door', '||rightparen||', 'police', '||exclammark||', 'open', 'up', '||exclammark||', '||return||', '||return||', 'ray:', 'police', '||questionmark||', '||return||', '||return||', 'kramer:', 'freeze', '||comma||', 'mother', '||exclammark||', '||return||', '||return||', 'ray:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'shut', 'up', '||period||', 'spread', 'em', '||period||', 'i', 'said', 'spread', 'em', '||exclammark||', '||leftparen||', 'looks', 'around', '||rightparen||', 'youre', 'in', 'big', 'trouble', 'son', '||period||', 'burglary', '||comma||', 'grand', 'larceny', '||comma||', 'possession', 'of', 'stolen', 'goods', '||period||', '||period||', '||period||', 'and', 'uh', '||comma||', 'uh', '||period||', '||period||', '||period||', 'murder', '||period||', '||return||', '||return||', 'ray:', 'murder', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'shut', 'up', '||exclammark||', 'keep', 'em', 'spread', '||exclammark||', 'just', 'make', 'love', 'to', 'that', 'wall', '||comma||', 'pervert', '||exclammark||', '||return||', '||return||', 'ray:', 'i', 'think', 'you', 'have', 'me', 'confused', 'with', 'somebody', 'else', '||period||', '||return||', '||return||', 'kramer:', 'is', 'your', 'name', 'ray', '||questionmark||', '||return||', '||return||', 'ray:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'youre', 'the', 'punk', 'im', 'looking', 'for', '||exclammark||', '||return||', '||return||', 'ray:', 'hey', '||comma||', 'hey', '||comma||', 'are', 'you', 'a', 'cop', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'im', 'a', 'cop', '||period||', 'im', 'a', 'good', 'cop', '||period||', 'im', 'a', 'damn', 'good', 'cop', '||exclammark||', '||leftparen||', 'on', 'that', 'line', '||comma||', 'kramer', 'points', 'to', 'ray', '||comma||', 'and', 'ray', 'turns', 'back', 'to', 'the', 'wall', '||period||', 'kramer', 'heads', 'for', 'the', 'door', '||period||', '||rightparen||', 'todays', 'your', 'lucky', 'day', '||comma||', 'junior', '||comma||', 'cause', 'im', 'gonna', 'let', 'you', 'off', 'with', 'a', 'warning', '||period||', 'any', 'more', 'of', 'this', 'criminal', 'activity', '||comma||', 'and', 'youll', 'be', 'sorry', '||period||', 'you', 'got', 'me', '||questionmark||', '||return||', '||return||', 'ray:', 'got', 'you', '||questionmark||', 'i', 'dont', 'even', 'know', 'what', 'the', 'hell', 'youre', 'talking', 'about', '||period||', '||return||', '||return||', 'kramer:', 'good', '||comma||', 'good', '||period||', 'lets', 'uh', 'keep', 'it', 'that', 'way', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'whats', 'the', 'big', 'hubbub', '||comma||', 'bub', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'i', 'cant', 'believe', 'it', '||period||', 'oh', '||comma||', 'youre', 'my', 'hero', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'lets', 'just', 'say', 'i', 'didnt', 'take', 'him', 'to', 'peoples', 'court', '||period||', '||return||', '||return||', 'george:', 'i', 'feel', 'like', 'a', 'huge', 'weights', 'been', 'lifted', 'off', 'my', 'shoulders', '||period||', 'i', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', 'i', 'feel', 'happy', '||exclammark||', 'kramer', '||comma||', 'i', 'dont', 'know', 'how', 'to', 'thank', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'ill', 'think', 'of', 'something', '||period||', '||return||', '||return||', 'jerry:', 'people', 'are', 'going', 'to', 'steal', 'from', 'you', '||period||', 'you', 'cant', 'stop', 'them', '||period||', 'but', '||comma||', 'everybody', 'has', 'their', 'own', 'little', 'personal', 'security', 'things', '||period||', 'things', 'that', 'they', 'think', 'will', 'foil', 'the', 'crooks', '||comma||', 'you', 'know', '||questionmark||', 'in', 'your', 'own', 'mind', '||comma||', 'right', '||questionmark||', 'you', 'go', 'to', 'the', 'beach', '||comma||', 'go', 'in', 'the', 'water', '||comma||', 'put', 'your', 'wallet', 'in', 'the', 'sneaker', '||comma||', 'whos', 'gonna', 'know', '||questionmark||', 'what', 'criminal', 'mind', 'could', 'penetrate', 'this', 'fortress', 'of', 'security', '||questionmark||', 'i', 'tied', 'a', 'bow', '||period||', 'they', 'cant', 'get', 'through', 'that', '||period||', 'i', 'put', 'the', 'wallet', 'down', 'by', 'the', 'toe', 'of', 'the', 'sneaker', '||period||', 'they', 'never', 'look', 'there', '||period||', 'they', 'check', 'the', 'heel', '||comma||', 'they', 'move', 'on', '||period||', '||return||', '||return||', 'jerry:', 'whenever', 'i', 'see', 'the', 'news', 'and', "they're", 'hauling', 'in', 'some', 'kind', 'of', 'terrorist', '||comma||', 'psycho', '||comma||', 'maniac', '||comma||', 'mass', 'murderer', 'guy', '||period||', 'you', 'notice', "he's", 'always', 'covering', 'up', 'his', 'face', 'with', 'the', 'newspaper', '||comma||', 'with', 'the', 'jacket', '||comma||', 'with', 'the', 'hat', '||period||', 'what', 'is', 'he', 'worried', 'about', '||questionmark||', 'i', 'mean', 'what', 'is', 'this', "man's", 'reputation', '||questionmark||', 'that', 'he', 'has', 'to', 'worry', 'about', 'this', 'kind', 'of', 'exposure', 'damaging', 'his', 'good', 'name', '||questionmark||', 'i', 'mean', '||comma||', 'what', 'is', 'he', 'up', 'for', 'a', 'big', 'job', 'promotion', 'down', 'at', 'the', 'office', 'or', 'something', '||questionmark||', 'afraid', 'the', 'boss', 'is', 'gonna', 'catch', 'this', 'on', 'tv', 'and', 'go', '||quotemark||', "isn't", 'that', 'johnson', 'from', 'sales', '||questionmark||', "he's", 'up', 'in', 'that', 'clock', 'tower', 'picking', 'people', 'off', 'one', 'by', 'one', '||period||', 'i', "don't", 'know', 'if', "that's", 'that', 'kind', 'of', 'man', 'we', 'want', 'heading', 'up', 'that', 'new', 'branch', 'office', '||period||', 'he', 'should', 'be', 'in', 'bill', 'collection', '||period||', 'i', 'think', "he's", 'got', 'aptitude', '||period||', '||quotemark||', '||return||', '||return||', 'levitan:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'ha', 'ha', '||comma||', 'she', 'was', 'great', '||period||', 'you', "don't", 'want', 'to', 'know', '||period||', 'hey', 'breaky', '||comma||', 'remind', 'me', 'to', 'tell', 'you', 'what', 'we', 'did', 'in', 'lake', 'george', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'get', 'this', '||period||', '||period||', '||period||', 'i', 'got', 'it', 'all', 'on', 'video', '||period||', '||leftparen||', 'laughing', '||rightparen||', '||return||', '||return||', 'george:', "that's", 'it', '||period||', 'this', 'is', 'it', '||period||', "i'm", 'done', '||period||', 'through', '||period||', "it's", 'over', '||period||', "i'm", 'gone', '||period||', 'finished', '||period||', 'over', '||period||', 'i', 'will', 'never', 'work', 'for', 'you', 'again', '||period||', 'look', 'at', 'you', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'you', 'think', "you're", 'an', 'important', 'man', '||questionmark||', 'is', 'that', 'what', 'you', 'think', '||questionmark||', 'you', 'are', 'a', 'laughingstock', '||period||', 'you', 'are', 'a', 'joke', '||period||', 'these', 'people', 'are', 'laughing', 'at', 'you', '||period||', "you're", 'nothing', '||exclammark||', 'you', 'have', 'no', 'brains', '||comma||', 'no', 'ability', '||comma||', 'nothing', '||exclammark||', '||leftparen||', 'knocking', 'object', 'over', 'on', 'desk', '||rightparen||', 'i', 'quit', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'i', 'have', 'really', 'had', 'it', 'with', 'newman', '||period||', 'he', 'wakes', 'me', 'up', 'again', 'last', 'night', 'at', 'three', "o'clock", 'in', 'the', 'morning', 'to', 'tell', 'me', "he's", 'going', 'up', 'onto', 'the', 'roof', 'to', 'kill', 'himself', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "what'd", 'you', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'said', '||quotemark||', 'jump', '||period||', '||quotemark||', 'well', '||comma||', "he's", 'been', 'threatening', 'to', 'do', 'this', 'for', 'years', '||period||', 'i', 'said', '||quotemark||', 'look', '||comma||', 'if', "you're", 'gonna', 'kill', 'yourself', 'do', 'it', 'already', 'and', 'stop', 'bothering', 'me', '||period||', '||quotemark||', 'at', 'least', "i'd", 'respect', 'the', 'guy', 'for', 'accomplishing', 'something', '||period||', '||return||', '||return||', 'jerry:', "what's", 'his', 'problem', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'job', '||period||', 'no', 'women', '||period||', '||return||', '||return||', 'jerry:', 'he', 'called', 'the', 'right', 'guy', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'am', 'i', 'supposed', 'to', 'tell', 'him', '||questionmark||', 'how', 'much', 'there', 'is', 'for', 'him', 'to', 'live', 'for', '||questionmark||', 'why', 'should', 'i', 'lie', 'to', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'm", 'leaving', '||period||', 'i', 'going', 'to', 'the', 'laundry', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'use', 'the', 'machines', 'down', 'in', 'the', 'basement', '||questionmark||', '||return||', '||return||', 'jerry:', 'fluff', 'and', 'fold', '||period||', 'the', 'only', 'way', 'to', 'live', '||period||', '||leftparen||', 'snapping', 'fingers', 'in', 'tune', 'with', 'words', '||rightparen||', 'i', 'drop', 'it', 'off', '||period||', 'i', 'pick', 'it', 'up', '||period||', "it's", 'a', 'delight', '||period||', '||return||', '||return||', 'kramer:', 'how', "'bout", 'if', 'i', 'put', 'a', 'few', 'things', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'sec', '||period||', 'i', "don't", 'wanna', 'do', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'going', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'wanna', 'mix', 'in', 'everything', '||exclammark||', 'my', 'guys', "don't", 'know', 'your', 'guys', '||period||', 'you', "can't", 'just', 'lock', "'em", 'all', 'in', 'the', 'same', 'machine', 'together', '||period||', "they'll", 'start', 'a', 'riot', '||period||', '||return||', '||return||', 'kramer:', 'have', 'you', 'ever', 'met', 'my', 'guys', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', "can't", 'say', 'as', 'i', 'have', '||period||', '||return||', '||return||', 'kramer:', 'well', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'put', "'em", 'on', 'top', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'this', 'stuff', 'on', 'top', 'is', 'my', 'friends', '||period||', 'could', 'i', 'get', 'it', 'done', 'in', 'a', 'separate', 'machine', '||questionmark||', '||return||', '||return||', 'vic:', "i'll", 'have', 'to', 'charge', 'you', 'for', 'another', 'machine', '||period||', '||return||', '||return||', 'jerry:', 'whatever', 'it', 'costs', '||period||', 'in', 'fact', '||comma||', 'i', 'would', 'prefer', 'it', 'if', 'the', 'machines', 'are', 'not', 'even', 'touching', 'each', 'other', '||period||', 'because', 'something', 'could', '||comma||', 'you', 'know', '||comma||', 'jump', 'across', '||period||', '||return||', '||return||', 'george:', 'guess', 'what', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'know', 'i', 'was', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||period||', 'guess', 'what', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'quit', 'my', 'job', '||period||', '||return||', '||return||', 'jerry:', 'get', 'outta', 'here', '||period||', '||return||', '||return||', 'george:', 'i', "couldn't", 'take', 'it', 'anymore', '||period||', '||return||', '||return||', 'vic:', 'you', 'can', 'have', 'this', 'on', 'monday', '||period||', '||leftparen||', 'hands', 'jerry', 'a', 'ticket', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', 'levitan', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'go', 'in', 'to', 'use', 'his', 'private', 'bathroom', '||comma||', 'everybody', 'uses', 'it', '||comma||', 'and', 'then', 'i', 'get', 'a', 'memo', '||dash||', 'a', 'memo', '||dash||', 'telling', 'me', 'to', 'use', 'the', "men's", 'room', 'in', 'the', 'hall', '||period||', 'well', '||comma||', '||leftparen||', 'laughing', '||rightparen||', 'i', 'mean', 'we', 'share', 'it', 'with', 'pace', 'electronics', '||period||', "it's", 'disgusting', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'and', 'your', 'toilets', '||period||', '||return||', '||return||', 'george:', 'i', 'snapped', '||exclammark||', 'it', 'was', 'the', 'last', 'straw', '||period||', '||leftparen||', 'sighs', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'are', 'you', 'gonna', 'do', 'now', '||questionmark||', 'are', 'you', 'gonna', 'look', 'for', 'something', 'else', 'in', 'real', 'estate', '||questionmark||', '||return||', '||return||', 'george:', "nobody's", 'hiring', 'now', '||period||', 'the', "market's", 'terrible', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'like', 'sports', '||period||', 'i', 'could', 'do', 'something', 'in', 'sports', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', 'uh', '||dash||', 'huh', '||period||', 'in', 'what', 'capacity', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'like', 'the', 'general', 'manager', 'of', 'a', 'baseball', 'team', 'or', 'something', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'well', '||comma||', 'that', '||dash||', 'that', 'could', 'be', 'tough', 'to', 'get', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', "doesn't", 'even', 'have', 'to', 'be', 'the', 'general', 'manager', '||period||', 'maybe', 'i', 'could', 'be', 'like', '||comma||', 'an', 'announcer', '||period||', 'like', 'a', 'color', 'man', '||period||', 'you', 'know', 'how', 'i', 'always', 'make', 'those', 'interesting', 'comments', 'during', 'the', 'game', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'yeah', '||period||', 'you', 'make', 'good', 'comments', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'they', 'tend', 'to', 'give', 'those', 'jobs', 'to', 'ex', '||dash||', 'ballplayers', 'and', 'people', 'that', 'are', '||comma||', 'you', 'know', '||comma||', 'in', 'broadcasting', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "that's", 'really', 'not', 'fair', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'well', '||comma||', 'okay', '||period||', 'okay', '||period||', 'what', 'else', 'do', 'ya', 'like', '||questionmark||', '||return||', '||return||', 'george:', 'movies', '||period||', 'i', 'like', 'to', 'watch', 'movies', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'do', 'they', 'pay', 'people', 'to', 'watch', 'movies', '||questionmark||', '||return||', '||return||', 'jerry:', 'projectionists', '||period||', '||return||', '||return||', 'george:', "that's", 'true', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'gotta', 'know', 'how', 'to', 'work', 'the', 'projector', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'and', "it's", 'probably', 'a', 'union', 'thing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'scoffs', '||rightparen||', 'those', 'unions', '||period||', '||leftparen||', 'sighs', '||rightparen||', 'okay', '||period||', 'sports', '||comma||', '||period||', '||period||', '||period||', 'movies', '||period||', 'what', 'about', 'a', 'talk', 'show', 'host', '||questionmark||', '||return||', '||return||', 'jerry:', 'talk', 'show', 'host', '||period||', "that's", 'good', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "i'd", 'be', 'good', 'at', 'that', '||period||', 'i', 'talk', 'to', 'people', 'all', 'the', 'time', '||period||', 'someone', 'even', 'told', 'me', 'once', 'they', 'thought', "i'd", 'be', 'a', 'good', 'talk', 'show', 'host', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'a', 'couple', 'of', 'people', '||period||', 'i', "don't", 'get', 'that', '||comma||', 'though', '||period||', 'where', 'do', 'you', 'start', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'where', 'it', 'gets', 'tricky', '||period||', '||return||', '||return||', 'george:', 'you', "can't", 'just', 'walk', 'into', 'a', 'building', 'and', 'say', '||quotemark||', 'i', 'wanna', 'be', 'a', 'talk', 'show', 'host', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', "wouldn't", 'think', 'so', '||period||', '||return||', '||return||', 'george:', "it's", 'all', 'politics', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'okay', '||period||', 'sports', '||comma||', 'movies', '||comma||', 'talk', 'show', 'host', '||period||', 'what', 'else', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'could', 'have', 'been', 'a', 'huge', 'mistake', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', "doesn't", 'sound', 'like', 'you', 'completely', 'thought', 'this', 'through', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sighs', '||rightparen||', 'guess', 'not', '||period||', 'what', 'should', 'i', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'can', 'just', 'go', 'back', '||period||', '||return||', '||return||', 'george:', 'go', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'pretend', 'like', 'it', 'never', 'happened', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'just', 'walk', 'into', 'the', 'staff', 'meeting', 'on', 'monday', 'morning', 'like', 'it', 'never', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', "you're", 'an', 'emotional', 'person', '||period||', 'people', "don't", 'take', 'you', 'seriously', '||period||', '||return||', '||return||', 'george:', 'just', '||period||', '||period||', 'go', 'back', '||period||', 'pretend', 'the', 'whole', 'thing', 'never', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'never', 'happened', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'just', "blowin'", 'off', 'a', 'little', 'steam', '||period||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', "you're", 'entitled', '||period||', '||return||', '||return||', 'george:', "i'm", 'emotional', '||period||', '||return||', '||return||', 'jerry:', "that's", 'right', '||period||', "you're", 'emotional', '||period||', '||return||', '||return||', 'george:', 'never', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'never', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'to', 'me', 'the', 'most', 'annoying', 'thing', 'about', 'the', 'couple', 'of', 'times', 'that', 'i', 'did', 'work', 'in', 'an', 'office', '||period||', 'is', 'that', 'when', 'you', 'go', 'in', '||comma||', 'in', 'the', 'morning', 'you', 'say', 'hi', 'to', 'everyone', 'and', 'for', 'some', 'reason', 'throughout', 'the', 'day', 'you', 'have', 'to', 'continue', 'to', 'greet', 'these', 'people', 'all', 'day', 'every', 'time', 'you', 'see', 'them', '||period||', 'i', 'mean', 'you', 'walk', 'in', '||quotemark||', 'morning', 'bill', '||comma||', 'morning', 'bob', '||comma||', 'how', 'you', 'doing', '||questionmark||', 'fine', '||quotemark||', 'ten', 'minutes', 'later', 'you', 'see', 'him', 'in', 'the', 'hall', '||comma||', '||quotemark||', 'how', 'ya', "doin'", '||questionmark||', '||quotemark||', 'every', 'time', 'you', 'pass', 'you', 'gotta', 'come', 'up', 'with', 'another', 'little', 'greeting', '||period||', 'you', 'know', 'you', 'start', 'racking', 'your', 'brains', 'you', 'know', 'you', 'do', 'the', 'little', 'eyebrow', '||quotemark||', 'hey', '||quotemark||', 'you', 'start', 'coming', 'up', 'with', 'nicknames', 'for', 'them', '||period||', '||quotemark||', 'jimbo', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'glenda:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'i', 'work', 'here', '||period||', '||return||', '||return||', 'glenda:', 'i', 'thought', 'you', 'quit', '||period||', '||return||', '||return||', 'george:', 'what', 'quit', '||questionmark||', '||leftparen||', 'laughing', '||rightparen||', 'who', 'quit', '||questionmark||', '||return||', '||return||', 'dan:', 'bill', '||comma||', 'how', 'was', 'your', 'weekend', '||questionmark||', '||return||', '||return||', 'bill:', 'oh', '||comma||', 'excellent', 'weekend', '||period||', 'what', 'about', 'your', 'weekend', '||questionmark||', '||return||', '||return||', 'dan:', 'fine', 'weekend', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'good', 'weekend', '||period||', '||return||', '||return||', 'dan:', 'went', 'up', 'to', 'the', 'cape', '||period||', 'took', 'the', 'kids', 'sailing', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'lisa', 'was', 'a', 'little', 'scared', 'at', 'first', '||comma||', 'but', 'that', "kids'", 'gonna', 'be', 'a', 'good', 'sailor', 'someday', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', "she's", 'gonna', 'be', 'a', 'fine', 'sailor', '||period||', '||return||', '||return||', 'levitan:', 'ava', '||comma||', 'what', 'happened', 'to', 'you', 'friday', 'afternoon', '||questionmark||', '||return||', '||return||', 'ava:', 'oh', '||comma||', 'i', 'got', 'a', 'little', 'tied', 'up', '||period||', '||return||', '||return||', 'levitan:', "i'll", 'bet', 'you', 'did', '||period||', '||return||', '||return||', 'levitan:', 'i', 'wanna', 'remind', 'everyone', 'that', 'the', 'tenth', 'anniversary', 'party', 'for', 'rick', 'barr', 'properties', 'is', 'gonna', 'be', 'wednesday', 'afternoon', 'at', 'four', "o'clock", 'in', "lasky's", 'bar', '||comma||', 'on', 'madison', '48th', '||period||', 'i', 'want', 'all', 'of', 'you', 'to', 'be', 'there', '||period||', 'this', 'really', 'means', 'a', 'lot', 'to', 'me', '||period||', 'is', 'that', 'costanza', 'over', 'there', '||questionmark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'levitan:', 'am', 'i', 'crazy', '||comma||', 'or', "didn't", 'you', 'quit', '||questionmark||', '||return||', '||return||', 'george:', 'when', '||questionmark||', '||return||', '||return||', 'levitan:', 'friday', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'what', '||questionmark||', 'what', '||questionmark||', 'that', '||questionmark||', 'are', 'you', 'kidding', '||questionmark||', 'i', "didn't", 'quit', '||period||', 'what', '||questionmark||', 'you', 'took', 'that', 'seriously', '||questionmark||', '||return||', '||return||', 'levitan:', 'you', 'mean', '||comma||', 'laughingstock', '||questionmark||', 'all', 'that', 'stuff', '||questionmark||', '||return||', '||return||', 'george:', 'come', 'on', '||period||', 'will', 'you', 'stop', 'it', '||period||', '||return||', '||return||', 'levitan:', 'no', 'brains', '||questionmark||', 'no', 'ability', '||questionmark||', '||return||', '||return||', 'george:', 'teasing', '||period||', '||return||', '||return||', 'levitan:', 'okay', '||period||', 'i', 'want', 'you', 'outta', 'here', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'where', "you're", 'getting', 'this', 'from', '||period||', 'i', '||period||', '||period||', '||period||', '||period||', "you're", 'serious', "aren't", 'you', '||questionmark||', 'oh', '||comma||', '||leftparen||', 'laughing', '||rightparen||', 'you', 'see', '||questionmark||', 'you', 'see', '||comma||', 'you', 'just', "don't", 'know', 'my', 'sense', 'of', 'humor', '||period||', 'dan', '||comma||', "don't", 'i', 'joke', 'around', 'all', 'the', 'time', '||questionmark||', '||return||', '||return||', 'dan:', 'i', "wouldn't", 'say', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'levitan:', 'you', "can't", 'win', '||period||', 'you', "can't", 'beat', 'me', '||period||', "that's", 'why', "i'm", 'here', 'and', "you're", 'there', '||period||', 'because', "i'm", 'a', 'winner', '||period||', "i'll", 'always', 'be', 'a', 'winner', 'and', "you'll", 'always', 'be', 'a', 'loser', '||period||', '||return||', '||return||', 'george:', '||quotemark||', "i'll", 'always', 'be', 'a', 'winner', 'and', "you'll", 'always', 'be', 'a', 'loser', '||period||', '||quotemark||', 'this', 'is', 'what', 'he', 'said', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', "that's", 'that', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', "that's", 'not', 'that', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', "that's", 'not', 'that', '||comma||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', "i've", 'got', 'some', 'plans', '||period||', 'i', 'got', 'plans', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'plans', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'wanna', 'tell', 'me', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'slip', 'him', 'a', 'mickey', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'in', 'his', 'drink', '||questionmark||', 'are', 'you', 'outta', 'your', 'mind', '||questionmark||', 'what', 'are', 'you', 'peter', 'lorre', '||questionmark||', '||return||', '||return||', 'george:', 'you', "don't", 'understand', '||period||', "he's", 'got', 'this', 'big', 'party', 'coming', 'up', '||period||', "he's", 'been', 'looking', 'forward', 'to', 'this', 'for', 'months', '||period||', 'this', 'is', 'gonna', 'destroy', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'you', 'destroy', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', "don't", 'worry', '||period||', "it's", 'perfectly', 'safe', '||period||', 'i', 'researched', 'it', '||period||', "he'll", 'get', 'a', 'little', 'woozy', '||period||', 'he', 'might', 'keel', 'over', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'wha', '||dash||', 'what', 'does', 'that', 'do', '||questionmark||', 'big', 'deal', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'what', 'they', 'would', 'do', 'in', 'the', 'movies', '||exclammark||', "it's", 'a', 'beautiful', 'thing', '||exclammark||', "it's", 'like', 'a', 'movie', '||exclammark||', "i'm", 'gonna', 'slip', 'him', 'a', 'mickey', '||exclammark||', '||return||', '||return||', 'jerry:', "you've", 'really', 'gone', 'mental', '||period||', '||return||', '||return||', 'george:', 'nah', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'gonna', 'get', 'this', 'mickey', '||questionmark||', 'i', "can't", 'believe', "i'm", 'saying', '||quotemark||', 'mickey', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'source', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'mickey', 'source', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'elaine', 'is', 'gonna', 'keep', 'him', 'busy', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', 'how', 'did', 'you', 'rope', 'her', 'into', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'her', 'what', 'a', 'sexist', 'he', 'is', '||period||', 'how', 'he', 'cheats', 'on', 'his', 'wife', '||period||', '||return||', '||return||', 'jerry:', 'she', 'knew', 'that', '||period||', '||return||', '||return||', 'george:', 'but', 'she', "didn't", 'know', 'he', "doesn't", 'recycle', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'the', 'point', 'of', 'all', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'revenge', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'best', 'revenge', 'is', 'living', 'well', '||period||', '||return||', '||return||', 'george:', "there's", 'no', 'chance', 'of', 'that', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'get', 'your', 'laundry', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'jumped', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'newman', 'jumped', '||period||', '||return||', '||return||', 'jerry:', 'did', 'he', 'call', 'you', 'last', 'night', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'yeah', '||period||', 'yeah', '||period||', 'yeah', '||period||', 'yeah', '||period||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'said', '||quotemark||', 'wave', 'to', 'me', 'when', 'you', 'pass', 'my', 'window', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'whew', '||period||', 'did', 'he', 'wave', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||exclammark||', 'he', 'jumped', 'from', 'the', 'second', 'floor', '||period||', 'mr', '||period||', 'papanickolous', 'saw', 'him', 'from', 'across', 'the', 'street', '||period||', "he's", 'lying', 'out', 'there', 'faking', '||period||', 'see', '||comma||', "he's", 'trying', 'to', 'get', 'back', 'at', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'realizing', 'something', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tearing', 'through', 'his', 'laundry', 'bag', '||rightparen||', 'well', '||comma||', 'on', 'thursday', 'when', 'i', 'came', 'home', 'i', 'had', '$1500', 'on', 'me', '||period||', 'for', 'some', 'reason', 'i', 'decided', 'to', 'hide', 'it', 'in', 'my', 'laundry', 'bag', 'and', 'then', 'i', 'completely', 'forgot', 'about', 'it', '||period||', '||period||', '||period||', 'and', 'then', 'i', 'took', 'the', 'laundry', 'in', 'on', 'friday', '||exclammark||', 'oh', '||comma||', 'come', 'on', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', 'where', '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'to', 'the', 'laundromat', '||period||', '||return||', '||return||', 'vic:', 'i', 'never', 'saw', 'it', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', 'come', 'on', '||period||', 'give', 'the', 'guy', 'his', 'money', '||period||', 'what', '||dash||', '||dash||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'vic:', 'hey', '||comma||', 'you', 'see', 'that', 'sign', 'right', 'there', '||questionmark||', '||leftparen||', 'points', 'to', 'a', 'sign', 'saying', '||quotemark||', 'not', 'responsible', 'for', 'valuables', '||quotemark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'see', '||period||', 'so', '||comma||', 'you', 'put', 'up', 'a', 'sign', 'so', 'you', 'can', 'do', 'whatever', 'you', 'want', '||questionmark||', "you're", 'not', 'a', 'part', 'of', 'society', '||period||', '||return||', '||return||', 'vic:', 'yea', "that's", 'right', '||comma||', "'cuz", 'this', 'place', 'is', 'my', 'country', 'and', "i'm", 'the', 'president', '||comma||', 'and', "that's", 'my', 'constitution', '||period||', "i'm", 'not', 'responsible', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'anybody', 'leaves', 'anything', 'here', '||comma||', 'you', 'can', 'just', 'take', 'it', '||questionmark||', 'you', 'have', 'a', 'license', 'to', 'steal', '||questionmark||', 'you', 'are', 'like', 'the', 'james', 'bond', 'of', 'laundry', '||questionmark||', '||return||', '||return||', 'vic:', 'you', 'ever', 'hear', 'of', 'a', 'bank', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'you', "can't", 'let', 'him', 'get', 'away', 'with', 'this', '||period||', '||return||', '||return||', 'elaine:', 'which', 'one', 'is', 'he', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'him', 'over', 'there', '||period||', 'the', 'one', 'that', 'looks', 'like', 'a', 'blowfish', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'see', 'him', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hey', '||comma||', 'thanks', 'for', 'doing', 'this', '||period||', '||return||', '||return||', 'elaine:', 'why', 'pass', 'up', 'the', 'opportunity', 'to', 'go', 'to', 'prison', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'by', 'far', 'the', 'most', 'exciting', 'thing', "i've", 'ever', 'done', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'it', 'is', 'kind', 'of', 'cool', '||period||', '||return||', '||return||', 'george:', 'first', 'time', 'in', 'my', 'life', "i've", 'ever', 'gotten', 'back', 'at', 'someone', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', "we're", 'doing', 'this', '||period||', 'this', 'is', 'the', 'kind', 'of', 'thing', 'they', 'do', 'in', 'the', 'movies', '||period||', '||return||', '||return||', 'george:', "that's", 'exactly', 'what', 'i', 'told', 'jerry', '||exclammark||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||leftparen||', 'both', 'laugh', '||rightparen||', 'god', '||comma||', "i've", 'never', 'felt', 'so', 'alive', '||exclammark||', '||return||', '||return||', 'jerry:', 'maybe', 'we', 'should', 'call', 'this', 'off', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||period||', "what's", 'the', 'big', 'deal', '||questionmark||', 'just', 'gonna', 'put', 'a', 'little', 'concrete', 'in', 'the', 'washing', 'machine', '||period||', '||return||', '||return||', 'jerry:', 'and', "what's", 'gonna', 'happen', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it'll", 'gonna', 'mix', 'up', 'with', 'the', 'water', '||comma||', 'and', 'then', 'by', 'the', 'end', 'of', 'the', 'cycle', "it'll", 'be', 'a', 'solid', 'block', '||exclammark||', '||return||', '||return||', 'jerry:', 'if', 'only', 'you', 'could', 'put', 'your', 'mind', 'to', 'something', 'worthwhile', '||period||', "you're", 'like', 'lex', 'luthor', '||period||', '||return||', '||return||', 'kramer:', 'you', 'keep', 'him', 'busy', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'go', 'over', 'there', '||dash||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'you', 'start', 'flirting', 'with', 'him', 'and', "i'll", 'come', 'by', 'and', '||comma||', 'while', "you're", 'keeping', 'him', 'busy', '||comma||', "i'll", 'slip', 'it', 'in', 'his', 'drink', '||period||', '||return||', '||return||', 'elaine:', "wouldn't", 'it', 'be', 'easier', 'just', 'to', 'punch', 'him', 'in', 'the', 'mouth', '||questionmark||', '||return||', '||return||', 'levitan:', 'come', 'on', '||exclammark||', "they're", 'terrible', '||period||', 'they', 'got', 'no', 'infield', '||period||', '||return||', '||return||', 'elaine:', 'oops', '||exclammark||', '||leftparen||', 'bumps', 'into', 'levitan', '||rightparen||', "'scuse", 'me', '||period||', '||return||', '||return||', 'levitan:', 'yeah', '||period||', '||return||', '||return||', 'greeny:', "i'm", 'gonna', 'get', 'some', 'food', '||period||', 'you', 'want', 'some', '||questionmark||', '||return||', '||return||', 'levitan:', 'nah', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'levitan:', 'hi', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sneezes', '||rightparen||', '||return||', '||return||', 'levitan:', 'god', 'bless', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'thank', 'you', '||period||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'blowing', 'nose', '||rightparen||', 'really', '||period||', 'i', 'mean', 'that', '||period||', 'i', 'am', 'not', 'one', 'of', 'those', 'people', 'who', 'give', 'insincere', 'thank', "you's", '||period||', 'no', 'sir', '||period||', 'no', 'sir', '||period||', 'when', 'i', 'thank', 'someone', 'i', 'really', 'thank', 'them', '||period||', 'so', '||comma||', 'thank', '||period||', '||period||', '||period||', 'yoooou', '||exclammark||', '||return||', '||return||', 'levitan:', '||leftparen||', 'confused', '||rightparen||', "you're", 'welcome', '||period||', '||return||', '||return||', 'elaine:', 'people', "don't", 'say', '||quotemark||', 'god', 'bless', 'you', '||quotemark||', 'as', 'much', 'as', 'they', 'used', 'to', '||period||', 'have', 'you', 'noticed', 'that', '||questionmark||', '||return||', '||return||', 'levitan:', 'no', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'having', 'trouble', 'getting', 'him', 'to', 'pay', 'attention', '||rightparen||', 'so', '||comma||', "i'm", 'going', 'to', 'a', 'nudist', 'colony', 'next', 'week', '||period||', '||return||', '||return||', 'levitan:', '||leftparen||', 'interested', '||rightparen||', 'nudist', 'colony', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'yeah', '||period||', 'i', 'love', 'nudist', 'colonies', '||period||', 'they', 'help', 'me', '||period||', '||period||', 'unwind', '||period||', 'aah', '||exclammark||', '||return||', '||return||', 'levitan:', '||leftparen||', 'laughing', '||rightparen||', "i'd", 'never', 'been', 'to', 'a', 'nudist', 'colony', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'really', '||questionmark||', 'oh', '||comma||', 'you', 'should', 'go', '||period||', "they're", 'great', '||period||', "they're", 'great', '||period||', 'of', 'course', '||comma||', 'when', "it's", 'over', '||comma||', "it's", '||dash||', "it's", 'hard', 'to', 'get', 'used', 'to', 'all', 'this', 'clothing', '||comma||', 'you', 'know', '||period||', 'so', '||comma||', 'a', 'lot', 'of', 'times', '||comma||', "i'll", 'just', 'lock', 'the', 'door', 'to', 'my', 'office', 'and', "i'll", 'just', 'sit', 'there', 'naked', '||period||', '||return||', '||return||', 'levitan:', 'seriously', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'usually', 'work', 'naked', 'a', '||period||', '||period||', '||period||', 'couple', 'hours', 'a', 'day', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'whispering', '||rightparen||', 'glenda', '||comma||', 'can', 'i', 'ask', 'you', 'a', 'favor', '||questionmark||', 'can', 'i', 'have', 'this', 'seat', '||questionmark||', '||return||', '||return||', 'glenda:', '||leftparen||', 'loud', '||rightparen||', 'what', 'do', 'you', 'have', 'to', 'sit', 'here', 'for', '||questionmark||', 'there', 'are', 'plenty', 'of', 'other', 'seats', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'whispering', '||rightparen||', 'i', "can't", 'explain', '||period||', "it's", 'very', 'important', 'that', 'i', 'sit', 'here', '||period||', '||return||', '||return||', 'glenda:', '||leftparen||', 'loud', '||rightparen||', 'what', 'are', 'you', 'doing', 'here', 'anyway', '||questionmark||', 'i', 'thought', 'you', 'were', 'fired', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'whispering', 'angrily', '||rightparen||', 'okay', '||period||', 'okay', '||period||', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'i', 'cook', 'naked', '||comma||', 'i', 'clean', '||period||', '||period||', '||period||', '||period||', 'i', 'clean', 'naked', '||comma||', 'i', 'drive', 'naked', '||period||', 'naked', '||period||', 'naked', '||period||', 'naked', '||period||', '||return||', '||return||', 'levitan:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', "don't", 'wanna', 'know', '||comma||', 'mistah', '||period||', "i'm", 'trouble', '||period||', 'big', 'trouble', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'divert', "vic's", 'attention', '||rightparen||', 'what', 'about', 'the', 'gentle', 'cycle', '||questionmark||', 'you', 'ever', 'use', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'think', "it's", 'effeminate', 'for', 'a', 'man', 'to', 'put', 'clothes', 'in', 'a', 'gentle', 'cycle', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'fine', 'fabrics', '||questionmark||', 'how', 'do', 'you', 'deal', 'with', 'that', 'kind', 'of', 'temperament', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'stone', 'washing', '||questionmark||', 'you', 'ever', 'witness', 'one', 'of', 'those', '||questionmark||', 'that', 'must', 'be', 'something', '||period||', 'what', '||questionmark||', 'do', 'they', 'just', 'pummel', 'the', 'jeans', 'with', 'rocks', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'realize', 'it', 'was', 'a', 'full', 'box', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'again', 'with', 'glenda', '||rightparen||', "i'm", 'gonna', 'count', 'to', 'three', '||period||', 'if', 'you', "don't", 'give', 'up', 'the', 'chair', '||comma||', 'the', 'wig', 'is', 'coming', 'off', '||period||', '||return||', '||return||', 'glenda:', 'i', "don't'", 'wear', 'a', 'wig', '||period||', '||return||', '||return||', 'george:', 'one', '||period||', '||period||', '||period||', '||leftparen||', 'glenda', 'seeing', 'george', 'is', 'serious', '||semicolon||', 'gets', 'up', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'i', "don't", 'really', 'have', 'a', 'phone', '||period||', 'in', 'fact', '||comma||', 'i', '||dash||', 'i', 'really', "don't", 'have', 'an', 'apartment', '||period||', 'i', 'kinda', 'sleep', 'around', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'like', 'to', 'have', 'and', 'few', 'drinks', 'and', 'just', 'let', 'the', 'guy', 'do', 'whatever', 'he', 'wants', '||period||', 'would', 'you', 'close', 'your', 'eyes', 'for', 'a', 'second', '||questionmark||', 'i', 'wanna', 'tell', 'you', 'a', 'secret', 'about', 'my', 'bra', '||period||', '||return||', '||return||', 'george:', 'hello', '||comma||', 'rick', '||period||', '||return||', '||return||', 'levitan:', 'heh', 'heh', 'heh', 'hey', '||exclammark||', 'look', "who's", 'here', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'right', '||comma||', 'ricky', 'boy', '||comma||', "it's", 'me', '||exclammark||', '||return||', '||return||', 'levitan:', 'you', 'know', 'something', '||comma||', 'costanza', '||questionmark||', "i'm", 'a', 'very', 'lucky', 'man', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', '||return||', '||return||', 'levitan:', "i've", 'always', 'been', 'lucky', '||period||', 'things', 'just', 'seem', 'to', 'fall', 'right', 'in', 'my', 'lap', '||period||', '||return||', '||return||', 'george:', 'boom', '||exclammark||', '||return||', '||return||', 'levitan:', 'you', "wouldn't", 'believe', 'it', 'if', 'i', 'told', 'you', '||period||', 'in', 'fact', '||comma||', 'uh', '||comma||', "i'm", 'glad', "you're", 'here', '||period||', 'you', 'know', '||comma||', 'maybe', "i've", 'been', 'a', 'little', 'rough', 'on', 'ya', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'levitan:', 'why', 'should', 'we', 'let', 'petty', '||comma||', 'personal', 'differences', 'get', 'in', 'the', 'way', 'of', 'business', '||questionmark||', 'i', '||comma||', 'uh', '||comma||', 'i', 'want', 'you', 'to', 'come', 'back', '||period||', '||leftparen||', 'george', 'is', 'shocked', '||rightparen||', 'you', 'can', 'use', 'my', 'bathroom', 'anytime', 'you', 'want', '||period||', '||return||', '||return||', 'george:', 'you', 'want', 'me', 'to', 'come', 'back', '||questionmark||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'levitan:', 'hey', '||exclammark||', 'how', 'about', 'a', 'toast', '||comma||', 'huh', '||questionmark||', 'everybody', '||comma||', 'a', 'toast', '||exclammark||', '||return||', '||return||', 'george:', 'rick', '||period||', '||return||', '||return||', 'levitan:', 'everyone', '||comma||', 'i', 'wanna', 'propose', 'a', 'toast', 'to', 'ten', 'great', 'years', 'at', 'rick', 'barr', 'properties', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'rick', '||period||', '||period||', '||return||', '||return||', 'levitan:', 'and', 'all', 'the', 'people', 'in', 'this', 'room', '||comma||', '||leftparen||', 'clears', 'throat', '||rightparen||', 'that', 'made', 'that', 'possible', '||period||', '||period||', '||return||', '||return||', 'george:', 'rick', '||period||', '||return||', '||return||', 'levitan:', "i'd", 'also', 'like', 'to', 'welcome', 'back', 'into', 'the', 'fold', 'our', '||period||', '||period||', 'our', 'little', 'shrimpy', 'friend', '||comma||', 'george', 'costanza', 'who', '||comma||', 'although', 'he', "didn't", 'really', 'have', 'a', 'very', 'good', 'year', '||dash||', '||dash||', 'how', 'you', 'blew', 'that', 'mcconnell', 'deal', '||comma||', "i'll", 'never', 'know', '||period||', 'but', '||comma||', 'hey', '||comma||', 'what', 'the', 'hell', '||comma||', 'huh', '||questionmark||', "we've", 'always', 'enjoyed', 'his', 'antics', 'around', 'the', 'office', '||period||', 'heh', 'heh', '||period||', 'anything', 'you', 'wanna', 'add', 'to', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'drink', 'up', '||period||', '||leftparen||', 'levitan', 'takes', 'a', 'drink', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'like', 'history', '||period||', 'civil', 'war', '||period||', 'maybe', 'i', 'could', 'be', 'a', 'professor', '||comma||', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'to', 'teach', 'something', 'you', 'really', 'have', 'to', 'know', 'a', 'lot', 'about', 'it', '||period||', 'i', 'think', 'you', 'need', 'a', 'degree', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "that's", 'true', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'seeing', 'jerry', 'is', 'with', 'people', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||leftparen||', 'kramer', 'hands', 'jerry', 'an', 'envelope', '||rightparen||', 'my', 'god', '||comma||', 'the', 'money', '||exclammark||', 'the', '1500', '||exclammark||', "where'd", 'you', 'find', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'in', 'my', 'laundry', '||period||', '||return||', '||return||', 'jerry:', 'in', 'your', 'laundry', 'the', 'whole', 'time', '||questionmark||', 'i', 'told', 'you', 'not', 'to', 'mix', 'in', 'our', 'guys', '||period||', 'what', 'did', 'we', 'figure', 'the', 'damage', 'on', 'that', 'machine', 'would', 'be', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'about', '1200', 'bucks', '||period||', '||return||', '||return||', 'newman:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', "that's", 'newman', '||period||', '||leftparen||', 'goes', 'over', 'to', 'the', 'window', '||rightparen||', '||return||', '||return||', 'newman:', "i'm", 'on', 'the', 'roof', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yelling', 'up', '||rightparen||', 'well', '||comma||', 'what', 'are', 'you', 'waiting', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'come', 'on', '||comma||', 'take', 'a', 'walk', 'with', 'me', 'down', 'to', 'the', 'laundromat', '||period||', 'i', 'gotta', 'pay', 'this', 'guy', 'the', 'money', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'to', 'nobody', '||rightparen||', 'i', 'like', 'horses', '||period||', 'maybe', 'i', 'could', 'be', 'a', 'stable', 'boy', '||period||', '||return||', '||return||', 'kramer:', 'you', 'wanna', 'shoot', 'some', 'pool', 'tonight', '||questionmark||', '||return||', '||return||', 'newman:', 'i', "can't", '||period||', "i'm", "goin'", 'to', 'a', 'movie', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'to', 'nobody', '||rightparen||', 'nah', '||period||', "it's", 'probably', 'a', 'union', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'people', 'like', 'the', 'idea', 'of', 'revenge', '||period||', 'have', 'you', 'ever', 'heard', 'the', 'expression', "'the", 'best', 'revenge', 'is', 'living', "well'", "i've", 'said', 'this', '||comma||', 'in', 'other', 'words', 'it', 'means', 'supposedly', 'the', 'best', 'way', 'to', 'get', 'back', 'at', 'someone', 'is', 'just', 'by', 'being', 'happy', 'and', 'successful', 'in', 'your', 'own', 'life', '||period||', 'sounds', 'nice', '||comma||', "doesn't", 'really', 'work', 'on', 'that', 'charles', 'bronson', '||period||', 'kinda', 'level', '||period||', 'you', 'know', 'what', 'i', 'mean', '||comma||', 'those', 'movies', 'where', 'his', 'whole', 'family', 'gets', 'wiped', 'out', 'by', 'some', 'street', 'scum', '||period||', 'you', 'think', 'you', 'could', 'go', 'up', 'to', 'him', '||comma||', "'charlie", 'forgot', 'about', 'the', '357', 'what', 'you', 'need', 'is', 'a', 'custom', '||dash||', 'made', 'suit', 'and', 'a', 'convertible', '||period||', 'new', 'carpeting', '||comma||', 'french', 'doors', '||comma||', 'a', 'divan', '||period||', "that'll", 'show', 'those', 'punks', '||period||', "'", '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'tell', 'ya', '||comma||', 'i', 'gotta', 'say', 'that', "i'm", 'enjoying', 'adulthood', '||period||', 'for', 'a', 'lot', 'of', 'reasons', '||period||', 'and', '||comma||', "i'll", 'tell', 'you', 'reason', 'number', 'one', 'as', 'an', 'adult', '||comma||', 'if', 'i', 'want', 'a', 'cookie', '||comma||', 'i', 'have', 'a', 'cookie', '||comma||', 'okay', '||questionmark||', 'i', 'have', 'three', 'cookies', 'or', 'four', 'cookies', '||comma||', 'or', 'eleven', 'cookies', 'if', 'i', 'want', '||period||', 'many', 'times', 'i', 'will', 'intentionally', 'ruin', 'my', 'entire', 'appetite', '||period||', 'just', 'ruin', 'it', '||period||', 'and', 'then', '||comma||', 'i', 'call', 'my', 'mother', 'up', 'right', 'after', 'to', 'tell', 'her', 'that', 'i', 'did', 'it', '||period||', '||quotemark||', 'hello', '||comma||', 'mom', '||questionmark||', 'yeah', '||comma||', 'i', 'just', 'ruined', 'my', 'entire', 'appetite', '||period||', '||period||', 'cookies', '||period||', '||quotemark||', 'so', 'what', 'if', 'you', 'ruin', '||period||', '||period||', 'see', '||comma||', 'because', 'as', 'an', 'adult', '||comma||', 'we', 'understand', 'even', 'if', 'you', 'ruin', 'an', 'appetite', '||comma||', "there's", 'another', 'appetite', 'coming', 'right', 'behind', 'it', '||period||', "there's", 'no', 'danger', 'in', 'running', 'out', 'of', 'appetites', '||period||', "i've", 'got', 'millions', 'of', 'them', '||comma||', "i'll", 'ruin', 'them', 'whenever', 'i', 'want', '||exclammark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'tv', 'voice:', '||leftparen||', 'germanic', '||rightparen||', 'look', '||comma||', 'sigmund', '||period||', 'look', 'in', 'the', 'sky', '||period||', 'the', 'planets', 'are', 'on', 'fire', '||period||', 'it', 'is', 'just', 'as', 'you', 'prophesied', '||period||', 'the', 'planets', 'of', 'our', 'solar', 'system', '||comma||', 'incinerating', '||period||', 'like', 'flaming', 'globes', '||comma||', 'sigmund', '||period||', 'like', 'flaming', 'globes', '||period||', '||period||', 'ah', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'bedroom]', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'got', '||comma||', 'a', 'cucumber', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'bringing', 'in', 'an', 'ouside', 'cucumber', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'refuse', 'to', 'put', 'cucumber', 'in', 'the', 'salad', '||period||', 'i', 'need', 'cucumber', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'read', 'the', 'note', '||rightparen||', 'what', 'have', 'i', 'done', '||questionmark||', 'i', "can't", 'read', 'this', '||exclammark||', 'ful', '||dash||', 'hel', '||dash||', 'mo', '||dash||', 'nen', '||dash||', 'ter', '||dash||', 'val', '||questionmark||', 'i', 'got', 'up', 'last', 'night', '||comma||', 'i', 'wrote', 'this', 'down', '||comma||', 'i', 'thought', 'i', 'had', 'this', 'great', 'bit', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'let', 'me', 'see', 'that', '||period||', '||leftparen||', 'takes', 'the', 'paper', 'from', 'jerry', '||rightparen||', "don't", '||dash||', 'mess', '||dash||', 'with', '||dash||', 'johnny', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'johnny', '||questionmark||', 'johnny', 'who', '||questionmark||', 'johnny', 'carson', '||questionmark||', 'did', 'i', 'insult', 'johnny', 'on', 'the', 'tonight', 'show', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'joking', '||rightparen||', 'did', 'you', 'mess', 'with', 'johnny', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'george:', 'let', 'me', 'see', 'that', '||period||', '||leftparen||', 'studies', 'the', 'note', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', "that's", 'like', 'asking', '||quotemark||', "where's", 'waldo', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'holding', 'the', 'note', '||rightparen||', 'i', 'think', "i'm", 'having', 'a', 'heart', 'attack', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', "that's", 'it', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'kidding', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'what', "he's", 'trying', 'to', 'say', 'is', 'that', "he's", 'having', 'a', 'heart', 'attack', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "he's", 'having', 'a', 'heart', 'attack', '||period||', '||return||', '||return||', 'george:', 'tightness', '||period||', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||period||', '||return||', '||return||', 'george:', 'shortness', 'of', 'breath', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'this', 'is', 'ridiculous', '||period||', '||return||', '||return||', 'george:', 'radiating', 'waves', 'of', 'pain', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'what', 'this', 'is', '||period||', 'you', 'saw', 'that', 'show', 'on', 'pbs', 'last', 'night', '||comma||', 'coronary', 'country', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'i', 'saw', 'it', 'in', 'the', 'tv', 'guide', '||period||', 'i', 'called', 'him', 'and', 'told', 'him', 'to', 'make', 'sure', 'and', 'not', 'watch', 'it', '||period||', '||return||', '||return||', 'george:', 'there', 'was', 'nothing', 'else', 'on', '||period||', 'oh', '||comma||', 'the', 'left', 'arm', '||period||', '||period||', 'the', 'left', 'arm', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'he', 'saw', 'that', 'show', 'on', 'anorexia', 'last', 'year', '||comma||', 'and', 'ate', 'like', 'an', 'animal', 'for', 'two', 'weeks', '||period||', '||return||', '||return||', 'george:', 'why', "can't", 'i', 'have', 'a', 'heart', 'attack', '||questionmark||', "i'm", 'allowed', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'do', 'you', 'want', '||questionmark||', 'you', 'want', 'me', 'take', 'you', 'to', 'the', 'hospital', '||questionmark||', '||return||', '||return||', 'george:', 'manhattan', 'memorial', '||comma||', 'less', 'of', 'a', 'line', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'call', 'an', 'ambulance', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'waitress:', 'is', 'everything', 'alright', '||questionmark||', '||return||', '||return||', 'george:', "we'll", 'just', 'take', 'a', 'check', '||period||', '||leftparen||', 'she', 'leaves', 'the', 'check', '||period||', 'george', '||comma||', 'in', 'all', 'his', 'cheapness', '||comma||', "can't", 'help', 'but', 'to', 'review', 'the', 'check', '||period||', 'he', 'finds', 'an', 'error', '||rightparen||', 'you', 'made', 'a', 'mistake', 'on', 'the', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'george', '||exclammark||', '||return||', '||return||', '[setting:', 'hospital', 'room]', '||return||', '||return||', 'man:', 'ooohhh', '||period||', '||period||', '||period||', 'argghhh', '||period||', '||period||', '||return||', '||return||', 'george:', 'are', '||period||', '||period||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'man:', 'ooooooohhh', '||period||', '||period||', '||return||', '||return||', 'george:', "i'm", 'george', '||period||', '||period||', 'george', 'costanza', '||period||', '||period||', "i've", 'never', 'been', 'in', 'the', 'hospital', 'a', 'day', 'in', 'my', 'life', '||period||', '||period||', 'except', 'when', 'i', 'had', 'my', 'tonsils', 'out', '||period||', 'you', 'know', '||comma||', 'they', 'never', 'gave', 'me', 'any', 'ice', 'cream', '||period||', 'i', 'always', 'felt', 'that', '||dash||', '||return||', '||return||', 'man:', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||questionmark||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'nurse', '1:', '||quotemark||', 'salami', '||comma||', 'salami', '||comma||', 'bologna', '||period||', '||quotemark||', 'definitely', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'salami', 'salami', 'bologna', '||quotemark||', '||questionmark||', '||return||', '||return||', 'doctor:', '||leftparen||', 'in', 'a', 'hurry', '||rightparen||', 'oh', '||comma||', 'your', "friend's", 'fine', '||period||', 'he', "didn't", 'have', 'a', 'heart', 'attack', '||period||', "i'll", 'be', 'in', '||dash||', 'in', 'a', 'few', 'minutes', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'what', 'a', 'surprise', '||period||', '||leftparen||', 'enters', "george's", 'room', 'overly', 'sympathetic', '||dash||', 'leading', 'george', 'to', 'think', 'that', 'the', 'doctor', 'told', 'jerry', 'something', 'significant', '||rightparen||', 'hey', '||comma||', 'how', 'ya', "doin'", 'buddy', '||questionmark||', 'you', 'need', 'anything', '||questionmark||', 'do', 'you', 'want', 'me', 'to', 'go', 'out', 'and', 'get', 'you', 'a', 'superman', 'comic', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'thanks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'going', 'along', 'with', 'the', 'practical', 'joke', '||rightparen||', 'you', 'know', '||comma||', 'i', 'was', 'wondering', '||period||', '||period||', 'you', 'know', 'that', 'black', 'hawks', 'jacket', 'you', 'have', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sure', '||comma||', 'my', 'black', 'hawks', 'jacket', '||period||', 'i', 'love', 'my', 'black', 'hawks', 'jacket', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'thinking', '||dash||', 'if', 'things', "don't", 'exactly', 'work', 'out', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', "wouldn't", 'fit', 'you', '||period||', 'the', 'sleeves', 'are', 'too', 'short', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'tried', 'it', 'on', '||period||', 'it', 'fits', 'good', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "didn't", 'really', 'think', 'about', 'what', 'i', 'was', 'gonna', 'do', 'with', 'all', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'reluctantly', '||rightparen||', 'well', '||comma||', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'and', '||period||', '||period||', 'do', 'you', 'think', 'it', 'would', 'be', 'alright', 'if', 'i', 'called', 'susan', 'davis', '||questionmark||', '||return||', '||return||', 'george:', 'susan', 'davis', '||questionmark||', '||leftparen||', 'getting', 'possessive', '||rightparen||', 'hey', '||comma||', 'wait', 'a', 'second', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'not', 'like', "we'd", 'be', 'bumping', 'into', 'you', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||period||', 'you', 'and', 'susan', 'davis', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'your', 'future', 'was', 'a', 'little', 'more', 'certain', '||period||', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'go', 'ahead', '||period||', 'call', 'her', '||comma||', 'get', 'married', '||comma||', 'have', 'babies', '||comma||', 'have', 'a', 'great', 'life', '||period||', '||period||', 'what', 'do', 'i', 'care', '||questionmark||', "i'm", 'finished', '||period||', '||leftparen||', 'really', 'depressed', '||rightparen||', "it's", 'all', 'over', 'for', 'me', '||period||', 'in', 'fact', '||comma||', "let's", 'end', 'it', 'right', 'now', '||period||', 'jerry', '||comma||', 'kill', 'me', '||comma||', 'kill', 'me', 'now', '||period||', "i'm", 'begging', 'you', '||period||', "let's", 'just', 'get', 'it', 'over', 'with', '||period||', 'be', 'a', 'pal', '||period||', '||period||', 'just', 'take', 'the', 'pillow', 'and', 'put', 'it', 'over', 'my', 'face', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'ah', '||period||', '||period||', '||leftparen||', 'takes', 'his', 'pillow', '||rightparen||', 'what', '||questionmark||', 'kind', 'of', 'like', 'this', '||questionmark||', '||leftparen||', 'violently', 'smothers', 'george', 'with', 'the', 'pillow', '||period||', 'george', 'freaks', 'out', '||period||', 'he', "didn't", 'think', 'jerry', 'would', 'actually', 'do', 'it', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'are', 'ya', 'doing', '||questionmark||', '||exclammark||', 'whadya', '||comma||', 'crazy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'acts', 'like', 'he', 'was', 'cought', 'red', '||dash||', 'handed', '||rightparen||', 'elaine', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||leftparen||', 'takes', 'the', 'pillow', 'off', 'george', '||comma||', 'and', 'puts', 'it', 'back', 'on', 'his', 'bed', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'jerk', 'off', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whispering', '||rightparen||', "there's", 'nothing', 'wrong', 'with', 'him', '||period||', 'i', 'saw', 'the', 'doctor', '||period||', "he's", 'fine', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'george', '||period||', 'how', 'ya', 'feeling', '||questionmark||', 'is', 'anybody', 'getting', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'george:', "i'll", 'tell', 'ya', '||comma||', 'if', 'i', 'ever', 'get', 'out', 'of', 'here', '||comma||', "i'm", 'gonna', 'change', 'my', 'life', '||period||', "i'm", 'gonna', 'do', 'a', 'whole', 'zen', 'thing', '||period||', 'take', 'up', 'yoga', '||comma||', 'meditate', '||period||', '||period||', "i'll", 'eat', 'right', '||period||', 'calm', 'down', '||comma||', 'lose', 'my', 'anger', '||period||', '||period||', '||leftparen||', 'sees', 'jerry', 'and', 'elaine', "aren't", 'listening', '||period||', 'he', 'snaps', '||rightparen||', 'hey', '||comma||', 'is', 'anybody', 'listening', '||questionmark||', '||exclammark||', '||return||', '||return||', 'doctor:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'uh', '||comma||', 'hello', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'uh', '||comma||', 'mr', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'panicky', '||rightparen||', 'uh', '||comma||', 'yeah', '||period||', 'you', 'know', '||comma||', 'doctor', '||comma||', 'i', 'gotta', 'tell', 'you', '||comma||', 'i', 'feel', 'a', 'lot', 'better', '||period||', '||return||', '||return||', 'doctor:', 'well', '||comma||', 'we', 'looked', 'at', 'your', "ekg's", '||comma||', 'ran', 'some', 'tests', '||comma||', 'did', 'a', 'complete', 'work', '||dash||', 'up', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'in', 'a', 'more', 'panicked', 'state', '||rightparen||', 'oh', 'god', '||comma||', 'mommy', '||exclammark||', '||return||', '||return||', 'doctor:', 'and', 'you', 'simply', "haven't", 'had', 'a', 'heart', 'attack', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'relieved', '||rightparen||', 'i', "haven't", '||questionmark||', "i'm", 'okay', '||questionmark||', "i'm", 'okay', '||questionmark||', 'oh', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', '||comma||', 'doctor', '||exclammark||', 'i', "don't", 'know', 'how', 'to', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'hey', '||comma||', 'that', 'was', 'really', 'fun', '||comma||', 'george', '||period||', 'can', 'we', 'go', 'home', 'now', '||questionmark||', '||return||', '||return||', 'doctor:', 'no', '||comma||', 'actually', '||comma||', "we'd", 'like', 'to', 'keep', 'him', 'here', 'overnight', 'for', 'observation', '||comma||', 'just', 'to', 'be', 'safe', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sure', '||period||', 'sure', '||comma||', 'anything', '||period||', 'can', 'you', 'believe', 'it', '||questionmark||', "there's", 'nothing', 'wrong', 'with', 'me', '||period||', '||return||', '||return||', 'doctor:', 'well', '||comma||', 'i', "wouldn't", 'go', 'that', 'far', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'starting', 'to', 'panic', 'again', '||rightparen||', 'what', '||questionmark||', 'oh', 'my', 'god', '||period||', 'what', '||questionmark||', 'is', 'it', 'meningitis', '||questionmark||', 'scoliosis', '||questionmark||', 'lupis', '||questionmark||', '||exclammark||', 'is', 'it', 'lupis', '||questionmark||', '||exclammark||', '||return||', '||return||', 'doctor:', 'have', 'you', 'ever', 'had', 'your', 'tonsils', 'taken', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'tonsils', '||questionmark||', 'yeah', '||comma||', 'when', 'i', 'was', 'a', 'kid', '||period||', '||return||', '||return||', 'doctor:', 'well', '||comma||', "they've", 'grown', 'back', '||period||', 'your', 'adenoids', 'are', 'swollen', 'too', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'jokingly', 'hits', 'the', 'doctor', '||rightparen||', 'whose', 'tonsils', 'grow', 'back', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'doctor:', 'it', 'happens', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'if', "you've", 'been', 'exposed', 'to', 'gamma', 'rays', '||period||', '||return||', '||return||', 'elaine:', 'i', 'still', 'have', 'my', 'tonsils', '||period||', 'everyone', 'in', 'my', 'family', 'has', 'their', 'tonsils', '||period||', 'in', 'fact', '||comma||', 'we', 'were', 'forbidden', 'to', 'socialize', 'with', 'anyone', 'who', "didn't", 'have', 'their', 'tonsils', '||period||', '||return||', '||return||', 'doctor:', "that's", 'interesting', '||period||', 'because', '||comma||', 'no', 'one', 'in', 'my', 'family', 'has', 'their', 'tonsils', '||comma||', 'and', 'we', 'were', 'forbidden', 'to', 'socialize', 'with', 'tonsil', 'people', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'well', '||comma||', "it's", 'like', 'the', 'capulets', 'and', 'the', 'montagues', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'drawing', 'attention', 'back', 'to', 'him', '||rightparen||', 'excuse', 'me', '||exclammark||', '||return||', '||return||', 'doctor:', 'anyway', '||comma||', 'i', 'strongly', 'recommend', 'they', 'come', 'out', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'you', 'mean', 'with', 'a', 'knife', '||questionmark||', '||return||', '||return||', 'doctor:', 'yes', '||period||', 'with', 'a', 'knife', '||period||', 'you', 'know', '||comma||', 'snip', '||comma||', 'snip', '||period||', 'anyway', '||comma||', "you'd", 'be', 'completely', 'under', '||comma||', 'you', "wouldn't", 'feel', 'a', 'thing', '||period||', 'and', 'when', 'you', 'wake', 'up', '||comma||', 'you', 'can', 'have', 'some', 'ice', 'cream', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', '||rightparen||', 'yeah', '||comma||', "that's", 'what', 'they', 'told', 'me', 'the', 'last', 'time', '||period||', '||return||', '||return||', 'doctor:', 'think', 'about', 'it', '||period||', '||leftparen||', 'turns', 'to', 'leave', '||comma||', 'but', 'runs', 'into', 'elaine', '||rightparen||', 'excuse', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'flustered', '||rightparen||', 'oh', '||comma||', "i'm", 'sorry', '||period||', '||leftparen||', 'doctor', 'exits', '||rightparen||', 'i', 'just', '||period||', '||period||', 'have', 'to', 'ask', 'that', 'doctor', 'one', 'more', 'question', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'women', 'go', 'after', 'doctors', 'like', 'men', 'go', 'after', 'models', '||period||', 'they', 'want', 'someone', 'with', 'knowledge', 'of', 'the', 'body', '||period||', '||period||', 'we', 'just', 'want', 'the', 'body', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'they', 'got', 'a', 'great', 'cafeteria', 'downstairs', '||period||', 'hot', 'food', '||comma||', 'sandwiches', '||comma||', 'a', 'salad', 'bar', '||period||', '||period||', "it's", 'like', 'a', "sizzler's", 'opened', 'up', 'a', 'hospital', '||exclammark||', '||leftparen||', 'sits', 'and', 'starts', 'eating', '||rightparen||', 'so', '||comma||', 'how', 'did', 'you', 'have', 'a', 'heart', 'attack', '||questionmark||', "you're", 'a', 'young', 'man', '||period||', 'what', 'were', 'you', 'doing', '||questionmark||', 'are', 'they', 'gonna', 'do', 'a', 'zipper', 'job', '||questionmark||', 'oh', '||comma||', 'they', 'love', 'to', 'do', 'zipper', 'jobs', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'shut', 'him', 'up', '||rightparen||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'the', 'really', 'bad', 'thing', 'about', 'the', 'heart', 'is', 'the', 'sex', 'thing', '||period||', 'see', '||comma||', 'you', 'gotta', 'be', 'careful', 'about', 'sex', 'now', '||period||', 'you', 'get', 'that', 'heart', 'pumping', 'and', 'suddenly', '||comma||', 'boom', '||exclammark||', 'next', 'thing', 'you', 'know', '||comma||', 'you', 'got', 'a', 'hose', 'coming', 'out', 'of', 'your', 'chest', 'attached', 'to', 'a', 'piece', 'of', 'luggage', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'george', "didn't", 'have', 'a', 'heart', 'attack', '||period||', '||return||', '||return||', 'kramer:', 'no', '||questionmark||', "that's", 'good', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'have', 'my', 'tonsils', 'taken', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'man', '||period||', '||period||', 'no', '||period||', '||period||', 'george', '||comma||', 'we', 'gotta', 'get', 'you', 'outta', 'here', '||period||', 'get', 'out', '||exclammark||', 'right', 'now', '||exclammark||', "they'll", 'kill', 'ya', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'calm', 'george', 'down', '||rightparen||', "it's", 'routine', 'surgery', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||questionmark||', 'my', 'friend', '||comma||', 'bob', 'saccomanno', '||comma||', 'he', 'came', 'in', 'here', 'for', 'a', 'hernia', 'operation', '||period||', '||period||', 'oh', 'yeah', '||comma||', 'routine', 'surgery', '||period||', '||period||', 'now', "he's", "sittin'", 'around', 'in', 'a', 'chair', 'by', 'a', 'window', 'going', '||comma||', '||quotemark||', 'my', 'name', 'is', 'bob', '||quotemark||', '||period||', '||period||', 'george', '||comma||', 'whatever', 'you', 'do', '||comma||', "don't", 'let', "'em", 'cut', 'you', '||period||', "don't", 'let', "'em", 'cut', 'you', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'should', 'i', 'do', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'for', 'one', 'think', '||comma||', "don't", 'listen', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'you', 'what', 'to', 'do', '||comma||', "i'll", 'tell', 'you', 'what', 'to', 'do', '||period||', 'you', 'go', 'to', 'tor', 'eckman', '||period||', 'tor', '||comma||', 'tor', '||comma||', "he'll", 'fix', 'you', 'right', 'up', '||period||', "he's", 'a', 'herbalist', '||comma||', 'a', 'healer', '||comma||', 'george', '||period||', "he's", 'not', 'just', 'gonna', 'fix', 'the', 'tonsils', 'and', 'the', 'adenoids', '||comma||', 'he', 'is', 'gonna', 'change', 'the', 'whole', 'way', 'you', 'function', '||dash||', 'body', 'and', 'mind', '||period||', '||return||', '||return||', 'jerry:', 'eckman', '||questionmark||', 'i', 'thought', 'he', 'was', 'doing', 'time', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', "he's", 'out', '||period||', 'he', 'got', 'out', '||period||', 'see', '||comma||', 'the', 'medical', 'establishment', '||comma||', 'see', '||comma||', 'they', 'tried', 'to', 'frame', 'him', '||period||', "it's", 'all', 'politics', '||period||', 'but', "he's", 'a', 'rebel', '||period||', '||return||', '||return||', 'jerry:', 'a', 'rebel', '||questionmark||', 'no', '||period||', 'johnny', 'yuma', 'was', 'a', 'rebel', '||period||', 'eckman', 'is', 'a', 'nut', '||period||', 'george', '||comma||', 'you', 'want', 'to', 'take', 'care', 'of', 'your', 'tonsils', '||comma||', 'you', 'do', 'it', 'in', 'a', 'hospital', '||period||', 'with', 'a', 'doctor', '||period||', '||return||', '||return||', 'kramer:', "he's", 'holistic', '||comma||', 'george', '||period||', "he's", 'holistic', '||period||', '||return||', '||return||', 'george:', 'holistic', '||period||', '||period||', 'that', 'sounds', 'right', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'you', 'need', 'a', 'medical', 'doctor', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'let', 'me', 'ask', 'you', 'something', '||period||', '||period||', 'how', 'much', 'do', 'you', 'think', 'it', 'would', 'cost', 'to', 'have', 'tonsils', 'and', 'adenoids', 'removed', 'in', 'the', 'hospital', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'an', 'overnight', 'stay', 'in', 'a', 'hospital', '||questionmark||', 'minor', 'surgery', '||questionmark||', 'i', 'dunno', '||comma||', 'four', 'grand', '||period||', '||return||', '||return||', 'george:', 'uh', '||dash||', 'huh', '||period||', 'and', 'how', 'much', 'does', 'the', 'healer', 'charge', '||questionmark||', '||return||', '||return||', 'kramer:', 'first', 'visit', '||questionmark||', 'thirty', '||dash||', 'eight', 'bucks', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||questionmark||', 'holistic', '||period||', '||period||', "that's", 'what', 'i', 'need', '||period||', "that's", 'the', 'answer', '||period||', '||return||', '||return||', '[setting:', "healer's", 'apartment]', '||return||', '||return||', 'george:', 'so', '||comma||', 'how', 'do', 'you', 'like', 'the', 'way', 'i', 'talked', 'you', 'into', "comin'", 'down', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'flatter', 'yourself', '||comma||', 'my', 'friend', '||period||', "i'm", 'here', 'strictly', 'for', 'material', '||comma||', 'and', 'i', 'have', 'a', 'feeling', 'this', 'is', 'a', 'potential', 'gold', 'mine', '||period||', '||period||', 'i', 'still', 'think', "you're", 'nuts', '||comma||', 'though', '||period||', '||return||', '||return||', 'george:', 'all', 'i', 'know', 'is', "i've", 'been', 'going', 'to', 'doctors', 'all', 'my', 'life', '||period||', 'what', 'has', 'it', 'gotten', 'me', '||questionmark||', "i'm", 'thirty', '||dash||', 'three', 'years', 'old', '||period||', 'i', "haven't", 'outgrown', 'the', 'problems', 'of', 'puberty', '||comma||', "i'm", 'already', 'facing', 'the', 'problems', 'of', 'old', 'age', '||period||', 'i', 'completely', 'skipped', 'healthy', 'adulthood', '||period||', 'i', 'went', 'from', 'having', 'orgasms', 'immediately', 'to', 'taking', 'forever', '||period||', 'you', 'could', 'do', 'your', 'taxes', 'in', 'the', 'time', 'it', 'takes', 'me', 'to', 'have', 'an', 'orgasm', '||period||', "i've", 'never', 'had', 'a', 'normal', '||comma||', 'medium', 'orgasm', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jokingly', 'making', 'fun', 'of', 'george', '||rightparen||', "i've", 'never', 'had', 'a', 'really', 'good', 'pickle', '||period||', '||return||', '||return||', 'george:', 'besides', '||comma||', "what's", 'it', 'gonna', 'cost', 'me', '||questionmark||', 'thirty', '||dash||', 'eight', 'bucks', '||questionmark||', '||return||', '||return||', 'tor:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'would', 'you', 'not', 'put', 'your', 'foot', 'on', 'that', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'sorry', '||period||', '||return||', '||return||', 'tor:', 'what', 'month', 'were', 'you', 'born', '||questionmark||', '||return||', '||return||', 'george:', 'april', '||period||', '||return||', '||return||', 'tor:', 'you', 'should', 'have', 'been', 'born', 'in', 'august', '||period||', 'your', 'parents', 'would', 'have', 'been', 'well', '||dash||', 'advised', 'to', 'wait', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'tor:', 'do', 'you', 'use', 'hot', 'water', 'in', 'the', 'shower', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'tor:', 'stop', 'using', 'it', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', 'okay', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'off', 'hot', 'water', '||period||', '||return||', '||return||', 'tor:', 'kramer', 'tells', 'me', 'that', 'you', 'are', 'interested', 'in', 'an', 'alternative', 'to', 'surgery', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', 'i', 'am', '||period||', '||return||', '||return||', 'tor:', '||leftparen||', 'blows', 'into', "george's", 'face', '||rightparen||', 'i', 'think', 'we', 'can', 'help', 'you', '||period||', 'see', '||comma||', 'unfortunately', '||comma||', 'the', 'medical', 'establishment', 'is', 'a', 'business', 'like', 'any', 'other', 'business', '||period||', 'and', 'business', 'needs', 'customers', '||period||', 'and', '||comma||', 'they', 'want', 'to', 'sell', 'you', 'their', 'most', 'expensive', 'item', 'which', 'is', 'unnecessary', 'surgery', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'on', 'the', 'showers', '||rightparen||', 'can', 'i', 'use', 'hot', 'water', 'on', 'my', 'face', '||questionmark||', '||return||', '||return||', 'tor:', 'no', '||period||', 'you', 'know', '||comma||', 'i', 'am', 'not', 'a', 'business', 'man', '||period||', "i'm", 'a', 'holistic', 'healer', '||period||', "it's", 'a', 'calling', '||comma||', "it's", 'a', 'gift', '||period||', 'you', 'see', '||comma||', "it's", 'in', 'the', 'best', 'interest', 'of', 'the', 'medical', 'profession', 'that', 'you', 'remain', 'sick', '||period||', 'you', 'see', '||comma||', 'that', 'insures', 'good', 'business', '||period||', "you're", 'not', 'a', 'patient', '||period||', "you're", 'a', 'customer', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'he', 'thinks', 'this', '||comma||', 'the', 'audience', 'can', 'hear', 'his', 'thoughts', '||rightparen||', 'and', "you're", 'not', 'a', 'doctor', '||comma||', 'but', 'you', 'play', 'one', 'in', 'real', 'life', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'on', 'the', 'hot', 'water', '||rightparen||', 'what', 'about', 'shaving', '||questionmark||', '||return||', '||return||', 'tor:', '||leftparen||', 'to', 'jerry', '||rightparen||', "you're", 'eating', 'too', 'much', 'dairy', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'may', 'i', '||questionmark||', '||leftparen||', 'reaches', 'over', '||comma||', 'and', 'touches', "george's", 'face', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'guess', 'so', '||period||', '||return||', '||return||', 'tor:', '||leftparen||', 'feeling', "george's", 'face', '||rightparen||', 'you', 'see', '||comma||', 'you', 'are', 'in', 'disharmony', '||period||', 'the', 'throat', 'is', 'the', 'gateway', 'to', 'the', 'lung', '||period||', 'tonsillitis', '||comma||', 'adenoiditis', '||comma||', 'is', '||comma||', 'in', 'chinese', 'medical', 'terms', '||comma||', 'and', 'invasion', 'of', 'heat', 'and', 'wind', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'again', '||comma||', 'we', 'hear', 'his', 'thoughts', '||rightparen||', "there's", 'some', 'hot', 'air', 'blowing', 'in', 'here', '||period||', '||period||', '||return||', '||return||', 'tor:', 'you', 'know', '||comma||', 'i', 'lived', 'with', 'the', 'eskimos', 'many', 'years', 'ago', '||comma||', 'and', 'they', 'used', 'to', 'plunge', 'their', 'faces', 'into', 'the', 'snow', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'once', 'again', '||comma||', 'still', 'on', 'the', 'shower', '||rightparen||', 'could', 'it', 'be', 'lukewarm', '||questionmark||', '||return||', '||return||', 'jerry:', 'too', 'much', 'dairy', '||questionmark||', 'you', 'really', 'think', "i'm", 'eating', 'too', 'much', 'dairy', '||questionmark||', '||return||', '||return||', '[setting:', "doctor's", 'car]', '||return||', '||return||', 'doctor:', '||period||', '||period||', 'the', 'tongue', '||period||', '||period||', 'yes', '||comma||', 'the', 'tongue', '||period||', '||period||', 'or', '||comma||', 'in', 'medical', 'terms', '||comma||', 'the', 'glossa', '||period||', "it's", 'a', 'muscular', 'organ', '||period||', '||period||', 'consists', 'of', 'two', 'parts', '||period||', '||period||', 'the', 'body', '||comma||', 'and', 'the', 'root', '||period||', '||period||', 'you', 'see', '||comma||', "it's", 'covered', 'by', 'this', 'mucous', 'membrane', '||period||', '||period||', 'these', 'little', 'raised', 'projections', 'are', 'the', 'papillae', '||comma||', 'which', 'give', 'it', 'that', 'furry', 'appearance', '||period||', 'very', 'tactile', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', '[setting:', "healer's", 'apartment]', '||return||', '||return||', 'tor:', '||leftparen||', 'pouring', 'tea', '||rightparen||', 'your', 'tea', 'is', 'ready', 'now', '||period||', 'this', 'will', 'solve', 'your', 'so', '||dash||', 'called', 'tonsil', 'problem', '||period||', "it's", 'a', 'special', 'concoction', '||period||', 'it', 'contains', 'crampbark', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'crampbark', '||period||', '||return||', '||return||', 'tor:', 'cleavers', '||period||', '||return||', '||return||', 'jerry:', 'cleaver', '||comma||', 'i', 'once', 'had', 'cleaver', 'as', 'a', 'kid', '||period||', 'i', 'was', 'able', 'to', 'lift', 'a', 'car', '||period||', '||return||', '||return||', 'tor:', 'and', 'some', 'couchgrass', '||period||', '||return||', '||return||', 'jerry:', 'couchgrass', 'and', 'crampbark', '||questionmark||', 'you', 'know', '||comma||', 'i', 'think', "that's", 'what', 'killed', 'curly', '||period||', '||return||', '||return||', 'kramer:', 'go', 'ahead', '||comma||', 'drink', 'it', '||comma||', 'george', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', 'tor', '||period||', 'may', 'i', 'ask', 'you', 'a', 'question', '||questionmark||', 'you', 'have', 'intuitive', 'abilities', '||period||', "you're", 'in', 'touch', 'with', 'a', 'lot', 'of', 'this', 'cosmic', 'kind', 'of', 'things', '||period||', '||period||', 'i', 'have', 'this', 'note', 'i', "can't", 'read', '||period||', 'i', 'was', 'wondering', 'if', '||dash||', '||return||', '||return||', 'tor:', '||leftparen||', 'takes', 'the', 'note', '||comma||', 'then', 'laughs', 'when', 'he', 'reads', 'it', '||rightparen||', 'oh', '||comma||', 'yes', '||period||', '||period||', 'yes', '||period||', '||period||', '||quotemark||', 'cleveland', '117', '||comma||', 'san', 'antonio', '109', '||period||', '||period||', '||leftparen||', 'hands', 'note', 'back', 'to', 'jerry', '||rightparen||', '||return||', '||return||', 'kramer:', 'go', 'ahead', '||comma||', 'drink', 'it', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'takes', 'a', 'sip', '||rightparen||', 'hey', '||comma||', "it's", 'not', 'too', 'bad', '||period||', '||period||', '||return||', '||return||', '[setting:', 'ambulance]', '||return||', '||return||', 'george:', '||leftparen||', 'in', 'a', 'state', 'of', 'hysteria', '||rightparen||', "i'm", 'an', 'eggplant', '||exclammark||', "i'm", 'an', 'eggplant', '||exclammark||', "i'm", 'a', 'minstrel', 'man', '||exclammark||', '||return||', '||return||', 'driver:', '||leftparen||', 'to', 'assistant', '||rightparen||', 'i', "didn't", 'take', 'your', 'chuckle', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'assistant:', 'i', 'had', 'five', 'chuckles', '||period||', 'i', 'ate', 'a', 'green', 'one', '||comma||', 'and', 'the', 'yellow', 'one', '||comma||', 'and', 'the', 'red', 'one', 'is', 'missing', '||exclammark||', '||return||', '||return||', 'driver:', 'i', "don't", 'even', 'like', 'chuckles', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'assistant', '||rightparen||', 'maybe', 'he', "doesn't", 'like', 'them', '||period||', "that's", 'possible', '||period||', '||return||', '||return||', 'george:', 'my', 'face', '||exclammark||', 'my', 'face', '||exclammark||', 'get', 'me', 'to', 'the', 'hospital', '||exclammark||', '||return||', '||return||', 'assistant:', 'i', 'want', 'that', 'chuckle', '||exclammark||', 'you', 'hear', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'assistant', '||rightparen||', "i'll", 'get', 'you', 'a', 'chuckle', '||period||', 'you', 'want', 'me', 'to', 'get', 'you', 'a', 'chuckle', '||questionmark||', '||return||', '||return||', 'assistant:', '||leftparen||', 'angry', '||comma||', 'to', 'driver', '||rightparen||', 'pull', 'over', '||exclammark||', '||return||', '||return||', 'driver:', 'pull', 'over', '||questionmark||', 'did', 'you', 'say', 'pull', 'over', '||questionmark||', '||exclammark||', 'you', 'want', 'a', 'piece', 'of', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'assistant:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'gonna', 'fight', '||questionmark||', '||return||', '||return||', 'george:', 'now', '||questionmark||', '||exclammark||', "i'm", 'a', 'mutant', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'driver', '||rightparen||', 'hey', '||comma||', 'let', 'me', 'drive', '||period||', '||return||', '||return||', 'assistant:', 'come', 'on', '||comma||', 'man', '||period||', 'pull', 'over', '||exclammark||', '||return||', '||return||', 'driver:', 'alright', '||exclammark||', "i'm", 'gonna', 'mess', 'you', 'up', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'really', '||comma||', 'gentlemen', '||comma||', 'please', '||period||', '||return||', '||return||', 'george:', 'my', 'heart', '||exclammark||', 'my', 'heart', '||exclammark||', '||leftparen||', 'to', 'assistant', '||rightparen||', 'where', 'you', 'going', '||questionmark||', 'are', 'you', 'crazy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'assistant:', "i'm", 'gonna', 'kick', 'his', 'ass', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'assistant', '||rightparen||', 'hey', '||comma||', 'you', 'have', 'keys', '||questionmark||', '||return||', '||return||', 'george:', 'you', "can't", 'leave', '||exclammark||', 'this', 'is', 'an', 'ambulance', '||exclammark||', 'this', 'is', 'an', 'emergency', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'this', 'for', 'a', 'chuckle', '||period||', '||return||', '||return||', 'kramer:', "what's", 'a', 'chuckle', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'jelly', 'candy', '||period||', 'it', 'comes', 'in', 'five', 'flavors', '||period||', '||return||', '||return||', '[setting:', "doctor's", 'car]', '||return||', '||return||', 'doctor:', 'you', 'see', '||comma||', 'taste', 'buds', 'run', 'on', 'grooves', 'along', 'the', 'surfaces', '||period||', '||return||', '||return||', 'elaine:', 'can', 'you', 'let', 'go', 'of', 'my', 'tongue', 'now', '||questionmark||', '||return||', '||return||', 'doctor:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'let', 'go', 'of', 'my', 'tongue', '||exclammark||', '||return||', '||return||', 'doctor:', '||leftparen||', 'lets', 'go', '||rightparen||', 'oh', '||comma||', 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'should', 'get', 'going', '||period||', '||period||', '||leftparen||', 'the', 'doctor', 'leans', 'in', 'for', 'a', 'kiss', '||period||', 'elaine', 'stops', 'him', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'doctor:', 'i', 'was', 'going', 'to', 'kiss', 'you', 'good', 'night', '||period||', '||return||', '||return||', 'elaine:', 'a', 'kiss', '||questionmark||', 'with', 'the', 'tongue', '||questionmark||', 'the', 'glossa', 'with', 'the', 'bumps', 'and', 'the', 'papillae', '||questionmark||', '||period||', '||period||', 'yech', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'ambulance]', '||return||', '||return||', 'jerry:', 'you', 'just', "can't", 'leave', 'him', 'out', 'there', '||period||', '||return||', '||return||', 'driver:', 'i', 'told', 'him', 'i', 'was', 'gonna', 'mess', 'him', 'up', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'can', 'you', 'call', 'him', 'an', 'ambulance', '||questionmark||', '||return||', '||return||', 'driver:', 'i', 'told', 'him', 'i', "didn't", 'take', 'his', 'chuckle', '||period||', 'i', "don't", 'eat', 'that', 'gooey', 'crap', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'watch', 'the', 'road', '||exclammark||', 'watch', 'the', 'road', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'driver:', '||leftparen||', 'turns', 'back', '||comma||', 'facing', 'kramer', '||rightparen||', 'hey', '||comma||', 'man', '||comma||', 'you', 'want', 'some', 'of', 'what', 'he', 'got', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry', 'and', 'kramer:', 'watch', 'out', '||exclammark||', '||return||', '||return||', '[setting:', 'hospital', 'room]', '||return||', '||return||', 'jerry:', 'how', 'ya', 'doing', '||questionmark||', '||leftparen||', 'george', 'nods', '||rightparen||', "can't", 'talk', '||questionmark||', '||leftparen||', 'george', 'shakes', 'his', 'head', '||period||', 'jerry', 'gestures', 'to', 'his', 'brace', '||rightparen||', 'hey', '||comma||', "how'd", 'you', 'get', 'the', 'plastic', 'one', '||questionmark||', '||leftparen||', 'george', 'raises', 'his', 'eyebrows', '||rightparen||', 'i', 'like', 'that', '||period||', '||leftparen||', 'george', 'sticks', 'his', 'tongue', 'out', '||rightparen||', 'so', "how's", 'life', 'without', 'tonsils', '||questionmark||', '||leftparen||', 'george', 'quickly', 'indicates', 'with', 'his', 'arm', 'that', 'he', 'wants', 'ice', 'cream', '||rightparen||', 'what', '||questionmark||', "what's", 'that', '||questionmark||', '||period||', '||period||', 'so', '||comma||', 'how', 'much', 'is', 'this', 'thing', 'gonna', 'cost', 'you', 'now', '||questionmark||', 'like', '||comma||', 'five', '||comma||', 'six', 'thousand', '||questionmark||', '||period||', '||period||', '||leftparen||', 'george', 'signals', 'that', "it's", 'more', '||rightparen||', 'well', '||comma||', 'live', 'and', 'learn', '||period||', '||period||', 'at', 'least', 'we', 'lived', '||period||', 'kramer', 'went', 'to', 'eckman', '||period||', '||period||', 'he', 'feels', 'better', 'alreadyy', '||period||', '||period||', '||leftparen||', 'george', 'motions', 'for', 'ice', 'cream', 'again', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'poor', 'george', '||period||', 'oh', '||comma||', "i'm", 'sorry', '||comma||', 'but', 'i', "can't", 'stay', 'long', '||period||', 'i', "don't", 'want', 'to', 'run', 'into', 'doctor', 'tongue', '||period||', '||period||', 'here', '||comma||', 'i', 'brought', 'you', 'something', '||period||', '||leftparen||', 'takes', 'out', 'a', 'pint', 'of', 'ice', 'cream', '||period||', 'george', 'gets', 'excited', '||rightparen||', 'oh', '||comma||', 'please', '||comma||', 'come', 'on', '||period||', '||period||', 'it', 'was', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'check', 'the', 'tv', '||period||', '||return||', '||return||', 'tv', 'voice:', '||leftparen||', 'germanic', '||rightparen||', "it's", 'just', 'as', 'you', 'prophesied', '||period||', 'the', 'planets', 'of', 'our', 'solar', 'system', '||comma||', 'incinerating', '||period||', 'like', 'flaming', 'globes', '||comma||', 'sigmond', '||period||', 'like', 'flaming', 'globes', '||period||', 'ah', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulls', 'the', 'note', 'out', 'of', 'his', 'pocket', '||rightparen||', "that's", 'it', '||exclammark||', "that's", 'it', '||exclammark||', 'flaming', 'globes', 'of', 'sigmond', '||exclammark||', 'flaming', 'globes', 'of', 'sigmond', '||exclammark||', "that's", 'my', 'note', '||exclammark||', "tha'ts", 'what', 'i', 'thought', 'was', 'so', 'funny', '||questionmark||', '||exclammark||', '||period||', '||period||', "that's", 'not', 'funny', '||period||', '||period||', "there's", 'nothing', 'funny', 'about', 'that', '||period||', '||return||', '||return||', 'man', 'in', 'neighboring', 'bed:', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'man:', 'aaahhhgggg', '||exclammark||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'i', 'have', 'a', 'friend', "who's", 'a', 'hypochondriac', '||comma||', 'always', 'thinks', "he's", 'sick', '||dash||', 'never', 'is', '||period||', 'and', 'they', '||comma||', 'you', 'have', 'another', 'type', 'of', 'person', '||comma||', 'always', 'thinks', "they're", 'well', '||comma||', 'not', 'matter', 'how', 'bad', 'they', 'really', 'are', '||period||', 'you', 'know', 'this', 'type', 'of', 'person', '||questionmark||', 'very', 'annoying', '||period||', '||quotemark||', 'feel', 'great', '||period||', '||period||', 'like', 'being', 'on', 'the', 'respirator', '||period||', '||period||', 'intravenous', 'heart/lung', 'machine', '||period||', 'i', 'never', 'felt', 'better', 'in', 'my', 'life', '||period||', '||quotemark||', 'medical', 'science', 'is', 'making', 'advances', 'every', 'day', 'in', 'control', 'health', 'problems', '||period||', 'in', 'fact', '||comma||', "it's", 'probably', 'only', 'a', 'matter', 'of', 'time', 'before', 'a', 'heart', 'attack', '||comma||', 'you', 'know', '||comma||', 'becomes', 'like', '||comma||', 'a', 'head', 'ache', '||period||', "we'll", 'just', 'see', 'people', 'on', 'tv', 'going', '||comma||', '||quotemark||', 'i', 'had', 'a', 'heart', 'attack', 'this', 'big', '||leftparen||', 'holds', 'out', 'hands', '||comma||', 'gesturing', 'bigness', '||rightparen||', '||period||', '||period||', 'but', '||comma||', 'i', 'gave', 'myself', 'one', 'of', 'these', '||period||', 'clear', '||exclammark||', '||leftparen||', 'puts', 'imaginary', 'electrode', 'panels', 'to', 'his', 'chest', '||rightparen||', 'brrhht', '||period||', '||period||', 'and', "it's", 'gone', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', 'all', 'right', '||comma||', 'all', 'right', '||period||', "what's", 'the', 'matter', 'with', 'that', '||questionmark||', 'what', 'about', 'that', 'one', '||questionmark||', '||return||', '||return||', 'elaine:', 'robert', 'vaughn', '||comma||', 'the', 'helsinki', 'formula', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'was', 'good', 'in', 'man', 'from', 'uncle', '||period||', '||return||', '||return||', 'elaine:', 'guess', 'whose', "birthday's", "comin'", 'up', 'soon', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', "i'm", 'having', 'my', 'root', 'canal', 'the', 'same', 'week', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'right', '||period||', 'i', 'hope', 'you', 'have', 'a', 'good', 'oral', 'surgeon', 'because', 'that', 'can', 'be', 'very', 'serious', '||period||', '||leftparen||', 'changes', 'channel', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'naked', 'people', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'wanna', 'see', 'the', 'naked', 'people', '||period||', '||return||', '||return||', 'elaine:', 'been', 'a', 'while', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'a', 'vague', 'recollection', 'of', 'doing', 'something', 'with', 'someone', '||comma||', 'but', 'it', 'was', 'a', 'long', '||comma||', 'long', 'time', 'ago', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', 'my', 'last', 'time', 'was', 'in', 'rochester', '||period||', 'my', 'hair', 'was', 'a', 'lot', 'shorter', '||period||', '||return||', '||return||', 'jerry:', 'i', 'remember', 'that', "it's", 'a', 'good', 'thing', '||period||', 'someday', '||comma||', 'i', 'hope', 'to', 'do', 'it', 'again', '||period||', '||leftparen||', 'jerry', 'looks', 'at', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'was', 'that', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'look', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'look', 'you', 'just', 'gave', 'me', '||period||', '||return||', '||return||', 'jerry:', 'i', 'gave', 'a', 'look', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'look', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', 'that', 'look', '||period||', '||return||', '||return||', 'jerry:', 'then', 'what', 'was', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'should', 'i', 'tell', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "you're", 'the', 'big', 'look', 'expert', '||period||', 'i', 'wanna', 'see', 'how', 'smart', 'you', 'are', '||period||', '||return||', '||return||', 'elaine:', 'trust', 'me', '||period||', 'i', 'know', 'the', 'look', '||period||', '||leftparen||', 'pause', '||rightparen||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'about', 'the', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'something', 'on', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'things', 'pop', 'into', 'your', 'head', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'things', 'occur', 'to', 'me', 'from', 'time', 'to', 'time', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'me', 'too', '||period||', 'well', '||comma||', 'you', "can't", 'expect', 'to', 'just', 'forget', 'the', 'past', 'completely', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'it', 'was', 'something', 'we', 'did', '||period||', 'probably', 'about', '||comma||', 'what', '||questionmark||', 'twenty', '||dash||', 'five', 'times', '||questionmark||', '||return||', '||return||', 'elaine:', 'thirty', '||dash||', 'seven', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'we', 'pretty', 'much', 'know', 'what', "we're", "doin'", 'in', 'there', '||period||', '||leftparen||', 'points', 'to', 'bedroom', '||rightparen||', '||return||', '||return||', 'elaine:', 'we', 'know', 'the', 'terrain', '||period||', '||return||', '||return||', 'jerry:', 'no', 'big', 'surprises', '||period||', '||return||', '||return||', 'elaine:', 'nope', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'something', 'to', 'consider', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', "let's", 'say', 'we', 'did', '||period||', '||return||', '||return||', 'elaine:', 'what', 'if', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'like', 'the', 'end', 'of', 'the', 'world', 'or', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'certainly', 'not', '||period||', '||return||', '||return||', 'jerry:', 'why', "shouldn't", 'we', 'be', 'able', 'to', 'do', 'that', 'once', 'in', 'a', 'while', 'if', 'we', 'want', 'to', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'really', '||comma||', 'what', 'is', 'the', 'big', 'deal', '||questionmark||', 'we', 'go', 'in', 'there', '||period||', '||leftparen||', 'points', 'to', 'the', 'bedroom', '||rightparen||', "we're", 'in', 'there', 'for', 'a', 'while', '||period||', 'we', 'come', 'right', 'back', 'out', 'here', '||period||', "it's", 'not', 'complicated', '||period||', '||return||', '||return||', 'elaine:', "it's", 'almost', 'stupid', 'if', 'we', "didn't", '||period||', '||return||', '||return||', 'jerry:', "it's", 'moronic', '||period||', '||return||', '||return||', 'elaine:', 'absurd', '||exclammark||', '||return||', '||return||', 'jerry:', 'of', 'course', '||comma||', 'i', 'guess', '||comma||', 'maybe', '||comma||', 'some', 'little', 'problems', 'could', 'arise', '||period||', '||return||', '||return||', 'elaine:', 'we', '||comma||', 'there', 'are', 'always', 'a', 'few', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'if', 'anything', 'happened', '||comma||', 'and', 'we', "couldn't", 'be', 'friends', 'the', 'way', 'we', 'are', 'now', '||comma||', 'that', 'would', 'be', 'really', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'devastating', '||period||', '||return||', '||return||', 'jerry:', 'because', 'this', 'is', 'very', 'good', '||period||', '||leftparen||', 'points', 'back', 'and', 'forth', 'between', 'them', 'to', 'indicate', 'friendship', '||rightparen||', '||return||', '||return||', 'elaine:', 'and', 'that', 'would', 'be', 'good', '||period||', '||leftparen||', 'points', 'to', 'bedroom', '||rightparen||', '||return||', '||return||', 'jerry:', 'that', 'would', 'be', 'good', 'too', '||period||', 'the', 'idea', 'is', 'combine', 'the', 'this', 'and', 'the', 'that', '||period||', 'but', 'this', 'cannot', 'be', 'disturbed', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'we', 'just', 'wanna', 'take', 'this', 'and', 'add', 'that', '||period||', '||return||', '||return||', 'jerry:', 'but', 'of', 'course', '||comma||', "we'd", 'have', 'to', 'figure', 'out', 'a', 'way', 'to', 'avoid', 'the', 'things', 'that', 'cause', 'the', 'little', 'problems', '||period||', 'maybe', 'some', 'rules', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'for', 'example', '||comma||', 'now', '||comma||', 'i', 'call', 'you', 'whenever', "i'm", 'inclined', 'and', 'vice', 'versa', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'but', 'if', 'we', 'did', 'that', '||comma||', 'we', 'might', 'feel', 'a', 'certain', 'obligation', 'to', 'call', '||period||', '||return||', '||return||', 'elaine:', 'well', 'why', 'should', 'that', 'be', '||questionmark||', 'oh', '||comma||', 'i', 'have', 'an', 'idea', '||period||', 'i', 'have', 'an', 'idea', '||period||', 'no', 'call', 'the', 'day', 'after', 'that', '||period||', '||return||', '||return||', 'jerry:', 'beautiful', '||period||', "let's", 'make', 'it', 'a', 'rule', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'sir', '||period||', '||return||', '||return||', 'jerry:', 'now', "here's", 'another', 'little', 'rule', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'when', 'we', 'see', 'each', 'other', 'now', '||comma||', 'we', 'retire', 'to', 'our', 'separate', 'quarters', '||period||', 'but', 'sometimes', '||comma||', 'when', 'people', 'get', 'involved', 'with', 'that', '||comma||', 'they', 'feel', 'pressure', 'to', 'sleep', 'over', '||period||', 'when', 'that', 'is', 'not', 'really', 'sleep', '||period||', 'sleep', 'is', 'separate', 'from', 'that', '||period||', 'and', 'i', "don't", 'see', 'why', 'sleep', 'got', 'all', 'tied', 'up', 'and', 'connected', 'with', 'that', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'okay', '||period||', 'rule', 'number', 'two', '||period||', 'spending', 'the', 'night', 'is', 'optional', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'now', "we're", "gettin'", 'somewhere', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'the', 'kiss', 'goodnight', '||questionmark||', '||return||', '||return||', 'jerry:', 'tough', 'one', '||period||', "you're", 'call', '||period||', '||return||', '||return||', 'elaine:', "it's", 'brug', '||dash||', 'wa', '||leftparen||', '||questionmark||', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||period||', 'well', '||period||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'elaine:', 'ready', '||period||', '||return||', '||return||', 'jerry:', 'so', 'think', 'you', 'can', 'handle', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'definitely', '||period||', '||leftparen||', 'runs', 'into', 'bookshelf', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'got', 'the', 'paper', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'yet', '||period||', '||return||', '||return||', 'kramer:', 'no', 'paper', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "haven't", 'been', 'out', 'yet', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "what's", 'taking', 'you', 'so', 'long', '||questionmark||', '||leftparen||', 'elaine', 'enters', 'from', 'the', 'bedroom', '||period||', 'kramer', 'is', 'a', 'little', 'shocked', '||rightparen||', 'uh', '||questionmark||', 'oh', '||comma||', 'well', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'george:', "what's", 'the', 'deal', 'with', 'aquaman', '||questionmark||', 'could', 'he', 'go', 'on', 'land', '||comma||', 'or', 'was', 'he', 'just', 'restricted', 'to', 'water', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'think', 'i', 'saw', 'him', 'on', 'land', 'a', 'couple', 'times', '||period||', 'so', "how's", 'the', 'job', 'situation', "goin'", '||questionmark||', '||return||', '||return||', 'george:', 'still', "lookin'", '||period||', "it's", 'pretty', 'bad', 'out', 'there', '||period||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "nothin'", 'much', '||period||', 'i', 'slept', 'with', 'elaine', 'last', 'night', '||period||', '||return||', '||return||', 'george:', 'oxygen', '||exclammark||', 'i', 'need', 'some', 'oxygen', '||exclammark||', 'this', 'is', 'major', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', "you'd", 'like', 'that', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'huge', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'okay', '||period||', "let's", 'go', '||comma||', 'details', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "can't", 'do', 'details', '||period||', '||return||', '||return||', 'george:', 'you', 'wha', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'give', 'details', '||period||', '||return||', '||return||', 'george:', 'no', 'details', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'in', 'the', 'mood', '||period||', '||return||', '||return||', 'george:', 'you', 'ask', 'me', 'here', 'to', 'have', 'lunch', '||comma||', 'tell', 'me', 'you', 'slept', 'with', 'elaine', '||comma||', 'and', 'then', 'say', "you're", 'not', 'in', 'the', 'mood', 'for', 'details', '||period||', 'now', 'you', 'listen', 'to', 'me', '||period||', 'i', 'want', 'details', 'and', 'i', 'want', 'them', 'right', 'now', '||period||', 'i', "don't", 'have', 'a', 'job', '||comma||', 'i', 'have', 'no', 'place', 'to', 'go', '||period||', "you're", 'not', 'in', 'the', 'mood', '||questionmark||', 'well', 'you', 'get', 'in', 'the', 'mood', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'okay', '||period||', "we're", 'in', 'the', 'apartment', 'watching', 'tv', '||period||', '||return||', '||return||', 'george:', 'where', 'are', 'you', 'sitting', '||questionmark||', '||return||', '||return||', 'jerry:', 'on', 'the', 'couch', '||period||', '||return||', '||return||', 'george:', 'next', 'to', 'each', 'other', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'separated', '||period||', '||return||', '||return||', 'george:', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'around', 'eleven', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'so', "she's", 'flipping', 'around', 'the', 'tv', '||comma||', 'and', 'she', 'gets', 'to', 'the', 'naked', 'station', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'see', '||questionmark||', "that's", 'why', 'i', "don't", 'have', 'cable', 'in', 'my', 'house', '||period||', 'because', 'of', 'that', 'naked', 'station', '||period||', 'if', 'i', 'had', 'that', 'in', 'my', 'house', '||comma||', 'i', 'would', 'never', 'turn', 'it', 'off', '||period||', 'i', "wouldn't", 'sleep', '||comma||', 'i', "wouldn't", 'eat', '||period||', 'eventually', '||comma||', 'firemen', 'would', 'have', 'to', 'break', 'through', 'the', 'door', '||comma||', "they'd", 'find', 'me', 'sitting', 'there', 'in', 'my', 'pajamas', 'with', 'drool', 'coming', 'down', 'my', 'face', '||period||', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'so', "you're", 'watching', 'the', 'naked', 'station', '||period||', '||return||', '||return||', 'jerry:', 'and', 'then', '||comma||', 'somehow', '||comma||', 'we', 'started', 'talking', 'about', '||comma||', 'what', 'if', 'we', 'had', 'sex', '||period||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'these', 'are', 'really', 'bad', 'details', '||period||', '||return||', '||return||', 'jerry:', 'it', 'pains', 'me', 'to', 'say', 'this', '||comma||', 'but', 'i', 'may', 'be', 'getting', 'to', 'mature', 'for', 'details', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'hate', 'to', 'hear', 'this', '||period||', 'that', 'kind', 'of', 'growth', 'really', 'irritates', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', "i'll", 'tell', 'you', 'though', '||period||', 'it', 'was', 'really', 'passionate', '||period||', '||return||', '||return||', 'george:', 'better', 'than', 'before', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', "must've", 'taken', 'some', 'kind', 'of', 'seminar', 'or', 'something', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'all', 'too', 'much', '||period||', 'so', 'what', 'are', 'you', 'feeling', '||questionmark||', "what's", 'going', 'on', '||questionmark||', 'are', 'you', 'like', 'a', 'couple', 'again', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'exactly', '||period||', '||return||', '||return||', 'george:', 'not', 'exactly', '||period||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "we've", 'tried', 'to', 'arrange', 'a', 'situation', 'where', "we'll", 'be', 'able', 'to', 'do', 'this', 'once', 'in', 'a', 'while', 'and', 'still', 'be', 'friends', '||period||', '||leftparen||', 'george', 'laughs', 'hysterically', 'and', 'stands', 'out', 'of', 'his', 'seat', '||rightparen||', '||return||', '||return||', 'george:', 'where', 'are', 'you', 'living', '||questionmark||', 'are', 'you', 'here', '||questionmark||', 'are', 'you', 'on', 'this', 'planet', '||questionmark||', "it's", 'impossible', '||period||', 'it', "can't", 'be', 'done', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "we've", 'worked', 'out', 'a', 'system', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'know', 'what', "you're", 'like', '||questionmark||', "you're", 'like', 'a', 'pathetic', 'gambler', '||period||', "you're", 'one', 'of', 'those', 'losers', 'in', 'las', 'vegas', 'who', 'keeps', 'thinking', "he's", 'gonna', 'come', 'up', 'with', 'a', 'way', 'to', 'win', 'at', 'blackjack', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'this', 'is', 'very', 'advanced', '||period||', "we've", 'designed', 'at', 'set', 'of', 'rules', 'that', 'we', 'can', 'maintain', 'the', 'friendship', 'by', 'avoiding', 'all', 'of', 'the', 'relationship', 'pitfalls', '||period||', '||return||', '||return||', 'george:', 'sure', '||comma||', 'all', 'right', '||period||', 'tell', 'me', 'the', 'rules', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'no', 'calls', 'the', 'next', 'day', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', 'so', "you're", "havin'", 'the', 'sex', '||comma||', 'next', 'day', 'you', "don't", 'have', 'to', 'call', '||period||', "that's", 'pretty', 'good', '||period||', '||leftparen||', 'back', 'to', 'jerry', '||rightparen||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ready', 'for', 'the', 'second', 'one', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'tell', 'you', '||comma||', "i'm", 'pretty', 'impressed', 'with', 'the', 'first', 'one', '||period||', '||return||', '||return||', 'jerry:', 'spending', 'the', 'night', '||period||', 'optional', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'see', '||questionmark||', 'you', 'got', 'greedy', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "that's", 'the', 'rule', '||period||', "it's", 'optional', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'less', 'about', 'women', 'than', 'anyone', 'in', 'the', 'world', '||period||', 'but', 'one', 'thing', 'i', 'do', 'know', 'is', "they're", 'not', 'happy', 'if', 'you', "don't", 'spend', 'the', 'night', '||period||', 'it', 'could', 'be', 'a', 'hot', '||comma||', 'sweaty', 'room', 'with', 'no', 'air', 'conditioning', 'and', 'all', 'they', 'have', 'is', 'a', 'little', 'army', 'cot', 'this', 'wide', '||leftparen||', 'displays', 'with', 'french', 'fry', '||rightparen||', "you're", 'not', 'going', 'anywhere', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "you're", 'wrong', '||period||', '||return||', '||return||', 'george:', 'i', 'hope', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'yours', 'or', 'the', "roommate's", '||questionmark||', '||return||', '||return||', 'elaine:', 'the', "roommate's", '||period||', '||return||', '||return||', 'jerry:', 'would', 'she', 'mind', '||questionmark||', '||return||', '||return||', 'elaine:', 'she', 'keeps', 'track', 'of', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'too', 'bad', '||comma||', "'cause", "i'm", "takin'", 'it', '||period||', '||return||', '||return||', 'elaine:', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'guess', "i'll", 'get', 'going', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'got', 'that', 'root', 'canal', 'tomorrow', 'morning', '||period||', "it'll", 'be', 'easier', 'if', 'i', 'go', 'home', '||period||', '||return||', '||return||', 'elaine:', 'fine', '||comma||', 'go', 'away', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', '||period||', 'is', 'there', 'a', 'problem', '||questionmark||', '||leftparen||', 'elaine', 'is', 'pulling', 'a', 'roll', 'of', 'paper', 'towels', 'about', 'twenty', 'feet', 'long', '||rightparen||', "i'm", 'getting', 'the', 'impression', "there's", 'a', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'just', 'go', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'having', 'surgery', 'tomorrow', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'surgery', '||period||', "you're", 'going', 'to', 'the', 'dentist', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'said', '||comma||', 'it', 'can', 'be', 'very', 'serious', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'so', 'fine', '||period||', 'go', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'the', 'rules', '||questionmark||', 'remember', '||questionmark||', 'sleeping', 'over', 'was', 'optional', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "it's", 'my', 'house', '||comma||', "it's", 'my', 'option', '||period||', '||return||', '||return||', 'jerry:', 'it', 'has', 'nothing', 'to', 'do', 'with', 'whose', 'house', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'of', 'course', 'it', 'does', '||period||', '||leftparen||', "elaine's", 'roommate', '||comma||', 'tina', '||comma||', 'enters', '||rightparen||', '||return||', '||return||', 'tina:', 'hi', '||period||', '||return||', '||return||', 'elaine', '+', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'tina:', 'hi', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'tina:', 'such', 'a', 'great', 'improv', 'class', 'tonight', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'really', '||questionmark||', '||return||', '||return||', 'tina:', 'i', 'had', 'this', 'improv', 'where', 'i', 'pretended', 'i', 'was', 'working', 'in', 'one', 'of', 'those', 'booths', '||period||', 'you', 'know', '||comma||', 'in', 'the', 'amusement', 'park', '||comma||', 'where', 'you', 'have', 'to', 'shoot', 'the', 'water', 'in', 'the', "clown's", 'mouth', 'and', 'you', 'have', 'to', 'blow', 'up', 'the', 'balloon', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'tina', '||questionmark||', 'could', 'you', 'excuse', 'us', 'for', 'just', 'one', 'second', '||questionmark||', '||return||', '||return||', 'tina:', 'oh', '||comma||', 'yeah', '||period||', "i'll", 'excuse', 'you', '||period||', '||leftparen||', 'she', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'go', 'if', "you're", 'mad', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'mad', '||period||', '||return||', '||return||', 'jerry:', 'you', 'seemed', 'a', 'little', 'mad', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'jerry', '||comma||', "i'm", 'fine', 'really', '||period||', "it's", 'okay', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'okay', 'with', 'everything', '||questionmark||', '||return||', '||return||', 'elaine:', 'definitely', '||period||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'definitely', '||period||', 'well', '||comma||', 'goodnight', '||period||', '||return||', '||return||', 'elaine:', 'goodn', '||dash||', '||dash||', '||leftparen||', 'he', 'starts', 'to', 'kiss', 'her', '||rightparen||', "what're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'rules', '||period||', '||return||', '||return||', 'tina:', 'hey', '||comma||', 'who', 'took', 'my', 'cake', '||questionmark||', '||leftparen||', 'jerry', 'exits', 'quickly', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'about', 'jewelry', '||questionmark||', "that's", 'very', 'nice', 'gift', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', 'i', 'have', 'to', 'be', 'very', 'careful', 'here', '||period||', 'i', "don't", 'want', 'to', 'send', 'the', 'wrong', 'message', '||period||', 'especially', 'after', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'george:', 'maybe', "i'll", 'get', 'her', 'some', 'jewelry', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', 'you', "can't", 'get', 'her', 'anything', 'better', 'than', 'me', '||period||', 'whatever', 'i', 'spend', '||comma||', 'you', 'have', 'to', 'spend', 'half', '||period||', '||return||', '||return||', 'george:', 'what', 'am', 'i', 'supposed', 'to', 'get', '||comma||', 'a', 'bazooka', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||period||', "i'm", 'in', 'a', 'very', 'delicate', 'position', '||period||', 'whatever', 'i', 'give', 'her', '||comma||', "she's", 'going', 'to', 'be', 'bringing', 'in', 'experts', 'from', 'all', 'over', 'the', 'country', 'to', 'interpret', 'the', 'meaning', 'behind', 'it', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'she', 'need', '||questionmark||', 'maybe', "there's", 'something', 'that', 'she', 'needs', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'heard', 'her', 'say', 'something', 'about', 'a', 'bench', '||period||', '||return||', '||return||', 'george:', 'a', 'bench', '||questionmark||', 'what', 'kind', 'of', 'a', 'bench', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'but', 'she', 'mentioned', 'a', 'bench', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'like', 'at', 'a', 'bus', 'stop', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'like', 'a', 'park', 'bench', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'george:', 'who', 'puts', 'a', 'bench', 'in', 'their', 'house', '||questionmark||', '||return||', '||return||', 'jerry:', 'forget', 'the', 'bench', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'it', '||period||', 'you', 'wanna', 'get', 'her', 'something', 'nice', '||questionmark||', 'how', "'bout", 'a', 'music', 'box', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'too', 'relationshippy', '||period||', 'she', 'opens', 'it', 'up', '||comma||', 'she', 'hears', 'that', "laura's", 'theme', '||comma||', "i'm", 'dead', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'what', 'about', 'a', 'nice', 'frame', '||questionmark||', 'with', 'a', 'picture', 'of', 'another', 'guy', 'in', 'it', '||period||', 'frame', 'says', 'i', 'care', 'for', 'you', '||comma||', 'but', 'if', 'you', 'wanna', 'get', 'serious', '||comma||', 'perhaps', "you'd", 'be', 'interested', 'in', 'someone', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'looking', 'fellow', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'candle', 'holders', '||questionmark||', '||return||', '||return||', 'jerry:', 'too', 'romantic', '||period||', '||return||', '||return||', 'george:', 'lingerie', '||questionmark||', '||return||', '||return||', 'jerry:', 'too', 'sexual', '||period||', '||return||', '||return||', 'george:', 'waffle', 'maker', '||period||', '||return||', '||return||', 'jerry:', 'too', 'domestic', '||period||', '||return||', '||return||', 'george:', 'bust', 'of', 'nelson', 'rockefeller', '||period||', '||return||', '||return||', 'jerry:', 'too', 'gubernatorial', '||period||', '||leftparen||', '||questionmark||', '||rightparen||', '||return||', '||return||', 'george:', "let's", 'work', 'on', 'the', 'card', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'you', "won't", 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'how', 'could', 'i', 'not', 'like', 'it', '||questionmark||', 'of', 'course', "i'll", 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'could', 'not', 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'just', 'the', 'fact', 'that', 'you', 'remembered', 'means', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'i', 'remembered', '||period||', 'you', 'reminded', 'me', 'everyday', 'for', 'two', 'months', '||period||', 'oh', '||comma||', 'the', 'card', '||period||', '||leftparen||', 'she', 'opens', '||rightparen||', '||return||', '||return||', 'elaine:', 'cash', '||questionmark||', '||return||', '||return||', 'jerry:', 'would', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'got', 'me', 'cash', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'this', 'way', 'i', 'figure', 'you', 'can', 'go', 'out', 'and', 'get', 'yourself', 'whatever', 'you', 'want', '||period||', 'no', 'good', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'are', 'you', '||comma||', 'my', 'uncle', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'come', 'on', '||period||', "that's", '$182', 'right', 'there', '||period||', 'i', "don't", 'think', "that's", 'anything', 'to', 'sneeze', 'at', '||period||', '||return||', '||return||', 'elaine:', 'let', 'me', 'see', 'the', 'card', '||period||', '||leftparen||', 'reading', '||rightparen||', 'to', 'a', 'wonderful', 'girl', '||comma||', 'a', 'great', 'pal', '||comma||', 'and', 'more', '||questionmark||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'oh', '||comma||', 'elaine', '||period||', "i'm", 'glad', "you're", 'here', '||period||', 'stay', 'right', 'there', '||period||', "i'm", 'gonna', 'be', 'right', 'back', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'pal', '||questionmark||', 'you', 'think', "i'm", 'your', 'pal', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', '||comma||', '||quotemark||', 'and', 'more', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'your', 'pal', '||period||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'pal', '||questionmark||', 'why', 'is', 'everyone', 'so', 'down', 'on', 'pal', '||questionmark||', '||leftparen||', 'kramer', 'enters', 'with', 'present', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'what', 'is', 'this', '||questionmark||', 'you', 'got', 'me', 'something', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'open', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'kramer', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'opens', 'it', '||rightparen||', 'the', 'bench', '||exclammark||', 'you', 'got', 'me', 'the', 'bench', 'that', 'i', 'wanted', '||exclammark||', '||leftparen||', 'jerry', 'looks', 'irritated', '||rightparen||', '||return||', '||return||', 'kramer:', "that's", 'pretty', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'great', '||period||', '||return||', '||return||', 'kramer:', 'remember', 'when', 'we', 'were', 'standing', 'there', 'and', 'she', 'mentioned', 'it', '||questionmark||', 'i', 'made', 'a', 'mental', 'note', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', 'goody', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "i'm", 'very', 'sensitive', 'about', 'that', '||period||', 'i', 'mean', '||comma||', 'when', "someone's", 'birthday', 'comes', 'up', '||comma||', 'i', 'keep', 'my', 'ears', 'open', '||period||', 'so', "what'd", 'you', 'get', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', '182', 'bucks', '||period||', '||return||', '||return||', 'kramer:', 'cash', '||questionmark||', 'you', 'gotta', 'be', 'kidding', '||period||', 'what', 'kind', 'of', 'gift', 'is', 'that', '||questionmark||', "that's", 'like', 'something', 'her', 'uncle', 'would', 'get', 'her', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reading', 'card', '||rightparen||', 'think', 'where', "man's", 'glory', 'most', 'begins', 'and', 'ends', 'and', 'say', 'my', 'glory', 'was', 'i', 'had', 'such', 'a', 'friend', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'yates', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'kramer', '||period||', '||leftparen||', 'they', 'embrace', '||rightparen||', '||return||', '||return||', 'jerry:', 'could', 'you', 'excuse', 'us', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'talking', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'the', 'relationship', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'we', 'never', 'had', 'one', 'fight', 'before', 'this', 'deal', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'never', '||period||', '||return||', '||return||', 'elaine:', 'ever', '||period||', '||return||', '||return||', 'jerry:', 'we', 'got', 'along', 'beautifully', '||period||', '||return||', '||return||', 'elaine:', 'like', 'clams', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'wonderful', '||period||', '||return||', '||return||', 'elaine:', 'a', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'think', 'we', 'should', 'just', 'forget', 'the', 'whole', 'deal', '||comma||', 'and', 'go', 'back', 'to', 'being', 'friends', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', "it's", '||period||', '||period||', '||period||', '||leftparen||', 'she', 'nods', '||rightparen||', 'no', 'this', '||period||', 'no', 'that', '||period||', 'no', 'this', 'or', 'that', '||period||', 'oh', '||comma||', 'boy', '||period||', 'hmmm', '||period||', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', '||comma||', 'that', '||comma||', 'and', 'the', 'other', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sure', '||period||', 'of', 'course', '||comma||', "you're", 'entitled', '||period||', 'who', "doesn't", 'want', 'this', '||comma||', 'that', '||comma||', 'and', 'the', 'other', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'starts', 'to', 'correct', 'then', 'realizes', '||rightparen||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'those', 'birthdays', '||period||', 'i', 'told', 'you', '||period||', "they're", 'relationship', 'killers', '||period||', 'if', 'a', 'relationship', 'is', 'having', 'any', 'problems', 'whatsoever', '||comma||', 'a', 'birthday', 'will', 'always', 'bring', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'should', 'have', 'made', 'up', 'those', 'rules', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'it', 'about', 'sex', 'that', 'just', 'disrupts', 'everything', '||questionmark||', 'is', 'it', 'the', 'touching', '||questionmark||', 'is', 'it', 'the', 'nudity', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', "can't", 'be', 'the', 'nudity', '||period||', 'i', 'never', 'got', 'into', 'these', 'terrible', 'fights', 'and', 'misunderstandings', 'when', 'i', 'was', 'changing', 'before', 'gym', 'class', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'this', 'means', '||questionmark||', 'i', "can't", 'see', 'her', 'anymore', 'either', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'break', 'up', 'by', 'association', '||period||', 'besides', '||comma||', "she's", 'mad', 'at', 'me', 'anyway', 'because', 'of', 'my', 'birthday', 'present', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'end', 'up', 'giving', 'her', '||questionmark||', '||return||', '||return||', 'george:', '91', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'sorry', 'about', 'that', '||period||', '||return||', '||return||', 'george:', 'so', "what're", 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'i', 'call', 'her', '||comma||', "there's", 'no', 'joking', 'around', 'anymore', '||period||', 'this', 'is', 'pretty', 'much', 'it', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'maybe', 'this', 'should', 'be', 'it', '||period||', '||return||', '||return||', 'jerry:', 'could', 'be', 'it', '||period||', '||return||', '||return||', 'george:', 'she', 'seems', 'like', 'an', 'it', '||period||', '||return||', '||return||', 'jerry:', "she's", 'at', 'it', 'as', 'you', 'get', '||period||', 'imagine', 'bumping', 'into', 'her', 'on', 'the', 'street', 'in', 'five', 'years', 'with', 'a', 'husband', '||period||', 'and', 'she', 'tells', 'me', "he's", 'a', 'sculptor', '||comma||', 'they', 'live', 'in', 'vermont', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "we'd", 'have', 'to', 'kill', 'him', '||period||', '||return||', '||return||', 'jerry:', "we'd", 'get', 'caught', '||comma||', "i'd", 'get', 'the', 'chair', '||period||', '||return||', '||return||', 'george:', "i'd", 'go', 'to', 'prison', 'as', 'your', 'accomplice', '||period||', "i'd", 'have', 'to', 'wear', 'that', 'really', 'heavy', 'denim', '||period||', 'go', 'to', 'the', 'cafeteria', 'line', 'with', 'the', 'guy', 'who', 'slops', 'those', 'mashed', 'potatoes', 'onto', 'your', 'plate', '||period||', 'go', 'to', 'the', 'bathroom', 'in', 'front', 'of', 'hundreds', 'of', 'people', '||period||', '||return||', '||return||', 'jerry:', 'plus', '||comma||', 'you', 'know', 'what', 'else', '||period||', '||return||', '||return||', 'george:', 'you', 'better', 'call', 'her', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'the', 'paper', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'well', 'where', 'is', 'it', '||questionmark||', '||leftparen||', 'elaine', 'enters', 'from', 'bedroom', 'with', 'newspaper', '||rightparen||', 'hey', '||comma||', 'you', 'done', 'with', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'not', 'reading', 'it', 'now', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'you', 'can', 'take', 'it', '||period||', 'but', 'i', 'want', 'it', 'back', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'so', '||comma||', 'ah', '||comma||', "what're", 'you', 'guys', 'gonna', 'do', 'today', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'this', '||period||', 'and', 'that', '||period||', '||return||', '||return||', 'jerry:', 'and', 'the', 'other', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'i', 'really', 'liked', 'the', 'two', 'of', 'you', 'much', 'better', 'when', 'you', "weren't", 'a', 'couple', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'men', 'flip', 'around', 'the', 'television', 'more', 'than', 'women', '||comma||', 'i', 'think', '||period||', 'men', 'get', 'that', 'remote', 'control', 'in', 'their', 'hands', '||comma||', 'they', "don't", 'even', 'know', 'what', 'the', 'hell', "they're", 'watching', '||period||', 'you', 'know', '||comma||', 'we', 'just', 'keep', 'going', '||comma||', '||quotemark||', 'rerun', '||comma||', "don't", 'wanna', 'watch', 'it', '||period||', '||period||', '||quotemark||', '||quotemark||', 'what', 'are', 'you', 'watching', '||questionmark||', '||quotemark||', '||quotemark||', 'i', "don't", 'care', '||comma||', 'i', 'gotta', 'keep', 'going', '||period||', '||quotemark||', '||quotemark||', 'who', 'was', 'that', '||questionmark||', '||quotemark||', '||quotemark||', 'i', "don't", 'know', 'what', 'it', 'was', '||dash||', "doesn't", 'matter', '||comma||', "it's", 'not', 'your', 'fault', '||period||', 'it', "doesn't", 'matter', '||comma||', 'i', 'gotta', 'keep', 'going', '||period||', '||quotemark||', 'women', "don't", 'do', 'this', '||period||', 'see', 'now', '||comma||', 'women', 'will', 'stop', 'and', 'go', '||comma||', '||quotemark||', 'well', '||comma||', 'let', 'me', 'see', 'what', 'the', 'show', 'is', 'before', 'i', 'change', 'the', 'channel', '||period||', '||quotemark||', 'you', 'see', '||questionmark||', 'men', 'just', 'fly', '||period||', 'because', 'women', '||comma||', 'you', 'see', '||comma||', 'women', 'nest', 'and', 'men', 'hunt', '||period||', "that's", 'why', 'we', 'watch', 'tv', 'differently', '||period||', 'before', 'there', 'was', 'flipping', 'around', '||comma||', 'before', 'there', 'was', 'television', '||comma||', 'kings', 'and', 'emperors', 'and', 'pharaohs', 'and', 'such', 'had', 'story', '||dash||', 'tellers', 'that', 'would', 'tell', 'them', 'stories', "'cause", 'that', 'was', 'their', 'entertainment', '||period||', 'i', 'always', 'wonder', '||comma||', 'in', 'that', 'era', '||comma||', 'if', 'they', 'would', 'get', '||comma||', 'like', '||comma||', 'thirty', 'story', '||dash||', 'tellers', 'together', 'so', 'they', 'could', 'still', 'flip', 'around', '||period||', 'just', 'go', '||comma||', '||quotemark||', 'alright', 'start', 'telling', 'me', 'a', 'story', '||comma||', "what's", 'happening', '||questionmark||', 'i', "don't", 'want', 'to', 'hear', 'anymore', '||period||', 'shut', 'up', '||period||', 'go', 'to', 'the', 'next', 'guy', '||period||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'is', 'there', 'a', 'girl', 'in', 'that', 'story', '||questionmark||', '||period||', '||period||', 'no', '||questionmark||', 'shut', 'up', '||period||', 'go', 'to', 'the', 'next', 'guy', '||period||', 'what', 'do', 'you', 'got', '||questionmark||', 'i', "don't", 'want', 'to', 'hear', 'that', 'either', '||period||', 'shut', 'up', '||period||', 'no', '||comma||', 'go', 'ahead', '||comma||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||period||', '||period||', 'i', "don't", 'want', 'to', 'hear', 'that', '||period||', 'no', '||comma||', 'the', 'all', 'of', 'you', '||comma||', 'get', 'out', 'of', 'here', '||period||', "i'm", 'going', 'to', 'bed', '||period||', '||quotemark||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'george:', '||leftparen||', 'shocked', '||rightparen||', "she's", 'pregnant', '||questionmark||', 'leslie', 'is', 'pregnant', '||questionmark||', '||exclammark||', 'oh', '||comma||', 'see', '||comma||', 'there', 'is', 'no', 'justice', '||period||', '||return||', '||return||', 'jerry:', "she's", 'the', 'performance', 'artist', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||comma||', 'performance', 'artist', '||period||', "she's", 'a', 'real', 'performer', '||period||', 'a', 'real', 'trooper', '||period||', '||return||', '||return||', 'jerry:', "what's", 'her', "husband's", 'name', '||comma||', 'again', '||questionmark||', 'chip', '||questionmark||', 'kip', '||questionmark||', 'skip', '||questionmark||', '||return||', '||return||', 'elaine:', 'todd', '||period||', '||return||', '||return||', 'jerry:', 'todd', '||period||', 'oh', 'yeah', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', "he's", 'a', 'kennedy', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "he's", 'not', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||period||', "he's", 'a', 'third', 'cousin', '||comma||', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'by', 'marriage', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'by', 'marriage', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'we', 'went', 'to', 'their', 'wedding', '||period||', 'you', 'should', 'have', 'heard', 'him', 'talking', 'about', 'chappaquiddick', '||dash||', 'trying', 'to', 'blame', 'the', 'whole', 'thing', 'on', 'bad', 'directions', '||period||', '||return||', '||return||', 'george:', 'that', 'woman', 'was', 'unequivocally', 'the', 'worst', 'date', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'pardon', 'me', 'for', 'trying', 'to', 'set', 'you', 'up', 'with', 'a', 'beautiful', '||comma||', 'intelligent', 'woman', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "don't", 'think', 'i', 'can', 'attract', 'beautiful', '||comma||', 'intelligent', 'women', '||questionmark||', '||return||', '||return||', 'jerry:', 'thin', 'ice', '||comma||', 'george', '||period||', 'thin', 'ice', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sarcastic', '||rightparen||', 'maybe', 'for', 'her', 'new', 'performance', 'piece', "she'll", 'give', 'birth', 'on', 'stage', '||period||', '||return||', '||return||', 'elaine:', 'she', 'stopped', 'performing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'again', '||comma||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'what', 'a', 'huge', 'blow', 'to', 'the', 'culture', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gesturing', 'to', 'george', '||rightparen||', 'you', 'believe', 'this', 'guy', '||questionmark||', 'he', 'holds', 'a', 'grudge', 'like', 'khomeini', '||period||', '||return||', '||return||', 'george:', 'she', 'dragged', 'me', 'down', 'to', 'that', 'warehouse', 'on', 'the', 'waterfront', 'in', 'brooklin', 'to', 'see', 'one', 'of', 'her', '||quotemark||', 'performances', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'and', 'she', 'cooks', 'dinner', 'onstage', 'for', 'some', 'celebrity', '||questionmark||', '||return||', '||return||', 'george:', 'god', '||exclammark||', "she's", 'cooking', 'dinner', 'for', 'god', '||exclammark||', "she's", 'yelling', 'and', 'screaming', '||comma||', 'and', 'the', 'next', 'thing', 'i', 'know', '||comma||', 'she', 'throws', 'a', 'big', 'can', 'of', 'chocolate', 'syrup', 'all', 'over', 'my', 'new', 'red', 'shirt', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'an', 'accident', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||comma||', 'accident', '||comma||', 'right', '||period||', 'she', 'was', 'aiming', 'right', 'at', 'me', 'like', 'she', 'was', 'putting', 'out', 'a', 'fire', '||exclammark||', 'then', '||comma||', 'for', 'the', 'rest', 'of', 'the', 'show', '||comma||', "i'm", 'sitting', 'there', 'with', 'chocolate', 'all', 'over', 'my', 'shirt', '||period||', 'flies', 'are', 'landing', 'on', 'me', '||period||', "i'm", 'boiling', '||dash||', "i'm", 'fantasizing', 'all', 'the', 'things', "i'm", 'gonna', 'say', 'when', 'i', 'see', 'her', '||period||', 'and', 'later', '||comma||', 'finally', '||comma||', 'backstage', 'when', 'i', 'talk', 'to', 'her', '||comma||', "i'm", 'a', 'groveling', 'worm', '||period||', '||quotemark||', 'what', 'kind', 'of', 'chocolate', 'was', 'that', '||questionmark||', 'do', 'you', 'throw', 'any', 'other', 'foods', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'he', 'thought', 'he', 'still', 'had', 'a', 'shot', '||period||', '||return||', '||return||', 'george:', 'and', 'then', '||comma||', 'then', '||comma||', 'then', 'she', 'leaves', 'with', 'somebody', 'else', '||exclammark||', 'never', 'even', '||comma||', 'never', 'even', 'said', 'goodbye', '||exclammark||', 'never', 'called', 'me', 'back', '||period||', '||period||', 'never', 'apologized', '||period||', 'nothing', '||period||', 'like', 'i', 'was', 'dirt', '||period||', '||return||', '||return||', 'jerry:', 'what', 'ever', 'happened', 'with', 'the', 'shirt', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'still', 'have', 'it', '||period||', 'the', "collar's", 'okay', '||period||', 'i', 'wear', 'it', 'under', 'sweaters', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'what', "i'm", 'gonna', 'do', '||period||', 'she', 'asked', 'me', 'to', 'give', 'her', 'a', 'baby', 'shower', '||period||', '||return||', '||return||', 'jerry:', 'asked', 'you', '||questionmark||', "you're", 'not', 'going', 'to', 'do', 'that', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'anyone', 'else', '||comma||', 'never', '||period||', 'but', '||comma||', 'leslie', '||dash||', 'i', 'have', 'a', 'problem', 'saying', 'no', 'to', '||period||', 'for', 'some', 'reason', '||comma||', 'i', 'seem', 'to', 'want', 'her', 'approval', '||period||', '||return||', '||return||', 'george:', 'let', 'maria', 'shriver', 'give', 'her', 'a', 'baby', 'shower', '||period||', '||return||', '||return||', 'jerry:', 'ask', 'not', 'what', 'i', 'can', 'do', 'for', 'you', '||dash||', 'ask', 'what', 'you', 'can', 'do', 'for', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'germanic', '||rightparen||', 'ich', 'bin', 'ein', 'sucker', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'would', 'you', 'two', 'stop', 'with', 'the', 'kennedys', '||questionmark||', 'why', 'does', 'everybody', 'make', 'such', 'a', 'big', 'deal', 'about', 'he', 'kennedys', '||questionmark||', 'what', 'is', 'this', 'fascination', '||questionmark||', '||exclammark||', 'who', 'cares', '||questionmark||', '||exclammark||', "it's", 'all', 'so', 'boring', '||period||', '||period||', '||return||', '||return||', 'george:', 'she', "doesn't", 'deserve', 'a', 'baby', 'shower', '||period||', 'she', 'deserves', 'a', 'baby', 'monsoon', '||period||', 'she', 'deserves', "rosemary's", 'baby', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'do', 'have', 'one', 'teeny', 'little', 'problem', '||comma||', 'though', '||period||', '||return||', '||return||', 'george:', 'never', 'said', 'goodbye', '||period||', 'never', 'apologized', '||period||', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'i', 'was', 'gonna', 'give', 'the', 'shower', 'in', 'my', 'apartment', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', 'roommate', 'has', 'lyme', 'disease', '||period||', '||return||', '||return||', 'jerry:', 'lyme', 'disease', '||questionmark||', 'i', 'thought', 'she', 'had', 'epstein', '||dash||', 'barr', 'syndrome', '||questionmark||', '||return||', '||return||', 'elaine:', 'she', 'has', 'this', 'in', 'addition', 'to', 'epstein', '||dash||', 'barr', '||period||', "it's", 'like', 'epstein', '||dash||', 'barr', 'with', 'a', 'twist', 'of', 'lyme', 'disease', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'she', 'get', 'lyme', 'disease', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'she', 'did', 'some', 'outdoor', 'version', 'of', 'hair', 'in', 'danbury', '||comma||', 'connecticut', '||period||', '||return||', '||return||', 'jerry:', 'they', 'still', 'do', 'that', 'play', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'a', 'classic', '||period||', '||return||', '||return||', 'jerry:', 'with', 'all', 'the', 'nudity', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'guess', '||period||', 'she', "must've", 'rolled', 'over', 'on', 'a', 'tick', 'during', 'the', 'love', '||dash||', 'in', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'mad', 'a', 'leslie', '||rightparen||', 'never', 'said', 'goodbye', '||period||', 'goodbye', '||exclammark||', '||return||', '||return||', 'jerry:', 'explain', 'to', 'me', 'how', 'this', 'baby', 'shower', 'thing', 'works', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'wanna', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'mean', '||comma||', 'does', 'it', 'ever', 'erupt', 'into', 'a', 'drunken', 'orgy', 'of', 'violence', '||questionmark||', '||return||', '||return||', 'elaine:', 'rarely', '||period||', '||return||', '||return||', 'jerry:', "there's", 'no', 'hazing', 'of', 'the', 'fetus', '||comma||', 'or', 'anything', '||comma||', 'is', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'when', 'is', 'this', 'suppose', 'to', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'saturday', '||period||', '||return||', '||return||', 'jerry:', 'saturday', '||questionmark||', '||period||', '||period||', 'well', '||comma||', 'i', 'have', 'a', 'show', 'in', 'buffalo', 'on', 'saturday', '||period||', "they're", 'not', 'gonna', 'bust', 'up', 'my', 'apartment', '||comma||', 'or', 'anything', '||comma||', 'are', 'they', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'take', 'full', 'responsibility', '||period||', 'you', "won't", 'regret', 'it', '||period||', '||return||', '||return||', 'jerry:', "'cause", "i've", 'seen', 'these', 'pregnant', 'women', '||dash||', 'and', 'they', 'sometimes', 'misjudge', 'their', 'fetal', 'girth', '||period||', 'just', 'like', 'one', 'wrong', 'turn', '||comma||', 'and', 'boom', '||exclammark||', 'and', 'entire', 'buffet', 'is', 'swept', 'off', 'the', 'table', '||period||', '||return||', '||return||', 'george:', 'someday', '||comma||', 'before', 'i', 'die', '||comma||', 'mark', 'my', 'words', '||dash||', "i'm", 'gonna', 'tell', 'that', 'woman', 'exactly', 'what', 'i', 'think', 'of', 'her', '||period||', "i'll", 'never', 'be', 'able', 'to', 'forgive', 'myself', 'until', 'i', 'do', '||period||', '||return||', '||return||', 'jerry:', 'and', 'if', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'still', "won't", 'be', 'able', 'to', 'forgive', 'myself', '||dash||', 'but', 'at', 'least', 'it', "won't", 'be', 'about', 'this', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'doing', 'this', 'for', '||questionmark||', 'look', 'at', 'you', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'quiet', '||period||', "i'm", 'trying', 'to', 'get', 'a', 'picture', '||period||', '||return||', '||return||', 'kramer:', 'but', 'you', "don't", 'have', 'to', 'do', 'this', '||exclammark||', 'this', 'guy', 'is', 'waiting', 'in', 'my', 'house', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'leave', 'me', 'alone', '||period||', '||return||', '||return||', 'kramer:', "it's", 'a', 'one', '||dash||', 'time', 'fee', '||period||', 'a', 'hundred', 'and', 'fifty', 'bucks', '||period||', 'why', 'live', 'like', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'getting', 'illegal', 'cable', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', 'you', 'gonna', 'wait', 'for', 'the', 'cable', 'companies', 'to', 'resolve', 'their', 'dispute', '||questionmark||', "they're", 'gonna', 'be', 'in', 'court', 'for', 'years', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'read', 'in', 'the', 'paper', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'oh', '||comma||', 'the', 'paper', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'they', 'might', 'hook', 'us', 'up', 'again', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'god', '||comma||', "you're", 'so', 'naive', '||exclammark||', 'all', 'the', 'cable', 'companies', 'care', 'about', 'is', 'the', '||quotemark||', 'big', 'mammoo', '||period||', '||quotemark||', '||leftparen||', 'jerry', 'wacks', 'the', 'tv', '||rightparen||', 'oh', '||comma||', 'look', 'at', 'you', '||exclammark||', "you're", 'banging', 'things', '||period||', '||period||', 'pathetic', '||period||', 'just', 'wasting', 'your', 'life', '||period||', "i'm", 'offering', 'you', 'fifty', '||dash||', 'six', 'channels', '||dash||', 'movies', '||comma||', 'sports', '||comma||', 'nudity', '||period||', 'and', "it's", 'free', '||exclammark||', 'for', 'life', '||exclammark||', '||return||', '||return||', 'jerry:', 'stop', 'shouting', '||exclammark||', "you're", 'ruining', 'the', 'reception', '||period||', '||return||', '||return||', 'kramer:', 'can', 'you', 'hear', 'yourself', '||questionmark||', 'can', '||comma||', 'can', '||comma||', 'do', 'you', 'know', 'what', "you're", 'saying', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', "you're", 'suggesting', 'is', 'illegal', '||period||', '||return||', '||return||', 'kramer:', "it's", 'not', 'illegal', '||period||', '||return||', '||return||', 'jerry:', "it's", 'against', 'the', 'law', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gesturing', 'to', 'the', 'rabbit', 'ears', '||rightparen||', 'just', '||comma||', 'just', '||comma||', 'hold', 'this', '||period||', 'can', 'you', 'hold', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holding', 'the', 'rabbit', 'ears', '||rightparen||', 'look', '||comma||', 'will', 'you', 'at', 'least', 'let', 'me', 'bring', 'the', 'guy', 'over', '||questionmark||', "he's", 'an', 'amazing', 'man', '||period||', "he's", 'a', 'russian', 'immigrant', '||period||', 'he', 'escaped', 'the', 'gulag', '||period||', "he's", 'like', 'the', 'sakharov', 'of', 'cable', 'guys', '||period||', '||period||', "he'll", 'slow', 'down', 'your', 'gas', 'meter', '||period||', 'he', 'sells', 'slugs', '||comma||', 'jerry', '||period||', 'slugs', 'for', 'the', 'subway', '||period||', '||return||', '||return||', 'jerry:', 'a', 'real', 'human', 'rights', 'nut', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "he's", 'intense', '||comma||', 'man', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'what', 'if', 'i', 'get', 'caught', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "you're", 'not', 'gonna', 'get', 'caught', '||period||', 'look', '||comma||', 'let', 'me', 'get', 'him', '||period||', 'man', '||comma||', "it's", 'the', 'nineties', '||comma||', "it's", 'hammer', 'time', '||exclammark||', 'come', 'on', '||comma||', 'just', 'let', 'me', 'get', 'him', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'why', "don't", 'we', 'wait', '||questionmark||', 'because', '||comma||', "i'm", 'going', 'out', 'of', 'town', 'tomarrow', '||period||', '||return||', '||return||', 'tabachnick:', 'tomarrow', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'no', 'problem', '||period||', 'yeah', '||comma||', "you'll", 'have', 'the', 'whole', 'thing', 'installed', 'by', 'the', 'time', 'you', 'get', 'back', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'mutters', 'to', 'himself', '||rightparen||', 'every', 'time', 'i', 'turn', 'on', 'the', 'tv', '||comma||', 'sirens', 'are', 'gonna', 'go', 'off', '||period||', "they're", 'gonna', 'track', 'me', 'down', 'like', 'a', 'dog', '||comma||', 'i', 'know', 'it', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'now', 'look', 'now', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', "it's", 'no', 'risk', '||period||', 'i', 'swear', '||period||', 'the', 'mets', 'have', 'seventy', '||dash||', 'five', 'games', 'on', 'cable', 'this', 'year', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pauses', '||comma||', 'thinking', 'about', 'what', 'kramer', 'just', 'said', '||rightparen||', 'put', 'it', 'in', '||period||', '||return||', '||return||', 'kramer:', 'you', "won't", 'regret', 'it', '||period||', '||leftparen||', 'jerry', 'mutters', 'some', 'more', '||comma||', 'kramer', 'rubs', 'his', 'hands', 'together', 'in', 'anticipation', '||comma||', 'then', 'starts', 'dancing', 'around', 'with', 'a', 'reluctant', 'jerry', '||rightparen||', "jerry's", 'gonna', 'be', 'a', 'cable', 'boy', '||comma||', 'a', 'cable', 'boy', '||comma||', 'a', 'cable', 'boy', '||period||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'man:', 'mr', '||period||', 'steinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'seinfeld', '||period||', '||return||', '||return||', 'man:', "we're", 'with', 'the', 'fbi', '||period||', 'you', 'wanna', 'tell', 'us', 'about', 'your', 'cable', 'hook', '||dash||', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'cable', 'hook', '||dash||', 'up', '||questionmark||', 'what', 'about', 'it', '||questionmark||', '||return||', '||return||', 'man:', "it's", 'been', 'illegally', 'installed', '||comma||', 'mr', '||period||', 'steinfeld', '||period||', '||return||', '||return||', 'jerry:', 'it', 'has', '||questionmark||', "i've", 'been', 'out', 'of', 'town', '||period||', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'had', 'to', 'tell', 'them', '||period||', 'i', 'had', 'to', '||period||', 'i', 'had', 'no', 'choice', '||period||', 'they', 'were', 'onto', 'the', 'scam', 'from', 'the', 'very', 'beginning', '||period||', '||return||', '||return||', 'man:', "you're", 'in', 'serious', 'trouble', '||comma||', 'mr', '||period||', 'steinfeld', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'minute', '||period||', 'wait', 'a', 'minute', '||comma||', 'hold', 'on', '||exclammark||', "we're", 'just', 'patsies', '||period||', "we're", 'just', 'a', 'couple', 'of', 'users', '||period||', '||period||', 'we', 'never', 'sold', 'the', 'stuff', '||period||', 'what', 'about', 'the', 'russian', 'guy', '||questionmark||', 'the', 'russian', 'guy', 'is', 'the', 'guy', 'you', 'want', '||period||', '||return||', '||return||', 'tabachnick:', 'mr', '||period||', 'seinfeld', '||comma||', 'agent', 'stone', '||period||', 'fbi', '||period||', 'undercover', '||period||', '||return||', '||return||', 'kramer:', 'no', '||exclammark||', 'jerry', '||exclammark||', '||leftparen||', 'the', 'fbi', 'agents', 'open', 'fire', '||period||', "jerry's", 'gunned', 'down', 'by', 'a', 'hailstorm', 'of', 'bullets', '||period||', 'kramer', 'leans', 'next', 'to', 'a', 'fallen', 'jerry', '||comma||', 'cupping', "jerry's", 'head', 'in', 'his', 'hands', '||rightparen||', 'cable', 'boy', '||comma||', 'cable', 'boy', '||period||', '||period||', 'what', 'have', 'you', 'done', 'to', 'my', 'little', 'cable', 'boy', '||questionmark||', '||period||', '||period||', '||return||', '||return||', '[setting:', 'airplane]', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||period||', 'can', 'i', 'get', 'something', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'stewardess:', "i'm", 'afraid', 'not', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'this', 'airline', '||questionmark||', 'what', 'are', 'you', '||comma||', 'cutting', 'out', 'the', 'drinks', 'now', '||questionmark||', '||return||', '||return||', 'stewardess:', 'no', 'sir', '||period||', "we're", 'flying', 'into', 'a', 'blizzard', '||period||', 'please', 'fasten', 'your', 'seat', 'belt', '||period||', "we're", 'making', 'an', 'emergency', 'landing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'are', 'they', 'gonna', 'go', 'over', 'the', 'instructions', 'again', '||questionmark||', '||return||', '||return||', 'bill:', 'my', 'name', 'is', 'bill', '||period||', 'i', 'might', 'be', 'the', 'last', 'person', 'you', 'ever', 'see', '||period||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', "i'm", 'not', 'afraid', 'of', 'flying', '||comma||', 'although', 'many', 'people', 'do', 'have', 'fear', 'of', 'flying', 'and', '||comma||', 'i', 'have', 'no', 'arguement', 'with', 'that', '||period||', 'i', 'think', 'fear', 'of', 'flying', 'is', 'quite', 'rational', 'because', '||comma||', 'human', 'beings', 'cannot', 'fly', '||period||', 'humans', 'have', 'fear', 'of', 'flying', 'same', 'way', 'fish', 'have', 'fear', 'of', 'driving', '||period||', 'put', 'a', 'fish', 'behind', 'the', 'wheel', '||comma||', 'and', 'they', 'go', '||comma||', '||quotemark||', 'this', "isn't", 'right', '||period||', 'i', "shouldn't", 'be', 'doing', 'this', '||period||', 'i', "don't", 'belong', 'here', '||period||', '||quotemark||', '||return||', '||return||', '[setting:', "george's", 'car]', '||return||', '||return||', 'george:', 'sounds', 'like', 'a', 'rough', 'trip', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'fire', 'engines', '||comma||', 'ambulances', 'all', 'along', 'the', 'runway', '||period||', 'and', 'then', '||comma||', 'when', 'we', 'landed', 'safely', '||comma||', 'they', 'all', 'seemed', 'so', 'disappointed', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'the', 'college', 'cancelled', 'the', 'gig', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'there', 'was', 'so', 'much', 'snow', '||period||', 'the', 'roads', 'were', 'closed', '||period||', 'i', 'really', 'appreciate', 'it', '||dash||', 'you', 'picking', 'me', 'up', '||period||', 'thanks', 'again', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'modestly', '||rightparen||', 'forget', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'really', '||period||', '||period||', 'an', 'airport', 'run', '||period||', '||return||', '||return||', 'george:', "it's", 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "it's", 'one', 'thing', 'if', 'i', 'asked', 'you', '||quotemark||', 'could', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', '||quotemark||', '||period||', '||period||', 'but', 'to', 'suggest', 'it', '||questionmark||', '||period||', '||period||', 'george', '||leftparen||', 'obviously', 'up', 'to', 'something', '||period||', 'jerry', "doesn't", 'suspect', 'anything', '||dash||', 'yet', '||rightparen||', 'whey', 'you', 'told', 'me', 'what', 'you', 'went', 'through', 'on', 'the', 'plane', '||comma||', 'it', 'makes', 'you', 'stop', 'and', 'think', '||period||', 'you', 'appreciate', 'having', 'a', 'real', 'friend', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joking', '||rightparen||', 'you', 'know', '||comma||', 'if', 'richie', 'brandes', 'did', 'this', '||comma||', "i'd", 'be', 'suspicious', '||comma||', 'you', 'know', '||period||', "he's", 'always', 'got', 'some', 'ulterior', 'motive', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', 'nervously', '||rightparen||', '||period||', '||period||', 'ulterior', 'motive', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'wait', 'a', 'minute', '||period||', 'wait', 'a', 'minute', '||period||', "don't", 'take', 'the', 'bridge', '||period||', '||period||', 'get', 'off', 'here', '||period||', 'we', "can't", 'go', 'back', 'to', 'my', 'place', '||comma||', "elaine's", 'having', 'the', 'shower', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'obviously', 'knows', 'that', '||comma||', 'but', 'pretends', 'he', "doesn't", '||rightparen||', 'what', '||comma||', 'tonight', '||questionmark||', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'forgot', 'all', 'about', 'it', '||period||', 'alright', '||comma||', "it's", 'no', 'big', 'deal', '||period||', "we'll", 'just', 'go', 'back', 'to', 'your', 'place', '||period||', '||return||', '||return||', 'george:', 'my', 'place', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'hate', 'my', 'place', '||period||', 'i', "don't", 'wanna', 'go', 'back', 'to', 'my', 'place', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'get', 'a', 'bite', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'would', '||period||', "it's", 'just', '||comma||', 'you', 'know', '||comma||', 'i', 'just', 'ate', 'a', 'whole', 'pot', 'roast', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', 'what', 'should', 'we', 'do', '||questionmark||', '||return||', '||return||', 'george:', "shouldn't", 'we', 'at', 'least', 'drop', 'off', 'your', 'bag', '||questionmark||', '||return||', '||return||', 'jerry:', 'red', 'shirt', '||exclammark||', 'red', 'shirt', '||exclammark||', "that's", 'the', 'red', 'shirt', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'nervous', '||rightparen||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'wearing', 'the', 'chocolate', 'shirt', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'am', '||questionmark||', 'what', 'a', 'strange', 'coincidence', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'a', '||dash||', 'ha', '||exclammark||', 'nice', 'try', '||comma||', 'my', 'friend', '||comma||', 'but', 'you', 'gotta', 'get', 'up', 'pretty', 'early', 'in', 'the', 'morning', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleading', '||rightparen||', 'you', 'gotta', 'let', 'me', 'go', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', 'badger', 'a', 'pregnant', 'woman', 'at', 'her', 'own', 'baby', 'shower', '||questionmark||', '||exclammark||', 'what', 'are', 'you', '||comma||', 'gonna', 'take', 'it', 'off', 'and', 'make', 'her', 'rinse', 'it', 'in', 'club', 'soda', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "i'm", 'gonna', 'hold', 'it', 'under', 'her', 'nose', 'so', 'she', 'can', 'smell', 'the', 'scent', 'of', 'stale', 'bosco', 'that', 'i', 'had', 'to', 'live', 'with', 'for', 'three', 'years', '||comma||', 'and', "i'm", 'gonna', 'say', '||comma||', '||quotemark||', 'remember', 'this', 'shirt', '||comma||', 'baby', '||questionmark||', '||exclammark||', 'well', '||comma||', 'now', '||comma||', "it's", 'payback', 'time', '||exclammark||', '||quotemark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'leslie:', 'we', 'just', 'bought', 'an', 'apartment', 'on', 'riverside', 'drive', '||period||', 'bernard', "goetz's", 'mother', 'used', 'to', 'live', 'there', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "where's", 'todd', '||questionmark||', '||return||', '||return||', 'leslie:', 'up', 'in', 'hyannisport', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||comma||', 'hyannisport', '||questionmark||', 'with', 'the', 'kennedys', '||questionmark||', 'who', 'else', 'is', 'up', 'there', '||questionmark||', 'is', 'rose', 'up', 'there', '||questionmark||', '||exclammark||', '||return||', '||return||', 'woman:', '||leftparen||', 'to', 'leslie', '||rightparen||', 'so', '||comma||', "when's", 'your', 'due', 'date', '||questionmark||', '||return||', '||return||', 'leslie:', 'march', 'twentieth', '||comma||', 'nine', 'a', '||period||', 'm', '||period||', '||return||', '||return||', 'woman:', 'you', 'know', 'the', 'time', '||exclammark||', '||return||', '||return||', 'leslie:', "i'm", 'having', 'a', 'planned', 'c', '||dash||', 'section', '||period||', 'my', 'therapist', 'told', 'me', 'if', 'i', 'go', 'through', 'labor', '||comma||', 'i', 'might', 'get', 'psychotic', '||period||', '||return||', '||return||', 'elaine:', 'leslie', '||comma||', 'leslie', '||comma||', 'whatever', 'happened', 'to', 'sargent', 'shriver', '||questionmark||', 'is', 'he', 'still', 'with', 'them', '||questionmark||', 'you', "don't", 'hear', 'much', 'about', 'him', 'these', 'days', '||period||', 'is', 'he', 'out', 'of', 'the', 'loop', '||questionmark||', '||return||', '||return||', 'leslie:', '||leftparen||', 'takes', 'a', 'bite', 'of', 'food', '||rightparen||', 'elaine', '||comma||', 'who', 'catered', 'this', '||comma||', 'sears', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whispering', 'to', 'kramer', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', "we're", 'putting', 'in', 'cable', '||period||', '||return||', '||return||', 'elaine:', 'the', 'cable', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "i'm", 'having', 'a', 'party', 'here', '||period||', 'you', "can't", 'do', 'this', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'we', 'have', 'to', 'do', 'this', 'now', '||period||', '||return||', '||return||', 'elaine:', "who's", 'this', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', 'which', 'one', '||questionmark||', '||return||', '||return||', 'elaine:', 'both', 'of', 'the', 'them', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "they're", 'soviet', 'cable', 'guys', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||period||', 'does', 'jerry', 'know', 'about', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', '||period||', "it's", 'all', 'authorized', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'you', "can't", '||exclammark||', 'you', "can't", 'do', 'this', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'do', 'you', 'know', 'how', 'booked', 'up', 'this', 'guy', 'is', '||questionmark||', 'now', '||comma||', 'if', 'i', 'send', 'him', 'away', 'now', '||comma||', "it's", 'gonna', 'take', 'jerry', 'months', 'to', 'get', 'him', 'back', '||period||', '||period||', 'he', "won't", 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', 'just', 'do', 'it', 'fast', 'and', 'then', 'get', 'out', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', 'anatoly', '||exclammark||', '||leftparen||', 'the', 'russians', 'get', 'to', 'work', 'on', 'command', '||period||', 'to', 'elaine', '||rightparen||', 'look', '||comma||', "it's", 'gonna', 'take', 'a', 'few', 'minutes', '||period||', '||period||', 'then', '||comma||', 'you', 'and', 'the', 'gals', 'can', 'take', 'a', 'load', 'off', 'and', 'watch', 'something', 'on', 'lifetime', '||period||', '||return||', '||return||', '[setting:', "george's", 'car]', '||return||', '||return||', 'jerry:', 'and', 'what', 'if', 'we', 'go', 'up', 'there', '||questionmark||', 'what', 'are', 'you', 'going', 'to', 'say', 'to', 'her', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'boiling', '||rightparen||', 'what', 'am', 'i', 'going', 'to', 'say', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'go', 'out', 'with', 'me', 'for', '||questionmark||', '||exclammark||', 'just', 'to', 'dump', 'chocolate', 'on', 'my', 'shirt', 'and', 'then', 'just', 'dump', 'me', 'altogether', '||questionmark||', '||exclammark||', 'i', "don't", 'deserve', 'that', 'kind', 'of', 'treatment', '||exclammark||', 'what', '||comma||', 'you', "don't", 'have', 'the', 'common', 'courtesy', 'to', 'return', 'my', 'calls', '||questionmark||', '||exclammark||', 'to', 'apologize', '||exclammark||', 'you', 'think', "i'm", 'some', 'sort', 'of', 'a', 'loser', '||comma||', 'that', 'likes', 'to', 'be', 'abused', 'and', 'ignored', '||questionmark||', '||exclammark||', "who's", 'shirt', 'can', 'be', 'ruined', 'without', 'financial', 'restitution', '||questionmark||', '||exclammark||', 'some', 'sort', 'of', 'a', 'masochist', 'who', 'enjoys', 'being', 'humiliated', '||questionmark||', 'you', 'think', 'you', 'can', 'avoid', 'me', 'like', 'i', 'have', 'some', 'sort', 'of', 'disease', '||questionmark||', '||exclammark||', 'you', 'have', 'the', 'disease', '||exclammark||', 'you', 'have', 'the', 'disease', '||exclammark||', 'you', 'may', 'be', 'beautiful', 'and', 'rich', 'and', 'physically', '||period||', '||period||', 'just', '||period||', '||period||', 'unbelievable', '||comma||', 'but', 'you', 'sicken', 'me', '||exclammark||', 'you', 'disgust', 'me', '||exclammark||', 'you', 'and', 'everyone', 'like', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', "you'll", 'never', 'say', 'that', 'to', 'her', 'face', '||period||', '||return||', '||return||', 'george:', 'watch', 'me', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', '||leftparen||', 'flirting', 'with', 'a', 'female', 'guest', '||rightparen||', 'yeah', '||comma||', 'i', 'eat', 'the', 'whole', 'apple', '||period||', 'the', 'core', '||comma||', 'stem', '||comma||', 'seeds', '||comma||', 'everything', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'kramer', '||comma||', 'kramer', '||comma||', 'look', 'at', 'him', '||period||', '||leftparen||', 'gestures', 'to', 'tabachnick', '||rightparen||', 'look', '||exclammark||', "he's", 'eating', 'all', 'the', 'food', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'well', '||comma||', 'you', 'know', '||comma||', 'there', 'are', 'many', 'differences', 'between', 'american', 'and', 'soviet', 'cultures', 'that', "you're", 'not', 'aware', 'of', '||period||', 'see', '||comma||', 'in', 'russian', '||comma||', 'the', 'cable', 'guy', '||comma||', 'they', 'got', 'the', 'whole', 'run', 'of', 'the', 'house', '||period||', 'yeah', '||comma||', "that's", 'tradition', '||period||', '||leftparen||', 'turns', 'back', 'to', 'the', 'woman', '||rightparen||', 'did', 'you', 'ever', 'eat', 'the', 'bark', 'of', 'a', 'pineapple', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'trying', 'to', 'break', 'up', 'the', 'fight', '||rightparen||', 'uh', '||period||', '||period||', 'excuse', 'me', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', 'i', 'thought', 'you', 'were', 'out', 'of', 'town', 'for', 'the', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'the', 'show', 'was', 'cancelled', '||period||', 'there', 'was', 'a', 'blizzard', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'you', 'told', 'kramer', "it's", 'okay', 'to', 'put', 'the', 'cable', 'in', 'during', 'the', 'shower', '||exclammark||', 'jerry', '||comma||', 'look', '||comma||', '||comma||', 'look', '||exclammark||', "they've", 'eaten', 'everything', '||period||', '||return||', '||return||', 'leslie:', 'jerry', '||comma||', 'what', 'a', 'surprise', '||exclammark||', 'i', 'thought', 'you', 'sere', 'out', 'of', 'town', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'leslie', '||comma||', 'sometimes', 'the', 'road', 'less', 'travelled', 'is', 'less', 'travelled', 'for', 'a', 'reason', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'speaking', 'confidentially', 'to', 'george', '||rightparen||', 'george', '||comma||', "don't", 'even', 'think', 'about', 'it', '||exclammark||', "don't", 'even', 'dream', 'about', 'it', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'unconvincingly', 'coy', '||rightparen||', 'about', 'what', '||questionmark||', '||return||', '||return||', 'tabachnick:', '||leftparen||', 'sticks', 'his', 'head', 'out', 'the', 'door', '||rightparen||', 'kramer', '||comma||', 'kramer', '||comma||', 'kramer', '||period||', '||period||', '||return||', '||return||', 'george:', 'leslie', '||period||', '||return||', '||return||', 'leslie:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'george', '||period||', '||period||', '||leftparen||', 'she', "doesn't", 'seem', 'to', 'recognize', 'him', '||rightparen||', 'george', 'costanza', '||period||', '||return||', '||return||', 'leslie:', 'hi', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'you', '||comma||', 'i', 'guess', '||comma||', 'you', "don't", 'remember', 'me', '||period||', '||period||', 'but', 'we', 'actually', '||comma||', 'kind', 'of', 'um', '||period||', '||period||', 'went', 'out', '||period||', '||period||', 'a', 'couple', 'of', 'years', 'ago', '||period||', '||period||', 'once', '||period||', '||period||', 'remember', '||questionmark||', '||return||', '||return||', 'leslie:', 'vaguely', '||period||', '||return||', '||return||', 'george:', 'you', 'took', 'me', 'to', 'one', 'of', 'your', 'shows', '||period||', '||period||', '||return||', '||return||', 'leslie:', 'and', '||questionmark||', '||return||', '||return||', 'george:', 'and', '||comma||', 'um', '||comma||', 'it', 'was', 'quite', 'good', '||period||', 'in', 'fact', '||comma||', 'you', 'even', 'incorporated', 'me', 'into', 'the', 'show', '||period||', "i'm", 'not', 'actually', 'a', 'performer', '||period||', 'although', '||comma||', 'my', 'parents', 'felt', 'i', 'had', 'talent', '||period||', '||period||', '||return||', '||return||', 'mary:', 'jerry', '||questionmark||', '||exclammark||', '||leftparen||', 'a', 'woman', '||comma||', 'angry', 'at', 'jerry', '||comma||', 'approaches', 'him', '||period||', 'jerry', 'looks', 'confused', '||rightparen||', 'remember', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'i', '||period||', '||period||', '||return||', '||return||', 'mary:', '||leftparen||', 'livid', '||rightparen||', 'mary', 'contardi', '||period||', 'no', '||questionmark||', "doesn't", 'ring', 'a', 'bell', '||comma||', 'jerry', '||questionmark||', 'we', 'had', 'a', 'date', '||comma||', 'three', 'years', 'ago', '||period||', 'you', 'took', 'me', 'to', 'one', 'of', 'your', 'shows', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stammering', '||rightparen||', 'oh', '||comma||', 'i', '||comma||', 'i', '||comma||', 'think', 'i', 'remember', '||period||', '||period||', '||return||', '||return||', 'mary:', 'told', 'me', 'you', 'had', 'a', 'great', 'time', '||exclammark||', 'said', "you'd", 'call', 'me', 'the', 'next', 'day', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'sure', 'i', 'meant', 'to', 'call', '||period||', '||period||', 'i', 'probably', 'just', 'lost', 'your', '||period||', '||period||', '||return||', '||return||', 'mary:', 'liar', '||exclammark||', 'liar', '||exclammark||', 'you', 'were', 'never', 'going', 'to', 'call', 'me', '||exclammark||', 'you', 'thought', 'you', 'could', 'waltz', 'throught', 'the', 'rest', 'of', 'your', 'life', 'and', 'never', 'bump', 'into', 'me', 'again', '||exclammark||', 'but', 'you', 'were', 'wrong', '||comma||', 'jerry', '||exclammark||', 'you', 'were', 'wrong', '||exclammark||', 'what', 'do', 'you', 'think', '||comma||', "i'm", 'some', 'sort', 'of', 'poor', '||comma||', 'pathetic', 'wretch', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'think', 'that', '||period||', '||period||', '||return||', '||return||', 'marry:', 'some', 'person', 'who', 'could', 'be', 'dismissed', 'and', 'ignored', '||questionmark||', '||exclammark||', 'some', 'insignificant', 'piece', 'of', 'dust', '||questionmark||', '||exclammark||', 'some', 'person', 'who', "doesn't", 'deserve', 'your', 'respect', 'and', 'your', 'attention', '||questionmark||', '||exclammark||', "you're", 'the', 'one', 'that', "doesn't", 'deserve', 'my', 'respect', 'and', 'my', 'attention', '||exclammark||', "you're", 'the', 'insignificant', 'piece', 'of', 'dust', '||exclammark||', '||return||', '||return||', 'george:', 'actually', '||comma||', 'i', 'never', 'had', 'any', 'formal', 'training', '||period||', 'i', 'guess', "i'd", 'be', 'better', 'suited', 'for', 'improvs', '||comma||', 'or', 'something', '||period||', '||period||', '||return||', '||return||', 'leslie:', 'thanks', 'a', 'lot', '||exclammark||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', 'you', 'have', 'to', 'go', '||period||', '||return||', '||return||', 'woman:', 'yeah', '||period||', 'i', 'really', 'have', 'to', 'be', 'going', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'listen', '||comma||', "i've", 'changed', 'my', 'mind', 'about', 'this', 'whole', 'thing', '||period||', 'i', "don't", 'want', 'cable', '||period||', '||return||', '||return||', 'kramer:', "don't", 'be', 'a', 'fool', '||period||', '||return||', '||return||', 'tabachnick:', 'you', "don't", 'want', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'want', '||period||', 'so', '||comma||', 'just', 'tell', 'me', 'what', 'i', 'owe', 'you', 'for', 'your', 'trouble', '||period||', '||period||', '||return||', '||return||', 'tabachnick:', '||leftparen||', 'confers', 'with', 'his', 'assistant', '||comma||', 'then', '||rightparen||', 'four', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'four', 'hundred', 'dollars', '||questionmark||', '1', 'you', 'told', 'me', 'one', '||dash||', 'fifty', '||exclammark||', '||return||', '||return||', 'leslie:', "i'm", 'going', '||period||', '||period||', 'obviously', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'leslie', '||comma||', 'i', 'am', 'so', 'sorry', 'about', 'everything', 'that', 'went', 'on', 'here', 'tonight', '||period||', 'you', 'know', '||comma||', 'i', 'had', 'no', 'idea', '||period||', '||period||', '||return||', '||return||', 'leslie:', 'elaine', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'watching', 'you', 'tonight', '||comma||', 'and', 'i', 'realized', 'something', '||period||', "you're", 'just', 'like', 'you', 'were', 'in', 'college', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'sure', 'if', 'it', 'was', 'an', 'insult', 'or', 'a', 'compliment', '||rightparen||', 'oh', '||comma||', 'thank', 'you', '||period||', '||leftparen||', 'leslie', 'leaves', '||period||', 'then', 'elaine', 'wonders', 'to', 'herself', '||rightparen||', '||quotemark||', 'like', 'you', 'were', 'in', 'college', '||quotemark||', '||questionmark||', '||return||', '||return||', 'leslie:', '||leftparen||', 'comes', 'back', '||comma||', 'and', 'yells', 'in', 'the', 'direction', 'of', 'the', 'bedroom', '||rightparen||', 'come', 'on', '||exclammark||', "let's", 'go', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'sheepishly', 'to', 'elaine', '||rightparen||', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'defiantly', '||rightparen||', "i'm", 'not', 'paying', 'four', 'hundred', 'dollars', '||exclammark||', 'i', "don't", 'even', 'want', 'the', 'thing', '||period||', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||exclammark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'every', 'woman', 'on', 'the', 'face', 'of', 'the', 'earth', 'has', 'complete', 'control', 'of', 'my', 'life', '||period||', 'and', 'yet', '||comma||', 'i', 'want', 'them', 'all', '||period||', '||period||', 'is', 'that', 'irony', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', "can't", 'i', 'meet', 'a', 'kennedy', '||questionmark||', '||period||', '||period||', 'i', 'saw', 'john', 'junior', 'once', 'downtown', '||period||', 'i', 'was', 'on', 'a', 'bus', '||period||', 'i', 'hit', 'the', 'ding', '||comma||', 'but', '||period||', '||period||', 'it', "didn't", 'stop', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'i', 'said', 'i', 'had', 'a', 'good', 'time', 'and', "i'd", 'call', '||comma||', 'but', 'who', 'takes', 'that', 'literally', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pops', 'his', 'head', 'into', "jerry's", 'apartment', '||rightparen||', 'hey', '||comma||', 'come', 'on', 'over', '||comma||', 'dr', '||period||', "zhivago's", 'on', 'cable', 'in', 'five', 'minutes', '||period||', '||period||', "i'm", 'making', 'popcorn', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'do', 'at', 'the', 'end', 'of', 'a', 'date', 'when', 'you', 'know', 'you', "don't", 'want', 'to', 'see', 'this', 'person', 'ever', 'again', '||comma||', 'for', 'the', 'rest', 'of', 'your', 'life', '||questionmark||', 'what', 'do', 'you', 'say', '||questionmark||', 'what', 'do', 'you', 'say', '||questionmark||', 'no', 'matter', 'what', 'you', 'say', '||comma||', "it's", 'a', 'lie', '||period||', '||quotemark||', "i'll", 'see', 'you', 'around', '||period||', 'see', 'you', 'around', '||period||', 'if', "you're", 'around', '||comma||', 'and', "i'm", 'around', '||comma||', "i'll", 'see', 'you', 'around', 'that', 'area', '||period||', "you'll", 'be', 'around', 'other', 'people', '||period||', 'you', "won't", 'be', 'around', 'me', '||period||', 'but', 'you', 'will', 'be', 'around', '||period||', '||quotemark||', '||quotemark||', 'take', 'care', 'now', '||period||', '||quotemark||', 'did', 'you', 'ever', 'say', 'that', 'to', 'somebody', '||questionmark||', '||quotemark||', 'take', 'care', 'now', '||period||', 'take', 'care', '||comma||', 'now', '||period||', 'because', '||comma||', "i'm", 'not', 'going', 'to', 'be', 'taking', 'care', 'of', 'you', '||period||', 'so', '||comma||', 'you', 'should', 'take', 'care', '||comma||', 'now', '||period||', '||quotemark||', '||quotemark||', 'take', 'care', '||period||', 'take', 'care', '||period||', '||quotemark||', 'what', 'does', 'this', 'mean', '||questionmark||', '||quotemark||', 'take', 'off', '||exclammark||', '||quotemark||', "isn't", 'that', 'what', 'you', 'really', 'want', 'to', 'say', '||questionmark||', '||quotemark||', 'take', 'off', 'now', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'a', 'couple', 'of', 'days', 'ago', 'i', 'used', 'a', 'public', 'phone', '||rightparen||', '||comma||', 'go', 'over', 'time', 'on', 'the', 'call', '||comma||', 'hang', 'up', 'the', 'phone', '||comma||', 'walk', 'away', '||period||', "you've", 'had', 'this', 'happen', '||questionmark||', 'phone', 'rings', '||period||', "it's", 'the', 'phone', 'company', '||period||', '||period||', '||period||', 'they', 'want', 'more', 'money', '||period||', "don't", 'you', 'love', 'this', '||questionmark||', 'and', 'you', 'got', 'them', 'right', 'where', 'you', 'want', 'them', 'for', 'the', 'first', 'time', 'in', 'your', 'life', '||period||', "you're", 'on', 'the', 'street', '||comma||', "there's", 'nothing', 'they', 'can', 'do', '||period||', 'i', 'like', 'to', 'let', 'it', 'ring', 'a', 'few', 'times', '||comma||', 'you', 'know', '||comma||', 'let', 'her', 'sweat', 'a', 'little', 'over', 'there', '||comma||', 'then', 'i', 'just', 'pick', 'it', 'up', '||comma||', '||quotemark||', 'yeah', '||comma||', 'operator', '||period||', '||period||', '||period||', 'oh', '||comma||', 'i', 'got', 'the', 'money', '||period||', '||period||', '||period||', 'i', 'got', 'the', 'money', 'right', 'here', '||period||', '||period||', '||period||', "d'you", 'hear', 'that', '||questionmark||', '||leftparen||', 'taps', 'on', 'microphone', '||rightparen||', "that's", 'a', 'quarter', '||period||', 'yeah', '||comma||', 'you', 'want', 'that', "don't", 'you', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "they've", 'just', 'got', 'to', 'get', 'more', 'cops', 'on', 'the', 'force', '||comma||', "it's", 'as', 'simple', 'as', 'that', '||period||', '||return||', '||return||', 'george:', 'cops', '||period||', 'i', "don't", 'even', 'care', 'about', 'cops', '||period||', 'i', 'wanna', 'see', 'more', 'garbage', 'men', '||period||', "it's", 'much', 'more', 'important', '||period||', 'all', 'i', 'wanna', 'see', 'are', 'garbage', 'trucks', '||comma||', 'garbage', 'cans', 'and', 'garbage', 'men', '||period||', "you're", 'never', 'gonna', 'stop', 'crime', '||comma||', 'we', 'should', 'at', 'least', 'be', 'clean', '||period||', '||return||', '||return||', 'jerry:', 'i', 'tell', 'you', 'what', 'they', 'should', 'do', '||comma||', 'they', 'should', 'combine', 'the', 'two', 'jobs', '||comma||', 'make', 'it', 'one', 'job', '||comma||', "'cop\\garbage", "man'", '||period||', 'i', 'always', 'see', 'cops', 'walking', 'around', 'with', 'nothing', 'to', 'do', '||period||', 'grab', 'a', 'broom', '||exclammark||', 'start', 'sweeping', '||period||', 'you', 'sweep', 'sweep', 'sweep', '||period||', '||period||', '||period||', 'catch', 'a', 'criminal', '||comma||', 'get', 'right', 'back', 'to', 'sweeping', '||period||', '||return||', '||return||', 'elaine:', 'you', 'should', 'run', 'for', 'mayor', '||period||', '||return||', '||return||', 'jerry:', 'ehh', '||comma||', 'nobody', 'listens', '||period||', '||return||', '||return||', 'elaine:', 'where', 'is', 'someone', '||questionmark||', "i'm", 'starving', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'this', 'is', 'him', 'right', 'here', '||period||', '||return||', '||return||', 'elaine:', 'is', 'there', 'a', 'table', 'ready', '||questionmark||', '||return||', '||return||', 'restaurant', 'manager', '||leftparen||', 'bruce', '||rightparen||', ':', 'how', 'many', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'how', 'many', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'is', 'tatiana', 'coming', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'i', 'have', 'to', 'call', 'her', '||comma||', 'tell', 'her', 'where', 'we', 'are', '||period||', "i'm", 'very', 'lucky', "she's", 'even', 'considering', 'seeing', 'me', 'at', 'all', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'i', 'thought', 'things', 'were', 'going', 'ok', '||period||', '||return||', '||return||', 'george:', 'they', 'were', '||comma||', "it's", 'kinda', 'complicated', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'many', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'alright', '||comma||', 'four', '||period||', 'seinfeld', '||period||', '||return||', '||return||', 'bruce:', 'four', '||period||', "it'll", 'be', 'five', '||comma||', 'ten', 'minutes', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'wanna', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', "let's", 'go', 'someplace', 'else', '||comma||', 'i', 'am', 'too', 'hungry', '||period||', '||return||', '||return||', 'jerry:', 'we', 'might', 'as', 'well', 'just', 'stay', 'here', '||comma||', 'we', "haven't", 'got', 'that', 'much', 'time', 'if', 'we', 'wanna', 'make', 'it', 'to', 'the', 'movie', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'call', 'tatiana', '||period||', "where's", 'the', 'phone', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'tatiana', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'are', 'you', 'gonna', 'be', 'very', 'long', '||questionmark||', '||return||', '||return||', 'bruce:', 'lashbrook', '||comma||', '4', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'did', 'i', 'do', 'a', 'terrible', 'thing', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'mean', 'lying', 'to', 'your', 'uncle', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "couldn't", 'have', 'dinner', 'with', 'him', '||period||', "'plan", '9', 'from', 'outer', "space'", '||comma||', 'one', 'night', 'only', '||comma||', 'the', 'big', 'screen', '||period||', 'my', 'hands', 'are', 'tied', '||exclammark||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'you', 'know', "it's", 'a', 'public', 'phone', '||comma||', "you're", 'not', 'supposed', 'to', 'just', 'chit', '||dash||', 'chat', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'get', 'menus', 'so', 'when', 'we', 'sit', 'down', 'we', 'can', 'order', 'right', 'away', '||period||', '||return||', '||return||', 'jerry:', "can't", 'look', 'at', 'a', 'menu', 'now', '||comma||', 'i', 'gotta', 'be', 'at', 'the', 'table', '||period||', '||return||', '||return||', 'george:', 'he', 'knows', "i'm", 'waiting', '||period||', 'he', 'sees', 'me', '||period||', 'he', 'just', "doesn't", 'wanna', 'look', '||period||', '||return||', '||return||', 'elaine:', "everything's", 'gotta', 'be', 'just', 'so', 'with', 'you', '||comma||', "doesn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'offered', 'you', 'those', 'cookies', 'in', 'my', 'house', '||period||', '||return||', '||return||', 'elaine:', 'health', 'cookies', '||period||', 'i', 'hate', 'those', 'little', 'dustboard', 'fructose', 'things', '||period||', '||return||', '||return||', 'george:', 'i', 'just', "can't", 'believe', 'at', 'the', 'way', 'people', 'are', '||period||', 'what', 'is', 'it', 'with', 'humanity', '||questionmark||', 'what', 'kind', 'of', 'a', 'world', 'do', 'we', 'live', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'a', 'woman', 'over', 'there', 'that', 'looks', 'really', 'familiar', '||period||', 'dark', 'hair', '||comma||', 'striped', 'shirt', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'never', 'seen', 'her', 'before', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'this', 'woman', '||period||', 'this', 'is', 'gonna', 'drive', 'me', 'crazy', '||period||', '||return||', '||return||', 'man:', 'oh', '||comma||', 'excuse', 'me', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'didja', 'see', 'that', '||questionmark||', 'those', 'people', '||comma||', 'look', '||comma||', "they're", 'getting', 'a', 'table', '||period||', '||return||', '||return||', 'jerry:', 'well', 'maybe', 'they', 'were', 'here', 'from', 'before', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', '||comma||', 'they', "weren't", 'here', 'before', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'guy', '||rightparen||', ':', 'excuse', 'me', '||comma||', 'are', 'you', 'going', 'to', 'be', 'much', 'longer', '||questionmark||', 'i', 'have', 'to', 'make', 'a', 'very', 'important', 'call', '||period||', '||return||', '||return||', 'elaine:', 'find', 'out', "what's", 'going', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', "didn't", 'those', 'people', 'just', 'come', 'in', '||questionmark||', 'i', 'believe', 'we', 'were', 'ahead', 'of', 'them', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'bruce:', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'seinfeld', '||period||', '||return||', '||return||', 'bruce:', 'no', '||comma||', 'no', '||comma||', 'they', 'were', 'here', 'before', '||period||', 'keckitch', '||leftparen||', 'sp', '||questionmark||', '||rightparen||', '||comma||', '2', '||exclammark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'ever', 'notice', 'how', 'happy', 'people', 'are', 'when', 'they', 'finally', 'get', 'a', 'table', '||questionmark||', 'they', 'think', "they're", 'so', 'special', 'because', "they've", 'been', 'chosen', '||period||', "it's", 'enough', 'to', 'make', 'you', 'sick', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'you', 'are', 'really', 'hungry', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'whistles', 'to', 'guy', 'on', 'phone', '||rightparen||', ':', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'if', 'anything', 'happens', 'here', '||comma||', 'can', 'i', 'count', 'on', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'if', 'we', 'decide', 'to', 'go', 'at', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'wanna', 'get', 'into', 'a', 'rumble', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'get', 'in', 'touch', 'with', 'tatiana', '||exclammark||', 'and', 'look', 'at', 'his', 'little', 'outfit', '||period||', "it's", 'all', 'so', 'coordinated', '||comma||', 'the', 'way', 'his', 'socks', 'matching', 'to', 'his', 'shirt', '||period||', 'i', 'really', 'hate', 'this', 'guy', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'gonna', 'faint', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'who', 'is', 'that', 'woman', 'in', 'the', 'stripes', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'her', '||period||', '||return||', '||return||', 'jerry:', 'she', 'looks', 'so', 'familiar', '||period||', '||return||', '||return||', 'elaine:', 'ya', 'know', '||comma||', 'its', 'not', 'fair', 'people', 'are', 'seated', 'first', 'come', 'first', 'served', '||comma||', 'it', 'should', 'be', 'based', 'on', "who's", 'hungriest', '||period||', 'i', 'feel', 'like', 'just', 'going', 'over', 'there', 'and', 'taking', 'some', 'food', 'off', "somebody's", 'plate', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'what', '||comma||', "there's", '50', 'bucks', 'in', 'it', 'for', 'you', 'if', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'walk', 'over', 'that', 'table', '||comma||', 'you', 'pick', 'up', 'an', 'eggroll', '||comma||', 'you', "don't", 'say', 'anything', '||comma||', 'you', 'eat', 'it', '||comma||', 'say', "'thank", 'you', 'very', "much'", '||comma||', 'wipe', 'your', 'mouth', '||comma||', 'walk', 'away', '||dash||', 'i', 'give', 'you', '50', 'bucks', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'they', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', "won't", 'do', 'anything', '||semicolon||', 'in', 'fact', '||comma||', "you'll", 'be', 'giving', 'them', 'a', 'story', 'to', 'tell', 'for', 'the', 'rest', 'of', 'their', 'lives', '||period||', '||return||', '||return||', 'elaine:', '50', 'bucks', '||comma||', "you'll", 'give', 'me', '50', 'bucks', '||questionmark||', '||return||', '||return||', 'jerry:', '50', 'bucks', '||period||', 'that', 'table', 'over', 'there', '||comma||', 'the', 'three', 'couples', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'i', "don't", 'wanna', 'go', 'over', 'there', 'and', 'do', 'it', '||comma||', 'and', 'then', 'come', 'back', 'here', 'and', 'find', 'out', 'there', 'was', 'some', 'little', 'loophole', '||comma||', 'like', 'i', "didn't", 'put', 'mustard', 'on', 'it', 'or', 'something', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'tricks', '||period||', '||return||', '||return||', 'elaine:', 'should', 'i', 'do', 'it', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'for', '50', 'bucks', '||questionmark||', "i'd", 'put', 'my', 'face', 'in', 'the', 'soup', 'and', 'blow', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'alright', '||period||', 'here', '||comma||', 'hold', 'this', '||period||', "i'm", "doin'", 'it', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'through', 'her', 'teeth', '||rightparen||', ':', 'i', 'know', 'this', 'sounds', 'crazy', '||comma||', 'but', 'the', 'two', 'men', 'who', 'are', 'standing', 'behind', 'me', 'are', 'going', 'to', 'give', 'me', '50', 'bucks', 'if', 'i', 'stand', 'here', 'and', 'eat', 'one', 'of', 'your', 'eggrolls', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'through', 'teeth', '||rightparen||', ':', "i'll", 'give', 'you', '25', 'if', 'you', 'let', 'me', 'do', 'it', '||period||', '||return||', '||return||', 'people', 'at', 'table:', 'what', '||questionmark||', 'what', 'is', 'she', 'talking', 'about', '||questionmark||', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'see', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'were', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'laughing', '||rightparen||', ':', 'i', 'offered', 'them', '25', '||comma||', 'they', 'had', 'no', 'idea', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'the', "phone's", 'free', '||period||', '||return||', '||return||', 'george:', 'alleluia', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'i', 'was', 'waiting', 'here', '||period||', '||return||', '||return||', 'woman', 'at', 'phone:', 'where', '||questionmark||', 'i', "didn't", 'see', 'you', '||period||', '||return||', '||return||', 'george:', "i've", 'been', 'standing', 'here', 'for', 'the', 'last', 'ten', 'minutes', '||exclammark||', '||return||', '||return||', 'woman:', 'well', 'i', "won't", 'be', 'long', '||period||', '||return||', '||return||', 'george:', "that's", 'not', 'the', 'point', '||period||', 'the', 'point', 'is', 'i', 'was', 'here', 'first', '||period||', '||return||', '||return||', 'woman:', 'well', 'if', 'you', 'were', 'here', 'first', '||comma||', "you'd", 'be', 'holding', 'the', 'phone', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'yelling', 'at', 'her', '||rightparen||', ':', 'you', 'know', '||comma||', "we're", 'living', 'in', 'a', 'society', '||exclammark||', "we're", 'supposed', 'to', 'act', 'in', 'a', 'civilized', 'way', '||period||', '||return||', '||return||', 'george:', 'does', 'she', 'care', '||questionmark||', 'no', '||period||', 'does', 'anyone', 'ever', 'display', 'the', 'slightest', 'sensitivity', 'over', 'the', 'problems', 'of', 'a', 'fellow', 'individual', '||questionmark||', 'no', '||period||', 'no', '||period||', 'a', 'resounding', 'no', '||exclammark||', '||return||', '||return||', 'guy:', 'hey', '||comma||', 'sorry', 'i', 'took', 'so', 'long', '||period||', '||return||', '||return||', 'george:', 'oh', "that's", 'ok', '||comma||', 'really', '||comma||', "don't", 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'people', 'fast', '||questionmark||', 'did', 'ghandi', 'get', 'this', 'crazy', '||questionmark||', "i'm", 'gonna', 'walk', 'around', '||comma||', 'see', 'what', 'dishes', 'look', 'good', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'my', 'uncle', 'i', 'had', 'a', 'stomach', 'ache', 'tonight', '||period||', 'you', 'think', 'he', 'bought', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', '||comma||', 'he', 'probably', 'bought', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'happened', 'with', 'tatiana', '||questionmark||', '||return||', '||return||', 'george:', 'i', "shouldn't", 'even', 'tell', 'you', 'this', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'after', 'dinner', 'last', 'week', '||comma||', 'she', 'invites', 'me', 'back', 'to', 'her', 'apartment', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'this', 'little', 'place', 'with', 'this', 'little', 'bathroom', '||period||', "it's", 'like', 'right', 'there', '||comma||', 'you', 'know', '||comma||', "it's", 'not', 'even', 'down', 'a', 'little', 'hall', 'or', 'off', 'in', 'an', 'alcove', '||period||', 'you', 'understand', '||questionmark||', "there's", 'no', '||period||', '||period||', '||period||', 'buffer', 'zone', '||period||', 'so', '||comma||', 'we', 'start', 'to', 'fool', 'around', '||comma||', 'and', "it's", 'the', 'first', 'time', '||comma||', 'and', "it's", 'early', 'in', 'the', 'going', '||period||', 'and', 'i', 'begin', 'to', 'perceive', 'this', 'impending', '||period||', '||period||', '||period||', 'intestinal', 'requirement', '||comma||', 'whose', 'needs', 'are', 'going', 'to', 'surpass', 'by', 'great', 'lengths', 'anything', 'in', 'the', 'sexual', 'realm', '||period||', 'so', 'i', 'know', "i'm", 'gonna', 'have', 'to', 'stop', '||period||', 'and', 'as', 'this', 'is', 'happening', "i'm", 'thinking', '||comma||', 'even', 'if', 'i', 'can', 'somehow', 'manage', 'to', 'momentarily', '||period||', '||period||', '||period||', 'extricate', 'myself', 'from', 'the', 'proceedings', 'and', 'relieve', 'this', 'unstoppable', 'force', '||comma||', 'i', 'know', 'that', 'that', 'bathroom', 'is', 'not', 'gonna', 'provide', 'me', 'with', 'the', 'privacy', 'that', 'i', 'know', "i'm", 'going', 'to', 'need', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'this', 'could', 'only', 'happen', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'finally', 'stop', 'and', 'say', '||comma||', '||quotemark||', 'tatiana', '||comma||', 'i', 'hope', 'you', "don't", 'take', 'this', 'the', 'wrong', 'way', '||comma||', 'but', 'i', 'think', 'it', 'would', 'be', 'best', 'if', 'i', 'left', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'said', 'this', 'to', 'her', 'after', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'during', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'boy', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', 'so', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'so', "i'm", 'dressing', 'and', "she's", 'staring', 'up', 'at', 'me', '||comma||', 'struggling', 'to', 'compute', 'this', 'unprecedented', 'turn', 'of', 'events', '||period||', 'i', "don't", 'know', 'what', 'to', 'say', 'to', 'reassure', 'this', 'woman', '||comma||', 'and', 'worst', 'of', 'all', '||comma||', 'i', "don't", 'have', 'the', 'time', 'to', 'say', 'it', '||period||', 'the', 'only', 'excuse', 'she', 'might', 'possibly', 'have', 'accepted', 'is', 'if', 'i', 'told', 'her', 'i', 'am', 'in', 'reality', 'batman', '||comma||', 'and', "i'm", 'very', 'sorry', '||comma||', 'i', 'just', 'saw', 'the', 'bat', '||dash||', 'signal', '||period||', 'it', 'took', 'me', '3', 'days', 'of', 'phone', 'calls', 'to', 'get', 'her', 'to', 'agree', 'to', 'see', 'me', 'again', '||period||', 'now', "she's", 'waiting', 'for', 'me', 'to', 'call', 'her', '||comma||', 'and', "she's", '||return||', '||return||', 'elaine:', 'i', 'hate', 'this', 'place', '||period||', 'i', "don't", 'know', 'why', 'we', 'came', 'here', '||comma||', "i'm", 'never', 'coming', 'back', 'here', 'again', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'still', 'trying', 'to', 'remember', '||rightparen||', ':', 'who', 'is', 'that', 'woman', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'remember', 'when', 'you', 'first', 'went', 'out', 'to', 'eat', 'with', 'your', 'parents', '||questionmark||', 'remember', '||comma||', 'it', 'was', 'such', 'a', 'treat', 'to', 'go', 'and', 'they', 'serve', 'you', 'this', 'different', 'food', 'that', 'you', 'never', 'saw', 'before', '||comma||', 'and', 'they', 'put', 'it', 'in', 'front', 'of', 'you', '||comma||', 'and', 'it', 'is', 'such', 'a', 'delicious', 'and', 'exciting', 'adventure', '||questionmark||', 'and', 'now', 'i', 'just', 'feel', 'like', 'a', 'big', 'sweaty', 'hog', 'waiting', 'for', 'them', 'to', 'fill', 'up', 'the', 'trough', '||period||', '||return||', '||return||', 'george:', "she's", 'off', '||period||', '||leftparen||', 'goes', 'over', 'to', 'the', 'now', 'available', 'public', 'phone', '||rightparen||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'talk', 'to', 'that', 'guy', 'again', '||period||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'gonna', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'tell', 'him', 'we', 'wanna', 'catch', 'a', 'movie', 'and', 'that', "we're", 'late', '||period||', '||return||', '||return||', 'mr', '||period||', 'cohen:', 'hey', '||comma||', 'what', 'stinks', 'in', 'here', '||questionmark||', '||return||', '||return||', 'bruce', '||leftparen||', 'laughing', '||rightparen||', ':', 'mr', '||period||', 'cohen', '||exclammark||', "haven't", 'seen', 'you', 'for', 'a', 'couple', 'of', 'weeks', '||period||', '||return||', '||return||', 'mr', '||period||', 'cohen:', 'well', '||comma||', "i've", 'been', 'looking', 'for', 'a', 'better', 'place', '||period||', '||return||', '||return||', 'bruce:', 'better', 'place', '||period||', '||period||', '||period||', 'want', 'a', 'table', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'cohen:', 'no', '||comma||', 'just', 'bring', 'me', 'a', 'plate', 'and', "i'll", 'eat', 'here', '||period||', '||return||', '||return||', 'bruce', '||leftparen||', 'laughing', '||rightparen||', ':', 'give', 'him', 'a', 'plate', 'and', 'you', 'eat', 'here', '||period||', '||period||', '||period||', 'come', 'on', '||comma||', 'i', 'give', 'you', 'a', 'table', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||period||', '||period||', '||period||', "we've", 'been', 'waiting', 'here', '||period||', 'now', '||comma||', 'i', 'know', 'we', 'were', 'ahead', 'of', 'that', 'guy', '||comma||', 'he', 'just', 'came', 'in', '||period||', '||return||', '||return||', 'bruce:', 'oh', 'no', '||comma||', 'mr', '||period||', 'cohen', 'always', 'here', '||period||', '||return||', '||return||', 'elaine:', "he's", 'always', 'here', '||questionmark||', 'what', 'does', 'that', 'mean', '||questionmark||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'bruce:', 'oh', '||comma||', 'mr', '||period||', 'cohen', '||comma||', 'very', 'nice', 'man', '||period||', 'he', 'live', 'on', 'park', 'avenue', '||period||', '||return||', '||return||', 'elaine:', 'where', 'am', 'i', '||questionmark||', 'is', 'this', 'a', 'dream', '||questionmark||', 'what', 'in', "god's", 'name', 'is', 'going', 'on', 'here', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', "she's", 'not', 'there', '||period||', 'she', 'left', '||period||', 'she', "must've", 'waited', 'and', 'left', 'because', 'those', 'people', "wouldn't", 'get', 'off', 'the', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'didja', 'leave', 'a', 'message', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'told', 'her', 'to', 'call', 'me', 'here', 'and', 'to', 'tell', 'anyone', 'who', 'answers', 'the', 'phone', 'to', 'ask', 'for', 'a', 'balding', '||comma||', 'stocky', 'man', 'with', 'glasses', '||period||', 'i', 'better', 'tell', 'him', "i'm", 'expecting', 'a', 'call', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'jerry', '||comma||', 'here', 'comes', 'that', 'woman', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'where', 'do', 'i', 'know', 'her', '||questionmark||', '||return||', '||return||', 'lorraine:', 'hello', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'heeeeyyyy', '||period||', '||period||', '||period||', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'lorraine:', 'how', 'is', 'everything', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'good', '||comma||', 'good', '||period||', '||period||', '||period||', "what's", "goin'", 'on', '||questionmark||', '||return||', '||return||', 'lorraine:', 'oh', '||comma||', 'working', 'hard', '||period||', 'and', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'know', '||comma||', 'working', 'around', '||comma||', 'same', 'stuff', '||comma||', 'doing', '||period||', '||period||', '||period||', 'whatever', '||period||', '||return||', '||return||', 'lorraine:', 'you', "haven't", 'been', 'around', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||period||', '||period||', 'well', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'lorraine:', 'you', 'should', 'come', 'by', '||period||', '||return||', '||return||', 'jerry:', 'definitely', '||period||', 'i', 'plan', 'to', '||comma||', "i'm", 'not', 'just', 'saying', 'that', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', "i'm", 'elaine', '||period||', '||return||', '||return||', 'lorraine', '||leftparen||', 'shaking', 'her', 'hand', '||rightparen||', ':', 'lorraine', '||period||', 'catalano', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'lorraine', '||comma||', 'this', 'is', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'lorraine:', 'well', 'it', 'was', 'nice', 'seeing', 'you', '||comma||', 'jerry', '||period||', 'and', 'nice', 'meeting', 'you', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'smug', '||rightparen||', ':', 'oh', '||comma||', 'nice', 'to', 'meet', 'you', 'too', '||comma||', 'lorraine', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'lorraine', '||period||', '||period||', '||period||', "that's", 'lorraine', 'from', 'my', "uncle's", 'office', '||period||', "i'm", 'in', 'big', '||comma||', 'big', 'trouble', '||period||', '||return||', '||return||', 'elaine:', 'the', 'one', 'you', 'broke', 'the', 'plans', 'with', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'she', 'works', 'in', 'his', 'office', '||period||', 'now', "she's", 'gonna', 'see', 'him', 'tomorrow', 'and', 'tell', 'him', 'she', 'saw', 'me', 'here', 'tonight', '||period||', "he's", 'gonna', 'tell', 'his', 'wife', '||comma||', 'his', "wife's", 'gonna', 'call', 'my', 'mother', '||period||', 'oh', '||comma||', 'this', 'is', 'bad', '||comma||', 'you', "don't", 'know', '||comma||', 'the', 'chain', 'reaction', 'of', 'calls', 'this', 'is', 'gonna', 'set', 'off', '||period||', 'new', 'york', '||comma||', 'long', 'island', '||comma||', 'florida', '||comma||', "it's", 'like', 'the', 'bermuda', 'triangle', '||period||', 'unfortunately', '||comma||', 'nobody', 'ever', 'disappears', '||period||', 'my', 'uncle', 'to', 'my', 'aunt', '||comma||', 'my', 'aunt', 'to', 'my', 'mother', '||comma||', 'my', 'mother', 'to', 'my', 'uncle', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'my', 'uncle', 'to', 'my', 'cousin', '||comma||', 'my', 'cousin', 'to', 'my', 'sister', '||comma||', 'my', 'sister', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', 'you', "should've", 'just', 'had', 'dinner', 'with', 'your', 'uncle', 'tonight', 'and', 'gotten', 'in', 'over', 'with', '||period||', "it's", 'just', 'a', 'movie', '||period||', '||return||', '||return||', 'jerry:', 'just', 'a', 'movie', '||questionmark||', '||exclammark||', 'you', "don't", 'understand', '||period||', 'this', "isn't", "'plans", '1', 'through', '8', 'from', 'outer', "space'", '||comma||', 'this', 'is', "'plan", "9'", '||comma||', 'this', 'is', 'the', 'one', 'that', 'worked', '||period||', 'the', 'worst', 'movie', 'ever', 'made', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'got', 'news', 'for', 'you', '||comma||', 'if', "we're", 'making', 'this', 'movie', '||comma||', 'we', 'gotta', 'get', 'a', 'table', 'immediately', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'ok', '||period||', "let's", 'stop', 'fooling', 'around', '||period||', "let's", 'just', 'slip', 'him', 'some', 'money', '||period||', '||return||', '||return||', 'jerry:', 'in', 'a', 'chinese', 'restaurant', '||questionmark||', 'do', 'they', 'take', 'money', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'they', 'take', 'money', '||questionmark||', 'everyone', 'takes', 'money', '||period||', 'i', 'used', 'to', 'go', 'out', 'with', 'a', 'guy', 'who', 'did', 'it', 'all', 'the', 'time', '||comma||', 'you', 'just', 'slip', 'him', '20', 'bucks', '||period||', '||return||', '||return||', 'george:', '20', 'bucks', '||questionmark||', "isn't", 'that', 'excessive', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'what', 'do', 'you', 'want', 'to', 'give', 'him', '||comma||', 'change', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'more', 'than', 'the', 'meal', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||comma||', "we'll", 'divide', 'it', 'up', 'three', 'ways', '||period||', '||return||', '||return||', 'george:', 'alright', '||period||', '7', '||comma||', '7', '||comma||', '||leftparen||', 'points', 'at', 'himself', '||rightparen||', '6', '||period||', "i'm", 'not', 'gonna', 'eat', 'that', 'much', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'counting', 'your', 'shrimps', '||period||', 'ok', '||comma||', "who's", 'gonna', 'do', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', 'i', "can't", 'do', 'it', '||period||', 'i', '||dash||', "i'm", 'not', 'good', 'at', 'these', 'things', '||comma||', 'i', 'get', 'flustered', '||period||', 'once', 'i', 'tried', 'to', 'bribe', 'an', 'usher', 'at', 'the', 'roller', 'derby', '||comma||', 'i', 'almost', 'got', 'arrested', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', "it's", 'you', '||comma||', 'jer', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "can't", 'do', 'that', '||comma||', "it's", 'a', 'guy', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'the', "woman's", 'movement', 'just', "can't", 'seem', 'to', 'make', 'any', 'progress', 'in', 'the', 'world', 'of', 'bribery', '||comma||', 'can', 'they', '||questionmark||', '||return||', '||return||', 'elaine:', 'give', 'me', 'the', 'money', '||period||', '||return||', '||return||', 'elaine:', "how's", 'it', "going'", '||questionmark||', '||return||', '||return||', 'bruce:', 'very', 'busy', '||period||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', 'we', 'are', 'really', 'anxious', 'to', 'sit', 'down', '||period||', '||return||', '||return||', 'bruce:', 'very', 'good', 'specials', 'tonight', '||period||', '||return||', '||return||', 'elaine:', 'if', "there's", 'anything', 'you', 'can', 'do', 'to', 'get', 'us', 'a', 'table', "we'd", 'really', 'appreciate', 'it', '||period||', '||return||', '||return||', 'bruce:', 'what', 'is', 'your', 'name', '||questionmark||', '||leftparen||', 'he', 'turns', 'the', 'page', 'over', 'the', 'money', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'i', 'want', 'to', 'eat', 'now', '||exclammark||', '||leftparen||', 'she', 'gets', 'the', 'money', 'from', 'under', 'the', 'page', '||rightparen||', '||return||', '||return||', 'bruce:', 'yes', '||comma||', 'we', 'have', 'sea', '||dash||', 'bass', 'dinner', 'tonight', '||comma||', 'very', 'fresh', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'gives', 'him', 'the', 'money', '||rightparen||', ':', 'here', '||comma||', 'take', 'this', '||period||', "i'm", 'starving', '||period||', 'take', 'it', '||exclammark||', 'take', 'it', '||exclammark||', '||return||', '||return||', 'bruce:', 'dennison', '||comma||', '4', '||exclammark||', '||leftparen||', 'goes', 'over', 'to', '4', 'ladies', '||rightparen||', 'your', 'table', 'is', 'ready', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'no', '||comma||', 'i', 'want', 'that', 'table', '||period||', 'i', 'want', 'that', 'table', '||exclammark||', 'oh', '||comma||', 'come', 'on', '||comma||', 'did', 'you', 'see', 'that', '||questionmark||', 'what', 'was', 'that', '||questionmark||', 'he', 'took', 'the', 'money', '||comma||', 'he', "didn't", 'give', 'us', 'a', 'table', '||period||', '||return||', '||return||', 'jerry:', 'you', 'lost', 'the', '20', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'how', 'could', 'he', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'you', "didn't", 'make', 'it', 'clear', '||period||', '||return||', '||return||', 'elaine:', 'make', 'it', 'clear', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'a', 'sorry', 'exhibition', 'that', 'was', '||period||', 'alright', '||comma||', 'let', 'me', 'get', 'the', 'money', 'back', '||period||', '||return||', '||return||', 'bruce:', 'your', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'seinfeld', '||period||', '||return||', '||return||', 'bruce:', 'yeah', '||comma||', 'seinfeld', '4', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', 'no', 'no', '||comma||', 'you', 'see', 'the', 'girl', 'there', '||comma||', 'with', 'the', 'long', 'hair', '||questionmark||', '||return||', '||return||', 'bruce:', 'oh', 'yes', '||comma||', 'yes', '||period||', 'very', 'beautiful', 'girl', '||comma||', 'very', 'beautiful', '||period||', 'is', 'your', 'girlfriend', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'actually', '||comma||', 'we', 'did', 'date', 'for', 'a', 'while', '||comma||', 'but', '||period||', '||period||', '||period||', "it's", 'really', 'not', 'relevant', 'here', '||period||', '||return||', '||return||', 'bruce:', 'relationships', 'are', 'difficult', '||period||', "it's", 'very', 'hard', 'to', 'stay', 'together', '||dash||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'listen', '||comma||', 'alright', '||period||', 'how', 'much', 'longer', 'is', 'it', 'gonna', 'be', '||questionmark||', '||return||', '||return||', 'bruce:', 'oh', '||period||', 'in', 'about', 'five', '||comma||', 'ten', 'minutes', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'seems', 'to', 'be', 'a', 'bit', 'of', 'a', 'discrepancy', '||period||', '||return||', '||return||', 'elaine:', 'so', 'when', 'are', 'we', 'gonna', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', 'five', '||comma||', 'ten', 'minutes', '||period||', '||return||', '||return||', 'george:', 'we', 'should', 'have', 'left', 'earlier', '||period||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'see', 'any', 'way', 'we', 'can', 'eat', 'and', 'make', 'this', 'movie', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', 'i', 'have', 'to', 'eat', '||period||', '||return||', '||return||', 'jerry:', 'well', "let's", 'just', 'order', 'to', 'go', '||comma||', "we'll", 'eat', 'it', 'in', 'the', 'cab', '||period||', '||return||', '||return||', 'elaine:', 'eat', 'it', 'in', 'the', 'cab', '||questionmark||', 'chinese', 'food', 'in', 'a', 'cab', '||questionmark||', '||return||', '||return||', 'jerry:', "we'll", 'eat', 'it', 'in', 'the', 'movie', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'who', 'do', 'you', 'think', "you're", 'going', '||questionmark||', 'do', 'you', 'think', 'that', 'they', 'have', 'big', 'picnic', 'tables', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'what', 'do', 'you', 'suggest', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'say', 'we', 'leave', 'now', '||comma||', 'we', 'go', 'to', "'skyburger'", 'and', 'we', 'scarf', "'em", 'down', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'going', 'to', "'skyburger'", '||period||', 'besides', '||comma||', "it's", 'in', 'the', 'opposite', 'direction', '||comma||', "let's", 'just', 'eat', 'popcorn', 'or', 'something', '||period||', '||return||', '||return||', 'bruce', '||leftparen||', 'holding', 'a', 'phone', '||rightparen||', ':', 'cartwright', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'have', 'popcorn', 'for', 'dinner', '||exclammark||', '||return||', '||return||', 'bruce:', 'cartwright', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'tries', 'to', 'snatch', 'food', 'off', 'a', "waiter's", 'tray', '||rightparen||', ':', 'i', 'have', 'to', 'eat', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'they', 'have', 'hotdogs', 'there', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'movie', 'hotdogs', '||exclammark||', 'i', 'rather', 'lick', 'the', 'food', 'off', 'the', 'floor', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'go', 'anywhere', '||comma||', 'i', 'have', 'to', 'wait', 'here', 'for', "tatiana's", 'call', '||period||', 'let', 'me', 'just', 'check', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', "i'm", 'expecting', 'a', 'call', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'bruce:', 'yeah', '||comma||', 'i', 'just', 'got', 'a', 'call', '||period||', 'i', 'yell', "'cartwright", '||exclammark||', 'cartwright', '||exclammark||', "'", '||comma||', 'just', 'like', 'that', '||period||', 'nobody', 'came', 'up', '||comma||', 'i', 'hang', 'up', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'was', 'it', 'for', 'costanza', 'or', '||period||', '||period||', '||period||', '||return||', '||return||', 'bruce:', 'yes', '||comma||', 'yes', '||comma||', "that's", 'it', '||period||', 'nobody', 'answered', '||period||', '||return||', '||return||', 'george:', 'well', 'was', 'it', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'bruce:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'tell', 'her', 'you', 'not', 'here', '||comma||', 'she', 'said', 'curse', 'word', '||comma||', 'i', 'hang', 'up', '||period||', '||return||', '||return||', 'george:', 'she', 'called', '||period||', 'he', 'yelled', 'cartwright', '||period||', 'i', 'missed', 'her', '||period||', '||return||', '||return||', 'jerry:', "who's", 'cartwright', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'cartwright', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'not', 'cartwri', '||dash||', '||return||', '||return||', 'george:', 'of', 'course', "i'm", 'not', 'cartwright', '||exclammark||', 'look', '||comma||', 'why', "don't", 'you', 'two', 'just', 'go', 'to', 'the', 'movies', 'all', 'by', 'yourselves', '||comma||', "i'm", 'not', 'in', 'the', 'mood', '||period||', '||return||', '||return||', 'elaine:', 'well', 'me', 'neither', '||comma||', "i'm", "goin'", 'to', "'skyburger'", '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'not', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "don't", 'need', 'us', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', "can't", 'go', 'to', 'a', 'bad', 'movie', 'by', 'myself', '||period||', 'who', 'am', 'i', 'gonna', 'make', 'sarcastic', 'remarks', 'to', '||comma||', 'strangers', '||questionmark||', 'eh', '||comma||', 'i', 'guess', "i'll", 'just', 'go', 'to', 'my', "uncle's", '||period||', '||return||', '||return||', 'george:', 'should', 'we', 'tell', 'him', "we're", 'leaving', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'for', '||questionmark||', "let's", 'just', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'bruce:', 'seinfeld', '||comma||', '4', '||questionmark||', '||return||', '||return||', 'jerry:', 'hunger', 'will', 'make', 'people', 'do', 'amazing', 'things', '||period||', 'i', 'mean', '||comma||', 'the', 'proof', 'of', 'that', 'is', 'cannibalism', '||period||', 'cannibalism', '||comma||', 'what', 'do', 'they', 'say', '||comma||', 'i', 'mean', '||comma||', "they're", 'eating', 'and', '||comma||', 'you', 'know', '||comma||', '||quotemark||', 'this', 'is', 'good', '||comma||', 'who', 'is', 'this', '||questionmark||', 'i', 'like', 'this', 'person', '||quotemark||', '||period||', 'you', 'know', '||comma||', 'i', 'mean', '||comma||', 'i', 'would', 'think', 'the', 'hardest', 'thing', 'about', 'being', 'a', 'cannibal', 'is', 'trying', 'to', 'get', 'some', 'very', 'deep', 'sleep', '||comma||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'i', 'would', 'think', '||comma||', "you'd", 'be', 'like', '||comma||', '||leftparen||', 'pretending', 'to', 'wake', 'up', '||rightparen||', '||quotemark||', 'who', 'is', 'that', '||questionmark||', "who's", 'there', '||questionmark||', "who's", 'there', '||questionmark||', 'is', 'somebody', 'there', '||questionmark||', 'what', 'do', 'you', 'want', '||questionmark||', 'what', 'do', 'you', 'want', '||questionmark||', 'you', 'look', 'hungry', '||comma||', 'are', 'you', 'hungry', '||questionmark||', 'get', 'out', 'of', 'here', '||exclammark||', '||quotemark||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', "i'm", 'not', 'a', 'foodie', '||period||', 'i', "don't", '||comma||', '||quotemark||', 'oh', '||comma||', 'this', 'is', 'too', 'rare', '||period||', 'oh', '||comma||', "it's", 'too', 'salty', '||period||', '||quotemark||', 'just', 'eat', 'it', 'and', 'shut', 'up', '||period||', "i'll", 'eat', 'anywhere', '||comma||', 'whatever', "they're", 'having', '||period||', 'i', 'have', 'eaten', 'rotten', 'rolls', 'off', 'of', 'room', 'service', 'trays', 'in', 'hotel', 'hallways', '||period||', 'i', 'have', '||period||', "it's", 'not', 'a', 'joke', '||period||', 'this', 'is', 'my', 'life', '||period||', 'i', "don't", 'know', '||comma||', 'somebody', 'left', 'it', '||period||', 'why', 'would', 'someone', 'poison', 'a', 'roll', '||comma||', 'and', 'leave', 'it', 'in', 'a', 'hallway', 'for', 'some', 'comic', 'coming', 'down', 'at', 'two', "o'", 'clock', 'in', 'the', 'morning', '||questionmark||', 'why', 'would', 'they', 'do', 'that', '||questionmark||', 'sometimes', 'you', 'go', 'to', 'a', 'nice', 'restaurant', '||comma||', 'they', 'put', 'the', 'check', 'in', 'a', 'little', 'book', '||period||', 'what', 'is', 'this', '||questionmark||', 'the', 'story', 'of', 'the', 'bill', '||questionmark||', '||quotemark||', 'once', 'upon', 'a', 'time', '||comma||', 'there', 'were', 'some', 'very', 'hungry', 'people', '||period||', '||period||', '||quotemark||', 'what', 'is', 'this', '||questionmark||', 'a', 'little', 'gold', 'tassle', 'hanging', 'down', '||questionmark||', 'am', 'i', 'graduating', 'from', 'the', 'restaurant', '||questionmark||', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', '[setting:', 'a', 'restaurant]', '||return||', '||return||', 'elaine:', 'do', 'you', 'want', 'some', 'of', 'mine', '||questionmark||', '||return||', '||return||', 'jerry:', 'take', 'some', 'of', 'mine', '||period||', '||return||', '||return||', 'george:', 'why', 'do', 'i', 'get', 'pesto', '||questionmark||', 'why', 'do', 'i', 'think', "i'll", 'like', 'it', '||questionmark||', 'i', 'keep', 'trying', 'to', 'like', 'it', '||comma||', 'like', 'i', 'have', 'to', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'who', 'said', 'you', 'have', 'to', 'like', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'everybody', 'likes', 'pesto', '||period||', 'you', 'walk', 'into', 'a', 'restaurant', '||comma||', "that's", 'all', 'you', 'hear', '||dash||', 'pesto', '||comma||', 'pesto', '||comma||', 'pesto', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'like', 'pesto', '||period||', '||return||', '||return||', 'george:', 'where', 'was', 'pesto', '10', 'years', 'ago', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gesturing', 'to', 'a', 'man', '||rightparen||', 'look', 'at', 'that', 'guy', '||period||', '||leftparen||', 'elaine', 'starts', 'to', 'look', '||comma||', 'but', 'jerry', 'stops', 'her', '||rightparen||', "i'll", 'bet', 'you', "he's", "gettin'", 'hair', 'transplants', '||period||', 'any', 'time', 'you', 'see', 'a', 'guy', 'that', 'age', 'wearing', 'a', 'baseball', 'cap', '||comma||', 'ten', 'to', 'one', '||dash||', 'plugs', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'elaine', 'turns', 'to', 'look', 'at', 'the', 'man', '||comma||', 'trying', 'to', 'make', 'it', 'sound', 'like', 'they', "aren't", 'talking', 'about', 'him', '||rightparen||', 'the', 'thing', 'about', 'that', 'painting', '||period||', '||period||', 'is', 'with', 'the', 'colors', 'and', 'um', '||period||', '||period||', '||leftparen||', 'turns', 'back', 'to', 'jerry', '||rightparen||', 'oh', 'yeah', '||comma||', 'plugola', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'oh', '||comma||', 'one', 'more', 'thing', 'about', 'the', 'car', '||period||', 'let', 'it', 'warm', 'up', 'for', 'a', 'minute', '||period||', '||return||', '||return||', 'george:', "that's", 'a', 'tough', 'minute', '||period||', "it's", 'like', 'waiting', 'in', 'the', 'shower', 'for', 'the', 'conditioner', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', 'why', 'he', "couldn't", 'take', 'a', 'cab', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', 'is', 'having', 'a', '||quotemark||', 'houseguest', '||period||', '||quotemark||', "she's", 'picking', 'him', 'up', 'at', 'the', 'airport', 'tonight', '||period||', '||return||', '||return||', 'george:', 'a', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'slightly', 'embarrassed', '||rightparen||', 'yes', '||comma||', 'a', 'guy', '||period||', '||return||', '||return||', 'jerry:', "he's", 'from', 'a', '||period||', '||period||', 'yakima', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'seattle', '||period||', '||return||', '||return||', 'jerry:', "everybody's", 'moving', 'to', 'seattle', '||period||', '||return||', '||return||', 'george:', "it's", 'the', 'pesto', 'of', 'cities', '||period||', 'so', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'tell', 'him', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'from', 'what', 'i', 'can', 'piece', 'together', '||comma||', 'our', 'friend', 'here', 'met', 'a', 'gentleman', '||period||', '||return||', '||return||', 'elaine:', 'ed', '||period||', '||return||', '||return||', 'jerry:', 'who', 'was', 'in', 'town', 'on', 'a', 'business', 'venture', '||comma||', 'and', 'um', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', 'we', 'shared', 'an', 'interpersonal', 'experience', '||period||', '||leftparen||', 'george', 'hits', 'his', 'glass', 'with', 'his', 'fork', '||period||', 'to', 'jerry', '||rightparen||', 'go', 'on', '||period||', '||return||', '||return||', 'jerry:', 'so', 'they', 'went', 'out', 'a', 'few', 'times', '||comma||', 'but', 'apparently', '||comma||', 'when', 'the', 'fellow', 'returned', 'home', '||comma||', 'he', 'discovered', 'that', 'the', 'benes', 'tattoo', 'does', 'not', 'wash', 'off', 'so', 'easily', '||period||', '||return||', '||return||', 'elaine:', 'on', 'some', 'people', '||period||', '||return||', '||return||', 'george:', 'oooh', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "he's", 'coming', 'in', 'to', 'stay', 'with', 'her', 'for', 'a', 'week', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'just', 'gonna', 'be', 'a', 'weekend', '||comma||', 'but', 'then', 'somehow', 'it', 'became', 'a', 'week', '||period||', '||return||', '||return||', 'manager:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'busboy', 'left', 'the', 'menu', 'a', 'little', 'close', 'to', 'the', 'candle', '||period||', '||return||', '||return||', 'manager:', 'sorry', 'to', 'the', 'disturbance', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'joking', '||comma||', 'she', 'snobbishly', 'says', '||rightparen||', "i'm", 'never', 'eating', 'here', 'again', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pats', 'george', 'on', 'the', 'back', '||rightparen||', 'nice', 'going', '||period||', 'thank', 'you', '||comma||', 'that', 'ought', 'to', 'get', 'us', 'a', 'free', 'dessert', '||period||', '||period||', '||leftparen||', 'they', 'can', 'see', 'the', 'manager', 'chewing', 'the', 'busboy', 'out', 'from', 'the', 'dining', 'room', 'doorway', '||rightparen||', 'i', 'think', 'the', "busboy's", 'in', 'trouble', '||period||', '||return||', '||return||', 'george:', 'did', 'i', 'get', 'him', 'in', 'trouble', '||questionmark||', 'because', 'of', 'what', 'i', 'said', '||questionmark||', '||exclammark||', 'i', 'just', 'told', 'him', 'what', 'happened', '||period||', '||period||', 'he', "didn't", 'do', 'it', 'on', 'purpose', '||period||', '||period||', '||leftparen||', 'mangager', 'and', 'busboy', 'are', 'arguing', '||period||', 'the', 'busboy', 'points', 'in', 'the', 'direction', 'of', 'george', '||rightparen||', 'he', 'pointed', 'at', 'me', '||period||', 'why', 'did', 'he', 'point', 'at', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'said', 'i', 'would', 'never', 'eat', 'here', 'again', '||period||', '||period||', 'but', '||comma||', 'i', '||comma||', 'i', '||period||', '||period||', 'he', 'had', 'to', 'know', 'i', 'was', 'kidding', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'casually', 'buttering', 'a', 'roll', '||comma||', 'like', "he's", 'the', 'innocent', 'one', '||rightparen||', 'i', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'it', '||period||', "he's", 'going', '||exclammark||', "he's", 'fired', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'said', 'it', 'in', 'a', 'kidding', 'way', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'know', "he'd", 'get', 'fired', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jokingly', 'trying', 'to', 'put', 'more', 'pressure', 'on', 'elaine', 'and', 'george', '||rightparen||', "he'll", 'probably', 'kill', 'his', 'family', 'over', 'this', '||period||', '||return||', '||return||', 'george:', 'what', 'if', "he's", 'waiting', 'for', 'me', 'outside', '||questionmark||', 'he', 'pointed', 'at', 'me', '||exclammark||', 'did', 'you', 'see', 'him', 'point', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'again', '||comma||', 'joking', '||rightparen||', 'a', 'lot', 'of', 'ex', '||dash||', 'cons', 'become', 'busboys', '||period||', 'they', 'seem', 'to', 'gravitate', 'twards', "'em", '||period||', '||return||', '||return||', 'george:', 'was', 'it', 'my', 'fault', '||questionmark||', '||return||', '||return||', 'elaine:', 'was', 'it', 'my', 'fault', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', "doesn't", 'have', 'a', 'care', 'in', 'the', 'world', '||rightparen||', '||period||', '||period||', 'maybe', "i'll", 'try', 'that', 'pesto', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'i', 'feel', 'bad', 'for', 'him', 'too', '||comma||', 'but', "he'll", 'get', 'another', 'job', '||period||', 'i', 'mean', '||comma||', "let's", 'face', 'it', '||comma||', "it's", 'not', 'a', 'profession', 'where', 'you', 'embellish', 'your', 'resume', 'and', 'undergo', 'a', 'series', 'of', 'grueling', 'interviews', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'eating', 'a', 'sandwich', '||rightparen||', 'oh', '||comma||', 'like', 'you', 'really', 'know', 'busboys', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'like', 'you', 'do', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'at', 'least', 'i', 'was', 'a', 'camp', 'waiter', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'scoffing', '||rightparen||', 'camp', '||period||', '||return||', '||return||', 'george:', 'it', 'was', 'a', 'fat', 'camp', '||period||', 'those', 'kids', 'depended', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'through', 'intercom', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'busboys', 'are', 'always', 'changing', 'jobs', '||period||', "that's", 'the', 'business', '||period||', 'i', 'know', '||period||', 'i', 'work', 'with', 'these', 'guys', '||period||', 'i', 'tallk', 'to', 'them', 'in', 'the', 'kitchen', 'at', 'the', 'comedy', 'clubs', '||period||', '||return||', '||return||', 'george:', 'then', 'why', "don't", 'you', 'try', 'and', 'get', 'him', 'another', 'job', '||questionmark||', '||return||', '||return||', 'jerry:', "i'd", 'love', 'to', '||comma||', 'but', 'i', "don't", 'know', 'anything', 'about', 'him', '||period||', 'he', 'could', 'be', 'one', 'of', 'those', 'people', 'that', 'walks', 'around', 'the', 'street', 'pricking', 'people', 'with', 'pins', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'if', 'you', 'people', 'are', 'aware', 'of', 'this', '||comma||', 'but', 'i', 'am', 'one', 'clever', 'chickadee', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'did', 'you', 'get', 'the', "busboy's", 'number', '||questionmark||', '||return||', '||return||', 'elaine:', 'his', "phone's", 'been', 'disconnected', '||comma||', 'but', 'i', 'was', 'able', 'to', 'obtain', 'an', 'address', '||dash||', '1324', 'amsterdam', 'avenue', '||comma||', 'apartment', '4d', '||period||', '||leftparen||', 'hands', 'george', 'a', 'card', '||rightparen||', 'now', '||comma||', 'i', 'did', 'my', 'job', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'may', 'i', 'have', 'the', 'car', 'keys', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'did', 'you', 'get', 'all', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'does', 'the', 'word', '||quotemark||', 'charm', '||quotemark||', 'mean', 'anything', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||leftparen||', 'george', 'grabs', 'his', 'jacket', '||rightparen||', 'so', 'now', "you're", 'going', 'to', 'his', 'apartment', '||questionmark||', 'i', 'really', 'think', 'this', 'is', 'nuts', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'putting', 'his', 'jacket', 'on', '||rightparen||', "i'd", 'like', 'to', 'apologize', '||period||', 'i', 'want', 'to', 'tell', 'him', 'i', '||period||', '||period||', 'i', '||period||', '||period||', "didn't", 'mean', 'to', 'get', 'him', 'in', 'trouble', '||period||', '||return||', '||return||', 'jerry:', 'you', '||comma||', "you're", 'going', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'want', 'to', 'see', 'if', "there's", 'anything', 'i', 'can', 'do', '||period||', '||period||', 'maybe', 'get', 'him', 'another', 'job', '||period||', '||period||', 'maybe', "i'll", 'hear', 'of', 'something', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'the', 'fat', 'camp', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', "you're", 'not', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'would', '||comma||', 'but', 'i', 'have', 'to', 'pick', 'up', 'ed', 'at', 'the', 'airport', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', "don't", 'think', 'you', 'should', 'go', 'alone', '||period||', "can't", 'you', 'wait', 'till', 'after', 'my', 'set', '||questionmark||', '||return||', '||return||', 'george:', "it'll", 'take', 'to', 'long', '||period||', '||return||', '||return||', 'jerry:', 'take', 'the', 'k', '||dash||', 'man', '||period||', 'a', 'little', 'support', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'unsure', '||rightparen||', 'i', "don't", 'a', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'take', 'me', 'where', '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', '[setting:', 'an', 'apartment', 'building', 'hallway]', '||return||', '||return||', 'george:', 'look', '||comma||', 'i', 'really', 'appreciate', 'your', 'coming', '||comma||', 'but', 'if', 'you', "wouldn't", 'mind', '||dash||', 'try', 'not', 'to', 'say', 'too', 'much', '||period||', '||return||', '||return||', 'kramer:', 'what', 'am', 'i', 'gonna', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'not', 'an', 'idiot', '||period||', '||return||', '||return||', 'george:', 'certainly', 'not', '||period||', '||return||', '||return||', 'kramer:', 'then', "we're", 'cool', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', 'yeah', '||comma||', "we're", '||dash||', "we're", 'cool', '||period||', '||leftparen||', 'knocks', 'lightly', '||period||', 'kramer', 'takes', 'charge', 'by', 'knocking', 'on', 'the', 'door', 'louder', '||period||', 'the', 'busboy', 'answers', '||rightparen||', 'uh', '||comma||', "i'm", 'sorry', 'to', 'bother', 'you', '||comma||', 'i', 'was', 'in', 'the', 'restaurant', 'earlier', 'and', 'i', 'was', 'wondering', 'if', 'i', 'could', 'talk', 'to', 'you', 'for', 'a', 'few', 'minutes', 'about', 'what', 'happened', '||period||', '||leftparen||', 'he', 'gestures', 'for', 'them', 'to', 'come', 'in', '||period||', 'they', 'obey', '||rightparen||', 'i', 'hope', "i'm", 'not', 'interrupting', 'anything', '||period||', "it's", 'just', 'that', 'i', 'think', 'i', 'may', 'have', '||dash||', 'without', 'realizing', 'it', '||dash||', 'been', 'responsible', 'for', 'getting', 'you', 'fired', '||period||', '||leftparen||', 'nervously', 'laughs', '||rightparen||', 'and', '||period||', '||period||', 'and', '||period||', '||period||', 'and', 'i', 'just', 'want', 'you', 'to', 'know', 'that', 'i', "didn't", 'intend', 'for', 'that', 'to', 'happen', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'patting', 'george', 'on', 'the', 'shoulder', '||rightparen||', "he's", 'a', 'hell', 'of', 'a', 'guy', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'guy', 'i', 'know', '||period||', '||period||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'habla', 'espanol', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'antonio:', 'si', '||period||', '||return||', '||return||', 'kramer:', 'como', 'se', 'dice', '||period||', '||period||', 'waterbed', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupting', '||rightparen||', 'anyway', '||comma||', 'i', 'just', 'wanted', 'to', 'let', 'you', 'know', "i'm", 'really', 'sorry', 'that', 'happened', '||comma||', 'and', 'if', 'i', 'can', 'help', 'out', 'in', 'any', 'way', '||comma||', "i'll", 'certainly', 'be', 'glad', 'to', 'do', 'that', '||period||', '||leftparen||', 'pause', '||rightparen||', 'well', '||comma||', 'i', 'guess', "that's", 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'anything', 'to', 'drink', '||questionmark||', 'agua', '||questionmark||', '||return||', '||return||', 'george:', 'oy', 'uy', 'uy', '||period||', '||period||', '||leftparen||', 'antonio', 'points', 'to', 'the', 'sink', '||rightparen||', 'we', 'really', 'should', 'get', 'going', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'get', 'a', 'glass', 'of', 'water', '||period||', '||leftparen||', 'heads', 'tward', 'the', 'sink', '||rightparen||', '||return||', '||return||', 'george:', 'hurry', 'up', '||period||', '||return||', '||return||', 'antonio:', '||leftparen||', 'notices', 'that', 'his', 'cat', 'is', 'missing', '||rightparen||', 'pequita', '||questionmark||', 'pequita', '||questionmark||', '||leftparen||', 'starts', 'to', 'panic', '||rightparen||', '||return||', '||return||', 'kramer:', 'his', "cat's", 'gone', '||period||', '||return||', '||return||', 'antonio:', '||leftparen||', 'notes', 'the', 'door', 'was', 'left', 'wide', 'open', '||rightparen||', 'la', 'puerta', 'esta', 'abierta', '||period||', '||leftparen||', 'starts', 'screaming', '||rightparen||', 'la', 'puerta', 'esta', 'abierta', '||exclammark||', '||leftparen||', 'to', 'kramer', 'and', 'george', '||rightparen||', 'who', 'left', 'the', 'door', 'open', '||questionmark||', '||leftparen||', 'silence', '||rightparen||', 'who', 'left', 'the', 'door', 'open', '||questionmark||', '||exclammark||', '||leftparen||', 'kramer', 'and', 'george', 'look', 'at', 'eachother', '||rightparen||', 'come', 'on', '||comma||', 'come', 'on', '||exclammark||', 'help', 'me', 'look', '||exclammark||', '||leftparen||', 'all', 'three', 'head', 'out', 'the', 'door', 'to', 'look', '||rightparen||', '||return||', '||return||', '[setting:', "antonio's", 'apartment]', '||return||', '||return||', 'kramer:', '||period||', '||period||', 'you', 'know', '||comma||', 'cats', 'run', 'away', 'all', 'the', 'time', '||period||', 'you', 'know', '||comma||', 'my', 'aunt', '||comma||', 'she', 'had', 'a', 'cat', '||period||', 'ran', 'away', '||period||', 'showed', 'up', 'three', 'years', 'later', '||period||', '||period||', 'you', 'never', 'know', '||period||', 'they', 'got', 'things', 'in', '||return||', '||return||', 'george:', '||leftparen||', 'gestures', 'for', 'kramer', 'to', 'shut', 'up', '||rightparen||', 'once', 'again', '||comma||', 'antonio', '||comma||', 'i', "can't", 'even', 'begin', 'to', 'say', 'how', 'deeply', '||comma||', 'deeply', 'sorry', 'i', 'am', 'about', 'everything', '||period||', 'the', 'job', '||comma||', 'the', 'cat', '||period||', '||period||', '||leftparen||', 'a', 'lamp', 'breaks', '||rightparen||', 'the', 'lamp', '||period||', '||return||', '||return||', 'kramer:', 'the', 'wire', 'was', 'sticking', 'out', '||period||', '||period||', '||leftparen||', 'fits', 'the', 'two', 'broken', 'pieces', 'together', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hands', 'antonio', 'a', 'card', '||rightparen||', "here's", 'my', 'card', '||period||', "i'm", 'in', 'real', 'estate', '||comma||', 'so', '||comma||', 'if', "you're", 'ever', 'looking', 'for', 'something', 'bigger', '||comma||', 'something', 'nicer', '||period||', '||period||', '||leftparen||', 'antonio', 'is', 'staring', 'at', 'him', '||comma||', 'angered', '||rightparen||', '||period||', '||period||', 'maybe', 'not', 'right', 'now', '||period||', 'anyway', '||period||', '||period||', '||leftparen||', 'extends', 'his', 'hand', 'for', 'a', 'handshake', '||period||', 'antonio', "doesn't", 'move', '||rightparen||', '||return||', '||return||', 'kramer:', 'you', 'oughta', 'get', 'that', 'wire', 'fixed', '||period||', '||leftparen||', 'they', 'go', 'to', 'leave', '||rightparen||', 'i', 'got', 'the', 'door', '||period||', '||leftparen||', 'shuts', 'the', 'door', '||comma||', 'the', 'broken', 'lamp', 'falls', 'to', 'the', 'floor', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'george', '||comma||', 'stop', 'worrying', 'about', 'this', 'guy', '||period||', 'it', "wasn't", 'your', 'fault', '||period||', '||period||', 'come', 'on', '||comma||', "he's", 'not', 'stalking', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'he', "doesn't", 'even', 'know', 'where', 'you', 'live', '||period||', '||period||', 'who', 'told', 'you', 'to', 'give', 'him', 'your', 'business', 'card', '||questionmark||', '||period||', '||period||', '||leftparen||', 'intercom', 'buzzes', '||rightparen||', "that's", 'elaine', '||period||', '||leftparen||', 'kramer', 'buzzes', 'her', 'in', '||period||', 'jerry', 'talks', 'into', 'the', 'phone', '||rightparen||', 'kramer', '||period||', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'george', 'wants', 'to', 'know', 'when', 'you', 'want', 'to', 'look', 'for', 'the', 'cat', 'again', '||period||', '||return||', '||return||', 'kramer:', "it's", 'been', 'a', 'week', '||period||', "it's", 'up', 'to', 'the', 'cat', 'now', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'kramer', 'says', "it's", 'up', 'to', 'the', 'cat', 'now', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', "it'll", 'be', 'on', 'your', 'conscience', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||questionmark||', 'how', 'do', 'you', 'figure', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'how', 'do', 'you', 'figure', '||questionmark||', '||leftparen||', 'to', 'kramer', '||rightparen||', "'cause", "you're", 'the', 'one', 'who', 'left', 'the', 'door', 'open', '||period||', '||return||', '||return||', 'kramer:', 'why', 'was', 'i', 'in', 'charge', 'of', 'closing', 'the', 'door', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'why', 'was', 'he', 'in', 'charge', 'of', 'closing', 'the', 'door', '||questionmark||', '||leftparen||', 'irritated', 'at', 'the', 'phone', 'message', 'relay', '||comma||', 'to', 'kramer', '||rightparen||', "'cause", 'you', 'came', 'in', 'after', 'him', '||exclammark||', '||return||', '||return||', 'kramer:', 'so', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'so', '||exclammark||', '||leftparen||', 'to', 'kramer', '||dash||', 'getting', 'even', 'more', 'angry', '||rightparen||', 'so', '||comma||', 'the', 'last', 'person', 'in', 'should', 'close', 'the', 'door', '||exclammark||', '||return||', '||return||', 'kramer:', 'let', 'me', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'talk', '||dash||', 'call', 'him', 'from', 'your', 'house', '||period||', '||leftparen||', 'elaine', 'enters', '||period||', 'kramer', 'leaves', '||period||', 'to', 'phone', '||rightparen||', "he's", 'calling', 'you', 'now', '||period||', '||period||', 'okay', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', "ed's", 'downstairs', '||period||', 'can', 'i', 'have', 'the', 'car', 'keys', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'got', 'any', 'asprin', '||questionmark||', '||leftparen||', 'finds', 'some', '||rightparen||', 'hello', '||period||', 'now', '||comma||', 'lookit', '||comma||', 'you', 'guarantee', 'this', 'car', 'will', 'get', 'me', 'to', 'the', 'airport', 'tomarrow', '||questionmark||', 'no', 'problems', '||questionmark||', '||return||', '||return||', 'jerry:', 'guarantee', '||questionmark||', '||period||', '||period||', 'hey', '||comma||', "it's", 'a', 'car', '||period||', '||return||', '||return||', 'elaine:', 'because', 'if', "there's", 'even', 'the', 'slightest', 'chance', 'of', 'any', 'problem', 'at', 'all', '||comma||', 'i', "don't", 'want', 'to', 'take', 'it', '||dash||', 'because', 'if', 'i', "don't", 'get', 'this', 'guy', 'on', 'a', 'plane', 'to', 'seattle', 'and', 'out', 'of', 'my', 'life', '||comma||', "i'm", 'gonna', 'kill', 'him', '||comma||', 'and', 'everyone', 'who', 'tries', 'to', 'stop', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jokingly', 'asking', '||rightparen||', 'so', '||comma||', 'did', 'you', 'have', 'a', 'nice', 'week', 'together', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'heard', 'a', 'little', 'ping', 'in', 'the', 'car', 'last', 'time', '||period||', 'what', 'was', 'that', 'ping', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'no', 'ping', '||period||', 'why', 'are', 'you', 'so', 'wacky', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'cannot', 'imagine', 'how', 'much', 'i', 'hate', 'this', 'guy', '||period||', '||period||', 'and', 'he', "hasn't", 'even', 'done', 'anything', '||exclammark||', "it's", 'the', 'situation', '||period||', "he's", 'a', 'wonderful', 'guy', '||comma||', 'but', 'i', 'hate', 'his', 'guts', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'two', 'been', '||comma||', 'uh', '||period||', '||period||', '||return||', '||return||', 'elaien:', 'no', '||exclammark||', 'i', 'told', 'him', "i've", 'been', 'having', 'my', 'period', 'for', 'the', 'last', 'five', 'days', '||exclammark||', "i'm", 'sleeping', 'all', 'squished', 'over', 'on', 'the', 'edge', 'of', 'my', 'bed', '||period||', '||period||', 'but', '||comma||', "i've", 'only', 'got', 'fourteen', 'hours', 'to', 'go', '||period||', 'nothing', 'can', 'go', 'wrong', 'now', '||period||', 'i', 'think', "i've", 'taken', 'care', 'of', 'everything', '||period||', "i've", 'confirmed', 'the', 'plane', 'reservation', '||period||', "i've", 'checked', 'the', 'weather', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what's", 'your', 'airport', 'route', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'got', 'it', 'all', 'mapped', 'out', '||dash||', "i'm", 'taking', 'the', 'tunnel', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'what', 'about', 'the', 'van', 'wyck', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'spoke', 'to', 'a', 'cab', 'driver', '||period||', 'for', 'five', 'bucks', '||comma||', 'he', 'turned', 'me', 'on', 'to', 'the', 'rockaway', 'boulevard', 'shortcut', '||period||', '||return||', '||return||', 'jerry:', 'oooh', '||period||', '||return||', '||return||', 'elaine:', 'now', '||comma||', 'lookit', '||comma||', 'this', 'plane', 'leaves', 'at', '1015', '||period||', "we're", 'getting', 'up', 'at', 'about', 'eight', '||period||', 'that', 'gives', 'us', 'enough', 'time', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'still', 'using', 'that', 'old', 'alarm', 'clock', '||questionmark||', '||return||', '||return||', 'elaien:', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'bought', 'a', 'new', 'one', 'today', '||period||', "it's", 'got', 'everything', '||dash||', "it's", 'got', 'everything', '||period||', '||period||', '||period||', 'if', 'you', 'oversleep', 'more', 'than', 'ten', 'minutes', '||comma||', 'a', 'hand', 'comes', 'out', 'and', 'slaps', 'you', 'in', 'the', 'face', '||period||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'flying', "doesn't", 'make', 'me', 'nervous', '||dash||', 'driving', 'to', 'the', 'airport', 'can', 'make', 'you', 'very', 'nervous', 'because', 'when', "you're", 'flying', '||comma||', 'when', "you're", 'getting', 'on', 'the', 'plane', '||comma||', 'if', 'you', 'miss', 'that', 'plane', '||comma||', "there's", 'no', 'alternative', '||period||', 'on', 'the', 'ground', '||comma||', 'you', 'have', 'options', '||period||', 'you', 'have', 'buses', '||comma||', 'you', 'have', 'taxis', '||comma||', 'you', 'have', 'trains', '||period||', 'but', '||comma||', 'when', "you're", 'taking', 'a', 'flight', '||comma||', 'if', 'you', 'miss', 'it', '||comma||', "that's", 'it', '||period||', 'no', 'airline', 'goes', '||comma||', '||quotemark||', 'well', '||comma||', 'you', 'missed', 'the', 'flight', '||comma||', 'we', 'do', 'have', 'a', 'cannon', 'leaving', 'in', 'about', 'ten', 'minutes', '||period||', 'would', 'you', 'be', 'interested', 'in', 'that', '||questionmark||', "it's", 'not', 'a', 'direct', 'cannon', '||comma||', 'you', 'have', 'to', 'change', 'cannons', 'after', 'you', 'land', '||period||', '||quotemark||', '||leftparen||', 'imitates', 'cannon', 'operator', '||rightparen||', '||quotemark||', "i'm", 'sorry', '||comma||', 'where', 'you', "goin'", '||questionmark||', 'chicago', '||questionmark||', '||leftparen||', 'cranks', 'the', 'cannon', '||rightparen||', 'oh', '||comma||', 'dallas', '||questionmark||', 'alright', '||comma||', 'wait', 'a', 'second', '||period||', '||period||', '||leftparen||', 'cranks', 'cannon', 'to', 'dallas', '||rightparen||', 'dallas', '||period||', "that's", 'about', 'dallas', '||period||', 'texas', '||comma||', 'anyway', '||period||', 'you', 'should', 'hit', 'texas', '||period||', 'are', 'you', 'ready', '||questionmark||', 'make', 'sure', 'you', 'get', 'out', 'of', 'the', 'net', 'immediately', '||comma||', 'because', 'we', 'shoot', 'the', 'luggage', 'in', 'right', 'after', 'you', '||period||', '||quotemark||', '||return||', '||return||', '[setting:', "elaine's", 'apartment]', '||return||', '||return||', '||leftparen||', 'elaine', 'and', 'ed', 'are', 'in', 'bed', '||period||', 'elaine', 'awakes', 'to', 'find', 'out', 'that', "it's", '9:', '15', '||dash||', 'they', 'overslept', '||period||', 'she', 'gets', 'frantic', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'trying', 'to', 'wake', 'ed', 'up', '||rightparen||', 'get', 'up', '||exclammark||', 'the', 'alarm', 'clock', "didn't", 'go', 'off', '||exclammark||', '||leftparen||', 'shakes', 'him', '||rightparen||', "it's", '915', '||exclammark||', "you're", 'gonna', 'miss', 'the', 'plane', '||exclammark||', "it's", '915', '||exclammark||', '||return||', '||return||', 'ed:', '915', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', '915', '||exclammark||', '||return||', '||return||', 'ed:', '||leftparen||', 'going', 'back', 'to', 'sleep', '||rightparen||', "we'll", 'never', 'make', 'it', '||period||', "i'll", 'leave', 'tomarrow', '||period||', '||return||', '||return||', 'elaine:', 'tomarrow', '||questionmark||', '||exclammark||', 'are', 'you', 'crazy', '||questionmark||', 'no', '||comma||', 'now', '||comma||', 'now', '||exclammark||', "let's", 'go', '||exclammark||', '||leftparen||', 'gets', 'his', 'suitcase', 'from', 'the', 'closet', '||comma||', 'throws', 'it', 'on', 'the', 'bed', '||comma||', 'and', 'frantically', 'starts', 'packing', '||rightparen||', 'you', 'get', 'dressed', '||exclammark||', 'get', 'dressed', '||exclammark||', '||return||', '||return||', 'ed:', 'can', 'i', 'shower', '||questionmark||', '||return||', '||return||', 'elaine:', 'shower', '||questionmark||', '||exclammark||', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ed:', 'i', 'gotta', 'shower', '||period||', "i'll", 'feel', 'dirty', 'all', 'day', '||period||', '||return||', '||return||', 'elaine:', 'forget', 'the', 'shower', '||exclammark||', 'the', "shower's", 'out', '||period||', 'move', 'it', '||exclammark||', 'put', 'your', 'clothes', 'on', '||exclammark||', 'put', 'your', 'clothes', 'on', '||exclammark||', '||leftparen||', 'pulls', 'out', 'drawers', 'of', 'clothes', '||comma||', 'turning', 'them', 'over', 'in', 'the', 'suitcase', '||period||', 'he', 'walks', 'tward', 'the', 'door', '||rightparen||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'ed:', 'the', 'kitchen', '||period||', '||return||', '||return||', 'elaine:', 'the', 'kitchen', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ed:', "i've", 'got', 'a', 'bag', 'of', 'cashews', 'in', 'there', '||period||', '||return||', '||return||', 'elaine:', "they're", 'not', 'making', 'it', '||exclammark||', "let's", 'get', 'your', 'pants', 'on', '||exclammark||', '||return||', '||return||', 'ed:', "what's", 'the', 'big', 'deal', 'if', 'we', "don't", 'make', 'it', '||questionmark||', "i'll", 'just', 'go', 'tomarrow', 'or', 'the', 'next', 'day', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'you', 'have', 'your', 'ticket', '||exclammark||', 'you', 'have', 'to', 'go', 'now', '||exclammark||', '||return||', '||return||', 'ed:', "i'll", 'never', 'make', 'it', '||period||', '||return||', '||return||', 'elaine:', "don't", 'say', 'that', '||exclammark||', '||return||', '||return||', 'ed:', 'but', 'it', 'takes', 'forty', '||dash||', 'five', 'minutes', 'to', 'get', 'there', '||period||', "that'll", 'only', 'leave', 'me', 'five', 'minutes', 'to', 'get', 'to', 'the', 'plane', '||period||', '||return||', '||return||', 'elaine:', 'shut', 'up', 'and', 'pack', '||exclammark||', '||return||', '||return||', 'ed:', 'and', 'what', 'if', 'i', "don't", 'make', 'the', 'plane', '||questionmark||', "you'll", 'have', 'already', 'left', '||period||', 'then', 'what', 'will', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'talking', 'too', 'much', '||exclammark||', '||return||', '||return||', 'ed:', "where's", 'my', 'sweater', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ed:', 'my', 'brown', 'sweater', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'sweater', '||questionmark||', '||return||', '||return||', 'ed:', 'my', 'brown', 'sweater', '||period||', '||return||', '||return||', 'elaine:', 'you', "didn't", 'bring', 'a', 'brown', 'sweater', '||period||', '||return||', '||return||', 'ed:', 'i', 'brought', 'a', 'brown', 'sweater', '||period||', '||return||', '||return||', 'elaine:', 'here', '||exclammark||', 'here', '||exclammark||', 'you', 'want', 'a', 'brown', 'sweater', '||questionmark||', '||exclammark||', '||leftparen||', 'recahes', 'into', 'one', 'of', 'her', 'drawers', '||comma||', 'and', 'grabs', 'a', 'brown', 'sweater', '||comma||', 'then', 'packs', 'it', '||rightparen||', 'you', 'got', 'a', 'brown', 'sweater', '||exclammark||', '||return||', '||return||', 'ed:', "that's", 'not', 'mine', '||period||', 'i', "can't", 'take', 'your', 'sweater', '||period||', '||return||', '||return||', 'elaine:', "it's", 'brown', '||exclammark||', '||leftparen||', 'takes', 'clothes', 'still', 'on', 'the', 'hangers', '||comma||', 'and', 'dumps', 'them', 'into', 'the', 'suitcase', '||rightparen||', '||return||', '||return||', 'ed:', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', 'time', 'for', 'folding', '||period||', '||period||', '||leftparen||', 'looks', 'around', '||rightparen||', 'i', 'think', "that's", 'it', '||period||', '||leftparen||', 'zips', 'up', 'the', 'suitcase', '||rightparen||', '||return||', '||return||', 'ed:', 'my', 'shoes', '||period||', 'you', 'packed', 'my', 'shoes', '||period||', '||return||', '||return||', 'elaine:', 'shoes', '||questionmark||', 'shoes', '||questionmark||', '||exclammark||', 'shoes', '||questionmark||', '||exclammark||', 'shoes', "weren't", 'invented', 'till', 'the', 'fourth', 'century', '||exclammark||', 'people', 'walked', 'around', 'for', 'thousands', 'of', 'years', 'without', 'them', '||exclammark||', '||leftparen||', 'puts', 'her', 'coat', 'on', 'over', 'her', 'nightie', '||period||', 'he', 'picks', 'up', 'his', 'suitcase', '||comma||', 'she', 'grabs', 'it', 'from', 'him', '||comma||', 'then', 'pushes', 'him', 'out', 'of', 'her', 'way', '||rightparen||', 'i', 'got', 'this', '||period||', "let's", 'go', '||exclammark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'anywhere', 'in', 'the', 'city', '||questionmark||', '||return||', '||return||', 'george:', 'anywhere', 'in', 'the', 'city', '||dash||', "i'll", 'tell', 'you', 'the', 'best', 'public', 'toilet', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', 'fifty', '||dash||', 'fourth', 'and', 'sixth', '||questionmark||', '||return||', '||return||', 'george:', 'sperry', 'rand', 'building', '||period||', '14th', 'floor', '||comma||', 'morgan', 'apparel', '||period||', 'mention', 'my', 'name', '||dash||', "she'll", 'give', 'you', 'the', 'key', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||period||', 'sixty', '||dash||', 'fifth', 'and', 'tenth', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'scoffs', '||rightparen||', 'are', 'you', 'kidding', '||questionmark||', 'lincoln', 'center', '||period||', 'alice', 'tully', 'hall', '||comma||', 'the', 'met', '||period||', 'magnificent', 'facilities', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'slow', '||comma||', 'as', 'if', 'remember', 'a', 'dream', '||rightparen||', 'i', 'never', 'new', 'i', 'could', 'drive', 'like', 'that', '||period||', 'i', 'was', 'going', 'faster', 'than', "i've", 'ever', 'gone', 'before', '||comma||', 'and', 'yet', '||comma||', 'it', 'all', 'seemed', 'to', 'be', 'happening', 'in', 'slow', 'motion', '||period||', 'i', 'was', 'seeing', 'three', 'and', 'four', 'moves', 'ahead', '||comma||', 'weaving', 'in', 'and', 'out', 'of', 'lanes', 'like', 'an', 'olympic', 'skier', 'on', 'a', 'gold', 'metal', 'run', '||period||', 'i', 'knew', 'i', 'was', 'challenging', 'the', 'very', 'laws', 'of', 'physics', '||period||', 'at', 'queens', 'boulevard', '||comma||', 'i', 'took', 'the', 'shoulder', '||period||', 'at', 'jewel', 'avenue', '||comma||', 'i', 'used', 'the', 'median', '||period||', 'i', 'had', 'it', '||period||', 'i', 'was', 'there', '||period||', '||period||', 'and', 'then', '||period||', '||period||', 'i', 'hit', 'the', 'van', 'wyck', '||period||', 'they', 'say', 'no', "one's", 'ever', 'beaten', 'the', 'van', 'wyck', '||comma||', 'but', 'gentlemen', '||comma||', 'i', 'tell', 'you', 'this', '||dash||', 'i', 'came', 'as', 'close', 'as', 'anyone', 'ever', 'has', '||period||', 'and', 'if', 'it', "hadn't", 'been', 'for', 'that', 'five', '||dash||', 'car', '||dash||', 'pile', '||dash||', 'up', 'on', 'rockaway', 'boulevard', '||comma||', 'that', 'numbskull', 'would', 'be', 'on', 'a', 'plane', 'for', 'seattle', 'right', 'now', 'instead', 'of', 'looking', 'for', 'a', 'parking', 'space', 'downstairs', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', 'the', "busboy's", 'coming', '||exclammark||', 'the', "busboy's", 'coming', '||exclammark||', '||return||', '||return||', 'george:', 'the', "busboy's", 'coming', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'mean', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'i', 'just', 'buzzed', 'him', 'in', '||period||', "he's", 'on', 'his', 'way', 'up', '||period||', '||period||', '||return||', '||return||', 'george:', "he's", 'coming', 'up', '||questionmark||', '||exclammark||', '||leftparen||', 'moves', 'to', 'the', 'door', '||rightparen||', "i'll", 'check', 'you', 'out', 'later', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'the', 'one', 'he', 'wants', '||exclammark||', "he's", 'coming', 'to', 'settle', 'the', 'score', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'get', 'george', 'and', 'kramer', 'out', '||rightparen||', 'no', '||period||', 'you', 'three', 'all', 'know', 'each', 'other', '||period||', "there's", 'no', 'point', 'in', 'me', 'getting', 'involved', 'at', 'this', 'stage', 'of', 'the', 'game', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "he's", 'not', 'going', 'to', 'do', 'anything', '||period||', 'i', 'guarantee', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'hell', 'with', 'it', '||period||', 'let', 'him', 'kill', 'me', '||period||', 'i', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'antonio', '||period||', 'in', 'here', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'nervous', '||comma||', 'his', 'voice', 'cracks', '||rightparen||', 'hey', '||comma||', 'antonio', '||period||', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'antonio:', 'three', 'nights', 'ago', '||comma||', 'a', 'gas', 'main', 'beneath', 'the', 'restaurant', 'exploded', '||comma||', 'killing', 'five', 'people', 'in', 'my', 'section', '||comma||', 'including', 'the', 'busboy', 'who', 'replaced', 'me', '||period||', 'if', 'i', 'am', 'not', 'fired', 'that', 'night', 'because', 'of', 'you', 'and', 'your', 'thoughtless', '||comma||', 'stupid', '||comma||', 'insensitive', 'remarks', '||comma||', 'it', 'would', 'have', 'been', 'me', '||period||', 'you', 'saved', 'my', 'life', '||period||', '||leftparen||', 'hugs', 'him', 'again', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'to', 'be', 'modest', '||rightparen||', 'ah', '||comma||', 'come', 'on', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'into', 'the', 'intercom', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'ed:', "it's", 'eddie', '||period||', '||return||', '||return||', 'elaine:', "he's", 'coming', 'up', '||period||', '||leftparen||', 'buzzes', 'him', 'in', '||rightparen||', "he's", 'coming', 'up', '||period||', '||period||', '||return||', '||return||', 'antonio:', 'and', 'that', 'very', 'same', 'night', 'of', 'the', 'accident', '||comma||', 'while', 'looking', 'for', 'pequita', '||comma||', 'i', 'found', 'a', 'job', 'in', 'a', 'restaurant', 'where', 'they', 'pay', 'me', 'almost', 'twice', 'what', 'i', 'was', 'making', 'before', '||dash||', 'and', 'when', 'i', 'returned', 'to', 'the', 'apartment', '||comma||', 'pequita', '||comma||', 'perhaps', 'frightened', 'from', 'the', 'explosion', '||comma||', 'had', 'miraculously', 'returned', '||period||', 'well', '||comma||', 'but', 'now', '||comma||', 'i', 'must', 'go', '||comma||', 'for', 'today', 'i', 'am', 'starting', 'my', 'new', 'and', 'wonderful', 'job', '||period||', 'and', 'i', 'am', 'very', 'late', '||period||', 'thank', 'you', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', 'all', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'ed:', 'hey', '||comma||', 'watch', 'were', "you're", 'going', '||period||', 'you', 'almost', 'knocked', 'my', 'head', 'off', '||exclammark||', '||return||', '||return||', 'antonio:', 'hey', '||comma||', 'why', "don't", 'you', 'watch', 'where', "you're", 'going', '||comma||', 'okay', '||questionmark||', "'cause", 'you', 'bumped', 'into', 'me', '||exclammark||', '||return||', '||return||', 'ed:', 'who', 'do', 'you', 'think', "you're", 'talking', 'to', '||comma||', 'pal', '||questionmark||', '||return||', '||return||', 'antonio:', 'hey', '||comma||', 'get', 'your', 'hands', 'off', 'me', '||exclammark||', '||return||', '||return||', 'ed:', 'go', 'to', 'hell', '||exclammark||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', "he'll", 'get', 'another', 'job', '||period||', "he's", 'a', 'busboy', '||exclammark||', '||return||', '||return||', 'george:', 'it', "won't", 'for', 'a', 'while', '||period||', 'at', 'least', 'not', 'until', 'after', 'the', 'cast', 'comes', 'off', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'that', 'fall', 'down', 'the', 'stairs', '||period||', "that's", 'what', 'did', 'it', '||period||', '||return||', '||return||', 'george:', "that's", 'not', 'how', 'it', 'happened', '||period||', "it's", 'when', 'he', 'fell', 'on', 'him', 'with', 'his', 'knee', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'was', 'awful', '||period||', 'poor', 'antonio', '||period||', '||leftparen||', 'waiter', 'hands', 'elaine', 'two', 'bags', 'of', 'food', 'to', 'go', '||rightparen||', '||period||', '||period||', 'thanks', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'much', 'longer', '||questionmark||', '||return||', '||return||', 'elaine:', 'till', 'when', '||dash||', 'till', 'he', 'goes', 'back', 'to', 'seattle', '||comma||', 'or', 'till', 'he', 'can', 'feed', 'himself', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'wanting', 'to', 'make', 'elaine', 'mad', '||rightparen||', 'i', 'guess', "it's", 'not', 'important', '||period||', '||return||', '||return||', 'elaine:', 'take', 'care', 'of', 'yourselves', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'should', 'probably', 'get', 'going', 'too', '||period||', 'if', 'i', "don't", 'feed', 'pequita', 'by', 'seven', '||comma||', 'she', 'goes', 'all', 'over', 'everything', '||period||', '||period||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||leftparen||', 'takes', 'a', 'bite', 'of', 'his', 'sandwich', 'as', 'the', 'waiter', 'starts', 'cleaning', 'off', 'the', 'table', '||rightparen||', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'first', 'of', 'all', '||comma||', 'i', "can't", 'believe', 'that', 'people', 'actually', 'do', 'fight', '||period||', 'people', 'have', 'fist', 'fights', 'in', 'life', '||period||', 'i', "can't", 'really', 'believe', 'that', 'we', 'have', 'boxing', 'either', '||period||', "it's", 'really', 'kind', 'of', 'an', 'amazing', 'thing', '||period||', 'to', 'me', '||comma||', 'the', 'problem', 'with', 'boxing', 'is', '||dash||', 'you', 'have', 'two', 'guys', 'having', 'a', 'fight', 'that', 'have', 'no', 'prior', 'argument', '||period||', 'why', "don't", 'they', 'have', 'the', 'boxers', 'come', 'into', 'the', 'ring', 'in', 'little', 'cars', '||comma||', 'drive', 'around', 'a', 'bit', '||comma||', 'have', 'a', 'little', 'accident', '||questionmark||', 'they', 'get', 'out', '||comma||', '||quotemark||', "didn't", 'you', 'see', 'my', 'signal', '||questionmark||', '||quotemark||', '||quotemark||', 'look', 'at', 'that', 'fender', '||exclammark||', '||quotemark||', '||period||', '||period||', 'then', "you'd", 'see', 'a', 'real', 'fight', '||period||', '||return||', '||return||', 'jerry:', 'evry', '||dash||', 'every', 'time', 'somebody', 'recommends', 'a', 'doctor', '||comma||', "he's", 'always', 'the', 'best', '||period||', '||quotemark||', 'oh', '||comma||', 'is', 'he', 'good', '||questionmark||', '||quotemark||', '||quotemark||', 'oh', '||comma||', "he's", 'the', 'best', '||period||', 'this', "guy's", 'the', 'best', '||period||', '||quotemark||', 'they', "can't", 'all', 'be', 'the', 'best', '||period||', 'there', "can't", 'be', 'this', 'many', 'bests', '||period||', "someone's", 'graduating', 'at', 'the', 'bottom', 'of', 'these', 'classes', '||comma||', 'where', 'are', 'these', 'doctors', '||questionmark||', 'is', 'somewhere', '||comma||', 'someone', 'saying', 'to', 'their', 'friend', '||comma||', '||quotemark||', 'you', 'should', 'see', 'my', 'doctor', '||comma||', "he's", 'the', 'worst', '||period||', 'oh', 'yeah', '||comma||', "he's", 'the', 'worst', '||comma||', "he's", 'the', 'absolute', 'worst', 'there', 'is', '||period||', 'whatever', "you've", 'got', '||comma||', "it'll", 'be', 'worse', 'after', 'you', 'see', 'him', '||period||', 'no', '||comma||', "he's", 'just', '||comma||', "he's", 'a', 'butcher', '||period||', 'the', "man's", 'a', 'butcher', '||period||', '||quotemark||', 'and', 'then', "there's", 'always', 'that', '||comma||', '||quotemark||', 'make', 'sure', 'that', 'you', 'tell', 'him', 'that', '||comma||', 'you', 'know', '||comma||', 'you', 'know', 'me', '||period||', '||quotemark||', 'why', '||questionmark||', "what's", 'the', 'difference', '||questionmark||', "he's", 'a', 'doctor', '||period||', 'what', 'is', 'it', '||comma||', '||quotemark||', 'oh', '||comma||', 'you', 'know', 'bob', '||exclammark||', 'okay', '||comma||', "i'll", 'give', 'you', 'the', 'real', 'medicine', '||period||', 'and', 'everybody', 'else', '||comma||', "i'm", 'giving', 'tic', '||dash||', 'tacs', '||period||', '||quotemark||', '||return||', '||return||', 'julianna:', '||period||', '||period||', '||period||', 'and', 'usually', 'for', 'lunch', "i'll", 'have', 'a', 'salad', '||comma||', 'and', 'for', 'dinner', '||comma||', 'i', 'eat', 'whatever', 'i', 'want', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', 'the', 'worst', 'part', 'of', 'being', 'blind', 'is', '||questionmark||', '||return||', '||return||', 'julianna:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'you', 'were', 'blind', '||comma||', 'what', 'do', 'you', 'think', 'the', 'worst', 'part', 'of', 'it', 'would', 'be', '||questionmark||', '||return||', '||return||', 'julianna:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'it', 'would', 'be', 'not', 'being', 'able', 'to', 'tell', 'if', 'there', 'was', 'bugs', 'in', 'my', 'food', '||period||', 'how', 'could', 'you', 'ever', 'enjoy', 'a', 'meal', 'like', 'that', '||questionmark||', "i'd", 'constantly', 'be', 'feeling', 'around', 'with', 'my', 'lips', 'and', 'my', 'tongue', '||period||', '||return||', '||return||', 'julianna:', 'well', "that's", 'how', 'my', 'five', '||dash||', 'year', 'old', 'eats', '||period||', "he's", 'a', 'very', 'picky', 'eater', '||period||', '||return||', '||return||', 'jerry:', 'you', 'hear', 'about', 'that', 'kid', 'that', 'was', 'kidnapped', 'the', 'other', 'day', 'in', 'pennsylvania', '||questionmark||', '||return||', '||return||', 'julianna:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'at', 'a', 'carnival', 'with', 'his', 'mother', '||period||', 'she', 'goes', 'to', 'get', 'a', 'hot', 'dog', '||comma||', 'next', 'thing', 'you', 'know', 'she', 'turns', 'around', '||comma||', 'boom', '||comma||', "he's", 'gone', '||period||', '||return||', '||return||', 'julianna:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'imagine', 'how', 'sick', 'a', 'person', 'has', 'to', 'be', 'to', 'do', 'something', 'like', 'that', '||period||', '||leftparen||', 'she', 'starts', 'the', 'quick', 'hand', 'chops', 'on', 'his', 'back', '||rightparen||', 'and', 'these', 'people', 'are', 'all', 'over', 'the', 'place', '||period||', 'you', 'never', 'know', "who's", 'crazy', '||comma||', 'i', 'could', 'be', 'one', 'of', 'these', 'people', '||period||', '||return||', '||return||', 'julianna', '||leftparen||', 'visibly', 'uncomfortable', '||rightparen||', ':', 'have', 'you', 'seen', 'any', 'good', 'movies', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'takes', 'care', 'of', 'your', 'boy', 'during', 'the', 'day', '||questionmark||', '||return||', '||return||', 'julianna:', 'we', 'have', 'a', 'woman', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'no', '||period||', "i'm", 'just', 'saying', '||period||', '||return||', '||return||', 'julianna:', 'she', 'had', 'references', '||period||', '||return||', '||return||', 'jerry:', 'oh', "i'm", 'sure', 'she', 'did', '||comma||', "i'm", 'sure', "they're", 'impeccable', '||period||', "i'm", 'talking', 'about', 'the', 'ones', 'that', 'forge', '`em', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'about', 'the', 'massage', '||rightparen||', 'you', 'know', 'i', 'think', 'this', 'is', 'really', 'helping', '||period||', '||return||', '||return||', 'julianna:', 'i', "don't", 'live', 'near', 'here', '||comma||', 'ya', 'know', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "she's", 'giving', 'me', 'the', 'massage', 'and', "i'm", 'just', 'making', 'conversation', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'like', 'to', 'talk', 'during', 'a', 'massage', '||period||', '||return||', '||return||', 'jerry:', 'neither', 'do', 'i', '||comma||', 'but', 'i', 'do', 'it', 'for', 'them', '||period||', 'i', 'figure', "they're", 'bored', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'do', 'that', 'too', '||period||', 'i', 'feel', 'guilty', 'about', 'getting', 'the', 'pleasure', '||period||', 'i', 'feel', 'like', 'i', "don't", 'deserve', 'it', 'so', 'i', 'talk', '||period||', 'it', 'stops', 'me', 'from', 'enjoying', 'it', '||period||', "there's", 'nothing', 'to', 'eat', 'in', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'i', 'forgot', 'to', 'tell', 'you', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', "i'm", 'in', 'the', 'middle', 'of', 'a', 'story', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'okay', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'ever', 'go', 'shopping', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'its', 'not', 'like', "it's", 'a', 'really', 'funny', 'story', 'or', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'so', 'she', 'mentioned', 'that', 'she', 'had', 'a', 'son', '||comma||', 'and', 'then', 'for', 'some', 'reason', '||comma||', 'i', 'launch', 'into', 'the', 'story', 'about', 'the', 'kid', 'from', 'pennsylvania', 'who', 'was', 'abducted', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "wasn't", 'that', 'terrible', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'it', 'was', '||period||', '||return||', '||return||', 'george:', 'not', 'even', 'an', 'apple', '||period||', '||return||', '||return||', 'elaine:', 'she', "doesn't", 'want', 'to', 'hear', 'that', '||comma||', 'that', 'was', 'stupid', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'it', 'was', 'stupid', '||period||', '||return||', '||return||', 'elaine:', 'really', 'stupid', '||period||', '||leftparen||', 'she', 'takes', 'a', 'big', 'sip', 'from', 'her', 'bottled', 'water', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'just', 'said', 'it', 'was', 'stupid', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'this', 'leftover', 'chinese', 'food', '||questionmark||', '||return||', '||return||', 'jerry:', 'take', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'you', 'said', 'that', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'would', 'you', 'stop', 'it', 'already', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'whatd', 'she', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'she', 'actually', 'seemed', 'to', 'get', 'a', 'little', 'paranoid', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'he', 'just', 'took', 'a', 'bite', 'of', 'the', 'chinese', 'food', '||rightparen||', 'this', 'is', 'terrible', '||period||', 'what', 'is', 'this', '||comma||', 'ginger', '||questionmark||', 'i', 'hate', 'ginger', '||period||', 'i', "can't", 'understand', 'how', 'anyone', 'can', 'eat', 'ginger', '||period||', '||leftparen||', 'puts', 'the', 'container', 'back', 'in', 'the', 'refrigerator', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'have', 'a', 'good', 'masseuse', 'you', 'could', 'go', 'to', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "she's", 'really', 'good', 'and', "she's", 'not', 'just', 'a', 'masseuse', '||comma||', "she's", 'a', 'physical', 'therapist', '||period||', "there's", 'a', 'big', 'difference', '||period||', 'she', 'uses', 'the', 'ultrasound', '||comma||', "it's", 'a', 'real', 'medical', 'procedure', '||period||', 'in', 'fact', '||comma||', 'if', 'you', 'get', 'a', "doctor's", 'note', '||comma||', "it's", 'covered', 'by', 'insurance', '||period||', '||return||', '||return||', 'george:', 'physical', 'therapy', 'is', 'covered', 'by', 'insurance', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'have', 'to', 'pay', 'for', 'the', 'massage', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'if', 'you', 'have', 'a', "doctor's", 'note', '||period||', '||return||', '||return||', 'elaine:', 'so', 'where', 'do', 'you', 'get', 'this', 'note', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "i've", 'never', 'actually', 'done', 'it', 'but', 'if', 'i', 'really', 'wanted', 'to', 'i', 'could', 'probably', 'get', 'one', 'from', 'my', 'friend', 'roy', '||comma||', 'the', 'dentist', '||period||', '||return||', '||return||', 'george:', 'right', '||comma||', 'your', 'friend', 'roy', '||period||', '||return||', '||return||', 'elaine:', "what's", 'the', 'name', 'of', 'this', 'physical', 'therapist', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', '||comma||', 'but', "don't", 'ask', 'her', 'anything', 'about', 'her', 'kid', '||comma||', 'she', 'a', 'little', 'off', '||period||', '||return||', '||return||', 'george:', 'and', 'you', "don't", 'have', 'to', 'pay', '||period||', '||return||', '||return||', 'george:', 'we', 'have', 'a', '||comma||', 'three', '||dash||', "o'clock", 'appointments', '||period||', '||return||', '||return||', 'receptionist:', 'george', 'and', 'elaine', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||return||', '||return||', 'receptionist:', 'could', 'you', 'fill', 'these', 'out', 'for', 'me', 'please', '||questionmark||', 'and', 'um', '||comma||', 'elaine', '||comma||', "you'll", 'be', 'seeing', 'julianna', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'ok', '||period||', '||return||', '||return||', 'receptionist:', 'and', 'george', '||comma||', "you'll", 'be', 'with', 'raymond', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'did', 'you', 'say', "'raymond'", '||questionmark||', '||return||', '||return||', 'receptionist:', 'yes', '||period||', '||return||', '||return||', 'george:', 'but', '||comma||', 'uh', '||comma||', 'raymond', 'is', 'a', 'man', '||period||', '||return||', '||return||', 'receptionist:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'get', 'a', 'massage', 'from', 'a', 'man', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'are', 'you', 'crazy', '||questionmark||', 'i', "can't", 'have', 'a', 'man', 'touching', 'me', '||period||', 'switch', 'with', 'me', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "don't", 'want', 'the', 'man', 'either', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'difference', '||comma||', "you're", 'a', 'woman', '||period||', "they're", 'supposed', 'to', 'be', 'touching', 'you', '||period||', '||return||', '||return||', 'elaine:', "he'd", 'just', 'be', 'touching', 'your', 'back', '||period||', '||return||', '||return||', 'george:', "he'd", 'just', 'be', 'touching', 'your', 'back', 'too', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'it', 'could', 'get', 'sexual', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', "that's", 'the', 'point', '||period||', 'if', "it's", 'gonna', 'get', 'sexual', '||comma||', 'it', 'should', 'get', 'sexual', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', "wouldn't", 'be', 'comfortable', '||period||', '||return||', '||return||', 'george:', 'i', 'would', '||questionmark||', 'what', 'if', 'something', 'happens', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'could', 'happen', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'if', 'it', 'felt', 'good', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'supposed', 'to', 'feel', 'good', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'it', 'to', 'feel', 'good', '||period||', '||return||', '||return||', 'elaine:', 'then', 'why', 'get', 'the', 'massage', '||questionmark||', '||return||', '||return||', 'george:', 'exactly', '||exclammark||', '||return||', '||return||', 'raymond:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||questionmark||', '||return||', '||return||', 'raymond:', "i'm", 'raymond', '||period||', '||leftparen||', 'with', 'a', 'big', 'smile', '||rightparen||', '||return||', '||return||', 'george:', 'hello', '||period||', '||leftparen||', 'with', 'not', 'a', 'big', 'smile', '||rightparen||', '||return||', '||return||', 'raymond:', 'are', 'you', 'ready', '||questionmark||', '||leftparen||', 'smiling', '||comma||', 'he', 'looks', 'at', 'elaine', '||period||', 'she', 'smiles', 'back', 'at', 'him', 'while', 'looking', 'all', 'the', 'way', 'up', 'there', 'at', 'the', 'tall', '||comma||', 'handsome', 'raymond', '||period||', '||rightparen||', '||return||', '||return||', 'raymond:', 'and', 'then', 'julianna', 'asked', 'me', 'if', 'i', 'wanted', 'to', 'join', 'her', 'here', 'in', 'the', 'office', '||period||', '||return||', '||return||', 'george:', 'really', '||period||', '||return||', '||return||', 'raymond:', 'use', 'to', 'be', 'a', 'flight', 'attendant', '||period||', '||return||', '||return||', 'george:', 'oh', 'boy', '||period||', '||return||', '||return||', 'raymond:', 'ya', 'know', '||comma||', 'why', "don't", 'ya', '||comma||', 'open', 'those', 'pants', '||comma||', "it's", 'gonna', 'be', 'a', 'lot', 'easier', 'that', 'way', '||period||', '||return||', '||return||', 'raymond:', 'so', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'raymond:', 'i', 'said', '||comma||', "'what", 'do', 'you', 'do', '||questionmark||', "'", '||period||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'raymond:', 'you', "don't", 'know', 'what', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||period||', '||return||', '||return||', 'raymond:', 'ohh', '||dash||', 'ho', '||comma||', 'come', 'on', '||period||', 'hey', '||comma||', "you're", 'very', 'tense', '||period||', '||return||', '||return||', 'george:', 'hu', '||comma||', 'coffee', '||period||', 'too', 'much', 'coffee', '||leftparen||', 'nervous', 'laughter', '||rightparen||', '||period||', '||return||', '||return||', 'raymond:', 'okay', '||comma||', 'just', 'take', 'off', 'those', 'pants', 'now', '||comma||', 'and', "i'll", 'work', 'the', 'hamstring', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'hamstrings', 'fine', '||period||', '||return||', '||return||', 'raymond:', 'but', 'you', 'wrote', 'that', 'it', 'was', 'tender', '||period||', '||leftparen||', 'holding', 'the', 'clip', 'board', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'wrote', '||period||', 'pfft', '||comma||', '*i*', 'wrote', '||period||', '||return||', '||return||', 'raymond:', "i'll", 'check', 'it', 'out', '||period||', '||leftparen||', 'makes', 'a', 'notation', 'on', 'the', 'form', '||rightparen||', '||return||', '||return||', 'george:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'raymond:', 'yeah', '||comma||', 'take', "'em", 'off', '||period||', '||leftparen||', 'continues', 'writing', '||rightparen||', '||return||', '||return||', 'raymond:', 'how', 'did', 'you', 'hurt', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'raymond:', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'raymond:', 'but', 'you', 'just', 'told', 'me', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'korea', '||period||', '||return||', '||return||', 'raymond:', 'you', 'hurt', 'it', 'in', 'korea', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'raymond:', 'the', 'hamstring', '||period||', '||return||', '||return||', 'george:', 'korea', '||period||', '||return||', '||return||', 'raymond:', 'how', '||questionmark||', '||return||', '||return||', 'george:', 'hamstring', '||period||', '||return||', '||return||', 'raymond:', 'how', 'did', 'you', 'hurt', 'the', 'hamstring', '||questionmark||', '||return||', '||return||', 'george:', 'hotel', '||period||', '||return||', '||return||', 'elaine:', "how'd", 'it', 'go', '||questionmark||', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'appointments', 'at', 'all', '||questionmark||', 'because', 'my', 'neck', 'is', 'still', 'tight', '||period||', 'what', 'about', 'thursday', '||questionmark||', 'and', 'friday', '||questionmark||', 'oh', 'boy', '||period||', 'okay', '||comma||', 'thanks', 'anyway', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'a', '||period||', '||period||', '||period||', 'ah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'a', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'man', 'gave', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'a', 'man', 'gave', 'you', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'man', 'gave', 'me', '||period||', '||period||', '||period||', 'a', 'massage', '||period||', 'hu', '||comma||', 'hu', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'he', '||period||', '||period||', '||period||', 'had', 'his', 'hands', 'and', '||comma||', 'uh', '||comma||', 'he', 'was', 'uh', '||return||', '||return||', 'jerry:', 'he', 'was', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'he', '||dash||', 'he', 'was', 'uh', 'touching', 'and', 'rubbing', '||period||', '||leftparen||', 'nervous', 'laugh', '||rightparen||', '||return||', '||return||', 'jerry:', "that's", 'a', 'massage', '||period||', '||return||', '||return||', 'george:', 'and', 'then', 'i', 'took', 'my', 'pants', 'off', '||period||', '||return||', '||return||', 'jerry:', 'you', 'took', 'your', 'pants', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'for', 'my', 'hamstring', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'george:', 'he', 'got', 'about', 'uh', '||comma||', 'two', 'inches', 'from', '||period||', '||period||', '||period||', 'there', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'it', 'moved', '||period||', '||return||', '||return||', 'jerry:', 'moved', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'may', 'have', 'moved', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sure', 'it', "didn't", 'move', '||period||', '||return||', '||return||', 'george:', 'it', 'moved', '||exclammark||', 'it', 'was', 'imperceptible', 'but', 'i', '||dash||', 'i', 'felt', 'it', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'it', 'just', 'wanted', 'to', 'change', 'positions', '||questionmark||', 'you', 'know', '||comma||', 'shift', 'to', 'the', 'other', 'side', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'it', "wasn't", 'a', 'shift', '||comma||', "i've", 'shifted', '||comma||', 'this', 'was', 'a', 'move', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'so', 'what', 'if', 'it', 'moved', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'the', 'sign', '||exclammark||', 'the', 'test', '||semicolon||', 'if', 'a', '||dash||', 'if', 'a', 'man', 'makes', 'it', 'move', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'the', 'test', '||period||', 'contact', 'is', 'the', 'test', '||comma||', 'if', 'it', 'moves', '||comma||', 'as', 'a', 'result', 'of', 'contact', '||period||', '||return||', '||return||', 'george:', 'you', 'think', "it's", 'contact', '||questionmark||', 'it', 'has', 'to', 'be', 'touched', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'what', 'a', 'gym', 'teacher', 'once', 'told', 'me', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'i', 'just', 'saw', 'joe', 'dimaggio', 'in', 'dinky', 'donuts', '||period||', 'you', 'know', '||comma||', 'i', '||dash||', 'i', 'looked', 'in', 'there', 'and', 'there', 'he', 'was', 'having', 'coffee', 'and', 'a', 'donut', '||period||', '||return||', '||return||', 'jerry:', 'joe', 'dimaggio', '||questionmark||', 'in', 'dinky', 'donuts', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'joe', 'dimaggio', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'sorry', '||comma||', 'if', 'joe', 'dimaggio', 'wants', 'a', 'donut', '||comma||', 'he', 'goes', 'to', 'a', 'fancy', 'restaurant', 'or', 'a', 'hotel', '||period||', "he's", 'not', 'sitting', 'in', 'dinky', 'donuts', '||period||', '||return||', '||return||', 'kramer:', 'well', 'maybe', 'he', 'likes', 'dinky', 'donuts', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'like', 'to', 'sit', 'next', 'to', 'a', 'man', 'on', 'an', 'airplane', "'cause", 'our', 'knees', 'might', 'touch', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'see', 'joe', 'dimaggio', 'sitting', 'at', 'the', 'counter', 'in', 'little', 'tiny', 'filthy', 'smelly', 'dinky', 'donuts', '||period||', '||return||', '||return||', 'kramer:', 'why', "can't", 'joe', 'dimaggio', 'have', 'a', 'donut', 'like', 'everyone', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'can', 'have', 'a', 'donut', '||comma||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'but', 'not', 'at', 'dinky', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'like', 'to', 'use', 'urinals', '||comma||', 'always', 'been', 'a', 'stall', 'man', '||period||', '||return||', '||return||', 'kramer:', 'look', "i'm", 'tellin', '||dash||', '||dash||', '||leftparen||', 'he', 'does', 'a', 'double', 'take', 'and', 'looks', 'at', 'george', '||rightparen||', "i'm", 'telling', 'ya', '||comma||', 'that', 'was', 'joe', 'dimaggio', '||period||', '||return||', '||return||', 'george:', 'the', 'guy', 'slept', 'with', 'marilyn', 'monroe', '||comma||', "he's", 'in', 'dinky', 'donuts', '||period||', 'what', 'about', 'this', "doctor's", 'note', '||questionmark||', "let's", 'go', 'see', 'your', 'friend', 'roy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'said', "i'd", 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||comma||', "that's", 'seventy', '||dash||', 'five', 'bucks', '||exclammark||', "i'm", 'not', 'working', '||comma||', 'i', "can't", 'afford', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'how', 'i', 'feel', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'what', 'are', 'you', '||comma||', 'like', '||comma||', 'a', 'quaker', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'a', 'stall', 'man', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'small', 'laugh', '||rightparen||', '||return||', '||return||', 'george:', 'all', 'right', '||dash||', '||dash||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'kramer:', 'wha', '||dash||', 'ha', '||dash||', 'a', '||dash||', 'at', '||questionmark||', '||leftparen||', 'makes', 'a', 'gesture', 'with', 'his', 'hand', '||rightparen||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'so', 'we', 'were', 'just', 'kinda', 'wondering', 'if', 'it', 'was', 'possible', 'for', 'you', 'to', 'write', 'us', 'a', 'note', '||comma||', 'and', 'if', 'you', "can't", '||comma||', 'believe', 'me', '||comma||', "it's", 'fine', '||period||', '||return||', '||return||', 'george:', 'he', "didn't", 'say', 'he', "can't", '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'if', 'you', 'feel', 'funny', 'about', 'it', '||comma||', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'he', "doesn't", 'feel', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'if', 'he', 'does', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'feel', 'funny', '||questionmark||', 'he', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'he', 'feels', 'funny', '||period||', 'you', "don't", 'have', 'to', 'do', 'this', '||period||', '||return||', '||return||', 'george:', 'he', 'knows', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', 'roy', '||comma||', 'should', 'we', 'go', '||questionmark||', 'is', 'this', 'a', 'breach', 'of', 'our', 'friendship', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'can', 'you', 'be', 'any', 'more', 'dramatic', '||questionmark||', '||return||', '||return||', 'roy:', "don't", 'be', 'ridiculous', '||period||', '||leftparen||', 'notices', 'george', 'looking', 'at', 'a', 'poster', 'on', 'the', 'wall', '||rightparen||', 'holyfield', '||period||', "he's", 'a', 'good', 'friend', 'of', 'one', 'of', 'my', 'patients', '||period||', "he's", 'got', 'a', 'hell', 'of', 'a', 'body', '||comma||', "doesn't", 'he', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'would', 'i', 'know', '||questionmark||', '||return||', '||return||', 'roy:', 'do', 'you', 'like', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||comma||', 'like', 'him', '||questionmark||', '||return||', '||return||', 'roy:', 'do', 'you', 'like', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'mean', "he's", 'a', 'good', 'fighter', 'and', 'a', 'nice', 'guy', 'but', 'i', "don't", 'like', 'him', '||period||', '||return||', '||return||', 'roy:', 'how', 'come', 'you', "don't", 'like', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'should', 'i', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||comma||', 'why', '||questionmark||', 'you', 'think', "something's", 'wrong', '||questionmark||', 'am', 'i', 'different', '||questionmark||', '||return||', '||return||', 'roy:', 'so', '||comma||', 'you', 'want', 'the', 'notes', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'have', 'to', '||comma||', 'really', '||period||', '||return||', '||return||', 'roy:', 'nah', 'nah', '||comma||', "it's", 'ok', '||period||', '||return||', '||return||', 'jerry:', 'we', 'should', 'probably', 'get', 'one', 'for', 'elaine', '||comma||', 'too', '||comma||', 'right', 'george', '||questionmark||', '||leftparen||', 'turns', 'to', 'george', '||comma||', 'who', 'is', 'staring', 'intently', 'at', 'the', 'holyfield', 'poster', '||rightparen||', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'what', 'about', 'the', 'week', 'after', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'appointments', 'at', 'all', '||questionmark||', '||leftparen||', 'motions', 'to', 'elaine', 'to', 'move', 'over', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||leftparen||', 'he', 'bumps', 'her', 'with', 'his', 'butt', 'to', 'move', 'over', '||rightparen||', '||return||', '||return||', 'jerry:', 'can', 'i', '||dash||', 'can', 'i', 'at', 'least', 'just', 'talk', 'to', 'her', 'so', 'i', 'can', 'apologize', '||questionmark||', 'forget', 'it', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'i', "can't", 'believe', 'this', '||comma||', 'i', 'make', 'one', 'innocent', 'comment', '||comma||', 'about', 'some', 'lunatic', 'in', 'pennsylvania', 'and', "i'm", 'cut', 'off', '||period||', 'this', 'woman', 'is', 'insane', '||period||', '||leftparen||', 'looks', 'at', 'elaine', 'for', 'a', 'moment', '||rightparen||', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'were', 'too', 'close', 'to', 'me', '||comma||', 'i', 'was', 'all', 'scrunched', 'in', 'there', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'you', 'scrunched', 'me', '||period||', 'i', 'sat', 'down', 'here', 'first', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'saw', 'dimaggio', 'in', 'the', 'donut', 'shop', 'again', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'joe', 'dimaggio', '||questionmark||', '||return||', '||return||', 'kramer:', 'joe', 'dimaggio', '||comma||', 'you', 'know', 'this', 'time', 'i', 'went', 'in', 'and', 'sat', 'down', 'across', 'from', 'him', 'and', 'i', 'really', 'watched', 'him', '||period||', 'i', 'studied', '||comma||', 'his', 'every', 'move', '||period||', 'for', 'example', '||comma||', 'he', 'dunks', '||period||', '||return||', '||return||', 'elaine:', 'joe', 'dimaggio', 'dunks', 'his', 'donut', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'now', 'i', 'know', "it's", 'not', 'him', '||period||', 'joe', 'dimaggio', 'could', 'not', 'be', 'a', 'dunker', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "he's", 'a', 'dunker', '||period||', '||return||', '||return||', 'elaine:', 'why', "couldn't", 'he', 'be', 'a', 'dunker', '||questionmark||', '||return||', '||return||', 'kramer:', 'and', 'nothing', 'diverts', 'his', 'attention', '||period||', 'like', '||comma||', "i'm", 'uh', '||comma||', 'you', 'know', '||comma||', 'i', '||dash||', 'i', '||comma||', 'like', "i'm", 'sitting', 'in', 'there', '||comma||', 'you', 'know', '||period||', 'and', '||comma||', 'uh', '||comma||', 'i', 'start', 'banging', 'on', 'the', 'table', '||comma||', 'you', 'know', '||comma||', 'to', 'uh', '||comma||', 'so', 'that', 'hell', 'look', 'up', '||comma||', 'you', 'know', '||comma||', 'like', "i'm", 'sitting', 'there', 'you', 'know', 'and', 'uh', '||comma||', '*bang*', '||leftparen||', 'slams', 'the', 'table', '||rightparen||', 'you', 'know', '||comma||', '*bang*', 'he', "wouldn't", 'move', '||period||', 'so', 'then', 'i', 'start', 'doing', 'these', 'yelping', 'noises', '||period||', 'like', '||comma||', '*yip*', '||leftparen||', 'high', 'pitched', 'yelping', 'noises', '||rightparen||', '*yip*', '||period||', 'no', 'reaction', 'because', 'the', 'guy', 'is', 'so', 'focused', '||comma||', 'you', 'see', '||comma||', 'he', 'can', 'just', 'block', 'out', 'anything', "that's", 'going', 'on', 'around', 'him', '||period||', 'see', '||comma||', "that's", 'how', 'he', 'played', 'baseball', '||period||', 'he', 'dunks', 'like', 'he', 'hits', '||period||', '||return||', '||return||', 'elaine:', 'so', 'then', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'then', 'the', 'waitress', '||comma||', 'she', 'comes', 'up', 'and', 'she', 'tells', 'me', 'to', 'shut', 'up', 'or', "they're", 'gonna', 'throw', 'me', 'out', '||period||', '||return||', '||return||', 'elaine:', 'why', "didn't", 'you', 'just', 'call', 'out', 'his', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'these', 'kids', 'called', 'me', 'a', 'mary', '||period||', '||return||', '||return||', 'elaine:', 'a', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'jumping', 'over', 'a', 'puddle', '||comma||', 'and', 'for', 'some', 'reason', 'i', 'went', 'like', 'this', '||period||', '||leftparen||', 'george', 'stretches', 'out', 'his', 'arms', 'in', 'a', 'ballet', 'motion', '||rightparen||', 'and', 'they', 'called', 'me', 'a', 'mary', '||period||', 'so', 'i', 'chased', 'them', '||comma||', 'and', 'i', 'tripped', 'and', 'i', 'fell', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'know', 'kids', '||comma||', 'they', 'can', 'be', 'very', 'perceptive', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'george', '||questionmark||', 'what', 'is', 'this', '||questionmark||', '||leftparen||', 'laughing', '||comma||', 'elaine', 'makes', 'the', 'same', 'outstretched', 'arm', 'motion', '||rightparen||', 'what', 'is', 'that', '||questionmark||', 'no', 'really', '||comma||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'oh', '||comma||', 'hi', 'roy', '||period||', 'what', '||questionmark||', 'oh', 'my', 'god', '||period||', 'wel', '||dash||', '||dash||', 'how', 'did', 'this', 'happen', '||questionmark||', 'what', 'can', 'i', 'do', '||questionmark||', 'oh', '||period||', 'i', 'am', 'so', 'sorry', '||period||', 'okay', '||period||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'that', 'was', 'roy', '||period||', "he's", 'under', 'investigation', 'for', 'insurance', 'fraud', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'singing', '||rightparen||', ':', '||period||', '||period||', '||period||', 'just', 'a', 'man', 'and', 'not', 'a', 'freak', '||comma||', "joltin'", 'joe', 'dimaggio', '||period||', 'joe', '||comma||', 'joe', '||period||', 'go', '||comma||', 'joe', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'george:', 'told', 'me', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'we', "shouldn't", 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'he', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', "he's", 'got', 'a', 'house', '||comma||', 'a', 'family', '||comma||', 'they', 'could', 'take', 'away', 'his', 'license', '||period||', 'you', 'should', 'have', 'heard', 'him', '||period||', 'three', 'notes', '||comma||', 'how', 'stupid', 'was', 'that', '||questionmark||', 'we', 'never', 'should', 'have', 'got', 'three', 'notes', '||period||', '||return||', '||return||', 'elaine:', 'three', 'notes', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', '||comma||', 'me', 'and', 'george', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'me', 'a', 'note', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', 'got', 'my', 'own', 'note', '||period||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'a', 'note', 'from', 'my', 'gynecologist', '||period||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'know', 'you', 'were', 'getting', 'me', 'a', 'note', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'i', 'was', 'getting', 'you', 'a', 'note', '||period||', '||return||', '||return||', 'elaine:', 'but', 'you', "didn't", 'say', 'anything', '||period||', 'ohhh', '||return||', '||return||', 'jerry:', 'neither', 'did', 'you', '||comma||', "that's", 'how', 'he', 'got', 'caught', '||period||', 'we', 'sent', 'in', 'four', 'notes', 'from', 'two', 'doctors', '||period||', '||return||', '||return||', 'george:', 'no', 'doctor', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'wait', 'a', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'how', 'can', 'you', 'do', 'that', 'to', 'your', 'friend', '||questionmark||', "he's", 'got', 'a', 'wife', '||comma||', 'kids', '||comma||', 'and', 'a', 'lot', 'of', 'other', 'stuff', '||period||', 'oh', '||comma||', 'yyyeeah', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'pam', '||period||', '||return||', '||return||', 'pam:', 'hello', '||period||', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'thought', 'ahh', 'maybe', 'i', 'could', 'talk', 'to', 'roy', '||comma||', 'if', 'um', '||return||', '||return||', 'roy:', 'pam', '||comma||', 'did', 'the', 'x', '||dash||', 'ray', 'from', 'mrs', '||period||', 'sloan', '||period||', '||period||', '||period||', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'roy', '||period||', '||return||', '||return||', 'george:', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'roy:', 'come', 'on', 'back', '||comma||', 'i', 'have', 'a', 'patient', 'but', "she's", 'under', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'know', 'what', 'to', 'say', '||period||', '||return||', '||return||', 'george:', 'me', 'neither', '||period||', '||return||', '||return||', 'jerry:', 'i', 'knew', 'this', 'would', 'happen', '||period||', '||return||', '||return||', 'george:', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'the', 'whole', 'thing', '||comma||', "it's", 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'tragic', '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'not', 'tragic', '||period||', '||return||', '||return||', 'george:', 'no', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'unsettling', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'i', 'mean', '||comma||', 'what', 'if', 'the', '||dash||', '||dash||', '||return||', '||return||', 'pam:', 'i', 'hope', "you're", 'both', 'happy', '||period||', '||leftparen||', 'she', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'happy', '||period||', '||return||', '||return||', 'george:', 'me', 'neither', '||period||', "i've", 'never', 'been', 'happy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', "i'm", 'happy', 'sometimes', '||comma||', 'but', '||dash||', 'but', 'not', 'now', '||period||', '||return||', '||return||', 'george:', 'in', 'college', '||comma||', 'maybe', '||period||', 'those', 'were', 'fun', 'times', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'college', 'was', 'fun', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'pam:', 'you', 'know', 'the', 'whole', 'practice', 'is', 'in', 'jeopardy', '||comma||', 'you', 'know', 'that', '||questionmark||', '||leftparen||', 'she', 'turns', 'and', 'walks', 'away', 'again', '||period||', '||rightparen||', '||return||', '||return||', 'roy:', "don't", 'mind', 'her', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'please', '||comma||', 'i', 'love', 'her', '||period||', '||return||', '||return||', 'george:', "i've", 'just', 'met', 'her', 'but', "i'm", 'very', 'impressed', '||period||', '||return||', '||return||', 'roy:', 'i', "can't", 'understand', '||comma||', "i've", 'never', 'had', 'a', 'problem', 'with', 'these', 'notes', 'before', '||period||', '||return||', '||return||', 'jerry:', 'well', "what's", 'the', 'next', 'move', '||comma||', "what's", 'gonna', 'happen', 'now', '||questionmark||', '||return||', '||return||', 'roy:', 'well', '||comma||', 'nothing', 'really', '||comma||', 'as', 'long', 'as', 'we', 'get', 'the', 'physical', 'therapist', 'to', 'go', 'along', 'with', 'our', 'story', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'the', 'physical', 'therapist', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'roy:', 'she', 'just', 'has', 'to', 'say', 'the', 'complaint', 'was', 'related', 'to', 'a', 'dental', 'problem', '||period||', '||return||', '||return||', 'george:', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'ah', 'look', '||comma||', 'i', 'know', 'i', "don't", 'have', 'an', 'appointment', 'but', "it's", 'really', 'important', 'that', 'i', 'talk', 'with', 'julianna', '||period||', '||return||', '||return||', 'receptionist:', "i'm", 'sorry', '||comma||', 'mr', '||period||', 'seinfeld', '||comma||', "she's", 'not', 'in', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', "she's", 'mad', 'at', 'me', '||comma||', 'but', 'i', 'really', 'have', 'to', 'speak', 'with', 'her', '||period||', '||return||', '||return||', 'receptionist:', 'i', 'told', 'you', '||comma||', "she's", 'not', 'here', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||comma||', 'ah', '||return||', '||return||', 'receptionist:', 'look', '||comma||', 'you', 'have', 'to', 'leave', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', "don't", 'you', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'hi', '||period||', 'look', '||comma||', 'i', "don't", 'know', 'what', 'you', 'think', '||dash||', '||dash||', '||return||', '||return||', 'julianna:', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', '||dash||', '||dash||', 'but', '||comma||', 'you', 'see', '||comma||', 'let', 'me', 'just', 'talk', 'to', 'you', 'for', 'a', 'second', '||comma||', 'see', '||comma||', 'what', 'i', 'did', 'is', 'inadvertently', 'sent', 'an', 'insurance', '||dash||', '||dash||', '||return||', '||return||', 'julianna:', 'i', 'treated', 'you', '||comma||', 'so', 'please', '||comma||', 'just', 'get', 'out', 'of', 'the', 'office', '||exclammark||', '||return||', '||return||', 'jerry:', "can't", 'you', 'just', 'listen', 'to', 'me', '||questionmark||', '||return||', '||return||', 'julianna', '||leftparen||', 'releasing', 'her', 'child', '||rightparen||', ':', 'run', 'billy', '||exclammark||', 'run', 'to', 'the', 'office', 'and', 'close', 'the', 'door', '||exclammark||', '||leftparen||', 'to', 'the', 'receptionist', '||rightparen||', 'call', 'the', 'police', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'police', '||questionmark||', '||return||', '||return||', 'raymond:', 'what', 'is', 'the', '||dash||', '||dash||', '||period||', 'hi', 'george', '||period||', '||leftparen||', 'stands', 'there', 'with', 'a', 'big', 'smile', '||rightparen||', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'raymond', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'mean', "it's", 'only', 'a', 'six', 'month', 'probation', '||comma||', "it's", 'a', 'slap', 'on', 'the', 'wrist', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'still', "don't", 'see', 'any', 'dinner', 'invitations', 'forthcoming', '||period||', '||return||', '||return||', 'george:', 'men', 'have', 'been', 'popping', 'into', 'my', 'sexual', 'fantasies', '||period||', 'all', 'of', 'a', 'sudden', "i'll", 'be', '||comma||', 'in', 'the', 'middle', '||period||', '||return||', '||return||', 'elaine:', 'of', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'a', 'guy', 'will', 'appear', 'from', 'out', 'of', 'nowhere', '||period||', 'i', 'say', '||quotemark||', 'get', 'out', 'of', 'here', '||exclammark||', 'what', 'do', 'you', 'want', '||questionmark||', 'you', "don't", 'belong', 'here', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'they', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'talk', 'back', '||period||', 'they', 'go', '||comma||', '||quotemark||', 'hey', 'george', '||comma||', "how's", 'it', 'going', '||questionmark||', '||quotemark||', 'i', 'say', '||comma||', '||quotemark||', 'get', 'the', 'hell', 'out', 'of', 'here', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "it's", 'the', 'k', '||dash||', 'man', '||period||', '||leftparen||', 'he', 'bangs', 'on', 'the', 'glass', 'to', 'get', "kramer's", 'attention', '||comma||', 'elaine', 'laughs', '||rightparen||', 'maybe', "it's", 'time', 'you', 'got', 'a', 'different', 'hobby', '||period||', '||return||', '||return||', 'kramer:', 'man', '||comma||', 'ughhhh', '||comma||', 'wwwheh', '||period||', 'i', 'just', 'came', 'from', "roy's", '||period||', 'i', 'threw', 'up', 'from', 'the', 'gas', '||period||', '||return||', '||return||', 'jerry:', 'did', 'he', 'say', 'anything', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'no', '||comma||', "he's", 'fine', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'noticing', 'something', 'across', 'the', 'coffee', 'shop', '||rightparen||', ':', 'oh', 'my', 'god', '||comma||', "it's", '||period||', '||period||', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'looking', 'over', '||rightparen||', ':', 'joe', 'dimaggio', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasps', '||rightparen||', '||return||', '||return||', 'kramer:', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'having', 'a', 'cup', 'of', 'coffee', '||period||', '||return||', '||return||', 'elaine:', 'and', "he's", 'dunking', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||dash||', '||dash||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'look', 'at', 'him', '||period||', 'the', 'yankee', 'clipper', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'here', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||questionmark||', 'now', 'that', 'is', 'a', 'handsome', 'man', '||period||', '||leftparen||', 'elaine', 'and', 'jerry', 'look', 'right', 'at', 'george', '||rightparen||', 'oh', 'please', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', 'hold', 'on', 'now', '||comma||', 'wait', '||comma||', 'wait', '*bang*', '||leftparen||', 'he', 'slams', 'his', 'hand', 'down', 'on', 'the', 'table', '||comma||', 'startling', 'jerry', '||comma||', 'elaine', 'and', 'george', '||rightparen||', '*bang*', '||leftparen||', 'again', '||rightparen||', '*yip*', '||leftparen||', 'another', 'high', 'pitched', 'yelping', 'sound', '||rightparen||', '*yip*', '*yip*', 'see', '||questionmark||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'causes', 'homophobia', '||questionmark||', 'what', 'is', 'it', '||comma||', 'that', 'makes', 'a', 'heterosexual', 'man', '||comma||', 'worry', '||questionmark||', 'i', 'think', "it's", 'because', '||comma||', 'men', 'know', '||comma||', 'that', 'deep', 'down', 'we', 'have', 'weak', 'sales', 'resistance', '||period||', "we're", 'constantly', 'buying', 'shoes', 'that', 'hurt', 'us', '||comma||', 'pants', 'that', "don't", 'fit', 'right', '||period||', 'men', 'think', '||comma||', '||quotemark||', 'obviously', 'i', 'can', 'be', 'talked', 'into', 'anything', '||period||', 'what', 'if', 'i', 'accidentally', 'wander', 'into', 'some', 'sort', 'of', 'homosexual', 'store', '||comma||', 'thinking', "it's", 'a', 'shoe', 'store', '||comma||', 'and', 'the', 'salesman', 'goes', '||comma||', "'just", 'hold', 'this', "guy's", 'hand', '||comma||', 'walk', 'around', 'the', 'store', 'a', 'little', 'bit', '||comma||', 'see', 'how', 'you', 'feel', '||period||', 'no', 'obligation', '||comma||', 'no', 'pressure', '||comma||', 'just', 'try', 'it', '||period||', 'would', 'you', 'like', 'to', 'see', 'him', 'in', 'a', 'sandal', '||questionmark||', "'", '||quotemark||', '||return||', '||return||', 'song', 'over', 'the', 'end', 'credits:', "joltin'", 'joe', 'dimaggio', '||return||', '||return||', 'http:', '//www', '||period||', 'baseball', '||dash||', 'almanac', '||period||', 'com/poetry/joltinjoedimaggio', '||period||', 'shtml', '||return||', '||return||', 'published:', '1941', '||return||', '||return||', 'performed', 'by:', 'les', 'brown', '||return||', '||return||', 'sung', 'by:', 'betty', 'bonney', '||return||', '||return||', 'jerry:', 'welcome', 'everyone', 'to', 'the', 'room', '||period||', '||period||', '||period||', 'ah', '||comma||', 'the', 'extra', 'button', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'what', 'kind', 'of', 'a', 'sicko', 'would', 'save', 'these', '||period||', '||period||', '||period||', 'have', 'them', 'in', 'a', 'huge', 'file', '||comma||', 'drawers', 'that', 'wide', '||leftparen||', 'small', 'fingers', 'opening', 'imaginary', 'drawers', '||rightparen||', 'where', 'the', 'hell', 'is', 'that', '||period||', '||period||', '||period||', 'i', 'mean', 'is', 'it', 'that', 'hard', 'to', 'get', 'round', 'black', 'buttons', 'that', 'they', 'have', 'to', 'make', 'it', 'into', 'such', 'a', 'great', 'thing', 'like', 'this', '||questionmark||', '||period||', '||period||', '||period||', 'is', 'it', 'such', 'a', 'great', 'jacket', '||period||', '||period||', '||period||', 'the', 'buttons', 'are', 'so', 'unique', '||comma||', 'so', 'one', 'of', 'a', 'kind', '||comma||', "you'll", 'never', 'find', 'them', '||dash||', 'they', 'save', 'you', 'the', 'trouble', 'of', 'knocking', 'your', 'brain', 'off', '||dash||', 'and', 'we', 'know', "they're", 'going', 'to', 'fall', 'off', 'too', "that's", 'the', 'other', 'thing', '||period||', '||period||', '||period||', '||return||', '||return||', 'patrice:', 'everyone', 'in', 'my', "family's", 'creative', '||period||', 'and', 'even', 'though', "i'm", 'working', 'as', 'an', 'accountant', 'now', "i'd", 'really', 'like', 'to', 'eventually', 'live', 'exclusively', 'on', 'my', 'pappe', '||dash||', 'ay', 'mache', '||dash||', 'ay', 'hats', '||return||', '||return||', 'george:', 'i', "don't", 'understand', '||period||', 'paper', 'machay', 'hats', '||questionmark||', '||return||', '||return||', 'patrice:', 'uh', 'uh', '||return||', '||return||', 'george:', 'what', 'if', 'it', 'rains', '||questionmark||', '||return||', '||return||', 'patrice:', "they're", 'art', '||period||', 'you', 'hang', 'them', 'on', 'the', 'wall', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'art', '||exclammark||', '||return||', '||return||', 'patrice:', "it's", 'my', 'creative', 'outlet', '||period||', 'one', 'of', 'my', 'passions', '||period||', '||return||', '||return||', 'george:', 'any', 'money', 'in', 'it', '||questionmark||', '||return||', '||return||', 'patrice:', 'who', 'so', 'belongs', 'only', 'to', 'his', 'age', '||comma||', 'references', 'only', 'popenjays', 'and', 'mumbo', 'jumbos', '||return||', '||return||', 'george:', 'of', 'course', '||comma||', 'right', '||period||', '||return||', '||return||', 'patrice:', 'thomas', 'carlisle', '||comma||', '1864', '||period||', '||return||', '||return||', 'george:', 'tommy', 'c', '||period||', '||return||', '||return||', 'jerry:', 'these', 'are', 'the', 'receipts', 'from', '85', 'and', "i'm", 'going', 'to', 'do', '86', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'sorry', '||period||', 'i', 'thought', 'it', 'was', 'a', 'legitimate', 'charity', '||period||', 'i', "didn't", 'know', "you'd", 'get', 'audited', '||return||', '||return||', 'jerry:', 'i', "don't", 'blame', 'you', '||period||', 'i', 'blame', 'myself', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'blame', 'me', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'i', 'blame', 'you', '||period||', '||return||', '||return||', 'kramer:', "don't", 'blame', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', 'was', 'i', 'supposed', 'to', 'do', '||questionmark||', 'you', 'knew', 'i', 'was', 'on', 'my', 'first', 'date', 'with', 'elaine', '||period||', 'you', 'come', 'barging', 'in', 'here', 'asking', 'me', 'to', 'contribute', 'money', 'for', 'a', 'volcano', 'relief', 'fund', 'for', 'krakatoa', '||period||', '||return||', '||return||', 'kramer:', 'it', 'was', 'supposed', 'to', 'erupt', '||period||', '||return||', '||return||', 'jerry:', 'i', 'find', 'the', 'whole', 'thing', 'very', 'embarrassing', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'my', 'feelings', 'are', 'about', 'this', '||period||', 'i', "don't", 'even', 'pay', 'taxes', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "tha's", 'easy', 'when', 'you', 'have', 'no', 'income', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', '||return||', '||return||', 'jerry:', 'hi', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'do', 'me', 'a', 'favour', 'will', "ya'", '||period||', 'if', 'you', 'insist', 'o', 'making', 'pasta', 'in', 'my', 'apartment', 'please', "don't", 'put', 'the', 'tomato', 'sauce', 'on', 'the', 'pasta', 'while', "it's", 'in', 'the', 'strainer', '||period||', 'all', 'the', 'little', 'squares', 'have', 'hardened', 'red', 'sauce', 'in', 'them', '||period||', '||return||', '||return||', 'elaine:', "what's", 'so', 'funny', '||return||', '||return||', 'jerry:', 'kramer', 'dating', 'your', 'room', 'mate', '||period||', "it's", 'funny', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', "it's", 'a', 'riot', 'alice', '||period||', '||return||', '||return||', 'kramer:', 'when', 'do', 'you', 'pit', 'the', 'sauce', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', 'any', 'other', 'time', '||period||', '||return||', '||return||', 'kramer:', 'i', 'like', 'to', 'strain', 'the', 'sauce', '||period||', '||return||', '||return||', 'elaine:', 'and', '||period||', '||period||', '||period||', 'i', 'could', 'really', 'live', 'without', 'the', 'tribal', 'music', '||period||', '||period||', '||period||', 'and', 'the', 'make', 'out', 'sessions', 'in', 'the', 'living', 'room', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'tina', 'likes', 'the', 'couch', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', 'what', 'is', 'all', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', "he's", 'uh', '||comma||', 'helping', 'me', 'sort', 'my', 'receipts', '||period||', "i'm", 'being', 'audited', '||period||', '||return||', '||return||', 'elaine:', 'o', '||comma||', 'your', 'being', 'auditted', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'contributed', 'money', 'to', 'a', 'charity', 'that', 'turned', 'out', 'to', 'be', 'fraudulent', '||period||', "it's", 'very', 'boring', '||period||', '||return||', '||return||', 'elaine:', 'when', 'was', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'along', 'long', 'time', 'ago', '||comma||', 'in', 'a', 'galaxy', 'far', 'far', 'away', '||period||', '||return||', '||return||', 'elaine:', 'i', 'remember', 'you', 'donated', 'to', 'some', 'volcano', 'thing', 'on', 'our', 'first', 'date', '||period||', '||return||', '||return||', 'jerry:', 'volcano', '||questionmark||', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'wait', 'a', 'minute', '||period||', "don't", 'tell', 'me', 'that', 'that', 'was', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'something', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'think', '||comma||', 'that', 'would', 'impress', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'got', 'it', 'all', 'wrong', '||period||', 'i', 'was', 'thinking', 'only', 'of', 'the', 'poor', 'krakatoans', '||return||', '||return||', 'elaine:', 'like', 'you', 'this', 'donation', 'for', '50', 'bucks', 'and', "i'd", 'start', 'tearing', 'my', 'clothes', 'off', '||questionmark||', '||return||', '||return||', 'jerry:', 'those', 'brave', 'krakatoans', 'east', 'of', 'java', '||period||', 'who', 'sacrifice', 'so', 'much', 'for', 'so', 'long', '||period||', '||return||', '||return||', 'elaine:', 'now', "you're", 'being', 'audited', 'because', 'of', 'it', '||period||', 'you', 'see', "that's", 'karma', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "that's", 'krama', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "waddya'", 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'all', 'taken', 'care', 'of', '||period||', '||return||', '||return||', 'elaine:', 'how', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'jerry:', 'an', 'old', 'friend', 'of', 'mine', '||comma||', 'whom', 'you', 'may', 'have', 'met', '||comma||', 'george', 'costanza', '||comma||', 'has', 'recently', 'become', 'intimate', 'with', 'a', 'female', 'accountant', 'who', 'was', 'formally', 'a', 'highly', 'placed', 'official', 'with', 'an', 'outfit', 'known', 'as', 'the', 'irs', '||period||', 'and', 'as', 'we', 'speak', '||comma||', 'at', 'this', 'very', 'moment', 'he', 'is', 'handing', 'over', 'to', 'her', 'all', 'of', 'my', 'pertinent', 'tax', 'information', '||period||', 'and', 'she', 'has', 'assured', 'us', 'that', 'the', 'matter', 'is', 'well', 'within', 'her', 'field', 'of', 'expertise', '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'she', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'it', 'must', 'be', 'love', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'we', 'should', 'see', 'each', 'other', 'anymore', '||period||', "you're", 'great', 'but', "i'm", "i'm", 'riddled', 'with', 'personal', 'problems', '||period||', '||return||', '||return||', 'patrice:', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', "it's", 'not', 'you', '||period||', "it's", 'me', '||period||', 'i', 'have', 'a', 'fear', 'of', 'commitment', '||period||', 'i', "don't", 'know', 'how', 'to', 'love', '||period||', '||return||', '||return||', 'patrice:', 'you', 'hate', 'my', 'earrings', "don't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', '||return||', '||return||', 'patrice:', 'and', 'you', "didn't", 'comment', 'on', 'the', 'chop', 'sticks', '||period||', '||return||', '||return||', 'george:', 'i', 'love', 'the', 'chop', 'sticks', '||period||', 'i', '||comma||', 'i', 'personally', 'prefer', 'a', 'fork', 'but', 'they', 'look', 'very', 'nice', '||period||', '||return||', '||return||', 'patrice:', "you're", 'not', 'telling', 'me', 'the', 'truth', '||period||', 'i', 'must', 'have', 'done', 'something', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'a', 'fear', 'of', 'intimacy', '||return||', '||return||', 'patrice:', "don't", 'give', 'me', 'cliches', '||period||', 'i', 'have', 'a', 'right', 'to', 'know', '||period||', 'what', 'did', 'i', 'do', 'wrong', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', "it's", 'not', 'you', '||period||', '||period||', '||return||', '||return||', 'patrice:', 'i', 'want', 'the', 'truth', '||period||', '||return||', '||return||', 'george:', 'the', 'truth', '||period||', 'you', 'want', 'the', 'truth', '||questionmark||', 'it', 'is', 'your', 'earrings', 'it', 'is', 'the', 'chopsticks', 'but', "it's", 'so', 'much', 'more', '||period||', "you're", 'pretentious', '||period||', 'you', 'call', 'everyone', 'by', 'their', 'full', 'name', 'you', 'call', 'my', 'doorman', '||comma||', 'sammy', '||comma||', '||quotemark||', 'samuel', '||quotemark||', 'but', 'you', "didn't", 'even', 'say', '||quotemark||', 'samuel', '||quotemark||', 'you', 'went', '||quotemark||', 'sam', '||dash||', 'u', '||dash||', 'el', '||quotemark||', 'papie', '||dash||', 'eh', 'mach', '||dash||', 'eh', 'what', 'is', 'papie', '||dash||', 'ay', 'mach', '||dash||', 'ay', '||questionmark||', '||return||', '||return||', 'patrice:', 'keep', "goin'", '||period||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', 'think', 'i', 'made', 'my', 'point', '||period||', "i'm", 'sorry', 'if', 'i', 'was', 'a', 'little', 'harsh', '||period||', '||return||', '||return||', 'patrice:', 'no', '||comma||', 'i', 'asked', 'for', 'the', 'truth', '||period||', 'thank', 'you', 'for', 'being', 'so', 'honest', '||period||', '||return||', '||return||', 'george:', 'can', 'i', 'uh', '||comma||', 'can', 'i', 'walk', 'you', 'back', 'to', 'work', '||questionmark||', '||return||', '||return||', 'patrice:', 'i', 'prefer', 'to', 'go', 'alone', '||period||', 'how', 'much', 'do', 'i', 'owe', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'please', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'four', 'dollars', 'is', 'f', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'if', 'this', 'audit', 'had', 'happened', 'to', 'me', 'and', 'i', "didn't", 'have', 'this', 'woman', 'to', 'help', 'me', 'i', 'would', 'have', 'killed', 'this', 'man', '||period||', 'i', 'would', 'have', 'strangled', 'the', 'life', 'out', 'of', 'him', 'with', 'my', 'bare', 'hands', '||return||', '||return||', 'elaine:', 'i', "don't", 'blame', "ya'", '||return||', '||return||', 'jerry:', 'have', 'you', 'ever', 'been', 'through', 'an', 'audit', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', "it's", 'hell', '||period||', "it's", 'the', 'financial', 'equivalent', 'of', 'a', 'complete', 'rectal', 'examination', '||period||', 'i', 'would', 'have', 'killed', 'this', 'man', '||period||', 'torn', 'him', 'limb', 'from', 'limb', '||comma||', 'ripped', 'the', 'flesh', 'right', 'off', 'his', 'bones', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'george:', 'george', '||return||', '||return||', 'jerry:', 'come', 'up', '||dash||', 'ah', '||comma||', 'there', 'he', 'is', '||comma||', 'the', 'man', 'himself', '||comma||', 'george', 'louis', 'costanza', '||period||', 'here', 'i', 'am', 'about', 'to', 'go', 'to', 'the', 'electric', 'chair', 'and', 'my', 'oldest', 'friend', 'is', 'dating', 'the', 'governor', '||return||', '||return||', 'george:', 'my', 'whole', 'life', 'has', 'been', 'a', 'complete', 'waste', 'of', 'time', '||comma||', '||leftparen||', 'chuckle', '||rightparen||', '||return||', '||return||', 'jerry:', 'and', "there's", 'so', 'much', 'more', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'now', 'i', 'know', 'what', 'i', 'am', 'supposed', 'to', 'do', '||period||', "it's", 'so', 'simple', '||period||', 'tell', 'the', 'truth', "that's", 'all', '||period||', 'just', 'tell', 'the', 'truth', '||return||', '||return||', 'jerry:', 'so', 'what', 'happened', '||questionmark||', 'you', 'gave', 'her', 'my', 'tax', 'papers', '||questionmark||', '||period||', '||period||', '||period||', 'my', 'papers', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'oh', '||comma||', 'your', 'papers', '||return||', '||return||', 'jerry:', 'what', 'happened', 'you', "didn't", 'give', 'her', 'the', 'papers', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'i', 'broke', 'up', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'broke', 'up', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'being', 'audited', '||exclammark||', 'and', 'you', 'broke', 'up', 'with', 'her', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'ok', '||period||', "it's", 'fine', '||period||', "she'll", 'do', 'it', '||period||', "i'm", 'sure', "she'll", 'still', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'why', 'will', 'she', 'still', 'do', 'it', '||questionmark||', 'she', 'hates', 'you', 'now', '||period||', 'people', "don't", 'do', 'you', 'favors', 'after', 'you', 'dump', 'them', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', 'we', 'left', 'on', 'good', 'terms', '||period||', '||return||', '||return||', 'jerry:', 'how', 'is', 'that', 'possible', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'i', 'uh', '||comma||', 'i', 'told', 'her', 'the', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'george:', "it's", 'ok', '||period||', '||return||', '||return||', 'jerry:', "it's", 'unheard', 'of', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'she', 'asked', 'me', 'to', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'lie', '||exclammark||', 'what', 'did', 'you', 'tell', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'her', 'that', 'she', 'was', 'pretentious', '||period||', '||return||', '||return||', 'jerry:', 'pretentious', '||exclammark||', '||questionmark||', 'the', 'woman', 'has', 'my', 'tax', 'papers', '||period||', 'you', 'told', 'her', 'she', 'was', 'pretentious', '||questionmark||', 'the', 'irs', '||period||', "they're", 'like', 'the', 'mafia', '||period||', 'they', 'can', 'take', 'anything', 'they', 'want', '||return||', '||return||', 'elaine:', 'how', 'would', 'you', 'like', 'it', 'if', 'someone', 'told', 'you', 'the', 'truth', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'what', '||questionmark||', 'what', 'could', 'they', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'there', 'are', 'plenty', 'of', 'things', 'to', 'say', '||period||', '||return||', '||return||', 'george:', 'like', 'what', '||questionmark||', "i'm", 'bald', '||questionmark||', 'what', 'is', 'it', 'specifically', '||questionmark||', 'is', '||comma||', 'is', 'there', 'an', 'odor', "i'm", 'not', 'aware', 'of', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'please', '||period||', '||return||', '||return||', 'george:', 'give', 'me', 'one', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'forget', 'it', '||period||', 'you', 'are', 'very', 'careful', 'with', 'money', '||period||', '||return||', '||return||', 'george:', "i'm", 'cheap', '||questionmark||', 'you', 'think', "i'm", 'cheap', '||questionmark||', 'how', 'could', 'you', 'say', 'that', 'to', 'me', '||questionmark||', 'i', "can't", 'believe', 'this', '||period||', 'how', 'could', 'you', 'say', 'that', 'to', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'asked', 'me', 'to', '||period||', '||return||', '||return||', 'george:', 'you', 'should', 'have', 'lied', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', 'so', 'should', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||comma||', 'what', 'happened', 'to', 'my', 'papers', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'ignoring', 'jerry', '||rightparen||', 'i', 'mean', "i'm", 'not', 'really', 'working', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'when', 'i', 'was', 'working', 'i', 'spent', 'baby', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', 'champagne', '||comma||', 'limos', '||comma||', 'cigars', '||period||', 'what', 'happened', 'to', 'the', 'papers', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'put', 'them', 'in', 'her', 'pocketbook', '||period||', 'i', 'guess', 'she', 'took', 'them', 'with', 'her', '||period||', '||return||', '||return||', 'elaine:', 'pocketbook', 'or', 'a', 'handbag', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'relevant', '||questionmark||', 'she', 'took', 'them', '||period||', 'call', 'her', 'office', '||period||', '||return||', '||return||', 'george:', 'give', 'me', 'the', 'phone', '||period||', '||leftparen||', 'dials', '||rightparen||', 'yea', '||comma||', 'hi', 'i', 'would', 'like', 'to', 'speak', 'to', 'patrice', '||period||', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||period||', '||period||', '||period||', 'oh', 'really', '||questionmark||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'ok', '||comma||', 'thank', 'you', '||comma||', '||period||', '||period||', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'never', 'came', 'back', 'from', 'lunch', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'no', 'good', '||period||', 'this', 'is', 'no', 'good', '||period||', 'call', 'her', 'house', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'dials', '||rightparen||', 'hi', '||comma||', 'are', 'you', 'ok', '||questionmark||', 'no', '||comma||', 'no', '||comma||', '||period||', '||period||', 'huh', '||comma||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'she', 'hung', 'up', '||period||', '||return||', '||return||', 'jerry:', 'not', 'good', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "there's", 'nothing', 'to', 'be', 'worried', 'about', '||period||', "she's", 'just', 'a', 'little', 'annoyed', 'right', 'now', '||period||', 'tomorrow', "i'll", 'personally', 'go', 'over', 'there', '||period||', "i'll", 'apologize', '||period||', "i'll", 'get', 'the', 'papers', '||period||', "don't", 'worry', '||period||', "don't", 'worry', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'not', 'good', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'a', 'windshield', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'see', 'that', '||period||', "what's", 'it', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'found', 'it', 'on', 'the', 'road', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||leftparen||', 'to', 'buzzer', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'from', 'intercom', '||rightparen||', 'i', 'just', 'finished', 'working', 'out', 'are', 'you', 'busy', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'can', 'you', 'believe', 'somebody', 'threw', 'this', 'out', '||questionmark||', 'you', 'know', "i'm", 'going', 'to', 'make', 'a', 'coffee', 'table', 'out', 'of', 'this', 'and', 'surprise', 'tina', '||period||', '||return||', '||return||', 'jerry:', "wouldn't", 'it', 'be', 'invisible', '||questionmark||', 'i', 'mean', '||comma||', 'what', '||comma||', 'are', 'you', 'going', 'to', 'just', 'sense', "it's", 'in', 'front', 'of', 'the', 'couch', '||questionmark||', '||return||', '||return||', 'kramer:', 'wow', '||return||', '||return||', 'elaine:', 'hell', '||dash||', 'oo', '||return||', '||return||', 'kramer:', 'hell', '||dash||', 'oo', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', 'two', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "haven't", 'told', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'tell', 'me', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', 'go', 'ahead', '||comma||', 'tell', 'him', '||period||', '||return||', '||return||', 'kramer:', 'i', '||comma||', 'i', 'saw', 'her', 'naked', '||period||', '||return||', '||return||', 'elaine:', 'he', 'saw', 'me', 'naked', '||period||', 'kramer', '||comma||', '||period||', '||period||', '||period||', 'saw', 'me', 'naked', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', '||period||', '||period||', '||period||', 'it', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'elaine:', 'who', 'walks', 'into', 'a', "woman's", 'bedroom', 'without', 'knocking', '||period||', 'i', 'want', 'to', 'know', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'it', 'was', 'a', 'closet', '||period||', '||return||', '||return||', 'jerry:', 'completely', 'naked', '||questionmark||', '||return||', '||return||', 'kramer:', 'completely', 'naked', '||period||', '||return||', '||return||', 'elaine:', 'jerrryyy', '||comma||', 'how', 'can', 'i', 'go', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', "i'll", 'tell', 'you', 'what', '||period||', 'if', "it's", 'going', 'to', 'make', 'you', 'feel', 'any', 'better', 'you', 'can', 'see', 'me', 'naked', '||period||', '||return||', '||return||', 'elaine:', 'no', 'thanks', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'want', 'you', 'to', 'see', 'me', 'naked', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', 'no', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'want', 'to', 'show', 'you', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'jerry', '||exclammark||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'just', 'a', 'second', 'lets', 'not', 'lose', 'our', 'heads', 'here', '||period||', 'kramer', 'you', 'know', 'you', 'are', 'always', 'welcome', 'in', 'my', 'home', 'but', 'as', 'far', 'as', 'mr', '||period||', 'johnson', 'is', 'concerned', '||comma||', "that's", 'another', 'story', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'a', 'windshield', '||period||', "it's", 'going', 'to', 'be', 'your', 'new', 'coffee', 'table', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', "i'm", 'going', 'to', 'kill', 'myself', 'on', 'that', 'thiing', '||period||', 'you', "can't", 'even', 'see', 'it', '||period||', '||return||', '||return||', 'jerry:', "you'll", 'sense', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'happened', '||questionmark||', 'was', 'she', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'she', "wasn't", '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'get', 'my', 'papers', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "didn't", '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'where', 'is', 'she', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'mental', 'institution', '||period||', '||return||', '||return||', 'jerry:', 'why', 'is', 'it', 'so', 'difficult', '||comma||', 'uncomfortable', '||comma||', 'to', 'be', 'naked', '||period||', "it's", 'because', 'when', 'you', 'have', 'clothes', 'on', 'you', 'can', 'always', 'kinda', 'make', 'those', 'little', 'adjustments', 'which', 'people', 'like', 'to', 'do', '||period||', '||period||', '||period||', 'you', 'feel', 'like', "you're", 'getting', 'it', 'together', '||comma||', 'yeah', '||comma||', 'yeah', 'pretty', 'good', '||leftparen||', 'pulling', 'at', 'lapels', '||comma||', 'pockets', 'etc', '||period||', '||rightparen||', 'feeling', 'good', 'looking', 'good', 'but', 'when', "you're", 'naked', "it's", 'like', "it's", 'so', 'final', "you're", '||comma||', 'well', "that's", 'it', '||period||', '||leftparen||', 'no', 'movements', '||rightparen||', "there's", 'nothing', 'else', 'i', 'can', 'do', '||period||', "that's", 'why', 'i', 'like', 'to', 'wear', 'a', 'belt', 'when', "i'm", 'naked', '||period||', 'cause', 'i', 'feel', 'it', 'gives', 'me', 'something', '||comma||', 'i', 'know', "i'm", 'naked', '||comma||', 'but', 'you', 'know', '||comma||', '||leftparen||', 'tugging', 'and', 'lifting', 'belt', '||rightparen||', 'i', 'like', 'to', 'get', 'pockets', 'to', 'hang', 'off', 'of', 'the', 'belt', 'that', 'would', 'be', '||comma||', "wouldn't", 'that', 'be', 'the', 'ultimate', '||questionmark||', 'to', 'be', 'naked', 'and', 'still', 'be', 'able', 'to', 'do', 'this', '||leftparen||', 'hand', 'in', 'pocket', '||rightparen||', 'i', 'think', 'that', 'would', 'really', 'help', 'a', 'lot', '||period||', '||return||', '||return||', 'jerry:', 'a', 'mental', 'institution', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'they', 'do', 'in', 'there', '||questionmark||', 'did', 'you', 'see', "coocoo's", 'nest', '||questionmark||', 'they', 'put', 'those', 'electrodes', 'in', 'your', 'head', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'really', 'a', 'mental', 'institution', '||period||', "it's", 'more', 'like', 'a', 'depression', 'clinic', '||period||', 'she', 'went', 'out', 'to', 'woodhaven', 'and', 'checked', 'herself', 'in', '||period||', "i'm", '||comma||', "i'm", 'sick', 'over', 'this', '||period||', '||return||', '||return||', 'elaine:', 'who', 'told', 'you', 'this', '||return||', '||return||', 'george:', 'her', 'roommate', '||period||', "i've", 'driven', 'women', 'to', 'lesbianism', 'before', 'but', 'never', 'to', 'a', 'mental', 'institution', '||period||', '||return||', '||return||', 'kramer:', 'my', 'friend', 'bob', 'sacamano', 'had', 'shock', 'treatments', '||period||', 'but', 'his', 'synapses', 'were', 'so', 'large', '||comma||', 'it', 'had', 'no', 'effect', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'hate', 'to', 'raise', 'a', 'crass', 'financial', 'concern', 'but', 'was', 'there', 'any', 'information', 'as', 'to', 'the', 'where', 'abouts', 'of', 'my', 'papers', '||exclammark||', '||return||', '||return||', 'george:', 'she', 'put', 'them', 'in', 'her', 'pocket', 'book', '||period||', 'she', 'probably', 'took', 'them', 'out', 'there', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'can', 'we', 'go', 'out', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'woodhaven', '||period||', '||return||', '||return||', 'george:', 'we', 'could', '||period||', '||return||', '||return||', 'george:', "i'm", 'very', 'nervous', 'about', 'this', '||period||', "i've", 'never', 'spoken', 'to', 'a', 'mental', 'patient', 'before', '||period||', '||return||', '||return||', 'jerry:', 'my', 'cousin', 'douglas', 'was', 'in', 'a', 'place', 'like', 'this', 'one', 'time', '||period||', 'he', 'came', 'over', 'to', 'my', 'house', 'for', 'dinner', '||period||', 'there', 'was', 'no', 'soda', 'and', 'he', 'went', 'bezerk', '||period||', 'he', 'was', "screamin'", '||quotemark||', "where's", 'the', 'pepsi', '||comma||', "where's", 'the', 'pepsi', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', 'i', 'should', 'be', 'in', 'a', 'place', 'like', 'this', '||period||', 'i', 'envy', 'this', 'woman', '||period||', "ya'", 'get', 'to', 'wear', 'slippers', 'all', 'day', '||period||', 'friends', 'visit', '||period||', 'they', 'pity', 'you', '||period||', 'pity', 'is', 'very', 'underrated', '||period||', 'i', 'like', 'it', "it's", 'good', '||period||', 'plus', 'they', 'give', 'you', 'those', 'word', 'association', 'tests', '||period||', 'i', 'love', 'those', '||period||', '||return||', '||return||', 'jerry:', "that'd", 'be', 'great', '||period||', "there's", 'no', 'wrong', 'answer', '||period||', '||return||', '||return||', 'george:', 'potato', '||return||', '||return||', 'jerry:', 'tuberculosis', '||return||', '||return||', 'george:', 'blanket', '||return||', '||return||', 'jerry:', 'leroy', '||return||', '||return||', 'george:', 'grass', '||return||', '||return||', 'jerry:', 'tuberculosis', '||return||', '||return||', 'george:', 'oh', '||comma||', 'boy', '||period||', 'here', 'she', 'comes', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'will', 'you', 'please', 'put', 'something', 'on', '||period||', '||return||', '||return||', 'kramer:', 'listen', 'uh', '||comma||', 'you', 'want', 'some', 'leftovers', '||questionmark||', 'i', 'made', 'some', 'african', 'food', '||period||', "there's", '||comma||', 'yambalas', 'and', 'uh', '||comma||', 'sambusa', '||period||', '||return||', '||return||', 'tina:', 'kramer', '||comma||', 'are', 'you', 'coming', 'back', 'to', 'bed', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', "i'll", 'be', 'right', 'there', 'baby', '||period||', '||return||', '||return||', 'tina:', 'oh', '||comma||', 'hi', 'elaine', '||period||', '||leftparen||', 'returns', "elaine's", 'ear', 'rings', '||rightparen||', 'what', 'did', 'you', 'think', 'of', 'the', 'coffee', 'table', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'invisible', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'is', 'everything', 'cool', '||questionmark||', 'or', 'what', '||questionmark||', '||return||', '||return||', 'tina:', 'yeah', '||comma||', 'um', '||comma||', 'you', 'seem', 'little', 'bit', 'dysfunctional', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', '||return||', '||return||', 'tina:', 'come', 'on', 'elaine', '||period||', 'just', 'tell', 'us', 'the', 'truth', '||period||', '||return||', '||return||', 'elaine:', 'the', 'truth', '||exclammark||', '||comma||', 'you', 'want', 'the', 'truth', '||questionmark||', '||return||', '||return||', 'patrice:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'my', 'friend', 'jerry', '||period||', '||return||', '||return||', 'patrice:', 'why', 'are', 'you', 'talking', 'like', 'that', '||questionmark||', 'and', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'jerry:', 'want', '||comma||', 'want', '||questionmark||', 'what', 'could', 'i', 'possibly', 'want', '||questionmark||', 'uh', '||comma||', 'i', 'just', 'came', 'because', 'i', '||comma||', 'i', 'heard', 'so', 'many', 'nice', 'things', 'about', 'you', 'from', 'george', '||period||', '||return||', '||return||', 'patrice:', 'george', 'thinks', "i'm", 'pretentious', '||period||', '||return||', '||return||', 'george:', 'pretentious', '||questionmark||', 'who', '||comma||', 'who', "isn't", 'pretentious', '||questionmark||', 'ha', '||comma||', 'ha', '||comma||', 'if', 'everyone', 'who', 'was', 'pretentious', 'was', 'in', 'a', 'mental', 'institution', '||comma||', '||period||', '||period||', '||period||', 'uh', '||comma||', 'obviously', 'this', "isn't", 'a', 'mental', 'institution', '||period||', '||return||', '||return||', 'patrice:', "you're", 'just', 'trying', 'to', 'take', 'it', 'all', 'back', 'because', "you're", 'feeling', 'guilty', "i'm", 'in', 'here', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'not', 'it', 'at', 'all', '||period||', '||return||', '||return||', 'patrice:', "don't", 'lie', 'george', '||period||', '||return||', '||return||', 'george', ':', "i'm", 'not', 'a', 'lier', '||exclammark||', '||return||', '||return||', 'george:', 'uh', '||comma||', "we're", 'cool', '||period||', "everything's", 'cool', '||leftparen||', 'to', 'security', 'attendent', '||rightparen||', '||return||', '||return||', 'jerry:', 'just', 'chatting', '||period||', 'friendly', '||period||', '||return||', '||return||', 'george:', 'all', 'righty', '||comma||', 'no', 'reason', 'for', 'us', 'to', 'uh', '||comma||', 'raise', 'our', 'voices', '||period||', '||return||', '||return||', 'patrice:', 'i', 'know', 'what', 'you', 'said', '||period||', 'you', "can't", 'change', 'that', '||period||', '||return||', '||return||', 'george:', 'what', 'i', 'said', '||questionmark||', 'i', 'say', 'stupid', 'things', 'all', 'the', 'time', 'i', "can't", 'go', 'two', 'minutes', 'without', 'saying', 'stupid', 'things', '||period||', '||return||', '||return||', 'jerry:', "it's", 'one', 'stupid', 'thing', 'after', 'another', '||period||', 'so', 'let', 'me', 'ask', 'you', '||comma||', 'when', 'you', 'come', 'to', 'one', 'of', 'these', 'places', '||comma||', 'what', 'do', 'you', 'bring', 'your', 'pocketbook', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'should', 'be', 'the', 'one', 'criticizing', 'me', '||period||', 'i', '||comma||', "i'm", 'lucky', 'to', 'even', 'know', 'someone', 'like', 'you', '||period||', '||return||', '||return||', 'patrice:', 'you', 'mean', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', 'i', 'mean', 'that', '||period||', 'i', 'am', 'incapable', 'of', 'guile', '||period||', '||return||', '||return||', 'jerry:', "he's", 'never', 'guiled', '||period||', 'you', 'know', 'some', 'women', 'keep', 'a', 'lot', 'of', 'important', 'papers', 'in', 'their', '||comma||', 'uh', '||comma||', 'pocket', 'books', '||period||', 'like', 'for', 'example', 'oh', '||comma||', 'someone', "else's", 'personal', 'financial', 'papers', '||period||', '||return||', '||return||', 'patrice:', 'papers', '||questionmark||', 'oh', '||comma||', 'jerry', '||comma||', "you're", 'the', 'jerome', 'with', 'the', 'tax', 'problem', '||period||', 'you', 'know', 'after', 'that', 'day', 'with', 'george', 'i', 'got', 'so', 'cuckoo', 'i', 'threw', 'out', 'all', 'your', 'papers', '||period||', 'so', "i'd", 'love', 'to', 'help', 'you', 'but', "i'll", 'need', 'the', 'copies', '||period||', '||return||', '||return||', 'jerry:', 'there', 'are', 'no', 'copies', '||period||', '||return||', '||return||', 'patrice:', 'so', 'are', 'you', 'saying', 'you', 'want', 'to', 'continue', 'seeing', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'makes', 'copies', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'truth', 'is', '||period||', '||period||', '||period||', 'i', 'think', 'you', 'make', '||period||', '||period||', '||period||', 'a', 'very', 'nice', 'couple', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', '||return||', '||return||', 'tina:', 'kramer', '||comma||', '||return||', '||return||', 'tina:', 'here', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'lets', 'go', 'to', 'the', 'couch', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'phone', '||rightparen||', 'yes', '||comma||', "i'm", 'trying', 'to', 'get', 'a', 'copy', 'of', 'a', 'receipt', 'for', 'a', 'computer', 'that', 'i', 'bought', 'there', '||period||', '||period||', '||period||', '||period||', 'it', 'was', '1987', '||period||', '||period||', '||period||', 'i', 'remember', 'i', 'talked', 'to', 'a', 'guy', '||dash||', 'he', 'had', 'like', 'a', 'maroon', 'sport', 'jacket', '||dash||', 'and', 'he', 'might', 'have', 'had', 'a', 'toupee', '||dash||', 'oh', '||comma||', 'it', 'was', 'a', 'weave', '||dash||', 'ok', 'uh', '||comma||', 'then', "i'll", 'come', 'bye', 'ok', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'anybody', 'want', 'to', 'take', 'a', 'walk', 'down', 'to', '48th', 'street', '||questionmark||', 'i', 'think', 'i', 'may', 'have', 'tracked', 'down', 'another', 'receipt', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", '||period||', 'i', 'have', 'to', 'go', 'visit', 'tina', 'in', 'the', 'hospital', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'going', 'to', 'a', 'poetry', 'reading', 'with', 'patrice', 'first', 'time', 'poets', '||comma||', 'in', 'a', 'burnt', 'out', 'building', '||comma||', 'down', 'by', 'the', 'docks', '||comma||', 'supposed', 'to', 'be', 'good', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'are', 'you', 'going', 'to', 'the', 'hospital', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'suppose', 'i', 'am', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'great', '||comma||', 'great', 'uh', '||comma||', "we'll", 'share', 'a', 'cab', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'by', '48th', 'st', '||period||', 'you', 'can', 'give', 'me', 'a', 'ride', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "i'm", 'getting', 'in', 'on', 'that', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', "you're", "chippin'", 'in', '||period||', '||return||', '||return||', 'george:', "you're", 'going', 'that', 'way', 'anyway', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'audited', 'last', 'year', '||period||', 'at', 'first', 'i', 'thought', 'well', '||comma||', 'irs', 'kinda', 'sounds', 'like', 'toys', 'r', 'us', 'maybe', "won't", 'be', 'so', 'bad', '||period||', 'maybe', 'they', 'have', 'a', 'sense', 'of', 'fun', 'about', 'it', '||comma||', 'you', 'know', '||period||', 'but', "it's", "it's", 'bad', '||period||', "it's", 'an', 'ordeal', '||period||', 'and', 'they', "don't", 'do', 'anything', 'to', 'keep', 'your', 'spirits', 'up', 'through', 'the', 'ordeal', '||period||', 'i', 'think', 'they', 'should', 'take', 'all', 'your', 'receipts', 'and', 'put', 'them', 'in', 'one', 'of', 'those', 'big', 'lucite', 'sweepstake', 'drums', 'and', 'just', 'kinda', 'crank', 'it', 'around', 'there', '||period||', 'you', 'know', 'give', 'me', 'a', 'feeling', 'like', 'you', 'might', 'win', 'something', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'then', 'they', 'can', 'pull', 'them', 'out', 'one', 'by', 'one', 'and', 'go', '||quotemark||', 'oh', '||comma||', "i'm", 'sorry', "that's", 'another', 'illegal', 'deduction', '||period||', 'but', 'we', 'do', 'have', 'some', 'lovely', 'parting', 'gifts', 'for', 'you', '||period||', 'jail', '||exclammark||', '||quotemark||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'i', 'have', 'never', 'seen', 'an', 'old', 'person', 'in', 'a', 'new', 'bathing', 'suit', 'in', 'my', 'life', '||period||', 'i', "don't", 'know', 'where', 'they', 'get', 'their', 'bathing', 'suits', '||comma||', 'but', 'my', 'father', 'has', 'bathing', 'suits', 'from', 'other', 'centuries', '||period||', 'my', 'parents', 'live', 'in', 'florida', '||comma||', 'and', 'if', 'you', 'go', 'down', 'there', 'and', 'you', 'forget', 'your', 'bathing', 'suits', 'then', 'they', 'want', 'you', 'to', 'wear', 'one', 'of', 'theirs', '||period||', 'you', 'know', 'how', 'that', 'gets', '||questionmark||', '||quotemark||', 'you', 'need', 'trunks', 'son', '||questionmark||', "i've", 'got', 'trunks', 'for', 'you', '||period||', 'you', 'can', 'wear', 'my', 'trunks', '||period||', '||quotemark||', 'fathers', "don't", 'wear', 'bathing', 'suits', '||comma||', 'they', 'wear', 'trunks', '||period||', "it's", 'kind', 'of', 'the', 'same', 'thing', 'a', 'tree', 'would', 'wear', 'if', 'it', 'went', 'swimming', '||period||', 'so', 'i', 'get', 'in', 'the', 'water', 'with', 'in', 'thing', 'and', "it's", 'like', 'floating', 'around', 'me', 'somewhere', '||period||', 'did', 'you', 'ever', 'put', 'on', 'a', 'bathing', 'suit', 'that', 'you', "don't", 'even', 'know', 'exactly', 'where', 'you', 'are', 'inside', 'the', 'bathing', 'suit', '||questionmark||', 'you', 'bump', 'into', 'somebody', 'you', 'know', '||quotemark||', 'no', "i'm", 'parasailing', '||comma||', "i'm", 'waiting', 'for', 'the', 'boat', 'to', 'come', 'back', '||period||', '||quotemark||', '||return||', '||return||', '[setting:', 'florida', '||comma||', 'evening', '||comma||', 'condo', 'of', "jerry's", 'parents]', '||return||', '||return||', 'helen:', '||leftparen||', 'looking', 'by', 'the', 'window', '||rightparen||', 'they', 'were', 'supposed', 'to', 'be', 'here', 'at', '730', '||period||', 'call', 'the', 'airlines', 'again', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'searching', 'in', 'a', 'kitchen', 'drawer', '||rightparen||', 'what', 'happened', 'to', 'the', 'scotch', 'tape', '||questionmark||', 'who', 'takes', 'the', 'scotch', 'tape', '||questionmark||', 'nobody', 'returns', 'anything', 'around', 'here', '||period||', '||return||', '||return||', 'helen:', 'oh', 'i', 'think', "that's", 'them', '||exclammark||', '||return||', '||return||', 'morty:', 'you', 'what', "i'll", 'do', 'next', 'time', '||questionmark||', "i'll", 'hide', 'it', 'so', 'nobody', 'can', 'find', 'it', '||period||', '||return||', '||return||', 'all:', 'hi', '||comma||', 'welcome', '||comma||', 'greetings', '||comma||', 'hugs', '||comma||', 'etc', '||period||', '||return||', '||return||', 'morty:', 'welcome', 'to', 'florida', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', 'mr', '||period||', 'seinfeld', '||exclammark||', '||leftparen||', 'hug', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "there's", 'the', 'old', 'man', '||exclammark||', '||leftparen||', 'hug', '||rightparen||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'what', 'took', 'you', 'so', 'long', '||questionmark||', '||return||', '||return||', 'jerry:', 'ahh', '||comma||', 'we', 'waited', '35', 'minutes', 'in', 'the', 'rent', '||dash||', 'a', '||dash||', 'car', 'place', '||period||', '||return||', '||return||', 'helen:', 'i', "don't", 'know', 'why', 'you', 'had', 'to', 'rent', 'a', 'car', '||period||', 'we', 'would', 'have', 'picked', 'you', 'up', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'helen:', 'you', 'could', 'have', 'used', 'our', 'car', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'wanna', 'use', 'your', 'car', '||period||', '||return||', '||return||', 'helen:', "what's", 'wrong', 'with', 'our', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', "it's", 'a', 'fine', 'car', '||period||', 'what', 'if', 'you', 'wanna', 'use', 'it', '||questionmark||', '||return||', '||return||', 'helen:', 'we', "don't", 'use', 'it', '||period||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'talking', '||questionmark||', 'we', 'use', 'it', '||period||', '||return||', '||return||', 'helen:', 'if', 'you', 'were', 'using', 'it', '||comma||', 'we', "wouldn't", 'use', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'would', 'you', 'do', '||questionmark||', "you'd", 'hitch', '||questionmark||', '||return||', '||return||', 'helen:', 'how', 'much', 'is', 'a', 'rent', '||dash||', 'a', '||dash||', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '25', 'bucks', 'a', 'day', '||period||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', "you're", 'crazy', '||period||', '||return||', '||return||', 'morty:', 'plus', 'the', 'insurance', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "didn't", 'get', 'the', 'insurance', '||period||', '||return||', '||return||', 'morty:', 'how', 'could', 'you', 'not', 'get', 'the', 'insurance', '||questionmark||', '||return||', '||return||', 'helen:', "we'll", 'pay', 'for', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'paying', 'for', 'it', '||period||', '||return||', '||return||', 'helen:', 'morty', '||period||', '||leftparen||', 'asking', 'him', 'to', 'back', 'her', '||period||', 'he', "doesn't", '||rightparen||', '||return||', '||return||', 'jerry:', 'god', "it's", 'so', 'hot', 'in', 'here', '||period||', 'why', "don't", 'you', 'put', 'on', 'the', 'air', 'conditioning', '||questionmark||', '||return||', '||return||', 'helen:', 'you', "don't", 'need', 'the', 'air', 'conditioner', '||period||', 'so', '||comma||', 'you', 'have', 'your', 'speech', 'all', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'a', 'speech', '||period||', 'do', 'i', 'have', 'to', 'make', 'a', 'speech', '||questionmark||', '||return||', '||return||', 'helen:', 'of', 'course', '||comma||', "they're", 'giving', 'a', 'testimonial', 'for', 'your', 'father', '||period||', 'you', 'could', 'do', 'your', 'comic', 'routines', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'ironically', '||rightparen||', 'oh', 'yeah', '||comma||', 'that', 'will', 'go', 'over', 'real', 'well', 'with', 'that', 'crowd', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'by', 'the', 'window', '||rightparen||', 'ooh', '||comma||', 'you', 'have', 'a', 'lake', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'lake', "isn't", 'real', '||period||', '||return||', '||return||', 'helen:', 'the', 'lake', 'is', 'real', '||period||', '||return||', '||return||', 'morty:', 'are', 'you', 'kidding', '||questionmark||', 'they', 'built', 'the', 'lake', '||period||', '||return||', '||return||', 'helen:', 'but', "it's", 'real', '||period||', "it's", 'water', '||period||', '||return||', '||return||', 'helen:', 'where', 'are', 'you', 'going', 'with', 'those', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'put', "elaine's", 'stuff', 'in', 'here', '||period||', '||return||', '||return||', 'helen:', "don't", 'sleep', 'in', 'there', '||period||', 'you', 'can', 'you', 'use', 'the', 'bedroom', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'take', 'your', 'bedroom', '||period||', '||return||', '||return||', 'helen:', "i'm", 'up', 'at', '6', "o'clock", 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'kick', 'you', 'out', 'of', 'your', 'bed', '||period||', '||return||', '||return||', 'helen:', 'we', "don't", 'even', 'sleep', '||period||', '||return||', '||return||', 'jerry:', 'ma', '||period||', '||return||', '||return||', 'helen:', 'but', 'this', 'is', 'sofa', 'bed', '||comma||', "you'll", 'be', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'morty', '||rightparen||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'morty:', 'why', 'should', 'i', 'be', 'comfortable', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'helen', '||rightparen||', 'what', 'about', 'him', '||questionmark||', '||return||', '||return||', 'helen:', "don't", 'worry', '||comma||', "he's", 'comfortable', '||period||', '||return||', '||return||', 'morty:', "i'll", 'sleep', 'standing', 'up', '||period||', "i'll", 'be', 'fine', '||period||', '||return||', '||return||', 'helen:', 'will', 'you', 'stop', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'll", 'just', 'stay', 'in', 'here', '||period||', '||leftparen||', 'goes', 'in', 'the', 'guest', 'room', '||rightparen||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', '||leftparen||', 'asking', 'jerry', 'to', 'go', 'in', 'the', 'kitchen', 'so', 'elaine', "won't", 'hear', '||rightparen||', 'jerry', '||period||', 'you', "don't", 'have', 'to', 'stay', 'on', 'the', 'couch', 'on', 'my', 'account', '||period||', 'the', 'two', 'of', 'you', 'could', 'stay', 'in', 'there', 'together', '||period||', '||return||', '||return||', 'jerry:', 'na', '||comma||', "that's", 'not', 'such', 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'helen:', 'well', 'i', 'tought', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'not', 'now', '||period||', "she's", 'right', 'inside', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'quieter', '||rightparen||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'we', 'decided', 'we', "don't", 'really', 'work', 'as', 'a', 'couple', '||period||', '||return||', '||return||', 'helen:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'comes', 'to', 'the', 'kitchen', 'and', 'with', 'a', 'loud', 'voice', '||rightparen||', 'why', 'are', 'you', 'whispering', '||questionmark||', '||return||', '||return||', 'jerry:', 'shh', '||exclammark||', 'nothing', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'helen:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'still', 'loud', '||rightparen||', 'what', 'about', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tries', 'to', 'explain', 'to', 'morty', 'but', 'elaine', 'then', 'comes', 'out', 'of', 'the', 'guest', 'room', 'to', 'get', 'more', 'luggage', '||comma||', 'so', 'he', 'fakes', 'a', 'conversation', '||rightparen||', '||period||', '||period||', '||period||', 'but', 'you', 'know', '||comma||', 'look', 'at', 'the', 'sun', '||dash||', 'dried', 'tomatoes', '||period||', 'where', 'were', 'they', 'five', 'years', 'ago', '||questionmark||', 'it', 'just', 'goes', 'to', 'show', 'you', '||period||', 'you', 'never', 'know', 'what', '||period||', '||period||', '||period||', 'huh', '||leftparen||', 'waiting', 'for', 'elaine', 'to', 'go', 'back', 'in', 'the', 'guest', 'room', '||rightparen||', 'you', 'know', '||period||', '||period||', '||period||', 'huh', '||period||', '||period||', '||period||', 'what', 'could', 'happen', 'to', 'a', 'vegetable', '||period||', 'it', 'could', 'just', 'take', 'right', 'off', 'at', 'any', 'time', '||period||', '||leftparen||', 'morty', 'finally', 'gets', 'it', '||period||', 'so', 'jerry', 'goes', 'on', 'quieter', '||rightparen||', "we've", 'tried', 'all', 'kind', 'of', 'arrangements', '||comma||', 'but', 'we', "can't", 'seem', 'to', 'be', 'friends', 'when', 'we', 'sleep', 'together', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'morty', 'goes', 'on', 'louder', '||exclammark||', 'did', 'he', 'ever', 'whisper', 'in', 'any', 'episode', '||questionmark||', '||dash||', '||rightparen||', 'why', 'do', 'you', 'need', 'more', 'friends', '||questionmark||', "you've", 'got', 'plenty', 'of', 'friends', '||period||', '||return||', '||return||', 'helen:', "he's", 'an', 'idealist', '||period||', '||return||', '||return||', 'morty:', 'what', 'the', 'hell', 'are', 'you', 'looking', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'looking', '||period||', "that's", 'the', 'point', '||period||', 'i', 'like', 'looking', '||period||', '||return||', '||return||', 'helen:', 'he', 'likes', 'looking', '||period||', '||return||', '||return||', 'morty:', 'so', 'look', '||period||', '||return||', '||return||', 'helen:', 'but', 'how', 'long', 'can', 'you', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'for', 'the', 'record', '||period||', '||return||', '||return||', 'helen:', 'you', 'know', 'your', 'father', "wouldn't", 'say', 'so', 'but', "he's", 'really', 'glad', 'you', 'came', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'helen:', 'this', 'is', 'a', 'big', 'thing', 'for', 'him', '||period||', 'outgoing', 'president', 'of', 'the', 'condo', 'association', '||period||', '||return||', '||return||', '||leftparen||', 'knock', 'on', 'door:', 'this', 'is', 'jack', 'and', 'doris', '||comma||', 'neigboors', '||rightparen||', '||return||', '||return||', 'morty:', 'aha', '||exclammark||', '||return||', '||return||', 'doris:', 'so', 'they', 'arrived', 'safely', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'remember', 'jack', 'and', 'doris', '||questionmark||', '||return||', '||return||', 'jerry:', 'nice', 'to', 'see', 'you', '||period||', 'this', 'is', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jack:', 'so', 'jerry', '||comma||', 'you', 'came', 'all', 'the', 'way', 'down', 'here', 'for', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'and', 'scuba', 'diving', '||period||', '||return||', '||return||', 'helen:', 'scuba', 'diving', '||questionmark||', "who's", 'going', 'scuba', 'diving', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'going', 'scuba', 'diving', '||period||', "we'll", 'be', 'back', 'in', 'time', '||period||', '||return||', '||return||', 'helen:', 'what', 'do', 'you', 'have', 'to', 'go', 'scuba', 'diving', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'for', 'fun', '||period||', '||return||', '||return||', 'helen:', 'for', 'fun', '||questionmark||', '||return||', '||return||', 'morty:', 'jack', 'have', 'some', 'spong', 'cake', '||period||', '||return||', '||return||', 'jack:', 'no', '||period||', 'thanks', '||comma||', 'no', '||period||', '||return||', '||return||', 'morty:', 'jack', 'is', 'emceeing', 'tomorrow', '||period||', "he's", 'in', 'charge', 'of', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'jack:', 'so', 'jerry', '||comma||', 'your', 'mother', 'told', 'me', "you're", 'gonna', 'do', 'one', 'your', 'little', 'comedy', 'skits', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jack:', 'no', '||questionmark||', 'listen', 'morty', 'you', 'wanna', 'settle', 'up', 'for', 'last', 'night', '||questionmark||', '||leftparen||', 'morty', 'nods', '||rightparen||', 'all', 'right', '||period||', 'i', 'owe', 'you', '19', '||period||', '45$', '||leftparen||', 'he', 'gets', 'his', 'checks', 'book', 'and', 'a', 'pen', 'from', 'his', 'pocket', '||rightparen||', '||period||', '||return||', '||return||', 'morty:', 'what', 'did', 'you', 'have', '||questionmark||', 'you', 'had', 'the', 'minute', 'steak', '||questionmark||', '||return||', '||return||', 'jack:', 'yeah', '||period||', '||return||', '||return||', 'morty:', 'did', 'you', 'have', 'a', 'coke', 'or', 'what', '||questionmark||', '||return||', '||return||', 'jack:', 'i', 'did', 'not', 'have', 'a', 'coke', '||period||', '||return||', '||return||', 'morty:', 'somebody', 'had', 'a', 'coke', '||period||', '||return||', '||return||', 'helen:', 'oh', 'i', 'had', 'a', 'coke', '||period||', '||return||', '||return||', 'doris:', 'and', 'i', 'had', 'the', 'scampi', '||period||', '||return||', '||return||', 'jack:', 'so', "that's", '17', '||period||', '10$', 'and', 'the', 'tax', 'and', 'the', 'tip', '||period||', '||return||', '||return||', 'morty:', 'all', 'right', '||period||', 'make', 'it', '20', 'bucks', '||period||', '||return||', '||return||', 'jack:', "it's", '19', '||period||', '45$', '||comma||', 'morty', '||period||', '||leftparen||', 'he', 'gives', 'him', 'the', 'check', '||rightparen||', '||return||', '||return||', 'morty:', '19', '||period||', '45$', '||questionmark||', '||return||', '||return||', 'jack:', 'see', '||questionmark||', 'you', 'know', 'your', 'father', '||period||', 'he', "can't", 'get', 'a', 'write', 'to', 'the', 'penny', '||comma||', 'but', "that's", 'why', 'he', 'was', 'such', 'a', 'good', 'president', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'pen', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jack:', 'this', 'pen', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'jack:', 'this', 'is', 'an', 'astronaut', 'pen', '||period||', 'it', 'writes', 'upside', 'down', '||period||', 'they', 'use', 'this', 'in', 'space', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', "that's", 'the', 'astronaut', 'pen', '||period||', 'i', 'heard', 'about', 'that', '||period||', 'where', 'did', 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'jack:', 'oh', 'it', 'was', 'a', 'gift', '||period||', '||return||', '||return||', 'jerry:', 'cause', 'sometimes', 'i', 'write', 'in', 'bed', 'and', 'i', 'have', 'to', 'turn', 'and', 'lean', 'on', 'my', 'elbow', 'to', 'make', 'the', 'pen', 'work', '||period||', '||return||', '||return||', 'jack:', 'take', 'the', 'pen', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||period||', '||return||', '||return||', 'jack:', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'i', "couldn't", '||return||', '||return||', 'jack:', 'come', 'on', '||comma||', 'take', 'the', 'pen', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'take', 'it', '||period||', '||return||', '||return||', 'jack:', 'do', 'me', 'a', 'personal', 'favor', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'not', '||period||', '||period||', '||period||', '||return||', '||return||', 'jack:', 'take', 'the', 'pen', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'cannot', 'take', 'it', '||exclammark||', '||return||', '||return||', 'jack:', 'take', 'the', 'pen', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jack:', 'positive', '||exclammark||', 'take', 'the', 'pen', '||exclammark||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', 'thank', 'you', 'very', 'much', '||period||', 'thank', 'you', '||period||', 'gee', '||comma||', 'boy', '||exclammark||', '||return||', '||return||', 'helen:', 'jack', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jack:', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'doris:', 'jack', '||comma||', 'we', 'should', 'go', '||period||', '||leftparen||', 'they', 'go', 'to', 'the', 'door', '||rightparen||', 'it', 'was', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||comma||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thanks', 'again', '||period||', '||return||', '||return||', 'jack:', 'come', 'on', '||exclammark||', '||return||', '||return||', 'doris:', '||leftparen||', 'to', 'morty', '||rightparen||', "she's", 'adorable', '||period||', '||leftparen||', 'they', 'leave', '||rightparen||', '||return||', '||return||', 'helen:', '||leftparen||', 'as', 'soon', 'as', 'the', "door's", 'closed', '||rightparen||', 'what', 'did', 'you', 'take', 'his', 'pen', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'he', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'helen:', 'you', "didn't", 'have', 'to', 'take', 'it', '||period||', '||return||', '||return||', 'morty:', 'oh', 'my', 'god', '||exclammark||', "she's", 'gotta', 'make', 'a', 'big', 'deal', 'out', 'of', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'he', 'offered', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'helen:', 'because', 'you', 'made', 'such', 'a', 'big', 'fuss', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'liked', 'it', '||period||', 'should', 'i', 'have', 'said', 'i', "didn't", 'like', 'it', '||questionmark||', '||return||', '||return||', 'helen:', 'you', "shouldn't", 'have', 'said', 'anything', '||period||', 'what', 'did', 'you', 'expect', 'him', 'to', 'do', '||questionmark||', '||leftparen||', 'the', 'camera', 'shows', 'elaine', 'shaking', 'her', 'head', 'at', 'their', 'dispute', '||rightparen||', '||return||', '||return||', 'jerry:', 'he', 'could', 'have', 'said', '||quotemark||', 'thank', 'you', '||comma||', 'i', 'like', 'it', 'too', '||quotemark||', 'and', 'put', 'it', 'back', 'in', 'his', 'pocket', '||period||', '||return||', '||return||', 'helen:', 'he', 'loves', 'that', 'pen', '||period||', '||return||', '||return||', 'morty:', 'oh', 'come', 'on', '||exclammark||', '||return||', '||return||', 'helen:', 'he', 'talks', 'about', 'it', 'all', 'the', 'time', '||period||', 'every', 'time', 'he', 'takes', 'it', 'out', 'he', 'goes', 'on', 'and', 'on', 'about', 'how', 'it', 'writes', 'upside', 'down', '||comma||', 'how', 'the', 'astronauts', 'use', 'it', '||period||', '||return||', '||return||', 'jerry:', 'if', 'he', 'likes', 'it', 'so', 'much', '||comma||', 'he', 'never', 'should', 'have', 'offered', 'it', '||period||', '||return||', '||return||', 'helen:', 'he', "didn't", 'think', "you'd", 'accpet', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'he', 'was', 'wrong', '||period||', '||return||', '||return||', 'helen:', 'i', 'know', 'his', 'wife', '||period||', 'she', 'has', 'some', 'mouth', 'on', 'her', '||period||', "she'll", 'tell', 'everyone', 'in', 'the', 'condo', 'now', 'that', 'you', 'made', 'him', 'give', 'you', 'the', 'pen', '||period||', "they're", 'talking', 'about', 'it', 'right', 'now', '||period||', '||leftparen||', 'again', 'we', 'see', 'elaine', 'smiling', 'at', 'their', 'argument', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'me', 'to', 'return', 'it', '||questionmark||', '||return||', '||return||', 'helen:', 'yes', '||period||', '||return||', '||return||', 'morty:', "he's", 'not', 'gonna', 'return', 'the', 'pen', '||period||', "that's", 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'i', "don't", 'even', 'want', 'the', 'pen', 'now', '||exclammark||', '||return||', '||return||', 'morty:', 'jack', 'can', 'afford', 'to', 'give', 'away', 'a', 'pen', 'with', 'all', 'his', 'money', '||period||', 'believe', 'me', '||period||', 'he', 'gives', 'me', 'a', 'check', 'for', '19', '||period||', '45', '||period||', 'he', "didn't", 'have', 'a', 'coke', '||period||', 'ho', '||comma||', 'ho', '||comma||', 'ho', '||exclammark||', '||return||', '||return||', 'elaine:', 'here', '||comma||', 'let', 'me', 'see', 'it', '||period||', '||leftparen||', 'she', 'takes', 'a', 'pad', 'to', 'try', 'the', 'pen', '||rightparen||', 'hey', '||comma||', 'it', 'writes', 'upside', 'down', '||period||', '||return||', '||return||', '[setting:', "condo's", 'guest', 'room]', '||return||', '||return||', 'elaine:', 'come', 'in', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'o', '||period||', 'k', '||period||', 'in', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'is', 'it', 'so', 'hot', 'in', 'here', '||questionmark||', 'how', 'can', 'they', 'sleep', 'like', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'only', 'for', 'three', 'days', '||period||', "today's", 'over', 'and', 'we', 'have', 'tommorow', '||period||', 'we', 'leave', 'on', 'sunday', '||period||', "it's", 'one', 'day', '||comma||', 'really', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'man', '||period||', 'what', 'is', 'with', 'this', 'bar', '||questionmark||', "it's", 'right', 'in', 'my', 'back', '||period||', "it's", 'killing', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'you', 'wanna', 'switch', '||questionmark||', "i'm", 'sleeping', 'on', 'a', 'love', 'seat', '||period||', "i've", 'got', 'my', 'feet', 'up', 'in', 'the', 'air', 'like', "i'm", 'in', 'a', 'space', 'capsule', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'never', 'gonna', 'fall', 'asleep', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', "don't", 'say', 'that', '||period||', "you'll", 'jinx', 'me', '||period||', '||return||', '||return||', 'elaine:', 'how', 'can', 'they', 'not', 'put', 'the', 'air', 'conditioning', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'nuts', 'with', 'temperature', '||period||', '||return||', '||return||', 'elaine:', 'this', 'bar', 'is', 'right', 'in', 'my', 'back', '||exclammark||', "it's", 'making', 'a', 'dent', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', 'that', 'guy', 'writing', 'a', 'check', 'for', '19', '||period||', '45', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'sweating', 'here', '||period||', "i'm", 'in', 'bed', '||comma||', 'sweating', '||period||', '||return||', '||return||', 'jerry:', "it's", 'one', 'day', '||period||', 'half', 'a', 'day', '||comma||', 'really', '||period||', 'i', 'mean', 'you', 'substract', 'showers', 'and', 'meals', '||comma||', "it's", 'like', 'twenty', 'minutes', '||period||', 'it', 'will', 'go', 'by', 'like', 'that', '||period||', '||leftparen||', 'snapping', 'his', 'fingers', '||rightparen||', '||return||', '||return||', '[setting:', 'condo', '||comma||', 'morning]', '||return||', '||return||', 'morty:', 'stay', 'on', '95', 'south', 'to', 'biscayne', 'boulevard', '||period||', 'then', 'you', 'make', 'a', 'left', 'turn', '||period||', 'put', 'you', 'blinker', 'on', 'immediatly', '||comma||', "there's", 'an', 'abutment', 'there', '||period||', 'then', "you're", 'gonna', 'merge', 'over', 'very', 'quickly', '||comma||', 'but', 'stay', 'on', 'biscayne', '||period||', "don't", 'get', 'off', 'biscayne', '||period||', 'you', 'understand', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'stay', 'on', 'biscayne', '||period||', '||return||', '||return||', 'helen:', "you're", 'going', 'underwater', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'generally', "that's", 'where', 'scuba', 'diving', 'is', 'done', '||period||', '||return||', '||return||', 'helen:', 'what', 'do', 'you', 'have', 'to', 'go', 'underwater', 'for', '||questionmark||', "what's", 'down', 'there', "that's", 'so', 'special', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'so', 'special', 'up', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||return||', '||return||', 'helen:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', 'back', '||period||', '||return||', '||return||', 'helen:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', '||period||', '||period||', '||period||', 'that', 'bed', '||period||', 'the', 'bar', 'was', 'right', 'in', 'my', 'back', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'told', 'you', 'to', 'let', 'us', 'sleep', 'in', 'there', '||period||', '||return||', '||return||', 'jerry:', 'then', 'you', 'would', 'be', 'hunched', 'over', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'even', 'know', 'if', 'i', 'can', 'go', 'scuba', 'diving', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'go', '||questionmark||', '||return||', '||return||', 'helen:', 'so', 'stay', 'home', '||period||', '||return||', '||return||', 'elaine:', 'you', 'can', 'go', '||period||', '||return||', '||return||', 'jerry:', 'without', 'you', '||questionmark||', "that's", 'the', 'whole', 'reason', 'you', 'came', 'down', 'here', '||period||', '||return||', '||return||', 'helen:', "don't", 'go', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'morty:', 'maybe', 'you', 'should', 'see', 'a', 'doctor', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'stay', 'in', 'a', 'hotel', 'tonight', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whispering', 'to', 'jerry', '||rightparen||', 'yes', '||exclammark||', '||return||', '||return||', 'helen:', 'no', '||comma||', "we'll", 'stay', 'in', 'there', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'get', 'a', 'new', 'sofa', '||questionmark||', '||return||', '||return||', 'morty:', 'nobody', 'uses', 'it', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'buying', 'you', 'a', 'new', 'sofa', '||period||', '||return||', '||return||', 'helen:', 'oh', 'jerry', '||comma||', "don't", 'talk', 'crazy', '||period||', '||return||', '||return||', 'elaine:', 'mrs', 'seinfeld', '||comma||', 'please', '||period||', 'i', 'am', 'begging', 'you', '||period||', 'put', 'the', 'air', 'conditioner', 'on', '||period||', '||return||', '||return||', 'helen:', "you're", 'hot', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'lost', '6', 'pounds', '||period||', '||return||', '||return||', 'helen:', 'i', "don't", 'even', 'know', 'how', 'to', 'work', 'it', '||period||', '||return||', '||return||', 'morty:', 'i', 'keep', 'telling', 'her', "it's", 'like', 'an', 'oven', 'in', 'here', '||period||', '||return||', '||return||', 'evelyn:', 'is', 'everybody', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'evelyn:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'evelyn', '||comma||', 'this', 'is', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'with', 'pain', '||rightparen||', 'hi', 'evelyn', '||period||', '||return||', '||return||', 'evelyn:', 'jerry', 'you', 'got', 'thin', '||period||', '||return||', '||return||', 'jerry:', 'too', 'thin', '||questionmark||', '||return||', '||return||', 'helen:', 'oh', 'stop', 'worrying', 'so', 'much', 'about', 'how', 'you', 'look', '||period||', '||return||', '||return||', 'evelyn:', 'so', "where's", 'the', 'new', 'pen', '||questionmark||', '||leftparen||', "everybody's", 'surprised', 'by', 'this', 'question', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jerry', 'scratches', 'his', 'head', 'and', 'acts', 'like', "he's", 'not', 'sure', 'what', "she's", 'talking', 'about', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'evelyn:', 'the', 'pen', '||period||', 'the', 'one', 'jack', 'klompus', 'gave', 'you', '||period||', '||return||', '||return||', 'helen:', 'how', 'did', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'evelyn:', 'blanche', 'told', 'me', '||period||', '||return||', '||return||', 'helen:', 'blanche', '||questionmark||', '||return||', '||return||', 'evelyn:', "that's", 'some', 'good', 'pen', '||period||', 'it', 'writes', 'upside', 'down', '||period||', '||return||', '||return||', 'elaine:', 'the', 'astronauts', 'use', 'them', '||period||', '||return||', '||return||', 'helen:', 'what', 'did', 'blanche', 'say', '||questionmark||', '||return||', '||return||', 'evelyn:', 'i', "don't", 'know', '||period||', 'she', 'said', 'jerry', 'wanted', 'the', 'pen', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'really', 'wanted', 'the', 'pen', '||period||', '||return||', '||return||', 'morty:', 'he', 'gave', 'him', 'the', 'pen', '||period||', '||return||', '||return||', 'helen:', 'morty', '||period||', '||return||', '||return||', 'evelyn:', 'why', 'you', "don't", 'like', 'the', 'pen', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'evelyn:', 'cause', 'if', 'you', "don't", 'like', 'it', '||comma||', 'give', 'it', 'back', 'to', 'him', '||period||', '||return||', '||return||', 'helen:', 'is', 'that', 'what', 'she', 'said', '||questionmark||', '||return||', '||return||', 'evelyn:', 'who', '||questionmark||', '||return||', '||return||', 'helen:', 'blanche', '||period||', '||return||', '||return||', 'evelyn:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'helen:', 'hello', '||questionmark||', 'oh', 'hello', 'gussy', '||period||', 'what', '||questionmark||', 'jerry', "wouldn't", 'do', 'that', '||period||', 'jack', 'gave', 'it', 'to', 'him', '||period||', 'all', 'he', 'said', 'was', 'he', 'liked', 'it', '||period||', 'i', 'mean', 'nobody', 'put', 'a', 'gun', 'to', 'his', 'head', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', "you're", 'giving', 'him', 'back', 'that', 'pen', '||period||', '||leftparen||', 'she', 'continues', 'the', 'discussion', 'with', 'gussy', 'but', 'we', "don't", 'hear', 'it', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'somebody', 'please', '||dash||', '||dash||', 'the', 'air', 'conditioner', '||exclammark||', '||return||', '||return||', 'morty:', '||leftparen||', 'morty', 'gets', 'up', '||rightparen||', 'oh', '||exclammark||', 'i', 'forgot', 'all', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'all', 'i', 'said', 'was', '||quotemark||', 'i', 'like', 'the', 'pen', '||quotemark||', '||period||', '||return||', '||return||', 'morty:', 'how', 'the', 'hell', 'do', 'you', 'work', 'this', 'thing', '||questionmark||', '||return||', '||return||', '[setting:', 'still', 'the', 'condo', '||comma||', 'later]', '||return||', '||return||', 'helen:', 'maybe', 'you', "shouldn't", 'go', 'tonight', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'i', 'wanna', 'go', '||period||', '||return||', '||return||', 'helen:', 'but', 'your', 'back', 'hurts', '||period||', '||return||', '||return||', 'morty:', 'maybe', 'a', 'couple', 'of', 'muscle', 'relaxers', 'would', 'help', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'oh', '||comma||', 'o', '||period||', 'k', '||period||', '||leftparen||', 'helen', 'holds', 'her', 'sweater', 'tight', 'against', 'herself', '||rightparen||', 'you', 'can', 'turn', 'down', 'the', 'air', 'conditioning', 'if', 'you', 'want', '||period||', '||return||', '||return||', 'helen:', 'no', '||period||', "i'm", 'fine', '||period||', '||return||', '||return||', 'elaine:', "you're", 'not', 'too', 'cold', '||questionmark||', '||return||', '||return||', 'helen:', 'no', '||period||', '||return||', '||return||', 'jerry:', "don't", 'be', 'alarmed', '||period||', '||return||', '||return||', 'morty:', 'oh', 'my', 'god', '||exclammark||', 'what', 'the', 'hell', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'o', '||period||', 'k', '||period||', 'my', 'capillaries', 'burst', '||period||', '||return||', '||return||', 'helen:', 'your', 'capillaries', '||questionmark||', 'do', 'you', 'know', 'what', 'you', 'look', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', 'on', 'the', 'floor', '||rightparen||', 'how', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'having', 'a', 'good', 'time', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'it', 'my', 'imagination', 'or', 'is', 'it', 'freezing', 'in', 'here', '||questionmark||', '||return||', '||return||', 'helen:', 'what', 'happened', 'to', 'your', 'eyes', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'started', 'to', 'go', 'under', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'with', 'the', 'instructor', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'i', 'got', 'about', 'ten', 'feet', 'down', 'and', 'i', 'felt', 'this', 'tremendous', 'pressure', 'on', 'my', 'mask', '||period||', 'like', 'my', 'eyeballs', 'were', 'being', 'sucked', 'out', 'of', 'their', 'sockets', '||period||', '||return||', '||return||', 'helen:', 'i', 'told', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'jack:', 'excuse', 'me', '||period||', '||leftparen||', 'to', 'helen', '||rightparen||', 'doris', 'would', 'like', 'to', 'borrow', 'red', 'your', 'pocketbook', 'to', 'go', 'with', 'her', 'shoes', '||period||', '||leftparen||', 'to', 'elaine', 'on', 'the', 'floor', '||rightparen||', 'the', 'shoes', 'have', 'to', 'match', 'the', 'pocketbook', '||period||', '||leftparen||', 'to', 'the', 'others', '||rightparen||', "what's", 'she', 'doing', '||questionmark||', 'yoga', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', 'back', 'hurts', '||period||', '||return||', '||return||', 'jack:', 'morty', 'you', 'gotta', 'hurry', 'up', '||period||', 'get', 'ready', '||period||', '||return||', '||return||', 'morty:', 'we', 'got', 'plenty', 'of', 'time', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'in', 'a', 'fist', 'fight', 'with', 'one', 'of', 'the', 'ladies', 'at', 'the', 'pool', '||period||', '||return||', '||return||', 'helen:', "it's", 'from', 'scuba', 'diving', '||period||', '||return||', '||return||', 'jack:', "what's", 'there', 'to', 'see', 'underwater', '||questionmark||', '||return||', '||return||', '||leftparen||', 'helen', 'turns', 'to', 'jerry', 'and', 'makes', 'a', 'face', 'like:', 'give', 'him', 'back', 'the', 'pen', '||rightparen||', '||return||', '||return||', 'jerry:', 'listen', 'm', '||period||', 'klompus', '||comma||', 'it', 'was', 'really', 'a', 'nice', 'gesture', 'of', 'you', 'to', 'give', 'me', 'the', 'pen', '||comma||', 'but', 'i', "don't", 'really', 'need', 'it', '||period||', '||return||', '||return||', 'jack:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'mean', "it's", 'a', 'terrific', 'pen', '||comma||', 'but', 'i', 'think', 'you', 'should', 'keep', 'it', '||period||', '||leftparen||', 'he', 'hands', 'the', 'pen', 'to', 'jack', '||rightparen||', '||return||', '||return||', 'jack:', 'well', 'i', 'mean', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'take', 'it', '||period||', '||return||', '||return||', 'jack:', 'all', 'right', '||exclammark||', '||leftparen||', 'he', 'smiles', 'and', 'take', 'it', '||rightparen||', '||return||', '||return||', 'morty:', 'you', 'know', 'jack', '||comma||', "you've", 'got', 'a', 'hell', 'of', 'a', 'nerve', 'taking', 'that', "kid's", 'pen', '||period||', '||return||', '||return||', 'jack:', 'whose', 'pen', '||questionmark||', '||return||', '||return||', 'morty:', 'his', 'pen', '||period||', '||return||', '||return||', 'jack:', 'this', 'happens', 'to', 'be', 'my', 'pen', '||period||', '||return||', '||return||', 'morty:', 'you', "didn't", 'give', 'it', 'to', 'him', '||period||', '||return||', '||return||', 'jack:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'he', 'pratically', 'begged', 'me', 'for', 'it', '||period||', '||return||', '||return||', 'morty:', 'where', 'do', 'you', 'come', 'off', 'with', 'this', 'crap', '||questionmark||', '||return||', '||return||', 'jack:', 'listen', '||comma||', 'do', 'you', 'think', 'i', 'take', 'everything', 'everybody', 'offers', 'me', '||questionmark||', 'you', 'offered', 'me', 'sponge', 'cake', 'yesterday', '||period||', 'did', 'i', 'take', 'it', '||questionmark||', '||return||', '||return||', 'morty:', 'you', 'said', 'you', "didn't", 'want', 'it', '||exclammark||', '||return||', '||return||', 'jack:', 'of', 'course', 'i', 'wanted', 'it', '||exclammark||', 'i', 'love', 'sponge', 'cake', '||exclammark||', '||return||', '||return||', 'morty:', 'then', 'who', 'the', 'hell', 'said', 'you', "couldn't", 'have', 'any', '||questionmark||', 'i', 'mean', 'what', 'the', 'hell', 'do', 'i', 'care', 'whether', 'you', 'have', 'sponge', 'cake', '||questionmark||', '||return||', '||return||', 'jack:', 'because', 'i', 'saw', 'the', 'look', 'on', 'your', 'face', 'last', 'week', 'when', 'i', 'took', 'the', 'scotch', 'tape', '||exclammark||', '||return||', '||return||', 'morty:', 'ahh', '||exclammark||', 'ahh', '||exclammark||', 'so', 'you', 'got', 'the', 'scotch', 'tape', '||exclammark||', "i've", 'been', 'looking', 'all', 'over', 'for', 'it', '||exclammark||', '||return||', '||return||', 'jack:', "don't", 'worry', 'about', 'it', '||exclammark||', "i'll", 'give', 'it', 'back', '||exclammark||', '||return||', '||return||', 'morty:', 'i', "don't", 'want', 'it', '||exclammark||', '||return||', '||return||', 'jack:', 'i', "don't", 'want', 'it', '||exclammark||', '||return||', '||return||', 'morty:', 'you', 'know', 'jack', '||comma||', 'do', 'me', 'a', 'favor', 'will', 'you', '||questionmark||', 'take', 'the', 'pen', 'and', 'the', 'scotch', 'tape', '||comma||', 'and', 'get', 'the', 'hell', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'jack:', 'listen', 'do', 'you', 'think', 'i', 'give', 'a', 'damn', '||questionmark||', '||return||', '||return||', 'morty:', 'aah', '||exclammark||', '||leftparen||', 'jack', 'leaves', '||rightparen||', 'the', 'nerve', 'of', 'that', 'guy', '||exclammark||', 'taking', 'back', 'that', 'pen', '||period||', 'well', "that's", 'it', 'for', 'them', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'going', 'on', 'in', 'this', 'community', '||exclammark||', 'are', 'you', 'people', 'aware', 'of', "what's", 'happening', '||questionmark||', 'what', 'is', 'driving', 'you', 'to', 'this', 'behavior', '||questionmark||', 'is', 'it', 'the', 'humudity', '||questionmark||', 'is', 'it', 'the', 'muzak', '||questionmark||', 'is', 'it', 'the', 'white', 'shoes', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'have', 'no', 'use', 'for', 'either', 'one', 'of', 'them', '||period||', 'i', "don't", 'even', 'want', 'them', 'there', 'tonight', '||period||', '||leftparen||', 'she', 'still', 'has', 'the', 'pocketbook', 'in', 'her', 'hands', '||rightparen||', '||return||', '||return||', 'jerry:', "isn't", 'he', 'supposed', 'to', 'be', 'the', 'emcee', '||questionmark||', '||return||', '||return||', 'morty:', 'yeah', '||comma||', "he's", 'supposed', 'to', 'be', 'the', 'emcee', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', 'this', 'should', 'be', 'a', 'very', 'interesting', 'evening', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'on', 'the', 'floor', '||rightparen||', 'uh', '||period||', '||period||', '||period||', 'what', 'about', 'those', 'muscle', 'relaxers', '||questionmark||', '||return||', '||return||', '[setting:', 'reception', 'room', '||comma||', 'evening]', '||return||', '||return||', 'photographer:', 'say', 'astronaut', '||period||', '||return||', '||return||', 'elaine:', 'say', 'what', '||questionmark||', '||leftparen||', 'laughing', '||rightparen||', 'say', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jerry', 'brings', 'her', 'back', '||rightparen||', 'you', 'took', 'too', 'many', 'of', 'those', 'pills', '||period||', '||return||', '||return||', 'morty:', 'astronaut', '||questionmark||', '||return||', '||return||', 'helen:', 'say', 'it', '||period||', '||return||', '||return||', 'jerry', '||comma||', 'morty', 'and', 'helen:', 'astronaut', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'laughing', '||comma||', 'she', 'says', 'it', 'just', 'as', 'the', 'picture', 'is', 'taking', '||rightparen||', 'astro', '||period||', '||period||', '||period||', 'naut', '||exclammark||', '||return||', '||return||', 'morty:', 'good', '||period||', 'o', '||period||', 'k', '||period||', '||leftparen||', 'the', 'photographer', 'walks', 'away', '||rightparen||', 'what', 'about', 'last', 'year', 'when', 'i', 'took', 'him', 'to', 'the', 'hospital', 'every', 'day', '||questionmark||', 'did', 'he', 'ever', 'say', 'thank', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'god', '||period||', '||leftparen||', 'foreseeing', 'an', "arm's", 'grabbing', 'as', 'he', 'sees', 'uncle', 'leo', 'entering', 'with', 'his', 'wife', 'stella', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'leo', '||rightparen||', 'uncle', 'leo', '||period||', '||return||', '||return||', 'leo:', 'hello', '||exclammark||', '||return||', '||return||', 'stella:', 'morty', 'are', 'you', 'nervous', '||questionmark||', '||return||', '||return||', 'morty:', 'what', 'nervous', '||questionmark||', '||return||', '||return||', 'leo:', '||leftparen||', 'to', 'jerry', 'while', "he's", 'grabbing', 'his', 'arm', 'as', 'usual', '||rightparen||', "what's", 'with', 'the', 'sunglasses', '||questionmark||', 'who', 'are', 'you', '||questionmark||', 'van', 'johnson', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'got', 'a', 'black', 'eye', '||period||', '||return||', '||return||', 'stella:', '||leftparen||', 'to', 'elaine', 'in', 'a', 'childish', 'voice', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'uh', '||comma||', 'elaine', '||comma||', 'this', 'is', 'my', 'aunt', 'stella', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'shouting', 'as', 'she', 'imitates', 'marlon', 'brando', '||rightparen||', 'stella', '||exclammark||', 'stella', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'stella', '||rightparen||', 'her', 'back', 'hurts', '||period||', '||return||', '||return||', 'stella:', 'humm', '||period||', '||period||', '||period||', 'we', 'saw', 'you', 'on', '||quotemark||', 'the', 'tonight', 'show', '||quotemark||', 'last', 'week', '||period||', '||return||', '||return||', 'leo:', 'i', 'thought', 'johnny', 'was', 'very', 'rude', 'to', 'you', '||period||', 'he', "didn't", 'even', 'let', 'you', 'talk', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'leo:', 'you', 'need', 'some', 'new', 'material', '||period||', "i've", 'heard', 'you', 'do', 'that', 'dog', 'routine', 'three', 'times', 'already', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'with', 'her', 'imitation', '||comma||', 'shouting', 'even', 'louder', '||rightparen||', 'stella', '||exclammark||', 'stella', '||exclammark||', '||return||', '||return||', 'leo:', 'listen', '||comma||', 'you', 'should', 'get', 'your', 'cousin', 'jeffrey', 'to', 'write', 'some', 'material', 'for', 'you', '||period||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'talking', '||questionmark||', 'jeffrey', 'works', 'for', 'the', 'parks', 'department', '||exclammark||', '||return||', '||return||', 'leo:', 'you', 'should', 'read', 'the', 'letters', "he's", 'written', '||period||', "he's", 'funnier', 'than', 'the', 'whole', 'bunch', 'of', 'you', '||exclammark||', '||leftparen||', 'jack', 'enters', 'with', 'doris', '||rightparen||', 'oh', '||comma||', "here's", 'jack', '||period||', 'we', 'should', 'sit', 'down', '||period||', '||return||', '||return||', 'stella:', '||leftparen||', 'to', 'helen', 'on', 'a', 'sarcastic', 'tone', 'of', 'voice', '||rightparen||', 'this', 'better', 'be', 'good', '||period||', "i'm", 'missing', '||quotemark||', 'golden', 'girls', '||quotemark||', 'for', 'this', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'laughing', 'hypocritically', 'till', 'stella', 'walks', 'away', '||rightparen||', 'i', 'hate', 'her', 'like', 'poison', '||period||', '||return||', '||return||', '||leftparen||', 'a', 'few', 'minutes', 'later', '||comma||', 'the', 'ceremony', 'is', 'about', 'to', 'begin', '||period||', 'someone', 'in', 'the', 'crowd', 'yells:', '||quotemark||', 'hey', 'jack', "let's", 'get', 'started', '||exclammark||', '||quotemark||', 'everyone', 'applause', 'and', 'we', 'see', '||comma||', 'from', 'left', 'to', 'right', '||comma||', 'all', 'sitting', 'on', 'the', 'same', 'side', 'of', 'a', 'long', 'table', '||comma||', 'facing', 'the', 'public', 'stella', '||comma||', 'leo', '||comma||', 'elaine', '||comma||', 'jerry', '||comma||', 'helen', '||comma||', 'morty', '||comma||', 'jack', 'at', 'the', 'microphone', '||comma||', 'doris', '||comma||', 'and', 'four', 'other', 'people', '||period||', '||rightparen||', '||return||', '||return||', 'jack:', '||leftparen||', 'on', 'the', 'microphone', '||rightparen||', 'ladies', 'and', 'gentlemen', '||comma||', 'as', 'you', 'know', '||comma||', 'every', 'year', '||comma||', 'phase', 'two', 'of', 'the', 'pines', 'of', 'mark', 'gables', 'honors', 'the', 'previous', 'year', 'president', '||period||', 'and', 'this', 'year', 'we', 'are', 'honoring', 'morty', 'seinfeld', '||leftparen||', 'the', 'crowd', 'applause', 'and', 'someone', 'yells', 'morty', '||exclammark||', '||rightparen||', 'a', 'man', 'who', 'slept', 'more', 'hours', 'on', 'the', 'job', 'than', 'ronald', 'reagan', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'helen', '||rightparen||', 'slept', 'on', 'the', 'job', '||questionmark||', '||leftparen||', 'she', 'shushed', 'him', '||rightparen||', '||return||', '||return||', 'jack:', 'being', 'president', 'of', 'the', 'condo', 'is', 'not', 'easy', '||period||', 'it', 'requires', 'hard', 'work', '||comma||', 'dedication', '||comma||', 'and', 'commitment', '||comma||', 'and', 'unfortunately', 'he', 'possesses', 'none', 'of', 'these', 'qualities', '||period||', '||leftparen||', 'everyone', 'laugh', 'except', 'jerry', '||comma||', 'helen', '||comma||', 'and', 'morty', '||period||', 'even', 'elaine', "who's", 'still', 'druggy', '||rightparen||', '||return||', '||return||', 'helen:', '||leftparen||', 'morty', 'complains', 'again', 'to', 'helen', '||rightparen||', "he's", 'joking', '||period||', '||return||', '||return||', 'jack:', 'his', 'administration', 'did', 'excel', 'in', 'one', 'department', 'the', 'hiring', 'of', 'incompetents', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'jack', '||comma||', 'loud', '||rightparen||', "that's", 'what', 'you', 'say', '||period||', '||return||', '||return||', 'jack:', 'but', 'we', 'do', 'owe', 'him', 'a', 'debt', 'of', 'gratitude', 'because', 'by', 'not', 'fixing', 'the', 'crack', 'in', 'the', 'sidewalk', '||comma||', 'he', 'put', 'mrs', 'ziven', 'out', 'of', 'commission', 'for', 'a', 'few', 'weeks', '||period||', '||leftparen||', 'morty', 'is', 'now', 'the', 'only', 'one', 'not', 'laughing', '||rightparen||', '||return||', '||return||', 'morty:', '||leftparen||', 'loud', '||rightparen||', 'tell', 'them', 'when', 'you', 'took', 'my', "son's", 'pen', 'back', '||period||', 'tell', 'them', 'about', 'that', '||exclammark||', '||leftparen||', 'he', 'gets', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'dad', '||exclammark||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'the', 'crowd', '||rightparen||', 'he', 'gave', 'my', 'son', 'a', 'pen', '||comma||', 'and', 'then', 'he', 'takes', 'it', 'back', '||period||', 'tell', 'them', 'about', 'that', '||exclammark||', '||return||', '||return||', 'jack:', 'he', 'gave', 'it', 'to', 'me', '||exclammark||', '||return||', '||return||', 'morty:', 'come', 'on', '||period||', "that's", 'enough', '||comma||', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'jack:', "i'm", 'not', 'sitting', 'down', '||exclammark||', '||return||', '||return||', 'jack:', 'ow', '||exclammark||', 'you', 'broke', 'my', 'dental', 'plate', '||exclammark||', '||leftparen||', 'jack', 'is', 'touching', 'his', 'dental', 'plate', 'while', 'morty', 'reaches', 'in', "jack's", 'pocket', 'to', 'get', 'the', 'pen', '||rightparen||', 'doris', '||exclammark||', 'he', 'broke', 'my', 'dental', 'plate', '||period||', 'you', 'son', '||dash||', 'of', '||dash||', 'a', '||dash||', 'bitch', '||exclammark||', "i'm", 'gonna', 'sue', 'you', '||period||', '||leftparen||', 'he', 'leaves', 'the', 'table', 'and', 'morty', 'follows', 'him', 'and', 'continue', 'arguing', 'with', 'him', '||period||', 'jerry', 'now', 'have', 'the', 'microphone', 'in', 'his', 'hands', 'and', 'the', 'crowd', 'begins', 'to', 'think', 'the', 'ceremony', 'is', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'do', 'your', 'act', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'the', 'microphone', '||comma||', 'but', 'to', 'helen', '||rightparen||', 'i', "can't", '||period||', "nobody's", 'even', 'listening', '||period||', '||return||', '||return||', 'helen:', "they're", 'all', 'gonna', 'leave', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'oh', 'god', '||exclammark||', '||leftparen||', 'in', 'the', 'microphone', '||rightparen||', 'huh', '||period||', '||period||', '||period||', 'hey', '||exclammark||', 'how', 'you', 'folks', 'doing', 'tonight', '||questionmark||', '||leftparen||', 'everybody', 'in', 'the', 'crowd', 'is', 'talking', 'over', 'jerry', '||rightparen||', '||return||', '||return||', 'man', 'in', 'the', 'crowd:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'with', 'his', 'sunglasses', '||rightparen||', 'have', 'you', 'ever', 'noticed', 'how', 'they', 'always', 'give', 'you', 'the', 'peanuts', 'on', 'the', 'planes', '||questionmark||', '||return||', '||return||', 'woman', 'in', 'the', 'crowd:', '||leftparen||', 'to', 'heckle', 'jerry', '||rightparen||', 'not', 'my', 'harry', '||period||', 'he', 'flies', 'first', 'class', '||period||', '||return||', '||return||', 'jerry:', 'who', 'ever', 'thought', 'the', 'first', 'thing', 'somebody', 'wants', 'on', 'a', 'plane', 'is', 'a', 'peanut', '||questionmark||', '||return||', '||return||', 'man', 'in', 'the', 'crowd:', "i'd", 'rather', 'have', 'a', 'bottle', 'of', 'scotch', '||exclammark||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'do', 'the', 'dog', 'routine', '||period||', '||return||', '||return||', 'jerry:', 'all', 'i', 'said', 'was', 'i', 'liked', 'the', 'pen', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'wakes', 'up', 'and', 'yells', 'very', 'loud', '||rightparen||', 'stella', '||exclammark||', '||return||', '||return||', '[setting:', 'condo', '||comma||', 'morning]', '||return||', '||return||', 'chiropractor:', 'you', 'could', 'aggravate', 'it', '||period||', 'i', "wouldn't", 'go', 'anywhere', 'for', 'at', 'least', 'five', 'days', '||period||', '||return||', '||return||', 'elaine:', 'five', 'days', '||questionmark||', 'you', 'want', 'me', 'to', 'stay', 'here', 'for', 'five', 'more', 'days', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'must', 'be', 'some', 'mistake', '||period||', '||return||', '||return||', 'chiropractor:', "i'm", 'afraid', 'not', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'discouraged', '||rightparen||', 'five', 'days', '||period||', 'here', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'jerry', '||comma||', 'happily', '||rightparen||', 'so', 'we', 'have', 'you', 'for', 'five', 'more', 'days', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'well', "there's", 'really', 'no', 'point', 'in', 'me', 'staying', '||period||', 'i', 'mean', 'you', 'just', 'gonna', 'be', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'evelyn:', 'good', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'evelyn', '||period||', '||return||', '||return||', 'evelyn:', '||leftparen||', 'to', 'helen', '||rightparen||', 'has', 'morty', 'decided', 'on', 'a', 'lawyer', 'yet', '||questionmark||', '||return||', '||return||', 'helen:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'evelyn:', 'because', 'my', 'nephew', 'larry', 'could', 'do', 'it', '||period||', "he's", 'a', 'brilliant', 'lawyer', '||period||', 'he', 'says', 'jack', 'has', 'no', 'case', '||period||', '||return||', '||return||', 'helen:', 'well', "i'll", 'ask', 'him', 'when', 'he', 'gets', 'up', '||period||', '||return||', '||return||', 'evelyn:', 'oh', '||comma||', 'and', 'i', 'spoke', 'to', 'arnold', '||period||', 'and', 'he', 'says', 'that', 'according', 'to', 'the', 'bylaws', 'of', 'the', 'condo', 'constitution', '||comma||', 'they', 'need', 'six', 'votes', 'to', 'throw', 'you', 'out', 'for', 'unruly', 'behavior', '||period||', 'not', 'five', '||period||', 'doctor', 'chernov', 'is', 'the', 'one', "you'll", 'have', 'to', 'suck', 'up', 'to', '||period||', '||return||', '||return||', 'morty:', 'aw', '||exclammark||', 'aw', '||exclammark||', 'oh', 'my', 'back', '||exclammark||', 'oh', 'my', 'back', '||exclammark||', "it's", 'that', 'bar', '||period||', 'who', 'the', 'hell', 'could', 'sleep', 'on', 'that', 'thing', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'was', 'very', 'comfortable', '||period||', '||return||', '||return||', 'evelyn:', 'morty', '||comma||', 'arnold', 'says', 'they', 'need', 'six', 'votes', 'to', 'throw', 'you', 'out', '||period||', '||return||', '||return||', 'helen:', "it's", 'in', 'the', 'constitution', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'the', 'chiro', '||rightparen||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'chiropractor:', "i'm", 'a', 'chiropractor', '||period||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'kidding', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'five', 'more', 'days', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "today's", 'almost', 'over', '||period||', 'and', 'weekdays', 'always', 'go', 'by', 'fast', '||period||', 'friday', "we're", 'leaving', '||period||', "it's", 'like', 'two', 'days', 'really', '||period||', "it's", 'like', 'a', 'cup', 'of', 'coffee', '||period||', 'it', 'will', 'go', 'by', 'like', 'that', '||period||', '||leftparen||', 'snapping', 'his', 'fingers', '||rightparen||', '||return||', '||return||', '[setting:', 'night', 'club', '||comma||', 'closing', 'monologue]', '||return||', '||return||', 'jerry:', 'is', 'florida', 'not', 'hot', 'and', 'muggy', 'enough', 'for', 'these', 'people', '||questionmark||', 'they', 'love', 'heat', '||period||', 'i', 'mean', 'if', 'they', 'ever', 'decide', 'to', 'land', 'men', 'on', 'the', 'sun', '||comma||', 'i', 'think', 'these', 'old', 'retired', 'guys', 'would', 'be', 'the', 'only', 'ones', 'that', 'will', 'be', 'able', 'to', 'handle', 'it', '||period||', "they'll", 'just', 'sit', 'there', 'on', 'the', 'sun', '||comma||', 'on', 'the', 'redwood', 'benches', '||comma||', 'washcloth', 'on', 'the', 'head', 'going', '||quotemark||', 'close', 'the', 'door', '||comma||', "you're", 'letting', 'all', 'the', 'heat', 'off', 'the', 'sun', '||period||', "i'm", 'trying', 'to', 'get', 'a', 'sweat', 'going', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'so', "i'm", 'on', 'the', 'plane', '||comma||', 'we', 'left', 'late', '||period||', 'pilot', 'says', "we're", 'going', 'to', 'be', 'making', 'up', 'some', 'time', 'in', 'the', 'air', '||period||', 'i', 'thought', '||comma||', 'well', "isn't", 'that', 'interesting', '||period||', "we'll", 'just', 'make', 'up', 'time', '||period||', "that's", 'why', 'you', 'have', 'to', 'reset', 'your', 'watch', 'when', 'you', 'land', '||period||', 'of', 'course', '||comma||', 'when', 'they', 'say', "they're", 'making', 'up', 'time', '||comma||', 'obviously', "they're", 'increasing', 'the', 'speed', 'of', 'the', 'aircraft', '||period||', 'now', '||comma||', 'my', 'question', 'is', 'if', 'you', 'can', 'go', 'faster', '||comma||', 'why', "don't", 'you', 'just', 'go', 'as', 'fast', 'as', 'you', 'can', 'all', 'the', 'time', '||questionmark||', "c'mon", '||comma||', "there's", 'no', 'cops', 'up', 'here', '||comma||', 'nail', 'it', '||period||', 'give', 'it', 'some', 'gas', '||exclammark||', "we're", 'flying', '||exclammark||', '||return||', '||return||', 'gavin:', 'travelling', '||comma||', 'of', 'course', '||comma||', 'is', 'the', 'best', 'education', '||period||', 'do', 'you', 'know', 'last', 'year', 'i', 'was', 'in', 'over', 'forty', '||comma||', 'forty', '||dash||', 'five', 'countries', '||comma||', 'and', 'i', 'would', 'have', 'gone', 'to', 'more', 'but', 'i', 'had', 'just', 'got', 'a', 'puppy', '||comma||', 'and', 'he', 'was', 'too', 'young', 'to', 'take', 'with', 'me', '||period||', 'but', 'now', 'i', "won't", 'travel', 'without', 'him', '||period||', '||return||', '||return||', 'jerry:', 'is', 'he', 'on', 'the', 'plane', 'now', '||questionmark||', '||return||', '||return||', 'gavin:', 'oh', 'yes', '||period||', 'yes', '||comma||', "he's", 'in', 'the', '||comma||', "he's", 'in', 'the', 'baggage', 'compartment', '||period||', 'i', "don't", 'know', 'why', 'they', "won't", 'let', 'him', 'sit', 'up', 'here', 'with', 'me', '||period||', "he's", 'a', 'lot', 'better', 'behaved', 'than', 'most', 'of', 'the', 'dregs', 'you', 'find', 'onboard', 'here', '||period||', 'do', 'you', '||comma||', 'do', 'you', 'have', 'any', 'pets', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'just', 'my', 'next', 'door', 'neighbor', '||period||', '||return||', '||return||', 'gavin:', "you're", 'missing', 'out', 'on', 'a', 'relationship', 'that', 'could', 'enrich', 'your', 'life', 'in', 'ways', 'that', 'you', 'never', 'could', 'have', 'thought', 'possible', '||period||', '||return||', '||return||', 'jerry:', 'howbout', 'picking', 'up', 'their', '||comma||', 'you', 'know', '||period||', 'you', 'find', 'that', 'enriching', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'gavin:', 'oh', '||comma||', "i'm", 'feeling', 'a', 'bit', 'queasy', '||period||', '||return||', '||return||', 'attendant', '#1:', 'sir', '||comma||', "we're", 'gonna', 'make', 'an', 'emergency', 'landing', 'in', 'chicago', 'and', 'get', 'you', 'to', 'a', 'hospital', '||period||', '||return||', '||return||', 'gavin:', 'my', 'dog', '||period||', 'what', 'about', 'my', 'dog', '||questionmark||', '||return||', '||return||', 'attendant', '#1:', 'uh', '||comma||', 'you', 'have', 'a', 'dog', '||questionmark||', '||return||', '||return||', 'attendant', '#2:', 'do', 'you', 'know', 'anyone', 'on', 'the', 'plane', '||comma||', 'mr', '||period||', 'palone', '||questionmark||', '||return||', '||return||', 'gavin:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', 'how', 'you', 'feeling', '||questionmark||', '||return||', '||return||', 'gavin:', 'would', 'you', 'take', 'care', 'of', 'farfel', '||questionmark||', '||return||', '||return||', 'jerry:', 'farfel', '||questionmark||', '||return||', '||return||', 'attendant', '#2:', "it's", 'his', 'dog', '||period||', "we're", 'landing', 'in', 'chicago', 'to', 'get', 'him', 'to', 'a', 'hospital', '||comma||', 'could', 'you', 'take', 'his', 'dog', 'to', 'new', 'york', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'dog', '||questionmark||', 'the', 'dog', '||questionmark||', '||questionmark||', '||return||', '||return||', 'gavin:', "i'm", 'sure', "it's", 'only', 'for', 'a', 'day', 'or', 'two', '||period||', '||return||', '||return||', 'jerry:', 'but', '||comma||', 'you', 'know', '||comma||', 'what', 'if', '||comma||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'gavin:', 'give', 'me', 'your', 'address', 'and', 'phone', 'number', '||comma||', "i'll", 'call', 'you', '||period||', '||return||', '||return||', 'jerry:', 'the', 'dog', '||questionmark||', '||return||', '||return||', 'jerry:', 'let', 'go', '||comma||', 'farfel', '||exclammark||', 'let', 'go', '||comma||', 'gimme', 'that', '||exclammark||', 'gimme', 'the', 'sneaker', 'you', 'stupid', 'idiot', '||exclammark||', 'shut', 'up', '||exclammark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'so', 'what', 'would', 'you', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', "it's", 'only', 'been', 'three', 'days', '||comma||', "i'm", 'sure', "he's", 'gonna', 'call', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'farfel', '||rightparen||', ':', 'stop', 'it', '||exclammark||', 'shut', 'uuuuuup', '||exclammark||', '||exclammark||', '||exclammark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'do', 'you', 'believe', 'this', '||questionmark||', 'do', 'you', 'believe', 'what', "i'm", 'dealing', 'with', 'here', '||comma||', "i've", 'got', 'a', 'wild', 'animal', 'in', 'the', 'house', '||exclammark||', "he's", 'deranged', '||comma||', 'maybe', "he's", 'got', 'rabies', '||period||', 'i', 'can', 'get', 'lockjaw', '||period||', '||return||', '||return||', 'elaine:', 'if', 'only', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', 'place', '||period||', "he's", 'going', 'everywhere', '||comma||', 'i', "can't", 'go', 'out', 'of', 'the', 'house', 'at', 'night', '||period||', 'i', "haven't", 'performed', 'in', 'three', 'days', '||period||', "this'll", 'be', 'my', 'first', 'night', 'out', 'of', 'the', 'house', 'since', 'i', 'got', 'back', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'when', 'you', 'walk', 'him', '||comma||', 'do', 'ya', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'do', 'i', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'pick', 'it', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'elaine:', 'you', 'pick', 'it', 'up', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'have', 'to', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'boy', 'would', 'i', 'love', 'to', 'see', 'that', '||period||', '||return||', '||return||', 'jerry:', 'shut', 'up', '||exclammark||', '||exclammark||', 'shut', 'up', 'farfel', '||comma||', 'stop', 'it', '||exclammark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'i', "don't", 'know', 'what', 'to', 'do', '||period||', 'i', 'mean', 'what', 'if', 'i', 'take', 'it', 'to', 'the', 'pound', 'then', 'the', 'guy', 'shows', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'maybe', 'you', 'should', 'call', 'the', 'airline', '||comma||', 'they', 'might', 'know', 'where', 'he', 'is', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'tried', '||period||', 'they', "don't", 'know', 'anything', '||period||', '||leftparen||', 'notices', 'elaine', 'making', 'egg', 'creams', '||rightparen||', 'you', 'gotta', 'put', 'the', 'syrup', 'in', 'first', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'milk', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'you', 'the', "guy's", 'a', 'drunk', '||comma||', "he's", 'probably', 'on', 'a', 'bender', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'a', 'bender', 'anyhow', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'they', 'drink', 'and', 'they', 'bend', 'things', 'at', 'the', 'bar', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'he', "hasn't", 'called', '||period||', '||return||', '||return||', 'jerry:', 'two', 'hundred', 'seats', 'on', 'a', 'plane', '||comma||', 'i', 'gotta', 'wind', 'up', 'next', 'to', 'yukon', 'jack', 'and', 'his', 'dog', 'cujo', '||period||', 'shut', 'up', '||exclammark||', 'one', 'more', 'day', 'and', 'you', 'are', 'pound', 'bound', '||exclammark||', '||return||', '||return||', 'kramer:', 'sorry', '||comma||', 'i', "can't", 'watch', 'the', 'dog', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "we're", 'going', 'to', 'the', 'movies', '||comma||', "we're", 'gonna', 'see', 'prognosis', 'negative', '||period||', '||return||', '||return||', 'kramer:', 'i', "can't", '||comma||', 'i', 'gotta', 'get', 'this', 'ellen', 'out', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', "you're", 'breaking', 'up', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'ho', 'ho', 'ho', 'yeah', '||comma||', 'the', 'sooner', 'the', 'better', '||period||', 'i', "can't", 'wait', 'to', 'do', 'it', '||period||', 'you', 'know', 'how', "there's", 'some', 'people', 'you', 'worry', 'about', 'whether', "you're", 'going', 'to', 'hurt', 'their', 'feelings', '||questionmark||', 'with', 'her', '||comma||', "i'm", 'looking', 'forward', 'to', 'it', '||period||', "i'd", 'like', 'to', 'get', 'it', 'on', 'video', '||comma||', 'watch', 'it', 'in', 'slow', 'motion', 'and', 'freeze', 'frame', 'it', '||period||', 'oh', 'ho', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'i', "don't", 'know', 'how', 'you', 'lasted', 'as', 'long', 'as', 'you', 'did', '||period||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', 'you', "didn't", 'like', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'if', 'you', 'could', 'see', 'her', 'personality', 'it', 'would', 'be', 'like', 'one', 'of', 'the', 'elephant', 'man', 'exhibits', '||comma||', 'you', 'know', 'where', 'they', 'pull', 'off', 'the', 'sheet', 'and', 'everyone', 'gasps', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'someone', "hasn't", 'killed', 'her', 'yet', '||period||', '||return||', '||return||', 'kramer:', 'how', 'come', 'you', 'never', 'said', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'you', "can't", 'tell', 'someone', 'how', 'you', 'feel', 'about', 'their', 'girlfriend', 'until', 'after', 'they', 'stop', 'seeing', 'them', '||period||', '||return||', '||return||', 'kramer:', 'i', 'tell', 'you', '||period||', '||return||', '||return||', 'jerry:', 'you', '||period||', "i'm", 'talking', 'about', 'people', '||period||', '||return||', '||return||', 'elaine:', 'are', 'we', 'still', 'going', 'to', 'the', 'movies', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "can't", 'i', 'gotta', 'watch', 'farfel', '||comma||', 'you', 'and', 'george', 'can', 'go', 'without', 'me', '||period||', '||return||', '||return||', 'elaine:', 'just', 'me', 'and', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'elaine:', 'but', 'we', 'need', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'need', 'me', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', '||period||', '||period||', '||period||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'prognosis', 'negative', '||exclammark||', '||leftparen||', 'in', 'a', 'funny', 'voice', '||rightparen||', '||return||', '||return||', 'elaine:', 'because', 'i', 'relate', 'to', 'george', 'through', 'you', '||comma||', "we're", 'like', 'friends', '||dash||', 'in', '||dash||', 'law', '||period||', 'besides', '||comma||', 'you', 'said', 'we', 'were', 'gonna', 'see', 'prognosis', 'negative', 'together', '||period||', "can't", 'you', 'just', 'put', 'some', 'newspapers', 'down', 'or', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "can't", 'trust', 'him', '||comma||', 'he', 'gets', 'insane', '||period||', 'i', "won't", 'enjoy', 'myself', '||period||', "that's", 'right', '||comma||', 'farfel', '||comma||', "i'm", 'talking', 'about', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'just', 'me', 'and', 'george', 'alone', '||questionmark||', '||return||', '||return||', 'george:', "let's", 'go', '||comma||', 'people', '||comma||', "let's", 'go', '||exclammark||', "it's", 'prognosis', 'negative', 'time', '||comma||', 'wa', 'ha', 'ha', 'ha', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'go', '||period||', '||return||', '||return||', 'george:', "can't", 'go', '||comma||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', 'have', 'to', 'watch', 'idiot', 'farfel', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'kramer', 'was', 'watching', '||period||', '||return||', '||return||', 'jerry:', "he's", 'breaking', 'up', 'with', 'his', 'girlfriend', 'tonight', '||period||', '||return||', '||return||', 'george:', 'well', 'so', "what's", 'the', 'problem', '||comma||', 'you', 'just', 'put', 'some', 'newspaper', 'down', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'want', 'that', 'smell', 'in', 'the', 'house', '||period||', '||return||', '||return||', 'george:', 'you', 'spritz', 'a', 'little', 'lysol', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'like', 'bo', 'and', 'cologne', '||comma||', 'they', 'combine', 'forces', 'into', 'some', 'kind', 'of', 'strange', 'mutant', 'funk', '||period||', '||return||', '||return||', 'george:', 'so', "we're", 'not', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||period||', 'you', 'two', 'go', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'you', 'still', 'wanna', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'if', 'you', 'want', '||period||', '||return||', '||return||', 'elaine:', 'it', '||comma||', 's', '||comma||', "it's", 'up', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'go', 'ahead', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", '||comma||', 'i', 'really', 'wanted', 'to', 'see', 'prognosis', 'negative', 'with', 'jerry', '||comma||', 'uh', '||comma||', 'you', 'wanna', 'see', 'ponce', 'de', 'leon', '||questionmark||', '||return||', '||return||', 'george:', 'ponce', 'de', 'leon', '||questionmark||', 'okay', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'sure', 'you', "don't", 'wanna', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'want', 'to', 'but', 'i', "can't", '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'i', 'tell', 'you', 'what', '||period||', 'how', 'about', 'if', 'i', 'come', 'back', 'here', 'first', 'and', 'i', 'clean', 'everything', 'up', 'and', 'i', 'open', 'up', 'the', 'windows', 'and', 'if', "you're", 'still', 'not', 'satisfied', 'we', 'can', 'switch', 'apartments', 'for', 'the', 'night', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'this', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'forget', 'it', '||period||', 'go', 'ahead', '||comma||', "you'll", 'have', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', "it's", 'not', 'that', '||period||', '||return||', '||return||', 'george:', "it's", 'just', 'we', 'want', 'you', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thank', 'you', 'very', 'much', '||period||', "i'm", 'telling', 'you', '||comma||', 'one', 'more', 'day', 'stinkbreath', '||exclammark||', '||return||', '||return||', 'jerry:', 'on', 'my', 'block', '||comma||', 'a', 'lot', 'of', 'ah', '||comma||', 'people', 'walk', 'their', 'dogs', '||comma||', 'and', 'i', 'always', 'see', 'them', 'walking', 'along', 'with', 'their', 'little', 'poop', 'bags', '||comma||', 'which', 'to', 'me', 'is', 'just', 'the', 'lowest', 'function', 'of', 'human', 'life', '||period||', 'if', 'aliens', 'are', 'watching', 'this', 'through', 'telescopes', '||comma||', "they're", 'gonna', 'think', 'the', 'dogs', 'are', 'the', 'leaders', '||period||', 'if', 'you', 'see', 'two', 'life', 'forms', '||comma||', 'one', 'of', "them's", 'making', 'a', 'poop', '||comma||', 'the', 'other', "one's", 'carrying', 'it', 'for', 'him', '||comma||', 'who', 'would', 'you', 'assume', 'was', 'in', 'charge', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'how', 'long', 'did', 'you', 'live', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'about', 'three', 'years', '||period||', '||return||', '||return||', 'george:', "that's", 'pretty', 'long', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'that', 'long', '||comma||', 'really', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'and', 'then', 'you', 'came', 'here', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'so', "i've", 'been', 'here', 'about', 'six', 'years', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'counting', 'on', 'his', 'fingers', '||rightparen||', ':', 'eighty', '||dash||', 'six', '||comma||', 'eighty', '||dash||', 'seven', '||comma||', 'eighty', '||dash||', 'eight', '||comma||', 'eighty', '||dash||', 'nine', '||comma||', 'ninety', '||comma||', 'ninety', '||dash||', 'one', '||period||', '||period||', '||period||', 'yup', '||period||', '||return||', '||return||', 'jerry:', 'bad', 'dog', '||exclammark||', 'bad', 'dog', '||exclammark||', 'you', 'go', 'outside', '||exclammark||', 'outside', '||exclammark||', '||exclammark||', 'what', 'do', 'you', 'want', 'from', 'me', '||questionmark||', 'tell', 'me', '||exclammark||', 'money', '||comma||', 'you', 'want', 'money', '||questionmark||', "i'll", 'give', 'you', 'money', '||comma||', 'how', 'much', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'must', 'have', 'been', 'out', 'of', 'my', 'mind', '||period||', 'look', 'at', 'you', '||period||', 'why', "don't", 'you', 'do', 'something', 'with', 'your', 'life', '||questionmark||', 'sit', 'around', 'here', 'all', 'day', '||comma||', 'you', 'contribute', 'nothing', 'to', 'society', '||period||', "you're", 'just', 'taking', 'up', 'space', '||period||', 'how', 'could', 'i', 'be', 'with', 'someone', 'like', 'you', '||questionmark||', "wouldn't", 'respect', 'myself', '||period||', '||return||', '||return||', 'george:', 'i', 'like', 'herbal', 'tea', '||period||', '||return||', '||return||', 'george:', "chamomile's", 'good', '||period||', 'lemon', 'lift', '||period||', 'almond', 'pleasure', '||period||', '||return||', '||return||', 'elaine:', 'jerry', 'likes', 'morning', 'thunder', '||period||', '||return||', '||return||', 'george:', 'jerry', 'drinks', 'morning', 'thunder', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'morning', 'thunder', 'has', 'caffeine', 'in', 'it', '||comma||', 'jerry', "doesn't", 'drink', 'caffeine', '||period||', '||return||', '||return||', 'elaine:', 'jerry', "doesn't", 'know', 'morning', 'thunder', 'has', 'caffeine', 'in', 'it', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'tell', 'him', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'laughing', '||rightparen||', ':', 'no', '||period||', 'and', 'you', 'should', 'see', 'him', '||comma||', 'man', '||comma||', 'he', 'gets', 'all', 'hyper', '||comma||', 'he', "doesn't", 'even', 'know', 'why', '||comma||', 'he', 'loves', 'it', '||exclammark||', 'he', 'walks', 'around', '||comma||', 'going', '||comma||', '||quotemark||', 'god', '||comma||', 'i', 'feel', 'great', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george', '||leftparen||', 'laughing', '||rightparen||', ':', 'you', "don't", 'tell', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'george:', 'that', 'is', 'so', 'funny', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||exclammark||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'have', 'you', 'ever', 'seen', 'him', 'throw', 'up', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'please', '||exclammark||', 'please', '||exclammark||', '||exclammark||', 'i', 'take', 'it', 'all', 'back', '||comma||', 'everything', '||exclammark||', 'i', 'take', 'it', 'all', 'back', '||comma||', 'every', 'word', '||exclammark||', 'i', 'love', 'you', '||exclammark||', 'i', 'love', '*you*', '||exclammark||', 'i', "can't", 'live', 'without', 'you', '||comma||', 'i', '||comma||', 'll', '||comma||', "i'll", 'do', 'anything', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'gavin', 'palone', '||period||', 'what', '||questionmark||', 'are', 'you', 'sure', '||questionmark||', 'he', 'was', 'released', 'on', 'monday', '||questionmark||', '*last*', 'monday', '||questionmark||', 'did', 'he', 'leave', 'a', 'phone', 'number', 'or', 'address', '||questionmark||', 'unbelievable', '||period||', 'well', 'thank', 'you', '||comma||', 'thanks', '||comma||', 'thanks', 'very', 'much', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', "that's", 'it', '||comma||', 'farfel', '||exclammark||', "party's", 'over', '||exclammark||', 'start', 'packing', 'up', 'your', 'little', 'squeeze', 'toys', 'buddy', 'boy', '||comma||', "you're", 'checking', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'it', 'was', 'weird', 'because', 'george', 'and', 'i', 'get', 'along', 'so', 'great', 'in', 'so', 'many', 'situations', 'but', 'this', 'is', 'the', 'first', 'time', 'we', 'ever', 'really', 'went', 'one', '||dash||', 'on', '||dash||', 'one', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'one', '||dash||', 'on', '||dash||', "one's", 'a', 'whole', 'different', 'game', '||period||', "can't", 'pass', 'off', '||period||', '||return||', '||return||', 'elaine:', 'the', 'only', 'time', 'it', "wasn't", 'uncomfortable', 'was', 'when', 'we', 'were', 'making', 'fun', 'of', 'you', '||period||', '||return||', '||return||', 'jerry:', 'going', 'to', 'the', 'dog', 'pound', '||comma||', 'everybody', '||exclammark||', 'going', 'to', 'the', 'dog', 'pound', '||comma||', 'come', 'on', 'down', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'have', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'supposed', 'to', 'do', '||questionmark||', 'i', "don't", 'want', 'to', 'do', 'it', '||period||', 'i', 'like', 'dogs', '||period||', "i'm", 'not', 'sure', 'this', 'is', 'a', 'dog', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'the', 'guy', 'might', 'have', 'just', 'lost', 'your', 'number', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'in', 'the', 'book', 'and', 'i', 'have', 'a', 'machine', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'do', 'you', 'know', 'what', 'they', 'do', 'to', 'dogs', 'at', 'the', 'pound', '||questionmark||', 'they', 'keep', 'them', 'there', 'for', 'a', 'week', 'and', 'then', 'if', 'nobody', 'claims', 'them', '||comma||', 'they', 'kill', 'them', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'how', 'late', 'are', 'they', 'open', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'went', 'back', 'with', 'ellen', '||period||', '||return||', '||return||', 'jerry', 'and', 'elaine:', 'ohhhhh', '||comma||', "that's", 'great', '||period||', '||return||', '||return||', 'elaine:', 'terrific', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'really', 'think', 'you', 'guys', 'are', 'good', 'together', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'she', 'understands', 'you', 'and', 'she', 'is', 'not', 'demanding', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'think', 'that', 'i', 'forgot', 'what', 'you', 'two', 'said', 'about', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'was', 'just', 'trying', 'to', 'be', 'supportive', '||comma||', 'you', 'know', '||period||', 'i', 'knew', 'you', 'were', 'upset', '||period||', '||return||', '||return||', 'kramer:', 'from', 'now', 'on', 'when', 'we', 'pass', 'each', 'other', 'in', 'the', 'hall', '||comma||', 'i', "don't", 'know', 'you', '||comma||', 'you', "don't", 'know', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||comma||', 'we', "didn't", 'mean', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'getting', 'my', 'pot', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'we', 'like', 'her', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', 'what', 'did', 'we', 'say', "that's", 'so', 'bad', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'believe', 'i', 'referred', 'to', 'her', 'personality', 'as', 'a', 'potential', 'science', 'exhibit', '||period||', '||return||', '||return||', 'jerry:', 'i', 'said', '||comma||', '||quotemark||', 'how', 'come', 'no', "one's", 'killed', 'her', '||questionmark||', '||quotemark||', 'probably', "shouldn't", 'have', 'said', 'anything', '||comma||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||return||', '||return||', 'jerry:', 'everyone', 'knows', 'the', 'first', 'break', '||dash||', 'up', 'never', 'takes', '||period||', '||leftparen||', 'answers', 'buzzer', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'prognosis', 'negative', '||exclammark||', '||leftparen||', 'again', 'in', 'a', 'funny', 'voice', '||rightparen||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'farfel', '||comma||', 'put', 'your', 'shoes', 'on', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "can't", 'you', 'just', 'give', 'it', 'one', 'more', 'day', '||comma||', "it's", 'not', 'his', 'fault', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'my', 'dog', '||comma||', 'i', "don't", 'know', 'where', 'this', 'boozehound', 'is', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'i', 'tell', 'you', 'what', '||period||', 'how', 'about', 'if', 'you', 'and', 'george', 'go', 'to', 'the', 'movies', '||comma||', 'and', 'i', 'stay', 'here', 'and', 'watch', 'the', 'dog', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'let', 'you', 'do', 'that', '||comma||', 'what', 'about', 'prognosis', 'negative', '||questionmark||', '||return||', '||return||', 'elaine:', "we'll", 'see', 'it', 'sunday', '||period||', '||return||', '||return||', 'george:', "tonight's", 'the', 'night', '||comma||', 'right', '||questionmark||', 'prognosis', 'negative', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'going', '||comma||', "i'm", 'gonna', 'watch', 'the', 'dog', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'this', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "we'll", 'go', 'see', 'something', 'else', 'tonight', '||period||', "we'll", 'see', '||comma||', 'uh', '||comma||', 'ponce', 'de', 'leon', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'with', 'this', 'dog', '||comma||', 'i', 'thought', 'we', 'were', 'taking', 'it', 'to', 'the', 'pound', '||period||', '||return||', '||return||', 'jerry:', 'she', 'talked', 'me', 'into', 'one', 'more', 'day', '||period||', 'talk', 'amongst', 'yourselves', '||comma||', "i'm", 'gonna', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'uh', 'jerry', '||comma||', 'how', 'long', 'will', 'you', 'be', 'in', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'regular', 'human', 'time', '||questionmark||', '||return||', '||return||', 'george:', 'uh', 'why', "don't", 'you', 'wait', 'then', 'go', 'in', 'the', 'movies', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "shouldn't", 'i', 'go', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'mean', '||comma||', 'sometimes', "it's", 'good', 'to', 'get', 'there', 'and', 'make', 'sure', 'you', 'get', 'your', 'seats', 'and', 'then', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'and', "isn't", 'it', 'more', 'fun', 'using', 'the', 'urinal', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'urinals', 'are', 'fun', '||period||', 'can', 'i', 'go', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'go', '||period||', '||return||', '||return||', 'elaine:', "who's", 'stopping', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'are', 'you', 'doing', 'me', 'a', 'favor', '||questionmark||', '||return||', '||return||', 'elaine:', 'like', 'we', 'care', 'if', 'you', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'good', '||period||', 'good', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'things', 'are', 'good', '||period||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', 'he', 'takes', 'such', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', 'he', 'does', 'in', 'there', '||questionmark||', 'he', 'gargles', '||period||', '||return||', '||return||', 'george:', 'jerry', 'gargles', '||questionmark||', 'is', 'that', 'why', 'he', 'takes', 'so', 'long', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'he', 'does', 'it', 'like', 'six', 'times', 'a', 'day', '||period||', '||return||', '||return||', 'george:', 'how', 'come', 'we', 'never', 'hear', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'he', 'does', 'it', 'quiet', '||period||', 'he', 'does', 'it', 'quiet', '||period||', 'lookit', '||comma||', 'just', 'like', 'this', '||comma||', 'watch', '||period||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'wait', '||comma||', 'did', 'you', 'ever', 'see', 'him', 'throw', 'up', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'we', 'talked', 'about', 'that', 'already', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'nothing', 'to', 'say', 'to', 'anybody', '||period||', "i'm", 'so', 'uninteresting', '||period||', 'i', 'think', "i'm", 'out', 'of', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'calling', 'me', 'six', 'times', 'a', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'i', 'know', 'about', 'is', 'sports', '||period||', "that's", 'it', '||period||', 'no', 'matter', 'how', 'depressed', 'i', 'get', '||comma||', 'i', 'could', 'always', 'read', 'the', 'sports', 'section', '||period||', '||return||', '||return||', 'jerry:', 'i', 'could', 'read', 'the', 'sports', 'section', 'if', 'my', 'hair', 'was', 'on', 'fire', '||period||', '||return||', '||return||', 'george:', 'know', 'what', '||questionmark||', 'ponce', 'de', 'leon', 'is', 'sold', 'out', '||period||', '||return||', '||return||', 'jerry:', 'it', 'is', '||questionmark||', 'oh', 'yeah', '||comma||', "you're", 'right', '||period||', 'what', 'else', 'is', 'playing', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', 'except', 'prognosis', 'negative', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'know', 'she', 'really', 'wants', 'to', 'see', 'that', 'with', 'me', '||period||', '||return||', '||return||', 'elaine:', 'gimme', 'the', 'jacket', '||comma||', 'furface', '||comma||', 'this', 'is', 'not', 'seinfeld', "you're", 'dealing', 'with', '||exclammark||', 'when', 'i', 'get', 'through', 'with', 'you', '||comma||', "you'll", 'be', 'begging', 'to', 'go', 'to', 'the', 'pound', '||exclammark||', '||return||', '||return||', 'elaine:', 'shut', 'up', '||period||', 'shut', 'up', '||exclammark||', '||leftparen||', 'answers', 'phone', '||rightparen||', 'hello', '||questionmark||', 'no', '||comma||', "who's", 'calling', '||questionmark||', 'oh', 'my', 'god', '||comma||', 'the', 'dog', 'guy', '||period||', 'where', 'have', '*you*', 'been', '||questionmark||', 'yeah', '||comma||', 'well', 'you', 'better', 'pick', 'up', 'your', 'dog', 'tonight', 'or', 'he', 'has', 'humped', 'his', 'last', 'leg', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'i', 'could', 'understand', 'if', 'there', 'was', 'something', 'else', 'playing', '||comma||', 'but', "it's", 'this', 'or', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'to', 'do', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'this', "'saving", "movies'", 'thing', '||questionmark||', "something's", 'playing', '||comma||', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'what', '||questionmark||', "we're", 'gonna', 'do', 'nothing', 'now', '||comma||', 'this', 'is', 'crazy', '||period||', '||return||', '||return||', 'jerry:', 'it', 'is', 'kind', 'of', 'silly', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', "it's", 'just', 'a', 'movie', '||comma||', 'for', "god's", 'sake', '||period||', '||return||', '||return||', 'george:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'like', "she's", '*in*', 'the', 'movie', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'am', 'i', 'supposed', 'to', 'ruin', 'the', 'whole', 'night', 'because', 'she', 'wants', 'to', 'see', 'it', '||questionmark||', 'i', 'mean', '||comma||', 'if', 'i', 'could', 'have', 'seen', 'it', 'with', 'her', '||comma||', 'fine', '||period||', 'but', 'i', "can't", 'control', 'all', 'these', 'circumstances', 'and', 'schedules', 'and', "peoples'", 'availabilities', 'at', 'movies', '||period||', '||return||', '||return||', 'george:', 'and', "she'll", 'still', 'see', 'it', '||comma||', "you're", 'not', 'stopping', 'her', 'from', 'seeing', 'it', '||period||', '||return||', '||return||', 'jerry:', 'how', 'does', 'sitting', 'next', 'to', 'a', 'person', 'in', 'a', 'movie', 'theater', 'increase', 'the', 'level', 'of', 'enjoyment', '||questionmark||', 'you', "can't", 'talk', 'during', 'a', 'movie', '||period||', 'you', 'know', '||comma||', 'this', 'is', 'stupid', '||comma||', "c'mon", '||comma||', "let's", 'just', 'go', '||period||', '||return||', '||return||', 'george:', 'good', '||period||', '||return||', '||return||', 'jerry:', 'saving', 'movies', '||period||', '||return||', '||return||', 'george:', 'ridiculous', '||exclammark||', '||return||', '||return||', 'jerry:', 'two', 'for', 'prognosis', 'negative', '||period||', "i'm", 'in', 'big', 'trouble', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "you're", 'dead', '||period||', '||return||', '||return||', 'gavin:', "bell's", 'palsy', '||period||', 'the', 'entire', 'side', 'of', 'my', '||comma||', 'of', '||comma||', 'of', 'my', 'face', 'was', 'paralyzed', '||period||', 'farfel', '||exclammark||', 'i', "couldn't", '||comma||', 'i', "couldn't", '||comma||', 'i', "couldn't", 'even', 'feed', 'myself', '||comma||', 'i', 'was', 'completely', 'incapacitated', '||period||', 'quiet', 'farfel', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', "it's", 'interesting', '||comma||', 'because', 'i', 'called', 'the', 'hospital', 'and', 'they', 'said', 'you', 'were', 'released', 'on', 'monday', '||period||', '||return||', '||return||', 'gavin:', 'yes', '||comma||', 'yes', '||comma||', "that's", 'true', '||comma||', 'but', 'then', 'i', 'was', 'taken', 'to', 'the', "bell's", 'palsy', 'center', 'in', '||comma||', 'in', '||comma||', 'in', '||comma||', 'in', 'rockford', '||period||', 'absolutely', 'first', '||comma||', 'first', 'rate', 'facility', '||comma||', 'top', 'notch', 'physicians', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "c'mon", '||comma||', "c'mon", '||comma||', 'get', 'off', 'me', '||exclammark||', '||return||', '||return||', 'gavin:', 'he', "won't", 'hurt', 'you', '||comma||', "he's", 'just', 'playing', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'you', 'keep', 'that', 'mutt', 'away', 'from', 'me', '||period||', '||return||', '||return||', 'gavin:', 'mutt', '||questionmark||', "i'll", 'wager', 'his', 'parents', 'are', 'more', 'pure', 'than', 'yours', '||period||', '||return||', '||return||', 'ellen:', 'kramer', '||comma||', 'are', 'you', 'coming', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'ellen', '||period||', '||return||', '||return||', 'ellen:', 'get', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', "it's", 'really', 'been', 'a', 'pleasure', 'taking', 'care', 'of', 'your', 'dog', 'for', 'a', 'week', '||comma||', 'but', 'if', 'you', "don't", 'mind', '||period||', '||period||', '||period||', '||return||', '||return||', 'gavin:', 'pre', '||dash||', 'prediction', '||period||', "you'll", 'be', 'calling', 'me', 'to', 'ask', 'if', 'you', 'can', 'come', 'and', 'visit', 'him', 'before', 'the', 'month', 'is', 'out', '||period||', '||return||', '||return||', 'jerry:', 'prediction', '||period||', 'i', 'never', 'see', 'you', 'or', 'him', 'again', 'for', 'the', 'rest', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'elaine:', 'we', 'made', 'plans', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'we', 'just', 'rent', 'a', 'movie', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'wanted', 'to', 'see', 'prognosis', 'negative', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it&mac226', '||semicolon||', 's', '||comma||', "it's", 'supposed', 'to', 'be', 'really', 'bad', '||comma||', '*really*', 'bad', '||period||', 'i', 'mean', "it's", 'long', '||comma||', "there's", 'no', 'story', '||comma||', "it's", 'so', 'unbelievably', 'boring', '||comma||', 'i', 'heard', '||period||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'promised', 'me', "we'd", 'go', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'george', 'told', 'me', 'the', 'whole', 'story', '||comma||', 'line', 'for', 'line', '||comma||', 'i', 'mean', 'i', 'almost', 'feel', 'like', "i've", 'seen', 'it', 'already', 'and', 'walked', 'out', 'on', 'it', '||period||', '||return||', '||return||', 'elaine:', 'wait', '||comma||', 'george', 'saw', 'the', 'movie', '||questionmark||', 'i', 'saw', 'him', 'yesterday', '||comma||', 'he', "didn't", 'mention', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'and', 'george', 'got', 'together', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'wanted', 'to', 'talk', 'about', 'how', 'we', 'have', 'nothing', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||comma||', 'hi', '||comma||', 'hi', '||comma||', 'hi', '||comma||', 'hi', '||period||', '||return||', '||return||', 'jerry:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'ah', 'you', 'were', 'right', '||period||', '||return||', '||return||', 'jerry:', 'about', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'ellen', '||period||', 'we', '||comma||', 'uh', '||comma||', 'broke', 'up', 'again', '||period||', '||return||', '||return||', 'jerry', 'and', 'elaine', '||comma||', 'together:', 'awwwwww', '||period||', '||return||', '||return||', 'jerry:', 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'she', 'was', 'the', 'one', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'bring', 'back', 'the', 'pot', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', "c'mon", "it's", 'movie', 'time', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'what', 'are', 'you', 'gonna', 'see', '||questionmark||', '||return||', '||return||', 'jerry:', 'prognosis', 'negative', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "that's", 'supposed', 'to', 'be', 'great', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', '||period||', '||return||', '||return||', 'kramer:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'an', 'instinct', 'for', 'these', 'things', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'parakeet', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'that', 'was', 'the', 'only', 'pet', 'that', 'i', 'really', 'enjoyed', '||period||', 'we', 'used', 'to', 'let', 'him', 'out', 'of', 'his', 'cage', '||comma||', 'and', 'he', 'would', 'fly', 'around', 'and', 'my', 'mother', 'had', 'built', '||comma||', 'one', 'entire', 'wall', 'of', 'our', 'living', 'room', 'was', 'mirrored', '||period||', 'she', 'felt', 'this', 'gives', 'you', 'a', 'feeling', 'of', 'space', '||period||', 'have', 'you', 'ever', 'heard', 'this', 'interior', 'design', 'principle', 'that', 'a', 'mirror', 'makes', 'it', 'seem', 'like', 'you', 'have', 'an', 'entire', 'other', 'room', '||questionmark||', 'what', 'kind', 'of', 'a', 'jerk', 'walks', 'up', 'to', 'a', 'mirror', 'and', 'goes', '||comma||', '||quotemark||', 'hey', 'look', '||comma||', "there's", 'a', 'whole', 'nother', 'room', 'in', 'there', '||period||', "there's", 'a', 'guy', 'in', 'there', 'looks', 'just', 'like', 'me', '||period||', '||quotemark||', 'but', 'the', 'parakeet', 'will', 'fall', 'for', 'this', '||comma||', "you'll", 'let', 'him', 'out', 'of', 'his', 'cage', '||comma||', 'he', 'flies', 'around', 'the', 'room', '||comma||', 'bang', '||exclammark||', 'with', 'his', 'little', 'head', '||comma||', 'he', 'would', 'just', 'go', "'click'", 'ohh', '||exclammark||', 'and', "i'd", 'always', 'think', '||comma||', 'even', 'if', 'he', 'thinks', 'the', 'mirror', 'is', 'another', 'room', '||comma||', 'why', "doesn't", 'he', 'at', 'least', 'try', 'to', 'avoid', 'hitting', 'the', 'other', 'parakeet', '||questionmark||', '||return||', '||return||', 'jerry:', 'does', 'it', 'seem', 'to', 'you', 'that', 'the', 'ventriloquist', 'dummy', 'has', 'a', 'very', 'active', 'sexual', 'social', 'life', '||questionmark||', "he's", 'always', 'talking', 'about', 'dates', 'and', 'women', 'that', 'he', 'knows', 'and', 'bringing', 'them', 'back', 'to', 'the', 'suitcase', 'at', 'night', '||comma||', "there's", 'always', 'a', 'sawdust', 'joke', 'in', 'there', 'somewhere', 'you', 'know', '||comma||', 'kinky', 'things', 'cuz', "he's", 'made', 'out', 'of', 'wood', "an'", 'he', 'can', 'spin', 'his', 'head', 'around', '||comma||', "we're", 'somehow', 'expected', 'to', 'believe', 'because', 'the', 'face', 'is', 'soo', 'animated', 'that', 'they', 'think', 'we', "aren't", 'noticing', 'that', 'the', 'feet', 'are', 'just', 'swinging', 'there', '||comma||', 'dummy', 'feet', 'never', 'look', 'right', 'do', 'they', '||questionmark||', "they're", 'just', 'kinda', 'dangling', 'there', '||comma||', 'always', 'kinda', 'askew', 'you', 'know', '||questionmark||', 'you', 'always', 'see', 'just', 'little', 'ankle', '||comma||', 'those', 'thin', 'fabric', 'ankles', 'that', 'they', 'have', 'you', 'know', '||period||', 'ya', 'think', "'i", "don't", 'think', 'this', 'thing', 'is', 'real', '||period||', "'", '||return||', '||return||', 'jerry:', 'let', 'me', 'speak', 'with', 'the', 'head', 'librarian', '||period||', '||period||', '||period||', '||period||', 'because', "it's", 'absurd', '||period||', 'an', 'overdue', 'book', 'from', '1971', '||questionmark||', '||period||', '||period||', '||period||', 'this', 'is', 'a', 'joke', 'right', '||questionmark||', 'what', 'are', 'you', '||questionmark||', 'from', 'a', 'radio', 'station', '||questionmark||', '||return||', '||return||', 'kramer:', 'enters', '||return||', '||return||', 'jerry:', "ya'", 'got', 'me', 'i', 'fell', 'for', 'it', '||period||', 'alright', '||comma||', 'ok', 'i', 'can', 'be', 'down', 'there', 'in', 'like', 'a', 'half', 'hour', '||period||', 'bye', '||period||', '||return||', '||return||', 'kramer:', "what's", 'the', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', "you're", 'not', "goin'", 'to', 'believe', '||period||', 'the', 'nypl', 'says', 'that', 'i', 'took', 'out', 'tropic', 'of', 'cancer', 'in', '1971', 'and', 'never', 'returned', 'it', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'know', 'how', 'much', 'that', 'comes', 'to', '||questionmark||', "that's", 'a', 'nickel', 'a', 'day', 'for', '20', 'years', '||period||', "it's", 'going', 'to', 'be', '$50', '||comma||', '000', '||return||', '||return||', 'jerry:', 'it', "doesn't", 'work', 'like', 'that', '||period||', '||return||', '||return||', 'kramer:', 'if', "it's", 'a', 'dime', 'a', 'day', 'it', 'could', 'be', '$100', '||comma||', '000', '||return||', '||return||', 'jerry:', "it's", 'not', 'going', 'to', 'be', 'anything', '||period||', 'i', 'returned', 'the', 'book', '||period||', 'i', 'remember', 'it', 'very', 'vividly', 'because', 'i', 'was', 'with', 'sherry', 'becker', '||period||', 'she', 'wore', 'this', 'orange', 'dress', '||period||', 'it', 'was', 'the', 'first', 'time', 'i', 'ever', 'saw', 'her', 'in', 'a', 'dress', 'like', 'that', '||period||', 'in', 'oticed', 'since', 'ninth', 'grade', 'she', 'was', 'developing', 'this', 'body', 'in', 'secret', 'under', 'these', 'loose', 'clothes', 'for', 'like', 'two', 'years', '||period||', 'and', 'then', 'one', 'day', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'that', 'orange', 'dress', 'is', 'burned', 'in', 'my', 'memory', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'memory', 'burn', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wonder', 'what', 'ever', 'happened', 'to', 'her', '||period||', '||return||', '||return||', 'kramer:', 'how', 'did', 'they', 'ever', 'find', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'computers', '||comma||', "they're", 'cracking', 'down', 'now', 'on', 'overdue', 'books', '||period||', 'the', 'whole', 'thing', 'is', 'completely', 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', "it's", 'george', '||period||', 'wait', "'til", 'he', 'hears', "we're", 'going', 'to', 'the', 'library', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', 'never', 'got', 'a', 'library', 'card', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'speaker', '||rightparen||', 'coming', 'down', '||period||', '||return||', '||return||', 'kramer:', "it's", 'all', 'a', 'bunch', 'of', 'cheapskates', 'in', 'there', 'anyway', '||period||', 'people', 'sitting', 'around', 'reading', 'the', 'newspaper', 'attached', 'to', 'huge', 'wooden', 'sticks', 'trying', 'to', 'save', 'a', 'quarter', '||comma||', 'ooh', '||comma||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'go', 'to', 'the', 'library', '||period||', 'you', 'want', 'to', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', '||return||', '||return||', 'kramer:', 'the', 'dewey', 'decimal', 'system', '||comma||', 'what', 'a', 'scam', 'that', 'was', '||period||', 'boy', 'that', 'dewey', 'guy', 'really', 'cleaned', 'up', 'on', 'that', 'deal', '||period||', '||return||', '||return||', 'jerry:', "where's", 'george', '||return||', '||return||', 'reader:', 'shhh', '||period||', '||return||', '||return||', 'kramer:', "tryin'", 'to', 'save', 'a', 'quarter', '||period||', '||return||', '||return||', 'jerry:', 'i', 'kinda', 'like', 'those', 'sticks', '||period||', "i'd", 'like', 'to', 'get', 'them', 'in', 'my', 'house', '||period||', '||return||', '||return||', 'jerry:', 'this', "woman's", 'completely', 'ignoring', 'me', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'her', '||period||', 'this', 'is', 'a', 'lonely', 'woman', 'looking', 'for', 'companionship', '||period||', '||period||', '||period||', '||period||', '||period||', 'spinster', '||period||', '||period||', '||period||', '||period||', 'maybe', 'a', 'virgin', '||period||', '||period||', '||period||', '||period||', 'maybe', 'she', 'got', 'hurt', 'a', 'long', 'time', 'ago', '||period||', 'she', 'was', 'a', 'schoolgirl', '||period||', 'there', 'was', 'a', 'boy', 'it', "didn't", 'work', 'out', '||period||', 'now', 'she', 'needs', 'a', 'little', 'tenderness', '||period||', 'she', 'needs', 'a', 'little', 'understanding', '||period||', 'she', 'needs', 'a', 'little', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'eventually', 'a', 'little', 'shot', 'of', 'penicillin', '||return||', '||return||', 'librarian:', 'yes', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', 'i', 'called', 'before', '||period||', 'i', 'got', 'his', 'notice', 'in', 'the', 'mail', '||period||', '||return||', '||return||', 'librarian:', 'oh', '||comma||', 'tropic', 'of', 'cancer', '||comma||', 'henry', 'miller', '||comma||', 'uh', '||comma||', 'this', 'case', 'has', 'been', 'turned', 'over', 'to', 'our', 'library', 'investigation', 'officer', 'mr', '||period||', 'bookman', '||period||', '||return||', '||return||', 'kramer:', 'bookman', '||questionmark||', 'the', 'library', "investigator's", 'name', 'is', 'actually', '||comma||', 'bookman', '||questionmark||', '||return||', '||return||', 'librarian:', "it's", 'true', '||period||', '||return||', '||return||', 'kramer:', "that's", 'amazing', '||period||', "that's", 'like', 'an', 'ice', 'cream', 'man', 'named', '||comma||', 'cone', '||period||', '||return||', '||return||', 'librarian:', 'lt', '||period||', 'bookman', 'has', 'been', 'working', 'here', 'for', '25', 'years', 'so', 'i', 'think', "he's", 'heard', 'all', 'the', 'jokes', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'speak', 'with', 'this', 'bookman', '||questionmark||', '||return||', '||return||', 'librarian:', 'just', 'a', 'second', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'jerry', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'saw', 'him', '||period||', 'i', 'think', "it's", 'him', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'see', 'the', 'homeless', 'guy', 'on', 'the', 'library', 'steps', 'screaming', 'obsenities', 'and', 'doing', 'some', 'calesthetics', 'routine', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||return||', '||return||', 'george:', 'i', 'think', "that's", 'mr', '||period||', 'hayman', '||period||', '||period||', '||period||', '||period||', 'the', 'gym', 'teacher', 'from', 'our', 'high', 'school', '||period||', '||return||', '||return||', 'reader:', 'shhh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whispers', '||rightparen||', 'haymen', '||comma||', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'older', '||comma||', 'completely', 'covered', 'in', 'filth', '||comma||', 'no', 'whistle', '||comma||', 'but', 'i', 'think', "it's", 'him', '||period||', '||return||', '||return||', 'jerry:', 'george', 'got', 'him', 'fired', '||period||', 'he', 'squealed', 'on', 'him', '||period||', '||return||', '||return||', 'kramer:', 'ooh', 'tattle', 'tale', '||return||', '||return||', 'george:', '||leftparen||', 'yells', '||rightparen||', 'i', "didn't", 'tattle', '||return||', '||return||', 'reader:', 'shh', 'shh', '||return||', '||return||', 'kramer:', 'what', 'did', 'this', 'guy', 'do', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'there', 'was', 'an', 'incident', '||period||', "i'd", 'rather', 'not', 'discuss', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'come', 'on', '||comma||', 'you', 'can', 'tell', 'me', '||period||', '||return||', '||return||', 'george:', 'some', 'other', 'time', '||period||', '||return||', '||return||', 'kramer:', 'what', 'tonight', '||questionmark||', '||return||', '||return||', 'kramer:', "y'know", 'i', 'never', 'figured', 'you', 'for', 'a', 'squealer', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'he', 'sang', 'like', 'a', 'canary', '||period||', '||return||', '||return||', 'librarian:', 'mr', '||period||', "bookman's", 'not', 'here', '||period||', '||return||', '||return||', 'jerry:', 'not', 'here', '||questionmark||', 'why', 'was', 'i', 'told', 'to', 'come', 'down', 'here', '||questionmark||', '||return||', '||return||', 'librarian:', "he'll", 'be', 'out', 'all', 'afternoon', 'on', 'a', 'case', '||period||', '||return||', '||return||', 'kramer:', "he's", 'out', 'on', 'a', 'case', '||questionmark||', 'he', 'actually', 'goes', 'out', 'on', 'cases', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'what', 'am', 'i', 'supposed', 'to', 'do', 'now', '||questionmark||', '||return||', '||return||', 'librarian:', "i'll", 'have', 'mr', '||period||', 'bookman', 'get', 'in', 'touch', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'thanks', '||period||', 'come', 'on', 'lets', 'go', '||return||', '||return||', 'george:', "let's", 'see', 'if', "it's", 'hayman', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'uh', '||comma||', "i'll", 'see', 'you', 'boys', 'later', '||period||', '||leftparen||', 'turns', 'to', 'librarian', '||rightparen||', 'so', 'uh', '||comma||', "what's", 'a', 'guy', 'got', 'to', 'do', 'around', 'here', 'to', 'get', 'a', 'library', 'card', '||questionmark||', '||return||', '||return||', 'elaine:', "where's", 'karen', '||questionmark||', '||return||', '||return||', 'secretary:', 'she', 'went', 'to', 'pick', 'up', 'lunch', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'she', "didn't", 'ask', 'me', 'what', 'i', 'wanted', '||period||', '||return||', '||return||', 'secretary:', 'she', 'must', 'have', 'forgot', '||period||', '||return||', '||return||', 'elaine:', 'how', 'could', 'she', 'forget', "i've", 'been', 'ordering', 'lunch', 'every', 'day', 'here', 'for', '3', 'and', 'a', 'half', 'years', '||questionmark||', '||return||', '||return||', 'secretary:', 'i', "don't", 'know', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'you', "don't", 'know', 'anything', '||period||', 'you', 'see', '||comma||', '||quotemark||', 'i', "don't", 'know', 'anything', '||quotemark||', '||comma||', 'means', "there's", 'something', 'to', 'know', '||period||', 'if', 'you', 'really', "didn't", 'know', 'anything', 'you', 'would', 'have', 'said', '||quotemark||', "you're", 'crazy', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'mr', '||period||', 'lippman', '||period||', '||return||', '||return||', 'lippman:', 'elaine', '||comma||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'uh', '||comma||', 'i', 'was', 'wondering', 'if', 'you', 'got', 'a', 'chance', 'to', 'look', 'at', 'that', '||comma||', 'um', '||comma||', 'biography', 'of', 'columbus', '||comma||', 'i', 'gave', 'you', '||questionmark||', '||return||', '||return||', 'lippman:', 'yes', 'i', 'did', '||period||', 'yes', 'i', 'did', '||period||', '||period||', '||period||', '||period||', 'maureen', 'this', 'water', 'is', 'still', 'too', 'cold', '||period||', '||return||', '||return||', 'elaine:', 'ooh', 'yeah', '||comma||', "it's", 'freezing', '||period||', '||period||', '||period||', '||period||', 'hurts', 'your', 'teeth', '||period||', '||return||', '||return||', 'elaine:', "i'm", "tellin'", "ya'", "somethin'", 'is', "goin'", 'on', '||period||', 'he', 'never', 'likes', 'anything', 'i', 'recommend', '||period||', 'and', 'then', 'that', 'lunch', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'so', 'they', 'forgot', 'to', 'get', 'your', 'lunch', '||period||', 'big', 'deal', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'know', '||period||', "you've", 'never', 'worked', 'in', 'an', 'office', '||period||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', 'see', '||comma||', 'george', '||comma||', "you've", 'worked', 'in', 'an', 'office', '||period||', 'jerry', 'thinks', "i'm", 'over', 'reacting', 'but', 'you', 'understand', '||comma||', '||period||', '||period||', '||period||', 'lunch', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'understand', 'lunch', '||comma||', 'i', "don't", 'know', 'anything', 'about', 'lunch', '||period||', 'listen', '||period||', 'just', 'because', 'i', 'got', 'the', 'guy', 'fired', "doesn't", 'mean', 'i', 'turned', 'him', 'into', 'a', 'bum', '||dash||', 'does', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'did', 'he', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'purposely', 'mispronounced', 'my', 'name', '||period||', 'instead', 'of', 'saying', '||comma||', '||quotemark||', 'costanza', '||quotemark||', "he'd", 'say', '||comma||', '||quotemark||', "can't", 'stand', 'ja', '||quotemark||', '||period||', '||quotemark||', "can't", 'stand', 'ja', '||quotemark||', '||period||', '||period||', '||period||', 'he', 'made', 'me', 'smell', 'my', 'own', 'gym', 'socks', 'once', '||period||', '||return||', '||return||', 'jerry:', 'i', 'remember', 'he', 'made', 'you', 'wear', 'a', 'jock', 'on', 'your', 'head', 'for', 'a', 'whole', 'class', '||period||', 'and', 'the', 'straps', 'were', "hangin'", 'down', 'by', 'his', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'ok', '||comma||', 'i', 'never', 'even', 'had', 'him', 'for', 'gym', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'him', 'for', 'hygene', '||period||', 'remember', 'his', 'teeth', '||period||', 'it', 'was', 'like', 'from', 'an', 'exhumed', 'corpse', '||period||', '||return||', '||return||', 'george:', 'little', 'baked', 'beans', '||return||', '||return||', 'jerry:', 'echh', '||return||', '||return||', 'elaine:', 'come', 'on', 'tell', 'me', 'what', 'happened', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'ok', '||period||', 'as', 'i', 'said', 'the', 'guy', 'had', 'it', 'in', 'for', 'me', '||period||', 'he', 'actually', 'failed', 'me', 'in', 'gym', '||period||', '||period||', '||period||', '||period||', 'me', '||exclammark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'those', 'spastic', 'shnitzer', 'twins', '||period||', '||period||', '||period||', '||return||', '||return||', 'heyman:', "can't", 'stand', 'ja', '||period||', '||period||', '||period||', "can't", 'stand', 'ja', '||return||', '||return||', 'george:', 'yes', '||comma||', 'mr', '||period||', 'hayman', '||return||', '||return||', 'heyman:', 'your', 'underwear', 'was', "stick'n", 'out', 'of', 'your', 'shorts', 'during', 'gym', 'class', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'guess', "that's", 'because', 'i', 'wear', 'boxer', 'shorts', '||period||', '||return||', '||return||', 'heyman:', 'boxer', 'shorts', '||comma||', 'ha', 'ha', '||comma||', 'well', 'what', 'brand', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'not', 'really', 'sure', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'heyman:', 'well', "let's", 'take', 'a', 'look', '||period||', '||return||', '||return||', 'george:', 'he', 'gave', 'me', 'a', 'wedgie', '||period||', '||return||', '||return||', 'jerry:', 'he', 'got', 'fired', 'the', 'next', 'day', '||period||', '||return||', '||return||', 'elaine:', 'why', 'do', 'they', 'call', 'it', 'a', 'wedgie', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'the', 'underwear', 'is', 'pulled', 'up', 'from', 'the', 'back', 'and', '||period||', '||period||', '||period||', 'it', 'wedges', 'in', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'they', 'also', 'have', 'an', 'atomic', 'wedgie', '||period||', 'now', 'the', 'goal', 'there', 'is', 'to', 'actually', 'get', 'the', 'waistband', 'on', 'top', 'of', 'the', 'head', '||period||', 'very', 'rare', '||period||', '||return||', '||return||', 'elaine:', 'boys', 'are', 'sick', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'do', 'girls', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'just', 'tease', 'some', 'one', "'til", 'they', 'develop', 'an', 'eating', 'disorder', '||period||', 'guy', 'who', 'ruined', 'his', 'life', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'go', 'back', 'to', 'the', 'library', 'and', 'talk', 'to', 'him', '||period||', 'i', 'gotta', 'find', 'out', 'if', 'i&mac226', '||semicolon||', 'm', 'the', 'guy', 'who', 'ruined', 'his', 'life', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'babaloo', '||comma||', 'you', 'better', 'get', 'home', '||period||', 'you', 'know', 'this', 'guy', 'bookman', 'from', 'the', 'library', "he's", 'waiting', 'for', 'ya', '||period||', '||return||', '||return||', 'jerry:', "what's", 'amazing', 'to', 'me', 'about', 'the', 'library', 'is', "it's", 'a', 'place', 'where', 'you', 'go', 'in', 'you', 'can', 'take', 'out', 'any', 'book', 'you', 'whant', 'they', 'just', 'give', 'it', 'to', 'you', 'and', 'say', 'bring', 'it', 'back', 'when', "you're", 'done', '||period||', 'it', 'reminds', 'me', 'of', 'like', 'this', 'pathetic', 'friend', 'that', 'everbody', 'had', 'when', 'they', 'were', 'a', 'little', 'kid', 'who', 'would', 'let', 'you', 'borrow', 'any', 'of', 'his', 'stuff', 'if', 'you', 'would', 'just', 'be', 'his', 'friend', '||period||', "that's", 'what', 'the', 'library', 'is', '||period||', 'a', 'government', 'funded', 'pathetic', 'friend', '||period||', 'and', "that's", 'why', 'everybody', 'kinds', 'of', 'bullies', 'the', 'library', '||period||', "i'll", 'bring', 'it', 'back', 'on', 'time', '||period||', '||period||', '||period||', "i'll", 'bring', 'it', 'back', 'late', '||period||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', 'charge', 'me', 'a', 'nickel', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'glad', "you're", 'here', '||comma||', 'so', 'we', 'can', 'get', 'this', 'all', 'straightened', 'out', '||period||', 'would', 'you', 'like', 'a', 'cup', 'of', 'tea', '||questionmark||', '||return||', '||return||', 'bookman:', 'you', 'got', 'any', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'coffee', '||questionmark||', '||return||', '||return||', 'bookman:', 'yeah', '||period||', 'coffee', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'drink', 'coffee', '||period||', '||return||', '||return||', 'bookman:', 'yeah', '||comma||', 'you', "don't", 'drink', 'coffee', '||questionmark||', 'how', 'about', 'instant', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'have', '||dash||', '||dash||', '||return||', '||return||', 'bookman:', 'you', "don't", 'have', 'any', 'instant', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'normally', '||dash||', '||dash||', '||return||', '||return||', 'bookman:', 'who', "doesn't", 'have', 'instant', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", '||period||', '||return||', '||return||', 'bookman:', 'you', 'buy', 'a', 'jar', 'of', "folger's", 'crystals', '||comma||', 'you', 'put', 'it', 'in', 'the', 'cupboard', '||comma||', 'you', 'forget', 'about', 'it', '||period||', 'then', 'later', 'on', 'when', 'you', 'need', 'it', '||comma||', "it's", 'there', '||period||', 'it', 'lasts', 'forever', '||period||', "it's", 'freeze', '||dash||', 'dried', '||period||', 'freeze', '||dash||', 'dried', 'crystals', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', "i'll", 'have', 'to', 'remember', 'that', '||period||', '||return||', '||return||', 'bookman:', 'you', 'took', 'this', 'book', 'out', 'in', '1971', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'and', 'i', 'returned', 'it', 'in', '1971', '||period||', '||return||', '||return||', 'bookman:', 'yeah', '||comma||', "'71", '||period||', 'that', 'was', 'my', 'first', 'year', 'on', 'the', 'job', '||period||', 'bad', 'year', 'for', 'libraries', '||period||', 'bad', 'year', 'for', 'america', '||period||', 'hippies', 'burning', 'library', 'cards', '||comma||', 'abby', 'hoffman', 'telling', 'everybody', 'to', 'steal', 'books', '||period||', 'i', "don't", 'judge', 'a', 'man', 'by', 'the', 'length', 'of', 'his', 'hair', 'or', 'the', 'kind', 'of', 'music', 'he', 'listens', 'to', '||period||', 'rock', 'was', 'never', 'my', 'bag', '||period||', 'but', 'you', 'put', 'on', 'a', 'pair', 'of', 'shoes', 'when', 'you', 'walk', 'into', 'the', 'new', 'york', 'public', 'library', '||comma||', 'fella', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'mr', '||period||', 'bookman', '||period||', 'i', '||dash||', '||dash||', 'i', 'returned', 'that', 'book', '||period||', 'i', 'remember', 'it', 'very', 'specifically', '||period||', '||return||', '||return||', 'bookman:', "you're", 'a', 'comedian', '||comma||', 'you', 'make', 'people', 'laugh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'try', '||period||', '||return||', '||return||', 'bookman:', 'you', 'think', 'this', 'is', 'all', 'a', 'big', 'joke', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'bookman:', 'i', 'saw', 'you', 'on', 't', '||period||', 'v', '||period||', 'once', '||semicolon||', 'i', 'remembered', 'your', 'name', '||dash||', '||dash||', 'from', 'my', 'list', '||period||', 'i', 'looked', 'it', 'up', '||period||', 'sure', 'enough', '||comma||', 'it', 'checked', 'out', '||period||', 'you', 'think', 'because', "you're", 'a', 'celebrity', 'that', 'somehow', 'the', 'law', "doesn't", 'apply', 'to', 'you', '||comma||', 'that', "you're", 'above', 'the', 'law', '||questionmark||', '||return||', '||return||', 'jerry:', 'certainly', 'not', '||period||', '||return||', '||return||', 'bookman:', 'well', '||comma||', 'let', 'me', 'tell', 'you', 'something', '||comma||', 'funny', 'boy', '||period||', "y'know", 'that', 'little', 'stamp', '||comma||', 'the', 'one', 'that', 'says', '||quotemark||', 'new', 'york', 'public', 'library', '||quotemark||', '||questionmark||', 'well', 'that', 'may', 'not', 'mean', 'anything', 'to', 'you', '||comma||', 'but', 'that', 'means', 'a', 'lot', 'to', 'me', '||period||', 'one', 'whole', 'hell', 'of', 'a', 'lot', '||period||', 'sure', '||comma||', 'go', 'ahead', '||comma||', 'laugh', 'if', 'you', 'want', 'to', '||period||', "i've", 'seen', 'your', 'type', 'before', 'flashy', '||comma||', 'making', 'the', 'scene', '||comma||', 'flaunting', 'convention', '||period||', 'yeah', '||comma||', 'i', 'know', 'what', "you're", 'thinking', '||period||', "what's", 'this', 'guy', 'making', 'such', 'a', 'big', 'stink', 'about', 'old', 'library', 'books', '||questionmark||', 'well', '||comma||', 'let', 'me', 'give', 'you', 'a', 'hint', '||comma||', 'junior', '||period||', 'maybe', 'we', 'can', 'live', 'without', 'libraries', '||comma||', 'people', 'like', 'you', 'and', 'me', '||period||', 'maybe', '||period||', 'sure', '||comma||', "we're", 'too', 'old', 'to', 'change', 'the', 'world', '||comma||', 'but', 'what', 'about', 'that', 'kid', '||comma||', 'sitting', 'down', '||comma||', 'opening', 'a', 'book', '||comma||', 'right', 'now', '||comma||', 'in', 'a', 'branch', 'at', 'the', 'local', 'library', 'and', 'finding', 'drawings', 'of', 'pee', '||dash||', 'pees', 'and', 'wee', '||dash||', 'wees', 'on', 'the', 'cat', 'in', 'the', 'hat', 'and', 'the', 'five', 'chinese', 'brothers', '||questionmark||', "doesn't", 'he', 'deserve', 'better', '||questionmark||', 'look', '||period||', 'if', 'you', 'think', 'this', 'is', 'about', 'overdue', 'fines', 'and', 'missing', 'books', '||comma||', "you'd", 'better', 'think', 'again', '||period||', 'this', 'is', 'about', 'that', "kid's", 'right', 'to', 'read', 'a', 'book', 'without', 'getting', 'his', 'mind', 'warped', '||exclammark||', 'or', 'maybe', 'that', 'turns', 'you', 'on', '||comma||', 'seinfeld', '||semicolon||', 'maybe', "that's", 'how', "y'get", 'your', 'kicks', '||period||', 'you', 'and', 'your', 'good', '||dash||', 'time', 'buddies', '||period||', 'well', 'i', 'got', 'a', 'flash', 'for', 'ya', '||comma||', 'joy', '||dash||', 'boy', 'party', 'time', 'is', 'over', '||period||', "y'got", 'seven', 'days', '||comma||', 'seinfeld', '||period||', 'that', 'is', 'one', 'week', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'marion:', "it's", 'bookman', 'the', 'library', 'cop', '||period||', '||return||', '||return||', 'kramer:', 'so', 'i', '||comma||', 'i', "didn't", 'do', 'anything', 'wrong', '||period||', '||return||', '||return||', 'marion:', "i'm", 'supposed', 'to', 'be', 'at', 'work', '||period||', 'i', 'could', 'get', 'fired', '||period||', 'i', "shouldn't", 'have', 'come', 'here', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", "ya'", 'leave', '||questionmark||', '||return||', '||return||', 'marion:', 'i', "can't", '||period||', '||return||', '||return||', 'jerry:', 'no', 'way', "i'm", "payin'", 'that', '||exclammark||', 'i', 'returned', 'that', 'book', 'in', '1971', '||period||', 'i', 'have', 'a', 'witness', 'sherry', 'becker', '||period||', 'she', 'wore', 'an', 'orange', 'dress', '||period||', 'she', 'gave', 'me', 'a', 'piece', 'of', 'black', 'jack', 'gum', '||period||', "it's", 'a', 'licorice', 'gum', '||period||', 'what', 'do', "ya'", 'think', 'of', 'next', 'i', 'remember', 'it', '||period||', '||leftparen||', 'thinks', 'out', 'loud', '||comma||', 'opens', 'phone', 'book', '||rightparen||', 'becker', '||comma||', '||period||', '||period||', '||period||', 'becker', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'sherry:', 'kevin', 'went', 'to', 'a', 'public', 'school', '||comma||', "he's", 'the', '14', 'year', 'old', '||questionmark||', 'we', 'were', "gonna'", 'send', 'marsha', 'to', 'a', 'private', 'school', '||period||', 'cause', 'in', 'some', 'way', 'they', "don't", 'learn', '||period||', '||period||', '||period||', 'enough', '||period||', '||period||', '||period||', 'i', 'think', '||period||', '||return||', '||return||', 'jerry:', 'so', 'sherry', '||comma||', 'what', 'do', 'you', 'remember', 'about', 'that', 'day', 'at', 'the', 'library', '||questionmark||', '||return||', '||return||', 'sherry:', 'i', 'remember', 'it', 'like', 'it', 'was', 'yesterday', '||period||', 'it', 'was', 'a', 'friday', 'afternoon', '||period||', 'i', 'wore', 'a', 'purple', 'dress', '||period||', '||return||', '||return||', 'jerry:', 'purple', '||questionmark||', "ya'", 'sure', 'it', "wasn't", 'orange', '||questionmark||', '||return||', '||return||', 'sherry:', 'positive', '||period||', 'and', 'i', 'was', "chewin'", 'dentyne', '||period||', 'i', 'always', 'chewed', 'dentyne', '||period||', 'remember', 'jerry', '||questionmark||', 'dentyne', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'black', 'jack', '||questionmark||', '||return||', '||return||', 'sherry:', 'uch', '||exclammark||', 'licorice', 'gum', '||questionmark||', 'never', '||exclammark||', 'we', 'were', 'ah', '||comma||', 'reading', 'pasages', 'to', 'each', 'other', 'from', 'that', 'henry', 'miller', 'book', '||comma||', '||return||', '||return||', 'jerry:', 'tropic', 'of', 'cancer', '||period||', '||return||', '||return||', 'sherry:', 'no', '||comma||', 'tropic', 'of', 'capricorn', '||return||', '||return||', 'jerry:', 'tropic', 'of', 'capricorn', '||questionmark||', '||return||', '||return||', 'sherry:', 'rememba', '||questionmark||', 'what', 'holds', 'the', 'world', "togetha'", '||period||', '||period||', '||period||', '||quotemark||', 'as', 'i', 'have', 'learned', 'from', 'bitter', 'experience', 'is', 'sexual', 'intercourse', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', 'wait', 'a', 'second', '||period||', "you're", 'right', '||period||', 'i', 'had', 'both', 'of', 'them', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', "here's", 'the', 'book', '||period||', "don't", 'let', 'anybody', 'see', 'it', '||period||', "don't", 'let', 'anything', 'happen', 'to', 'it', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "it's", 'me', '||comma||', 'george', '||comma||', "don't", 'worry', '||comma||', "i'll", 'return', 'it', '||return||', '||return||', 'jerry:', 'ok', '||comma||', "i'll", 'see', 'you', 'after', 'school', '||period||', 'i', '||period||', 'm', 'late', 'for', "hayman's", 'hygiene', '||period||', '||return||', '||return||', 'sherry:', 'where', "ya'", 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'nice', 'seeing', 'you', 'again', '||period||', 'i', 'just', 'remembered', 'something', '||period||', "i've", 'got', 'to', 'go', '||period||', '||leftparen||', 'to', 'old', 'man', 'that', 'enters', '||rightparen||', 'it', 'was', 'george', '||exclammark||', '||return||', '||return||', 'kramer:', 'read', 'another', 'poem', '||period||', '||return||', '||return||', 'marion:', 'pressed', 'chest', 'fleshed', 'out', 'west', 'might', 'be', 'the', 'saviour', 'or', 'a', 'garden', 'pest', '||period||', '||return||', '||return||', 'kramer:', 'wow', '||comma||', 'that', 'is', 'great', '||period||', 'you', 'should', 'be', 'published', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'the', 'library', 'is', 'kind', 'of', 'a', 'cool', 'place', 'when', "it's", 'closed', '||period||', '||return||', '||return||', 'marian:', 'oh', '||comma||', 'yeah', '||period||', 'you', "don't", 'have', 'to', 'be', 'quiet', '||period||', 'listen', 'to', 'the', 'echo', 'hello', '||exclammark||', '||return||', '||return||', 'kramer:', 'hello', '||exclammark||', '||return||', '||return||', 'marian:', 'hello', '||exclammark||', '||return||', '||return||', 'kramer:', 'hello', '||exclammark||', '||return||', '||return||', 'marian:', 'hello', '||exclammark||', '||return||', '||return||', 'bookman', '||leftparen||', 'emerging', '||rightparen||', ':', 'hello', '||exclammark||', '||return||', '||return||', 'marian', '||leftparen||', 'turning', '||comma||', 'surprised', '||rightparen||', ':', 'mr', '||period||', 'bookman', '||period||', '||return||', '||return||', 'bookman:', 'i', 'remember', 'when', 'the', 'librarian', 'was', 'a', 'much', 'older', 'woman', 'kindly', '||comma||', 'discreet', '||comma||', 'unattractive', '||period||', 'we', "didn't", 'know', 'anything', 'about', 'her', 'private', 'life', '||period||', 'we', "didn't", 'want', 'to', 'know', 'anything', 'about', 'her', 'private', 'life', '||period||', 'she', "didn't", 'have', 'a', 'private', 'life', '||period||', 'while', "you're", 'thinking', 'about', 'that', '||comma||', 'think', 'about', 'this', 'the', 'library', 'closes', 'at', 'five', "o'clock", '||comma||', 'no', 'exceptions', '||period||', 'this', 'is', 'your', 'final', 'warning', '||period||', 'got', 'that', '||comma||', 'kewpie', '||dash||', 'doll', '||questionmark||', '||return||', '||return||', 'elaine:', 'lippman', "want's", 'to', 'see', 'me', 'in', 'his', 'office', 'see', 'me', '||exclammark||', 'that', "can't", 'be', 'good', '||return||', '||return||', 'jerry:', 'maybe', "you're", "getting'", 'a', 'raise', '||period||', '||return||', '||return||', 'elaine:', 'maybe', "i'm", "getting'", 'a', 'wedgie', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'george', '||return||', '||return||', 'elaine:', 'george', 'is', 'on', 'his', 'way', 'up', '||period||', '||return||', '||return||', 'jerry:', 'wait', "'til", 'i', 'tell', 'him', 'about', 'the', 'book', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reading', '||rightparen||', 'sobs', '||return||', '||return||', 'elaine:', 'are', 'you', 'ok', '||questionmark||', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", "marion's", 'poetry', '||period||', 'i', "can't", 'take', 'it', '||leftparen||', 'leaves', 'sobbing', '||rightparen||', '||return||', '||return||', 'elaine:', 'remember', 'that', 'biography', 'i', 'recommended', '||questionmark||', 'my', 'boss', 'hated', 'it', '||return||', '||return||', 'jerry:', "i'm", 'right', 'here', '||period||', '||return||', '||return||', 'elaine:', 'remember', 'that', 'columbus', 'book', '||questionmark||', '||return||', '||return||', 'jerry:', 'columbus', '||comma||', 'euro', 'trash', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'definetly', 'him', '||period||', '||return||', '||return||', 'elaine:', 'him', '||questionmark||', 'him', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'him', 'who', '||questionmark||', 'hayman', 'him', '||period||', '||return||', '||return||', 'elaine:', 'hayman', 'the', 'gym', 'teacher', '||questionmark||', 'you', 'found', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'found', 'him', '||period||', 'he', 'was', 'sitting', 'on', 'the', 'steps', 'of', 'the', 'library', '||period||', 'i', 'sat', 'down', 'next', 'to', 'him', '||period||', 'he', 'smelled', 'like', 'the', 'locker', 'room', 'after', 'that', 'game', 'against', 'erasmus', '||return||', '||return||', 'jerry:', 'that', 'was', 'double', 'overtime', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'said', '||comma||', '||quotemark||', 'mr', '||period||', 'hayman', '||comma||', "it's", 'me', 'george', 'costanza', '||comma||', 'jfk', '||comma||', '||period||', '||period||', '||period||', '||quotemark||', 'he', "doesn't", 'move', '||period||', 'so', 'i', 'said', 'uh', '||comma||', '||quotemark||', "can't", 'stand', "ya'", '||quotemark||', '||comma||', '||quotemark||', "can't", 'stand', "ya'", '||quotemark||', 'he', 'turns', 'and', 'smiles', '||comma||', 'the', 'little', 'baked', 'bean', 'teeth', '||period||', 'i', 'get', 'up', 'to', 'run', 'away', '||comma||', 'but', 'something', 'was', 'holding', 'me', 'back', '||period||', 'it', 'was', 'heyman', '||period||', 'he', 'had', 'my', 'underwear', '||period||', 'there', 'i', 'was', 'on', 'the', 'steps', 'of', 'the', '42nd', 'st', '||period||', 'library', '||comma||', 'a', 'grown', 'man', '||comma||', 'getting', 'a', 'wedgie', '||period||', '||return||', '||return||', 'elaine:', 'at', 'least', 'it', "wasn't", 'atomic', '||period||', '||return||', '||return||', 'george:', 'it', 'was', '||period||', '||return||', '||return||', 'jerry:', 'so', 'georgie', 'boy', '||comma||', 'guess', 'what', 'happened', 'to', 'tropic', 'of', 'cancer', '||return||', '||return||', 'george:', 'how', 'should', 'i', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', 'gave', 'it', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'think', '||period||', "don't", 'you', 'remember', 'you', 'kept', 'begging', 'me', 'to', 'see', 'it', 'then', 'finally', 'i', 'agreed', '||period||', 'you', 'were', 'supposed', 'to', 'return', 'it', '||period||', 'i', 'met', 'you', 'in', 'the', 'gym', 'locker', 'room', '||period||', '||return||', '||return||', 'george:', 'the', 'locker', 'room', '||exclammark||', '||return||', '||return||', 'jerry:', "here's", 'the', 'book', '||period||', "don't", 'let', 'anybody', 'see', 'it', '||period||', "don't", 'let', 'anything', 'happen', 'to', 'it', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "it's", 'me', '||comma||', 'george', '||comma||', "don't", 'worry', '||comma||', "i'll", 'return', 'it', 'tomorrow', '||comma||', 'no', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'after', 'school', '||period||', 'i', '||comma||', '||comma||', 'm', 'late', 'for', "hayman's", 'hygiene', '||period||', '||return||', '||return||', 'heyman:', "can't", 'stand', "ya'", '||period||', '||return||', '||return||', 'george:', 'yes', 'mr', '||period||', 'hayman', '||period||', '||return||', '||return||', 'heyman:', 'your', 'underwear', 'was', "stick'n", 'out', 'of', 'your', 'shorts', 'during', 'gym', 'class', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'guess', "that's", 'because', 'i', 'wear', 'boxer', 'shorts', '||period||', '||return||', '||return||', 'heyman:', 'boxer', 'shorts', '||comma||', 'ha', '||questionmark||', 'well', 'what', 'brand', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'not', 'really', 'sure', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'heyman:', 'well', "let's", 'take', 'a', 'look', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'no', 'no', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'i', 'hope', "there's", 'no', 'hard', 'feelings', '||period||', '||return||', '||return||', 'bookman:', 'hard', 'feelings', '||questionmark||', 'what', 'do', 'you', 'know', 'about', 'hard', 'feelings', '||questionmark||', "y'ever", 'have', 'a', 'man', 'die', 'in', 'your', 'arms', '||questionmark||', "y'ever", 'kill', 'somebody', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'your', 'problem', '||questionmark||', '||return||', '||return||', 'bookman:', "what's", 'my', 'problem', '||questionmark||', 'punks', 'like', 'you', '||comma||', "that's", 'my', 'problem', '||period||', 'and', 'you', 'better', 'not', 'screw', 'up', 'again', 'seinfeld', '||comma||', 'because', 'if', 'you', 'do', '||comma||', "i'll", 'be', 'all', 'over', 'you', 'like', 'a', 'pitbull', 'on', 'a', 'poodle', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'after', 'bookman', 'exits', '||rightparen||', 'that', 'is', 'one', 'tough', 'monkey', '||exclammark||', '||leftparen||', 'turns', 'to', 'elaine', '||rightparen||', 'so', 'you', 'were', 'saying', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||questionmark||', 'so', '||comma||', 'i', 'took', 'your', 'suggestion', 'and', 'i', 'gave', 'my', 'boss', "marion's", 'poems', '||period||', 'the', 'ones', 'that', 'affected', 'kramer', 'so', 'much', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'beautiful', 'did', 'he', 'like', 'them', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', '||period||', '||period||', '||period||', 'he', "didn't", '||exclammark||', 'no', '||comma||', '||period||', '||period||', '||period||', 'he', "didn't", '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'was', 'he', 'out', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'na', '||comma||', "he's", 'gone', '||period||', 'i', 'wonder', 'what', 'happened', 'to', 'him', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', "we'll", 'never', 'know', '||period||', '||return||', '||return||', 'heyman:', "can't", 'stand', 'ya', '||comma||', '||leftparen||', 'laughing', '||rightparen||', "can't", 'stand', 'ya', '||period||', '||leftparen||', 'pan', 'to', 'tropic', 'of', 'cancer', 'on', 'ground', '||rightparen||', '||return||', '||return||', 'jerry:', 'any', 'day', 'that', 'you', 'had', 'gym', 'it', 'was', 'a', 'weird', 'school', 'day', '||comma||', 'you', 'know', 'what', 'i', 'mean', 'because', 'it', 'kind', 'of', 'like', 'started', 'of', 'kind', 'of', 'normal', '||period||', 'you', 'have', 'like', 'english', '||comma||', 'geometry', '||comma||', 'social', 'studies', 'and', 'then', 'suddenly', "you're", 'like', 'in', 'lord', 'of', 'the', 'flies', 'for', '40', 'minutes', 'you', 'know', "you're", "hangin'", 'from', 'a', 'rope', '||period||', 'you', 'have', 'hardly', 'any', 'clothes', 'on', '||period||', 'teachers', 'are', "yellin'", 'at', "ya'", '||quotemark||', "where's", 'your', 'jock', 'strap', '||questionmark||', '||quotemark||', "ya'", 'know', 'and', 'kids', 'are', "throwin'", 'dodge', 'balls', 'at', 'you', '||period||', "you're", "tryin'", 'to', 'survive', '||period||', '||period||', '||period||', 'then', 'its', 'history', '||comma||', 'science', '||comma||', 'language', '||period||', "there's", 'something', 'off', 'in', 'the', 'entire', 'flow', 'of', 'that', 'day', '||period||', '||return||', '||return||', '[act', 'one', 'scene', 'a', 'int', '||period||', 'escalator', '||dash||', 'going', 'down', 'to', 'a', 'garage', '||period||', 'in', 'single', 'file:', 'george', '||comma||', 'jerry', 'and', 'elaine', '||comma||', "who's", 'carrying', 'a', 'plastic', 'bag', 'with', 'goldfish', '||comma||', 'and', 'kramer', "who's", 'having', 'a', 'rough', 'time', 'with', 'a', 'large', '||comma||', 'heavy', 'box', '||period||', ']', '||return||', '||return||', 'george:', 'one', 'left', '||period||', '||period||', '||period||', 'what', 'a', 'joke', '||period||', '||return||', '||return||', 'kramer:', 'you', 'can', 'have', 'this', 'one', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'not', 'enough', 'btus', 'for', 'my', 'living', 'room', '||period||', '||period||', '||period||', 'that', 'was', 'a', 'complete', 'waste', 'of', 'time', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'i', "didn't", 'get', 'one', 'either', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'i', 'always', 'have', 'the', 'feeling', 'that', "everybody's", 'doing', 'something', 'better', 'than', 'me', 'on', 'saturday', 'afternoons', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'is', 'what', 'people', 'do', '||period||', '||return||', '||return||', 'jerry:', 'no', 'they', "don't", '||period||', "they're", 'out', 'on', 'some', 'big', 'picnic', '||period||', "they're", 'cooking', 'burgers', '||period||', "they're", 'making', 'out', 'on', 'blankets', '||period||', "they're", 'not', 'at', 'some', 'mall', 'in', 'jersey', 'watching', 'their', 'friends', 'trying', 'to', 'find', 'the', "world's", 'cheapest', 'air', '||dash||', 'conditioner', '||period||', '||return||', '||return||', 'george:', 'you', 'should', 'see', 'what', 'my', 'father', 'used', 'to', 'go', 'through', 'before', 'he', 'bought', 'a', 'car', '||period||', "he'd", 'go', 'from', 'state', 'to', 'state', '||period||', 'he', 'was', 'away', 'for', 'weeks', 'at', 'a', 'time', '||period||', 'it', 'was', 'like', 'he', 'was', 'running', 'for', 'president', 'and', 'he', 'was', 'going', 'through', 'the', 'primaries', '||period||', "we'd", 'get', 'phone', 'calls', 'from', 'motels', 'in', 'new', 'hampshire', '||period||', '||return||', '||return||', 'elaine:', 'so', 'we', 'took', 'a', 'little', 'ride', '||period||', "what's", 'the', 'big', 'deal', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'at', 'least', 'you', 'accomplished', 'something', '||period||', 'you', 'got', 'fish', '||period||', '||return||', '||return||', 'jerry:', 'big', 'accomplishment', '||period||', '||return||', '||return||', 'george:', 'fish', '||period||', 'what', 'do', 'they', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'this', 'way', '||period||', '||return||', '||return||', 'george:', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'five', "o'clock", '||period||', '||return||', '||return||', 'george:', 'always', 'late', '||period||', 'always', 'late', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'late', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'them', 'to', 'meet', 'me', 'in', 'front', 'of', 'my', 'building', 'at', 'six', '||dash||', 'fifteen', '||period||', '||return||', '||return||', 'elaine:', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'parents', '||period||', "it's", 'their', 'anniversary', '||period||', "i'm", 'taking', 'them', 'out', 'to', 'dinner', 'and', 'a', 'show', 'tonight', '||period||', 'you', 'think', "we'll", 'hit', 'traffic', '||questionmark||', '||return||', '||return||', 'jerry:', 'of', 'course', "we'll", 'hit', 'traffic', '||period||', "it's", 'rush', 'hour', '||period||', '||return||', '||return||', 'elaine:', "isn't", 'it', 'going', 'the', 'other', 'way', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'is', 'no', 'other', 'way', 'in', 'new', 'york', '||period||', 'everybody', 'goes', 'every', 'way', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', 'but', "it's", 'saturday', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'the', 'picnic', 'and', 'burger', 'traffic', '||period||', '||return||', '||return||', 'george:', 'i', 'always', 'get', 'myself', 'in', 'this', 'position', '||period||', "can't", 'be', 'on', 'time', '||period||', 'gotta', 'rush', '||period||', '||return||', '||return||', 'elaine:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'go', 'to', 'the', 'bathroom', '||period||', 'why', 'do', 'they', 'hide', 'the', 'bathroom', 'in', 'these', 'malls', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', "cont'd", '||rightparen||', 'you', 'want', 'me', 'to', 'help', 'you', 'with', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||comma||', 'rewoman', '||rightparen||', 'what', 'do', 'you', 'think', '||comma||', 'georgie', 'boy', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'i', 'need', 'that', 'pointed', 'out', 'for', 'me', '||questionmark||', 'what', 'is', 'that', 'going', 'to', 'do', 'for', 'me', '||questionmark||', 'how', 'does', 'that', 'help', 'me', '||comma||', 'to', 'see', 'her', '||questionmark||', "i'm", 'trying', 'to', 'live', 'my', 'life', '||period||', "don't", 'show', 'me', 'that', '||period||', '||return||', '||return||', 'kramer:', 'if', 'you', 'like', 'her', '||comma||', 'go', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'right', '||period||', "i'll", 'just', 'go', 'up', 'and', 'say', '||comma||', '||quotemark||', 'hi', '||comma||', 'how', "ya'", 'doing', '||questionmark||', 'would', 'you', 'like', 'a', 'glass', 'of', 'white', 'wine', '||questionmark||', '||quotemark||', 'jerry', 'before', 'you', 'got', 'within', 'twenty', 'feet', 'of', 'this', 'woman', '||comma||', "she'd", 'have', 'her', 'finger', 'on', 'the', 'mace', 'button', '||period||', "she's", 'like', 'an', 'expensive', 'car', 'with', 'one', 'of', 'those', 'motion', '||dash||', 'sensor', 'force', 'field', 'alarms', '||period||', 'any', 'sudden', 'movement', 'in', 'the', 'area', 'could', 'set', 'her', 'off', '||period||', '||return||', '||return||', 'kramer:', "she's", 'fat', '||period||', '||return||', '||return||', 'elaine:', 'oh', "she's", 'fat', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'jerry', "where's", 'the', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'it', 'was', 'here', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'know', 'where', 'we', 'parked', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'great', '||period||', '||return||', '||return||', 'kramer:', 'blue', '||dash||', 'one', '||period||', 'i', 'thought', 'it', 'was', 'blue', '||dash||', 'one', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'it', 'was', 'green', '||period||', 'i', 'remember', 'seeing', 'green', '||period||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'pay', 'attention', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'just', 'what', 'i', 'need', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sure', "it's", 'right', 'around', 'here', '||period||', '||return||', '||return||', 'kramer:', 'it', 'looks', 'familiar', '||period||', 'i', 'remember', 'the', 'elevator', '||period||', '||return||', '||return||', 'george:', "there's", 'elevators', 'all', 'over', '||exclammark||', 'it', 'all', 'looks', 'the', 'same', '||period||', '||return||', '||return||', 'jerry:', "it's", 'over', 'there', '||period||', 'i', 'know', 'where', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', "it's", 'black', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'dark', 'blue', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'mumbling', '||rightparen||', 'you', 'come', 'to', 'a', 'parking', 'lot', '||comma||', 'you', 'write', 'it', 'down', '||period||', 'how', 'hard', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'it', 'is', '||exclammark||', '||period||', '||period||', '||period||', 'no', '||comma||', 'no', "that's", 'a', 'toyota', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "cont'd", '||rightparen||', 'hmmm', '||period||', '||period||', '||period||', 'i', 'thought', 'it', 'was', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "didn't", 'we', 'come', 'in', 'over', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'it', 'was', 'over', 'there', '||period||', '||return||', '||return||', 'elaine:', 'how', 'long', 'can', 'fish', 'live', 'in', 'one', 'of', 'these', 'plastic', 'bags', '||questionmark||', '||return||', '||return||', 'kramer:', 'about', 'two', 'hours', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'she', 'looks', 'at', 'her', 'watch', '||rightparen||', "you'd", 'better', 'find', 'this', 'car', '||period||', '||return||', '||return||', 'george:', "it's", 'this', 'way', '||period||', '||period||', '||period||', 'and', 'they', 'take', 'off', 'again', '||comma||', 'pairing', 'off', '||return||', '||return||', 'jerry:', 'i', 'really', 'have', 'to', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'go', 'behind', 'one', 'of', 'these', 'cars', '||questionmark||', 'j', '||return||', '||return||', 'kramer:', '||leftparen||', "cont'd", '||rightparen||', 'why', '||questionmark||', "nobody's", 'around', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'wait', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'when', 'you', 'hold', 'it', 'in', 'like', 'that', 'you', 'can', 'cause', 'a', 'lot', 'of', 'damage', 'to', 'your', 'bladder', '||period||', "that's", 'what', 'happens', 'to', 'truck', 'drivers', '||period||', 'they', 'hold', 'it', 'in', 'all', 'the', 'time', '||period||', 'eventually', 'it', 'starts', 'coming', 'out', 'involuntarily', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'are', 'you', 'aware', 'that', 'adult', 'diapers', 'are', 'a', 'six', 'hundred', 'million', 'dollar', 'a', 'year', 'industry', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'should', 'just', 'go', 'anytime', 'i', 'get', 'the', 'urge', 'like', 'you', '||period||', '||period||', '||period||', 'wherever', 'i', 'am', '||period||', "there's", 'too', 'much', 'urinary', 'freedom', 'in', 'this', 'society', '||period||', "i'm", 'proud', 'to', 'hold', 'it', 'in', '||period||', 'it', 'builds', 'character', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 're', 'car', '||rightparen||', 'there', 'it', 'is', '||exclammark||', '||period||', '||period||', '||period||', 'no', "that's", 'not', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "cont'd", '||rightparen||', 'hey', '||comma||', 'watch', 'it', '||period||', '||period||', '||period||', '||period||', 'did', 'you', 'see', 'that', 'car', '||questionmark||', 'maniac', '||period||', 'can', 'you', 'explain', 'something', 'to', 'me', '||questionmark||', 'i', 'got', 'six', 'questions', 'wrong', 'on', 'my', 'drivers', 'test', '||period||', "that's", 'the', 'maximum', '||period||', 'i', 'read', 'the', 'book', '||comma||', "i'm", 'a', 'college', 'graduate', '||period||', 'this', 'is', 'a', 'country', 'where', 'fifty', 'percent', 'of', 'its', 'high', 'school', 'students', "can't", 'locate', 'europe', 'on', 'a', 'map', '||period||', 'how', 'are', 'they', 'all', 'passing', 'that', 'test', '||questionmark||', "it's", 'a', 'mystery', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'six', 'wrong', '||questionmark||', '||return||', '||return||', 'elaine:', 'those', 'school', 'zones', 'are', 'a', 'killer', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||comma||', 'rebox', '||rightparen||', 'will', 'you', 'let', 'me', 'help', 'you', 'with', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'gonna', 'put', 'it', 'down', 'behind', 'that', 'car', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'worried', "somebody's", 'gonna', 'pee', 'on', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'pink', 'eleven', '||period||', 'remember', 'that', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'got', 'it', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'that', "i'm", 'supposed', 'to', 'remember', '||period||', 'where', 'the', 'car', 'is', '||comma||', "that's", 'insignificant', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'at', 'fish', '||rightparen||', 'i', 'think', "they're", 'laboring', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'this', 'place', '||period||', "it's", 'huge', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'can', 'tell', 'you', 'this', '||period||', 'if', 'i', 'am', 'not', 'in', 'front', 'of', 'my', 'house', 'at', 'six', '||dash||', 'fifteen', '||comma||', 'when', 'my', 'parents', 'get', 'there', '||comma||', 'they', 'will', 'put', 'me', 'on', 'an', 'aggravation', 'installment', 'plan', 'that', 'will', 'compound', 'with', 'interest', 'for', 'decades', '||period||', '||return||', '||return||', 'jerry:', 'parents', 'never', 'forget', 'a', 'foul', '||dash||', 'up', '||period||', 'i', 'once', 'left', 'a', 'jacket', 'on', 'the', 'bus', 'when', 'i', 'was', 'fourteen', '||period||', 'last', 'week', "i'm", 'flying', 'to', 'chicago', 'to', 'do', 'a', 'show', '||comma||', '||quotemark||', 'make', 'sure', 'you', 'hang', 'on', 'to', 'your', 'jacket', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'where', 'the', 'hell', 'is', 'this', 'car', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'got', 'to', 'be', 'here', '||period||', '||return||', '||return||', 'elaine:', 'why', 'are', 'they', 'using', 'so', 'many', 'colors', '||questionmark||', 'and', 'the', 'numbers', 'go', 'up', 'to', 'forty', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "it's", 'not', 'on', 'this', 'level', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'are', 'four', 'different', 'levels', '||period||', 'maybe', "we're", 'on', 'the', 'wrong', 'level', '||period||', 'how', 'long', 'was', 'the', 'escalator', 'ride', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'felt', 'like', 'a', 'couple', 'of', 'levels', '||period||', '||return||', '||return||', 'jerry:', 'you', 'should', 'always', 'carry', 'a', 'pad', 'and', 'pen', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'carry', 'a', 'pen', '||period||', "i'm", 'afraid', "i'll", 'puncture', 'my', 'scrotum', '||period||', '||return||', '||return||', 'kramer:', 'i', 'have', 'a', 'pen', '||period||', '||return||', '||return||', 'jerry:', 'where', 'was', 'the', 'bathroom', 'in', 'this', 'mall', '||questionmark||', 'there', 'are', 'six', '||dash||', 'hundred', 'stores', '||comma||', 'i', "didn't", 'see', 'one', 'bathroom', '||period||', 'what', 'is', 'this', '||comma||', 'like', 'a', 'joke', '||questionmark||', 'they', 'finished', 'building', 'the', 'mall', 'and', 'they', 'go', '||comma||', '||quotemark||', 'oh', 'my', 'god', '||comma||', 'we', 'forgot', 'the', 'bathrooms', '||period||', '||quotemark||', '||return||', '||return||', 'mother:', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', "don't", 'you', 'dare', 'talk', 'to', 'me', 'like', 'that', '||exclammark||', 'you', 'hear', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'look', 'at', 'that', 'woman', '||period||', '||return||', '||return||', 'mother:', 'i', 'told', 'you', '||exclammark||', 'i', "don't", 'care', '||exclammark||', "you'll", 'have', 'to', 'wait', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'woman', '||rightparen||', 'hey', '||comma||', 'is', 'that', 'necessary', '||questionmark||', '||return||', '||return||', 'mother:', '||leftparen||', 'to', 'george', '||rightparen||', 'why', "don't", 'you', 'mind', 'your', 'own', 'business', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'hitting', 'a', 'defenseless', 'child', 'is', 'my', 'business', '||period||', '||return||', '||return||', 'kid:', '||leftparen||', 'to', 'george', '||rightparen||', "you're", 'ugly', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'kid:', "you're", 'ugly', '||period||', '||return||', '||return||', 'george:', 'you', 'are', '||exclammark||', '||return||', '||return||', 'kid:', 'you', 'are', '||exclammark||', '||return||', '||return||', 'george:', 'i', "should've", 'hit', 'the', 'little', 'son', '||dash||', 'of', '||dash||', 'a', '||dash||', 'bitch', '||period||', 'i', "can't", 'stand', 'kids', '||period||', 'adults', 'think', "it's", 'so', 'wonderful', 'how', 'honest', 'kids', 'are', '||period||', 'i', "don't", 'need', 'that', 'kind', 'of', 'honesty', '||period||', "i'll", 'take', 'a', 'deceptive', 'adult', 'over', 'an', 'honest', 'kid', 'any', 'day', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 're', 'car', '||rightparen||', 'i', 'found', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', "he's", 'got', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "that's", 'it', '||period||', 'from', 'now', 'on', 'no', 'more', 'calling', 'out', 'they', 'found', 'it', '||comma||', 'unless', "we're", 'sitting', 'in', 'it', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'look', 'at', 'my', 'fish', '||period||', '||return||', '||return||', 'jerry:', 'his', 'eyes', 'look', 'a', 'little', 'cloudy', '||period||', '||return||', '||return||', 'george:', 'oh', 'are', 'they', 'gonna', 'be', 'furious', '||period||', '||return||', '||return||', 'jerry:', "who's", 'got', 'the', 'tickets', '||questionmark||', 'george', 'i', 'do', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'thought', 'you', 'knew', 'this', 'mall', '||period||', 'you', 'said', "you'd", 'been', 'here', 'before', '||exclammark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'easy', 'the', 'last', 'time', '||period||', '||return||', '||return||', 'elaine:', 'my', 'fish', 'are', 'dying', 'right', 'in', 'front', 'of', 'me', '||exclammark||', 'we', 'have', 'to', 'get', 'someone', 'to', 'drive', 'us', 'around', 'the', 'parking', 'lot', 'to', 'help', 'us', 'look', 'for', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', 'no', "one's", 'going', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||comma||', 'we', "can't", 'seem', 'to', 'find', 'our', 'car', '||period||', 'i', 'was', 'wondering', 'if', 'it', 'would', 'be', 'possible', 'if', "you're", 'not', 'in', 'a', 'hurry', '||comma||', 'to', 'drive', 'us', 'around', 'the', 'garage', 'for', 'five', 'minutes', 'so', 'we', 'can', 'look', '||period||', '||return||', '||return||', 'man', '#1:', '||leftparen||', 'holding', 'his', 'hands', 'up', '||rightparen||', '||period||', '||period||', '||period||', 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'five', 'minutes', '||period||', '||return||', '||return||', 'man', '#1:', "can't", 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', "we're", 'not', 'wilding', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "cont'd", '||rightparen||', 'excuse', 'me', '||dash||', 'i', "can't", 'seem', 'to', 'find', 'my', 'car', '||dash||', 'do', 'you', 'think', 'you', 'could', 'drive', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "cont'd", '||rightparen||', 'oh', "that's", 'funny', '||questionmark||', 'is', 'that', 'funny', '||questionmark||', 'well', 'tell', 'me', 'if', 'you', 'think', 'this', 'is', 'funny', 'these', 'fish', 'are', 'dying', '||exclammark||', "they're", 'gasping', 'for', 'oxygen', 'right', 'now', '||exclammark||', "they'll", 'be', 'floating', 'in', 'an', 'hour', '||period||', 'is', 'that', 'funny', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'those', 'are', 'really', 'ugly', 'sneakers', '||period||', 'where', 'did', 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'here', 'at', 'the', 'mall', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "cont'd", '||rightparen||', 'sorry', 'to', 'have', 'disturbed', 'you', '||period||', 'terribly', 'sorry', '||period||', 'but', 'the', 'fish', 'will', 'be', 'dead', '||period||', 'you', 'do', 'know', 'that', '||period||', 'they', "can't", 'live', 'in', 'plastic', '||period||', "that's", 'not', 'me', 'talking', '||comma||', "that's", 'science', '||period||', '||return||', '||return||', 'jerry:', "it's", 'amazing', 'how', 'shopping', 'makes', 'me', 'have', 'to', 'go', '||period||', 'all', 'i', 'have', 'to', 'do', 'is', 'walk', 'into', 'a', 'department', 'store', 'and', "it's", 'like', 'some', 'kind', 'of', 'horse', 'laxative', 'just', 'kicked', 'in', '||period||', '||return||', '||return||', 'kramer:', 'you', 'drank', 'a', 'whole', 'bottle', 'of', 'water', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', 'so', 'why', "don't", 'you', 'just', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "can't", '||period||', '||return||', '||return||', 'kramer:', "don't", 'you', 'get', 'tired', 'of', 'following', 'rules', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'think', "i'm", 'too', 'cautious', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', 'be', 'uncomfortable', 'if', 'you', "don't", 'have', 'to', '||questionmark||', "it's", 'organic', '||period||', '||return||', '||return||', 'jerry:', 'organic', '||period||', "so's", 'buddy', 'hackett', '||period||', '||return||', '||return||', 'kramer:', 'buddy', 'hackett', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'comedian', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', '||rightparen||', 'you', 'can', 'go', 'over', 'here', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'manage', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'turns', 'away', 'and', 'spots', 'george', '||rightparen||', 'george', '||exclammark||', '||leftparen||', 'leaves', 'scene', '||rightparen||', '||return||', '||return||', 'kramer:', "it'll", 'take', 'you', 'ten', 'seconds', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'okay', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'security', 'guard:', 'okay', '||comma||', "let's", 'go', '||period||', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'security', 'guard:', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'starts', 'to', 'leave', '||comma||', 'to', 'himself', '||rightparen||', '||period||', '||period||', '||period||', 'kramer', '||return||', '||return||', 'jerry:', "i've", 'had', 'this', 'condition', 'since', 'i', 'was', 'eleven', '||exclammark||', "i've", 'been', 'in', 'and', 'out', 'of', 'hospitals', 'my', 'whole', 'life', '||period||', 'i', 'have', 'no', 'control', 'over', 'it', '||period||', 'doctors', 'have', 'told', 'me', 'that', 'when', 'i', 'feel', 'it', '||comma||', 'the', 'best', 'thing', 'to', 'do', 'is', 'just', 'release', 'it', '||period||', 'otherwise', '||comma||', 'i', 'could', 'die', '||period||', '||return||', '||return||', 'security', 'guard:', 'well', "you're", 'still', 'not', 'allowed', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'hear', 'what', "i'm", 'saying', 'to', 'you', '||questionmark||', '||exclammark||', "i'm", 'telling', 'you', 'that', 'if', 'i', "don't", 'go', '||comma||', 'i', 'could', 'die', '||period||', 'die', '||period||', 'is', 'it', 'worth', 'dying', 'for', '||questionmark||', '||return||', '||return||', 'security', 'guard:', "that's", 'up', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', "don't", 'care', 'if', 'i', 'die', '||period||', '||return||', '||return||', 'security', 'guard:', 'what', 'i', 'care', 'about', 'is', 'the', 'sanitary', 'condition', 'of', 'the', 'parking', 'facility', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'life', 'and', 'death', '||period||', '||return||', '||return||', 'security', 'guard:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'oh', "i'm", 'lying', '||period||', 'why', 'would', 'i', 'do', 'it', 'unless', 'i', 'was', 'in', 'mortal', 'danger', '||questionmark||', 'i', 'know', "it's", 'against', 'the', 'law', '||period||', '||return||', '||return||', 'security', 'guard:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'because', 'i', 'could', 'get', 'uromysitisis', 'poisoning', 'and', 'die', '||period||', "that's", 'why', '||exclammark||', '||period||', '||period||', '||period||', 'do', 'you', 'think', 'i', 'enjoy', 'living', 'like', 'this', '||questionmark||', '||period||', '||period||', '||period||', 'the', 'shame', '||comma||', 'the', 'humiliation', '||period||', '||period||', '||period||', 'you', 'know', 'i', 'have', 'been', 'issued', 'a', 'public', 'urination', 'pass', 'by', 'the', 'city', 'because', 'of', 'my', 'condition', '||period||', 'unfortunately', 'my', 'little', 'brother', 'ran', 'out', 'of', 'the', 'house', 'with', 'it', 'this', 'morning', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "c0nt'd", '||rightparen||', 'him', 'and', 'his', 'friends', 'are', 'probably', 'peeing', 'all', 'over', 'the', 'place', '||period||', 'you', 'want', 'to', 'call', 'the', 'department', 'of', 'social', 'services', '||questionmark||', 'oh', '||comma||', "it's", 'saturday', '||period||', "they're", 'closed', 'today', '||period||', 'my', 'luck', '||period||', '||return||', '||return||', 'security', 'guard:', 'you', 'can', 'tell', 'the', 'police', 'all', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'calling', 'out', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'george:', 'unbelievable', '||comma||', "i'm", 'never', 'gonna', 'get', 'out', 'of', 'here', '||period||', 'the', 'guy', 'goes', 'to', 'pee', '||comma||', 'he', 'never', 'comes', 'back', '||period||', "it's", 'like', 'a', 'science', 'fiction', 'story', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'he', 'went', 'to', 'one', 'of', 'the', 'other', 'levels', '||period||', "i'll", 'go', 'look', 'for', 'him', '||period||', '||return||', '||return||', 'george:', 'oh', 'now', "you're", 'gonna', 'go', '||questionmark||', 'elaine', "i'll", 'be', 'back', 'in', 'five', 'minutes', '||period||', '||return||', '||return||', 'george:', 'if', 'you', 'go', 'now', '||comma||', 'i', 'know', "what's", 'gonna', 'happen', '||period||', "we'll", 'find', 'the', 'car', '||comma||', 'jerry', 'will', 'show', 'up', '||comma||', 'and', 'then', "we'll", 'never', 'find', 'you', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'george:', 'oh', "what's", 'the', 'difference', '||questionmark||', "we'll", 'all', 'be', 'dead', 'eventually', '||period||', '||return||', '||return||', 'kramer:', 'does', 'that', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'it', 'bothers', 'me', '||period||', "doesn't", 'it', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'see', 'now', 'that', 'bothers', 'me', 'even', 'more', 'than', 'dying', 'bothers', 'me', '||comma||', 'cause', "it's", 'people', 'like', 'you', 'who', 'live', 'to', 'be', 'a', 'hundred', 'and', 'twenty', 'because', "you're", 'not', 'bothered', 'by', 'it', '||period||', 'how', 'could', 'it', 'not', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'once', 'saw', 'this', 'thing', 'on', 't', '||period||', 'v', '||period||', 'with', 'people', 'who', 'are', 'terminally', 'ill', '||period||', 'and', 'they', 'all', 'believed', 'the', 'secret', 'of', 'life', 'is', 'just', 'to', 'live', 'every', 'moment', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', "i've", 'heard', 'that', '||period||', 'meanwhile', "i'm", 'here', 'with', 'you', 'in', 'a', 'parking', 'garage', '||comma||', 'what', 'am', 'i', 'supposed', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'first', 'of', 'all', 'you', "don't", 'even', 'know', 'technically', 'that', 'i', 'went', '||period||', "that's", 'for', 'starters', '||period||', 'i', 'mean', 'i', "could've", 'been', 'pouring', 'a', 'bottle', 'of', 'water', 'out', 'there', '||period||', 'you', "don't", 'know', '||period||', '||return||', '||return||', 'security', 'guard:', 'i', 'know', 'what', 'you', 'did', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'really', '||comma||', 'do', 'you', '||questionmark||', 'well', 'it', 'just', 'so', 'happens', 'that', 'i', 'did', 'pour', 'water', 'out', '||period||', 'i', 'had', 'a', 'bottle', 'of', 'very', 'tepid', 'water', 'and', 'i', 'poured', 'it', 'out', '||period||', 'and', 'i', 'could', 'see', 'how', 'you', 'made', 'a', 'mistake', '||comma||', 'because', 'pouring', 'water', 'out', 'sounds', 'very', 'much', 'like', 'a', 'person', 'urinating', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "cont'd", '||rightparen||', 'and', 'you', 'know', 'when', 'you', 'think', 'about', 'it', "it's", 'really', 'quite', 'an', 'amusing', 'case', 'of', 'mistaken', 'identity', '||period||', "that's", 'all', 'it', 'is', '||period||', '||return||', '||return||', 'security', 'guard:', 'yeah', "i'm", 'sure', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'this', 'is', 'not', 'the', 'first', 'time', 'this', 'has', 'happened', 'to', 'me', '||period||', 'i', 'always', 'carry', 'water', 'because', 'of', 'my', 'condition', '||period||', 'it', 'dehydrates', 'me', '||period||', "it's", 'a', 'vicious', 'cycle', '||period||', '||return||', '||return||', 'elaine:', 'and', 'now', "he's", 'gone', '||period||', "i'm", 'sure', "he's", 'looking', 'for', 'the', 'car', '||period||', 'five', 'minutes', '||comma||', "that's", 'all', '||period||', 'i', 'just', 'want', 'to', 'find', 'him', '||period||', '||return||', '||return||', 'man', '#1:', 'i', "can't", 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'but', 'why', '||questionmark||', 'why', "can't", 'you', 'do', 'it', '||questionmark||', '||return||', '||return||', 'man', '#1:', 'i', "can't", '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'see', "that's", 'not', 'a', 'reason', 'you', "can't", '||period||', 'you', 'just', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'man', '#1:', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', 'but', 'why', '||questionmark||', 'why', "don't", 'you', 'want', 'to', '||questionmark||', '||return||', '||return||', 'man', '#1:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'but', "wouldn't", 'you', 'get', 'any', 'satisfaction', 'out', 'of', 'helping', 'someone', 'out', '||questionmark||', '||return||', '||return||', 'man', '#:', '1', 'no', '||comma||', 'i', "wouldn't", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'a', 'new', 'tack', '||rightparen||', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'i', 'want', 'to', 'apologize', '||period||', 'i', 'was', 'frightened', '||comma||', 'i', 'said', 'crazy', 'things', '||period||', 'i', 'obviously', 'offended', 'you', '||period||', 'i', 'insulted', 'your', 'intelligence', '||period||', 'the', 'uromysitisis', '||comma||', 'the', 'water', 'bottle', '||period||', '||period||', '||period||', 'i', 'made', 'it', 'all', 'up', '||comma||', 'and', 'now', '||period||', '||period||', '||period||', "i'm", 'going', 'to', 'tell', 'you', 'the', 'truth', '||period||', 'today', 'my', 'father', 'and', 'mother', 'are', 'celebrating', 'their', 'fiftieth', '||comma||', 'well', "i'm", 'jumping', 'ahead', 'here', '||comma||', 'their', 'forty', '||dash||', 'seventh', 'wedding', 'anniversary', '||period||', 'we', 'made', 'arrangements', 'to', 'spend', 'the', 'evening', 'together', '||period||', 'they', 'are', 'supposed', 'to', 'be', 'in', 'front', 'of', 'my', 'building', 'at', 'six', '||dash||', 'fifteen', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "cont'd", '||rightparen||', 'what', 'i', "haven't", 'told', 'you', '||comma||', 'or', 'anyone', 'else', 'for', 'that', 'matter', '||comma||', 'is', 'that', 'my', "father's", 'been', 'in', 'a', 'red', 'chinese', 'prison', 'for', 'the', 'past', 'fourteen', 'years', '||period||', '||return||', '||return||', 'kramer:', 'the', "guy's", 'got', 'a', 'fat', 'fetish', '||period||', 'spector', 'never', 'dates', 'a', 'woman', 'under', 'two', 'hundred', '||dash||', 'fifty', 'pounds', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'interested', '||rightparen||', 'really', '||period||', '||return||', '||return||', 'kramer:', 'what', 'does', 'he', 'do', 'with', 'all', 'that', 'fat', '||questionmark||', 'does', 'he', 'just', 'jump', 'up', 'and', 'down', 'on', 'it', '||questionmark||', 'does', 'he', 'gouge', 'it', 'like', 'killer', 'kowalski', '||questionmark||', '||return||', '||return||', 'george:', "who's", 'killer', 'kowalski', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'was', 'a', 'wrestler', '||period||', 'he', 'would', 'grab', 'hold', 'of', "someone's", 'stomach', 'and', 'just', 'squeeze', 'it', 'until', 'they', 'gave', '||period||', '||return||', '||return||', 'george:', "i've", 'gotta', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'kramer:', 'so', 'go', '||period||', 'george', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shaking', 'his', 'head', '||rightparen||', 'you', 'and', 'jerry', '||period||', '||return||', '||return||', 'george:', "don't", 'you', 'believe', 'me', '||questionmark||', "it's", 'their', 'fiftieth', 'anniversary', '||period||', 'you', 'know', 'this', 'is', 'gonna', 'kill', 'him', '||period||', "you're", 'aware', 'of', 'that', '||period||', 'kill', 'him', '||period||', 'on', 'the', 'biggest', 'night', 'of', 'his', 'life', '||period||', '||period||', '||period||', '||return||', '||return||', 'security', 'guard:', 'oh', 'your', 'folks', 'have', 'an', 'anniversary', 'today', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'was', 'he', 'also', 'in', 'a', 'red', 'chinese', 'prison', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||comma||', 'somewhat', 'impressed', '||rightparen||', 'a', 'red', 'chinese', 'prison', '||questionmark||', '||return||', '||return||', 'kramer:', 'george', '||exclammark||', 'george', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||leftparen||', 'then', 'she', 'checks', 'her', 'fish', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', 'what', 'happened', 'was', 'my', 'father', 'was', 'staying', 'in', 'the', 'home', 'of', 'one', 'of', 'red', "china's", 'great', 'military', 'leaders', '||comma||', 'general', 'chang', '||comma||', 'who', 'by', 'the', 'way', 'came', 'up', 'with', 'the', 'recipe', 'for', 'general', "chang's", 'chicken', '||period||', 'you', 'know', '||comma||', 'the', 'one', 'with', 'the', 'red', 'peppers', 'and', 'orange', 'peel', 'at', 'szechwan', 'gardens', '||questionmark||', 'george', 'sure', '||comma||', 'i', 'have', 'it', 'all', 'the', 'time', '||period||', 'very', 'spicy', '||period||', '||return||', '||return||', 'jerry:', 'well', 'general', 'chang', 'was', 'a', 'very', 'flamboyant', 'man', '||period||', 'a', 'complete', 'failure', 'as', 'a', 'general', '||comma||', 'but', 'a', 'helluva', 'cook', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', 'jerry', '||exclammark||', 'jerry', 'elaine', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', 'jerry', '||exclammark||', 'over', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "cont'd", '||rightparen||', 'where', 'have', 'you', 'been', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'arrested', 'for', 'urinating', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'proudly', '||rightparen||', 'me', 'too', '||period||', '||return||', '||return||', 'elaine:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'uromysitisis', '||period||', "it's", 'very', 'serious', 'you', 'know', '||period||', '||return||', '||return||', 'elaine:', 'look', 'at', 'my', 'fish', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'examines', 'it', '||rightparen||', 'is', 'he', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', "he's", 'not', 'looking', 'good', '||period||', '||period||', '||period||', '||leftparen||', 'elaine', 'turns', 'to', 'two', 'huge', 'body', 'builders', 'in', 'workout', 'wear', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'desperate', '||rightparen||', 'please', '||comma||', 'we', "can't", 'find', 'our', 'car', '||period||', 'please', 'drive', 'us', 'around', 'the', 'parking', 'lot', 'to', 'find', 'our', 'car', '||period||', 'my', 'fish', 'are', 'dying', '||period||', '||return||', '||return||', 'man', '#2:', "can't", 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', 'can', 'see', 'not', 'caring', 'what', 'happens', 'to', 'us', '||comma||', "we're", 'human', '||period||', 'but', 'what', 'about', 'the', 'fish', '||questionmark||', 'the', 'fish', '||questionmark||', '||return||', '||return||', 'man', '#3:', 'sorry', '||period||', '||leftparen||', 'they', 'keep', 'walking', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', "that's", 'right', '||comma||', 'go', '||period||', 'go', 'home', 'to', 'your', 'dumbbells', '||period||', 'work', 'on', 'your', 'pecs', '||period||', "i'm", 'really', 'impressed', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "cont'd", '||rightparen||', "that's", 'right', 'you', 'heard', 'me', '||period||', 'you', 'got', 'a', 'problem', 'with', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'shut', '||dash||', 'up', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'he', 'was', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'see', '||comma||', 'i', 'knew', 'it', '||period||', 'i', 'knew', 'this', 'was', 'gonna', 'happen', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', "cont'd", '||rightparen||', 'look', 'at', 'the', 'time', '||comma||', "that's", 'it', '||period||', '||return||', '||return||', 'elaine:', 'have', 'we', 'looked', 'over', 'there', '||questionmark||', 'have', 'we', 'checked', 'that', 'side', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'came', 'in', 'over', 'there', '||exclammark||', '||return||', '||return||', 'elaine:', 'we', "didn't", 'come', 'in', 'over', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'george', '||comma||', 'there', 'she', 'is', 'again', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'ask', 'her', 'to', 'drive', 'us', 'around', '||period||', "there's", 'your', 'opening', '||period||', '||return||', '||return||', 'george:', 'that', 'is', 'an', 'opening', '||period||', '||return||', '||return||', 'george:', '||leftparen||', "cont'd", '||rightparen||', 'excuse', 'me', '||period||', '||period||', '||period||', 'i', 'really', '||period||', '||period||', '||period||', "what's", 'happened', 'is', 'that', 'my', 'friend', 'forgot', 'where', 'he', 'parked', 'and', 'if', "you're", 'not', 'in', 'a', 'big', 'hurry', '||comma||', "we'd", 'really', 'appreciate', 'it', 'if', '||period||', '||period||', '||period||', '||return||', '||return||', 'amy:', 'oh', 'sure', '||comma||', "i'll", 'drive', 'you', 'around', '||period||', '||return||', '||return||', 'george:', 'you', 'will', '||questionmark||', '||return||', '||return||', 'amy:', 'sure', '||period||', '||return||', '||return||', 'george:', 'thanks', 'a', 'lot', '||period||', "i'm", 'really', 'late', '||period||', 'my', 'parents', 'are', 'waiting', 'in', 'front', 'of', 'my', 'building', 'and', "we're", 'stuck', 'here', '||period||', '||return||', '||return||', 'amy:', 'i', "wouldn't", 'want', 'to', 'get', 'lost', 'in', 'here', '||period||', 'it', 'smells', 'like', 'a', 'toilet', '||period||', 'people', 'are', 'such', 'animals', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', 'filthy', 'pigs', '||period||', '||return||', '||return||', 'george:', "it's", 'a', 'blue', 'honda', '||period||', '||period||', '||period||', '||return||', '||return||', 'amy:', 'this', 'has', 'happened', 'to', 'me', 'too', '||period||', "it's", 'very', 'frustrating', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', "i'm", 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'jerry', '||period||', '||return||', '||return||', 'amy:', 'hello', '||period||', '||return||', '||return||', 'elaine:', "it's", 'very', 'nice', 'of', 'you', 'to', 'do', 'this', '||period||', "i've", 'asked', 'several', 'people', 'and', 'they', "wouldn't", 'even', 'answer', 'me', '||period||', '||return||', '||return||', 'amy:', "i'm", 'happy', 'to', 'do', 'it', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', "i'm", 'amy', '||period||', '||return||', '||return||', 'george:', 'hi', 'amy', '||comma||', "i'm", 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'in', 'passenger', 'window', '||rightparen||', 'i', "didn't", 'mean', 'anything', 'by', 'it', '||period||', 'i', "don't", 'even', 'know', 'l', '||period||', 'ron', 'hubbard', '||exclammark||', 'i', "didn't", 'know', 'you', 'were', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', "cont'd", '||rightparen||', '||period||', '||period||', '||period||', 'with', 'that', 'group', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouting', 'to', 'amy', '||rightparen||', 'what', 'about', 'my', 'fish', '||questionmark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'those', 'scientologists', '||period||', 'they', 'can', 'be', 'pretty', 'sensitive', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'say', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||leftparen||', 'they', 'discover', 'what', "he's", 'staring', 'at', '||rightparen||', 'the', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'car', '||exclammark||', '||return||', '||return||', 'george:', 'the', 'car', '||exclammark||', '||return||', '||return||', 'elaine:', 'we', 'found', 'it', '||period||', 'i', "can't", 'believe', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', "kramer's", 'not', 'here', '||period||', '||period||', '||period||', 'i', 'knew', 'it', '||period||', 'i', 'knew', 'it', '||exclammark||', 'i', 'knew', 'this', 'would', 'happen', '||period||', '||leftparen||', 'screaming', '||rightparen||', 'kramer', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', 'boy', 'i', 'had', 'a', 'helluva', 'time', 'finding', 'that', 'air', '||dash||', 'conditioner', '||period||', 'i', 'looked', 'everywhere', '||period||', 'i', 'completely', 'forgot', 'where', 'i', 'hid', 'it', '||period||', 'you', 'know', 'where', 'it', 'was', '||questionmark||', '||return||', '||return||', 'george:', 'purple', '23', '||period||', '||return||', '||return||', 'kramer:', 'right', '||exclammark||', 'purple', '23', '||period||', 'i', "could've", 'used', 'you', '||period||', '||return||', '||return||', 'george:', 'sometimes', "it's", 'good', 'to', 'have', 'a', 'pencil', 'to', 'write', 'these', 'things', 'down', '||period||', '||return||', '||return||', 'kramer:', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'seven', 'forty', '||dash||', 'five', '||period||', '||return||', '||return||', 'kramer:', 'well', 'at', 'least', "there's", 'no', 'traffic', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'kramer:', 'what', 'time', 'does', 'that', 'play', 'start', '||questionmark||', '||return||', '||return||', 'george:', 'eight', "o'clock", '||period||', '||return||', '||return||', 'kramer:', 'that', 'might', 'be', 'a', 'problem', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', "where's", 'your', 'little', 'bag', 'of', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', "cont'd", '||rightparen||', 'oh', '||period||', '||period||', '||period||', '||leftparen||', 'takes', 'out', 'parking', 'stub', '||rightparen||', 'boy', 'this', 'garage', 'is', 'going', 'to', 'cost', 'a', 'fortune', '||period||', 'you', 'know', 'how', 'long', 'we', 'were', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'thinks', "i'm", 'a', 'nice', 'guy', '||period||', 'women', 'always', 'think', "i'm", 'nice', '||comma||', 'but', 'women', "don'tnice", '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'amazing', '||comma||', 'i', "haven't", 'seen', 'one', 'person', 'go', 'in', 'to', 'that', 'restaurant', 'since', 'it', 'opened', '||period||', 'poor', 'guy', '||period||', '||return||', '||return||', 'george:', 'why', 'is', 'nice', 'bad', '||questionmark||', 'what', 'kind', 'a', 'of', 'sick', 'society', 'we', 'are', 'living', 'in', '||comma||', 'when', 'nice', 'is', 'bad', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'that', 'smell', '||questionmark||', 'what', 'are', 'you', 'wearing', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'a', "'little'", 'cologne', '||period||', '||return||', '||return||', 'jerry:', 'manly', '||period||', '||return||', '||return||', 'george:', 'monica', 'wants', 'me', 'to', 'wear', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'why', "didn't", 'you', 'say', 'no', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'too', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', 'poor', 'guy', '||period||', 'his', 'family', 'is', 'probably', 'in', 'pakistan', '||dash||', '||dash||', "they're", 'waiting', 'him', 'to', 'send', 'back', 'money', '||period||', 'this', 'is', 'horrible', '||period||', '||return||', '||return||', 'george:', 'she', 'wants', 'me', 'to', 'take', 'an', 'iq', 'test', '||period||', '||return||', '||return||', 'jerry:', "that's", 'because', "you're", 'stupid', 'enough', 'to', 'wear', 'the', 'cologne', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "she's", 'taking', 'this', 'course', 'in', 'education', 'for', 'her', 'masters', '||period||', "it's", 'part', 'of', 'her', 'research', 'project', '||comma||', 'so', 'i', 'have', 'to', 'be', 'a', 'guinea', 'pig', '||period||', '||return||', '||return||', 'jerry:', "i've", 'never', 'been', 'a', 'guinea', 'pig', '||period||', "i've", 'been', 'a', 'sheep', '||comma||', 'a', 'tody', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', "can't", 'talk', 'to', 'you', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'm", 'sorry', '||period||', 'go', 'ahead', '||comma||', "you're", 'taking', 'the', 'iq', 'test', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'and', "she's", 'going', 'to', 'find', "i'm", 'a', 'moron', '||period||', 'you', 'know', '||comma||', 'people', 'think', "i'm", 'smart', '||comma||', 'but', "i'm", 'not', 'smart', '||period||', '||return||', '||return||', 'jerry:', 'who', 'thinks', "you're", 'smart', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'not', 'going', 'to', 'break', 'a', 'hundred', 'on', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'you', "don't", 'listen', 'when', 'people', 'talk', 'to', 'you', 'anymore', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'oh', '||comma||', 'the', 'iq', 'thing', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', "i'm", 'sure', 'i', 'have', 'a', 'low', 'iq', '||period||', "i've", 'been', 'lying', 'about', 'my', 'sat', 'scores', 'for', '15', 'years', '||period||', '||return||', '||return||', 'jerry:', "what'd", 'ya', 'get', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'did', 'i', 'get', 'or', 'what', 'do', 'i', 'say', 'i', 'got', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'say', 'fourteen', 'o', 'nine', '||leftparen||', '1409', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', '1409', '||comma||', "that's", 'a', 'good', 'score', '||period||', '||return||', '||return||', 'george:', 'psst', '||comma||', "you're", 'telling', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'really', 'get', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'are', 'my', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', 'everything', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'hope', 'so', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'this', 'i', 'take', 'to', 'the', 'grave', '||period||', '||return||', '||return||', 'jerry:', "he's", 'serving', 'mexican', '||comma||', 'italian', '||comma||', 'chinese', '||period||', "he's", 'all', 'over', 'the', 'place', '||period||', "that's", 'why', 'no', "one's", 'going', 'in', '||period||', '||return||', '||return||', 'elaine:', 'why', 'do', 'you', 'keep', 'watching', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', "i'm", 'obsessed', 'with', 'it', '||period||', "it's", 'like', 'a', 'spider', 'in', 'the', 'toilet', 'struggling', 'for', 'survival', '||period||', 'and', 'even', 'though', 'ya', 'know', "he's", 'not', 'going', 'to', 'make', 'it', '||comma||', 'y', '||dash||', 'y', '||dash||', 'you', 'kind', 'of', 'root', 'for', 'him', 'for', 'a', 'second', '||period||', '||return||', '||return||', 'elaine:', 'and', 'then', 'you', 'flush', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'a', 'spider', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'sometimes', 'people', "won't", 'go', 'in', 'a', 'place', '||comma||', 'if', 'they', "don't", 'see', 'anyone', 'else', 'in', 'there', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'have', 'to', 'do', 'that', '||questionmark||', 'jerry', '||comma||', "don't", 'do', 'that', '||comma||', 'that', 'is', 'so', 'annoying', '||period||', '||return||', '||return||', 'jerry:', 'bazooka', 'joe', '||period||', '||return||', '||return||', 'jerry:', 'the', 'buzzer', '||period||', '||return||', '||return||', 'elaine:', "it's", 'your', 'house', '||period||', '||return||', '||return||', 'jerry:', 'my', 'house', '||questionmark||', 'you', 'gotta', 'be', 'on', 'the', 'lease', 'to', 'press', 'to', 'buzzer', '||period||', 'yeah', '||questionmark||', '||leftparen||', 'to', 'the', 'intercom', '||rightparen||', '||return||', '||return||', 'intercom:', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'elaine:', 'casus', 'belli', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'latin', '||period||', 'i', 'read', 'it', 'in', 'some', 'book', '||period||', 'i', "don't", 'know', '||comma||', 'i', 'just', 'wanted', 'to', 'say', 'it', 'out', 'loud', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'go', 'in', '||comma||', 'go', 'in', '||exclammark||', '[watching', 'dream', 'cafe', 'with', 'binoculars', 'again]', '||return||', '||return||', 'elaine:', 'have', 'you', 'gone', 'in', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'afraid', "we'll", 'start', 'talking', '||comma||', 'and', "i'll", 'gonna', 'wind', 'up', 'going', 'partners', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'could', 'probably', 'shoot', 'him', 'from', 'here', '||period||', "i'd", 'be', 'doing', 'us', 'both', 'a', 'favor', '||period||', '||return||', '||return||', 'george:', "i'm", 'wearing', 'some', 'cologne', '||comma||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'sure', '||comma||', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'casus', 'belli', '||period||', '||return||', '||return||', 'elaine:', 'casus', 'belli', '||period||', '||return||', '||return||', 'george:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'since', 'when', 'do', 'you', 'wear', 'cologne', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'is', 'what', 'i', 'do', 'is', 'so', 'important', '||questionmark||', 'why', 'must', 'i', 'be', 'always', 'the', 'focal', 'point', 'of', 'attention', '||questionmark||', 'let', 'me', 'just', 'be', '||comma||', 'let', 'me', 'live', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "how'd", 'you', 'do', 'on', 'that', 'iq', 'test', '||questionmark||', '||return||', '||return||', 'george:', 'i', "didn't", 'take', 'it', '||comma||', 'yet', '||period||', '||return||', '||return||', 'elaine:', 'what', 'iq', 'test', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'casus', 'belli', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'nothing', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'is', 'it', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'must', 'you', 'always', 'be', 'the', 'focal', 'point', 'of', 'attention', '||questionmark||', 'why', "can't", 'you', 'just', 'be', '||questionmark||', '||leftparen||', 'elaine', 'laughs', '||dash||', 'hu', '||rightparen||', 'why', "can't", 'you', 'live', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'just', 'a', 'latin', 'phrase', 'george', '||comma||', 'it', 'does', 'not', 'mean', 'anything', '||period||', 'now', '||comma||', 'what', 'is', 'this', 'test', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'woman', "he's", 'dating', 'is', 'making', 'him', 'take', 'this', 'iq', 'test', 'for', 'this', 'course', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'sounds', 'like', 'fun', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'fun', '||period||', 'iq', 'tests', 'are', 'totally', 'bogus', '||period||', 'they', 'prove', 'nothing', '||period||', '||return||', '||return||', 'elaine:', "you'll", 'do', 'well', '||comma||', "you're", 'smart', '||period||', '||return||', '||return||', 'jerry:', 'no', 'see', '||comma||', "he's", 'not', 'smart', '||period||', 'people', 'think', "he's", 'smart', '||comma||', 'but', "he's", 'not', '||period||', '||return||', '||return||', 'elaine:', "wha'd", 'you', 'get', 'on', 'your', "sat's", '||questionmark||', '||return||', '||return||', 'george:', 'it', 'varies', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', "don't", 'even', 'know', 'my', 'iq', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', "mine's", '145', '||period||', '||return||', '||return||', 'george:', '145', '||exclammark||', '||return||', '||return||', 'jerry:', 'get', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'get', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'get', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'huhuhuhuhuhuhu', '||leftparen||', 'laughing', '||rightparen||', '||return||', '||return||', 'george:', 'shst', '||comma||', 'you', 'should', 'take', 'the', 'test', 'for', 'me', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'boy', "that'd", 'be', 'something', '||comma||', 'cheating', 'on', 'a', 'iq', 'test', '||period||', '||return||', '||return||', 'george:', 'haha', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'remember', 'in', 'college', 'when', 'you', 'passed', 'lettick', 'the', 'test', 'out', 'the', 'window', '||questionmark||', 'you', 'became', 'a', 'legend', 'after', 'that', '||period||', '||leftparen||', 'stepping', 'over', 'elaine', 'then', "george's", 'legs', 'to', 'get', 'to', 'the', 'large', 'blue', 'chair', 'and', 'sits', 'down', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', 'i', 'really', 'had', 'some', 'guts', 'back', 'then', '||period||', 'why', "don't", 'we', 'do', 'it', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'could', 'take', 'the', 'iq', 'test', 'for', 'me', '||period||', 'i', 'could', 'pass', 'it', 'to', 'you', 'out', 'a', 'window', '||period||', 'we', 'could', 'do', 'it', '||comma||', 'she', 'lives', 'in', 'the', 'first', 'floor', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'serious', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'where', 'would', 'i', 'take', 'the', 'test', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'she', 'lives', 'right', 'around', 'the', 'corner', '||period||', 'you', 'could', 'take', 'it', 'here', 'or', 'go', 'to', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "that'd", 'be', 'too', 'noisy', '||period||', '||return||', '||return||', 'jerry:', 'take', 'it', 'to', 'dream', 'cafe', '||comma||', 'you', "won't", 'hear', 'a', 'peep', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'love', 'a', 'good', 'caper', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'what', 'is', '||comma||', "isn't", 'it', '||questionmark||', 'a', 'caper', '||period||', 'huh', '||period||', '||return||', '||return||', 'george:', "you'll", 'do', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'the', 'hey', '||period||', '||return||', '||return||', 'george:', 'yeaah', '||comma||', 'beautiful', '||period||', '||period||', '||period||', '||leftparen||', 'they', 'try', 'to', 'hit', 'a', 'high', 'five', '||comma||', 'but', 'george', 'hits', 'elaine', 'in', 'the', 'forehead', '||period||', '||rightparen||', 'sorry', '||period||', '||period||', '||period||', '||return||', '||return||', 'babu', 'bhatt:', 'welcome', 'to', 'the', 'dream', 'cafe', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'ah', '||comma||', "i've", 'been', 'looking', 'forward', 'to', 'it', '||period||', '||return||', '||return||', 'babu:', 'oh', '||comma||', 'ah', 'how', 'did', 'you', 'hear', 'about', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'people', '||comma||', 'people', 'are', 'talking', '||period||', '||return||', '||return||', 'babu:', 'smoking', 'or', 'non', '||dash||', 'smoking', '||questionmark||', 'we', 'are', 'proud', 'to', 'offer', 'both', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'non', '||dash||', 'smoking', 'would', 'be', 'great', '||period||', '||return||', '||return||', 'babu:', 'very', 'good', '||period||', 'my', 'name', 'is', 'babu', 'bhatt', '||comma||', 'i', 'will', 'be', 'your', 'waiter', '||period||', 'a', 'steaming', 'hot', 'folded', 'face', 'cloth', 'for', 'your', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '[throws', 'the', 'towel', 'around', 'like', 'a', 'hot', 'potato', '||period||', ']', '||return||', '||return||', 'babu:', 'our', 'specials', 'are', 'tacos', '||comma||', 'moussaka', 'and', 'franks', 'and', 'beans', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'ah', 'w', '||dash||', 'what', 'do', 'you', 'recommend', 'my', 'good', 'fellow', '||questionmark||', '||return||', '||return||', 'babu:', 'oh', '||comma||', 'the', 'turkey', '||period||', '||return||', '||return||', 'jerry:', 'well', 'then', 'the', 'turkey', "it'll", 'be', '||period||', 'and', 'may', 'i', 'say', 'you', 'have', 'a', 'splendid', 'establishment', 'here', '||comma||', 'my', 'friend', '||period||', "i'm", 'sure', 'you', 'flourish', 'at', 'this', 'location', 'for', 'many', '||comma||', 'many', 'years', '||period||', '||return||', '||return||', 'babu:', "you're", 'very', 'kind', 'man', '||period||', 'very', 'kind', '||comma||', 'thank', 'you', '||period||', 'very', 'kind', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinks', '||rightparen||', 'very', 'kind', '||period||', 'i', 'am', 'a', 'kind', 'man', '||period||', 'who', 'else', 'would', 'do', 'something', 'like', 'this', '||questionmark||', 'nobody', '||period||', 'nobody', 'thinks', 'about', 'people', 'the', 'way', 'i', 'do', '||period||', 'all', 'right', '||comma||', 'snap', 'out', 'of', 'it', 'you', 'stupid', 'jerk', '||period||', "you're", 'eating', 'a', 'turkey', 'sandwich', '||period||', 'what', 'do', 'want', '||comma||', 'a', 'nobel', 'prize', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'go', 'in', 'the', 'living', 'room', '||period||', "i'll", 'take', 'the', 'test', 'in', 'here', '||period||', '||return||', '||return||', 'monica:', 'but', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', "won't", 'be', 'able', 'to', '||comma||', 'concentrate', 'in', 'front', 'of', 'you', '||period||', '||return||', '||return||', 'monica:', 'oh', '||comma||', 'i', 'think', "you're", 'making', 'too', 'much', 'of', 'this', '||period||', 'iq', 'tests', "don't", 'mean', 'anything', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'kidding', 'me', '||questionmark||', '[elaine', 'walks', 'past', 'the', 'window', 'glancing', 'in]', 'this', 'is', 'the', 'best', 'tool', 'we', 'have', 'today', 'of', 'measuring', 'a', "persons'", 'intelligence', '||period||', '||return||', '||return||', 'monica:', 'well', '||comma||', 'i', 'certainly', "don't", 'place', 'any', 'importance', 'on', 'it', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'think', "you're", 'wrong', 'about', 'that', '||period||', '[elaine', 'walks', 'past', 'the', 'window', 'again', '||comma||', 'glancing', 'in]', 'and', 'ah', 'now', 'if', "you'll", 'excuse', 'me', '||comma||', "i'd", 'really', 'like', 'to', 'get', 'started', '||comma||', 'please', '||period||', '||return||', '||return||', 'monica:', 'good', 'luck', '||period||', '||return||', '||return||', 'george:', "don't", 'need', 'it', '||period||', "n'huhuhu", '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'elaine:', "what's", 'been', 'going', 'on', 'out', 'there', '||questionmark||', "i've", 'been', 'standing', 'here', '20', 'minutes', '||period||', '||return||', '||return||', 'george:', "i'm", 'sorry', "i'm", 'sorry', '||comma||', "here's", 'the', 'test', '||period||', 'thanks', 'again', 'for', 'doing', 'this', '||dash||', 'hhe', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'what', 'time', 'do', 'you', 'want', 'me', 'back', 'here', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'ah', '||comma||', 'twenty', 'to', 'three', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||period||', '||return||', '||return||', 'george:', 'thanks', 'again', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'a', '||dash||', 'and', "don't", 'settle', 'for', '145', '||comma||', 'you', 'can', 'do', 'better', '||comma||', "you're", 'a', 'genius', '||period||', 'heheheh', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'thank', 'you', 'babu', '||period||', 'you', 'have', 'quite', 'a', 'flair', '||period||', 'you', 'are', 'quite', 'the', 'restaurateur', 'i', 'must', 'say', '||period||', '||return||', '||return||', 'babu:', 'it', 'is', 'in', 'deed', 'my', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'please', '||period||', '||period||', '||period||', '||return||', '||return||', 'babu:', 'oh', '||comma||', 'welcome', 'to', 'the', 'dream', 'cafe', '||period||', '||leftparen||', 'runs', 'to', 'get', 'a', 'menu', '||period||', '||rightparen||', 'our', 'specials', 'today', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', "i'll", 'just', 'have', 'a', 'tea', 'and', 'toast', '||period||', '||leftparen||', 'sits', 'down', 'across', 'the', 'table', 'from', 'jerry', '||rightparen||', '||return||', '||return||', 'babu:', 'tea', 'and', 'toast', '||period||', '||return||', '||return||', 'jerry:', 'eat', 'something', '||exclammark||', 'babu', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'ok', '||comma||', 'ah', 'well', "i'll", 'have', 'the', '||comma||', 'th', '||dash||', 'ri', '||dash||', 'rigatoni', '||period||', '||return||', '||return||', 'babu:', 'oh', '||comma||', 'oh', 'very', 'good', 'choice', '||period||', 'very', 'good', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'wow', '||comma||', 'so', 'you', 'got', 'the', 'test', '||period||', "you're", 'cheating', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'boy', '||period||', 'woop', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'jerry', 'let', 'me', 'ask', 'you', 'something', '||comma||', 'hi', 'elaine', '||period||', '||period||', '||period||', '||leftparen||', 'pats', 'her', 'on', 'the', 'shoulder', 'twice', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'this', 'guy', 'leaves', 'this', 'jacket', 'at', 'my', "mother's", 'house', 'two', 'years', 'ago', '||period||', 'now', '||comma||', 'she', "hasn't", 'spoken', 'to', 'him', 'since', 'and', 'now', 'he', 'says', 'he', 'wants', 'the', 'jacket', 'back', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'not', 'giving', 'it', 'back', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'because', 'i', 'meet', 'a', 'lot', 'of', 'women', 'in', 'this', 'jacket', '||comma||', 'you', 'know', "they're", 'attracted', 'to', 'it', '||period||', 'i', 'mean', 'why', 'do', 'you', 'think', 'my', 'mother', 'went', 'out', 'with', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'gees', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', '||return||', '||return||', 'kramer:', "you're", 'all', 'right', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'ok', '||period||', '||period||', '||period||', '||leftparen||', 'takes', 'the', 'test', 'and', 'moves', 'to', 'another', 'table', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'eating', 'some', 'nachos', '||rightparen||', 'anyway', '||comma||', "it's", 'been', 'two', 'years', '||period||', 'i', 'mean', "isn't", 'there', 'like', 'statue', 'of', 'limitations', 'on', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'statute', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'statute', 'of', 'limitations', '||period||', "it's", 'not', 'a', 'statue', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "it's", 'statue', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||comma||', "it's", 'a', 'sculpture', 'of', 'limitations', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'minute', '||comma||', 'just', 'wait', 'a', 'minute', '||period||', '||period||', '||period||', 'elaine', '||comma||', 'elaine', '||exclammark||', 'now', "you're", 'smart', '||comma||', 'is', 'it', 'statue', 'or', 'statute', 'of', 'limitations', '||questionmark||', '||return||', '||return||', 'elaine:', 'statute', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'really', 'think', "you're", 'wrong', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'kramer', '||comma||', 'i', 'have', 'to', 'take', 'this', 'test', 'ok', '||comma||', 'i', "don't", 'have', 'a', 'lot', 'of', 'time', '||period||', '||return||', '||return||', 'kramer:', 'what', 'test', '||questionmark||', '||return||', '||return||', 'elaine:', 'an', 'iq', 'test', '||period||', '||return||', '||return||', 'kramer:', 'hmm', '||period||', 'why', 'you', "takin'", 'an', 'iq', 'test', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'for', 'george', '||period||', '||return||', '||return||', 'kramer:', 'george', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'can', '||dash||', 'look', '||period||', '||period||', '||period||', 'can', 'i', 'explain', 'it', 'to', 'you', 'later', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'why', 'are', 'you', 'taking', 'an', 'iq', 'test', 'for', 'george', '||questionmark||', '||return||', '||return||', 'elaine:', 'would', 'you', 'please', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'is', 'it', 'for', 'a', 'job', 'or', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'later', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", 'positive', "it's", 'statute', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'yes', '||exclammark||', '||leftparen||', 'jerry', 'shaking', 'his', 'head', '||comma||', 'like', 'he', "can't", 'believe', 'what', "he's", 'seeing', '||rightparen||', '||return||', '||return||', 'babu:', 'welcome', '||comma||', 'welcome', '||period||', 'a', 'steaming', 'hot', 'face', 'towel', 'for', 'your', '||period||', '||period||', '||period||', '||leftparen||', 'gives', 'kramer', 'a', 'hot', 'towel', 'and', 'kramer', 'screams', '||comma||', 'elaine', 'screams', 'and', 'kramer', 'falls', 'from', 'his', 'chair', '||period||', 'he', 'gets', 'up', 'and', 'is', 'dazed', '||rightparen||', '||return||', '||return||', 'monica:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'monica:', 'the', 'door', 'is', 'locked', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'locked', '||questionmark||', '||return||', '||return||', 'monica:', 'i', 'need', 'to', 'get', 'something', '||period||', '||return||', '||return||', 'george:', 'monica', '||comma||', "i'm", 'really', 'focused', 'here', '||comma||', 'this', "stuff's", 'a', 'killer', '||period||', '||leftparen||', 'turns', 'to', 'the', 'next', 'page', '||rightparen||', '||return||', '||return||', 'monica:', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'wish', 'i', 'could', '||period||', '||leftparen||', 'raises', 'the', 'magazine', 'up', 'in', 'front', 'of', 'his', 'face', 'and', 'continues', 'reading', '||period||', '||rightparen||', '||return||', '||return||', 'babu:', 'nananeena', '||comma||', 'ladadeeda', '||comma||', 'laadadeeda', '||comma||', 'saadina', '||period||', '||period||', '||period||', '||period||', 'laadadeeda', 'sa', 'saadina', '||leftparen||', 'singing', 'too', 'loud', '||rightparen||', '||return||', '||return||', 'elaine:', 'babu', '||exclammark||', 'ba', '||dash||', 'if', '||dash||', 'if', 'ya', "don't", 'mind', '||questionmark||', '||return||', '||return||', 'babu:', 'set', '||period||', 'ok', '||return||', '||return||', 'elaine:', 'set', '||period||', '||return||', '||return||', 'babu:', "i'll", 'get', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||exclammark||', "it's", 'all', 'over', 'the', 'test', '||exclammark||', '||return||', '||return||', 'babu:', 'oh', '||comma||', 'i', 'did', 'sc', '||dash||', "i'm", 'terribly', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'man', '||exclammark||', 'look', 'at', 'this', '||period||', '||period||', '||period||', "i'm", 'out', 'of', 'time', 'anyway', '||period||', '||return||', '||return||', 'babu:', 'please', '||comma||', 'forgive', 'me', '||comma||', 'please', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'go', 'ahead', '||comma||', "i'll", 'take', 'care', 'of', 'it', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||period||', '||return||', '||return||', 'babu:', '||leftparen||', 'opens', 'the', 'door', 'for', 'elaine', '||rightparen||', 'please', '||comma||', "i'm", 'very', 'sorry', '||period||', 'tell', 'your', 'friends', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'all', 'right', '||comma||', 'she', 'was', 'cheating', 'anyway', '||period||', '||return||', '||return||', 'babu:', "you're", 'a', 'very', 'kind', 'man', '||period||', '||return||', '||return||', 'jerry:', 'babu', '||comma||', "you're", 'pakistani', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'babu:', 'yes', '||comma||', 'pakistani', '||comma||', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'babu', '||comma||', 'may', 'i', 'say', 'something', '||questionmark||', '||return||', '||return||', 'babu:', 'of', 'course', '||comma||', "you're", 'very', 'smart', 'man', '||comma||', 'i', 'listen', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'not', 'a', 'restaurateur', 'by', 'any', 'means', '||comma||', 'but', 'it', 'occurred', 'to', 'me', 'that', 'perhaps', 'you', 'might', 'serve', 'some', 'dishes', 'from', 'your', 'native', 'pakistan', '||questionmark||', 'as', 'opposed', 'to', 'say', 't', '||dash||', 'the', 'franks', 'and', 'beans', 'for', 'example', '||period||', '||return||', '||return||', 'babu:', 'but', 'there', 'are', 'no', 'pakistani', 'people', 'here', '||period||', '||return||', '||return||', 'jerry:', "doesn't", 'matter', '||period||', 'you', 'would', 'have', 'the', 'only', 'authentic', 'pakistani', 'restaurant', 'in', 'the', 'whole', 'neighborhood', '||period||', '||return||', '||return||', 'babu:', 'yes', '||comma||', 'you', 'see', 'everything', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||semicolon||', 'not', 'everything', '||period||', 'i', 'do', 'what', 'i', 'can', '||period||', '||return||', '||return||', 'babu:', 'i', 'close', 'down', 'today', 'and', 'when', 'i', 'open', 'again', "it'll", 'be', 'all', 'pakistani', 'restaurant', '||period||', 'thank', 'you', '||comma||', 'thank', 'you', 'so', 'much', '||comma||', "you're", 'very', 'special', 'person', '||comma||', 'very', 'special', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'go', 'on', 'a', 'picnic', '||questionmark||', '||return||', '||return||', 'elaine:', 'babu', 'bhatt', 'did', 'it', '||period||', '||return||', '||return||', 'george:', 'babu', 'bhatt', '||questionmark||', 'how', "i'm", 'going', 'to', 'explain', 'this', '||questionmark||', '||return||', '||return||', 'monica:', "time's", 'up', 'george', '||period||', '||return||', '||return||', 'george:', 'u', '||dash||', 'ok', '||period||', '||leftparen||', 'george', 'closes', 'the', 'window', 'and', 'shoos', 'elaine', 'off', '||period||', 'he', 'opens', 'the', 'door', 'to', 'monica', '||period||', '||rightparen||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'monica:', 'how', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'piece', 'of', 'cake', '||semicolon||', 'hu', '||period||', '||return||', '||return||', 'monica:', 'what', 'happened', 'to', 'the', 'test', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'oh', 'i', 'spilled', 'some', 'food', 'on', 'it', '||period||', '||return||', '||return||', 'monica:', 'food', '||questionmark||', 'what', 'food', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'monica:', 'where', 'did', 'you', 'get', 'food', '||questionmark||', '||return||', '||return||', 'george:', 'from', 'my', 'pocket', '||period||', '||return||', '||return||', 'monica:', 'your', 'pocket', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'eh', '||comma||', 'i', 'had', 'a', 'sandwich', 'in', 'my', 'pocket', '||period||', '||return||', '||return||', 'monica:', 'and', 'coffee', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'had', 'some', 'coffee', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'monica:', 'where', 'did', 'you', 'get', 'the', 'coffee', '||questionmark||', '||return||', '||return||', 'george:', 'where', 'did', 'i', 'get', 'the', 'coffee', '||questionmark||', 'where', 'do', 'think', 'i', 'got', 'the', 'coffee', '||comma||', 'at', 'the', 'grocery', 'store', '||period||', '||leftparen||', 'small', 'laugh', '||rightparen||', '||return||', '||return||', 'monica:', 'how', 'did', 'you', 'get', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'walked', '||period||', '||return||', '||return||', 'monica:', 'how', 'did', 'you', 'get', 'out', 'of', 'the', 'apartment', '||questionmark||', 'i', "didn't", 'see', 'you', 'leave', '||period||', '||return||', '||return||', 'george:', 'i', 'climbed', 'out', 'the', 'window', '||period||', '||return||', '||return||', 'monica:', 'you', 'climbed', 'out', 'the', 'window', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', '||return||', '||return||', 'monica:', 'why', "didn't", 'you', 'go', 'out', 'the', 'door', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'door', '||questionmark||', 'why', 'would', 'i', 'go', 'out', 'the', 'door', '||questionmark||', 'the', "window's", 'right', 'here', '||period||', '||return||', '||return||', 'monica:', "you're", 'a', 'fascinating', 'man', '||comma||', 'george', 'costanza', '||period||', '||return||', '||return||', "[jerry's", 'apartment', '||comma||', 'jerry', 'and', 'elaine', '||period||', 'jerry', 'is', 'looking', 'dream', 'cafe', 'with', 'binoculars', '||period||', "there's", 'a', 'sign', 'on', 'the', 'window:', 'closed', 'for', 'renovation', '||period||', ']', '||return||', '||return||', 'jerry:', 'the', 'average', 'person', 'in', 'a', 'situation', 'like', 'this', '||comma||', 'they', 'walk', 'right', 'by', 'it', '||period||', 'not', 'me', '||period||', '||return||', '||return||', 'elaine:', "you're", 'very', 'special', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'do', 'me', 'a', 'favor', '||period||', '||period||', '||period||', 'some', 'guy', 'comes', 'in', 'looking', 'for', 'me', '||comma||', 'tell', 'him', 'you', "don't", 'know', 'where', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||comma||', 'i', 'always', 'do', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', "it's", 'that', 'guy', '||period||', "he's", 'really', 'been', 'bugging', 'me', 'about', 'the', 'jacket', '||period||', '||return||', '||return||', 'elaine:', 'just', 'give', 'it', 'back', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "he'll", 'have', 'to', 'kill', 'me', '||period||', '||leftparen||', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', 'georgie', '||exclammark||', '||return||', '||return||', 'george:', 'coming', 'up', '||period||', '||return||', '||return||', 'jerry:', "how'd", 'you', 'do', 'on', 'the', 'iq', 'test', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '85', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', '85', '||comma||', 'jerry', '||exclammark||', '85', 'iq', '||exclammark||', '||return||', '||return||', 'elaine:', '85', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'well', '||comma||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "he's", 'coming', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'no', 'genius', 'but', '||comma||', 'according', 'to', 'my', 'calculations', 'he', 'should', 'be', 'here', 'in', 'a', 'few', 'seconds', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'an', '85', '||comma||', 'jerry', '||comma||', "that's", 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'the', 'test', 'was', 'gender', 'bias', '||comma||', 'you', 'know', 'a', 'lot', 'of', 'questions', 'on', 'hunting', 'and', 'testicles', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hello', 'professor', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'i', 'cannot', 'believe', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'please', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', 'there', 'has', 'got', 'be', 'a', 'mistake', '||period||', '||return||', '||return||', 'george:', 'you', "should've", 'seen', 'her', 'face', '||period||', 'it', 'was', 'the', 'exact', 'same', 'look', 'my', 'father', 'gave', 'me', 'when', 'i', 'told', 'him', 'i', 'wanted', 'to', 'be', 'a', 'ventriloquist', '||period||', '||return||', '||return||', 'jerry:', 'but', 'an', '85', '||questionmark||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'there', 'were', 'too', 'many', 'distractions', 'there', '||period||', 'babu', '||period||', '||period||', '||period||', 'what', 'ever', "he's", 'name', 'was', 'and', 'kramer', '||period||', '||period||', '||period||', 'i', "couldn't", 'concentrate', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', 'it', 'was', '||exclammark||', 'let', 'me', 'take', 'it', 'again', '||period||', '||return||', '||return||', 'george:', 'ooh', 'ho', 'hoo', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||comma||', 'come', 'on', '||period||', 'i', '||questionmark||', 'll', 'guarantee', '140', '||period||', 'what', 'do', 'you', 'have', 'to', 'lose', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'could', 'do', 'worse', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'come', 'on', '||period||', 'i', 'guarantee', 'it', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "i'll", 'ask', 'her', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'now', 'where', "i'm", 'going', 'to', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'take', 'it', 'here', '||comma||', "i'll", 'leave', '||comma||', "there'll", 'be', 'no', 'distractions', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'congratulations', 'my', 'friend', '||period||', 'you', 'know', '||comma||', "i'm", 'sorry', 'i', 'missed', 'the', 'grand', 're', '||dash||', 'opening', '||period||', 'i', 'was', 'out', 'of', 'town', 'for', 'about', 'a', 'week', '||period||', '||return||', '||return||', 'babu:', 'you', 'see', 'how', 'i', 'listen', '||period||', 'i', 'work', 'very', 'hard', '||comma||', 'borrow', 'more', 'money', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "it's", 'fantastic', '||period||', 'has', 'a', 'certain', 'indefinable', 'charm', '||period||', '||return||', '||return||', 'babu:', 'you', 'wish', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', 'let', 'me', 'tell', 'you', 'something', 'babu', '||period||', 'you', 'go', 'back', 'in', 'that', 'kitchen', '||dash||', '||dash||', 'tell', 'your', 'chef', 'i', 'want', 'the', 'works', '||period||', '||return||', '||return||', 'babu:', 'very', 'good', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stretching', '||rightparen||', 'oh', 'man', '||period||', '||period||', '||period||', 'uunh', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'quiet', '||period||', 'shh', '||comma||', "don't", 'say', 'anything', '||period||', '||return||', '||return||', 'elaine:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'man', 'behind', 'the', 'door:', 'hey', '||comma||', 'kramer', '||exclammark||', 'i', 'saw', 'you', 'go', 'there', '||exclammark||', "i'm", 'not', 'leaving', 'until', 'you', 'gimme', 'that', 'jacket', '||period||', '||leftparen||', 'bangs', 'on', 'the', 'door', '||rightparen||', 'open', 'up', 'kramer', '||exclammark||', '||return||', '||return||', 'elaine:', "wha'd", 'you', 'come', 'in', 'here', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'well', 'i', 'thought', "i'd", 'throw', 'him', 'off', '||period||', 'see', '||comma||', 'he', 'knows', 'where', 'i', 'live', '||period||', '||return||', '||return||', 'elaine:', 'well', 'kramer', '||comma||', 'i', 'have', 'to', 'return', 'this', 'test', '||period||', "i've", 'got', 'to', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'you', 'took', 'the', 'test', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', 'to', 'take', 'it', 'again', '||period||', '||return||', '||return||', 'kramer:', 'how', 'come', '||questionmark||', '||return||', '||return||', 'elaine:', "what's", 'the', 'difference', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', "can't", 'leave', 'now', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'man', 'behind', 'the', 'door:', 'come', 'on', '||comma||', 'kramer', '||exclammark||', 'i', 'want', 'that', 'jacket', 'back', '||exclammark||', '||return||', '||return||', 'kramer:', 'never', '||exclammark||', '||return||', '||return||', 'monica:', 'come', 'on', 'george', '||comma||', 'open', 'up', '||period||', '||return||', '||return||', 'monica:', 'well', '||questionmark||', '||return||', '||return||', 'george:', "how'", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'monica:', "where's", 'the', 'test', '||questionmark||', '||return||', '||return||', 'george:', 'hunh', '||comma||', 'you', 'know', '||comma||', "it's", 'the', 'damnedest', 'thing', '||period||', 'i', 'went', 'out', 'the', 'window', 'again', 'to', '||comma||', 'to', 'get', 'a', 'cup', 'of', 'coffee', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'babu', '||questionmark||', 'babu', '||period||', '||period||', '||period||', '[waves', 'babu', 'to', 'come', 'to', 'table]', 'babu', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'i', 'got', 'to', 'tell', 'you', '||comma||', 'i', 'never', 'do', 'this', '||comma||', 'but', 'the', 'shrimp', '||comma||', "it's", 'just', '||comma||', "it's", 'a', 'little', 'stringy', '||period||', 'you', 'have', 'any', 'chicken', '||questionmark||', '||return||', '||return||', 'babu:', 'the', 'shrimp', 'is', 'stringy', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'your', 'refrigerator', '||period||', '||period||', '||period||', '||return||', '||return||', 'babu:', 'quiet', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'babu:', 'you', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'babu:', 'you', 'make', 'me', 'change', 'restaurant', '||comma||', 'but', 'nobody', 'come', '||exclammark||', 'you', 'say', 'make', 'pakistani', '||comma||', 'babu', 'bhatt', 'have', 'only', 'pakistani', 'restaurant', '||period||', 'but', 'where', 'are', 'people', '||questionmark||', 'you', 'see', 'people', '||questionmark||', 'show', 'me', 'people', '||period||', 'there', 'are', 'no', 'people', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'think', "i'll", 'just', 'take', 'the', 'check', '||period||', '||return||', '||return||', 'babu:', 'you', 'bad', 'man', '||exclammark||', 'you', 'very', 'very', 'bad', 'man', '||exclammark||', '[leaves]', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'bad', 'man', '||questionmark||', "could've", 'my', 'mother', 'been', 'wrong', '||questionmark||', '||return||', '||return||', 'monica:', 'are', 'you', 'looking', 'for', 'george', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'eh', '||comma||', 'kind', 'of', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'monica:', 'george', 'left', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'monica:', 'is', '||comma||', 'that', 'the', 'test', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'this', '||period||', '||period||', '||period||', 'emm', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'monica:', 'thanks', '||period||', 'i', 'hope', 'you', 'do', 'a', 'lot', 'better', 'this', 'time', '||period||', '||return||', '||return||', 'elaine:', 'actually', '||comma||', 'you', 'know', 'i', 'think', 'i', 'did', '||period||', 'the', 'first', 'time', 'i', "couldn't", 'really', 'cons', '||period||', '||period||', '||period||', '[monica', 'closes', 'the', 'window]', '||period||', '||period||', '||period||', 'entrate', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', 'it', 'was', '||comma||', 'bad', 'location', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'lets', 'not', 'stand', 'here', 'too', 'long', '||comma||', 'we', 'might', 'run', 'in', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', "aren't", 'you', 'cold', '||questionmark||', "where's", 'your', 'jacket', '||questionmark||', '||return||', '||return||', 'kramer:', 'h', '||dash||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sorry', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'going', 'upstairs', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'guys', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'ran', 'in', 'to', 'monica', '||period||', 'you', 'know', 'what', 'my', 'iq', 'is', '||questionmark||', '151', '||period||', '||return||', '||return||', 'jerry:', '151', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', 'heheah', '||leftparen||', 'laughing', 'a', 'bit', '||rightparen||', '||return||', '||return||', 'george:', "that's", 'a', 'good', 'score', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'are', 'you', 'up', 'for', '||questionmark||', 'how', 'about', 'mexican', '||questionmark||', '||return||', '||return||', 'george:', 'italian', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'chinese', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'what', 'would', 'be', 'great', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', '||period||', 'hair', 'that', 'was', 'on', 'your', 'shower', 'soap', 'today', 'could', 'be', 'in', 'your', 'head', 'tomorrow', '||period||', 'how', 'did', 'they', 'do', 'the', 'first', 'transplant', '||questionmark||', 'did', 'they', 'have', 'the', 'guy', 'take', 'a', 'shower', '||comma||', 'get', 'his', 'soap', '||comma||', 'rush', 'it', 'in', 'there', 'by', 'helicopter', '||comma||', 'you', 'know', 'keep', 'the', 'soap', 'alive', 'on', 'the', 'soap', 'support', 'system', '||period||', '||period||', '||period||', '||period||', 'looks', 'it', 'over', '||period||', '||quotemark||', 'we', 'got', 'the', 'hair', 'but', 'i', 'think', 'we', 'lost', 'the', 'zest', '||period||', '||quotemark||', '||period||', '||period||', '||period||', '||period||', 'rejects', 'the', 'transplant', 'with', 'organs', '||period||', 'is', 'it', 'possible', 'that', 'a', 'head', 'could', 'reject', 'the', 'hair', 'transplant', '||period||', 'guy', 'just', "standin'", 'there', 'and', 'suddenly', '||period||', '||period||', '||period||', '||period||', '||period||', 'bink', '||exclammark||', '||leftparen||', 'motions', 'hair', 'flying', 'out', 'of', 'his', 'head', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'lands', 'in', "someone's", 'frozen', 'yogurt', '||period||', '||return||', '||return||', 'repairman:', '||period||', '||period||', '||period||', '||period||', '||period||', 'the', 'gaskets', 'that', 'you', 'have', 'here', 'are', 'asymmetrical', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', 'ha', '||exclammark||', '||period||', '||period||', 'really', '||period||', '||leftparen||', 'jerry', 'is', 'barely', 'listening', 'to', 'him', '||rightparen||', '||return||', '||return||', 'repairman:', 'so', 'i', 'took', 'off', 'the', 'motor', 'relay', 'on', 'the', 'compressor', '||period||', '||period||', '||period||', '||period||', "'cos", 'you', '||period||', '||period||', 'you', '||leftparen||', 'stutters', '||rightparen||', "you've", 'got', 'some', 'discoloration', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'well', 'whatever', 'you', 'have', 'to', 'do', '||period||', '||return||', '||return||', 'repairman:', 'i', 'was', 'working', 'with', 'one', '||period||', '||period||', '||period||', '||period||', '||period||', 'mount', 'at', 'a', 'time', "'cos", 'you', "don't", 'wanna', 'disturb', 'the', 'position', 'of', 'the', 'compressor', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'no', 'you', "don't", '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'what', 'are', 'listening', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'show', 'from', 'last', 'night', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'you', 'taped', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'was', 'doing', 'new', 'material', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'did', "'ya", 'ever', 'do', 'that', 'thing', 'on', 'the', 'toes', 'that', 'i', 'said', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'like', 'the', 'big', 'toe', 'is', 'like', 'the', 'captain', 'of', 'the', 'toes', '||comma||', 'but', 'sometimes', 'the', 'toe', 'next', 'to', 'the', 'big', 'toe', 'gets', 'so', 'big', 'that', "there's", 'like', 'a', 'power', 'struggle', 'and', 'the', 'second', 'toe', 'assumes', 'control', 'of', 'the', 'foot', '||period||', '||return||', '||return||', 'jerry:', 'the', '||quotemark||', 'coup', 'd', '||dash||', 'toe', '||quotemark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'did', 'you', 'do', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', "nothin'", '||period||', '||period||', '||period||', '||period||', '||period||', 'nothing', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'need', 'to', 'use', 'the', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'who', 'you', 'calling', '||questionmark||', '||return||', '||return||', 'george:', 'china', '||period||', '||return||', '||return||', 'jerry:', 'china', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', "i'll", 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||period||', "i'll", 'tell', 'you', 'what', 'for', '||period||', '||period||', '||period||', '||period||', 'for', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'hair', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'chinese', 'have', 'done', 'it', 'my', 'friend', '||period||', 'the', 'chinese', 'have', 'done', 'it', '||period||', '||return||', '||return||', 'jerry:', 'done', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'discovered', 'a', 'cure', 'for', 'baldness', '||period||', '||return||', '||return||', 'repairman:', 'did', 'you', 'see', 'that', 'last', 'night', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'was', 'on', 'cnn', '||leftparen||', 'kramer', 'comes', 'in', 'and', 'he', 'is', 'taping', 'from', 'a', 'camcorder', '||rightparen||', 'this', 'chinese', 'doctor', 'zeng', 'zau', '||period||', 'has', 'discovered', 'a', 'cure', 'for', 'baldness', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'just', 'got', 'it', '||period||', 'spector', 'gave', 'it', 'to', 'me', '||comma||', "he's", 'giving', 'everything', 'away', '||period||', '||period||', '||period||', 'becoming', 'a', 'minimalist', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'the', 'guy', 'who', 'likes', 'fat', 'women', '||questionmark||', '||return||', '||return||', 'jerry:', "doesn't", 'the', 'fat', 'fetish', 'conflict', 'with', 'the', 'minimalism', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'you', '||comma||', 'you', 'know', 'what', 'you', "should've", 'done', 'is', 'watching', 'that', 'report', 'on', 'cnn', 'last', 'night', '||period||', '||return||', '||return||', 'george:', 'i', 'did', '||comma||', "i'm", 'trying', 'to', 'call', 'china', '||period||', '||return||', '||return||', 'kramer:', 'you', "can't", 'call', 'china', 'now', 'its', 'like', '||comma||', 'what', '||comma||', 'three', "'o", 'clock', 'in', 'the', 'morning', 'there', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'my', 'god', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'god', '||period||', '||period||', 'oh', '||exclammark||', 'man', '||period||', '||period||', '||period||', '||period||', '||period||', 'oh', '||exclammark||', 'brother', '||exclammark||', '||exclammark||', '||exclammark||', 'i', "can't", 'believe', 'what', "i'm", 'hearing', '||period||', 'this', 'woman', 'his', 'talking', 'to', 'me', 'on', 'my', 'tape', 'recorder', 'while', 'i', 'was', 'on', 'stage', '||period||', 'this', 'is', 'wild', '||period||', "i've", 'never', 'heard', 'anything', 'like', 'this', 'in', 'my', 'life', '||period||', 'listen', 'to', 'this', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'george', 'puts', 'on', 'the', 'headphones', '||rightparen||', 'oh', '||exclammark||', 'my', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'give', 'me', 'it', '||period||', '||period||', '||leftparen||', 'tries', 'to', 'pull', 'them', 'off', "george's", 'head', '||rightparen||', '||return||', '||return||', 'george:', 'wa', '||period||', '||period||', 'wait', '||period||', 'wait', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'who', 'is', 'this', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'i', 'have', 'no', 'idea', '||period||', 'i', 'was', 'just', 'listening', 'and', 'she', 'came', 'on', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'like', 'a', 'penthouse', 'letter', '||period||', '||period||', '||period||', 'why', "can't", 'i', 'meet', 'women', 'like', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', 'come', 'on', '||period||', '||period||', '||period||', '||period||', 'again', 'attempts', 'to', 'pull', 'headphones', 'off', '||rightparen||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', 'where', 'was', 'the', 'tape', 'recorder', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'in', 'the', 'back', 'of', 'the', 'room', 'on', 'the', 'left', '||comma||', 'she', 'must', 'have', 'been', 'sitting', 'right', 'in', 'front', 'of', 'it', '||period||', '||return||', '||return||', 'george:', 'my', 'god', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', "c'mon", "it's", 'my', 'turn', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'all', '||comma||', 'right', '||exclammark||', '||exclammark||', '||leftparen||', 'gives', 'the', 'headphones', 'to', 'kramer', '||rightparen||', 'how', 'you', 'gonna', 'find', 'out', 'who', 'this', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', 'question', '||period||', '||return||', '||return||', 'kramer:', "where's", 'the', 'volume', '||period||', '||period||', '||leftparen||', 'finds', 'it', '||rightparen||', 'a', '||comma||', 'yai', '||period||', '||period||', 'ya', '||period||', '||period||', '||period||', 'ya', '||period||', '||period||', 'ya', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'do', 'the', 'chinese', 'have', 'to', 'gain', 'by', 'faking', 'a', 'cure', 'for', 'baldness', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'it', 'was', 'real', '||comma||', 'they', 'would', 'never', 'let', 'it', 'out', 'of', 'the', 'country', '||period||', 'no', 'baldness', '||comma||', "it'd", 'be', 'like', 'a', 'nation', 'of', 'supermen', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'boys', '||period||', '||return||', '||return||', 'both:', 'hello', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "what's", 'happening', '||questionmark||', '||return||', '||return||', 'jerry:', 'tell', 'her', '||period||', 'i', 'wanna', 'hear', 'her', 'reaction', '||period||', '||return||', '||return||', 'george:', 'this', 'woman', 'left', 'this', 'really', 'sexy', 'message', 'on', "jerry's", 'tape', 'recorder', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pushes', 'george', '||rightparen||', 'not', 'that', 'you', 'idiot', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'chinese', '||comma||', 'the', 'chinese', 'bald', 'cure', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'you', 'meant', 'the', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', 'meant', 'the', 'bald', 'cure', '||period||', 'we', 'were', 'talking', 'about', 'the', 'bald', 'cure', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'peter:', 'seinfeld', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'from', 'way', 'in', 'the', 'back', 'of', 'the', 'restaurant', '||period||', 'cheesy', 'plot', 'device', 'to', 'have', 'jerry', 'leave', 'the', 'table', 'for', 'a', 'minute', 'so', 'george', 'and', 'elaine', 'can', 'talk', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'is', 'that', 'peter', '||questionmark||', '||period||', '||period||', '||period||', 'i', "can't", 'believe', 'it', '||period||', 'get', 'me', 'a', 'cup', 'of', 'decaf', '||period||', '||leftparen||', 'leaves', 'table', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'did', 'you', 'hear', 'this', 'message', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', '||comma||', 'he', 'he', '||comma||', 'it', 'was', 'unbelievable', '||return||', '||return||', 'elaine:', 'really', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', "can't", 'get', 'over', 'it', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||exclammark||', 'sexy', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'woman', 'drove', 'us', 'out', 'of', 'our', 'minds', '||return||', '||return||', 'elaine:', 'like', '||period||', '||period||', '||period||', 'humm', '||period||', '||period||', '||period||', 'how', 'did', 'she', 'sound', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'had', 'this', 'throaty', '||comma||', 'sexy', 'kind', 'of', 'whisper', '||period||', '||return||', '||return||', 'elaine:', 'really', '||comma||', 'like', 'a', '||period||', '||period||', '||period||', 'like', 'a', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'leans', 'over', 'to', 'george', 'and', 'whispers', '||rightparen||', 'jerry', '||comma||', 'i', 'want', 'to', 'slide', 'my', 'tongue', 'around', 'you', 'like', 'a', 'snake', '||period||', '||period||', '||period||', '||period||', '||period||', 'ooooooooooha', '||comma||', 'oooooohaaaa', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'my', 'god', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', '||questionmark||', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', '||questionmark||', '||period||', '||period||', '||period||', 'that', 'was', 'you', '||questionmark||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'shhhhhh', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'did', 'ya', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'stopped', 'at', 'the', 'club', 'to', 'see', 'him', 'and', 'i', 'was', 'standing', 'in', 'the', 'back', 'while', 'he', 'was', 'on', '||comma||', 'right', '||questionmark||', '||comma||', 'and', 'there', 'was', 'this', 'tape', 'recorder', 'there', 'and', 'i', '||period||', '||period||', '||period||', '||period||', '||period||', 'got', 'this', 'impulse', '||period||', 'ha', 'ha', 'ha', 'ha', '||period||', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'no', 'no', 'nothing', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'now', 'listen', '||comma||', 'promise', 'me', 'you', "won't", 'tell', 'him', 'okay', '||period||', 'i', 'want', 'to', 'have', 'a', 'little', 'fun', 'with', 'this', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'no', 'idea', 'you', 'were', 'filled', 'with', 'such', '||period||', '||period||', '||period||', '||period||', 'sexuality', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'that', 'was', 'nothing', '||period||', 'so', 'listen', '||comma||', 'what', 'about', 'this', 'bald', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||exclammark||', 'some', 'bald', 'thing', '||comma||', 'a', 'bald', 'thing', 'i', 'dunno', '||period||', "it's", 'nothing', '||return||', '||return||', 'jerry:', 'remember', 'peter', '||questionmark||', '||return||', '||return||', 'george:', 'peter', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'remember', 'peter', '||period||', 'remember', 'i', 'told', 'you', 'how', 'he', 'went', 'to', 'the', 'track', 'that', 'one', 'time', 'and', 'he', 'was', 'yelling', 'at', 'this', 'jockey', 'and', 'the', 'jockey', 'got', 'off', 'the', 'horse', 'and', 'started', "chasin'", 'him', '||period||', '||return||', '||return||', 'elaine:', 'so', 'listen', '||comma||', 'what', 'about', 'this', 'girl', 'on', 'the', 'tape', 'recorder', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'elaine', '||period||', '||period||', '||period||', '||period||', 'what', 'do', 'you', 'think', 'an', 'enraptured', 'female', 'fan', 'of', 'mine', 'might', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'she', 'went', 'on', 'in', 'some', 'detail', 'about', 'certain', 'activities', '||comma||', 'illegal', 'in', 'some', 'states', '||comma||', 'for', 'consenting', 'adults', '||period||', 'things', 'you', 'would', 'know', 'very', 'little', 'about', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'really', '||period||', '||return||', '||return||', 'jerry:', 'well', 'this', 'type', 'of', 'things', 'is', 'very', 'common', 'when', "you're", 'in', 'show', 'business', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||comma||', 'are', 'you', 'gonna', 'ask', 'her', 'out', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', "can't", 'she', "didn't", 'leave', 'her', 'name', 'or', 'number', '||period||', '||return||', '||return||', 'elaine:', 'bummer', '||period||', '||period||', '||period||', 'okay', '||comma||', 'good', 'luck', 'finding', 'her', '||period||', "i'm", 'taking', 'off', '||period||', '||return||', '||return||', 'george:', 'wh', '||period||', '||period||', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'home', '||period||', '||return||', '||return||', 'george:', 'why', 'you', 'going', 'home', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'just', 'came', 'from', 'the', 'gym', '||comma||', 'unless', 'i', 'can', 'shower', 'at', 'your', 'place', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'my', 'god', '||period||', 'oh', '||exclammark||', 'man', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'get', 'it', '||period||', 'why', 'would', 'a', 'woman', 'do', 'that', 'and', 'then', 'leave', 'no', 'way', 'to', 'get', 'in', 'touch', 'with', 'her', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'coming', 'out', 'of', 'the', 'shower', 'in', 'a', 'bathrobe', '||rightparen||', 'may', 'be', 'she', 'realized', 'she', 'could', 'never', 'have', 'you', 'and', 'she', 'jumped', 'off', 'the', 'george', 'washington', 'bridge', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'phone', 'rings', '||comma||', 'picks', 'up', '||rightparen||', 'operator', '||questionmark||', 'beijing', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'do', 'i', 'do', 'anything', '||questionmark||', 'tsss', '||period||', '||period||', '||period||', 'for', 'women', '||period||', '||return||', '||return||', 'jerry:', 'elaine', 'have', 'you', 'ever', 'gone', 'out', 'with', 'a', 'bald', 'man', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', 'that', 'makes', 'you', '||questionmark||', '||period||', '||period||', '||period||', 'a', 'baldist', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'this', 'i', 'need', '||period||', 'hello', '||exclammark||', '||exclammark||', 'hello', '||period||', 'i', '||period||', '||period||', 'i', '||period||', '||period||', 'is', 'this', 'the', 'hair', 'restoration', 'clinic', '||questionmark||', '||period||', '||period||', '||period||', 'does', 'anyone', 'speak', 'english', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'kramer', 'who', 'just', 'got', 'in', 'with', 'his', 'camcorder', '||rightparen||', 'ooooh', '||exclammark||', "you're", 'taping', '||period||', '||return||', '||return||', 'kramer:', 'just', 'be', 'yourselves', '||period||', '||leftparen||', 'elaine', 'plays', 'with', 'her', 'hair', 'flirtingly', '||rightparen||', '||return||', '||return||', 'elaine:', 'aah', '||exclammark||', 'okaaay', '||period||', '||return||', '||return||', 'kramer:', 'well', "we're", 'talking', 'with', 'elaine', 'benes', '||semicolon||', 'adult', 'film', 'star', 'on', 'the', 'set', 'of', 'her', 'new', 'picture', '||quotemark||', 'elaine', 'does', 'the', 'upper', 'west', 'side', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'camera', '||rightparen||', 'hi', '||period||', 'how', "'re", 'you', "doin'", '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", "doin'", 'fine', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'speak', 'english', '||questionmark||', '||period||', '||period||', '||period||', 'english', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'whooooa', '||exclammark||', "here's", 'the', 'director', 'jerry', 'seinfeld', '||period||', 'jerry', '||comma||', 'you', 'discovered', 'elaine', 'benes', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'yes', 'i', 'did', "that's", 'true', '||period||', 'a', 'couple', 'of', 'a', 'guys', 'i', 'knew', 'in', 'the', 'coastguard', 'told', 'me', 'about', 'her', '||period||', '||period||', '||period||', '||period||', 'and', 'i', 'sensed', 'that', 'she', 'had', 'the', 'anger', 'and', 'intensity', 'that', 'i', 'needed', 'to', 'make', 'this', 'film', 'work', '||period||', '||return||', '||return||', 'george:', 'english', '||period||', 'does', 'anybody', 'speak', 'english', '||period||', 'nobody', 'speaks', 'english', '||period||', '||return||', '||return||', 'kramer:', 'so', 'what', 'scene', 'are', 'you', 'ready', 'to', 'shoot', 'now', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'in', 'this', 'scene', 'my', 'co', '||dash||', 'star', "who's", 'right', 'over', 'here', '||leftparen||', 'goes', 'over', 'to', 'george', 'who', 'is', 'still', 'on', 'the', 'phone', '||rightparen||', 'follow', 'meeeee', '||period||', '||period||', '||period||', 'is', 'george', 'costanza', '||comma||', 'he', 'plays', 'an', 'airline', 'pilot', "who's", 'just', 'returned', 'from', 'rome', 'and', "i'm", 'about', 'to', 'show', 'him', 'how', 'much', "i've", 'missed', 'him', '||period||', '||return||', '||return||', 'kramer:', "that's", 'my', 'chinese', 'food', '||period||', '||period||', '||period||', 'so', 'george', 'is', 'this', 'your', 'first', 'movie', 'with', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'visibly', 'disturbed', '||rightparen||', 'i', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', 'i', 'dunno', '||period||', '||return||', '||return||', 'kramer:', 'so', 'elaine', 'in', 'your', 'movies', 'is', 'the', 'sex', 'real', 'or', 'is', 'it', 'simulated', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', "it's", 'always', 'simulated', '||period||', '||period||', '||period||', '||period||', 'except', 'with', 'george', "that's", 'in', 'my', 'contract', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'kramer', "that's", 'it', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'pushes', 'the', 'camera', '||rightparen||', 'hello', '||period||', 'english', '||period||', 'does', 'anyone', 'speak', 'english', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'chinese', 'delivery', 'boy', '||rightparen||', 'how', 'much', 'do', 'i', 'owe', 'you', '||questionmark||', '||return||', '||return||', 'ping:', '$15', '||period||', '90', '||period||', '||return||', '||return||', 'kramer:', '$15', '||period||', '90', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'huh', '||period||', 'excuse', 'me', '||leftparen||', 'to', 'ping', '||rightparen||', 'hum', '||period||', '||period||', '||period||', 'do', 'you', 'speak', 'chinese', '||questionmark||', '||return||', '||return||', 'ping:', 'chinese', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'look', '||period||', '||period||', '||period||', 'humm', '||period||', '||period||', "i'm", 'on', 'with', 'beijing', 'with', 'the', 'hair', 'restauration', 'clinic', '||period||', 'could', 'you', 'talk', 'to', 'them', 'for', 'me', 'and', 'tell', 'them', "i'd", 'like', 'to', 'place', 'an', 'order', '||period||', '||return||', '||return||', 'ping:', '||leftparen||', 'sounds', 'like', '||rightparen||', 'gwen', '||comma||', 'ayon', '||period||', 'wonche', 'son', 'thai', 'gettin', 'my', 'chon', 'fai', 'yu', '||period||', '||leftparen||', 'looks', 'at', 'george', 'and', 'laughs', '||rightparen||', '||return||', '||return||', 'george:', 'they', 'got', 'a', 'billion', 'people', 'over', 'there', 'and', 'he', 'found', 'a', 'relative', '||period||', '||return||', '||return||', 'ping:', 'ah', 'fuka', 'suma', '||period||', 'if', 'you', 'send', 'money', 'they', 'send', 'cream', '||period||', '||return||', '||return||', 'george:', 'they', 'send', 'me', '||questionmark||', 'aw', 'right', '||period||', '||period||', 'ask', "'em", 'does', 'it', 'really', 'work', '||questionmark||', '||return||', '||return||', 'ping:', 'gym', 'a', 'gun', 'sen', 'tokomo', '||period||', 'chin', 'che', '||period||', 'they', 'say', 'you', 'grow', 'hair', '||comma||', 'look', 'a', 'like', 'stalin', '||return||', '||return||', 'george:', "ask'", 'em', 'are', 'there', 'any', 'side', 'effects', '||questionmark||', '||return||', '||return||', 'ping:', 'dowe', 'o', 'futo', 'yum', '||period||', '||period||', '||period||', '||period||', 'impotence', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'makes', 'a', 'just', 'kidding', 'gesture', '||rightparen||', '||return||', '||return||', 'george:', 'aw', '||exclammark||', 'funny', "he's", 'a', 'funny', 'guy', '||period||', '||return||', '||return||', 'ping:', 'get', 'a', 'money', 'order', 'from', 'the', 'bank', 'of', 'china', '||comma||', 'be', 'here', 'three', 'days', 'after', 'they', 'get', 'check', '||period||', '||return||', '||return||', 'ping:', '||leftparen||', 'continues', 'his', 'phone', 'call', '||rightparen||', 'ha', 'pachini', 'fair', 'pousher', 'pousher', 'mouist', 'i', 'fai', 'chin', 'fousher', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'ping', 'rambles', 'on', '||rightparen||', '||period||', '||period||', '||period||', "s'cuse", 'me', '||leftparen||', 'ping', 'looks', 'up', '||rightparen||', 'kind', 'of', 'an', 'expensive', 'call', '||period||', '||return||', '||return||', 'elaine:', 'thanks', 'for', 'driving', 'me', 'home', '||period||', 'what', 'did', 'i', 'do', 'to', 'deserve', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'yoohoo', '||comma||', 'plenty', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'wh', '||period||', '||period||', 'wh', '||period||', '||period||', 'what', 'are', 'doing', 'hum', '||period||', '||period||', '||period||', "you're", 'going', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'ya', '||period||', 'i', 'guess', 'so', 'why', '||questionmark||', 'you', 'wanna', 'do', 'something', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', '||period||', '||period||', 'euh', '||period||', '||period||', '||period||', 'i', 'dunno', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'pffft', '||period||', '||period||', '||period||', '||period||', "there's", 'really', 'nothing', 'to', 'do', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'becoming', 'more', 'and', 'more', 'awkward', '||rightparen||', 'yeah', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'think', 'of', 'anything', '||questionmark||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'mumbles', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'am', 'up', 'for', 'anything', '||period||', '||return||', '||return||', 'george:', 'really', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'honks', 'the', 'car', 'and', 'is', 'startled', '||comma||', 'elaine', 'laughs', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'i', 'have', 'to', 'say', '||period||', '||period||', '||period||', 'you', 'were', 'really', 'good', 'doing', 'that', 'porno', 'thing', '||period||', '||period||', '||period||', '||period||', "you're", 'talented', '||period||', '||return||', '||return||', 'elaine:', 'i', 'was', 'just', 'kiddin', '||comma||', 'around', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'the', 'thing', 'you', 'said', 'about', 'the', 'sex', 'not', 'being', 'simulated', '||period||', 'that', 'was', 'really', 'funny', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'feeling', 'awkward', 'as', 'well', '||rightparen||', 'yeah', '||exclammark||', 'that', 'was', 'a', '||period||', '||period||', '||period||', 'f', '||period||', '||period||', '||period||', 'fun', '||period||', '||period||', 'mmm', '||questionmark||', '||period||', '||return||', '||return||', 'george:', 'so', 'all', 'right', "i'll", 'speak', 'to', 'you', 'through', 'jerry', 'and', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||period||', '||period||', 'thanks', 'a', 'lot', 'for', 'the', 'ride', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'she', 'was', 'sitting', 'at', 'the', 'table', 'where', 'i', 'had', 'my', 'tape', 'recorder', '||period||', '||period||', '||period||', 'okay', 'great', '||period||', 'thanks', 'again', '||period||', '||period||', 'bye', '||period||', 'ha', 'ha', '||period||', '||period||', 'who', 'do', 'these', 'women', 'think', "they're", 'dealing', 'with', '||questionmark||', 'did', 'she', 'think', 'she', 'was', 'gonna', 'leave', 'this', 'incredibly', 'erotic', 'message', 'on', 'my', 'tape', 'and', 'i', 'was', 'just', 'gonna', 'let', 'it', 'go', '||period||', 'not', 'bloody', 'likely', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'my', 'cockney', 'accent', '||period||', '||return||', '||return||', 'kramer:', 'naw', '||comma||', 'na', '||comma||', "that's", 'no', 'good', '||period||', '||return||', '||return||', 'jerry:', 'lets', 'hear', 'yours', '||period||', '||return||', '||return||', 'kramer:', 'not', 'bloody', 'likely', '||period||', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'worst', 'cockney', 'accent', "i've", 'ever', 'heard', 'in', 'my', 'life', '||period||', '||leftparen||', 'george', 'enters', '||rightparen||', 'hey', '||exclammark||', 'georgie', 'boy', '||comma||', 'guess', 'what', 'i', 'got', '||period||', '||return||', '||return||', 'george:', 'guess', '||comma||', 'what', 'i', 'got', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'is', 'that', 'the', 'bald', 'stuff', '||questionmark||', '||return||', '||return||', 'george:', 'from', 'china', '||period||', 'all', 'the', 'way', 'from', 'china', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', 'wait', '||period||', '||period||', '||period||', 'let', 'me', 'get', 'the', 'camera', '||period||', '||return||', '||return||', 'george:', 'no', "don't", 'get', 'the', 'camera', '||comma||', 'we', "don't", 'need', 'the', 'camera', '||period||', 'listen', 'i', 'know', 'your', 'skeptical', '||comma||', 'but', 'i', 'really', 'believe', 'in', 'the', 'chinese', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'am', 'skeptical', '||period||', '||return||', '||return||', 'george:', 'why', 'do', 'you', 'have', 'to', 'be', 'so', 'suspicious', 'of', 'every', 'one', '||period||', 'this', 'is', 'a', 'great', 'man', 'zeng', 'zau', '||comma||', 'he', 'wants', 'to', 'help', 'bald', 'people', '||period||', '||return||', '||return||', 'kramer:', 'w', '||period||', '||period||', 'w', '||period||', '||period||', 'wa', '||period||', '||period||', '||period||', 'wa', '||period||', '||period||', 'wait', '||period||', '||period||', 'wait', 'wait', '||period||', '||period||', 'now', 'lets', 'videotape', 'your', 'head', 'for', 'the', 'before', 'picture', '||comma||', 'so', 'we', 'can', 'watch', 'how', 'it', 'grows', 'and', 'stuff', '||period||', 'sit', 'down', '||leftparen||', 'george', 'sits', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', 'lean', 'back', '||period||', '||period||', '||period||', 'a', 'little', 'bit', 'to', 'the', 'right', '||period||', '||return||', '||return||', 'jerry:', 'make', 'sure', 'you', 'get', 'this', 'area', 'here', '||comma||', 'where', 'he', 'needs', 'the', 'help', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||leftparen||', 'goes', 'to', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'kramer:', "he's", 'a', 'happy', 'camper', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'happy', 'camper', '||comma||', 'i', "don't", 'hear', 'that', 'expression', 'enough', '||period||', '||return||', '||return||', 'kramer:', 'remember', 'that', 'guy', 'who', 'took', 'my', 'jacket', '||period||', 'the', 'one', 'i', 'found', 'at', 'my', "mother's", 'house', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'my', 'mother', 'told', 'me', 'that', 'he', 'got', 'arrested', 'for', 'mail', 'fraud', '||return||', '||return||', 'jerry:', 'no', 'kidding', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'in', 'jail', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'the', 'jacket', '||period||', 'did', 'he', 'take', 'it', 'with', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'what', 'i', 'intend', 'to', 'find', 'out', '||period||', '||leftparen||', 'george', 'comes', 'out', 'of', 'the', 'bathroom', 'and', "he's", 'got', 'white', 'cream', 'on', 'his', 'head', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'can', 'see', 'it', '||period||', 'you', 'gonna', 'walk', 'around', 'like', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'stinks', '||period||', 'can', 'you', 'smell', 'that', '||questionmark||', '||period||', '||period||', '||period||', '||period||', 'you', 'stink', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'are', 'you', 'suppose', 'to', 'leave', 'it', 'on', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'day', '||period||', '||leftparen||', 'phone', 'rings', '||comma||', 'jerry', 'picks', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'elaine:', "it's", 'elaine', 'marie', 'benes', '||period||', '||return||', '||return||', 'jerry:', 'well', 'hello', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||period||', 'so', 'did', 'you', 'ever', 'find', 'out', 'who', 'that', 'woman', 'was', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'got', 'her', 'number', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hi', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', 'you', 'figure', "you're", 'in', 'for', 'a', 'pretty', 'wild', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'as', 'i', 'said', 'this', 'type', 'of', 'thing', 'is', 'very', 'common', 'in', 'show', 'business', '||return||', '||return||', 'elaine:', 'well', 'listen', "i'm", 'going', 'to', '||leftparen||', '||questionmark||', '||rightparen||', 'do', 'you', 'want', 'me', 'to', 'stop', 'by', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'she', 'say', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'i', 'dunno', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'when', 'i', 'said', 'hello', 'did', 'she', 'say', 'hello', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'who', 'keeps', 'track', 'of', 'hellos', '||period||', '||return||', '||return||', 'george:', "isn't", 'polite', 'to', 'say', 'hello', 'when', 'somebody', 'says', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'coming', 'up', '||period||', '||return||', '||return||', 'george:', "elaine's", 'coming', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "what's", 'wrong', '||comma||', 'why', '||questionmark||', '||leftparen||', 'george', 'runs', 'back', 'to', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'kramer:', 'how', 'often', 'do', 'you', 'cut', 'your', 'toe', 'nails', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'would', 'say', 'every', 'two', 'and', 'a', 'half', 'to', 'eight', 'weeks', '||period||', '||return||', '||return||', 'kramer:', "'cos", 'the', 'other', 'night', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'sleeping', 'with', 'marion', 'i', 'rolled', 'over', 'and', 'i', 'cut', 'her', 'ankle', 'with', 'my', 'big', 'toe', '||period||', '||return||', '||return||', 'jerry:', 'the', 'big', 'toe', '||semicolon||', 'the', 'captain', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'captain', 'of', 'the', 'toes', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', '||period||', '||period||', 'jerry', 'listen', 'i', 'got', 'too', 'much', 'stuff', 'this', 'afternoon', '||comma||', 'i', "can't", 'come', 'over', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||period||', '||period||', 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'so', 'humm', '||period||', '||period||', '||period||', '||period||', 'when', 'you', 'gonna', 'call', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'soon', 'as', 'i', 'get', 'off', 'the', 'phone', 'wih', 'you', '||period||', '||return||', '||return||', 'elaine:', 'good', 'luck', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'bye', '||leftparen||', 'to', 'george', '||rightparen||', 'what', 'happened', '||comma||', 'did', 'you', 'take', 'it', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'that', 'was', 'enough', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||comma||', 'you', 'gave', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'no', "i'm", 'working', 'on', 'a', 'system', '||period||', '||period||', '||period||', 'who', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'was', 'elaine', '||comma||', 'she', 'changed', 'her', 'mind', '||period||', "she's", 'not', 'coming', 'over', '||period||', '||return||', '||return||', 'alicia:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'is', 'this', 'alicia', '||questionmark||', '||period||', 'this', 'is', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'alicia:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', '||period||', '||period||', '||period||', '||leftparen||', 'words', 'missing', '||rightparen||', '||period||', '||period||', '||period||', 'laugh', '||comma||', "everything's", 'nice', 'and', 'at', 'the', 'end', 'of', 'the', 'night', 'i', 'go', 'for', 'a', 'little', 'contact', '||period||', 'i', 'get', 'the', 'pull', 'back', '||period||', 'this', 'woman', 'said', 'the', 'filthiest', 'things', "i've", 'ever', 'heard', 'in', 'my', 'life', '||period||', 'i', 'get', 'the', 'pull', 'back', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||return||', '||return||', 'george:', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||leftparen||', 'looks', 'at', 'his', 'watch', '||rightparen||', '||period||', '||period||', '||period||', "what's", 'he', 'doing', 'here', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'you', 'blew', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'must', 'be', 'psychotic', 'or', 'something', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'have', 'her', 'number', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'giving', 'you', 'her', 'number', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', 'how', 'to', 'handle', 'these', 'psychotics', '||period||', '||return||', '||return||', 'jerry:', 'sheriff', '||questionmark||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "what's", 'with', 'the', 'hat', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'george', 'takes', 'off', 'the', 'hat', '||comma||', "he's", 'got', 'that', 'cream', 'on', 'again', '||rightparen||', 'pheeewwww', '||exclammark||', 'boy', '||exclammark||', 'you', 'stink', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'doing', 'here', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'talk', 'to', 'you', 'about', 'something', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', 'lets', 'take', 'a', 'look', 'to', 'see', 'what', 'we', 'got', '||leftparen||', 'examines', "george's", 'head', '||rightparen||', 'wait', 'a', 'second', '||period||', '||period||', 'i', 'think', 'i', 'see', 'something', 'here', 'george', '||period||', 'lets', 'go', 'to', 'the', 'videotape', '||period||', '||return||', '||return||', 'george:', 'aahh', '||period||', '||period||', 'no', '||period||', '||period||', 'no', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'tell', 'ya', 'now', '||comma||', "he's", 'gonna', 'be', 'back', 'in', 'a', 'ten', 'seconds', '||period||', '||return||', '||return||', 'jerry:', 'so', 'just', 'start', 'it', '||period||', '||return||', '||return||', 'george:', 'i', "can't", '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'come', 'om', '||period||', "he'll", 'be', 'over', 'there', 'for', 'a', 'half', 'hour', '||comma||', 'he', 'gets', 'lost', 'over', 'there', '||period||', "c'mon", 'so', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "i've", 'become', 'attracted', 'to', 'elaine', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', '||period||', '||period||', '||period||', 'sit', 'down', 'george', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'can', 'we', 'do', 'this', 'later', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'got', 'the', 'tape', 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "let's", 'do', 'this', 'later', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'ignoring', 'them', '||rightparen||', 'now', '||period||', '||period||', 'this', 'is', 'the', 'tape', 'that', 'we', 'made', 'earlier', 'and', 'i', 'think', '||comma||', 'that', 'i', 'see', '||period||', 'a', 'couple', 'of', 'buds', 'right', 'here', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||period||', '||period||', 'you', 'think', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', 'i', 'would', 'like', 'to', 'talk', 'to', 'george', 'for', 'a', 'minute', '||comma||', 'please', '||period||', '||return||', '||return||', 'kramer:', "'bout", 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'kinda', 'private', '||period||', '||return||', '||return||', 'kramer:', 'like', 'the', 'big', 'toe', 'captain', '||period||', '||period||', '||return||', '||return||', 'george:', 'so', 'now', "you're", 'doing', 'my', 'bits', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'doing', 'your', 'bits', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'all', 'right', '||period||', "i'm", 'gonna', 'take', 'a', 'look', 'at', 'this', 'huh', '||exclammark||', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'does', 'she', 'know', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'it', 'happen', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'say', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'why', "can't", 'you', 'say', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'i', 'promised', 'her', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'just', 'said', 'she', "doesn't", 'know', '||questionmark||', '||questionmark||', '||return||', '||return||', 'george:', 'she', "doesn't", '||period||', '||return||', '||return||', 'jerry:', 'so', 'how', 'can', 'you', 'promise', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'she', 'asked', 'me', 'to', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||comma||', 'an', 'abbott', 'and', 'costello', 'routine', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', 'you', 'really', 'want', 'to', 'know', '||questionmark||', '||period||', '||period||', '||period||', 'it', 'all', 'started', 'when', 'she', 'told', 'met', 'hat', '||period||', '||period||', '||period||', 'she', 'was', 'the', 'voice', 'on', 'your', 'tape', 'recorder', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'she', 'made', 'me', 'promise', 'not', 'to', 'tell', 'you', '||period||', "it's", 'supposed', 'to', 'be', 'a', 'joke', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picks', 'up', 'the', 'headphones', '||rightparen||', 'that', 'was', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', 'let', 'me', 'hear', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'they', 'struggle', 'for', 'the', 'headphones', '||rightparen||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', '||period||', 'just', 'give', 'me', 'a', 'second', '||return||', '||return||', 'george:', 'you', 'heard', 'it', 'fifty', 'times', 'already', '||period||', '||return||', '||return||', 'jerry:', "she's", 'my', 'ex', '||dash||', 'girlfriend', 'i', 'think', 'i', 'have', 'precedence', '||return||', '||return||', 'jerry:', 'yeaaaah', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', "it's", 'elaine', 'is', 'this', 'a', 'bad', 'time', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'yelling', 'from', 'the', 'bathroom', '||rightparen||', "don't", 'tell', 'her', 'anything', '||comma||', "she'll", 'kill', 'me', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'okay', '||comma||', 'i', 'promise', '||period||', '||leftparen||', 'puts', 'on', 'the', 'headphones', 'again', '||rightparen||', 'wow', '||exclammark||', '||exclammark||', '||exclammark||', 'oh', 'man', '||period||', '||period||', '||period||', 'oh', 'god', '||period||', '||period||', 'oh', 'brother', '||period||', '||period||', '||period||', '||period||', 'whoooaaaa', '||exclammark||', '||exclammark||', 'whoaaaa', '||leftparen||', 'elaine', 'enters', 'he', 'takes', 'them', 'off', 'rapidly', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'concerned', '||rightparen||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'oooh', '||exclammark||', 'i', 'got', 'a', 'pain', 'in', 'my', 'side', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', 'returning', '||rightparen||', 'hi', 'george', '||period||', 'something', 'stinks', 'in', 'here', '||period||', '||leftparen||', 'george', 'motions', 'to', 'jerry', '||comma||', 'she', 'nods', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'was', 'the', 'one', 'who', 'talked', 'into', 'your', 'tape', 'recorder', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'george', 'told', 'me', '||period||', '||return||', '||return||', 'elaine:', 'you', 'told', 'him', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'he', '||period||', '||period||', 'he', 'threatened', 'me', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'come', 'up', 'with', 'all', 'that', 'stuff', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'was', 'nothing', '||period||', '||return||', '||return||', 'george:', 'elaine', '||period||', '||period||', 'i', 'have', 'to', 'tell', 'you', 'something', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', 'no', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'no', 'no', 'no', 'no', 'no', 'no', 'no', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', "i'm", 'telling', 'ya', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'very', 'attracted', 'to', 'you', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'aye', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "i've", 'found', 'a', 'hair', '||exclammark||', '||exclammark||', '||exclammark||', 'yes', '||leftparen||', 'goes', 'up', 'to', 'the', 'video', 'machine', 'and', 'inserts', 'the', 'tape', '||rightparen||', 'hey', '||comma||', 'come', 'here', '||comma||', 'come', 'here', '||comma||', 'take', 'a', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'george:', 'ever', 'since', 'i', 'found', 'out', 'that', 'you', 'let', 'that', 'message', 'on', "jerry's", 'tape', 'recorder', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', 'that', 'was', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'was', 'a', 'joke', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||period||', '||period||', '||leftparen||', 'picks', 'up', 'the', 'walkman', '||rightparen||', 'oh', 'my', 'god', '||period||', '||period||', '||period||', 'oh', 'yeah', '||period||', '||period||', '||period||', '||period||', 'elaine', '||comma||', 'i', "can't", 'believe', 'that', 'that', 'is', 'you', '||period||', '||return||', '||return||', 'elaine:', 'aah', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'stares', 'at', 'the', 'three', 'of', 'them', 'all', 'lined', 'up', 'like', 'the', 'daltons', '||comma||', 'all', 'looking', 'at', 'her', 'with', 'lust', '||period||', '||rightparen||', 'i', 'think', "i'll", 'get', 'going', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'heuh', '||period||', 'huh', '||period||', 'stick', 'around', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', "it's", 'early', '||period||', '||return||', '||return||', 'kramer:', "we'll", 'order', 'chinese', '||period||', '||return||', '||return||', 'george:', "where'd", 'you', 'meet', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'met', 'her', 'on', 'an', 'elevator', '||period||', '||return||', '||return||', 'george:', 'on', 'an', 'elevator', '||questionmark||', 'you', 'met', 'a', 'woman', 'on', 'an', 'elevator', '||questionmark||', '||return||', '||return||', 'jerry:', 'impossible', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'got', 'less', 'than', 'sixty', 'seconds', '||period||', "that's", 'like', 'dismantling', 'a', 'time', 'bomb', '||period||', 'what', 'got', 'into', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'she', 'was', 'so', 'beautiful', '||comma||', 'it', 'was', 'like', 'a', 'pure', 'reflex', '||period||', 'the', 'words', 'just', 'came', 'out', 'of', 'my', 'mouth', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', "what'd", 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "i'm", 'the', 'one', 'responsible', 'for', 'those', 'crop', 'circles', 'in', 'england', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'believe', 'i', 'did', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'isabel:', 'what', 'crop', 'circles', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'a', 'good', 'sign', '||period||', '||return||', '||return||', 'george:', 'not', 'everybody', 'knows', 'what', 'the', 'crop', 'circles', 'are', '||period||', '||leftparen||', 'to', 'the', 'newsstand', 'owner', '||rightparen||', 'do', 'you', 'know', 'what', 'the', 'crop', 'circles', 'are', '||questionmark||', '||return||', '||return||', 'newsstand', 'owner:', 'crop', 'circles', '||questionmark||', 'why', "don't", 'you', 'buy', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'got', 'something', 'in', 'your', 'teeth', 'there', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'green', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'man', '||comma||', "it's", 'spinach', '||exclammark||', "i've", 'been', 'walking', 'around', 'like', 'this', 'all', 'afternoon', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'bump', 'into', 'anybody', 'you', 'knew', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'had', 'a', 'job', 'interview', '||period||', '||return||', '||return||', 'jerry:', "how'd", 'it', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'take', 'a', 'guess', '||period||', '||return||', '||return||', 'interviewer:', 'well', '||comma||', 'mr', '||period||', 'costanza', '||comma||', 'we', 'have', 'nothing', 'available', 'at', 'the', 'present', 'time', '||comma||', 'but', 'should', 'anything', 'open', 'up', '||comma||', "we'll", 'be', 'in', 'touch', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'need', 'a', 'job', '||comma||', 'you', 'got', 'audrey', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', "won't", 'think', "i'm", 'a', 'bad', 'person', '||questionmark||', '||return||', '||return||', 'jerry:', 'too', 'late', 'for', 'that', '||period||', '||return||', '||return||', 'george:', "'cause", 'believe', 'me', '||comma||', 'i', 'would', 'only', 'say', 'this', 'to', 'you', 'and', 'maybe', 'a', 'psychiatrist', '||comma||', 'maybe', '||period||', 'well', '||comma||', 'her', 'nose', 'is', 'a', 'little', 'big', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "she's", 'got', 'a', 'big', 'nose', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'big', 'would', 'even', 'be', 'ok', '||comma||', 'a', 'little', 'beyond', 'big', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'schnoz', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', "i'm", 'aware', 'that', 'my', 'own', 'physical', 'dimensions', 'are', 'perhaps', 'a', 'little', 'short', 'of', 'perfection', '||period||', '||return||', '||return||', 'jerry:', 'a', 'little', '||period||', '||return||', '||return||', 'george:', 'so', 'who', 'am', 'i', 'to', 'be', 'thinking', 'about', "someone's", 'nose', '||questionmark||', 'i', 'mean', '||comma||', 'i', 'should', 'be', 'grateful', 'someone', 'like', 'her', 'even', 'looks', 'at', 'me', '||period||', 'i', 'have', 'no', 'job', '||comma||', 'nothing', '||period||', 'but', 'i', 'have', 'to', 'say', '||comma||', 'i', 'think', 'about', 'the', 'nose', '||period||', 'i', "don't", 'want', 'to', 'think', 'about', 'the', 'nose', '||period||', 'i', "don't", 'ask', 'to', 'think', 'about', 'the', 'nose', '||comma||', 'but', 'i', 'think', 'about', 'it', '||period||', 'i', 'go', 'to', 'bed', 'at', 'night', '||comma||', 'i', 'tell', 'myself', '||comma||', "'don't", 'think', 'about', 'the', 'nose', '||comma||', 'forget', 'the', 'nose', '||comma||', "'", 'but', 'i', 'think', 'about', 'it', '||period||', 'i', 'look', 'at', 'her', '||comma||', 'i', 'see', 'nose', '||period||', '||return||', '||return||', 'jerry:', 'stop', 'being', 'so', 'concerned', 'with', 'looks', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'said', 'anything', 'to', 'her', 'about', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'could', 'never', 'do', 'that', '||period||', 'you', 'know', 'the', 'ironic', 'thing', 'is', 'if', 'she', 'had', 'a', 'smaller', 'nose', '||comma||', 'i', 'never', 'could', 'have', 'gone', 'out', 'with', 'her', 'in', 'the', 'first', 'place', '||period||', "she'd", 'be', 'out', 'of', 'my', 'league', 'with', 'a', 'smaller', 'nose', '||period||', 'and', 'i', 'really', 'like', 'her', '||comma||', 'i', 'know', 'that', '||period||', 'and', 'i', 'know', 'one', 'other', 'thing', '||period||', "i'm", 'not', 'getting', 'past', 'that', 'nose', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'shut', 'up', '||comma||', 'here', 'they', 'come', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'waving', '||rightparen||', 'how', 'can', 'i', 'not', 'think', 'about', 'it', '||questionmark||', 'look', 'at', 'the', 'size', 'of', 'this', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'so', 'my', "mother's", 'going', 'out', 'with', 'this', 'guy', 'who', 'leaves', 'a', 'jacket', 'in', 'her', 'house', 'so', '||comma||', 'you', 'know', '||comma||', 'she', 'gives', 'it', 'to', 'me', '||period||', 'well', '||comma||', 'two', 'years', 'later', 'he', 'shows', 'up', 'and', 'he', 'takes', 'it', 'back', '||period||', 'and', 'now', "he's", 'in', 'prison', '||period||', 'he', 'got', 'arrested', 'for', 'mail', 'fraud', '||period||', 'so', 'elaine', '||comma||', 'all', 'you', 'have', 'to', 'do', 'is', 'go', 'over', 'to', 'the', 'apartment', '||comma||', 'tell', 'the', 'landlord', 'that', "you're", 'his', 'daughter', 'and', 'you', 'want', 'to', 'bring', 'him', 'the', 'jacket', 'in', 'prison', '||period||', '||return||', '||return||', 'elaine:', "won't", 'the', 'landlord', 'know', "i'm", 'not', 'the', 'daughter', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'no', '||comma||', "he's", 'never', 'met', 'her', '||period||', "she's", 'in', 'california', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'coming', 'with', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', 'yeah', '||comma||', 'i', 'have', 'to', '||period||', "i'm", 'your', 'fianc', '||comma||', 'peter', 'von', 'nostrand', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'just', 'commit', 'yourself', 'already', '||questionmark||', '||return||', '||return||', 'audrey:', 'what', 'is', 'so', 'special', 'about', 'this', 'jacket', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'believes', 'it', 'possesses', 'some', 'extraordinary', 'power', 'over', 'women', '||period||', '||return||', '||return||', 'audrey:', "what's", 'the', 'smudge', 'on', 'your', 'hand', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'got', 'stamped', 'at', 'the', 'reggae', 'lounge', 'last', 'night', '||period||', 'yeah', '||comma||', "i'm", 'going', 'back', 'there', 'tonight', '||comma||', 'you', 'know', '||comma||', "i'm", 'not', 'gonna', 'pay', 'another', 'cover', 'charge', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "didn't", 'wash', 'all', 'day', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'washed', '||comma||', 'just', 'not', 'the', 'hand', '||period||', 'you', "wouldn't", 'believe', 'the', 'women', 'at', 'this', 'club', '||period||', 'ohh', '||comma||', 'man', '||period||', '||return||', '||return||', 'audrey:', "it's", 'amazing', 'how', 'many', 'beautiful', 'women', 'live', 'in', 'new', 'york', '||period||', 'i', 'actually', 'find', 'it', 'kind', 'of', 'intimidating', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'as', 'pretty', 'as', 'any', 'of', 'them', '||comma||', 'you', 'just', 'need', 'a', 'nose', 'job', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'could', 'you', 'say', 'something', 'like', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'what', 'do', 'you', 'mean', '||questionmark||', 'i', 'just', 'said', 'she', 'needs', 'a', 'nose', 'job', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', "there's", 'nothing', 'wrong', 'with', 'her', 'nose', '||exclammark||', "i'm", 'so', 'sorry', '||comma||', 'audrey', '||period||', '||return||', '||return||', 'audrey:', 'no', '||comma||', "it's", 'ok', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'have', 'to', 'say', 'that', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'just', 'trying', 'to', 'help', 'out', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'well', '||comma||', 'you', 'can', 'kiss', 'that', 'jacket', 'goodbye', '||comma||', 'mr', '||period||', 'von', 'nozzin', '||period||', '||return||', '||return||', 'kramer:', 'you', 'see', 'what', 'happens', 'when', 'you', 'try', 'to', 'be', 'nice', '||questionmark||', '||return||', '||return||', 'audrey:', 'elaine', 'said', 'i', 'could', 'stay', 'with', 'her', 'another', 'month', 'until', 'tina', 'gets', 'back', '||period||', 'what', 'are', 'you', 'thinking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'thinking', '||questionmark||', 'nothing', '||period||', 'what', 'could', 'i', 'possibly', 'be', 'thinking', '||questionmark||', '||return||', '||return||', 'audrey:', 'you', 'look', 'like', "you've", 'got', 'something', 'on', 'your', 'mind', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||comma||', 'right', '||period||', 'i', 'wish', 'i', 'had', 'something', 'on', 'my', 'mind', '||period||', '||leftparen||', 'pregnant', 'pause', '||rightparen||', 'so', 'how', 'about', 'that', 'kramer', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'audrey:', 'how', 'about', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'way', 'he', 'just', 'says', 'stuff', '||period||', '||return||', '||return||', 'audrey:', 'he', 'sure', 'does', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'yeah', '||comma||', "he's", 'quite', 'a', 'character', '||period||', '||return||', '||return||', 'audrey:', 'so', '||comma||', 'what', 'did', 'you', 'think', '||questionmark||', '||return||', '||return||', 'george:', 'about', 'the', 'pizza', '||questionmark||', '||return||', '||return||', 'audrey:', 'no', '||comma||', 'about', 'the', 'nose', 'job', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'nose', 'job', '||period||', 'i', "don't", 'know', '||comma||', 'what', 'did', 'you', 'think', '||questionmark||', '||return||', '||return||', 'audrey:', 'well', '||comma||', "i've", 'thought', 'about', 'it', '||comma||', 'but', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'another', 'pause', '||rightparen||', 'not', 'that', 'i', 'care', '||comma||', 'one', 'way', 'or', 'the', 'other', '||comma||', 'but', 'these', 'doctors', 'today', 'really', 'do', 'amazing', 'things', '||comma||', 'you', 'know', '||comma||', 'if', 'you', 'were', 'so', 'inclined', '||period||', 'and', 'again', '||comma||', "i'm", 'not', 'suggesting', '||period||', '||return||', '||return||', 'audrey:', 'i', 'know', '||comma||', "they're", 'good', '||period||', '||return||', '||return||', 'george:', 'peter', 'jennings', 'had', 'one', '||period||', '||return||', '||return||', 'audrey:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'probably', '||period||', 'they', 'all', 'do', '||period||', 'in', 'my', 'high', 'school', '||comma||', 'half', 'my', 'graduating', 'class', 'had', 'them', '||period||', 'of', 'course', '||comma||', "i'm", 'from', 'long', 'island', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'audrey:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', "it's", 'really', 'nothing', '||comma||', "it's", 'like', 'going', 'to', 'the', 'dentist', '||period||', '||return||', '||return||', 'audrey:', 'i', 'hate', 'the', 'dentist', '||period||', '||return||', '||return||', 'george:', "it's", 'a', 'cleaning', '||period||', '||return||', '||return||', 'audrey:', 'so', 'you', 'really', 'think', 'i', 'should', 'do', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'if', 'it', 'makes', 'you', 'happy', '||comma||', 'i', "don't", 'focus', 'on', 'these', 'things', '||period||', 'i', 'will', 'tell', 'you', 'this', 'unfortunately', '||comma||', 'we', 'live', 'in', 'a', 'very', 'superficial', 'society', '||period||', 'i', "don't", 'condone', 'it', '||comma||', 'but', "it's", 'a', 'fact', 'of', 'life', '||period||', '||return||', '||return||', 'audrey:', 'well', '||comma||', 'maybe', 'i', 'should', '||period||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'barging', 'in', '||rightparen||', 'aw', '||comma||', 'now', 'you', 'talked', 'her', 'into', 'getting', 'a', 'nose', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'me', '||questionmark||', 'i', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'you', 'encouraged', 'her', 'to', 'get', 'one', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'encourage', '||period||', 'no', 'encourage', '||period||', '||return||', '||return||', 'elaine:', 'peter', 'jennings', 'had', 'one', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'possible', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'think', 'you', 'should', 'accept', 'her', 'for', 'who', 'she', 'is', '||period||', '||return||', '||return||', 'audrey:', 'no', '||comma||', 'george', 'is', 'right', '||period||', 'i', 'want', 'to', 'get', 'one', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', "it's", 'a', 'mistake', '||period||', '||return||', '||return||', 'george:', 'me', 'too', '||comma||', 'really', '||period||', 'unless', "you'd", 'really', 'like', 'to', 'get', 'one', '||period||', '||return||', '||return||', 'george:', "i'm", 'going', 'straight', 'to', 'hell', '||comma||', 'no', 'two', 'ways', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'might', 'not', 'be', 'hell', 'but', "you're", 'gonna', 'run', 'into', 'some', 'bad', 'dudes', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'checking', 'his', 'watch', '||rightparen||', 'hey', '||comma||', "let's", 'get', 'the', 'check', '||comma||', "she's", 'taking', 'the', 'bandages', 'off', 'at', 'four', "o'clock", '||period||', '||return||', '||return||', 'jerry:', 'we', 'have', 'time', '||period||', '||return||', '||return||', 'george:', "it's", 'exciting', '||comma||', "isn't", 'it', '||questionmark||', "she's", 'gonna', 'have', 'a', 'whole', 'new', 'face', '||period||', '||return||', '||return||', 'jerry:', 'it', 'is', 'exciting', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||comma||', 'not', 'as', 'exciting', 'as', 'miss', 'crop', 'circles', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'please', '||comma||', 'please', '||comma||', 'isabel', '||questionmark||', 'she', 'is', 'the', 'most', 'despicable', 'woman', 'i', 'have', 'ever', 'met', 'in', 'my', 'life', '||period||', 'i', 'have', 'never', 'been', 'so', 'repulsed', 'by', 'someone', 'mentally', 'and', 'so', 'attracted', 'to', 'them', 'physically', 'at', 'the', 'same', 'time', '||period||', "it's", 'like', 'my', 'brain', 'is', 'facing', 'my', 'penis', 'in', 'a', 'chess', 'game', '||period||', 'and', "i'm", 'letting', 'him', 'win', '||period||', '||return||', '||return||', 'george:', "you're", 'not', 'letting', 'him', 'win', '||period||', 'he', 'wins', 'till', "you're", 'forty', '||period||', '||return||', '||return||', 'jerry:', 'then', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'still', 'wins', 'but', "it's", 'not', 'a', 'blowout', '||period||', '||return||', '||return||', 'jerry:', 'she', 'wants', 'to', 'be', 'an', 'actress', '||period||', 'she', 'makes', 'me', 'read', 'these', 'moronic', 'acting', 'scenes', 'with', 'her', '||comma||', 'and', 'i', 'do', 'it', 'because', "i'm", 'so', 'addicted', 'to', 'the', 'sex', '||comma||', "i'm", 'helpless', '||comma||', "i'll", 'do', 'anything', '||period||', 'so', 'finally', 'kramer', 'comes', 'in', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'holding', 'up', 'a', 'piece', 'of', 'paper', '||rightparen||', 'i', "don't", 'want', 'to', 'see', 'this', 'woman', 'anymore', 'but', 'i', "haven't", 'got', 'the', 'will', 'power', 'to', 'throw', 'out', 'her', 'number', '||period||', 'please', '||comma||', 'help', 'me', '||period||', 'help', 'me', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taking', 'the', 'paper', 'and', 'tearing', 'it', 'to', 'pieces', '||rightparen||', "i'm", 'proud', 'of', 'you', '||period||', '||return||', '||return||', 'jerry:', 'so', "i'm", 'never', 'gonna', 'see', 'her', 'again', '||comma||', "i'm", 'going', 'cold', 'turkey', '||period||', '||return||', '||return||', 'george:', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', '||comma||', 'the', 'sex', '||period||', '||period||', '||period||', 'i', 'mean', '||comma||', 'i', 'was', 'like', 'an', 'animal', '||period||', 'i', 'mean', 'it', 'was', 'just', 'completely', 'uninhibited', '||period||', '||return||', '||return||', 'george:', "it's", 'like', 'going', 'to', 'the', 'bathroom', 'in', 'front', 'of', 'a', 'lot', 'of', 'people', 'and', 'not', 'caring', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'like', 'that', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'even', 'know', 'the', 'jacket', 'is', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', "don't", '||comma||', "i'm", 'guessing', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'look', '||comma||', 'audrey', '||comma||', 'before', 'you', 'take', 'the', 'bandage', 'off', 'just', 'remember', 'that', 'i', 'was', 'the', 'one', 'that', 'encouraged', 'you', 'to', 'do', 'this', '||comma||', 'you', 'know', '||questionmark||', 'now', 'that', "you're", 'gonna', 'be', 'a', 'great', 'beauty', '||comma||', "let's", 'not', 'forget', 'how', 'this', 'all', 'began', '||period||', 'you', 'know', '||comma||', 'like', 'if', "you'd", 'listened', 'to', 'your', 'friend', '||comma||', 'elaine', '||comma||', '||return||', '||return||', 'audrey:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'audrey:', 'enough', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'are', 'we', 'ready', '||questionmark||', 'come', 'on', '||comma||', "let's", 'get', 'this', 'show', 'on', 'the', 'road', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'sure', 'you', 'want', 'us', 'here', 'for', 'this', '||questionmark||', '||return||', '||return||', 'audrey:', 'yes', '||period||', '||return||', '||return||', 'jerry:', "shouldn't", 'a', 'doctor', 'do', 'it', '||questionmark||', '||return||', '||return||', 'audrey:', 'no', '||comma||', 'he', 'said', 'i', 'could', 'do', 'it', '||period||', 'okay', '||comma||', 'here', 'goes', '||period||', '||return||', '||return||', 'george:', 'very', 'exciting', '||comma||', 'very', 'exciting', '||comma||', "it's", 'like', 'watching', 'a', 'birth', '||period||', '||return||', '||return||', 'elaine:', 'it', 'looks', 'good', '||period||', '||return||', '||return||', 'jerry:', 'great', 'job', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'butchered', '||period||', '||return||', '||return||', 'jerry:', "let's", 'put', 'him', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'a', 'fleeing', 'audrey', '||rightparen||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'audrey:', '||leftparen||', 'with', 'hand', 'covering', 'nose', '||rightparen||', 'to', 'the', 'doctor', '||exclammark||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', "i'll", 'go', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'how', 'ya', 'feeling', '||questionmark||', '||return||', '||return||', 'george:', 'too', 'much', 'salt', 'in', 'my', 'diet', '||period||', '||return||', '||return||', 'elaine:', 'can', 'i', 'get', 'you', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', "i'm", 'good', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sure', '||questionmark||', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'mmm', '||comma||', 'no', '||period||', 'boy', '||comma||', 'it', 'really', "didn't", 'come', 'out', 'too', 'well', '||comma||', 'did', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'it', "didn't", '||period||', 'no', '||comma||', 'it', "didn't", '||period||', '||return||', '||return||', 'george:', "it's", 'like', '||comma||', 'all', 'dented', '||period||', '||return||', '||return||', 'elaine:', 'seems', 'to', 'be', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'sure', "they'll", 'be', 'able', 'to', 'fix', 'it', '||period||', 'you', "can't", 'stop', 'modern', 'science', '||period||', "can't", 'stop', 'it', '||comma||', 'you', "can't", 'stop', 'it', '||period||', "can't", 'stop', 'science', '||period||', "can't", 'be', 'stopped', '||comma||', 'no', 'way', '||comma||', 'no', 'how', '||comma||', 'science', 'just', 'marches', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'shut', 'up', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'shut', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'interesting', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'kramer', '||comma||', 'seriously', '||comma||', 'give', 'me', 'her', 'number', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'have', 'it', '||comma||', 'i', 'threw', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', "you're", 'lying', '||exclammark||', 'you', 'got', 'it', '||comma||', 'i', 'want', 'that', 'number', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', '||comma||', 'i', 'threw', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'give', 'it', 'to', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'told', 'me', 'not', 'to', 'give', 'it', 'to', 'you', '||comma||', 'you', 'made', 'me', 'promise', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'changed', 'my', 'mind', '||comma||', 'i', 'want', 'that', 'number', '||period||', '||return||', '||return||', 'kramer:', 'you', 'said', '||comma||', 'no', 'matter', 'what', 'you', 'do', 'or', 'say', '||comma||', "i'm", 'not', 'to', 'give', 'you', 'the', 'number', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'lying', '||comma||', 'give', 'it', 'to', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'you', 'told', 'me', 'not', 'to', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'want', 'that', 'number', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||exclammark||', '||leftparen||', 'flinging', 'pieces', 'of', 'torn', 'paper', 'to', 'the', 'ground', '||rightparen||', 'yeah', '||exclammark||', 'yeah', '||exclammark||', 'yeah', '||exclammark||', '||leftparen||', 'jerry', 'falls', 'to', 'the', 'floor', 'and', 'starts', 'arranging', 'pieces', '||rightparen||', 'look', 'at', 'you', '||exclammark||', 'look', 'at', 'what', "you've", 'sunk', 'to', '||exclammark||', 'look', 'at', 'what', "you've", 'become', '||exclammark||', 'look', 'in', 'the', 'mirror', '||comma||', 'cause', 'you', 'need', 'help', '||comma||', 'jerry', '||period||', 'you', 'need', 'help', '||comma||', 'because', 'i', "can't", 'stand', 'by', 'and', 'do', 'it', 'anymore', '||period||', "it's", 'turning', 'my', 'stomach', '||exclammark||', 'i', "can't", 'stand', 'around', 'here', 'watching', 'you', 'destroy', 'yourself', '||period||', "it's", 'eating', 'me', 'up', 'inside', '||exclammark||', '||return||', '||return||', 'audrey:', 'the', 'doctor', 'said', 'that', 'they', 'need', 'to', 'build', 'the', 'lateral', 'wall', 'of', 'the', 'septum', '||period||', 'over', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'audrey:', 'you', 'see', 'this', 'perinasal', 'sinus', 'cavity', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'audrey:', 'you', 'see', 'how', "it's", 'collapsing', '||questionmark||', "that's", "what's", 'causing', 'this', 'huge', 'dent', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'phew', '||period||', '||return||', '||return||', 'audrey:', 'so', 'anyway', '||comma||', 'george', '||comma||', 'do', 'you', 'know', 'what', 'i', 'was', 'thinking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'audrey:', 'remember', 'we', 'talked', 'about', 'taking', 'a', 'trip', 'together', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'did', '||questionmark||', '||return||', '||return||', 'audrey:', 'yeah', '||comma||', 'we', 'talked', 'about', 'going', 'to', 'hawaii', '||questionmark||', '||return||', '||return||', 'george:', 'hawaii', '||questionmark||', '||return||', '||return||', 'audrey:', 'anyway', '||comma||', 'i', 'think', 'it', 'would', 'be', 'great', 'to', 'get', 'away', 'after', 'all', 'this', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'removing', 'his', 'glasses', '||rightparen||', 'you', 'know', '||comma||', 'hawaii', 'could', 'be', 'a', 'little', 'tricky', 'right', 'now', '||comma||', "there's", 'a', 'lot', 'of', 'high', 'pressure', 'winds', 'down', 'there', 'this', 'time', 'of', 'year', '||comma||', "there's", 'a', 'lot', 'of', 'debris', 'constantly', 'flying', 'around', '||period||', 'wood', '||comma||', 'and', 'uh', '||comma||', 'lava', '||comma||', 'pretty', 'dangerous', '||period||', '||return||', '||return||', 'audrey:', 'i', 'never', 'heard', 'that', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||period||', 'my', 'friend', 'lived', 'there', '||period||', '||return||', '||return||', 'audrey:', 'we', 'could', 'go', 'to', 'the', 'caribbean', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'have', 'to', 'tell', 'you', 'something', '||period||', 'you', "couldn't", 'get', 'me', 'on', 'a', 'plane', 'right', 'now', '||period||', 'i', 'get', 'those', 'faa', 'reports', 'directly', '||period||', 'my', 'uncle', 'sends', 'them', 'to', 'me', '||comma||', 'he', 'used', 'to', 'be', 'a', 'pilot', '||comma||', 'so', '||period||', 'big', 'investigation', 'in', 'the', '||comma||', 'uh', '||comma||', "what's", 'the', 'word', 'there', '||comma||', 'uh', '||comma||', 'offing', '||period||', "it's", 'in', 'the', 'offing', '||period||', 'but', '||comma||', 'you', 'know', '||comma||', 'you', "shouldn't", 'let', 'that', 'stop', 'you', 'from', 'going', '||period||', 'you', 'could', 'go', '||period||', 'i', "don't", 'mind', '||period||', '||return||', '||return||', 'audrey:', 'george', '||comma||', 'i', "don't", 'think', 'this', 'is', 'working', '||period||', '||return||', '||return||', 'isabel:', 'ever', 'since', 'you', 'came', 'back', 'from', 'the', 'army', '||comma||', "you've", 'changed', '||period||', 'i', 'swear', 'nelson', '||comma||', 'i', "don't", 'even', 'know', 'who', 'you', 'are', 'anymore', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'nelson', '||exclammark||', '||return||', '||return||', 'isabel:', "that's", 'not', 'the', 'line', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||comma||', "i'm", 'sorry', '||period||', '||leftparen||', 'reading', '||rightparen||', "nothing's", 'changed', '||comma||', 'alma', '||comma||', 'i', 'just', 'need', 'more', 'time', '||period||', '||return||', '||return||', 'isabel:', 'i', 'swear', '||comma||', 'nelson', '||comma||', 'sometimes', 'at', 'night', '||comma||', 'when', "you're", 'not', 'around', '||comma||', 'i', 'just', 'go', 'crazy', 'thinking', 'about', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'just', 'need', 'to', 'relax', '||period||', 'maybe', 'a', 'hobby', '||comma||', 'bowling', 'is', 'fun', '||period||', '||return||', '||return||', 'isabel:', 'yeah', '||comma||', "bowling's", 'good', 'if', "you're", 'really', 'gross', 'and', 'ugly', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', 'uh', 'oh', '||period||', 'my', 'organs', 'are', 'playing', 'chess', 'again', '||period||', '||return||', '||return||', "jerry's", 'brain:', 'well', "i'm", 'getting', 'a', 'little', 'tired', 'of', 'this', '||period||', 'what', 'do', 'you', 'say', 'we', 'play', 'one', 'for', 'all', 'the', 'marbles', '||questionmark||', '||return||', '||return||', "jerry's", 'penis:', 'oh', 'brain', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'you', 'cannot', 'beat', 'me', '||period||', 'do', 'you', 'have', 'any', 'idea', 'who', "you're", 'dealing', 'with', '||questionmark||', 'forget', 'about', 'it', '||exclammark||', '||return||', '||return||', "jerry's", 'brain:', 'i', "can't", 'take', 'her', 'anymore', '||period||', 'i', 'hate', 'reading', 'her', 'stupid', 'little', 'acting', 'scenes', '||period||', '||return||', '||return||', "jerry's", 'penis:', 'oh', '||comma||', 'so', 'what', '||questionmark||', 'so', 'you', 'read', 'from', 'a', 'little', 'play', '||period||', 'you', "can't", 'put', 'up', 'with', 'that', 'for', 'an', 'hour', 'to', 'make', 'me', 'happy', '||questionmark||', "you're", 'so', 'selfish', '||period||', 'give', 'me', 'one', 'hour', '||comma||', 'then', 'i', 'will', 'take', 'over', '||comma||', 'you', 'will', 'not', 'have', 'to', 'think', 'for', 'the', 'rest', 'of', 'the', 'night', '||period||', '||return||', '||return||', "jerry's", 'brain:', 'what', 'about', 'tomorrow', 'morning', '||questionmark||', 'do', 'you', 'have', 'any', 'idea', 'what', "that's", 'like', 'for', 'me', '||questionmark||', 'do', 'you', 'care', '||questionmark||', 'no', '||comma||', 'you', "don't", 'care', '||period||', 'so', 'long', 'as', 'you', 'get', 'to', 'do', 'whatever', 'it', 'is', 'you', 'do', '||period||', 'you', 'disgust', 'me', '||period||', '||return||', '||return||', "jerry's", 'penis:', 'oh', '||comma||', 'go', 'read', 'a', 'book', '||period||', '||return||', '||return||', "jerry's", 'brain:', 'enough', 'chatting', '||comma||', "let's", 'play', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'the', 'only', 'reason', "i'm", 'doing', 'this', 'is', 'because', 'you', 'took', 'audrey', 'to', 'the', 'hospital', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'filling', 'a', 'pipe', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'ok', '||comma||', 'now', 'uh', '||comma||', "you're", 'clear', '||comma||', 'you', 'got', 'everything', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'wait', 'wait', 'wait', 'wait', '||period||', '||leftparen||', 'putting', 'a', 'ring', 'on', "elaine's", 'finger', '||rightparen||', 'here', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'i', 'need', 'this', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "we're", 'engaged', '||period||', '||return||', '||return||', 'elaine:', "we're", 'engaged', '||questionmark||', '||return||', '||return||', 'kramer:', 'um', 'hm', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'this', 'is', 'too', 'big', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'lighting', 'his', 'pipe', '||rightparen||', "it's", 'my', "mom's", '||period||', '||return||', '||return||', 'landlord:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'uh', '||comma||', 'hi', '||period||', "i'm", 'wanda', 'pepper', '||comma||', "i'm", 'albert', "pepper's", 'daughter', '||period||', 'my', 'father', 'asked', 'me', 'to', 'come', 'here', 'and', 'pick', 'up', 'his', 'jacket', 'for', 'him', '||period||', '||return||', '||return||', 'landlord:', 'oh', '||comma||', 'hello', 'miss', 'pepper', '||comma||', "it's", 'a', 'pleasure', 'to', 'meet', 'you', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'and', 'you', 'must', 'be', 'professor', 'von', 'nostrand', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', 'i', 'am', '||period||', '||return||', '||return||', 'landlord:', "i've", 'read', 'your', 'book', '||comma||', 'professor', '||comma||', 'and', 'i', 'was', 'quite', 'intrigued', 'by', 'it', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yes', '||period||', 'well', '||comma||', "it's", '||comma||', 'uh', '||comma||', 'very', 'intriguing', '||period||', '||return||', '||return||', 'landlord:', 'tell', 'me', '||comma||', 'is', 'it', 'your', 'contention', 'that', 'shakespeare', 'was', 'an', 'imposter', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'contention', '||questionmark||', '||return||', '||return||', 'landlord:', 'yes', '||comma||', 'your', 'contention', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', "that's", 'my', 'contention', '||period||', '||return||', '||return||', 'elaine:', 'i', 'heard', 'him', 'contend', 'that', '||period||', '||return||', '||return||', 'landlord:', "it's", 'too', 'bad', 'about', 'your', 'father', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'it', 'was', 'a', 'frame', '||dash||', 'up', '||period||', '||return||', '||return||', 'landlord:', 'a', 'fine', 'man', '||comma||', 'he', 'spoke', 'often', 'of', 'you', '||period||', "he's", 'very', 'proud', 'of', 'the', 'work', "you're", 'doing', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', "we're", 'all', 'proud', 'of', 'the', 'work', "i'm", 'doing', '||period||', '||return||', '||return||', 'kramer:', 'she', 'does', 'fine', 'work', '||period||', '||return||', '||return||', 'landlord:', 'your', 'father', 'gave', 'me', 'strict', 'orders', 'not', 'to', 'turn', 'the', 'jacket', 'over', 'to', 'anyone', '||comma||', 'but', 'i', 'suppose', 'i', 'can', 'make', 'an', 'exception', 'in', 'your', 'case', '||period||', 'the', "closet's", 'this', 'way', '||period||', '||return||', '||return||', 'elaine:', 'how', 'kind', 'of', 'you', '||period||', '||return||', '||return||', 'landlord:', 'you', 'know', '||comma||', 'your', 'father', 'has', 'a', 'very', 'extensive', 'wardrobe', '||period||', '||return||', '||return||', "jerry's", 'brain:', "what's", 'the', 'matter', '||comma||', 'fella', '||questionmark||', 'you', 'look', 'a', 'little', 'tired', '||period||', 'ha', 'ha', 'ha', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'isabel:', 'nelson', '||comma||', "don't", 'you', 'see', '||questionmark||', 'you', 'are', 'a', 'part', 'of', 'me', '||comma||', 'and', 'i', '||comma||', 'i', 'am', 'a', 'part', 'of', 'you', '||period||', '||return||', '||return||', "jerry's", 'penis:', "it's", 'killing', 'me', '||period||', '||leftparen||', 'makes', 'a', 'move', '||rightparen||', '||return||', '||return||', "jerry's", 'brain:', "that's", 'your', 'move', '||questionmark||', '||return||', '||return||', "jerry's", 'penis:', 'yeah', '||period||', '||return||', '||return||', "jerry's", 'brain:', 'well', "that's", 'trouble', '||comma||', 'my', 'friend', '||period||', "that's", 'big', 'trouble', '||period||', 'checkmate', '||exclammark||', '||return||', '||return||', "jerry's", 'penis:', '||leftparen||', 'beginning', 'to', 'cough', 'and', 'struggle', '||rightparen||', 'getting', 'weak', '||period||', '||period||', '||period||', 'losing', 'power', '||period||', '||period||', '||period||', 'you', "haven't", 'seen', 'the', 'last', 'of', 'me', '||period||', "i'll", 'be', 'back', '||period||', "you're", 'nothing', 'without', 'me', '||period||', 'nothing', '||exclammark||', '||return||', '||return||', "jerry's", 'brain:', '||leftparen||', 'before', 'disappearing', 'himself', '||rightparen||', 'punk', '||period||', '||return||', '||return||', 'jerry:', 'isabel', '||comma||', 'uh', '||comma||', 'i', "don't", 'think', 'this', 'is', 'working', '||period||', '||return||', '||return||', 'elaine:', 'daddy', 'certainly', 'does', 'have', 'an', 'extensive', 'wardrobe', '||period||', '||return||', '||return||', 'landlord:', 'he', 'is', 'a', 'fine', 'dresser', 'and', "i'm", 'sure', 'i', "don't", 'have', 'to', 'tell', 'you', "he's", 'quite', 'popular', 'with', 'the', 'ladies', '||period||', '||return||', '||return||', 'elaine:', 'my', 'father', '||comma||', 'really', '||questionmark||', 'i', 'had', 'no', 'idea', '||period||', '||return||', '||return||', 'landlord:', 'yes', '||comma||', "they're", 'crazy', 'about', 'him', '||period||', 'there', 'was', 'one', 'in', 'particular', '||comma||', 'came', 'around', 'about', 'two', 'years', 'ago', '||comma||', 'looked', 'a', 'lot', 'like', 'you', '||comma||', 'professor', '||period||', 'could', 'have', 'been', 'your', 'mother', '||period||', 'what', 'was', 'her', 'name', 'again', '||questionmark||', 'carter', '||questionmark||', 'kramer', '||exclammark||', "that's", 'it', '||comma||', 'babs', '||return||', '||return||', 'kramer:', 'you', "don't", 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'found', 'it', '||exclammark||', '||return||', '||return||', 'landlord:', 'the', 'woman', 'used', 'to', 'walk', 'around', 'here', 'half', 'naked', '||comma||', 'sucking', 'colt', '45', 'from', 'a', 'can', '||period||', 'her', 'big', 'fat', 'stomach', 'hanging', 'out', '||comma||', 'orthopedic', 'hose', 'up', 'to', 'her', 'knees', '||comma||', 'screaming', 'down', 'the', 'hall', '||comma||', '||quotemark||', 'come', 'back', 'to', 'bed', '||comma||', 'albert', '||comma||', 'you', 'big', 'hairy', 'ape', '||comma||', 'and', 'bring', 'back', 'that', 'box', 'of', 'danish', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', 'so', 'i', 'grabbed', 'the', 'guy', 'by', 'the', 'collar', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'and', 'i', 'yelled', 'out', '||comma||', 'kramer', '||exclammark||', 'kramer', '||comma||', "you're", 'killing', 'him', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'assume', 'the', 'jig', 'was', 'up', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'pretty', 'much', '||period||', '||return||', '||return||', 'audrey:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'audrey:', '||leftparen||', 'to', 'george', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smitten', '||rightparen||', 'audrey', '||questionmark||', 'my', 'god', '||comma||', 'you', 'look', 'incredible', '||exclammark||', 'i', "can't", 'believe', 'it', '||exclammark||', '||return||', '||return||', 'audrey:', '||leftparen||', 'motioning', 'to', 'kramer', '||rightparen||', 'well', '||comma||', 'it', 'was', 'his', 'doctor', '||period||', 'he', 'was', 'wonderful', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'will', 'i', 'see', 'you', 'later', 'tonight', '||questionmark||', '||return||', '||return||', 'audrey:', 'not', 'sure', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'rising', 'and', 'putting', 'his', 'arm', 'around', "audrey's", 'shoulder', '||rightparen||', 'well', '||comma||', "i'll", 'check', 'you', 'guys', 'out', 'later', '||period||', '||leftparen||', 'to', 'audrey', '||rightparen||', 'ready', '||questionmark||', '||return||', '||return||', 'audrey:', '||leftparen||', 'holding', 'up', 'her', 'hand', 'to', 'show', 'the', 'stamp', '||rightparen||', 'i', "didn't", 'wash', '||period||', '||return||', '||return||', 'kramer:', 'neither', 'did', 'i', '||period||', "we're", 'off', 'to', 'the', 'reggae', 'lounge', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'after', 'they', 'leave', '||rightparen||', "isn't", 'she', 'beautiful', '||questionmark||', 'her', 'nose', 'is', 'in', 'such', 'perfect', 'proportion', 'with', 'the', 'rest', 'of', 'her', 'face', '||period||', "she's", 'breathtaking', '||exclammark||', 'who', 'would', 'have', 'though', "she's", 'like', '||dash||', '||dash||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupting', '||rightparen||', 'elaine', '||period||', 'shut', 'up', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'get', 'fleas', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'my', "cousin's", 'imbecile', 'dog', 'was', 'rolling', 'around', 'outside', 'and', 'they', 'got', 'in', 'his', 'carpet', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'can', 'get', 'yourself', 'a', 'little', 'bowtie', 'flea', 'collar', '||period||', '||return||', '||return||', 'george:', "that's", 'not', 'funny', '||period||', 'so', '||comma||', 'are', 'you', 'coming', 'to', 'the', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', "i'd", 'go', '||comma||', 'but', 'long', 'island', '||comma||', "it's", 'so', 'far', 'out', '||comma||', 'it', 'smacks', 'of', 'desperation', '||period||', 'the', 'whole', 'party', '||comma||', "everyone's", 'gonna', 'be', 'saying', 'to', 'me', '||comma||', '||quotemark||', 'you', 'came', 'all', 'the', 'way', 'out', 'from', 'manhattan', 'for', 'this', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', 'you', 'know', "ava's", 'gonna', 'be', 'there', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'nice', 'one', 'that', 'works', 'in', 'my', 'office', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||period||', '||return||', '||return||', 'george:', "i'll", 'drive', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||comma||', 'now', "you're", 'talking', '||period||', '||return||', '||return||', 'george:', "it's", 'supposed', 'to', 'be', 'a', 'good', 'party', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'that', 'mean', '||comma||', 'good', 'dip', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "there'll", 'be', 'girls', 'there', '||period||', '||return||', '||return||', 'jerry:', "there's", 'girls', 'everywhere', '||period||', 'i', 'go', 'out', 'of', 'my', 'apartment', '||comma||', "there's", 'girls', 'in', 'the', 'elevator', '||period||', "they're", 'in', 'cafeterias', '||comma||', 'subways', '||comma||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', "there's", 'a', 'hundred', 'different', 'things', 'here', '||period||', "what's", 'the', 'difference', 'between', 'these', 'two', '||questionmark||', '||leftparen||', 'they', 'each', 'grab', 'a', 'box', 'and', 'check', 'the', 'ingredients', '||rightparen||', 'you', 'got', 'propylparabin', '||questionmark||', '||return||', '||return||', 'jerry:', 'got', 'it', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'isobutane', '||dash||', '30', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'isobutane', '||dash||', '20', '||period||', '||return||', '||return||', 'george:', 'a', '||dash||', 'ha', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'sorbitant', 'sesquioliate', '||questionmark||', '||return||', '||return||', 'george:', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'aloe', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'got', 'aloe', '||questionmark||', 'i', 'love', 'aloe', '||period||', '||return||', '||return||', 'jerry:', 'where', 'do', 'they', 'make', 'yours', '||questionmark||', '||return||', '||return||', 'george:', 'jersey', '||period||', '||return||', '||return||', 'jerry:', 'white', 'plains', '||period||', '||return||', '||return||', 'jerry:', 'girls', '||period||', "there's", 'girls', 'right', 'here', 'in', 'the', 'store', '||period||', 'look', '||comma||', 'look', '||comma||', "there's", 'one', 'over', 'there', '||period||', 'look', '||comma||', "there's", 'another', 'one', '||period||', 'soon', 'as', 'i', 'walk', 'outside', "there'll", 'be', 'girls', 'out', 'there', '||period||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'gave', 'her', 'a', 'twenty', '||comma||', 'she', 'only', 'gave', 'me', 'change', 'for', 'a', 'ten', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', 'oh', 'boy', '||comma||', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'cashier', '||rightparen||', 'excuse', 'me', '||comma||', 'i', 'gave', 'you', 'a', 'twenty', 'dollar', 'bill', 'and', 'you', 'only', 'actually', 'gave', 'me', 'change', 'for', 'a', 'ten', '||period||', '||return||', '||return||', 'cashier:', 'you', 'gave', 'me', 'a', 'ten', '||period||', '||return||', '||return||', 'george:', "i'm", 'positive', 'i', 'gave', 'you', 'a', 'twenty', '||period||', '||return||', '||return||', 'cashier:', 'i', 'know', 'what', 'you', 'gave', 'me', '||period||', '||return||', '||return||', 'george:', 'you', 'owe', 'me', 'ten', 'dollars', '||period||', '||return||', '||return||', 'cashier:', 'will', 'you', 'please', 'step', 'aside', '||questionmark||', 'next', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', "let's", 'just', 'examine', 'the', 'situation', 'for', 'a', 'second', '||period||', 'who', '||comma||', 'in', 'this', 'situation', '||comma||', 'would', 'be', 'more', 'likely', 'to', 'make', 'a', 'mistake', '||questionmark||', 'me', '||comma||', 'who', 'had', 'access', 'to', 'my', 'wallet', '||comma||', 'knew', 'exactly', 'what', 'was', 'in', 'there', '||questionmark||', 'or', 'you', '||dash||', '||dash||', '||return||', '||return||', 'cashier:', 'you', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'see', "you're", 'not', 'really', 'listening', '||period||', '||return||', '||return||', 'security', 'guard:', "what's", 'the', 'problem', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'problem', '||period||', "there's", 'no', 'problem', '||period||', 'she', 'just', 'owes', 'me', 'ten', 'dollars', '||comma||', "that's", 'all', '||period||', '||return||', '||return||', 'cashier:', "he's", 'claiming', 'short', '||period||', '||return||', '||return||', 'security', 'guard:', 'alright', '||comma||', "let's", 'just', 'take', 'it', 'outside', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'so', 'you', "don't", 'believe', 'me', 'either', '||questionmark||', '||return||', '||return||', 'security', 'guard:', 'come', 'on', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'you', "haven't", 'won', '||period||', 'you', 'may', 'think', "you've", 'won', '||comma||', 'but', 'you', "haven't", 'won', '||period||', 'do', 'you', 'know', 'why', '||questionmark||', "it's", 'not', 'over', '||period||', 'this', 'is', 'not', 'over', '||period||', "i'm", 'not', 'forgetting', "what's", 'happening', 'here', '||period||', 'you', 'have', 'my', 'ten', 'dollars', '||period||', 'i', 'will', 'get', 'it', 'back', '||period||', 'alright', '||comma||', "don't", 'worry', '||period||', "it's", 'not', 'over', '||period||', "i'm", 'going', 'now', '||period||', 'good', 'bye', '||period||', 'i', 'will', 'be', 'back', '||period||', '||return||', '||return||', 'elaine:', 'well', "don't", 'stand', 'here', '||comma||', "let's", 'walk', 'in', '||comma||', 'blend', 'in', '||comma||', 'blend', 'in', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "let's", 'survey', 'first', '||period||', 'camp', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'waving', 'eva', '||period||', '||return||', '||return||', 'jerry:', 'what', 'could', 'possess', 'anyone', 'to', 'throw', 'a', 'party', '||questionmark||', 'i', 'mean', '||comma||', 'to', 'have', 'a', 'bunch', 'of', 'strangers', 'treat', 'your', 'house', 'like', 'a', 'hotel', 'room', '||period||', '||return||', '||return||', 'ava:', 'so', '||comma||', 'guess', 'who', 'just', 'sold', '129', 'west', '81st', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', 'you', "didn't", '||period||', 'get', 'out', '||comma||', 'when', '||questionmark||', '||return||', '||return||', 'ava:', 'yesterday', '||return||', '||return||', 'george:', 'i', "don't", 'believe', 'it', '||period||', '||return||', '||return||', 'ava:', 'ask', 'mark', '||period||', '||return||', '||return||', 'george:', 'mark', '||comma||', 'is', 'this', 'true', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'this', 'has', 'got', 'disaster', 'written', 'all', 'over', 'it', '||period||', '||return||', '||return||', 'elaine:', 'how', 'did', 'i', 'ever', 'let', 'you', 'talk', 'me', 'into', 'this', '||comma||', 'i', 'must', 'have', 'been', 'out', 'of', 'my', 'mind', '||period||', '||return||', '||return||', 'jerry:', 'now', 'listen', '||comma||', "let's", 'keep', 'an', 'eye', 'on', 'each', 'other', 'tonight', '||period||', 'in', 'case', 'one', 'of', 'us', 'gets', 'in', 'a', 'bad', 'conversation', '||comma||', 'we', 'should', 'have', 'a', 'signal', 'that', "you're", 'in', 'trouble', 'so', 'the', 'other', 'one', 'can', 'get', 'us', 'out', 'of', 'it', '||period||', '||return||', '||return||', 'elaine:', 'how', 'old', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'thirty', '||dash||', 'six', '||period||', "what's", 'the', 'signal', '||questionmark||', 'howbout', 'this', '||questionmark||', 'chicken', 'wing', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'got', 'a', 'better', 'one', '||period||', 'head', 'patting', '||period||', '||return||', '||return||', 'elaine:', 'whatever', 'you', 'want', '||period||', '||return||', '||return||', 'guy:', 'you', 'came', 'all', 'the', 'way', 'out', 'from', 'manhattan', 'for', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', 'i', 'did', '||period||', '||return||', '||return||', 'guy:', 'so', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'patting', 'his', 'head', "i'm", 'a', 'comedian', '||period||', '||return||', '||return||', 'guy:', 'are', 'you', '||questionmark||', 'lemme', 'ask', 'you', 'something', '||period||', 'where', 'do', 'you', 'get', 'your', 'material', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'patting', '||rightparen||', 'i', 'hear', 'a', 'voice', '||period||', '||return||', '||return||', 'guy:', 'what', 'kind', 'of', 'voice', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', "man's", 'voice', '||comma||', 'but', 'he', 'speaks', 'in', 'german', 'so', 'i', 'have', 'to', 'get', 'a', 'translator', '||period||', '||return||', '||return||', 'guy:', 'how', 'come', 'you', 'keep', 'tapping', 'your', 'head', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'nervous', 'tic', '||period||', "i'm", 'on', 'l', '||dash||', 'dopa', '||period||', '||return||', '||return||', 'guy:', 'on', 'the', 'other', 'hand', '||comma||', 'you', 'take', 'a', 'guy', 'like', 'george', 'washington', 'carver', '||period||', 'the', 'man', 'devoted', 'his', 'whole', 'life', 'to', 'the', 'peanut', '||period||', 'imagine', 'having', 'so', 'much', 'passion', 'for', 'something', '||period||', '||return||', '||return||', 'guy:', 'ya', 'know', '||comma||', 'people', 'tell', 'me', "i'm", 'a', 'funny', 'guy', '||period||', '||return||', '||return||', 'guy:', "i've", 'often', 'wondered', 'if', 'he', 'ever', 'worked', 'with', 'the', 'pecan', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'guy:', 'now', 'is', 'that', 'considered', 'a', 'nut', '||comma||', 'because', 'i', 'know', 'the', 'cashew', 'is', 'a', 'legume', '||period||', '||return||', '||return||', 'george:', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'great', '||comma||', 'how', 'about', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', "what's", 'happening', 'here', '||period||', 'she', "hasn't", 'taken', 'her', 'hands', 'off', 'me', 'all', 'night', '||period||', 'she', 'was', 'always', 'friendly', 'around', 'the', 'office', '||comma||', 'but', 'that', 'was', 'it', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'account', 'for', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'maybe', 'a', 'safe', 'fell', 'on', 'her', 'head', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'she', 'obviously', 'liked', 'you', 'all', 'along', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'would', 'have', 'picked', 'up', 'on', 'it', '||period||', 'i', 'can', 'always', 'tell', 'when', 'a', 'woman', 'likes', 'me', '||comma||', 'they', 'always', 'somehow', 'let', 'you', 'know', '||period||', 'with', 'me', '||comma||', 'they', 'could', 'torture', 'me', '||comma||', 'i', "wouldn't", 'tell', 'them', '||period||', 'if', 'anything', "i'd", 'try', 'to', 'make', 'them', 'think', 'i', "don't", 'like', 'them', '||comma||', 'then', 'they', 'think', '||comma||', '||quotemark||', 'oh', '||comma||', 'look', 'at', 'this', 'guy', '||comma||', "he's", 'not', 'even', 'looking', 'at', 'me', '||comma||', 'he', 'must', 'have', 'something', 'going', 'for', 'him', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', "i'm", 'ready', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'not', 'now', '||comma||', 'when', '||questionmark||', '||return||', '||return||', 'george:', 'gimme', 'a', 'half', '||dash||', 'hour', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'half', '||dash||', 'hour', '||period||', '||return||', '||return||', 'guy:', 'peanut', 'brittle', '||comma||', 'peanut', 'butter', '||comma||', 'peanut', 'oil', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupting', '||rightparen||', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'second', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'excuse', 'me', '||period||', '||leftparen||', 'gets', 'up', 'to', 'talk', 'with', 'jerry', '||rightparen||', 'what', 'have', 'you', 'been', 'doing', '||comma||', "i've", 'been', 'smacking', 'myself', 'senseless', '||period||', 'people', 'think', "i'm", 'a', 'mental', 'patient', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'was', 'dying', 'over', 'there', '||period||', '||return||', '||return||', 'elaine:', 'this', "guy's", 'going', 'off', 'on', 'the', 'peanut', '||period||', 'now', 'pay', 'attention', '||period||', '||return||', '||return||', 'ellen:', 'yeah', '||comma||', 'i', 'think', "i've", 'seen', 'you', 'in', 'a', 'club', '||period||', 'you', 'talk', 'about', 'a', 'lot', 'of', 'everyday', 'things', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'ellen:', 'yeah', '||comma||', 'i', 'remember', 'you', '||period||', '||return||', '||return||', 'woman:', 'i', 'wonder', 'what', 'happened', 'to', 'my', 'fianc', '||period||', 'i', 'know', "he's", 'here', 'somewhere', '||period||', 'ellen', '||questionmark||', 'have', 'you', 'seen', 'my', 'fianc', '||questionmark||', '||return||', '||return||', 'ellen:', "he's", 'upstairs', '||period||', '||return||', '||return||', 'woman:', 'are', 'you', 'going', 'upstairs', '||questionmark||', 'tell', 'my', 'fianc', "i'm", 'looking', 'for', 'him', '||period||', 'i', 'havelost', 'my', 'fianc', '||comma||', 'the', 'poor', 'baby', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'the', 'dingo', 'ate', 'your', 'baby', '||period||', '||return||', '||return||', 'woman:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'dingo', 'ate', 'your', 'baby', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'i', 'have', 'a', 'tremendous', 'favor', 'to', 'ask', '||period||', '||return||', '||return||', 'jerry:', 'i', 'do', 'favors', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "something's", 'happening', 'here', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'she', 'wants', 'me', 'to', 'take', 'her', 'home', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', '||return||', '||return||', 'george:', 'what', 'should', 'i', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'go', '||exclammark||', 'what', 'could', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'about', 'you', 'and', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', "we'll", 'get', 'a', 'ride', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', "we'll", 'be', 'fine', '||comma||', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'told', 'me', 'she', 'wants', '||dash||', '||dash||', '||leftparen||', 'pauses', 'until', 'a', 'woman', 'coming', 'down', 'the', 'stairs', 'passes', '||rightparen||', 'she', 'told', 'me', 'she', 'wants', 'me', 'to', 'make', 'love', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'she', 'said', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'george:', 'i', 'swear', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', '||comma||', 'i', "can't", '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'please', '||comma||', "it's", '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', 'i', 'long', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'long', 'for', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'so', 'shocked', 'i', 'was', 'lucky', 'i', 'said', 'anything', '||period||', '||return||', '||return||', 'jerry:', "it's", 'okay', '||comma||', "that's", 'not', 'bad', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'like', 'when', 'a', 'woman', 'says', '||comma||', "'make", 'love', 'to', "me'", '||comma||', "it's", 'intimidating', '||period||', 'the', 'last', 'time', 'a', 'woman', 'said', 'that', 'to', 'me', '||comma||', 'i', 'wound', 'up', 'apologizing', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'a', 'lot', 'of', 'pressure', '||period||', 'make', 'love', 'to', 'me', '||period||', 'what', 'am', 'i', '||comma||', 'in', 'the', 'circus', '||questionmark||', 'what', 'if', 'i', "can't", 'deliver', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'perform', 'under', 'pressure', '||period||', "that's", 'why', 'i', 'never', 'play', 'anything', 'for', 'money', '||comma||', 'i', 'choke', '||period||', 'i', 'could', 'choke', 'tonight', '||period||', 'and', 'she', 'works', 'in', 'my', 'office', '||comma||', 'can', 'you', 'imagine', '||questionmark||', 'she', 'goes', 'around', 'telling', 'everyone', 'what', 'happened', '||questionmark||', 'maybe', 'i', 'should', 'cancel', '||comma||', 'i', 'have', 'a', 'very', 'bad', 'feeling', 'about', 'this', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', "you're", 'thinking', 'too', 'much', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'know', '||comma||', 'i', "can't", 'stop', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'right', 'now', "i'm", 'reading', 'manuscripts', 'for', 'pendant', 'publishing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'up', '||rightparen||', 'pendant', '||questionmark||', 'those', 'bastards', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'george', 'is', 'going', 'home', 'with', 'this', 'ava', 'from', 'his', 'office', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'huh', '||period||', 'what', 'a', 'world', '||period||', 'so', 'we', 'can', 'go', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'no', '||comma||', "he's", 'taking', 'the', 'car', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'are', 'we', 'gonna', 'do', 'for', 'a', 'ride', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'kramer', 'can', 'come', 'pick', 'us', 'up', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'great', '||comma||', 'oh', '||comma||', 'this', 'is', 'great', '||period||', 'how', 'could', 'you', 'let', 'him', 'take', 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'nothing', 'i', 'could', 'do', '||comma||', "it's", 'part', 'of', 'the', 'code', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'noticing', 'ava', 'in', 'a', 'fur', '||rightparen||', 'oh', 'look', 'at', 'that', '||period||', 'look', 'at', 'what', "she's", 'wearing', '||period||', 'you', 'see', 'what', "she's", 'wearing', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', "she's", 'walking', 'around', 'in', 'that', '||period||', '||return||', '||return||', 'jerry:', 'just', "don't", 'make', 'a', 'scene', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'is', 'that', 'real', 'fur', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'boy', '||period||', '||return||', '||return||', 'ava:', 'it', 'better', 'be', 'or', 'my', 'ex', '||dash||', 'husband', 'owes', 'me', 'an', 'explanation', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'good', 'night', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'care', 'that', 'innocent', 'defenseless', 'animals', 'are', 'being', 'tortured', 'so', 'that', 'you', 'can', 'look', 'good', '||questionmark||', '||return||', '||return||', 'george:', 'could', 'we', 'talk', 'about', 'this', 'some', 'other', 'time', '||questionmark||', '||return||', '||return||', 'ava:', 'are', 'you', 'a', 'vegetarian', '||questionmark||', '||return||', '||return||', 'jerry:', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'eat', 'fish', 'occasionally', '||period||', '||return||', '||return||', 'ava:', 'so', "you're", 'a', 'hypocrite', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "i've", 'eaten', 'frogs', '||comma||', 'so', "nobody's", 'perfect', '||period||', 'anyway', '||dash||', '||return||', '||return||', 'ava:', 'well', '||comma||', 'talk', 'to', 'me', 'when', 'you', 'stop', 'eating', 'fish', '||period||', '||return||', '||return||', 'elaine:', 'fish', "don't", 'feel', 'any', 'pain', '||period||', '||return||', '||return||', 'ava:', 'how', 'do', 'you', 'know', '||questionmark||', 'do', 'you', 'communicate', 'with', 'fish', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "they're", 'not', 'kept', 'in', 'little', 'cages', '||period||', '||return||', '||return||', 'ava:', 'ever', 'seen', 'a', 'goldfish', '||questionmark||', '||return||', '||return||', 'george:', 'goldfish', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', "i've", 'seen', 'goldfish', '||period||', "they're", 'not', 'unhappy', '||period||', '||return||', '||return||', 'ava:', 'oh', 'yeah', '||comma||', 'right', '||period||', 'swim', 'around', 'in', 'a', 'bowl', 'for', 'two', 'weeks', 'and', 'get', 'flushed', 'down', 'the', 'toilet', '||comma||', "that's", 'a', 'good', 'life', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', "that's", 'right', '||period||', 'go', 'ahead', '||comma||', 'go', 'ahead', '||comma||', 'maybe', 'you', 'can', 'run', 'over', 'a', 'squirrel', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'why', "we're", 'here', 'in', 'america', '||period||', '||return||', '||return||', 'jerry:', "you're", 'beautiful', '||period||', '||return||', '||return||', 'elaine:', 'call', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||leftparen||', 'approaches', 'host', '||rightparen||', 'excuse', 'me', '||comma||', 'this', 'is', 'your', 'party', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'steve:', 'no', '||comma||', 'i', 'just', 'live', 'here', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'use', 'your', 'phone', '||questionmark||', '||return||', '||return||', 'steve:', "what's", 'in', 'it', 'for', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'bigger', 'bill', '||questionmark||', '||return||', '||return||', 'steve:', 'he', 'he', '||comma||', 'go', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'krame', '||questionmark||', 'sein', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', 'well', '||comma||', "i'm", 'stuck', 'out', 'here', 'on', 'long', 'island', '||period||', 'what', 'are', 'your', 'thoughts', 'about', 'taking', 'a', 'ride', '||questionmark||', 'you', 'sure', '||questionmark||', 'okay', '||comma||', 'but', "don't", 'leave', 'me', 'hanging', 'here', '||period||', 'okay', '||comma||', 'great', '||period||', 'let', 'me', 'give', 'you', 'directions', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sure', 'you', "don't", 'need', 'any', 'help', '||questionmark||', '||return||', '||return||', 'jenny:', 'no', '||comma||', 'not', 'really', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sure', "he'll", 'be', 'here', 'any', 'minute', '||period||', '||return||', '||return||', 'jenny:', '||leftparen||', 'to', 'steve', '||rightparen||', 'i', 'want', 'them', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'elaine:', 'call', 'him', 'again', '||period||', '||return||', '||return||', 'jerry:', 'i', 'called', '||comma||', 'what', 'should', 'i', 'do', '||questionmark||', '||leftparen||', 'to', 'jenny', '||rightparen||', 'we', 'really', 'appreciate', 'this', '||period||', '||return||', '||return||', 'jenny:', '||leftparen||', 'to', 'steve', '||rightparen||', "it's", 'two', "o'clock", 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'noticing', 'a', 'coffee', 'table', 'book', '||rightparen||', 'oh', '||comma||', 'you', 'got', 'the', 'civil', 'war', 'book', '||period||', 'i', 'saw', 'some', 'of', 'that', 'show', '||comma||', 'it', 'was', 'wonderful', '||period||', '||return||', '||return||', 'elaine:', 'six', 'hundred', 'and', 'twenty', 'million', 'people', 'died', '||period||', '||return||', '||return||', 'jerry:', 'thousand', '||period||', '||return||', '||return||', 'elaine:', 'thousand', '||period||', 'six', 'hundred', 'and', 'twenty', 'thousand', '||period||', 'the', 'horror', '||comma||', 'the', 'horror', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'the', 'wife', 'keeps', 'giving', 'us', 'dirty', 'looks', '||period||', 'are', 'you', 'sure', 'you', 'gave', 'him', 'the', 'right', 'directions', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||leftparen||', 'to', 'jenny', '||rightparen||', "you're", 'sure', "there's", 'nothing', 'we', 'can', 'do', '||questionmark||', '||return||', '||return||', 'jenny:', 'no', '||exclammark||', '||leftparen||', 'to', 'steve', '||rightparen||', 'i', 'am', 'not', 'going', 'to', 'bed', 'with', 'them', 'in', 'our', 'house', '||comma||', 'this', 'is', 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'a', 'friend', 'of', 'my', "father's", 'used', 'to', 'live', 'right', 'around', 'here', '||period||', 'mike', 'wichter', '||period||', 'he', 'sold', 'plastic', 'straws', '||period||', 'you', 'know', 'the', 'ones', '||questionmark||', 'you', 'could', 'bend', 'them', '||period||', '||return||', '||return||', 'elaine:', 'have', 'you', 'noticed', '||comma||', 'people', "don't", 'use', 'straws', 'as', 'much', 'as', 'they', 'used', 'to', 'for', 'some', 'reason', '||period||', '||return||', '||return||', 'jenny:', 'you', 'know', '||comma||', 'it', "doesn't", 'look', 'as', 'if', 'your', 'friend', 'is', 'coming', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "he's", 'coming', '||period||', '||return||', '||return||', 'jenny:', 'maybe', 'you', 'should', 'take', 'a', 'look', 'at', 'a', 'train', 'schedule', '||period||', '||return||', '||return||', 'jerry:', "that's", 'him', '||period||', '||return||', '||return||', 'jenny:', "i'm", 'going', 'to', 'bed', '||exclammark||', '||return||', '||return||', 'elaine:', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', 'great', 'party', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'steve:', 'ah', '||comma||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "it's", 'okay', '||period||', '||return||', '||return||', 'kramer:', 'i', 'had', 'the', 'directions', 'on', 'the', 'seat', 'right', 'next', 'to', 'me', '||comma||', 'they', 'flew', 'out', 'the', 'window', '||period||', '||return||', '||return||', 'elaine:', 'then', 'how', 'did', 'you', 'find', 'the', 'place', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'knew', 'the', 'exit', 'on', 'the', 'long', 'island', 'expressway', '||comma||', 'and', 'i', 'thought', 'that', 'the', 'address', 'was', '8713', 'riviera', 'drive', '||period||', 'uh', 'uh', '||comma||', 'so', 'i', 'drove', 'around', 'knocking', 'on', "everybody's", 'doors', 'that', 'had', 'those', 'numbers', '||semicolon||', '8317', '||comma||', '7813', '||comma||', '3718', '||comma||', '1837', '||comma||', 'whoo', '||period||', 'finally', '||comma||', 'i', 'hit', 'it', '||period||', '8173', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'thanks', 'a', 'lot', 'for', 'letting', 'us', 'stay', 'here', '||comma||', 'steve', '||comma||', 'i', 'really', 'owe', 'you', 'one', '||period||', '||return||', '||return||', 'steve:', 'no', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'and', 'if', "you're", 'ever', 'in', 'the', 'city', '||comma||', 'you', 'know', '||comma||', 'you', 'want', 'to', 'come', 'to', 'a', 'comedy', 'club', '||comma||', 'whatever', '||period||', '||return||', '||return||', 'steve:', 'hey', '||comma||', 'i', 'might', 'take', 'you', 'up', 'on', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'writing', '||rightparen||', "here's", 'my', 'address', 'and', 'number', '||period||', 'and', 'really', '||comma||', 'thanks', 'again', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'better', 'zip', 'up', '||period||', 'i', "couldn't", 'get', 'the', 'top', 'on', 'the', 'convertible', 'up', '||period||', '||return||', '||return||', 'elaine:', 'but', "it's", 'cold', 'out', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'wait', 'till', 'we', 'get', 'on', 'the', 'expressway', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', "i've", 'been', 'sick', 'all', 'week', '||period||', 'elaine', 'was', 'too', '||period||', 'eighty', 'miles', 'an', 'hour', '||comma||', 'forty', 'degree', 'temperature', 'for', 'fifty', 'minutes', '||period||', 'do', 'the', 'math', '||period||', 'yeah', '||comma||', 'maybe', 'i', 'will', 'get', 'out', '||period||', 'hey', '||comma||', 'let', 'me', 'just', 'stop', 'off', 'at', 'the', 'drug', 'store', 'first', '||period||', 'okay', '||comma||', 'meet', 'me', 'down', 'there', 'in', 'fifteen', 'minutes', 'then', "we'll", 'go', 'do', 'something', '||period||', 'yeah', '||comma||', "selwyn's", '||period||', 'okay', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'voice:', 'mr', '||period||', 'pocatello', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'voice:', 'you', 'mean', 'you', "don't", 'recognize', 'my', 'voice', '||questionmark||', '||return||', '||return||', 'steve:', 'jerry', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'i', 'know', 'you', '||questionmark||', '||return||', '||return||', 'steve:', 'boy', 'this', "comedy's", 'really', 'frying', 'your', 'brain', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'uh', '||dash||', '||return||', '||return||', 'steve:', 'see', '||comma||', 'this', 'is', 'the', 'kind', 'of', 'lasting', 'impression', 'i', 'make', 'on', 'people', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'okay', '||period||', '||return||', '||return||', 'steve:', 'you', 'said', 'if', 'i', 'was', 'ever', 'in', 'the', 'city', '||comma||', "i'm", 'in', 'the', 'city', '||period||', '||return||', '||return||', 'jerry:', 'you', 'certainly', 'are', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'steve:', "i'm", 'just', 'waiting', 'for', 'a', 'lift', 'back', 'to', 'the', 'island', '||comma||', 'he', "won't", 'be', 'ready', 'until', 'eleven', '||comma||', 'so', 'i', 'figured', "i'd", 'give', 'you', 'a', 'break', '||period||', 'i', 'thought', "i'd", 'see', 'what', 'it', 'was', 'like', 'to', 'hang', 'out', 'with', 'someone', 'in', 'show', 'business', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', "i'm", 'really', 'sorry', 'but', "i'm", 'just', 'on', 'my', 'way', 'out', 'to', 'meet', 'a', 'friend', '||period||', '||return||', '||return||', 'steve:', 'oh', '||comma||', 'come', 'on', '||comma||', 'you', 'can', 'come', 'up', 'with', 'something', 'better', 'than', 'that', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'really', '||comma||', 'i', 'just', 'got', 'off', 'the', 'phone', 'with', 'him', '||period||', '||return||', '||return||', 'steve:', 'i', 'understand', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'you', 'can', 'hang', 'out', 'here', 'if', 'you', 'want', '||period||', '||return||', '||return||', 'steve:', "don't", 'be', 'so', 'enthusiastic', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", '||dash||', '||return||', '||return||', 'steve:', "i'm", 'not', 'gonna', 'steal', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'of', 'course', 'not', '||comma||', 'just', 'close', 'the', 'door', 'when', 'you', 'leave', '||period||', '||return||', '||return||', 'steve:', 'i', 'think', 'i', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'really', '||comma||', "i'm", 'sorry', '||period||', 'maybe', 'another', 'time', '||period||', '||return||', '||return||', 'steve:', 'yeah', '||period||', "let's", 'have', 'lunch', '||period||', '||return||', '||return||', 'jerry:', 'they', "guy's", 'in', 'my', 'house', 'right', 'now', '||period||', 'what', 'a', 'mistake', 'that', 'party', 'was', '||comma||', 'i', 'never', 'should', 'have', 'gone', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'me', 'either', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'what', 'come', 'on', '||questionmark||', 'have', 'you', 'ever', 'dated', 'a', 'woman', 'that', 'worked', 'in', 'your', 'office', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'never', 'had', 'a', 'job', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'the', 'anxiety', 'you', 'feel', 'on', 'a', 'date', '||questionmark||', "that's", 'what', 'i', 'have', 'every', 'day', 'now', '||period||', 'my', 'worst', "nightmare's", 'come', 'true', '||comma||', 'every', 'day', 'is', 'a', 'date', '||period||', '||return||', '||return||', 'jerry:', "that's", 'one', 'of', "dante's", 'nine', 'stages', 'of', 'hell', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'ava', 'was', 'one', 'of', 'the', 'reasons', 'i', 'used', 'to', 'like', 'going', 'to', 'work', '||comma||', 'she', 'was', 'a', 'friend', '||period||', 'now', 'we', 'sleep', 'together', 'and', 'suddenly', '||comma||', 'i', "don't", 'know', 'how', 'to', 'talk', 'to', 'her', '||period||', 'every', 'time', 'i', 'go', 'to', 'the', 'bathroom', 'i', 'pass', 'her', 'desk', '||period||', 'i', 'have', 'to', 'plan', 'little', 'patter', '||period||', 'i', 'spend', 'half', 'my', 'day', 'writing', '||period||', 'then', 'afterwards', '||comma||', 'i', 'sit', 'in', 'my', 'office', 'and', 'analyze', 'how', 'it', 'went', '||period||', 'if', 'it', 'was', 'a', 'good', 'conversation', '||comma||', 'i', "don't", 'go', 'to', 'the', 'bathroom', 'for', 'the', 'rest', 'of', 'the', 'day', '||period||', 'i', 'see', 'her', 'laughing', 'and', 'talking', 'with', 'other', 'people', '||comma||', "they're", 'all', 'so', 'loose', 'and', 'relaxed', '||comma||', 'i', 'think', '||comma||', "'that", 'used', 'to', 'be', 'me', '||period||', 'i', 'want', 'to', 'go', 'back', 'there', 'again', '||period||', "'", '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'no', 'choice', '||comma||', "i'm", 'quitting', '||period||', '||return||', '||return||', 'kramer:', 'the', 'party', '||comma||', 'long', 'island', '||questionmark||', '||return||', '||return||', 'steve:', 'kramer', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'steve:', "i'm", 'waiting', 'for', 'my', 'ride', '||period||', '||return||', '||return||', 'kramer:', "where's", 'jerry', '||questionmark||', '||return||', '||return||', 'steve:', 'he', 'split', '||period||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'is', 'there', 'anything', 'to', 'drink', 'in', 'here', 'or', 'is', 'that', '||comma||', 'like', '||comma||', 'a', 'stupid', 'question', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'jerry', '||comma||', 'he', "doesn't", 'have', 'anything', '||period||', '||leftparen||', 'sensing', "steve's", 'disappointment', '||rightparen||', 'well', '||comma||', 'but', 'i', 'might', 'have', 'something', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'm", 'gonna', 'get', 'this', '||period||', 'this', 'looks', 'good', '||period||', '||return||', '||return||', 'george:', 'how', 'much', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'nine', 'sixty', '||period||', '||return||', '||return||', 'george:', 'nine', 'sixty', '||questionmark||', 'give', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'worry', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||comma||', 'you', 'got', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'since', 'when', 'are', 'you', 'treating', 'me', 'to', 'medicine', '||questionmark||', 'what', 'are', 'you', 'doing', '||questionmark||', "you're", 'stealing', 'this', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'not', 'stealing', 'it', '||period||', 'they', 'owe', 'me', 'ten', 'dollars', '||period||', 'they', 'stole', 'from', 'me', '||period||', '||return||', '||return||', 'jerry:', "you're", 'a', 'lunatic', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'do', 'this', '||comma||', "it's", 'a', 'matter', 'of', 'honor', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'say', 'to', 'a', 'person', 'like', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'walk', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'security', 'guard:', 'scuse', 'me', '||period||', 'what', 'do', 'you', 'got', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'security', 'guard:', 'what', 'do', 'you', 'got', 'in', 'your', 'shirt', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'was', 'gonna', 'pay', 'for', 'this', '||period||', '||return||', '||return||', 'security', 'guard:', '||leftparen||', 'grabbing', 'george', 'by', 'the', 'elbow', 'and', 'walking', 'him', 'to', 'the', 'counter', '||rightparen||', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'nervous', '||rightparen||', 'where', 'are', 'you', 'taking', 'me', '||questionmark||', 'i', 'was', 'gonna', 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'cashier:', 'um', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'security', 'guard:', 'you', "don't", 'think', 'i', 'remember', 'you', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'more', 'nervous', '||rightparen||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'security', 'guard:', 'i', 'know', 'who', 'you', 'are', '||comma||', 'i', 'was', 'watching', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'panicky', '||rightparen||', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', 'are', 'you', 'gonna', 'call', 'the', 'police', '||questionmark||', '||return||', '||return||', 'jerry:', 'can', 'i', 'still', 'buy', 'this', 'or', 'is', 'this', 'evidence', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "i'm", 'chasing', 'these', 'doves', 'down', 'the', 'street', 'and', "she's", 'screaming', 'at', 'the', 'top', 'of', 'her', 'lungs', '||comma||', 'and', 'then', 'when', 'the', 'magician', 'comes', 'back', 'from', 'europe', '||comma||', 'two', 'of', 'them', 'turned', 'brown', '||exclammark||', 'well', 'i', 'followed', 'the', 'instructions', '||exclammark||', '||return||', '||return||', 'steve:', '||leftparen||', 'hysterical', '||rightparen||', 'ah', '||comma||', 'they', 'turned', 'brown', '||exclammark||', '||exclammark||', 'brown', '||exclammark||', '||exclammark||', '||leftparen||', 'the', 'laughter', 'winds', 'down', '||rightparen||', 'so', 'let', 'me', 'ask', 'you', 'something', '||comma||', 'you', 'know', 'any', 'women', 'we', 'could', 'call', '||questionmark||', '||return||', '||return||', 'kramer:', 'not', 'really', '||period||', '||return||', '||return||', 'steve:', 'maybe', 'we', 'should', 'call', 'one', 'of', 'those', 'escort', 'services', '||period||', 'i', 'saw', 'one', 'of', 'them', 'advertised', 'before', 'on', 'the', 'cable', 'station', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'handing', 'steve', 'the', 'phone', '||rightparen||', '555', '||dash||', 'love', '||period||', '||return||', '||return||', 'steve:', 'hey', '||comma||', 'you', 'want', 'in', 'on', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'got', 'a', 'girl', 'in', 'the', 'next', 'building', '||return||', '||return||', 'voice:', 'now', 'i', 'want', 'my', 'money', '||comma||', 'mister', '||comma||', 'and', 'i', "ain't", 'leaving', 'until', 'i', 'get', 'it', '||period||', 'now', 'i', 'am', 'through', 'playing', 'games', 'with', 'you', '||comma||', 'i', 'got', 'things', 'to', 'do', '||period||', '||return||', '||return||', 'steve:', '||leftparen||', 'drunk', 'and', 'slurring', '||rightparen||', 'oh', 'jerry', '||exclammark||', 'jerry', '||exclammark||', 'look', "who's", 'here', '||comma||', "it's", 'jerry', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', '||questionmark||', '||return||', '||return||', 'steve:', 'jerry', '||comma||', 'this', 'is', 'patti', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'patti:', "it's", 'a', 'pleasure', 'to', 'make', 'your', 'acquaintance', '||comma||', "i'm", 'sure', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'steve:', 'i', "don't", 'know', '||comma||', 'but', 'i', 'gotta', 'do', 'this', 'more', 'often', '||period||', '||leftparen||', 'the', 'buzzer', 'goes', 'off', '||rightparen||', 'ooh', '||comma||', "there's", 'my', 'ride', '||comma||', 'finally', '||period||', '||return||', '||return||', 'patti:', "i'm", 'not', 'gonna', 'go', 'anywhere', 'until', 'i', 'get', 'the', 'rest', 'of', 'my', 'money', '||period||', '||return||', '||return||', 'steve:', 'see', 'ya', '||comma||', 'jerr', '||period||', 'and', 'tell', 'kramer', 'thanks', 'and', "i'll", 'call', 'him', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'kramer', 'huh', '||questionmark||', '||return||', '||return||', 'steve:', 'yeah', '||comma||', "he's", 'a', 'hoot', '||period||', 'oh', '||comma||', 'goodbye', '||comma||', 'my', 'dear', '||period||', '||leftparen||', 'trying', 'to', 'kiss', "patti's", 'hand', 'as', 'she', 'pulls', 'it', 'away', '||rightparen||', 'ouch', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'weekend', 'of', 'the', '26th', '||comma||', 'come', 'on', 'out', '||comma||', "we're", 'having', 'another', 'party', '||period||', '||return||', '||return||', 'patti:', 'i', "ain't", 'leaving', '||period||', '||return||', '||return||', 'jerry:', 'patti', '||questionmark||', '||return||', '||return||', 'patti:', 'you', 'got', 'anything', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'how', 'much', 'does', 'he', 'owe', 'you', '||questionmark||', '||return||', '||return||', 'patti:', 'fifty', 'dollars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'out', 'his', 'wallet', 'and', 'handing', 'over', 'bills', 'grudgingly', '||rightparen||', 'fifty', 'dollars', '||period||', '||return||', '||return||', 'cop:', 'this', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', '||dash||', '||dash||', '||return||', '||return||', 'cop:', "you're", 'under', 'arrest', 'for', 'solicitation', 'of', 'prostitution', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'i', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'i', 'brought', 'you', 'chicken', 'soup', '||period||', '||leftparen||', 'to', 'patti', '||rightparen||', 'is', 'that', 'real', 'fur', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'cop:', 'oh', 'boy', '||period||', '||return||', '||return||', 'george:', 'you', 'had', 'sgt', '||period||', 'chadway', '||questionmark||', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'a', 'nice', 'guy', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'great', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'was', 'there', 'a', 'red', '||dash||', 'headed', 'guy', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'one', 'with', 'the', 'long', 'sideburns', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'where', 'does', 'he', 'come', 'off', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', "there's", 'no', 'call', 'for', 'that', 'kind', 'of', 'attitude', '||period||', '||return||', '||return||', 'george:', 'one', 'of', 'the', 'guys', 'in', 'my', 'cell', 'threw', 'a', 'piece', 'of', 'gum', 'at', 'him', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'we', 'all', 'hated', 'him', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'believe', 'this', '||questionmark||', 'the', 'car', 'was', 'parked', 'right', 'out', 'front', '||period||', '||return||', '||return||', 'george:', 'was', 'the', 'alarm', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'i', 'guess', 'it', 'was', 'on', '||period||', 'i', "don't", 'know', 'my', 'alarm', 'sound', '||semicolon||', "i'm", 'not', 'tuned', 'in', 'to', 'it', 'like', "it's", 'my', 'son', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'understand', '||comma||', 'how', 'do', 'these', 'thieves', 'start', 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'cross', 'the', 'wires', 'or', 'something', '||period||', '||return||', '||return||', 'george:', 'cross', 'the', 'wires', '||questionmark||', 'i', "can't", 'even', 'make', 'a', 'pot', 'of', 'spaghetti', '||period||', '||return||', '||return||', 'jerry:', 'they', 'stole', 'my', 'car', '||period||', '||return||', '||return||', 'kramer:', 'who', 'did', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'did', '||period||', '||return||', '||return||', 'kramer:', 'was', 'it', 'more', 'than', 'just', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'should', 'i', 'do', '||comma||', 'should', 'i', 'call', 'the', 'police', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'are', 'they', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', "i'd", 'better', 'call', 'the', 'car', 'phone', 'company', '||comma||', 'cancel', 'my', 'service', '||period||', '||return||', '||return||', 'george:', 'maybe', 'you', 'should', 'call', 'your', 'car', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'probably', 'driving', 'it', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'call', 'the', 'car', 'phone', '||comma||', 'see', 'what', 'happens', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'serious', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'go', 'ahead', '||comma||', 'call', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'know', 'if', 'i', 'remember', 'the', 'number', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'i', 'say', 'if', 'he', 'picks', 'up', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'is', 'this', '555', '||dash||', '8383', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'i', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'ask', 'you', 'a', 'question', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'steal', 'my', 'car', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'yes', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'you', 'did', '||questionmark||', '||exclammark||', '||return||', '||return||', 'car', 'thief:', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', "that's", 'my', 'car', '||exclammark||', '||return||', '||return||', 'car', 'thief:', 'i', "didn't", 'know', 'it', 'was', 'yours', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'gonna', 'do', 'with', 'it', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'i', 'dunno', '||comma||', 'drive', 'around', '||period||', '||return||', '||return||', 'jerry:', 'then', 'can', 'i', 'have', 'it', 'back', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'mmmm', '||comma||', 'nah', '||comma||', "i'm", 'gonna', 'keep', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'yeah', '||comma||', "who's", 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'kramer', '||period||', '||return||', '||return||', 'car', 'thief:', 'hello', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', "there's", 'a', 'pair', 'of', 'gloves', 'in', 'the', 'glove', 'compartment', '||period||', '||return||', '||return||', 'car', 'thief:', 'wait', '||comma||', 'hold', 'on', '||period||', '||period||', '||period||', 'brown', 'ones', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'listen', '||comma||', 'could', 'you', 'mail', 'those', 'to', 'me', '||questionmark||', 'or', 'bring', 'them', 'by', 'my', 'building', '||comma||', "it's", '129', 'west', '81st', 'st', '||period||', '||return||', '||return||', 'car', 'thief:', 'one', '||dash||', 'two', '||dash||', 'nine', '||comma||', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'thanks', 'a', 'lot', '||comma||', 'uh', "here's", 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'derisively', 'at', 'kramer', '||rightparen||', 'gloves', '||period||', '||leftparen||', 'into', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'how', 'do', 'you', 'cross', 'those', 'wires', '||questionmark||', '||return||', '||return||', 'car', 'thief:', 'i', "didn't", 'cross', 'any', 'wires', '||comma||', 'the', 'keys', 'were', 'in', 'it', '||period||', '||return||', '||return||', 'jerry:', 'sid', 'left', 'the', 'keys', 'in', 'the', 'car', '||period||', 'alright', '||comma||', 'i', 'gotta', 'go', '||period||', 'drive', 'carefully', '||period||', '||return||', '||return||', 'car', 'thief:', 'jerry', '||comma||', "when's", 'the', 'last', 'time', 'you', 'had', 'a', 'tune', '||dash||', 'up', '||questionmark||', 'because', 'i', "can't", 'find', 'the', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'sid', 'left', 'the', 'keys', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'george:', "who's", 'sid', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'this', 'guy', 'in', 'the', 'neighborhood', '||comma||', 'parks', 'cars', 'on', 'the', 'block', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'moves', 'them', 'from', 'one', 'side', 'of', 'the', 'street', 'to', 'the', 'other', 'so', 'you', "don't", 'get', 'a', 'ticket', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'do', 'you', 'pay', 'him', 'for', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'like', 'fifty', 'bucks', 'a', 'month', '||period||', '||return||', '||return||', 'george:', 'how', 'many', 'people', 'does', 'he', 'do', 'that', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'whole', 'block', '||comma||', 'forty', '||comma||', 'fifty', 'cars', '||period||', '||return||', '||return||', 'kramer:', 'he', 'only', 'works', 'three', 'hours', 'a', 'day', '||period||', 'he', 'makes', 'a', 'fortune', '||period||', 'course', "he's", 'been', 'doing', 'that', 'for', 'years', '||comma||', 'right', 'jerry', '||questionmark||', '||return||', '||return||', 'george:', 'could', 'anybody', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'sid', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'sid:', "i'm", 'sorry', '||comma||', 'jerry', '||period||', 'maybe', "i'm", 'getting', 'too', 'old', 'for', 'this', 'stuff', '||period||', '||return||', '||return||', 'jerry:', 'you', 'left', 'the', 'keys', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'sid:', 'well', '||comma||', 'you', 'know', "they're", 'making', 'that', 'woody', 'allen', 'movie', 'in', 'the', 'block', '||comma||', 'and', 'all', 'those', 'people', 'and', 'trucks', 'everywhere', '||comma||', 'when', 'i', 'saw', 'him', 'i', 'must', 'have', 'got', 'a', 'little', 'distracted', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', "i'm", 'in', 'that', 'movie', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'are', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'an', 'extra', '||period||', '||return||', '||return||', 'george:', "how'd", 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'just', 'watching', 'them', 'film', 'yesterday', 'and', 'some', 'guy', 'just', 'asked', 'me', '||period||', '||return||', '||return||', 'george:', 'right', 'out', 'of', 'the', 'clear', 'blue', 'sky', '||questionmark||', '||return||', '||return||', 'kramer:', 'clear', 'blue', 'sky', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'why', "didn't", 'they', 'ask', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'a', 'quality', '||period||', '||return||', '||return||', 'sid:', 'jerry', '||comma||', 'you', 'got', 'insurance', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'no', 'car', '||period||', "i'll", 'have', 'to', 'rent', 'one', '||period||', '||return||', '||return||', 'sid:', 'well', "i'm", 'going', 'down', 'to', 'visit', 'my', 'sister', 'in', 'virginia', 'next', 'wednesday', '||comma||', 'for', 'a', 'week', '||comma||', 'so', 'i', "can't", 'park', 'it', '||period||', '||return||', '||return||', 'jerry:', 'this', 'wednesday', '||questionmark||', '||return||', '||return||', 'sid:', 'no', '||comma||', 'next', 'wednesday', '||comma||', 'week', 'after', 'this', 'wednesday', '||period||', '||return||', '||return||', 'jerry:', 'but', 'the', 'wednesday', 'two', 'days', 'from', 'now', 'is', 'the', 'next', 'wednesday', '||period||', '||return||', '||return||', 'sid:', 'if', 'i', 'meant', 'this', 'wednesday', '||comma||', 'i', 'would', 'have', 'said', 'this', 'wednesday', '||period||', "it's", 'the', 'week', 'after', 'this', 'wednesday', '||period||', '||return||', '||return||', 'george:', 'sid', '||comma||', "who's", 'gonna', 'move', 'the', 'cars', 'while', "you're", 'away', '||questionmark||', '||return||', '||return||', 'sid:', 'whoever', 'wants', 'to', 'move', 'them', '||comma||', 'why', 'do', 'i', 'care', 'who', 'moves', 'them', '||questionmark||', 'they', 'can', 'move', 'themselves', 'if', 'they', 'want', '||period||', '||return||', '||return||', 'george:', 'maybe', 'i', 'could', 'move', 'them', 'until', 'you', 'get', 'back', '||period||', '||return||', '||return||', 'sid:', "what's", 'a', 'young', 'man', 'like', 'you', 'want', 'to', 'move', 'cars', 'for', '||questionmark||', 'you', "don't", 'work', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'in', 'a', 'transition', 'phase', 'right', 'now', '||period||', '||return||', '||return||', 'sid:', 'well', 'if', 'you', 'want', 'to', 'move', 'the', 'cars', '||comma||', 'move', 'the', 'cars', '||period||', 'just', "don't", 'forget', 'to', 'take', 'the', 'keys', 'out', '||comma||', "that's", 'all', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'yeah', '||comma||', 'the', "defroster's", 'the', 'one', 'on', 'the', 'bottom', '||comma||', 'just', 'slide', 'it', 'all', 'the', 'way', 'over', '||period||', "you're", 'welcome', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'in', 'awe', 'of', 'his', 'intellect', '||comma||', 'when', 'he', 'talks', 'it', 'sounds', 'like', "he's", 'reading', 'from', 'one', 'of', 'his', 'novels', '||period||', '||return||', '||return||', 'jerry:', 'owen', 'march', '||comma||', 'i', 'never', 'heard', 'of', 'him', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "he's", 'not', 'a', 'baseball', 'player', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'true', '||period||', 'well', 'it', 'sounds', 'like', "it's", 'going', 'pretty', 'good', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'well', '||comma||', 'there', 'is', 'one', 'little', 'problem', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'sixty', '||dash||', 'six', 'years', 'old', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'next', 'please', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'go', '||comma||', 'go', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'can', 'i', 'help', 'you', '||questionmark||', 'name', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'seinfeld', '||period||', 'i', 'made', 'a', 'reservation', 'for', 'a', 'mid', '||dash||', 'size', '||comma||', 'and', "she's", 'a', 'small', '||period||', "i'm", 'kidding', 'around', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'okay', '||comma||', "let's", 'see', 'here', '||period||', '||return||', '||return||', 'jerry:', 'sixty', '||dash||', 'six', 'years', 'old', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', '||comma||', "he's", 'in', 'perfect', 'health', '||period||', 'he', 'works', 'out', '||comma||', "he's", 'vibrant', '||period||', "you'd", 'really', 'like', 'him', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'people', 'always', 'say', 'that', '||questionmark||', 'i', 'hate', 'everyone', '||comma||', 'why', 'would', 'i', 'like', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'think', '||comma||', 'would', 'you', 'go', 'out', 'with', 'a', 'sixty', '||dash||', 'six', 'year', 'old', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'll", 'tell', 'you', '||comma||', 'she', 'would', 'have', 'to', 'be', 'really', 'vibrant', '||period||', 'so', 'vibrant', '||comma||', "she'd", 'be', 'spinning', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', "i'm", 'sorry', '||comma||', 'we', 'have', 'no', 'mid', '||dash||', 'size', 'available', 'at', 'the', 'moment', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', '||comma||', 'i', 'made', 'a', 'reservation', '||comma||', 'do', 'you', 'have', 'my', 'reservation', '||questionmark||', '||return||', '||return||', 'rental', 'car', 'agent:', 'yes', '||comma||', 'we', 'do', '||comma||', 'unfortunately', 'we', 'ran', 'out', 'of', 'cars', '||period||', '||return||', '||return||', 'jerry:', 'but', 'the', 'reservation', 'keeps', 'the', 'car', 'here', '||period||', "that's", 'why', 'you', 'have', 'the', 'reservation', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'i', 'know', 'why', 'we', 'have', 'reservations', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'you', 'do', '||period||', 'if', 'you', 'did', '||comma||', "i'd", 'have', 'a', 'car', '||period||', 'see', '||comma||', 'you', 'know', 'how', 'to', 'take', 'the', 'reservation', '||comma||', 'you', 'just', "don't", 'know', 'how', 'to', '*hold*', 'the', 'reservation', 'and', "that's", 'really', 'the', 'most', 'important', 'part', 'of', 'the', 'reservation', '||comma||', 'the', 'holding', '||period||', 'anybody', 'can', 'just', 'take', 'them', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'let', 'me', '||comma||', 'uh', '||comma||', 'speak', 'with', 'my', 'supervisor', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'here', 'we', 'go', '||period||', 'the', 'supervisor', '||period||', 'you', 'know', 'what', "she's", 'saying', 'over', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'marge', '||comma||', 'you', 'see', 'those', 'two', 'people', 'over', 'there', '||questionmark||', 'they', 'think', "i'm", 'talking', 'to', 'you', '||comma||', 'so', 'you', 'pretend', 'like', "you're", 'talking', 'to', 'me', '||comma||', 'okay', 'now', 'you', 'start', 'talking', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'mean', 'like', 'this', '||questionmark||', 'so', 'it', 'looks', 'like', "i'm", 'saying', 'something', 'but', "i'm", 'not', 'really', 'saying', 'anything', 'at', 'all', '||questionmark||', '||return||', '||return||', 'jerry:', 'now', 'you', 'say', 'something', 'else', 'and', 'they', "won't", 'yell', 'at', 'me', "'cause", 'they', 'thought', 'i', 'was', 'checking', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', "that's", 'it', '||period||', 'i', 'think', "that's", 'enough', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', "i'm", 'sorry', '||comma||', 'my', 'supervisor', 'says', "there's", 'nothing', 'we', 'can', 'do', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'looked', 'as', 'if', 'you', 'were', 'in', 'a', 'real', 'conversation', 'over', 'there', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'but', 'we', 'do', 'have', 'a', 'compact', 'if', 'you', 'would', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'alright', '||period||', 'we', 'have', 'a', 'blue', 'ford', 'escort', 'for', 'you', 'mr', '||period||', 'seinfeld', '||period||', 'would', 'you', 'like', 'insurance', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'better', 'give', 'me', 'the', 'insurance', '||comma||', 'because', 'i', 'am', 'gonna', 'beat', 'the', 'hell', 'out', 'of', 'this', 'car', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'please', 'fill', 'this', 'out', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'think', '||comma||', 'you', 'think', "i'm", 'making', 'a', 'big', 'mistake', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'if', 'you', 'enjoy', 'being', 'with', 'him', '||comma||', "that's", "what's", 'important', '||period||', '||return||', '||return||', 'elaine:', 'i', 'love', 'being', 'with', 'him', '||period||', 'i', 'mean', '||comma||', 'i', 'like', 'being', 'with', 'him', '||period||', "it's", 'okay', 'being', 'with', 'him', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', "don't", 'enjoy', 'being', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'well', "that's", "what's", 'important', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'meeting', 'him', 'for', 'lunch', 'at', "chadway's", 'around', 'the', 'corner', '||comma||', 'do', 'i', 'have', 'to', 'break', 'up', 'with', 'him', 'face', 'to', 'face', 'or', 'can', 'i', 'just', 'wait', 'and', 'do', 'it', 'over', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'many', 'times', 'you', 'been', 'out', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'seven', '||questionmark||', '||return||', '||return||', 'jerry:', 'face', 'to', 'face', '||period||', '||return||', '||return||', 'elaine:', 'seven', 'dates', 'is', 'a', 'face', '||dash||', 'to', '||dash||', 'face', 'break', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'it', 'was', 'six', 'i', 'could', 'have', 'let', 'you', 'go', '||comma||', 'but', 'seven', '||comma||', "i'm", 'afraid', '||comma||', 'is', 'over', 'the', 'limit', '||period||', 'unless', '||comma||', 'of', 'course', '||comma||', 'there', 'was', 'no', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||period||', '||period||', "how's", 'the', 'pasta', 'over', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', 'whoa', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'going', 'on', 'out', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'need', 'like', 'a', 'bucket', 'of', 'water', '||exclammark||', 'i', 'got', 'a', 'car', 'overheating', '||comma||', 'i', 'got', 'an', 'alarm', 'that', "won't", 'go', 'off', '||comma||', "i'm", 'pressing', "'one'", '||comma||', "i'm", 'pressing', "'two'", '||comma||', 'nothing', '||exclammark||', 'what', 'do', 'i', 'do', '||questionmark||', '||exclammark||', 'help', 'me', '||exclammark||', 'help', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'know', 'they', 'were', 'supposed', 'to', 'do', 'my', 'scene', 'today', '||questionmark||', '||return||', '||return||', 'elaine:', 'today', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'they', 'told', 'me', 'that', 'they', 'wanted', 'me', 'to', 'walk', 'down', 'the', 'block', 'carrying', 'this', 'bag', 'of', 'groceries', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'so', 'i', 'start', 'to', 'walk', '||comma||', 'and', 'i', 'trip', '||comma||', 'and', 'the', 'grocery', 'bag', 'goes', 'flying', '||comma||', 'and', 'woody', '||comma||', 'woody', 'starts', 'laughing', '||period||', '||return||', '||return||', 'elaine:', 'he', 'was', 'laughing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'he', 'was', 'drinking', 'something', '||comma||', 'it', 'started', 'to', 'come', 'out', 'of', 'his', 'nose', '||period||', '||return||', '||return||', 'jerry:', 'so', 'then', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'a', 'line', 'in', 'the', 'movie', '||exclammark||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'great', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'got', 'a', 'line', 'in', 'the', 'woody', 'allen', 'movie', '||questionmark||', '||return||', '||return||', 'kramer:', 'pretty', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'in', 'the', 'movie', '||questionmark||', 'is', 'he', 'in', 'the', 'scene', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', "it's", 'me', 'and', 'him', '||period||', 'i', 'might', 'have', 'a', 'whole', 'new', 'career', 'on', 'my', 'hands', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'mean', '*a*', 'career', '||period||', '||return||', '||return||', 'elaine:', 'so', 'was', 'mia', 'farrow', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'i', "didn't", 'see', 'him', '||period||', '||return||', '||return||', 'elaine:', "what's", 'your', 'line', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', 'uh', '||comma||', 'okay', "i'm", 'there', 'with', '||comma||', 'uh', '||comma||', 'woody', '||comma||', 'you', 'know', '||comma||', "i'm", 'at', 'this', 'bar', 'and', '||comma||', 'uh', '||comma||', "i'm", 'sit', '||dash||', '||dash||', 'you', 'know', "it's", 'woody', 'allen', '||comma||', 'did', 'i', 'mention', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', "i'm", 'sitting', 'there', 'with', 'woody', 'and', 'i', 'say', '||comma||', 'i', 'turn', 'to', 'him', 'and', 'i', 'go', '||comma||', '||quotemark||', 'boy', '||comma||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'is', 'that', 'how', "you're", 'gonna', 'say', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', "i'm", 'working', 'on', 'it', '||period||', '||return||', '||return||', 'elaine:', 'do', 'it', 'like', 'this', '||period||', '||quotemark||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||quotemark||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'see', '||comma||', "that's", 'no', 'good', '||period||', 'see', '||comma||', 'you', "don't", 'know', 'how', 'to', 'act', '||period||', '||return||', '||return||', 'george:', '||quotemark||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george:', 'that', 'was', 'no', 'good', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'gonna', 'go', 'break', 'up', 'with', 'owen', '||period||', '||return||', '||return||', 'george:', 'what', 'was', 'wrong', 'with', 'that', '||questionmark||', 'i', 'had', 'a', 'different', 'interpretation', '||exclammark||', 'do', 'you', 'know', 'anything', 'about', 'this', 'pretzel', 'guy', '||questionmark||', '||exclammark||', 'maybe', "he's", 'been', 'in', 'the', 'bar', 'a', 'really', 'long', 'time', 'and', "he's", 'really', 'depressed', 'because', 'he', 'has', 'no', 'job', 'and', 'no', 'woman', 'and', "he's", 'parking', 'cars', 'for', 'a', 'living', '||exclammark||', '||leftparen||', 'out', 'the', 'window', 'to', 'honking', 'cars', '||rightparen||', 'alright', '||exclammark||', 'alright', '||exclammark||', 'shut', 'up', '||exclammark||', 'shut', 'up', '||exclammark||', 'i', 'hear', 'you', '||exclammark||', "i'm", 'coming', 'down', '||exclammark||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'elaine:', 'call', 'an', 'ambulance', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'he', 'took', 'it', 'hard', '||period||', '||return||', '||return||', 'elaine:', 'we', 'were', 'walking', 'down', 'the', 'block', 'right', 'by', 'your', 'house', 'and', 'i', 'was', 'just', 'about', 'to', 'break', 'up', 'with', 'him', 'then', 'all', 'of', 'a', 'sudden', 'he', 'started', 'to', 'twitch', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', 'yes', '||comma||', 'i', 'need', 'an', 'ambulance', 'at', 'one', 'twenty', 'nine', 'west', 'eighty', '||dash||', 'first', 'street', '||comma||', 'apartment', 'five', '||dash||', 'a', '||period||', '||return||', '||return||', 'elaine:', 'tell', 'then', 'to', 'hurry', '||exclammark||', 'hurry', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', "it's", 'an', 'ambulance', '||period||', '||leftparen||', 'to', 'the', 'operator', '||rightparen||', 'i', "don't", 'know', 'but', "he's", 'unconscious', '||period||', '||return||', '||return||', 'kramer:', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||leftparen||', 'he', 'bites', 'into', 'a', 'pretzel', '||period||', '||rightparen||', 'boy', '||comma||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'what', 'happened', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', "don't", 'know', '||comma||', 'what', 'should', 'we', 'do', '||questionmark||', 'we', 'called', 'an', 'ambulance', '||comma||', 'does', 'anyone', 'know', 'first', 'aid', '||questionmark||', '||return||', '||return||', 'jerry:', "shouldn't", 'you', 'do', 'something', 'with', 'the', 'extremities', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'extremities', '||questionmark||', '||return||', '||return||', 'kramer:', "what's", 'an', 'extremity', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'raise', 'the', 'feet', '||comma||', 'get', 'blood', 'to', 'the', 'head', '||period||', '||return||', '||return||', 'kramer:', 'you', 'raise', 'the', 'head', '||comma||', 'you', 'get', 'blood', 'to', 'the', 'feet', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'what', 'about', 'a', 'cold', 'compress', '||questionmark||', 'they', 'always', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'a', 'washcloth', '||period||', '||return||', '||return||', 'elaine:', 'well', 'use', 'a', 'paper', 'towel', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'put', 'a', 'paper', 'towel', 'on', 'his', 'head', '||period||', '||return||', '||return||', 'kramer:', 'what', 'about', 'a', 'big', 'sponge', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'you', 'gonna', 'hold', 'it', 'on', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'use', 'a', 'belt', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', 'no', '||comma||', "that'll", '||comma||', "it'll", 'drip', 'all', 'over', 'him', '||period||', '||return||', '||return||', 'jerry:', 'should', 'we', 'walk', 'him', 'around', '||questionmark||', '||return||', '||return||', 'elaine', 'and', 'kramer:', '||leftparen||', 'at', 'the', 'same', 'time', '||rightparen||', 'yes', '||comma||', 'yes', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i've", 'seen', 'them', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', "that's", 'for', 'a', 'drug', 'overdose', '||period||', '||return||', '||return||', 'kramer:', 'maybe', "that's", 'what', "he's", 'got', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', '||comma||', 'kramer', '||comma||', 'i', 'just', 'had', 'lunch', 'with', 'him', '||comma||', 'he', "didn't", 'leave', 'the', 'table', '||period||', '||return||', '||return||', 'kramer:', 'well', 'he', 'could', 'have', 'dropped', 'acid', 'when', 'you', "weren't", 'looking', '||period||', '||return||', '||return||', 'elaine:', 'he', 'is', 'not', 'a', 'drug', 'addict', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'know', 'what', '||questionmark||', 'maybe', "he's", 'a', 'diabetic', '||comma||', 'he', 'might', 'just', 'need', 'a', 'cookie', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'a', 'cookie', '||exclammark||', '||return||', '||return||', 'kramer:', 'can', 'you', 'give', 'him', 'a', 'cookie', '||questionmark||', '||return||', '||return||', 'elaine:', "how's", 'he', 'gonna', 'chew', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "we'll", 'move', 'his', 'teeth', '||comma||', 'it', 'happened', 'to', 'my', 'uncle', '||comma||', 'the', 'sugar', 'revived', 'him', '||period||', '||return||', '||return||', 'elaine:', 'careful', '||comma||', "you're", 'getting', 'crumbs', 'all', 'over', 'him', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'him', 'chewing', 'but', 'i', "don't", 'think', "he's", 'gonna', 'swallow', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||comma||', "let's", 'put', 'a', 'few', 'cookies', 'in', 'a', 'blender', 'and', 'he', 'could', 'drink', 'it', '||period||', '||return||', '||return||', 'jerry:', 'cookies', "don't", 'liquefy', '||period||', '||return||', '||return||', 'elaine:', 'yes', 'they', 'do', '||comma||', 'you', 'can', 'liquefy', 'a', 'cookie', '||period||', '||return||', '||return||', 'kramer:', 'alright', "i'll", 'get', 'a', 'blender', '||period||', '||return||', '||return||', 'jerry:', 'what', 'blender', '||questionmark||', 'i', "don't", 'have', 'a', 'blender', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'a', 'blender', '||period||', '||return||', '||return||', 'jerry:', 'i', 'would', 'know', 'if', 'i', 'had', 'a', 'blender', '||period||', '||return||', '||return||', 'elaine:', 'where', 'is', 'the', 'ambulance', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'phone', '||rightparen||', 'hello', '||comma||', 'yes', '||comma||', 'i', 'called', 'for', 'an', 'ambulance', 'like', 'thirty', '||dash||', 'five', 'minutes', 'ago', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', "what's", 'going', 'on', 'out', 'here', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'an', 'emergency', '||comma||', "what's", 'taking', 'so', 'long', '||questionmark||', '||leftparen||', 'the', 'door', 'buzzer', 'buzzes', '||rightparen||', 'wait', 'a', 'second', '||comma||', 'maybe', "that's", 'them', '||period||', '||leftparen||', 'presses', 'button', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'voice:', 'paramedics', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', 'okay', '||comma||', "they're", 'here', '||period||', '||return||', '||return||', 'elaine:', 'he', 'seems', 'to', 'be', 'breathing', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'know', '||comma||', 'i', 'gotta', 'tell', 'you', '||comma||', "he's", 'a', 'pretty', 'good', '||dash||', 'looking', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'those', 'eyebrows', 'could', 'use', 'a', 'trimming', '||comma||', 'you', 'ever', 'mention', 'that', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'almost', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'look', 'at', 'this', '||comma||', "c'mon", '||comma||', 'running', 'wild', 'there', '||period||', '||return||', '||return||', 'elaine:', "it's", 'not', 'an', 'easy', 'thing', 'to', 'bring', 'up', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'true', '||period||', '||return||', '||return||', 'elaine:', 'aw', '||comma||', 'you', 'should', 'see', 'his', 'bathrobe', '||comma||', 'man', '||comma||', "it's", 'all', 'silk', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', 'does', 'he', 'wear', 'slippers', '||questionmark||', 'i', 'bet', 'he', 'wears', 'slippers', '||period||', '||return||', '||return||', 'elaine:', 'he', 'does', '||comma||', "how'd", 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'could', 'tell', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||comma||', 'what', 'took', 'you', 'so', 'long', '||questionmark||', '||exclammark||', '||return||', '||return||', 'paramedic:', 'we', 'got', 'here', 'twenty', 'minutes', 'ago', 'but', 'we', "couldn't", 'move', '||comma||', 'the', 'whole', 'intersection', 'is', 'gridlocked', '||comma||', "i've", 'never', 'seen', 'anything', 'like', 'it', '||period||', 'so', 'finally', 'we', 'make', 'the', 'turn', 'and', 'this', 'guy', "who's", 'running', 'around', 'triple', '||dash||', 'parking', 'cars', 'slammed', 'into', 'us', 'with', 'a', 'blue', 'escort', '||period||', '||return||', '||return||', 'jerry:', 'blue', 'escort', '||questionmark||', "that's", 'my', 'rent', '||dash||', 'a', '||dash||', 'car', '||exclammark||', '||return||', '||return||', 'george:', 'oh', 'man', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'the', 'car', '||questionmark||', '||return||', '||return||', 'george:', 'sorry', '||comma||', 'you', "don't", 'know', "what's", 'going', 'on', 'out', 'there', '||exclammark||', '||leftparen||', 'looks', 'at', 'owen', '||rightparen||', "who's", 'he', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'guy', "i'm", 'seeing', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', "don't", 'know', '||exclammark||', '||return||', '||return||', 'paramedic:', 'who', 'put', 'cookies', 'in', 'his', 'mouth', '||questionmark||', '||return||', '||return||', 'jerry', 'and', 'elaine:', 'cookies', '||questionmark||', '||return||', '||return||', 'paramedic:', "you're", 'not', 'supposed', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'so', "how'd", 'you', 'hit', 'the', 'car', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'moving', 'it', 'across', 'the', 'street', '||comma||', 'i', 'looked', 'up', 'and', 'i', 'saw', 'woody', 'allen', 'and', 'i', 'got', 'all', 'distracted', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'even', 'my', 'car', '||comma||', "it's", 'a', 'rental', '||period||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'doing', 'out', 'there', '||questionmark||', '||exclammark||', "you're", 'holding', 'up', 'the', 'production', 'of', 'the', 'movie', '||exclammark||', 'we', "can't", 'shoot', 'and', 'woody', '||comma||', "he's", 'really', 'mad', 'at', 'you', '||period||', '||return||', '||return||', 'george:', 'woody', 'mentioned', 'me', '||questionmark||', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'said', '||comma||', "'who's", 'the', 'moron', 'in', 'the', 'blue', 'jacket', "who's", 'got', 'the', 'street', 'all', 'screwed', 'up', '||questionmark||', "'", '||return||', '||return||', 'george:', 'should', 'i', 'apologize', 'to', 'woody', '||questionmark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "i'll", 'tell', 'you', 'what', '||period||', 'next', 'time', 'i', 'talk', 'to', 'him', '||comma||', 'maybe', "i'll", 'bring', 'it', 'up', '||period||', "i'll", 'feel', 'him', 'out', '||period||', '||return||', '||return||', 'sid:', 'now', 'you', "didn't", 'tell', 'me', 'you', "didn't", 'know', 'how', 'to', 'drive', '||period||', 'you', 'should', 'have', 'mentioned', 'that', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'know', 'how', 'to', 'drive', '||period||', '||return||', '||return||', 'sid:', 'then', "how'd", 'all', 'those', 'cars', 'get', 'damaged', '||questionmark||', 'why', 'are', 'people', 'calling', 'me', 'up', 'screaming', 'on', 'the', 'phone', '||questionmark||', 'most', 'of', 'them', 'cancelled', 'out', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'get', 'anybody', 'anything', '||questionmark||', '||return||', '||return||', 'sid:', 'moving', 'cars', 'from', 'one', 'side', 'of', 'the', 'street', 'to', 'the', 'other', "don't", 'take', 'no', 'more', 'sense', 'than', 'putting', 'on', 'a', 'pair', 'of', 'pants', '||period||', 'my', 'question', 'to', 'you', 'is', "who's", 'putting', 'your', 'pants', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'put', 'my', 'pants', 'on', '||comma||', 'sid', '||period||', '||return||', '||return||', 'sid:', 'i', "don't", 'believe', 'you', '||period||', 'if', 'you', 'can', 'put', 'your', 'pants', 'on', '||comma||', 'you', 'can', 'move', 'those', 'cars', '||period||', '||return||', '||return||', 'george:', 'well', 'i', "don't", 'want', 'to', 'get', 'into', 'a', 'big', 'dispute', 'about', 'the', 'pants', '||period||', '||return||', '||return||', 'sid:', "who's", 'gonna', 'send', 'money', 'to', 'my', 'sister', 'in', 'virginia', '||questionmark||', 'her', 'little', 'boy', 'needs', 'surgery', 'on', 'his', 'foot', '||period||', 'now', "he'll", 'be', 'walking', 'around', 'with', 'a', 'limp', 'because', 'you', "can't", 'park', 'a', 'few', 'cars', '||period||', '||return||', '||return||', 'george:', 'maybe', 'i', 'could', 'call', 'my', 'father', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'seen', 'the', 'paper', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'interestingly', 'enough', '||comma||', 'no', '||comma||', 'inasmuch', 'as', 'it', 'is', 'my', 'paper', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "there's", 'an', 'article', 'in', 'there', 'about', 'that', 'writer', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', '||rightparen||', 'owen', 'march', '||comma||', 'prominent', 'author', 'and', 'essayist', 'suffered', 'a', 'stroke', 'yesterday', 'in', 'the', 'upper', 'west', 'side', 'apartment', 'of', 'a', 'friend', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||comma||', "that's", 'the', 'guy', 'that', 'was', 'here', '||period||', "you're", 'the', 'friend', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continuing', '||rightparen||', 'the', 'extent', 'of', 'the', 'damage', 'would', 'have', 'been', 'far', 'less', 'severe', 'had', 'paramedics', 'been', 'able', 'to', 'reach', 'him', 'sooner', '||period||', '||return||', '||return||', 'sid:', 'oh', 'lord', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'finishing', '||rightparen||', 'the', 'commotion', 'also', 'delayed', 'production', 'of', 'a', 'woody', 'allen', 'movie', 'that', 'was', 'shooting', 'up', 'the', 'block', '||period||', 'a', 'spokeswoman', 'for', 'the', 'legendary', 'filmmaker', 'said', 'that', 'mr', '||period||', 'allen', 'was', 'extremely', 'agitated', 'and', 'wondered', 'if', 'his', 'days', 'of', 'shooting', 'movies', 'in', 'new', 'york', 'were', 'over', '||period||', '||return||', '||return||', 'elaine:', 'five', 'seconds', '||period||', 'jerry', '||comma||', 'i', 'was', 'five', 'seconds', 'away', 'from', 'breaking', 'up', 'with', 'him', '||period||', 'five', 'seconds', '||period||', 'the', 'next', 'words', 'out', 'of', 'my', 'mouth', 'were', '||comma||', "'owen", '||comma||', "it's", 'over', '||period||', "'", '||return||', '||return||', 'jerry:', 'can', 'he', 'communicate', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', '||comma||', 'he', 'nods', '||period||', 'and', 'i', 'think', 'he', 'understands', 'me', '||comma||', 'he', 'seems', 'to', 'enjoy', 'it', 'when', 'i', 'read', 'to', 'him', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "she's", 'free', '||period||', '||leftparen||', 'steps', 'up', 'to', 'the', 'counter', '||rightparen||', 'hi', '||comma||', 'i', 'called', 'before', '||comma||', 'uh', '||comma||', 'my', 'car', 'got', 'smashed', '||period||', '||return||', '||return||', 'elaine:', 'so', 'listen', '||comma||', 'what', 'should', 'i', 'do', '||questionmark||', 'i', 'mean', 'if', 'i', 'break', 'up', 'with', 'him', 'now', "it'll", 'look', 'like', "i'm", 'abandoning', 'him', 'because', 'of', 'his', 'condition', '||comma||', "i'll", 'be', 'ostracized', 'from', 'the', 'community', '||period||', '||return||', '||return||', 'jerry:', 'what', 'community', '||questionmark||', "there's", 'a', 'community', '||questionmark||', '||return||', '||return||', 'elaine:', 'of', 'course', "there's", 'a', 'community', '||period||', '||return||', '||return||', 'jerry:', 'all', 'these', 'years', "i'm", 'living', 'in', 'a', 'community', '||comma||', 'i', 'had', 'no', 'idea', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'sir', 'the', 'estimate', 'on', 'the', 'damage', 'to', 'your', 'car', 'is', 'two', 'thousand', 'eight', 'hundred', 'and', 'sixty', '||dash||', 'six', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||comma||', 'well', '||comma||', 'i', 'got', 'the', 'insurance', 'and', 'everything', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'yes', '||comma||', 'now', '||comma||', 'uh', '||comma||', 'in', 'your', 'report', 'you', 'said', 'that', 'you', 'were', 'not', 'the', 'driver', 'of', 'the', 'car', 'at', 'the', 'time', 'of', 'the', 'accident', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'right', '||comma||', 'somebody', 'else', 'was', 'driving', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'alright', '||comma||', 'well', '||comma||', 'sir', '||comma||', "you're", 'only', 'covered', 'for', 'when', "you're", 'driving', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||comma||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'rental', 'car', 'agent:', "you're", 'not', 'covered', 'for', 'other', 'drivers', '||period||', '||return||', '||return||', 'jerry:', 'other', 'drivers', '||questionmark||', '||return||', '||return||', 'rental', 'car', 'agent:', 'um', 'hm', '||period||', '||return||', '||return||', 'jerry:', 'your', 'whole', 'business', 'is', 'based', 'on', 'other', 'drivers', '||period||', "it's", 'a', 'rented', 'car', '||period||', "that's", "who's", 'driving', 'it', '||comma||', 'other', 'drivers', '||period||', "doesn't", 'my', 'credit', 'card', 'cover', 'me', 'or', 'something', '||questionmark||', '||return||', '||return||', 'rental', 'car', 'agent:', 'not', 'that', 'particular', 'one', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'got', 'a', 'hundred', 'cards', '||comma||', 'here', '||comma||', 'pick', 'a', 'card', '||comma||', 'take', 'a', 'card', '||comma||', 'any', 'card', 'you', 'want', '||comma||', 'go', 'ahead', '||comma||', 'whichever', 'one', '||comma||', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'rental', 'car', 'agent:', 'sir', '||comma||', 'if', 'you', 'had', 'read', 'the', 'rental', 'agreement', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'did', 'you', 'see', 'the', 'size', 'of', 'that', 'document', '||questionmark||', "it's", 'like', 'the', 'declaration', 'of', 'independence', '||comma||', "who's", 'gonna', 'read', 'that', '||questionmark||', '||return||', '||return||', 'rental', 'car', 'agent:', 'mr', '||period||', 'seinfeld', '||comma||', 'as', 'it', 'stands', 'right', 'now', '||comma||', 'you', 'are', 'not', 'covered', 'for', 'that', 'damage', 'and', 'there', 'is', 'absolutely', 'nothing', 'that', 'can', 'be', 'done', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||return||', '||return||', 'elaine:', 'ahh', '||comma||', "it's", 'good', '||comma||', "isn't", 'it', '||questionmark||', 'yankee', 'bean', '||period||', 'why', 'yankee', 'bean', '||comma||', 'huh', '||questionmark||', "don't", 'they', 'have', 'beans', 'in', 'the', 'south', '||questionmark||', 'i', 'mean', 'if', 'you', 'order', 'yankee', 'bean', 'in', 'the', 'south', '||comma||', 'are', 'they', 'offended', '||questionmark||', 'huh', '||questionmark||', '||leftparen||', 'singing', '||rightparen||', 'yankee', 'bean', '||comma||', 'yankee', 'bean', '||comma||', 'i', 'like', 'my', 'yankee', 'bean', '||period||', '||leftparen||', 'she', 'puts', 'the', 'bowl', 'down', 'and', 'wipes', "owen's", 'mouth', 'with', 'a', 'napkin', '||rightparen||', 'owen', '||comma||', 'i', 'think', 'we', 'have', 'to', 'talk', '||period||', 'i', 'mean', '||comma||', 'uh', '||comma||', '*i*', 'have', 'to', 'talk', '||period||', 'it', 'would', 'be', 'nice', 'if', '*we*', 'could', '||comma||', 'but', '||comma||', 'uh', '||comma||', 'whatever', '||period||', 'um', '||comma||', "don't", 'get', 'me', 'wrong', '||comma||', 'i', 'like', 'coming', 'here', '||comma||', 'and', 'uh', '||comma||', 'feeding', 'you', 'and', 'cleaning', 'a', 'little', '||comma||', 'and', 'paying', 'your', 'bills', '||comma||', "that's", 'good', 'stuff', '||period||', 'good', 'stuff', '||exclammark||', 'i', 'have', 'a', 'wonderful', 'time', 'when', "i'm", 'with', 'you', '||comma||', 'wonderful', '||exclammark||', 'but', 'at', 'this', 'point', 'in', 'my', 'life', '||comma||', "i'm", 'not', 'really', 'sure', 'that', "i'm", 'ready', 'to', 'make', 'a', 'commitment', 'to', 'one', 'person', '||period||', "i'm", 'just', 'not', 'really', 'sure', 'that', 'we', 'have', 'enough', 'in', 'common', '||period||', 'for', 'example', '||comma||', 'i', 'like', 'running', 'in', 'the', 'park', '||comma||', 'bicycling', '||comma||', 'roller', 'skating', '||comma||', 'tennis', 'and', 'skiing', '||comma||', 'and', 'um', '||comma||', 'well', '||comma||', "i'm", 'gonna', 'be', 'brutally', 'honest', 'with', 'you', 'now', '||comma||', 'owen', '||comma||', "it's", 'a', 'bitch', 'to', 'get', 'here', '||period||', "it's", 'two', 'subways', '||period||', 'i', 'have', 'to', 'transfer', 'at', 'forty', '||dash||', 'second', 'street', 'to', 'take', 'the', 'double', '||dash||', 'r', '||period||', 'anyway', '||comma||', 'i', 'mean', '||comma||', 'this', "doesn't", 'mean', 'we', "can't", 'be', 'friends', '||period||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||period||', '||return||', '||return||', 'elaine:', 'can', 'you', 'die', 'from', 'an', 'odor', '||questionmark||', 'i', 'mean', '||comma||', 'like', 'if', 'you', 'were', 'locked', 'in', 'a', 'vomitorium', 'for', 'two', 'weeks', '||comma||', 'could', 'you', 'actually', 'die', 'from', 'the', 'odor', '||questionmark||', '||return||', '||return||', 'jerry:', 'an', 'overdose', 'of', 'odor', '||questionmark||', 'good', 'question', '||period||', '||return||', '||return||', 'george:', 'do', 'i', 'smell', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', '||comma||', 'i', 'was', 'just', 'down', 'on', 'the', 'forty', '||dash||', 'second', 'street', 'subway', 'today', '||comma||', 'it', 'is', 'disgusting', '||period||', 'guess', 'who', 'i', 'bumped', 'into', '||period||', 'owen', '||period||', '||return||', '||return||', 'jerry:', 'ahh', '||period||', '||return||', '||return||', 'george:', "he's", 'alright', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "he's", 'almost', 'fully', 'recovered', '||period||', 'he', 'told', 'me', 'he', 'was', 'just', 'using', 'me', 'for', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'get', 'that', '||period||', '||return||', '||return||', 'george:', 'no', 'no', 'no', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'please', '||period||', '||return||', '||return||', 'george:', 'no', 'come', 'on', '||comma||', 'let', 'me', '||comma||', 'let', 'me', '||period||', 'i', 'smashed', 'your', 'car', '||comma||', 'it', 'cost', 'you', 'over', 'two', 'thousand', 'dollars', '||comma||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'yeah', '||comma||', 'a', 'cup', 'of', 'coffee', 'should', 'cover', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'fired', 'from', 'the', 'movie', '||period||', '||return||', '||return||', 'george:', 'get', 'out', 'of', 'here', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', 'they', 'were', 'gonna', 'shoot', 'it', 'today', '||comma||', 'and', 'uh', '||comma||', 'we', 'rehearsed', 'it', 'twice', '||comma||', 'then', 'woody', 'yells', "'action", '||exclammark||', "'", 'and', 'i', 'turn', 'to', 'him', 'and', 'i', 'say', '||comma||', "'these", 'pretzels', 'are', 'making', 'me', "thirsty'", 'and', 'i', 'took', 'a', 'swig', 'of', 'beer', '||comma||', 'ya', 'know', '||comma||', 'and', 'i', 'slammed', 'the', 'glass', 'down', 'on', 'the', 'bar', 'and', 'it', 'shattered', '||period||', '||return||', '||return||', 'elaine:', 'aww', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'one', 'of', 'the', 'pieces', 'must', 'have', 'hit', 'woody', '||period||', 'he', 'started', 'crying', '||period||', 'and', 'he', 'yells', 'out', '||comma||', "'i'm", "bleeding'", 'and', 'he', 'runs', 'off', '||period||', 'anyway', '||comma||', 'this', 'woman', '||comma||', 'she', 'came', 'up', 'to', 'me', 'and', 'she', 'says', '||comma||', "'you're", 'fired', '||period||', "'", 'boy', 'i', 'really', 'nailed', 'that', 'scene', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'wait', 'a', '||dash||', '||dash||', '||period||', 'oh', '||period||', 'oh', '||comma||', 'for', 'crying', 'out', 'loud', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', "it's", 'gotta', 'be', 'a', 'little', 'bit', 'of', 'a', 'scary', 'place', 'to', 'work', '||period||', 'i', "don't", 'know', 'how', 'you', 'feel', 'about', 'it', '||period||', 'you', 'want', 'to', 'be', 'standing', 'there', 'having', 'people', 'comming', 'in', 'all', 'day', 'going', '||quotemark||', 'i', 'need', 'knives', '||period||', 'i', 'need', 'more', 'knives', '||period||', 'do', 'you', 'have', 'any', 'bigger', 'knives', '||questionmark||', "i'd", 'like', 'a', 'bigger', 'knife', '||comma||', 'a', 'big', '||comma||', 'long', '||comma||', 'sharp', 'knife', '||comma||', "that's", 'what', "i'm", 'in', 'the', 'market', 'for', '||period||', 'i', 'like', 'them', 'really', 'sharp', '||period||', 'do', 'you', 'have', 'one', 'with', 'hooks', 'and', 'gouges', 'like', 'blades', 'and', 'kind', 'of', 'serrated', '||questionmark||', "that's", 'the', 'kind', 'of', 'knife', "i'm", 'looking', 'for', '||period||', 'i', 'need', 'one', 'i', 'can', 'throw', '||period||', 'i', 'need', 'another', 'one', 'i', 'can', 'just', 'hack', 'away', 'with', '||period||', 'do', 'you', 'have', 'anything', 'like', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'like', 'you', 'know', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'george:', 'like', 'you', 'do', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'do', 'you', 'think', '||questionmark||', 'they', 'put', 'the', 'statue', 'on', 'a', 'giant', 'raft', 'and', 'a', 'tugboat', 'pulled', 'it', 'all', 'the', 'way', 'from', 'france', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'think', '||questionmark||', 'the', 'brought', 'it', 'over', 'in', 'pieces', 'and', 'screwed', 'it', 'together', 'like', 'a', 'coffee', 'table', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', "it's", 'too', 'early', 'for', 'a', 'christmas', 'party', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'did', 'france', 'give', 'that', 'to', 'us', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'gift', '||period||', '||return||', '||return||', 'george:', 'so', 'countries', 'just', 'exchange', 'gifts', 'like', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'they', 'like', 'each', 'other', '||period||', '||return||', '||return||', 'george:', "there's", 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'see', 'that', 'guy', "he's", 'talking', 'with', '||questionmark||', "that's", 'her', 'new', 'boyfriend', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'they', 'work', 'here', 'in', 'the', 'office', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "they're", 'having', 'a', 'little', 'fling', 'so', "don't", 'say', 'anything', '||period||', '||return||', '||return||', 'george:', 'who', 'am', 'i', 'going', 'to', 'tell', '||questionmark||', 'my', 'mother', '||questionmark||', 'like', "i've", 'got', 'nothing', 'better', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", '||period||', "he's", 'a', 'recovering', 'alcoholic', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "he's", 'been', 'off', 'the', 'wagon', 'for', 'two', 'years', '||period||', '||return||', '||return||', 'george:', '||quotemark||', 'off', 'the', 'wagon', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "it's", 'off', 'the', 'wagon', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "it's", '||quotemark||', 'on', 'the', 'wagon', '||quotemark||', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'george', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'doing', 'here', '||questionmark||', 'ba', '||dash||', 'boom', '||leftparen||', 'holding', 'out', 'a', 'present', '||rightparen||', '||return||', '||return||', 'elaine:', '*gasp*', 'my', 'god', '||exclammark||', 'my', 'watch', '||exclammark||', 'you', 'found', 'my', 'watch', '||exclammark||', '||leftparen||', 'pushing', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', 'keep', 'your', 'hands', 'to', 'yourself', 'if', 'you', 'know', "what's", 'good', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'where', 'did', 'you', 'find', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'under', 'the', 'sofa', 'cushion', '||period||', '||return||', '||return||', 'elaine:', 'and', 'you', 'stopped', 'by', 'just', 'to', 'give', 'it', 'to', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'your', 'christmas', 'present', '||period||', '||return||', '||return||', 'elaine:', 'i', 'though', "i'd", 'never', 'find', 'it', '||period||', '||return||', '||return||', 'george:', 'well', "today's", 'your', 'lucky', 'day', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', "today's", '*your*', 'lucky', 'day', '||period||', '||return||', '||return||', 'george:', 'it', 'will', 'be', 'my', 'first', 'one', '||period||', '||return||', '||return||', 'elaine:', 'you', 'want', 'to', 'work', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', 'one', 'of', 'the', 'readers', 'left', 'and', "there's", 'a', 'job', 'opening', '||period||', 'dick', '||comma||', 'this', 'is', 'jerry', 'and', 'this', 'is', 'george', '||period||', '||return||', '||return||', 'dick:', 'hi', 'nice', 'to', 'meet', 'you', '||period||', 'is', 'this', 'the', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'the', 'guy', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'softly', 'to', 'dick', '||rightparen||', 'dick', '||period||', '||return||', '||return||', 'george:', 'how', 'can', 'you', 'just', 'get', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', 'boss', 'told', 'me', 'to', 'find', 'someone', '||period||', "i'm", 'in', 'charge', 'of', 'it', '||period||', 'all', 'you', 'have', 'to', 'do', 'is', 'meet', 'him', '||period||', 'come', 'on', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||comma||', 'here', 'hold', 'my', 'drink', '||period||', '||return||', '||return||', 'jerry:', 'cranberry', 'juice', '||questionmark||', '||return||', '||return||', 'elaine:', 'and', 'vodka', '||period||', '||return||', '||return||', 'dick:', 'i', 'got', 'the', 'cranberry', 'juice', '||period||', '||return||', '||return||', 'dick:', 'so', '||period||', '||period||', '||period||', "you're", 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'so', '||period||', '||period||', '||period||', "i'm", 'jerry', '||period||', '||leftparen||', 'he', 'puts', 'down', 'the', 'drink', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'lippman:', '||leftparen||', 'what', 'is', 'his', 'name', '||questionmark||', '||rightparen||', 'so', 'have', 'you', 'ever', 'done', 'this', 'kind', 'of', 'work', 'before', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', 'book', 'reports', '||period||', 'that', 'kind', 'of', 'stuff', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'how', 'do', 'you', 'read', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'like', 'mike', 'lubika', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'mike', 'lubika', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'a', 'sports', 'writer', 'for', 'the', 'daily', 'news', '||period||', 'i', 'find', 'him', 'very', 'insightful', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'mean', 'authors', '||period||', '||return||', '||return||', 'george:', 'lot', 'of', 'good', 'ones', '||period||', 'i', "don't", 'even', 'want', 'to', 'mention', 'anyone', 'because', "i'm", 'afraid', "i'm", 'going', 'to', 'leave', 'somebody', 'out', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'name', 'a', 'couple', '||period||', '||return||', '||return||', 'george:', 'who', 'do', 'i', 'like', '||questionmark||', 'i', '||comma||', 'like', '||comma||', 'uh', '||comma||', 'art', '||comma||', 'vandelay', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'art', 'vandelay', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'an', 'obscure', 'writer', '||period||', 'betnik', '||comma||', 'on', 'the', 'village', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'what', 'has', 'he', 'written', '||questionmark||', '||return||', '||return||', 'george:', 'venetian', 'blinds', '||period||', '||return||', '||return||', 'dick:', '||leftparen||', 'picking', 'up', 'the', 'drink', '||rightparen||', "i've", 'got', 'new', 'for', 'you', '||period||', "i'm", 'funnier', 'than', 'you', 'are', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'get', 'we', 'together', 'new', 'years', 'day', 'and', 'watch', 'some', 'football', '||period||', '||return||', '||return||', 'elaine:', "where's", 'my', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', '||period||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', 'so', '||comma||', 'how', 'did', 'it', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'he', 'was', 'impressed', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'this', 'is', 'just', 'cranberry', 'juice', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'uh', '||comma||', 'i', 'think', 'maybe', 'dick', 'picked', 'up', 'yours', '||period||', '||return||', '||return||', 'elaine:', 'dick', '||questionmark||', 'he', "can't", 'drink', '||period||', "he's", 'an', 'alcoholic', '||period||', 'i', 'told', 'you', 'to', 'hold', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'you', 'meant', '*hold*', 'it', '||comma||', 'i', 'thought', 'you', 'meant', 'hold', 'it', '||period||', '||return||', '||return||', 'elaine:', 'one', 'drink', 'like', 'that', 'and', 'he', 'could', 'fall', 'right', 'off', 'the', 'wagon', '||period||', '||return||', '||return||', 'george:', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'feel', 'comfortable', 'in', 'the', "women's", 'department', '||period||', 'i', 'feel', 'like', "i'm", 'just', 'a', '*little*', 'too', 'close', 'to', 'trying', 'on', 'a', 'dress', '||period||', '||return||', '||return||', 'george:', 'do', 'i', 'really', 'have', 'to', 'buy', 'her', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'the', 'woman', 'got', 'you', 'a', 'job', '||period||', 'the', 'least', 'you', 'could', 'do', 'is', 'buy', 'her', 'a', 'gift', '||period||', 'how', 'about', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||questionmark||', 'is', 'that', 'cashmere', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'she', 'would', 'love', 'cashmere', '||period||', '||return||', '||return||', 'george:', 'who', "doesn't", 'like', 'cashmere', '||questionmark||', 'find', 'me', 'one', 'person', 'in', 'the', 'world', 'that', "doesn't", 'like', 'cashmere', '||period||', "it's", 'too', 'expensive', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', '||period||', "it's", '85', 'dollars', 'marked', 'down', 'from', '600', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', 'excuse', 'me', '||comma||', 'miss', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'yes', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'come', 'this', 'sweater', 'is', 'only', '85', 'dollars', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', '||leftparen||', 'showing', 'the', 'dot', '||rightparen||', 'oh', '||comma||', 'here', '||period||', 'this', 'is', 'why', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'i', "don't", 'see', 'anything', '||period||', '||return||', '||return||', 'sales', 'woman:', 'see', 'this', 'red', 'dot', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'oh', "it's", 'damaged', '||period||', '||leftparen||', 'grabbing', 'the', 'sweater', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'grabbing', 'the', 'sweater', 'back', '||rightparen||', 'well', "it's", 'not', 'really', 'damaged', '||period||', '85', 'dollars', 'huh', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', "there's", 'no', 'exchanges', 'on', 'this', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'she', 'would', 'care', 'about', 'the', 'red', 'dot', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'hard', 'to', 'say', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'think', "she'd", 'notice', 'it', '||period||', 'can', 'you', 'see', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'can', 'see', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'but', 'you', 'know', 'where', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', 'not', 'look', 'at', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'pretend', 'you', "didn't", 'know', 'it', 'was', 'there', '||period||', 'can', 'you', 'see', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'hard', 'to', 'pretend', 'because', 'i', 'know', 'where', 'it', 'is', '||period||', '||return||', '||return||', 'george:', 'well', 'just', 'take', 'an', 'overview', '||period||', "can't", 'you', 'just', 'take', 'an', 'overview', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'want', 'me', 'to', 'take', 'an', 'overview', '||questionmark||', '||return||', '||return||', 'george:', 'please', '||period||', '||return||', '||return||', 'jerry:', 'i', 'see', 'a', 'very', 'cheap', 'man', 'holding', 'a', 'sweater', 'trying', 'to', 'get', 'away', 'with', 'something', '||period||', "that's", 'my', 'overview', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'acting', 'very', 'strangely', '||period||', 'i', 'think', 'he', 'started', 'drinking', 'again', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'boy', '||comma||', 'can', 'you', 'smell', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'i', "can't", 'smell', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', 'if', 'you', "can't", 'smell', 'it', 'then', 'he', "hasn't", 'been', 'drinking', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'always', 'smell', 'someone', 'from', 'a', 'drink', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'you', 'do', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'one', 'drink', '||questionmark||', 'would', 'you', 'smell', 'it', 'from', 'one', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'you', 'would', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'prove', 'it', '||period||', 'would', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', '||return||', '||return||', 'kramer:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'would', 'you', 'take', 'a', 'drink', 'and', 'let', 'us', 'smell', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'can', 'smell', 'me', 'without', 'the', 'drink', '||period||', '||return||', '||return||', 'elaine:', 'i', 'suspect', 'that', 'this', 'guy', "i'm", 'seeing', 'might', 'be', 'drinking', 'but', 'i', "can't", 'smell', 'it', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'well', 'what', 'am', 'i', 'drinking', '||questionmark||', 'what', 'do', 'you', 'got', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'a', 'bottle', 'of', 'scotch', 'my', 'uncle', 'gave', 'me', '||period||', "it's", 'hennigans', '||period||', "it's", 'been', 'here', 'for', 'two', 'years', '||period||', "i've", 'been', 'using', 'it', 'as', 'a', 'paint', 'thinner', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'smell', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'maybe', "we're", 'too', 'close', 'to', 'the', 'bottle', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'that', 'is', '*damn*', 'good', 'scotch', '||period||', 'i', 'could', 'do', 'a', 'commercial', 'for', 'this', 'stuff', '||period||', 'mmmmm', '||comma||', 'boy', 'that', 'hennigans', 'goes', 'down', 'smooth', '||period||', 'and', 'afterwords', 'you', "don't", 'even', 'smell', '||period||', "that's", 'right', 'folks', '||period||', 'i', 'just', 'had', 'three', 'shots', 'of', 'hennigans', 'and', 'i', "don't", 'smell', '||period||', 'imagine', '||comma||', 'you', 'can', 'walk', 'around', 'drunk', 'all', 'day', '||period||', "that's", 'hennigans', '||comma||', 'the', 'no', '||dash||', 'smell', '||comma||', 'no', '||dash||', 'tell', 'scotch', '||period||', '||return||', '||return||', 'george:', 'hello', 'everybody', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||leftparen||', 'snuggling', 'really', 'close', 'to', 'george', '||rightparen||', "i'm", 'going', 'to', 'tell', 'you', 'what', 'i', 'think', '||period||', 'i', 'know', 'you', "don't", 'care', 'what', 'i', 'think', '||comma||', 'but', "i'm", 'going', 'to', 'tell', 'you', '||period||', 'i', 'think', 'that', 'you', 'are', 'terrific', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'uncomfortablly', '||rightparen||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', 'hey', "what's", 'that', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'an', 'early', 'christmas', 'present', '||period||', '||return||', '||return||', 'elaine:', 'christmas', 'present', '||questionmark||', 'for', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', '*gasp*', '||leftparen||', 'pushing', 'george', '||rightparen||', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'say', 'you', 'got', 'a', 'big', 'job', 'interview', '||comma||', 'and', "you're", 'a', 'little', 'nervous', '||period||', 'well', 'throw', 'back', 'a', 'couple', 'shots', 'of', 'hennigans', 'and', "you'll", 'be', 'as', 'loose', 'as', 'a', 'goose', 'and', 'ready', 'to', 'roll', 'in', 'no', 'time', '||period||', 'and', 'because', "it's", 'odorless', '||comma||', 'why', '||comma||', 'it', 'will', 'be', 'our', 'little', 'secret', '||period||', '||leftparen||', 'singing', '||rightparen||', 'h', '||dash||', 'e', '||dash||', 'double', 'n', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', 'yeah', "that'll", 'do', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'opening', 'the', 'present', '||rightparen||', 'oh', 'george', '||comma||', 'this', 'is', 'beautiful', '||period||', 'is', 'this', 'cashmere', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', "it's", 'cashmere', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'love', 'cashmere', '||period||', '||return||', '||return||', 'george:', 'well', 'who', "doesn't", '||period||', '||return||', '||return||', 'elaine:', 'my', '||comma||', 'george', 'this', 'must', 'have', 'cost', 'a', 'fortune', '||period||', '||return||', '||return||', 'george:', 'ahh', '||comma||', 'money', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'how', 'could', 'you', 'let', 'him', 'spend', 'so', 'much', 'money', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'tried', 'to', 'stop', 'him', '||period||', 'i', "couldn't", '||period||', 'he', 'just', 'wants', 'to', 'make', 'people', 'happy', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'this', 'is', 'one', 'of', 'the', 'nicest', 'things', 'anyone', 'has', 'ever', 'given', 'me', '||period||', '||return||', '||return||', 'george:', 'well', 'good', '||comma||', 'good', '||period||', 'take', 'it', 'off', "you're", 'going', 'to', 'wear', 'it', 'out', 'already', '||period||', "it's", 'for', 'special', 'occasions', 'this', 'thing', '||period||', '||return||', '||return||', 'kramer:', "what's", 'that', 'red', 'dot', 'on', 'your', 'sweater', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'take', 'it', 'off', '||period||', "i'm", 'getting', 'hot', 'just', 'looking', 'at', 'it', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||period||', 'this', '||period||', "it's", 'like', 'a', 'red', 'dot', '||period||', '||return||', '||return||', 'george:', 'what', 'red', 'dot', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'jerry', 'come', 'here', 'for', 'a', 'second', '||period||', 'do', 'you', 'see', 'anything', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'uncomfortable', '||rightparen||', 'uh', '||comma||', 'i', "don't", 'know', '||period||', 'uh', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'what', "don't", 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'well', 'do', 'you', 'see', 'it', 'or', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'ahem', '||period||', 'say', 'that', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'see', 'it', 'or', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'i', 'see', 'it', '||period||', '||period||', '||period||', 'or', "don't", 'i', '||questionmark||', "that's", 'the', 'question', '||period||', '||return||', '||return||', 'jerry:', 'now', 'what', 'did', 'you', 'ask', 'me', 'again', '||period||', '||return||', '||return||', 'elaine:', "you're", 'still', 'here', '||period||', "you're", 'a', 'dynamo', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'i', 'get', 'paid', 'for', 'this', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'see', 'you', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'cleaning', 'woman:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'you', 'had', 'sex', 'with', 'the', 'cleaning', 'woman', 'on', 'your', 'desk', '||questionmark||', 'who', 'are', 'you', '||comma||', 'how', 'did', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'hennigans', '||period||', 'i', 'was', 'there', 'sitting', 'in', 'the', 'office', 'and', 'the', 'cleaning', 'woman', 'comes', 'in', '||period||', "i've", 'always', 'been', 'attracted', 'to', 'cleaning', 'women', '||period||', 'cleaning', 'women', '||comma||', 'chambermaids', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'chambermaids', '||comma||', "i'm", 'attracted', 'to', 'them', 'too', '||period||', '||return||', '||return||', 'george:', 'why', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'woman', 'in', 'your', 'room', '||period||', 'so', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'so', 'she', 'starts', 'vaccuming', '||comma||', 'back', 'and', 'forth', '||comma||', 'back', 'and', 'forth', '||comma||', 'her', 'hips', 'swivelling', '||comma||', 'her', 'breasts', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'trying', 'to', 'think', 'of', 'a', 'word', '||rightparen||', '||return||', '||return||', 'jerry:', 'convulsing', '||questionmark||', '||return||', '||return||', 'george:', 'convulsing', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', "i'm", 'trying', 'to', 'help', 'you', '||period||', '||return||', '||return||', 'george:', 'then', 'i', 'asked', 'her', 'if', 'she', 'wanted', 'a', 'drink', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'drink', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'but', 'i', "couldn't", 'think', 'of', 'anything', 'else', 'to', 'say', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'started', 'drinking', '||period||', '||return||', '||return||', 'george:', 'so', 'we', 'started', 'drinking', '||comma||', 'and', "i'll", 'tell', 'you', 'i', "don't", 'know', 'if', 'it', 'was', 'the', 'alcohol', 'or', 'the', 'ammonia', '||comma||', 'but', 'the', 'next', 'think', 'i', 'knew', 'she', 'was', 'mopping', 'the', 'floor', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'so', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'the', 'sex', 'was', 'okay', '||comma||', 'but', 'i', 'threw', 'up', 'from', 'the', 'hennigans', '||period||', '||return||', '||return||', 'jerry:', 'good', 'thing', 'the', 'cleaning', 'lady', 'was', 'there', '||period||', '||return||', '||return||', 'elaine:', 'dick', 'was', 'fired', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'to', 'tell', 'me', 'if', 'i', 'had', 'put', 'that', 'drink', 'six', 'inches', 'over', 'to', 'the', 'right', '||comma||', 'and', 'none', 'of', 'this', 'would', 'have', 'happened', '||period||', '||return||', '||return||', 'elaine:', 'you', 'knew', 'he', 'was', 'an', 'alcoholic', '||period||', "why'd", 'you', 'put', 'the', 'drink', 'down', 'at', 'all', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'saying', 'anything', '||period||', '||return||', '||return||', 'jerry:', "you're", 'saying', 'something', '||period||', '||return||', '||return||', 'elaine:', 'what', 'could', 'i', 'be', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "you're", 'not', 'saying', 'nothing', 'you', 'must', 'be', 'saying', 'something', '||period||', '||return||', '||return||', 'elaine:', 'if', 'i', 'was', 'saying', 'something', 'i', 'would', 'have', 'said', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', 'why', "don't", 'you', 'say', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'said', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', "it's", 'exhausting', 'being', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'let', 'me', 'ask', 'you', 'something', 'something', '||period||', 'did', 'george', 'buy', 'that', 'sweater', 'knowing', 'the', 'red', 'dot', 'was', 'on', 'it', 'because', 'it', 'was', 'cheaper', '||questionmark||', '||leftparen||', 'jerry', 'is', 'unconfortable', '||rightparen||', 'ooookay', '||comma||', 'you', 'just', 'gave', 'me', 'the', 'answer', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', "didn't", '||period||', '||return||', '||return||', 'elaine:', 'yes', 'you', 'did', '||comma||', 'yes', 'you', 'did', '||period||', 'i', 'saw', 'your', 'expression', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'have', 'an', 'expression', '||period||', 'i', 'have', 'a', 'deviated', 'septum', '||period||', 'i', 'have', 'to', 'open', 'my', 'mouth', 'sometimes', 'to', 'breathe', '||period||', '||return||', '||return||', 'elaine:', 'how', 'much', 'did', 'he', 'save', '||questionmark||', '||return||', '||return||', 'jerry:', 'frankly', 'i', 'am', 'shocked', 'that', 'you', 'would', 'ask', 'such', 'a', 'question', '||leftparen||', 'elaine', 'sticking', 'out', 'her', 'tongue', 'like', 'she', "isn't", 'buying', 'a', 'word', 'of', 'it', '||rightparen||', 'of', 'me', '||comma||', 'that', 'you', 'would', 'think', '||dash||', 'the', 'only', 'surprise', 'is', 'how', 'you', 'could', 'even', 'think', 'of', 'that', '||period||', "that's", 'what', 'you', 'were', 'seeing', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'talk', 'to', 'elaine', '||period||', 'this', 'cleaing', 'lady', 'is', 'turning', 'the', 'screws', 'on', 'me', '||period||', "she's", 'pushing', 'for', 'this', 'whole', 'relationship', 'thing', '||period||', 'she', 'keeps', 'calling', 'me', '||comma||', 'threatening', 'to', 'go', 'to', 'the', 'boss', 'with', 'this', 'thing', '||comma||', 'i', 'could', 'lose', 'my', 'job', '||comma||', 'i', 'gotta', 'do', 'something', 'to', 'keep', 'her', 'quiet', '||period||', '||return||', '||return||', 'jerry:', 'elaine', 'is', 'in', 'the', 'bathroom', '||period||', "she's", 'wise', 'to', 'whole', 'red', 'dot', 'thing', '||period||', "she's", 'asking', 'me', 'all', 'kinds', 'of', 'questions', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'tell', 'her', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'swear', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'swearing', '||period||', 'i', "don't", 'want', 'to', 'swear', '||period||', '||return||', '||return||', 'george:', 'oh', 'you', 'told', 'her', "didn't", 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'george', '||comma||', 'did', 'you', 'buy', 'that', 'sweater', 'knowing', 'that', 'red', 'dot', 'was', 'on', 'it', 'because', 'you', 'could', 'get', 'it', 'at', 'a', 'discount', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'did', 'i', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'did', "didn't", 'you', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', "i'm", '||comma||', "i'm", 'shocked', '||period||', "i'm", 'shocked', '||period||', 'here', 'i', 'go', 'out', 'in', 'the', 'spirit', 'of', 'the', 'season', '||leftparen||', 'elaine', 'looking', 'like', "she's", 'not', 'buying', 'a', 'word', 'of', 'it', '||rightparen||', 'and', 'spend', 'all', 'my', 'savings', 'to', 'buy', 'you', 'the', 'most', 'beautiful', 'christmas', 'sweater', 'i', 'have', 'ever', 'seen', 'to', 'show', 'my', 'appreciation', 'to', 'you', 'at', 'christmas', 'and', 'this', 'is', 'the', 'thanks', 'that', 'i', 'get', 'at', 'christmas', '||period||', '||return||', '||return||', 'elaine:', 'well', 'jerry', 'told', 'me', 'that', 'you', 'did', '||period||', '||return||', '||return||', 'george:', 'you', 'told', 'her', '||questionmark||', 'how', 'could', 'you', 'tell', 'her', '||questionmark||', 'i', 'told', 'you', 'not', 'to', 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'tell', 'her', 'you', 'stupid', 'idiot', '||period||', 'she', 'tricked', 'you', '||period||', '||return||', '||return||', 'george:', 'elaine', 'you', "don't", 'understand', '||period||', 'i', 'had', '103', 'temperature', 'when', 'i', 'bought', 'that', 'sweater', '||period||', 'i', 'was', 'so', 'dizzy', 'i', 'was', 'seeing', 'red', 'dots', 'everywhere', '||period||', 'i', 'thought', 'everything', 'in', 'the', 'store', 'had', 'a', 'red', 'dot', 'on', 'it', '||period||', 'i', "couldn't", 'distinguish', 'one', 'red', 'dot', 'from', 'another', '||period||', 'i', "couldn't", 'afford', 'anything', '||period||', 'i', 'have', 'nothing', '||period||', 'i', "haven't", 'worked', 'for', 'a', 'really', 'long', 'time', '||period||', '||leftparen||', 'jerry', 'is', 'standing', 'right', 'behind', 'george', '||period||', 'jerry', 'takes', 'out', 'a', 'hankerchief', 'and', 'starts', 'fake', '||dash||', 'crying', 'in', 'it', '||period||', '||rightparen||', 'i', 'mean', 'look', '||comma||', 'i', 'have', 'no', 'clothes', '||comma||', 'look', 'at', 'what', "i'm", 'wearing', '||period||', "it's", 'just', 'a', 'little', 'red', 'dot', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'for', 'you', '||period||', '||return||', '||return||', 'cleaning', 'woman:', 'oh', '||comma||', 'georgie', '||comma||', 'you', 'bought', 'this', 'for', 'me', '||questionmark||', 'oh', 'i', 'knew', 'you', 'cared', 'for', 'me', '||period||', '||return||', '||return||', 'george:', 'as', 'you', 'care', 'for', 'me', '||period||', 'which', 'is', 'why', 'it', 'is', 'very', 'important', 'that', 'you', 'never', 'breathe', 'a', 'word', 'of', 'this', 'to', 'anyone', 'about', 'the', '||period||', '||period||', '||period||', 'you', 'know', '||period||', 'what', '||comma||', 'with', 'clarence', 'thomas', 'and', 'everything', '||period||', '||return||', '||return||', 'cleaning', 'woman:', 'okay', '||comma||', 'okay', '||comma||', 'can', 'i', 'open', 'it', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'yes', 'of', 'course', 'go', 'ahead', '||period||', 'my', 'guess', 'is', "you're", 'going', 'to', 'like', 'this', 'very', 'much', '||period||', '||return||', '||return||', 'cleaning', 'woman:', 'oh', '||exclammark||', 'is', 'that', 'cashmere', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', "it's", 'cashemere', '||period||', '||return||', '||return||', 'cleaning', 'woman:', 'a', 'cashmere', 'sweater', '||period||', 'oh', 'georgie', 'porgie', '||exclammark||', '||return||', '||return||', 'george:', 'just', 'a', 'little', 'something', 'for', 'christmas', '||period||', '||return||', '||return||', 'cleaning', 'woman:', 'when', 'i', 'was', 'a', 'little', 'girl', 'in', 'panama', '||comma||', 'a', 'rich', 'american', 'came', 'to', 'our', 'town', 'and', 'he', 'was', 'wearing', 'the', 'softest', 'most', 'beautiful', 'sweater', '||period||', 'i', 'said', 'to', 'him', '||comma||', '||quotemark||', 'what', 'do', 'you', 'call', 'this', 'most', 'beautiful', 'fabric', '||questionmark||', '||quotemark||', '||comma||', 'and', 'he', 'said', '||quotemark||', 'they', 'call', 'it', 'cashmere', '||quotemark||', '||period||', 'i', 'repeated', 'the', 'words', '||quotemark||', 'cashmere', '||comma||', 'cashmere', '||quotemark||', '||period||', 'i', 'asked', 'if', 'i', 'could', 'have', 'it', '||comma||', 'and', 'he', 'said', '||quotemark||', 'no', '||period||', 'get', 'away', 'from', 'me', '||period||', '||quotemark||', 'then', 'he', 'started', 'walk', 'away', '||period||', 'but', 'i', 'grabbed', 'onto', 'his', 'leg', 'screaming', 'for', 'him', 'to', 'give', 'me', 'the', 'sweater', 'and', 'he', 'dragged', 'me', 'through', 'the', 'street', '||period||', 'and', 'then', 'he', 'kicked', 'at', 'me', 'with', 'the', 'other', 'foot', 'and', 'threw', 'some', 'change', 'at', 'me', '||period||', 'oh', '||comma||', 'but', 'i', "didn't", 'want', 'the', 'change', 'georgie', '||period||', 'i', 'wanted', 'the', 'cashmere', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'a', 'feeling', 'you', 'would', 'like', 'it', '||period||', 'no', '||comma||', "don't", 'try', 'it', 'on', 'now', '||comma||', 'try', 'it', 'on', 'later', '||period||', '||return||', '||return||', 'cleaning', 'woman:', 'wow', '||comma||', 'look', 'at', 'this', '||period||', 'it', 'feels', 'so', 'beautiful', '||period||', '||return||', '||return||', 'george:', 'take', 'it', 'off', '||period||', "you're", 'going', 'to', 'ruin', 'it', '||period||', '||return||', '||return||', 'cleaning', 'woman:', '||leftparen||', 'noticing', 'the', 'dot', '||rightparen||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'in', 'the', "men's", 'room', 'the', 'other', 'day', 'and', 'they', 'had', 'the', 'hand', 'blower', '||comma||', 'instead', 'of', 'the', 'paper', 'towels', '||comma||', 'you', 'know', 'this', 'thing', '||period||', 'i', 'like', 'the', 'hand', 'blower', 'i', 'have', 'to', 'say', '||period||', 'it', 'takes', 'a', 'little', 'bit', 'longer', '||comma||', 'but', 'i', 'feel', 'when', "you're", 'in', 'a', 'room', 'with', 'a', 'revolting', 'stench', 'you', 'want', 'to', 'spend', 'as', 'much', 'time', 'as', 'you', 'can', '||period||', '||return||', '||return||', 'dick:', 'the', 'only', 'stench', 'is', 'comming', 'from', 'you', '||period||', '||return||', '||return||', 'audience:', 'oooooh', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'wait', 'a', 'second', '||comma||', 'i', 'believe', 'we', 'have', 'a', 'heckler', 'ladies', 'and', 'gentlemen', '||period||', 'hey', 'dick', 'i', "don't", 'know', 'what', 'your', 'problem', 'is', '||period||', "it's", 'not', 'my', 'fault', "you're", 'back', 'on', 'the', 'wagon', '||period||', '||return||', '||return||', 'dick:', "it's", 'off', 'the', 'wagon', '||period||', '||return||', '||return||', 'jerry:', 'in', 'the', 'old', 'days', 'how', 'do', 'you', 'think', 'they', 'got', 'the', 'alcohol', 'from', 'town', 'to', 'town', '||questionmark||', '||return||', '||return||', 'dick:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'on', 'the', 'wagon', '||period||', "don't", 'you', 'think', 'they', 'broke', 'into', 'a', 'couple', 'of', 'those', 'bottles', 'along', 'the', 'way', '||questionmark||', '||return||', '||return||', 'dick:', 'you', "can't", 'drink', 'on', 'a', 'wagon', 'it', 'would', 'be', 'too', 'bumpy', '||period||', '||return||', '||return||', 'jerry:', 'they', 'had', 'smooth', 'trails', '||period||', 'what', 'about', 'the', 'cumberland', 'gap', '||questionmark||', '||return||', '||return||', 'dick:', 'what', 'the', 'hell', 'do', 'you', 'know', 'about', 'wagons', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'enough', 'not', 'to', 'get', 'on', 'them', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', "i'm", 'going', 'to', 'get', 'right', 'to', 'the', 'point', '||period||', 'it', 'has', 'come', 'to', 'my', 'attention', 'that', 'you', 'and', 'the', 'cleaning', 'woman', 'have', 'engaged', 'in', 'sexual', 'intercourse', 'on', 'the', 'desk', 'in', 'your', 'office', '||period||', 'is', 'that', 'correct', '||questionmark||', '||return||', '||return||', 'george:', 'who', 'said', 'that', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'she', 'did', '||period||', '||return||', '||return||', 'george:', 'was', 'that', 'wrong', '||questionmark||', 'should', 'i', 'have', 'not', 'done', 'that', '||questionmark||', 'i', 'tell', 'you', 'i', 'gotta', 'plead', 'ignorance', 'on', 'this', 'thing', 'because', 'if', 'anyone', 'had', 'said', 'anything', 'to', 'me', 'at', 'all', 'when', 'i', 'first', 'started', 'here', 'that', 'that', 'sort', 'of', 'thing', 'was', 'frouned', 'upon', '||comma||', 'you', 'know', '||comma||', 'cause', "i've", 'worked', 'in', 'a', 'lot', 'of', 'offices', 'and', 'i', 'tell', 'you', 'peope', 'do', 'that', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', "you're", 'fired', '||period||', '||return||', '||return||', 'george:', 'well', 'you', "didn't", 'have', 'to', 'say', 'it', 'like', 'that', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'i', 'want', 'you', 'out', 'of', 'here', 'by', 'the', 'end', 'of', 'the', 'day', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'whole', 'christmas', 'spirit', 'thing', '||questionmark||', 'any', 'flexability', 'there', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'nah', '||period||', 'wait', '||comma||', 'wait', '||comma||', 'she', 'wanted', 'me', 'to', 'give', 'you', 'this', '||period||', '||return||', '||return||', 'elaine:', 'you', 'had', 'sex', 'on', 'your', 'desk', 'with', 'the', 'cleaning', 'woman', '||period||', '||return||', '||return||', 'george:', 'you', 'never', 'had', 'sex', 'in', 'the', 'office', 'before', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'i', 'once', 'made', 'out', 'with', 'someone', 'but', 'that', 'was', 'it', '||period||', '||return||', '||return||', 'george:', 'alright', 'so', 'you', 'made', 'out', 'with', 'someone', '||period||', '||return||', '||return||', 'elaine:', 'well', "that's", 'not', 'sex', '||period||', '||return||', '||return||', 'george:', 'kissing', 'is', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'kissing', 'is', 'not', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'did', 'jerry', 'leave', 'that', 'drink', 'next', 'to', "dick's", 'on', 'purpose', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'over', 'here', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'taking', 'the', 'kid', 'out', 'to', 'dinner', 'to', 'chear', 'him', 'up', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'jerry', 'when', 'do', 'you', 'consider', 'that', 'sex', 'has', 'taken', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'would', 'say', 'when', 'the', 'nipple', 'makes', 'its', 'first', 'appearance', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'george', 'told', 'me', 'that', 'you', 'left', 'the', 'drink', 'next', 'to', "dick's", 'on', 'purpose', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'try', '||period||', 'so', 'guess', 'who', 'heckled', 'me', 'at', 'the', 'club', 'last', 'night', '||period||', '||return||', '||return||', 'dick:', 'merry', 'christmas', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', "that's", 'dick', '||period||', "it's", 'cape', 'fear', '||period||', '||return||', '||return||', 'george:', 'hide', '||comma||', 'hide', 'under', 'the', 'desk', '||period||', '||return||', '||return||', 'elaine:', 'ow', '||comma||', 'ow', 'move', 'over', '||period||', '||return||', '||return||', 'jerry:', 'get', 'off', 'of', 'me', '||period||', '||return||', '||return||', 'elaine:', "i've", 'got', 'no', 'room', '||period||', '||return||', '||return||', 'dick:', 'is', 'that', 'cashmere', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', "it's", 'cashmere', '||period||', '||return||', '||return||', 'dick:', '||leftparen||', 'noticing', 'the', 'dot', '||rightparen||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', 'in', 'a', 'way', '||comma||', 'i', 'think', 'i', 'inadvertantly', 'turned', 'this', 'guy', 'into', 'an', 'alcoholic', '||period||', 'i', 'hate', 'being', 'around', 'alcoholics', 'because', "they're", 'either', 'telling', 'you', 'how', 'much', 'they', 'love', 'you', 'or', 'how', 'much', 'they', 'hate', 'you', '||period||', 'and', 'those', 'are', 'the', 'two', 'statements', 'that', 'scare', 'me', 'the', 'most', '||period||', 'but', 'i', 'think', "he's", 'okay', 'now', 'because', 'i', 'have', 'no', 'idea', 'how', 'he', 'feels', 'about', 'me', '||period||', "he's", 'finally', 'off', 'the', 'wagon', '||period||', '||return||', '||return||', 'dick:', 'you', 'mean', 'on', 'the', 'wagon', '||period||', '||return||', '||return||', 'jerry:', "don't", 'get', 'smart', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'coney', 'island', '||period||', 'ok', '||comma||', 'you', 'can', 'take', 'the', 'b', 'or', 'the', 'f', 'and', 'switch', 'for', 'the', 'n', 'at', 'broadway', 'lafayette', '||comma||', 'or', 'you', 'can', 'go', 'over', 'the', 'bridge', 'to', 'dekalb', 'and', 'catch', 'the', 'q', 'to', 'atlantic', 'avenue', '||comma||', 'then', 'switch', 'to', 'the', 'irt', '2', '||comma||', '3', '||comma||', '4', 'or', '5', '||comma||', 'but', "don't", 'get', 'on', 'the', 'g', '||period||', 'see', "that's", 'very', 'tempting', '||comma||', 'but', 'you', 'wind', 'up', 'on', 'smith', 'and', '9th', 'street', '||comma||', 'then', 'you', 'got', 'to', 'get', 'on', 'the', 'r', '||period||', '||return||', '||return||', 'elaine:', "couldn't", 'he', 'just', 'take', 'the', 'd', 'straight', 'to', 'coney', 'island', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'what', 'time', 'is', 'your', 'job', 'interview', 'george', '||questionmark||', '||return||', '||return||', 'george:', '945', '||return||', '||return||', 'jerry:', 'remember', '||comma||', "don't", 'whistle', 'on', 'the', 'elevator', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'what', 'willie', 'loman', 'told', 'biff', 'before', 'his', 'interview', '||comma||', 'in', "'death", 'of', 'a', "salesman'", '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'are', 'comparing', 'me', 'to', 'biff', 'loman', '||comma||', 'very', 'encouraging', '||period||', 'the', 'biggest', 'loser', 'in', 'history', 'of', 'american', 'literature', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "i'm", 'gonna', 'go', '||period||', '||return||', '||return||', 'jerry:', 'what', 'time', 'is', 'the', 'lesbian', 'wedding', '||questionmark||', '||return||', '||return||', 'elaine:', '930', '||return||', '||return||', 'george:', 'lesbian', 'wedding', '||period||', 'how', 'do', 'they', 'work', 'bride', 'and', 'groom', 'out', '||comma||', 'what', 'do', 'they', 'flip', 'a', 'coin', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'they', 'flip', 'a', 'coin', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'was', 'that', 'not', 'politically', 'correct', '||questionmark||', "it's", 'a', 'legitimate', 'question', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'so', 'tired', '||period||', "i'll", 'fall', 'asleep', 'on', 'that', 'train', '||leftparen||', 'yawns', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'get', 'the', 'feeling', 'when', 'lesbians', 'are', 'looking', 'at', 'me', '||comma||', "they're", 'thinking', '||quotemark||', "that's", 'why', "i'm", 'not', 'heterosexual', '||quotemark||', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'come', 'on', "let's", 'go', '||comma||', 'pick', 'up', 'the', 'check', 'so', 'we', 'can', 'go', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'paying', 'for', 'breakfast', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'i', 'always', 'pay', '||questionmark||', 'what', 'am', 'i', 'made', 'of', 'money', '||questionmark||', 'you', 'bunch', 'of', 'deadbeats', '||period||', '||return||', '||return||', 'george:', 'how', 'many', 'tickets', 'are', 'you', 'paying', 'today', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "let's", 'see', 'speeding', '||comma||', 'running', 'a', 'red', 'light', '||comma||', 'no', 'license', '||comma||', 'no', 'registration', '||comma||', 'no', 'plates', '||comma||', 'no', 'brake', 'lights', '||comma||', 'no', 'rear', 'view', 'mirror', '||period||', '||period||', '||period||', 'yeah', '||period||', '||leftparen||', 'gives', 'george', 'a', 'ticket', '||rightparen||', '||return||', '||return||', 'george:', 'no', 'doors', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'fighting', 'that', 'one', '||period||', 'you', 'know', '||comma||', 'this', 'is', 'gonna', 'cost', 'me', 'over', 'six', 'hundred', 'bucks', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'carry', 'any', 'changes', 'in', 'these', 'pants', '||comma||', 'it', 'falls', 'out', '||period||', '||return||', '||return||', 'violin', 'player:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'that', 'guy', 'is', 'not', 'blind', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'can', 'i', 'convince', 'anybody', 'to', 'come', 'down', 'to', 'coney', 'island', 'with', 'me', '||questionmark||', 'i', 'got', 'to', 'pick', 'up', 'my', 'car', 'at', 'the', 'pound', '||period||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'they', 'actually', 'found', 'your', 'stolen', 'car', '||period||', '||return||', '||return||', 'jerry:', 'not', 'only', 'that', 'they', 'found', 'it', '||period||', 'it', 'was', 'simonized', 'and', 'the', 'front', 'end', 'was', 'aligned', '||period||', '||return||', '||return||', 'george:', "that's", 'amazing', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'do', 'you', 'say', '||questionmark||', 'run', 'in', 'the', 'cyclone', '||period||', 'hotdogs', 'on', "nathan's", 'is', 'on', 'me', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', '||questionmark||', 'satan', '||questionmark||', "i'm", 'close', 'to', 'a', 'job', 'here', '||period||', "it's", 'my', 'second', 'interview', 'with', 'them', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'biff', '||period||', 'elaine', '||comma||', 'merry', '||dash||', 'go', '||dash||', 'round', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", '||period||', "i'm", 'the', 'best', 'man', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'bumper', '||dash||', 'cars', '||questionmark||', '||return||', '||return||', 'kramer:', "i've", 'gotta', 'go', 'to', 'court', '||comma||', "i'll", 'get', 'in', 'trouble', '||period||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'could', 'be', 'years', 'before', 'i', 'get', 'back', 'to', 'coney', 'island', '||period||', 'i', "can't", 'go', 'to', 'rides', 'alone', '||period||', '||return||', '||return||', 'subway', 'announcement:', '42th', 'street', '||period||', 'change', 'to', 'd', '||comma||', 'n', '||comma||', 'rr', '||comma||', '2', '||comma||', '3', '||comma||', '4', '||comma||', '5', '||comma||', '7', '||comma||', 'c', '||comma||', 'e', '||comma||', 'f', 'train', '||period||', '||return||', '||return||', 'elaine:', "see'ya", '||period||', '||return||', '||return||', 'woman:', 'you', 'looking', 'for', 'a', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'me', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'woman:', 'well', '||comma||', "you're", 'reading', 'the', 'classifieds', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', 'i', 'was', 'just', 'looking', 'for', 'stock', '||dash||', 'pages', '||period||', 'here', 'it', 'is', '||period||', 'looking', 'for', 'the', 'quotes', '||period||', 'gotta', 'check', 'to', 'quotes', '||period||', 'love', 'a', 'good', 'quote', '||period||', 'oh', '||comma||', 'ibm', 'up', 'a', 'quarter', '||period||', '||return||', '||return||', 'woman:', 'you', "didn't", 'look', 'like', 'someone', 'who', 'needed', 'a', 'job', '||period||', '||return||', '||return||', 'george:', 'me', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'i', "don't", '||comma||', 'i', "don't", '||period||', 'doing', 'very', 'well', '||comma||', 'very', 'well', '||comma||', 'yep', '||period||', '||return||', '||return||', 'woman:', 'so', '||comma||', "you're", 'in', "'the", "market'", '||questionmark||', '||return||', '||return||', 'george:', 'yeah', "i'm", '||comma||', 'eh', '||comma||', 'in', "'the", "market'", '||period||', '||return||', '||return||', 'woman:', 'which', 'market', '||questionmark||', '||return||', '||return||', 'george:', 'which', 'market', '||comma||', 'the', '||comma||', 'eh', '||comma||', 'big', 'one', '||comma||', 'the', 'big', 'market', '||comma||', 'the', 'big', 'board', '||period||', 'bull', 'market', '||comma||', 'bear', 'market', '||comma||', 'you', 'name', 'the', 'market', '||comma||', "i'm", 'there', '||period||', '||return||', '||return||', 'woman:', 'so', '||comma||', 'do', 'you', 'work', 'for', 'one', 'of', 'those', 'big', 'broker', '||dash||', 'houses', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'wish', '||period||', 'i', 'hate', 'the', 'big', 'broker', '||dash||', 'houses', '||period||', 'hate', 'them', 'with', 'a', 'passion', '||period||', 'big', 'broker', '||dash||', 'houses', 'killed', 'my', 'father', '||period||', '||return||', '||return||', 'woman:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'they', 'hurt', 'him', 'bad', '||period||', 'really', 'hurt', 'his', 'feelings', '||period||', "it's", 'a', 'long', 'story', '||period||', 'i', '||dash||', 'i', "don't", 'like', 'to', 'talk', 'about', 'it', '||comma||', 'but', 'i', 'swore', 'then', 'that', 'i', 'would', 'never', 'work', 'for', 'big', 'broker', '||dash||', 'houses', '||period||', 'see', '||comma||', 'all', 'they', 'care', 'about', 'is', 'money', '||period||', "i'm", 'about', 'more', 'than', 'money', '||comma||', "i'm", 'about', 'people', '||comma||', 'always', 'gone', 'my', 'own', 'way', 'and', "i've", 'never', 'looked', 'back', '||period||', '||return||', '||return||', 'woman:', 'i', 'started', 'riding', 'these', 'trains', 'in', 'the', 'forties', '||period||', 'those', 'days', 'a', 'man', 'would', 'give', 'up', 'their', 'seat', 'for', 'a', 'woman', '||period||', 'now', "we're", 'liberated', 'and', 'we', 'have', 'to', 'stand', '||period||', '||return||', '||return||', 'elaine:', "it's", 'ironic', '||period||', '||return||', '||return||', 'women:', "what's", 'ironic', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', '||comma||', 'that', "we've", 'come', 'all', 'this', 'way', '||comma||', 'we', 'have', 'made', 'all', 'this', 'progress', '||comma||', 'but', 'you', 'know', "we've", 'lost', 'the', 'little', 'things', '||comma||', 'the', 'niceties', '||period||', '||return||', '||return||', 'woman:', 'no', '||comma||', 'i', 'mean', 'what', 'does', "'ironic'", 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'where', 'are', 'you', 'up', 'to', '||comma||', 'with', 'such', 'a', 'nice', 'present', '||comma||', 'birthday', 'party', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'wedding', '||period||', '||return||', '||return||', 'women:', 'a', 'wedding', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'woman:', 'hah', '||comma||', 'i', "didn't", 'know', 'people', 'still', 'get', 'married', '||period||', "it's", 'hard', 'today', 'with', 'men', 'and', 'women', '||period||', '||return||', '||return||', 'elaine:', "you're", 'telling', 'me', '||period||', '||return||', '||return||', 'woman:', 'so', '||comma||', 'are', 'they', 'a', 'nice', 'couple', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'very', 'nice', '||period||', '||return||', '||return||', 'woman:', 'what', 'does', 'he', 'do', '||comma||', 'if', 'you', "don't", 'mind', 'me', 'asking', '||questionmark||', '||return||', '||return||', 'elaine:', 'she', '||period||', '||return||', '||return||', 'women:', 'she', '||questionmark||', 'she', 'works', '||comma||', 'he', "doesn't", '||period||', 'he', 'sounds', 'like', 'my', 'son', '||period||', '||return||', '||return||', 'elaine:', 'there', 'is', 'no', 'he', '||period||', '||return||', '||return||', 'women:', 'there', 'is', 'no', 'he', '||period||', 'so', '||comma||', "who's", 'getting', 'married', '||questionmark||', '||return||', '||return||', 'elaine:', 'em', '||comma||', 'two', 'women', '||period||', "it's", '||comma||', 'eh', '||period||', '||period||', '||period||', 'lesbian', 'wedding', '||period||', '||return||', '||return||', 'women:', 'lesbian', 'wedding', '||period||', '||return||', '||return||', 'elaine:', 'aha', '||comma||', 'yep', '||period||', "i'm", 'the', '||period||', '||period||', '||period||', 'eh', '||period||', '||period||', '||period||', 'bes', 'tman', '||period||', '||return||', '||return||', 'women', '||leftparen||', 'talks', 'to', 'man', 'next', 'to', 'her', '||rightparen||', ':', 'my', 'luck', '||period||', 'i', "don't", 'talk', 'to', 'a', 'soul', 'in', 'the', 'subway', 'for', '35', 'years', '||period||', 'i', 'get', 'a', 'best', 'man', 'at', 'a', 'lesbian', 'wedding', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'you', "don't", 'understand', '||exclammark||', "i'm", 'not', 'a', 'lesbian', '||exclammark||', 'i', 'hate', 'men', '||comma||', 'but', "i'm", 'not', 'a', 'lesbian', '||exclammark||', '||return||', '||return||', "elaine's", 'voice:', "i'm", 'really', 'looking', 'forward', 'to', 'this', '||period||', 'i', 'love', 'weddings', '||period||', 'maybe', "i'll", 'meet', 'somebody', '||comma||', 'umm', 'maybe', 'not', '||period||', '||return||', '||return||', "elaine's", 'voice:', 'oh', '||comma||', 'man', '||period||', "we're", 'stopping', '||questionmark||', '||return||', '||return||', 'woman:', 'well', '||comma||', 'this', 'is', 'where', 'i', 'get', 'off', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'do', '||questionmark||', '||return||', '||return||', 'woman:', 'eh', '||comma||', 'hey', 'why', "don't", 'you', '||period||', '||period||', '||period||', 'oh', 'nothing', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'what', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'woman:', 'well', '||comma||', 'i', 'was', 'going', 'to', 'say', 'why', "don't", 'you', 'get', 'off', 'with', 'me', '||comma||', 'but', "you're", 'obviously', 'very', 'busy', 'on', 'your', 'way', 'to', 'some', 'important', 'meeting', 'or', 'something', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'yeah', 'i', 'knew', 'it', 'was', 'a', 'bad', 'idea', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "what's", 'another', 'million', '||comma||', 'give', 'or', 'take', '||period||', 'i', 'get', 'off', 'where', 'and', 'when', 'i', 'wanna', 'get', 'off', '||period||', '||return||', '||return||', 'george:', "i'm", 'stuck', '||period||', 'pull', 'a', 'little', '||comma||', 'just', 'a', 'second', '||period||', "don't", 'start', 'the', 'train', '||exclammark||', "don't", 'start', 'the', 'train', '||exclammark||', '||exclammark||', '||return||', '||return||', 'man1:', 'this', '||comma||', "it's", 'the', 'fourth', 'horse', 'of', 'the', 'first', 'race', '||comma||', 'pappanick', '||period||', '||return||', '||return||', 'man2:', 'how', 'do', 'you', 'know', "it's", 'going', 'to', 'win', '||questionmark||', '||return||', '||return||', 'man1:', 'my', 'ups', '||dash||', 'guy', 'tells', '||period||', 'guys', 'who', 'own', 'the', 'horses', 'are', 'regular', 'customers', '||period||', 'every', 'horse', 'he', 'has', 'ever', 'given', 'me', 'has', 'won', '||period||', 'see', '||comma||', "they've", 'been', 'sandbagging', 'and', 'looking', 'for', 'a', 'good', 'spot', '||period||', "he's", 'been', 'getting', 'it', 'light', 'cause', "they've", 'been', 'using', 'bug', 'boy', 'and', 'the', 'workout', "hasn't", 'been', 'published', '||period||', 'now', 'they', 'are', 'ready', 'to', 'run', 'with', 'it', '||period||', 'they', 'are', 'gonna', 'break', 'his', 'maiden', '||period||', "it's", 'going', 'to', 'go', 'to', 'great', 'price', '||comma||', 'maybe', '301', '||period||', "i'm", 'telling', 'you', '||comma||', "it's", 'a', 'lock', '||period||', '||return||', '||return||', 'man2:', 'but', 'it', 'rained', 'last', 'night', '||period||', '||return||', '||return||', 'man1:', 'exactly', '||comma||', 'this', 'horse', 'loves', 'the', 'slop', '||period||', "it's", 'in', 'his', 'bloodlines', '||period||', 'his', 'father', 'was', 'a', "mudda'", '||comma||', 'his', 'mother', 'was', 'a', "mudda'", '||period||', '||return||', '||return||', 'man2:', 'his', "mudda'", 'was', 'a', "mudda'", '||questionmark||', '||return||', '||return||', 'man1:', 'what', 'did', 'i', 'just', 'say', '||questionmark||', 'come', 'on', '||comma||', "let's", 'go', 'to', 'the', 'office', '||comma||', "i'm", 'going', 'to', 'call', 'my', 'bookie', '||period||', '||leftparen||', 'looks', 'around', 'to', 'see', 'if', 'anyone', 'is', 'listening', '||rightparen||', 'hey', '||comma||', "don't", 'tell', 'anybody', '||period||', '||return||', '||return||', 'jerry:', 'o', '||dash||', 'k', '||period||', 'you', 'realize', 'of', 'course', '||comma||', "you're", 'naked', '||questionmark||', '||return||', '||return||', 'naked', 'man:', 'naked', '||comma||', 'dressed', '||period||', 'i', "don't", 'see', 'any', 'difference', '||period||', '||return||', '||return||', 'jerry:', 'you', "oughta'", 'sit', 'here', '||period||', 'there', 'is', 'a', 'difference', '||period||', '||return||', '||return||', 'naked', 'man:', 'you', 'got', 'something', 'against', 'naked', 'body', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'something', 'against', 'yours', '||period||', 'how', 'about', 'a', 'couple', 'of', 'deep', 'knee', 'bends', '||comma||', 'maybe', 'a', 'squat', 'thrust', '||questionmark||', '||return||', '||return||', 'naked', 'man:', "who's", 'got', 'time', 'for', 'squat', 'thrusts', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'how', 'about', 'skipping', 'breakfast', '||period||', "i'm", 'guessing', "you're", 'not', 'a', "'half", '||dash||', 'grapefruit', 'and', 'black', "coffee'", 'guy', '||period||', '||return||', '||return||', 'naked', 'man:', 'i', 'like', 'a', 'good', 'breakfast', '||period||', '||return||', '||return||', 'jerry:', 'i', 'understand', '||comma||', 'i', 'like', 'good', 'breakfast', '||period||', 'long', 'as', 'you', "don't", 'wind', 'up', 'trapped', 'in', 'a', 'room', 'with', 'bib', 'overalls', 'and', 'pigtails', '||comma||', 'been', 'counseled', 'by', 'dick', 'gregory', '||period||', '||return||', '||return||', 'naked', 'man:', "i'm", 'not', 'ashamed', 'of', 'my', 'body', '||period||', '||return||', '||return||', 'jerry:', "that's", 'your', 'problem', '||comma||', 'you', 'should', 'be', '||period||', '||return||', '||return||', 'jerry:', "don't", 'get', 'up', '||comma||', 'please', '||comma||', 'allow', 'me', '||period||', '||return||', '||return||', "elaine's", 'voice:', 'oh', '||comma||', 'this', 'is', 'great', '||period||', 'this', 'is', 'what', 'i', 'need', '||comma||', 'just', 'what', 'i', 'need', '||period||', 'ok', '||comma||', 'take', 'it', 'easy', "i'm", 'sure', "it's", 'nothing', '||period||', 'probably', 'rats', 'on', 'the', 'track', '||comma||', "we're", 'stopping', 'for', 'rats', '||period||', 'god', '||comma||', "it's", 'so', 'crowded', '||period||', 'how', 'can', 'there', 'be', 'so', 'many', 'people', '||questionmark||', 'this', 'guy', 'really', 'smells', '||comma||', "doesn't", 'anyone', 'use', 'deodorant', 'in', 'the', 'city', '||questionmark||', 'what', 'is', 'so', 'hard', '||comma||', 'you', 'take', 'the', 'cap', 'off', '||comma||', 'you', 'roll', 'it', 'on', '||period||', "what's", 'that', '||questionmark||', 'i', 'feel', 'something', 'rubbing', 'against', 'me', '||period||', 'disgusting', 'animals', '||comma||', 'these', 'people', 'should', 'be', 'in', 'a', 'gage', '||period||', 'we', 'are', 'in', 'a', 'gage', '||period||', 'what', 'if', 'i', 'miss', 'the', 'wedding', '||questionmark||', 'i', 'got', 'the', 'ring', '||period||', "what'll", 'they', 'do', '||questionmark||', 'you', "can't", 'get', 'married', 'without', 'the', 'ring', '||period||', 'oh', '||comma||', 'i', "can't", 'breath', '||comma||', 'i', 'feel', 'faint', '||period||', 'take', 'it', 'easy', '||comma||', "it'll", 'start', 'moving', 'soon', '||period||', 'think', 'about', 'the', 'people', 'on', 'the', 'concentration', 'camps', '||comma||', 'what', 'they', 'went', 'through', '||period||', 'and', 'hostages', '||comma||', 'what', 'would', 'you', 'do', 'if', 'you', 'were', 'a', 'hostage', '||questionmark||', 'think', 'about', 'that', '||period||', 'this', 'is', 'nothing', '||period||', 'no', '||comma||', "it's", 'not', 'nothing', '||comma||', "it's", 'something', '||period||', "it's", 'a', 'nightmare', '||exclammark||', 'help', 'me', '||exclammark||', 'move', 'it', '||exclammark||', "com'on", 'move', 'this', 'fu', '||leftparen||', 'beep', '||rightparen||', 'thing', '||exclammark||', '||exclammark||', 'why', "isn't", 'it', 'moving', '||questionmark||', '||exclammark||', '||questionmark||', 'what', 'can', 'go', 'wrong', 'with', 'a', 'train', '||exclammark||', '||questionmark||', '||exclammark||', "it's", 'on', 'tracks', '||comma||', "there's", 'no', 'traffic', '||exclammark||', 'how', 'can', 'a', 'train', 'get', 'stuck', '||period||', 'step', 'on', 'the', 'gas', '||exclammark||', '||exclammark||', 'what', 'could', 'it', 'be', '||questionmark||', "you'de", 'think', 'the', 'conductor', 'would', 'explain', 'it', 'to', 'us', '||questionmark||', "'i'm", 'sorry', "there's", 'a', 'delay', "we'll", 'be', 'moving', 'in', '5', "minutes'", '||exclammark||', '||exclammark||', 'i', 'wanna', 'hear', 'a', 'voice', '||period||', "what's", 'that', 'on', 'my', 'leg', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'are', 'you', 'often', 'on', 'business', 'trip', '||questionmark||', 'nice', '||period||', '||period||', '||period||', 'oh', '||comma||', 'hey', 'nice', 'ice', '||dash||', 'bucket', '||period||', '||return||', '||return||', 'woman:', 'make', 'your', '||dash||', 'self', 'comfortable', '||period||', '||return||', '||return||', "george's", 'voice:', 'make', 'myself', 'comfortable', '||period||', 'what', 'does', 'that', 'mean', '||questionmark||', 'does', 'she', 'want', 'me', 'to', 'take', 'my', 'clothes', 'off', '||questionmark||', 'is', 'she', 'taking', 'her', 'clothes', 'off', '||questionmark||', 'what', 'if', 'i', 'take', 'my', 'clothes', 'off', 'and', 'she', 'still', 'has', "hers'", 'on', '||questionmark||', 'then', 'i', 'really', 'look', 'like', 'an', 'idiot', '||period||', 'she', 'could', 'get', 'offended', 'and', 'leave', '||period||', 'so', 'maybe', 'i', 'should', 'leave', 'them', 'on', '||comma||', 'but', 'what', 'then', 'if', 'she', 'takes', 'her', 'off', '||questionmark||', 'then', "she'll", 'feel', 'humiliated', '||period||', "'make", 'yourself', "comfortable'", '||period||', 'i', 'got', 'this', 'unbelievable', 'woman', 'and', 'this', "'comfortable'", '||dash||', 'thing', 'can', 'ruin', 'me', '||period||', 'i', 'got', 'it', '||exclammark||', 'i', 'take', 'my', 'shoes', 'off', 'and', 'sit', 'on', 'the', 'bed', '||period||', 'there', '||comma||', "that's", 'comfortable', '||period||', 'she', "can't", 'accuse', 'me', 'being', 'unconvertible', '||period||', '||return||', '||return||', 'george:', 'gotta', 'tell', 'you', "i'm", 'pretty', 'comfortable', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "it's", 'all', 'set', '||period||', 'they', 'got', 'the', 'bug', 'boy', 'on', 'him', '||period||', '||return||', '||return||', 'guy:', 'the', 'bug', 'boy', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'the', 'little', 'father', 'has', 'run', 'his', 'hard', 'out', '||period||', "they're", 'gonna', 'break', 'his', 'maiden', '||period||', '||return||', '||return||', 'guy:', 'really', '||questionmark||', 'but', '||comma||', "it's", 'a', 'little', 'bit', 'slow', 'out', 'there', 'it', 'rained', 'last', 'night', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'this', 'baby', 'loves', 'the', 'slob', '||comma||', 'loves', 'it', '||comma||', 'eats', 'it', 'up', '||period||', 'eats', 'the', 'slob', '||period||', 'born', 'in', 'the', 'slob', '||period||', 'his', 'father', 'was', 'a', "mudda'", '||period||', '||return||', '||return||', 'guy:', 'his', 'father', 'was', 'a', "mudda'", '||questionmark||', '||return||', '||return||', 'kramer:', 'his', "mudda'", 'was', 'a', "mudda'", '||period||', '||return||', '||return||', 'guy:', 'his', "mudda'", 'was', 'a', "mudda'", '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'did', 'i', 'just', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'all', 'right', '||comma||', '600', 'pappanick', 'to', 'win', '||period||', '||return||', '||return||', 'naked', 'man:', 'they', 'still', 'have', 'no', 'pitching', '||period||', "goodin's", 'a', 'question', 'mahk', '||period||', '||period||', '||period||', '||period||', 'you', "don't", 'recover', 'from', 'those', 'rotator', 'cuffs', 'so', 'fast', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'worried', 'about', 'their', 'best', 'pitching', '||period||', 'they', 'got', 'pitching', '||period||', '||period||', '||period||', '||period||', 'they', 'got', 'no', 'hitting', '||period||', '||return||', '||return||', 'naked', 'man:', 'no', 'hitting', '||questionmark||', 'they', 'got', 'hitting', '||exclammark||', 'bonilla', '||comma||', 'murry', '||period||', '||period||', '||period||', '||period||', 'they', 'got', 'no', 'defence', '||period||', '||return||', '||return||', 'jerry:', 'defence', '||questionmark||', 'please', '||period||', '||period||', '||period||', '||period||', 'they', 'need', 'speed', '||period||', '||return||', '||return||', 'naked', 'man:', 'speed', '||questionmark||', 'they', 'got', 'coleman', '||period||', '||period||', '||period||', '||period||', 'they', 'need', 'a', 'bullpen', '||period||', '||return||', '||return||', 'jerry:', "franco's", 'no', 'good', '||questionmark||', '||period||', '||period||', '||period||', 'they', 'got', 'no', 'team', 'leaders', '||period||', '||return||', '||return||', 'naked', 'man:', 'they', 'got', 'franco', '||exclammark||', '||period||', '||period||', '||period||', 'what', 'they', 'need', 'is', 'a', 'front', 'office', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'gotta', 'like', 'their', 'chances', '||period||', '||return||', '||return||', 'naked', 'man:', 'i', 'luv', 'their', 'chances', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'you', 'what', '||period||', 'if', 'they', 'win', 'the', 'penant', "i'll", 'sit', 'naked', 'with', 'you', 'at', 'the', 'world', 'series', '||period||', '||return||', '||return||', 'naked', 'man:', "it's", 'a', 'deal', '||exclammark||', '||return||', '||return||', "elaine's", 'voice:', 'why', "couldn't", 'i', 'take', 'a', 'cab', '||period||', 'for', '6', 'dollars', 'my', 'whole', 'life', "could've", 'changed', '||period||', 'what', 'is', 'that', 'on', 'my', 'leg', '||questionmark||', "i'll", 'never', 'get', 'out', 'of', 'here', '||period||', 'what', 'if', "i'm", 'here', 'for', 'the', 'rest', 'of', 'my', 'life', '||questionmark||', 'maybe', "i'll", 'get', 'out', 'in', '5', 'seconds', '||period||', '1', 'banana', '||comma||', '2', 'banana', '||comma||', '3', 'banana', '||comma||', '4', 'banana', '||comma||', '5', 'banana', '||period||', '||period||', '||period||', 'no', '||comma||', "i'm", 'still', 'here', '||exclammark||', 'still', 'here', '||exclammark||', 'why', "don't", 'they', 'start', 'moving', '||questionmark||', 'move', '||exclammark||', 'move', '||exclammark||', '||exclammark||', 'move', '||exclammark||', '||exclammark||', '||exclammark||', '*train', 'starts', 'moving', '||comma||', 'lights', 'get', 'back', 'on*', "it's", 'moving', '||exclammark||', "it's", 'moving', '||exclammark||', 'yes', '||exclammark||', 'yes', '||exclammark||', '||exclammark||', '*train', 'stops', 'again', 'and', 'lights', 'go', 'off*', 'motherf', '||leftparen||', 'beep', '||dash||', 'beep', '||rightparen||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'eh', '||comma||', 'gee', '||comma||', 'i', 'hope', 'you', 'have', 'the', 'key', 'for', 'these', 'things', '||period||', '||return||', '||return||', 'woman:', 'oh', '||comma||', "don't", 'worry', '||period||', 'i', 'do', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'my', 'mother', 'used', 'to', 'walk', 'around', 'on', 'our', 'apartment', 'just', 'in', 'her', 'bra', 'and', 'panties', '||period||', 'she', "didn't", 'look', 'anything', 'like', 'you', '||comma||', 'she', 'was', 'really', 'disgusting', '||comma||', 'really', 'bad', 'body', '||period||', 'if', 'you', 'could', 'imagine', 'uglier', 'and', 'fatter', 'version', 'of', 'shirley', 'booth', '||period||', 'remember', 'shirley', 'booth', 'from', 'hazel', '||period||', 'really', 'embarrassing', '||comma||', 'cause', 'you', 'know', 'i', 'had', 'only', 'mother', 'in', 'the', 'whole', 'neighborhood', 'who', 'was', 'worse', 'looking', 'than', 'hazel', '||period||', 'imagine', 'the', 'taunts', 'i', 'would', 'hear', '||period||', '||return||', '||return||', 'woman:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'a', '||quotemark||', 'hey', 'your', 'mother', 'is', 'uglier', 'than', 'hazel', '||period||', 'hazel', 'really', 'puts', 'your', 'mother', 'to', 'shame', '||quotemark||', '||return||', '||return||', 'george:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'woman:', 'it', 'was', 'a', 'pleasure', 'doing', 'business', 'with', 'you', 'george', '||comma||', 'but', "i'm", 'afraid', 'i', 'have', 'to', 'get', 'going', '||period||', '||return||', '||return||', 'george:', 'get', 'going', '||questionmark||', 'but', 'we', "haven't", 'really', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'eight', 'dollars', '||questionmark||', 'eight', 'dollars', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', "you're", 'robbing', 'me', '||questionmark||', '||return||', '||return||', 'woman:', 'i', 'wasted', 'my', 'whole', 'morning', 'with', 'you', 'for', 'eight', 'dollars', '||questionmark||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'wait', 'a', 'second', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'woman:', "i'm", 'taking', 'your', 'clothes', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'my', 'only', 'suit', '||period||', 'it', 'cost', 'me', '350', 'dollars', '||period||', 'i', 'got', 'it', 'at', 'moe', 'ginsburg', '||period||', '||return||', '||return||', 'woman:', 'bye', 'george', '||period||', '||return||', '||return||', 'george:', 'no', 'wait', '||comma||', 'you', "can't", 'just', 'leave', 'me', 'here', '||exclammark||', 'will', 'i', 'see', 'you', 'again', '||questionmark||', '||return||', '||return||', '||leftparen||', 'the', 'race', 'is', 'on', 'and', 'pappanick', 'is', 'slowly', 'making', 'ground', '||period||', 'kramer', 'is', 'pounding', 'himself', 'imitating', 'the', 'jockey', 'and', 'shouts:', 'yes', '||comma||', 'yes', '||comma||', 'yes', '||period||', '||period||', '||period||', 'the', 'winner', 'is', 'pappanick', '||rightparen||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', 'yes', '||exclammark||', 'i', 'won', '||comma||', 'hey', '||leftparen||', 'shouts', 'to', 'cashier', '||rightparen||', '||return||', '||return||', 'naked', 'man:', 'i', "haven't", 'had', 'a', 'hotdog', 'at', "nathan's", 'for', '20', 'years', '||period||', '||return||', '||return||', 'jerry:', 'first', 'we', 'ride', 'the', 'cyclone', '||period||', '||return||', '||return||', 'naked', 'man:', 'chilly', 'out', '||period||', '||return||', '||return||', 'jerry:', 'aah', '||comma||', 'french', 'fries', '||period||', '||return||', '||return||', 'thug:', 'give', 'me', 'the', 'money', '||period||', 'give', 'me', 'the', 'money', '||exclammark||', '||return||', '||return||', 'blind', 'violin', 'player:', '||leftparen||', 'puts', 'a', 'gun', 'to', 'the', "thug's", 'head', '||rightparen||', 'freeze', '||comma||', 'police', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'never', 'got', 'the', 'car', '||period||', 'we', 'were', 'having', 'such', 'a', 'good', 'time', '||comma||', 'by', 'the', 'time', 'i', 'got', 'to', 'the', 'police', 'garage', '||comma||', 'it', 'was', 'closed', '||period||', '||return||', '||return||', 'elaine:', 'too', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'you', "wouldn't", 'believe', 'what', 'this', 'guy', 'put', 'away', 'at', "nathan's", '||period||', 'look', 'at', 'what', 'we', 'won', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'want', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'get', 'that', 'out', 'of', 'my', 'face', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'missed', 'the', 'wedding', '||period||', "you'll", 'catch', 'the', 'bris', '||exclammark||', '||return||', '||return||', 'man', 'at', 'the', 'counter:', '||leftparen||', 'yelling', '||rightparen||', 'hare', 'krishna', '||comma||', 'hare', 'krishna', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'would', 'you', 'like', 'a', "'hare", "krishna'", 'fist', 'on', 'your', 'throat', '||comma||', 'you', 'little', 'punk', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'biff', '||comma||', 'what', 'did', 'you', 'whistle', 'on', 'the', 'elevator', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'have', 'my', 'spare', '||dash||', 'key', 'in', 'your', 'apartment', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'in', 'the', 'kitchen', 'drawer', '||period||', '||return||', '||return||', 'george:', 'give', 'me', 'your', 'key', '||comma||', 'i', 'gotta', 'get', 'it', '||period||', '||return||', '||return||', 'kramer:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'never', 'mind', 'what', 'happened', '||comma||', 'just', 'give', 'me', 'the', 'key', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', "i'll", 'go', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'here', '||comma||', 'pay', '||period||', '||leftparen||', 'gives', 'the', 'check', 'to', 'jerry', '||rightparen||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'pianist', '||period||', 'a', '*classical*', 'pianist', '||period||', 'she', '*plays*', 'the', 'piano', '||period||', "she's", 'a', '*brilliant*', 'woman', '||period||', 'i', '||dash||', 'i', '||dash||', 'i', 'sat', 'in', 'her', 'living', 'room', '||period||', '||period||', '||period||', 'she', 'played', 'the', '*waldstein', 'sonata*', '||exclammark||', 'the', '*waldstein*', '||exclammark||', '||return||', '||return||', 'george:', 'we', 'did', 'a', 'crossword', 'puzzle', 'together', '||comma||', '*in', 'bed*', '||period||', 'it', 'was', 'the', 'most', 'fun', 'i', 'ever', 'had', 'in', 'my', 'entire', 'life', '||period||', 'did', 'you', 'hear', 'me', '||questionmark||', 'in', 'my', '*life*', '||exclammark||', "y'know", '||questionmark||', '||return||', '||return||', 'jerry:', 'were', 'you', 'talking', '||questionmark||', 'i', "couldn't", 'hear', 'anything', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'telling', 'you', 'about', 'noel', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'noel', '||exclammark||', 'yeah', '||comma||', 'the', 'one', 'who', 'plays', 'bongos', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '[sarcastically]', 'heh', 'heh', 'heh', '||period||', '||period||', '||period||', 'so', 'side', '||dash||', 'splittingly', 'funny', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'm", 'sorry', '||period||', 'what', 'about', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'think', "i'm", 'going', 'to', 'repeat', 'the', 'whole', 'thing', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'you', 'told', 'me', 'you', 'like', 'her', '||comma||', 'everything', 'is', 'going', 'good', '||period||', '||return||', '||return||', 'george:', 'no', 'everything', 'is', '*not*', 'going', 'good', '||period||', "i'm", 'very', 'uncomfortable', '||period||', 'i', 'have', 'no', 'power', '||period||', 'i', 'mean', '||comma||', 'why', 'should', 'she', 'have', 'the', 'upper', 'hand', '||period||', '*once*', 'in', 'my', 'life', 'i', 'would', 'like', 'the', 'upper', 'hand', '||period||', 'i', 'have', 'no', 'hand', '||dash||', '||dash||', 'no', 'hand', 'at', 'all', '||period||', 'she', 'has', 'the', 'hand', '||semicolon||', 'i', 'have', '*no*', 'hand', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'i', 'get', 'the', 'hand', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'all', 'want', 'the', 'hand', '||period||', 'hand', 'is', 'tough', 'to', 'get', '||period||', 'you', 'gotta', 'get', 'the', 'hand', 'right', 'from', 'the', 'opening', '||period||', '||return||', '||return||', 'george:', "she's", 'playing', 'a', 'recital', 'this', 'week', 'at', 'the', 'mcbierney', 'school', '||period||', 'you', 'wanna', 'hear', 'her', 'play', '||questionmark||', 'i', 'got', 'two', 'extra', 'tickets', '||comma||', 'you', 'and', 'elaine', 'could', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'that', 'sounds', 'like', "somethin'", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'then', 'afterwards', 'maybe', 'we', 'could', 'all', 'go', 'out', 'together', '||period||', "y'know", "she'll", 'see', 'me', 'with', 'my', 'friends', '||comma||', "she'll", 'observe', 'me', 'as', 'i', 'really', 'am', '||comma||', 'as', 'myself', '||period||', 'maybe', 'i', 'can', 'get', 'some', 'hand', 'that', 'way', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'smell', 'my', 'arm', '||period||', '||period||', '||period||', 'smell', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'with', 'all', 'due', 'respect', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'that', 'smells', 'good', '||comma||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', '*beach*', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', '*beach*', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'did', 'you', 'go', "swimmin'", '||questionmark||', "it's", '29', 'degrees', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'joined', 'the', 'polar', 'bear', 'club', '||period||', '||return||', '||return||', 'jerry:', 'you', 'joined', 'the', '*polar', 'bears*', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'is', 'a', '||quotemark||', 'polar', 'bear', '||quotemark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'these', 'people', '||dash||', '||dash||', 'they', 'go', "swimmin'", 'in', 'the', 'winter', '||period||', "they're", 'terrific', '||comma||', 'i', 'just', 'took', 'my', 'first', 'swim', 'today', '||period||', 'brrrrrrr', '||exclammark||', "it's", 'invigorating', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', "so's", 'shock', 'therapy', '||period||', '||return||', '||return||', 'jerry:', '[with', 'glee]', 'what', 'is', 'that', '||comma||', 'a', 'pez', 'dispenser', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'want', 'one', '||questionmark||', 'yeah', '||comma||', 'i', 'just', 'bought', 'it', 'at', 'the', 'flea', 'market', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'what', 'goes', 'on', 'there', '||comma||', 'exactly', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', '||dash||', 'i', '||dash||', 'i', 'know', '||period||', '||period||', '||period||', '[retreats', 'back', 'to', 'his', 'chinese', 'take', 'out]', 'i', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', 'they', 'have', 'fleas', 'there', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'george:', '*no*', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'you', 'do', '||comma||', 'biff', '||period||', "you've", 'never', 'been', 'to', 'a', 'flea', 'market', '||comma||', 'and', 'you', 'think', 'they', 'have', 'fleas', 'there', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'i', 'think', 'they', 'have', 'fleas', 'there', '||period||', 'so', 'what', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'how', 'anyone', 'does', 'this', '||period||', 'it', 'must', 'be', '*so*', 'nerve', 'racking', '||period||', '||period||', '||period||', 'how', 'do', 'they', 'warm', 'up', 'their', 'fingers', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'have', 'a', 'piano', 'backstage', 'they', 'warm', 'up', 'on', '||period||', '||return||', '||return||', 'elaine:', '*no*', '||comma||', 'we', 'would', 'have', 'heard', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'do', 'you', 'think', 'they', 'just', 'crack', 'their', 'knuckles', 'and', 'come', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'her', "we'd", 'all', 'go', 'out', 'afterwards', '||comma||', 'okay', '||questionmark||', 'and', "don't", 'applaud', 'when', 'she', 'stops', 'playing', 'the', 'first', 'time', '||period||', "it's", 'not', 'over', 'yet', '||period||', '||return||', '||return||', 'jerry:', '[quickly', 'whispering]', 'i', 'resent', 'that', 'you', 'said', 'that', '||exclammark||', "that's", 'directed', 'at', '*me*', '||comma||', "isn't", 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'this', 'okay', '||questionmark||', 'can', 'i', 'do', 'this', '||questionmark||', '||leftparen||', 'he', 'claps', '||rightparen||', '||return||', '||return||', 'steve:', 'something', 'i', 'said', '||questionmark||', '[no', 'response]', "it's", 'john', '||period||', '||period||', '||period||', 'mollika', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'oh', '||comma||', '*john*', '||period||', '||period||', '||period||', 'oh', '||comma||', 'hi', 'john', '||period||', '||period||', '||period||', 'hi', '||period||', '||period||', '||period||', '||return||', '||return||', 'steve:', "what're", 'you', 'doing', 'down', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'was', 'just', 'at', 'this', 'recital', 'and', 'jerry', 'put', 'a', 'pez', 'dispenser', 'on', 'my', 'leg', 'and', 'i', 'started', 'laughing', '||period||', '||return||', '||return||', 'mollika:', "jerry's", 'in', 'there', '||questionmark||', 'i', 'heard', 'you', 'guys', 'broke', 'up', '||period||', '||return||', '||return||', 'elaine:', 'we', 'did', '||period||', "we're", 'just', 'hanging', 'out', '||period||', '||return||', '||return||', 'mollika:', 'really', '||period||', '||period||', '||period||', '||period||', 'you', 'really', 'look', 'great', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'uh', '||comma||', 'thank', 'you', '||period||', 'are', 'you', 'still', 'friends', 'with', 'richie', 'appel', '||questionmark||', '||return||', '||return||', 'mollika:', 'oh', '||comma||', 'richie', '||comma||', "he's", 'been', 'doing', 'comedy', 'in', 'l', '||period||', 'a', '||period||', 'for', 'a', 'few', 'years', '||period||', 'he', 'just', 'got', 'back', 'a', 'month', 'ago', '||period||', "he's", 'kind', 'of', 'messed', 'up', '||period||', 'on', 'drugs', '||period||', 'i', "don't", 'know', 'what', 'to', 'do', 'for', 'the', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'have', 'you', 'thought', 'about', 'an', 'intervention', '||questionmark||', '||return||', '||return||', 'mollika:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'get', 'all', 'his', 'friends', 'in', 'a', 'room', '||comma||', 'they', 'confront', 'himm', 'to', 'try', 'to', 'get', 'him', 'into', 'rehab', '||period||', "it's", 'a', 'very', 'popular', 'thing', 'now', '||period||', '||return||', '||return||', 'mollika:', "he'd", 'never', 'listen', 'to', 'anyone', '||period||', '||period||', '||period||', '||period||', 'except', 'of', 'course', 'jerry', '||period||', "he'd", 'listen', 'to', 'jerry', '||period||', 'jerry', 'would', 'have', 'to', 'be', 'involved', '||period||', 'he', 'really', 'respects', 'jerry', '||period||', '||return||', '||return||', 'elainelaine:', "i'm", 'sorry', '||period||', 'george', '||comma||', "i'm", 'sorry', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'put', 'the', 'pez', 'dispenser', 'on', 'her', 'leg', 'for', 'in', 'the', 'first', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||comma||', 'it', 'was', 'an', 'impulse', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'a', 'sick', 'impulse', 'does', 'that', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'could', 'i', 'know', 'she', 'would', 'start', 'to', 'laugh', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||period||', "i'm", 'sorry', '||period||', 'i', '*am*', '||exclammark||', '||return||', '||return||', 'jerry:', 'can', 'we', 'just', 'go', 'in', 'already', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'we', 'gonna', 'tell', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'tell', 'her', 'i', 'was', 'the', 'one', 'who', 'laughed', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "don't", 'say', 'a', 'word', '||period||', 'if', 'she', 'thinks', 'my', 'friends', 'are', 'jerks', '||comma||', 'then', "i'm", 'a', '*jerk*', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '[to', 'jerry]', 'oh', '||comma||', 'remind', 'me', 'to', 'talk', 'to', 'you', 'about', 'something', 'later', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||exclammark||', "we're", 'discussing', 'something', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'but', "i'm", 'distracted', 'now', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', '||questionmark||', 'a', '*baby*', '||exclammark||', '||questionmark||', 'all', 'right', '||period||', 'tell', 'her', '||period||', '||return||', '||return||', 'elaine:', 'when', 'i', 'was', 'outside', 'i', 'ran', 'into', 'john', 'mollika', '||period||', '||return||', '||return||', 'jerry:', 'really', 'john', 'mollika', '||comma||', 'they', 'guy', 'that', 'used', 'to', 'bartend', 'at', 'the', 'comedy', 'club', '||period||', "how's", 'he', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'good', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'can', 'we', 'cut', 'to', 'the', 'chase', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'cut', 'to', 'the', 'chase', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', '||comma||', '||quotemark||', 'joe', 'hollywood', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'lot', 'of', 'people', 'say', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'would', 'lose', 'that', '||period||', '||return||', '||return||', 'george:', '[accusingly]', "what's", '*that*', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'lose', 'that', '||quotemark||', '||questionmark||', "that's", 'not', 'a', 'hollywood', 'expression', '||exclammark||', '||return||', '||return||', 'george:', '[realizing', 'full', 'well', 'it', "isn't]", '||period||', '||period||', '||period||', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||period||', '||period||', '||period||', 'so', 'john', 'told', 'me', 'that', 'richie', 'is', 'in', 'town', 'from', 'los', 'angeles', 'and', "he's", 'really', 'messed', 'up', 'on', 'drugs', '||period||', 'so', 'i', 'told', 'him', 'that', 'he', 'should', 'do', 'an', 'intervention', '||period||', '||return||', '||return||', 'jerry:', 'really', '||comma||', 'an', 'intervention', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "y'know", 'people', '||comma||', 'we', 'got', 'a', 'situation', 'over', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'he', "want's", 'you', 'to', 'be', 'a', 'part', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', 'why', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', "'cause", 'richie', 'really', 'respects', 'you', 'and', 'he', 'would', 'listen', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', "y'know", 'these', 'things', 'are', '*really*', 'hard', 'to', 'load', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'ok', '||comma||', "i'm", "goin'", 'in', '||period||', '||return||', '||return||', 'jerry:', "we've", 'got', 'to', 'talk', 'about', 'this', '||leftparen||', 'to', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'hi', '||comma||', 'hi', '||comma||', 'you', 'were', 'wonderful', '||period||', '||return||', '||return||', 'noel:', 'no', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'these', 'are', 'my', 'friends', '||comma||', 'elaine', 'and', 'jerry', '||comma||', '||period||', '||period||', '||period||', 'noel', '||return||', '||return||', 'jerry:', 'you', 'play', 'a', '*hell*', 'of', 'a', 'piano', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'was', 'really', 'moved', '||comma||', '*really*', 'moved', '||period||', '||return||', '||return||', 'noel:', 'well', "didn't", 'you', 'hear', 'that', 'person', 'laughing', '||questionmark||', 'i', "couldn't", 'play', '||period||', 'i', 'was', '*humiliated', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'sure', 'it', "wasn't", '*at*', 'you', '||period||', '||return||', '||return||', 'noel:', 'well', 'then', '||comma||', 'what', 'was', 'she', 'laughing', 'at', '||questionmark||', '||return||', '||return||', 'jerry:', 'pez', '||questionmark||', '||return||', '||return||', 'noel:', 'uh', '||comma||', 'no', '||comma||', 'no', 'thank', 'you', '||period||', 'did', 'you', 'see', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'me', '||comma||', 'uh', '||comma||', 'uh', '||comma||', 'no', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'anyone', 'who', 'would', 'laugh', 'at', 'a', 'recital', 'is', 'probably', 'some', 'sort', 'of', 'lunatic', 'anyway', '||period||', 'i', 'mean', 'only', 'a', 'sick', 'twisted', 'mind', 'could', 'be', 'that', 'rude', 'and', 'ignorant', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'some', 'mental', 'defective', 'put', 'something', 'stupid', 'on', 'her', 'leg', '||period||', '||return||', '||return||', 'jerry:', 'even', 'if', 'this', 'so', 'called', 'mental', 'defective', 'did', 'put', 'something', 'on', 'her', 'leg', "she's", 'still', 'the', 'one', 'who', 'laughed', '||period||', '||return||', '||return||', 'noel:', "i'll", 'never', 'forget', 'that', 'laugh', 'for', 'the', 'rest', 'of', 'my', 'life', '||period||', '[exits]', '||return||', '||return||', 'elaine:', "i'm", 'sure', 'she', 'would', 'apologize', 'if', 'she', 'could', '||period||', 'probably', 'somebody', 'is', 'holding', 'her', 'back', 'against', 'every', 'fibre', 'in', 'her', 'being', '||period||', '||return||', '||return||', 'george:', 'if', 'she', "want's", 'to', 'continue', 'to', 'have', 'a', 'fibre', 'of', 'her', 'being', "she'll", 'be', 'very', 'careful', '||leftparen||', 'hitting', 'each', 'other', '||rightparen||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'so', 'are', 'you', 'ready', '||comma||', 'so', "we'll", 'go', 'out', 'and', 'get', 'something', 'to', 'eat', '||period||', '||return||', '||return||', 'noel:', 'i', "don't", 'feel', 'like', 'it', 'tonight', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'be', 'outside', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'jerry:', 'it', 'was', 'nice', 'meeting', 'you', 'by', 'the', 'way', '||comma||', 'how', 'do', 'you', 'warm', 'up', 'your', 'fingers', 'before', 'you', 'play', '||questionmark||', '||return||', '||return||', 'noel:', 'i', 'just', 'crack', 'my', 'knuckles', '||period||', '||return||', '||return||', 'george:', "we'll", 'have', 'a', 'good', 'time', '||return||', '||return||', 'noel:', 'i', "don't", 'feel', 'like', 'it', '||return||', '||return||', 'george:', 'ah', '||comma||', 'come', 'on', '||return||', '||return||', 'noel:', 'i', 'said', 'i', "don't", 'feel', 'like', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'um', '||comma||', 'all', 'right', '||comma||', 'um', '||comma||', 'uh', '||comma||', "i'll", 'call', "'ya", '||period||', "i'll", 'call', 'you', 'and', "we'll", 'talk', 'on', 'the', 'phone', '||period||', 'a', 'telephone', 'communiqu', '||period||', 'every', 'thing', 'is', 'fine', 'ok', '||comma||', 'uh', '||comma||', 'fine', '||comma||', '||period||', '||period||', '[exits]', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'thing', 'kramer', 'might', 'have', 'been', 'responsible', 'for', 'getting', 'richie', 'involved', 'with', 'drugs', 'in', 'the', 'first', 'place', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'how', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'few', 'years', 'ago', 'the', 'comedy', 'club', 'had', 'a', 'softball', 'team', '||period||', 'kramer', 'was', 'our', 'first', 'baseman', 'you', "couldn't", 'get', 'anything', 'by', 'him', 'it', 'was', 'unbelievable', '||period||', 'anyway', 'this', 'one', 'game', 'we', 'came', 'back', 'to', 'win', 'from', 'like', '8', 'runs', 'behind', '||period||', 'so', 'kramer', 'says', 'to', 'richie', 'why', "don't", 'you', 'dump', 'the', 'bucket', 'of', 'gatorade', 'on', 'marty', "benson's", 'head', '||questionmark||', 'the', 'club', 'owner', '||period||', 'so', 'richie', 'goes', 'ahead', 'and', 'does', 'it', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', 'the', 'guy', 'was', 'like', '67', 'years', 'old', '||comma||', 'it', 'was', 'freezing', 'out', '||comma||', 'he', 'caught', 'a', 'cold', '||comma||', 'got', 'pneumonia', '||comma||', 'and', 'a', 'month', 'later', 'he', 'was', 'dead', '||period||', '||return||', '||return||', 'elaine:', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'the', 'comedians', 'were', 'happy', '||period||', 'he', 'was', 'one', 'of', 'these', 'club', 'owners', 'nobodu', 'liked', 'anyway', '||period||', 'but', 'richie', 'was', 'never', 'the', 'same', '||period||', '||return||', '||return||', 'elaine:', 'whar', 'about', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'the', 'same', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', 'you', 'want', 'me', 'john', '||period||', 'i', 'have', 'spoken', 'to', 'richie', 'in', 'two', 'years', '||period||', 'i', "don't", 'have', 'a', 'good', 'apartment', 'for', 'an', 'intervention', '||period||', 'the', 'furniture', '||comma||', "it's", 'very', 'non', '||dash||', 'confrontational', '||period||', 'all', 'right', 'all', 'right', '||period||', 'goodbye', '||period||', '[to', 'kramer]', 'remember', 'ricie', 'appel', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looks', 'shocked', '||rightparen||', 'oh', 'sure', '||comma||', 'the', 'guy', 'i', 'told', 'to', 'pour', 'the', 'gatorade', 'that', 'killed', 'marty', 'benson', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', '||comma||', "we'll", 'john', 'mollika', 'is', 'organizing', 'some', 'kind', 'of', 'intervention', 'for', 'him', '||period||', "we're", 'having', 'it', 'here', '||period||', '||return||', '||return||', 'kramer:', 'can', 'i', 'get', 'in', 'on', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', '||questionmark||', "it's", 'like', 'a', 'poker', 'game', '||questionmark||', '||return||', '||return||', 'kramer:', 'is', 'elaine', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'knew', 'him', 'as', 'well', 'as', 'she', 'did', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'john', 'invited', 'her', '||period||', '||return||', '||return||', 'kramer:', 'so', 'what', 'are', 'you', 'saying', '||comma||', 'you', "don't", 'want', 'me', 'to', 'intervene', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'intervene', '||comma||', 'go', 'intervene', 'all', 'you', 'want', '||period||', 'i', 'am', 'just', 'afraid', 'you', 'might', 'be', 'interfering', 'while', "we're", 'intervening', '||period||', '||return||', '||return||', 'george:', "it's", 'george', '||return||', '||return||', 'jerry:', 'stop', 'smelling', 'your', 'arm', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', 'got', 'a', 'great', 'idea', 'for', 'a', 'cologne', '||period||', 'the', 'beach', '||period||', 'you', 'spray', 'it', 'on', 'and', 'you', 'smell', 'like', 'you', 'just', 'came', 'home', 'from', 'the', 'beach', '||return||', '||return||', 'jerry:', 'hum', '||comma||', 'a', 'cologne', 'that', 'smells', 'like', 'the', 'beach', '||period||', 'i', "can't", 'believe', "i'm", 'saying', 'this', '||comma||', '||quotemark||', "that's", 'not', 'a', 'bad', 'idea', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'tell', 'me', 'about', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'call', 'steve', "d'jiff", '||comma||', 'he', 'works', 'in', 'the', 'marketing', 'department', 'at', 'calvin', 'klein', '||period||', 'in', 'fact', "he's", 'a', 'good', 'friend', 'of', 'john', 'mollika', 'and', 'richie', 'also', '||period||', '||return||', '||return||', 'george:', 'well', "it's", 'over', '||period||', "it's", 'definitely', 'over', '||period||', '||return||', '||return||', 'jerry:', 'she', 'broke', 'up', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'but', 'i', 'can', 'tell', "she's", 'going', 'to', '||period||', 'i', 'can', 'sense', 'it', '||period||', 'we', 'had', 'this', 'terrible', 'phone', 'conversation', '||period||', 'i', 'was', 'so', 'nervous', 'before', 'i', 'called', 'i', 'made', 'up', 'this', 'whole', 'list', 'of', 'things', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'jerry:', 'what', 'was', 'on', 'the', 'list', '||questionmark||', '||return||', '||return||', 'george:', "let's", 'see', '||comma||', 'how', "i'm", 'very', 'good', 'at', 'going', 'in', 'reverse', 'in', 'my', 'car', '||comma||', 'why', "isn't", 'postum', 'a', 'more', 'popular', 'drink', '||comma||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'postum', 'is', 'under', '||dash||', 'ratted', '||comma||', '||return||', '||return||', 'george:', 'anyway', 'there', 'was', 'all', 'this', 'tension', '||period||', 'i', 'asked', 'her', 'if', 'she', 'wanted', 'to', 'go', 'out', 'to', 'dinner', 'and', 'she', 'said', '||quotemark||', 'no', '||comma||', 'maybe', 'we', 'could', 'get', 'together', 'for', 'lunch', '||period||', '||quotemark||', 'you', 'know', 'what', 'that', 'means', '||period||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'lunch', '||questionmark||', '||return||', '||return||', 'george:', 'lunch', 'is', 'fine', 'at', 'the', 'beginning', 'then', 'you', 'move', 'on', 'to', 'dinner', '||period||', 'you', "don't", 'move', 'back', 'to', 'lunch', '||period||', "it's", 'like', 'being', 'demoted', '||period||', "i'll", 'never', 'do', 'another', 'crossword', 'puzzle', 'with', 'her', 'again', '||period||', 'i', 'know', 'it', '||period||', '||return||', '||return||', 'kramer:', 'i', 'like', 'the', 'jumble', 'you', 'ever', 'do', 'the', 'jumble', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'no', 'power', 'do', 'you', 'understand', '||questionmark||', 'i', 'need', 'hand', '||period||', 'i', 'have', 'no', 'hand', '||period||', '||return||', '||return||', 'kramer:', 'break', 'up', 'with', 'her', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'break', 'up', 'with', 'her', '||period||', 'you', 'reverse', 'everything', 'that', 'way', '||period||', '||return||', '||return||', 'jerry:', 'a', 'preemptive', 'breakup', '||period||', '||return||', '||return||', 'george:', 'a', 'preemptive', 'breakup', '||period||', 'this', 'is', 'an', 'incredible', 'idea', '||period||', 'i', 'got', 'nothing', 'to', 'lose', '||period||', 'we', 'either', 'break', 'up', 'which', 'she', 'would', 'do', 'anyway', 'but', 'at', 'least', 'i', 'go', 'out', 'with', 'some', 'dignity', '||period||', 'completely', 'turn', 'the', 'tables', '||period||', "it's", 'absolutely', 'brilliant', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'i', 'am', 'have', 'to', 'going', 'to', 'break', 'up', 'with', 'you', '||period||', '||return||', '||return||', 'noel:', "you're", 'breaking', 'up', 'with', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', '||period||', '||period||', '||period||', 'am', 'breaking', 'up', 'with', '||comma||', '||period||', '||period||', '||period||', 'you', '||period||', '||return||', '||return||', 'noel:', 'wow', '||period||', '||return||', '||return||', 'george:', 'shocked', '||questionmark||', '||return||', '||return||', 'noel:', 'i', 'really', 'am', '||period||', '||return||', '||return||', 'george:', 'never', 'expected', 'this', 'did', 'you', '||questionmark||', '||return||', '||return||', 'noel:', 'i', 'thought', 'everything', 'was', 'fine', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'live', 'and', 'learn', '||period||', '||return||', '||return||', 'noel:', 'i', "don't", 'understand', '||period||', "you're", 'breaking', 'up', 'with', 'me', '||period||', "didn't", 'we', 'have', 'fun', 'doing', 'the', 'crossword', 'puzzles', '||questionmark||', '||return||', '||return||', 'george:', 'kind', 'of', '||period||', '||return||', '||return||', 'noel:', "i'm", 'very', 'confused', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "didn't", 'mean', 'to', 'hurt', 'you', 'kid', '||period||', '||return||', '||return||', 'noel:', 'i', 'thought', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', 'stop', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'noel:', 'what', 'do', 'you', 'want', '||comma||', 'i', 'can', 'make', 'you', 'happy', '||period||', '||return||', '||return||', 'george:', 'when', "you're", 'playing', 'the', 'piano', 'do', 'you', 'think', 'about', 'me', '||questionmark||', '||return||', '||return||', 'noel:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'what', "i'm", 'talking', 'about', '||period||', '||return||', '||return||', 'noel:', 'ok', '||comma||', "i'll", 'think', 'about', 'you', '||period||', '||return||', '||return||', 'george:', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'noel:', 'all', 'the', 'time', '||questionmark||', '||period||', '||period||', '||period||', 'ok', '||comma||', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'hear', 'you', '||period||', '||return||', '||return||', 'noel:', 'all', 'the', 'time', '||period||', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'george:', 'see', '||comma||', "it's", 'not', 'so', 'hard', '||period||', '||return||', '||return||', 'kramer:', 'go', 'ahead', 'smell', '||comma||', 'smell', '||return||', '||return||', 'steve:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'do', 'you', 'recognize', 'it', '||questionmark||', '||period||', '||period||', '||period||', 'the', 'beach', '||period||', '||return||', '||return||', 'steve:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'talking', 'about', 'the', 'beach', '||period||', '||return||', '||return||', 'steve:', 'what', 'about', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'the', 'way', 'you', 'smell', 'when', 'you', 'first', 'come', 'home', 'from', 'the', 'beach', '||questionmark||', 'well', '||comma||', 'i', 'want', 'to', 'make', 'a', 'cologne', 'that', 'captures', 'the', 'essence', 'of', 'that', 'smell', '||period||', 'oh', 'yeah', '||period||', '||return||', '||return||', 'steve:', 'that', 'is', 'the', 'dumbest', 'idea', 'i', 'have', 'ever', 'heard', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'wait', '||comma||', 'did', 'you', 'here', 'what', 'i', 'just', 'said', '||questionmark||', '||return||', '||return||', 'steve:', 'do', 'you', 'think', 'people', 'are', 'going', 'to', 'pay', '$80', 'a', 'bottle', 'to', 'smell', 'like', 'dead', 'fish', 'and', 'sea', 'weed', '||questionmark||', "that's", 'why', 'people', 'take', 'showers', 'when', 'the', 'come', 'home', 'from', 'the', 'beach', '||period||', "it's", 'an', 'objectionable', 'offensive', 'odour', '||period||', '||return||', '||return||', 'kramer:', 'so', 'you', "don't", 'think', "it's", 'a', 'good', 'idea', '||questionmark||', '||return||', '||return||', '[the', 'intervention', '[note:', 'double', 'check', 'this', 'part', 'for', 'sure', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', ']', '||return||', '||return||', 'guy:', 'the', 'membranes', 'get', 'dried', 'and', 'it', 'just', 'starts', 'bleeding', '||period||', 'since', 'i', 'was', 'a', 'kid', 'so', 'i', 'have', 'to', 'stick', 'tissue', 'up', 'there', '||return||', '||return||', 'elaine:', '||leftparen||', 'very', 'uninterested', '||rightparen||', 'uh', '||comma||', 'you', 'have', 'to', 'work', 'like', 'that', '||questionmark||', '||return||', '||return||', 'guy:', 'nobody', 'minds', 'nobody', 'has', 'ever', 'said', 'anything', 'to', 'me', '||period||', '||return||', '||return||', 'other', 'guy:', 'are', 'there', 'any', 'ice', 'cubes', '||questionmark||', '||return||', '||return||', 'jerry:', 'in', 'the', 'freezer', '||period||', '||return||', '||return||', 'other', 'guy:', 'i', 'looked', '||period||', 'there', "aren't", 'any', 'ice', 'cubes', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'guess', 'there', "aren't", 'any', 'ice', 'cubes', '||period||', '||return||', '||return||', 'other', 'guy:', 'i', "can't", 'drink', 'this', '||period||', "it's", 'warm', '||exclammark||', '||leftparen||', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'guy:', "shouldn't", 'we', 'rehearse', 'this', 'a', 'little', 'bit', 'before', 'richie', 'comes', '||questionmark||', '||return||', '||return||', 'steve:', "what's", 'the', 'plan', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'i', 'have', 'to', 'talk', '||questionmark||', 'i', "don't", 'feel', 'like', 'talking', '||period||', '||return||', '||return||', 'other', 'guy:', 'well', '||comma||', 'if', "he's", 'not', 'going', 'to', 'talk', "i'm", 'not', 'going', 'to', 'talk', 'either', '||period||', '||return||', '||return||', 'guy:', 'no', '||comma||', 'we', 'all', 'have', 'to', 'talk', '||period||', '||return||', '||return||', 'elaine:', "what's", 'the', 'order', '||questionmark||', '||return||', '||return||', 'guy:', "we'll", 'go', 'in', 'alphabetical', 'order', '||period||', 'first', 'roberta', '||period||', '||return||', '||return||', 'roberta:', 'why', 'am', 'i', 'first', '||questionmark||', '||return||', '||return||', 'elaine:', 'albano', 'is', 'your', 'last', 'name', '||period||', '||return||', '||return||', 'roberta:', "that's", 'not', 'my', 'name', 'any', 'more', '||period||', "i'm", 'divorced', '||period||', '||return||', '||return||', 'steve:', "i'll", 'go', 'first', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'is', 'this', 'the', 'interference', '||questionmark||', '||return||', '||return||', 'jerry:', 'intervention', '||period||', '||return||', '||return||', 'other', 'guy:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'is', 'it', 'all', 'right', 'if', 'i', 'stay', 'for', 'the', 'intervention', '||questionmark||', '||return||', '||return||', 'steve:', 'hey', '||comma||', 'this', 'is', 'for', 'close', 'friends', 'only', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'a', 'friend', '||period||', 'who', 'do', 'you', 'think', 'told', 'him', 'to', 'pour', 'the', 'gatorade', 'over', 'marty', "benson's", 'head', '||questionmark||', '||return||', '||return||', 'other', 'guy:', 'let', 'him', 'stay', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'know', 'i', 'got', 'someone', 'to', 'make', 'up', 'that', 'cologne', 'for', 'me', '||comma||', 'big', 'mouth', '||period||', '||return||', '||return||', 'steve:', "somebody's", 'going', 'to', 'make', 'that', 'crap', '||questionmark||', '||return||', '||return||', 'old', 'guy:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'come', 'on', '||comma||', 'these', 'are', 'some', 'of', 'my', 'polar', 'bear', 'buddies', '||period||', '||return||', '||return||', 'other', 'guy:', 'they', "can't", 'stay', '||period||', '||return||', '||return||', 'old', 'guy:', "we're", 'having', 'a', 'party', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "we're", 'having', 'an', 'intervention', '||return||', '||return||', 'old', 'guy:', 'an', 'intervention', '||questionmark||', "who's", 'intervening', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'a', 'friend', 'of', 'ours', 'on', 'drugs', 'and', "we're", 'going', 'to', 'confront', 'him', '||period||', '||return||', '||return||', 'old', 'guy:', 'sure', '||comma||', 'we', 'used', 'to', 'do', 'that', 'when', 'one', 'of', 'our', 'polar', 'bears', 'stopped', 'coming', '||period||', 'we', 'would', 'go', 'to', 'his', 'house', 'and', 'say', '||comma||', '||quotemark||', 'what', 'you', "don't", 'want', 'to', 'be', 'a', 'polar', 'bear', 'anymore', '||questionmark||', "it's", 'too', 'cold', 'for', 'you', '||questionmark||', '||quotemark||', '||return||', '||return||', 'guy:', "it's", 'him', '||period||', '||return||', '||return||', 'roberta:', 'what', 'should', 'we', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'hide', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'a', 'surprise', 'party', '||exclammark||', 'yeah', '||leftparen||', 'to', 'intercom', '||rightparen||', '||return||', '||return||', 'george:', "it's", 'george', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'come', 'on', 'up', '||period||', '||period||', '||period||', '||period||', "it's", 'not', 'him', '||period||', '||return||', '||return||', 'guy:', 'if', 'you', "don't", 'go', 'out', 'with', 'me', "it's", 'because', "i'm", 'a', 'bar', 'tender', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'i', "don't", 'think', 'this', 'is', 'appropriate', 'right', 'now', '||period||', '||return||', '||return||', 'guy:', 'is', 'it', 'because', 'i', 'have', 'a', 'tissue', 'in', 'my', 'nose', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'getting', 'warm', '||period||', '||return||', '||return||', 'george:', 'we', 'just', 'came', 'from', "chadway's", '||leftparen||', '||questionmark||', '||rightparen||', "what's", 'going', 'on', '||period||', '||return||', '||return||', 'jerry:', "we're", 'having', 'the', 'intervention', 'for', 'richie', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'right', '||comma||', 'right', '||comma||', 'the', 'intervention', '||period||', 'should', 'we', 'leave', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'uh', '||period||', '||period||', '||return||', '||return||', 'noel:', '||leftparen||', 'happily', '||rightparen||', 'elaine', '||comma||', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'noel', '||return||', '||return||', 'jerry:', 'well', '||comma||', "you're", 'looking', 'well', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'let', 'me', 'tell', 'you', 'something', '||comma||', '||quotemark||', 'a', 'man', 'without', 'hand', 'is', 'not', 'a', 'man', '||period||', '||quotemark||', 'i', 'got', 'so', 'much', 'hand', "i'm", 'coming', 'out', 'of', 'my', 'gloves', '||period||', 'i', 'got', 'to', 'thank', 'kramer', '||period||', '||return||', '||return||', 'steve:', 'even', 'if', 'i', 'were', 'dragged', 'through', 'manure', 'i', 'still', "wouldn't", 'put', 'that', 'stuff', 'on', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'this', 'man', 'is', 'a', 'genius', '||period||', 'genius', '||exclammark||', '||return||', '||return||', 'steve:', 'you', 'think', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'so', 'i', 'know', 'so', '||comma||', 'kramer', '||comma||', 'come', 'here', 'i', 'got', 'to', 'talk', 'to', 'you', '||return||', '||return||', 'old', 'man:', 'the', 'male', 'kangaroo', "doesn't", 'have', 'a', 'pouch', 'only', 'the', 'female', 'has', 'it', '||period||', 'the', 'male', 'has', 'pouch', 'envy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'noel:', 'that', 'laugh', '||period||', "that's", 'the', 'laugh', '||period||', "that's", 'it', '||period||', "you're", 'the', 'one', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'it', 'was', 'an', 'accident', '||period||', 'it', 'really', "wasn't", 'my', 'fault', '||period||', 'it', 'was', 'jerry', '||period||', '||return||', '||return||', 'noel:', 'you', 'put', 'a', 'pez', 'dispenser', 'on', 'her', 'leg', 'during', 'my', 'recital', '||questionmark||', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'she', 'would', 'laugh', '||period||', '||return||', '||return||', 'noel:', 'you', 'lied', 'to', 'me', 'george', '||comma||', 'you', 'lied', 'to', 'me', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'um', '||comma||', 'wa', '||comma||', 'wa', '||comma||', 'what', 'did', 'i', 'do', '||questionmark||', '||period||', '||period||', '||period||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'noel:', 'i', '||period||', '||period||', '||period||', 'am', 'breaking', 'up', '||period||', '||period||', '||period||', 'with', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'you', "can't", 'break', 'up', 'with', 'me', '||period||', "i've", 'got', 'hand', '||period||', '||return||', '||return||', 'noel:', 'and', "you're", 'going', 'to', 'need', 'it', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'richie', '||return||', '||return||', 'richie:', 'so', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'pretty', 'ugly', 'from', 'the', 'get', 'go', '||period||', "he's", 'not', 'listening', '||comma||', "he's", 'hostile', '||comma||', "he's", 'talking', 'back', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'do', 'these', 'puzzles', '||period||', '||return||', '||return||', 'jerry:', 'so', 'he', 'starts', 'to', 'get', 'up', 'he', 'spots', 'the', 'pez', 'dispenser', 'on', 'the', 'coffee', 'table', '||return||', '||return||', 'george:', 'ah', 'ah', 'pez', 'dispenser', '||period||', '||return||', '||return||', 'jerry:', 'he', 'picks', 'it', 'up', '||dash||', 'he', 'stares', 'at', 'it', '||dash||', "it's", 'like', "he's", 'hypnotized', 'by', 'it', '||period||', 'then', "he's", 'telling', 'us', 'this', 'story', 'about', 'how', 'when', 'he', 'was', 'a', 'kid', 'he', 'was', 'in', 'the', 'car', 'with', 'his', 'father', '||comma||', 'and', 'his', 'father', 'was', 'trying', 'to', 'load', 'one', 'of', 'them', '||return||', '||return||', 'george:', 'well', "they're", 'hard', 'to', 'load', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'me', 'something', 'i', "don't", 'know', '||period||', 'so', 'as', 'the', "father's", 'trying', 'to', 'load', 'it', 'he', 'loses', 'control', 'of', 'the', 'car', 'and', 'it', 'crashes', 'into', 'a', 'high', 'school', 'cafeteria', '||period||', "nobody's", 'hurt', 'but', 'pez', 'is', 'all', 'over', 'the', 'car', '||period||', 'and', 'the', 'dispenser', 'was', 'destroyed', 'virtually', 'beyond', 'recognition', '||period||', '||return||', '||return||', 'george:', 'poor', 'kid', '||period||', '||return||', '||return||', 'jerry:', 'so', 'as', "he's", 'telling', 'the', 'story', 'he', 'starts', 'crying', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', '||questionmark||', 'i', 'gave', 'him', 'my', 'pez', 'dispenser', '||period||', '||return||', '||return||', 'george:', 'wow', '||return||', '||return||', 'jerry:', 'two', 'hours', 'later', 'he', 'checks', 'into', "smither's", 'clinic', '||period||', 'i', 'talked', 'to', 'the', 'doctor', 'yesterday', '||period||', "he's", 'doing', 'great', 'on', 'the', 'rehab', '||period||', "he's", 'hooked', 'on', 'pez', '||period||', "he's", 'eating', 'them', 'like', "there's", 'no', 'tomorrow', '||period||', '||return||', '||return||', 'george:', "what's", 'a', 'three', 'letter', 'word', 'for', 'candy', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'do', 'those', 'things', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'if', 'you', 'named', 'a', 'kid', 'rasputin', 'do', 'you', 'think', 'that', 'would', 'have', 'a', 'negative', 'effect', 'on', 'his', 'life', '||questionmark||', '||return||', '||return||', 'elaine:', 'na', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', 'were', 'going', 'out', 'for', 'dinner', 'in', 'ten', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'realize', 'this', 'is', 'the', 'last', 'meal', 'i', 'am', 'going', 'to', 'have', 'for', 'three', 'days', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'its', 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||period||', '||period||', '||period||', 'i', 'never', 'heard', 'of', 'this', '||period||', 'youve', 'got', 'to', 'fast', 'for', 'three', 'days', 'to', 'take', 'an', 'ulcer', 'test', '||period||', 'how', 'you', 'gonna', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||period||', 'how', 'could', 'i', 'possibly', 'have', 'ulcers', '||questionmark||', 'who', 'could', 'have', 'given', 'me', 'ulcers', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'ill', 'take', 'out', 'the', 'garbage', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'have', 'you', 'ever', 'fasted', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'once', 'i', 'didnt', 'have', 'dinner', 'until', '||comma||', 'like', '900', 'oclock', '||comma||', 'that', 'was', 'pretty', 'rough', '||period||', '||leftparen||', 'exits', 'to', 'hall', 'with', 'garbage', 'meets', 'george', '||rightparen||', 'hey', '||comma||', 'do', 'me', 'a', 'favour', 'will', 'ya', '||questionmark||', 'throw', 'out', 'my', 'garbage', 'for', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'its', 'just', 'down', 'the', 'hall', '||period||', '||return||', '||return||', 'george:', 'give', 'me', 'two', 'bucks', '||period||', 'ill', 'do', 'it', 'for', 'two', 'bucks', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'give', 'you', '50', 'cents', '||period||', '||return||', '||return||', 'george:', 'theres', 'no', 'way', 'i', 'touch', 'that', 'bag', 'for', 'less', 'than', 'two', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'fifty', 'cents', '||period||', '||leftparen||', '||questionmark||', '||questionmark||', '||rightparen||', 'a', 'piece', 'of', 'drakes', 'coffee', 'cake', '||return||', '||return||', 'george:', 'youre', 'not', 'getting', 'no', 'drakes', 'coffee', 'cake', 'for', 'fifty', 'cents', '||period||', 'yae', '||comma||', 'hey', '||comma||', 'im', 'all', 'set', '||period||', 'i', 'got', 'the', 'ticket', '||period||', 'im', 'going', 'to', 'the', 'cayman', 'islands', 'this', 'friday', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'get', 'you', '||period||', 'who', 'goes', 'on', 'vacation', 'without', 'a', 'job', '||questionmark||', 'what', 'do', 'you', 'need', 'a', 'break', 'from', 'getting', 'up', 'at', 'eleven', '||questionmark||', '||return||', '||return||', 'george:', 'its', 'an', 'incredible', 'deal', '||period||', 'i', 'dont', 'know', 'why', 'you', 'dont', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'i', 'dont', 'go', 'for', 'these', 'non', '||dash||', 'refundable', 'deals', '||period||', 'i', 'cant', 'commit', 'to', 'a', 'woman', '||period||', 'im', 'not', 'going', 'to', 'commit', 'to', 'an', 'airline', '||period||', '||return||', '||return||', 'gina:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'gina:', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'gina', '||comma||', 'do', 'you', 'know', 'what', 'a', 'drakes', 'coffee', 'cake', 'is', '||questionmark||', '||return||', '||return||', 'gina:', 'of', 'course', '||comma||', 'the', 'plane', 'cake', 'with', 'the', 'sweet', 'brown', 'crumbs', 'on', 'the', 'top', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'do', 'they', 'cost', '||questionmark||', '||return||', '||return||', 'gina:', 'the', 'junior', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'the', 'full', 'size', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'the', 'junior', '||period||', '||return||', '||return||', 'george:', 'you', 'didnt', 'say', '||quotemark||', 'junior', '||quotemark||', '||period||', '||return||', '||return||', 'gina:', 'i', 'havent', 'had', 'one', 'of', 'those', 'since', 'i', 'was', 'a', 'little', 'girl', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'you', 'should', 'be', 'ashamed', 'of', 'yourself', '||period||', 'i', 'want', 'you', 'out', 'of', 'here', '||exclammark||', '||leftparen||', 'martin', 'enters', 'the', 'hall', '||rightparen||', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'martin:', 'good', 'enough', '||period||', '||return||', '||return||', 'jerry:', 'boy', 'shes', 'sexy', 'isnt', 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'believe', 'that', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'neighbour', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'creepy', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'did', 'he', 'think', 'i', 'was', 'flirting', 'with', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'didnt', 'seem', 'too', 'pleased', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'ill', 'get', 'a', 'steak', 'with', 'french', 'fried', 'onion', 'wings', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'know', 'what', '||questionmark||', 'i', 'just', 'remembered', 'something', '||period||', 'i', 'had', 'a', 'dream', 'about', 'that', 'guy', 'last', 'night', '||period||', 'this', 'is', 'amazing', '||period||', '||return||', '||return||', 'jerry:', 'whats', 'so', 'amazing', '||questionmark||', 'youve', 'seen', 'him', 'before', '||period||', '||return||', '||return||', 'george:', 'i', 'havent', 'seen', 'him', 'for', 'months', '||period||', '||return||', '||return||', 'jerry:', 'what', 'was', 'the', 'dream', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'doing', 'standup', 'comedy', 'in', 'kennebunkport', 'maine', '||period||', '||questionmark||', '||questionmark||', '||questionmark||', 'night', 'club', '||period||', 'the', 'stage', 'was', 'on', 'a', 'cliff', 'and', 'the', 'audience', 'was', 'throwing', 'all', 'the', 'comics', 'off', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'ive', 'played', 'there', '||period||', '||return||', '||return||', 'george:', 'ive', 'had', 'a', 'lot', 'of', 'other', 'paranormal', 'stuff', 'happen', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'a', 'little', 'paranormal', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'george', '||comma||', 'you', 'know', 'my', 'friend', 'goes', 'to', 'a', 'psychic', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', 'uh', '||comma||', 'you', 'should', 'go', 'some', 'time', '||period||', '||return||', '||return||', 'george:', 'id', 'love', 'to', 'go', '||period||', 'make', 'an', 'appointment', '||period||', '||return||', '||return||', 'jerry:', 'psychics', '||comma||', 'vacations', '||period||', 'how', 'about', 'getting', 'a', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', 'got', 'fired', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'come', 'on', '||comma||', 'lets', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'elaine:', 'i', 'wonder', 'what', 'ghandi', 'ate', 'before', 'his', 'fast', '||period||', '||return||', '||return||', 'jerry:', 'i', 'heard', 'he', 'used', 'to', 'polish', 'off', 'a', 'box', 'of', 'triscuits', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'ghandi', 'loved', 'triscuits', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'gina:', 'its', 'gina', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'gina:', 'martines', 'girl', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'martine', '||questionmark||', '||return||', '||return||', 'gina:', 'you', 'next', 'door', 'neighbour', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'martin', '||exclammark||', '||return||', '||return||', 'george:', 'its', 'martine', '||period||', 'i', 'think', 'hes', 'dying', '||period||', 'he', 'tried', 'to', 'kill', 'himself', 'with', 'pills', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'gina:', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'in', 'my', 'pajamas', '||questionmark||', 'i', 'better', 'get', 'my', 'robe', '||period||', '||return||', '||return||', 'gina:', 'we', 'dont', 'have', 'enough', 'time', '||period||', '||return||', '||return||', 'jerry:', 'itll', 'take', 'two', 'seconds', '||period||', '||return||', '||return||', 'gina:', 'there', 'is', 'no', 'time', '||period||', '||return||', '||return||', 'jerry:', 'we', 'dont', 'have', 'two', 'seconds', '||questionmark||', '||return||', '||return||', 'gina:', 'all', 'right', '||period||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'gina:', 'no', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||period||', 'ill', 'just', 'wear', 'the', 'pajamas', '||period||', '||return||', '||return||', 'gina:', 'will', 'you', 'just', 'get', 'it', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'gina:', 'forget', 'it', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'ill', 'go', 'get', 'the', 'robe', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'not', 'too', 'bad', '||period||', 'its', 'not', 'like', 'a', 'sunny', 'von', 'bulow', 'comma', '||period||', 'the', 'doctor', 'said', 'he', 'should', 'snap', 'out', 'of', 'it', 'anytime', '||period||', '||return||', '||return||', 'gina:', 'you', 'know', 'why', 'he', 'did', 'this', '||questionmark||', 'because', 'i', 'told', 'him', 'it', 'was', 'over', '||period||', 'i', 'did', 'not', 'want', 'to', 'see', 'him', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'its', 'over', '||questionmark||', '||return||', '||return||', 'gina:', 'i', 'could', 'not', 'stand', 'it', 'another', 'minute', '||period||', 'yesterday', 'he', 'turned', 'over', 'a', 'mans', 'hot', 'dog', 'stand', 'because', 'he', 'thought', 'the', 'man', 'was', 'looking', 'at', 'me', '||period||', 'and', 'then', 'after', 'he', 'saw', 'you', 'in', 'the', 'hall', '||period||', 'ach', '||comma||', 'he', 'was', 'crazy', 'with', 'jealousy', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'boy', '||comma||', 'did', 'he', 'say', 'anything', 'about', 'me', '||questionmark||', '||return||', '||return||', 'gina:', 'he', 'does', 'not', 'like', 'you', '||period||', 'and', 'all', 'indications', 'are', 'he', 'does', 'not', 'like', 'drakes', 'coffee', 'cake', '||period||', '||return||', '||return||', 'jerry:', 'he', 'said', 'that', '||questionmark||', '||return||', '||return||', 'gina:', 'he', 'was', 'screaming', 'about', 'it', 'all', 'night', '||period||', 'how', 'its', 'too', 'sweet', 'and', 'it', 'falls', 'apart', 'when', 'you', 'eat', 'it', '||period||', '||return||', '||return||', 'jerry:', 'im', 'sorry', 'if', 'i', 'caused', 'any', 'trouble', '||period||', 'i', 'was', 'just', 'being', 'friendly', '||period||', '||return||', '||return||', 'gina:', 'i', 'wasnt', '||period||', '||return||', '||return||', 'jerry:', 'you', 'werent', '||questionmark||', '||return||', '||return||', 'gina:', 'no', '||comma||', 'i', 'have', 'thought', 'about', 'you', 'many', 'times', '||period||', 'have', 'you', 'thought', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', '||return||', '||return||', 'gina:', 'tell', 'me', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', 'he', 'cant', 'hear', 'anything', '||questionmark||', '||period||', '||period||', '||period||', 'martin', '||comma||', 'martin', '||period||', '||return||', '||return||', 'gina:', 'i', 'wish', 'he', 'was', 'not', 'in', 'a', 'coma', '||period||', 'i', 'wish', 'he', 'was', 'dead', '||period||', 'i', 'wish', 'i', 'could', 'pull', 'the', 'plug', 'out', 'from', 'him', '||period||', '||return||', '||return||', 'jerry:', 'i', '||comma||', 'would', '||comma||', 'i', 'would', 'wait', 'on', 'that', '||period||', 'i', 'know', 'how', 'you', 'feel', 'but', '||period||', 'juries', 'today', '||comma||', 'you', 'never', 'know', 'how', 'theyre', 'going', 'to', 'look', 'at', 'a', 'thing', 'like', 'this', '||period||', '||return||', '||return||', 'gina:', 'i', 'saw', 'you', 'looking', 'at', 'your', 'watch', '||period||', 'you', 'want', 'to', 'leave', '||questionmark||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'just', 'wanted', 'to', 'see', 'what', 'time', 'it', 'was', '||period||', '||return||', '||return||', 'gina:', 'are', 'you', 'afraid', 'of', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'gina:', 'then', 'kiss', 'me', '||period||', '||return||', '||return||', 'jerry:', 'here', '||questionmark||', '||return||', '||return||', 'gina:', 'yes', '||comma||', 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'the', 'proper', 'venue', '||questionmark||', '||return||', '||return||', 'gina:', 'you', 'dont', 'want', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'i', 'want', 'to', '||period||', 'i', '||comma||', 'i', 'very', 'much', 'want', 'to', '||period||', 'i', '||comma||', 'i', 'desire', 'to', '||period||', 'i', '||comma||', 'i', 'pine', 'to', '||period||', '||return||', '||return||', 'gina:', 'then', 'kiss', 'me', 'right', 'in', 'front', 'of', 'him', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', '||period||', 'what', 'if', 'he', 'wakes', 'up', '||questionmark||', '||return||', '||return||', 'gina:', 'a', 'man', 'is', 'lying', 'here', 'unconscious', 'and', 'youre', 'afraid', 'of', 'him', '||questionmark||', 'what', 'kind', 'of', 'a', 'man', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'man', 'who', 'respects', 'a', 'good', 'comma', '||period||', 'if', 'it', 'was', 'one', 'of', 'those', 'in', 'and', 'out', 'comas', '||comma||', 'maybe', '||period||', 'but', 'when', 'a', 'guys', 'got', 'a', 'coma', 'going', 'like', 'this', 'you', 'dont', 'want', 'to', 'mess', 'with', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'hear', 'about', 'martin', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'heard', '||period||', '||return||', '||return||', 'kramer:', 'i', 'cant', 'believe', 'hes', 'in', 'a', 'coma', '||period||', '||return||', '||return||', 'kramer:', 'hes', 'got', 'my', 'vacuum', 'cleaner', '||period||', 'you', 'know', 'i', 'loaned', 'it', 'to', 'him', '||period||', 'he', 'never', 'returned', 'it', '||period||', 'the', 'carpets', 'are', 'filthy', '||period||', 'what', 'am', 'i', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'told', 'you', 'about', 'martin', '||questionmark||', '||return||', '||return||', 'kramer:', 'newman', '||exclammark||', 'hes', 'good', 'friends', 'with', 'him', '||period||', '||return||', '||return||', 'jerr:', 'oh', '||comma||', 'big', 'mouth', 'newman', '||period||', 'i', 'should', 'have', 'guessed', '||period||', '||return||', '||return||', 'kramer:', 'hes', 'got', 'all', 'of', 'my', 'attachments', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'how', 'long', 'do', 'you', 'have', 'to', 'wait', 'for', 'a', 'guy', 'to', 'come', 'out', 'of', 'a', 'coma', 'before', 'you', 'can', 'ask', 'his', 'ex', '||dash||', 'girlfriend', 'out', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'gina', '||questionmark||', 'why', 'wait', '||questionmark||', 'why', 'not', 'just', 'call', 'doctor', 'kavorkian', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'dont', 'get', 'that', 'whole', 'suicide', 'machine', '||period||', 'theres', 'no', 'tall', 'buildings', 'where', 'these', 'people', 'live', '||questionmark||', 'they', 'cant', 'wrap', 'their', 'lips', 'around', 'a', 'revolver', 'like', 'a', 'normal', 'person', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', 'whats', 'going', 'on', 'between', 'you', 'and', 'gina', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'went', 'with', 'her', 'to', 'the', 'hospital', 'last', 'night', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'uh', '||period||', '||return||', '||return||', 'jerry:', 'so', 'were', 'in', 'the', 'room', 'and', 'shes', 'trying', 'to', 'get', 'me', 'to', 'kiss', 'her', 'right', 'in', 'front', 'of', 'him', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'uh', '||comma||', 'you', 'see', 'thats', 'the', 'great', 'thing', 'about', 'mediterranean', 'women', '||period||', 'all', 'right', '||comma||', 'so', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'what', 'kind', 'of', 'a', 'man', 'are', 'you', '||questionmark||', 'the', 'guy', 'is', 'unconscious', 'in', 'a', 'coma', 'and', 'you', 'dont', 'have', 'the', 'guts', 'to', 'kiss', 'his', 'girlfriend', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'know', 'what', 'the', 'coma', 'etiquette', 'was', '||period||', '||return||', '||return||', 'kramer:', 'there', 'is', 'no', 'coma', 'etiquette', '||period||', 'you', 'see', 'thats', 'the', 'beauty', 'of', 'the', 'coma', '||comma||', 'man', '||period||', 'it', 'doesnt', 'matter', 'what', 'you', 'do', 'around', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'youre', 'saying', '||comma||', 'his', 'girl', '||comma||', 'his', 'car', '||comma||', 'his', 'clothes', '||comma||', 'its', 'all', 'up', 'for', 'grabs', '||period||', 'you', 'can', 'just', 'loot', 'the', 'coma', 'victim', '||period||', '||return||', '||return||', 'kramer:', 'id', 'give', 'him', '24', 'hours', 'to', 'get', 'out', 'of', 'it', '||period||', 'they', 'cant', 'get', 'out', 'of', 'it', 'in', '24', 'hours', '||comma||', 'its', 'a', 'land', 'rush', '||period||', '||return||', '||return||', 'jerry:', 'so', 'if', 'the', 'coma', 'victim', 'wakes', 'up', 'in', 'a', 'month', '||comma||', 'hes', 'thrilled', '||comma||', 'he', 'got', 'out', 'of', 'the', 'coma', '||period||', 'he', 'goes', 'home', '||comma||', 'theres', 'nothing', 'left', '||questionmark||', '||return||', '||return||', 'kramer:', 'nothing', 'left', '||exclammark||', 'thats', 'why', 'im', 'trying', 'to', 'get', 'that', 'vacuum', 'cleaner', '||period||', 'because', 'somebodys', 'going', 'to', 'grab', 'it', '||period||', '||return||', '||return||', 'rula:', 'martins', 'spirit', 'came', 'to', 'you', 'as', 'a', 'warning', '||period||', '||return||', '||return||', 'elaine:', 'why', 'would', 'he', 'come', 'to', 'george', '||questionmark||', '||return||', '||return||', 'rula:', 'because', 'george', 'has', 'heightened', 'extra', 'sensory', 'perception', '||period||', 'faygy', 'get', 'your', 'finger', 'out', 'of', 'your', 'nose', '||period||', '||return||', '||return||', 'george:', 'i', 'knew', 'it', '||period||', 'i', 'always', 'felt', 'different', '||period||', '||return||', '||return||', 'rula:', 'you', 'are', '||period||', 'some', 'coffee', 'cake', '||questionmark||', '||return||', '||return||', 'george:', 'drakes', '||questionmark||', '||return||', '||return||', 'rula:', 'yes', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'buy', 'this', 'for', 'me', '||questionmark||', '||return||', '||return||', 'rula:', 'no', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'ha', '||comma||', 'because', 'i', 'love', 'drakes', 'coffee', 'cake', '||period||', '||return||', '||return||', 'rula:', 'maybe', 'i', 'did', '||period||', '||return||', '||return||', 'elaine:', 'take', 'it', 'away', '||period||', '||return||', '||return||', 'george:', 'she', 'hasnt', 'eaten', 'in', 'two', 'days', '||period||', '||return||', '||return||', 'rula:', 'whos', 'pauline', '||questionmark||', '||return||', '||return||', 'george:', 'pauline', '||questionmark||', '||period||', '||period||', '||period||', 'wait', 'a', 'minute', '||period||', 'i', 'got', 'it', '||period||', 'my', 'brother', 'once', 'impregnated', 'a', 'woman', 'named', 'pauline', '||period||', '||return||', '||return||', 'rula:', 'do', 'you', 'think', 'about', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'i', 'hear', 'her', 'name', 'mentioned', '||period||', '||return||', '||return||', 'rula:', 'cut', 'these', 'with', 'your', 'left', 'hand', '||period||', '||return||', '||return||', 'george:', 'there', 'was', 'a', 'woman', '||comma||', 'audrey', '||period||', 'she', 'had', 'a', 'very', 'big', 'nose', '||period||', '||return||', '||return||', 'rula:', 'i', 'see', 'an', 'audrey', '||comma||', 'but', 'with', 'a', 'small', 'nose', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||comma||', 'she', 'had', 'a', 'nose', 'job', '||period||', 'i', 'loved', 'her', 'very', 'deeply', '||period||', 'will', 'she', 'ever', 'speak', 'to', 'me', 'again', '||questionmark||', '||return||', '||return||', 'rula:', 'not', 'in', 'this', 'life', '||period||', '||return||', '||return||', 'elaine:', 'should', 'you', 'be', 'smoking', '||questionmark||', '||return||', '||return||', 'rula:', 'does', 'it', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'youre', 'pregnant', '||period||', '||return||', '||return||', 'george:', 'elaine', '||period||', '||return||', '||return||', 'rula:', 'i', 'smoked', 'when', 'i', 'had', 'faisy', '||period||', '||return||', '||return||', 'rula:', 'ah', 'oh', '||period||', '||return||', '||return||', 'george:', 'ah', 'oh', '||questionmark||', 'what', '||questionmark||', 'what', 'ah', 'oh', '||questionmark||', '||return||', '||return||', 'rula:', 'i', 'dont', 'know', 'about', 'this', 'trip', 'george', '||period||', '||return||', '||return||', 'george:', 'you', 'can', 'see', 'the', 'cayman', 'islands', 'in', 'there', '||questionmark||', 'is', 'something', 'going', 'to', 'happen', 'to', 'me', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'its', 'really', 'bad', 'for', 'the', 'fetus', '||period||', 'do', 'you', 'know', 'that', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'shes', 'a', 'psychic', '||period||', 'she', 'knows', 'how', 'the', 'kids', 'going', 'to', 'be', '||period||', '||return||', '||return||', 'george:', 'should', 'i', 'not', 'go', 'on', 'this', 'trip', '||questionmark||', '||return||', '||return||', 'rula:', 'george', '||comma||', 'i', 'am', 'going', 'to', 'tell', 'you', 'something', 'and', 'i', 'want', 'you', 'to', 'really', 'hear', 'me', '||period||', '||return||', '||return||', 'elaine:', 'now', 'listen', '||period||', 'i', 'just', 'dont', 'know', 'how', 'a', 'person', '||comma||', 'with', 'everything', 'we', 'now', 'know', 'about', 'pre', '||dash||', 'natal', 'care', 'can', 'put', 'a', 'cigarette', 'in', 'her', 'mouth', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'its', 'disgusting', '||period||', '||return||', '||return||', 'rula:', 'i', 'dont', 'belive', 'it', '||period||', 'i', 'would', 'like', 'you', 'both', 'to', 'leave', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'fine', '||comma||', 'i', 'dont', 'like', 'to', 'be', 'around', 'people', 'who', 'are', 'just', 'so', 'irresponsible', '||period||', '||return||', '||return||', 'rula:', 'get', 'the', 'hell', 'out', '||period||', '||return||', '||return||', 'george:', 'a', 'plane', 'crash', '||questionmark||', 'a', 'heart', 'attack', '||questionmark||', 'lupus', '||questionmark||', 'is', 'it', 'lupus', '||questionmark||', '||return||', '||return||', 'rula:', 'do', 'you', 'want', 'me', 'to', 'call', 'the', 'super', '||questionmark||', 'he', 'was', 'an', 'israeli', 'commando', '||period||', '||return||', '||return||', 'george:', 'if', 'you', 'dont', 'say', 'anything', 'i', 'will', 'assume', 'its', 'a', 'plane', 'crash', '||period||', '||return||', '||return||', 'rula:', 'get', 'out', '||period||', '||return||', '||return||', 'george:', 'not', 'a', 'plane', 'crash', '||period||', '||leftparen||', 'leaving', '||rightparen||', 'is', 'it', 'a', 'plane', 'crash', '||questionmark||', '||return||', '||return||', 'gina:', 'i', 'do', 'not', 'like', 'your', 'toothbrush', '||period||', 'there', 'are', 'no', 'bristles', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'say', 'what', 'you', 'want', 'about', 'me', 'but', 'ill', 'be', 'damned', 'if', 'im', 'going', 'to', 'stand', 'here', 'while', 'you', 'insult', 'my', 'toothbrush', '||period||', '||return||', '||return||', 'gina:', 'it', 'is', 'too', 'small', 'for', 'someone', 'with', 'such', 'a', 'big', 'mouth', '||leftparen||', 'kisses', 'kerry', '||rightparen||', '||period||', 'let', 'me', 'ask', 'you', '||period||', 'what', 'will', 'you', 'do', 'if', 'martine', 'wakes', 'up', '||questionmark||', 'run', 'away', 'like', 'a', 'mouse', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'more', 'like', 'the', 'three', 'stooges', 'at', 'the', 'end', 'of', 'every', 'movie', '||period||', '||return||', '||return||', 'gina:', 'who', 'are', 'these', 'stooges', 'you', 'speak', 'of', '||questionmark||', '||return||', '||return||', 'jerry:', 'theyre', 'a', 'comedy', 'team', '||period||', '||return||', '||return||', 'gina:', 'tell', 'me', 'about', 'them', '||period||', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'theyre', 'three', 'kind', 'of', 'funny', 'looking', 'guys', 'and', 'they', 'hit', 'each', 'other', 'a', 'lot', '||period||', '||return||', '||return||', 'gina:', 'you', 'will', 'show', 'me', 'the', 'stooges', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'will', 'show', 'you', 'the', 'stooges', '||period||', '||return||', '||return||', 'gina:', 'when', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'dont', 'really', 'know', 'where', 'the', 'stooges', 'are', 'right', 'now', 'but', 'if', 'i', 'locate', 'them', 'you', 'will', 'be', 'the', 'first', 'to', 'know', '||period||', '||return||', '||return||', 'gina:', 'come', '||comma||', 'you', 'walk', 'me', 'to', 'a', 'cab', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'uh', '||comma||', 'i', 'uh', '||comma||', 'i', 'dont', 'want', 'you', 'to', 'get', 'upset', 'or', 'anything', 'but', 'uh', '||comma||', 'with', 'martin', 'and', 'all', '||comma||', 'well', 'maybe', 'its', 'not', 'such', 'a', 'good', 'idea', 'for', 'us', 'to', 'be', 'seen', 'together', 'in', 'the', 'building', '||comma||', 'because', '||comma||', 'you', 'know', '||comma||', 'he', 'had', 'a', 'lot', 'of', 'friends', 'here', '||period||', '||return||', '||return||', 'gina:', 'youre', 'still', 'afraid', '||period||', 'you', 'are', 'not', 'a', 'man', '||period||', '||return||', '||return||', 'jerry:', 'well', 'then', 'what', 'are', 'all', 'those', 'ties', 'and', 'sport', 'jackets', 'doing', 'in', 'my', 'closet', '||questionmark||', '||return||', '||return||', 'gina:', 'are', 'you', 'going', 'to', 'walk', 'me', 'to', 'a', 'cab', 'or', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'all', 'right', '||period||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'you', 'should', 'just', 'eat', 'fruit', '||period||', '||return||', '||return||', 'newman:', 'i', 'cant', 'eat', 'fruit', '||period||', 'it', 'makes', 'me', 'incontinent', '||period||', '||return||', '||return||', 'kramer:', '||questionmark||', '||questionmark||', '||questionmark||', '||return||', '||return||', 'newman:', 'hello', 'gina', '||period||', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'think', 'newman', 'would', 'tell', 'martin', 'if', 'he', 'wakes', 'up', '||questionmark||', 'what', 'kind', 'of', 'sicko', 'would', 'do', 'that', '||questionmark||', 'he', 'could', 'kill', 'me', '||period||', '||return||', '||return||', 'george:', 'people', 'smoke', '||comma||', 'elaine', '||period||', 'my', 'mother', 'smoked', '||period||', 'it', 'didnt', 'hurt', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'jumps', 'with', 'fear', 'to', 'jerry', '||rightparen||', 'did', 'you', 'see', 'that', 'wall', 'move', '||questionmark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'its', 'a', 'good', 'thing', 'we', 'came', '||period||', '||return||', '||return||', 'george:', 'could', 'there', 'be', 'a', 'native', 'p0roblem', 'in', 'the', 'caymans', '||questionmark||', 'maybe', 'theres', 'native', 'unrest', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'i', 'havent', 'eaten', 'in', 'three', 'days', '||period||', 'i', 'was', 'wondering', 'how', 'much', 'longer', 'it', 'would', 'be', 'until', 'i', 'get', 'my', 'x', '||dash||', 'ray', '||period||', '||return||', '||return||', 'nurse:', 'well', 'call', 'you', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'i', 'want', 'you', 'to', 'promise', 'me', 'something', '||period||', 'if', 'im', 'ever', 'in', 'a', 'comma', '||period||', 'in', 'the', 'first', '24', 'hours', 'get', 'everything', 'out', 'of', 'my', 'apartment', 'and', 'put', 'it', 'in', 'storage', '||period||', '||return||', '||return||', 'george:', 'how', 'come', '||questionmark||', '||return||', '||return||', 'jerry:', 'looters', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'we', 'know', 'that', 'dog', 'food', 'is', 'any', 'good', '||questionmark||', 'who', 'tastes', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'shes', 'really', 'hungry', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'newmans', 'upstairs', 'visiting', 'martin', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'buy', 'my', 'cayman', 'island', 'ticket', '||questionmark||', '||return||', '||return||', 'kramer:', 'youre', 'not', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'psychic', 'said', 'something', 'terrible', 'will', 'happen', '||period||', '||return||', '||return||', 'kramer:', 'i', 'dig', '||period||', '||return||', '||return||', 'kramer:', 'i', 'want', 'my', 'vacuum', 'cleaner', '||exclammark||', 'i', 'know', 'you', 'can', 'hear', 'me', '||period||', 'look', 'my', 'mother', '||comma||', 'shes', 'going', 'to', 'come', 'and', 'visit', 'me', '||period||', 'she', 'sees', 'that', 'rug', '||comma||', 'shes', 'going', 'to', 'kill', 'me', '||period||', '||return||', '||return||', 'newman:', 'he', 'cant', 'hear', 'you', '||comma||', 'you', 'idiot', '||period||', 'why', 'dont', 'you', 'just', 'buy', 'another', 'one', '||period||', '||return||', '||return||', 'kramer:', 'why', 'would', 'i', 'buy', 'another', 'one', 'when', 'i', 'spent', 'a', 'hundred', 'bucks', 'on', 'this', 'one', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'have', 'a', 'carpet', 'sweeper', 'you', 'can', 'use', '||period||', '||return||', '||return||', 'kramer:', 'i', 'dont', 'want', 'a', 'carpet', 'sweeper', '||period||', 'they', 'dont', 'do', 'anything', '||period||', '||return||', '||return||', 'newman:', 'it', 'gets', 'my', 'rug', 'clean', '||period||', '||return||', '||return||', 'kramer:', 'the', 'carpet', 'sweeper', 'is', 'the', 'biggest', 'scam', 'perpetrated', 'on', 'the', 'american', 'public', 'since', 'one', 'hour', 'martinizing', '||period||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'you', 'should', 'take', 'a', 'look', 'at', 'my', 'rug', 'then', '||period||', '||return||', '||return||', 'kramer:', 'i', 'wouldnt', 'set', 'foot', 'in', 'your', 'house', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hows', 'he', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'looks', 'happy', 'to', 'me', '||period||', '||return||', '||return||', 'newman:', 'i', 'hope', 'he', 'stays', 'this', 'happy', 'when', 'he', 'wakes', 'up', '||period||', '||return||', '||return||', 'jerry:', 'why', 'wouldnt', 'he', '||questionmark||', '||return||', '||return||', 'newman:', 'no', 'reason', '||period||', '||return||', '||return||', 'jerry:', 'hell', 'have', 'a', 'lot', 'of', 'catching', 'up', 'to', 'do', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'newman:', 'ill', 'bring', 'him', 'up', 'to', 'date', '||period||', '||return||', '||return||', 'jerry:', 'how', 'up', 'to', 'date', '||questionmark||', '||return||', '||return||', 'newman:', 'oh', '||comma||', 'all', 'the', 'way', 'up', '||period||', '||return||', '||return||', 'jerry:', 'and', 'nothing', 'could', 'change', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'it', 'would', 'take', 'a', 'hell', 'of', 'a', 'lot', '||period||', 'because', 'a', 'friend', 'is', 'something', 'you', 'earn', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'jerry', 'has', 'a', 'friend', 'who', 'has', 'free', 'tickets', 'to', 'the', 'cayman', 'islands', 'for', 'this', 'weekend', '||period||', 'hes', 'not', 'going', '||period||', '||return||', '||return||', 'newman:', 'i', 'dont', 'care', 'much', 'for', 'the', 'beach', '||period||', 'i', 'freckle', '||period||', '||period||', '||period||', '||period||', 'is', 'that', 'a', '||comma||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'drakes', 'coffee', 'cake', '||return||', '||return||', 'newman:', 'wow', '||comma||', 'where', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'from', 'my', 'house', '||period||', 'i', 'got', 'a', 'whole', 'box', 'of', 'them', '||period||', '||return||', '||return||', 'newman:', 'boy', '||comma||', 'thats', 'the', 'full', 'size', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'your', 'big', 'boy', '||period||', '||return||', '||return||', 'newman:', 'can', 'i', 'have', 'a', 'bite', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'give', 'out', 'bites', '||period||', 'i', 'got', 'another', 'one', '||period||', 'but', 'im', 'saving', 'it', 'for', 'later', '||period||', '||return||', '||return||', 'newman:', 'just', 'one', 'bite', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'think', 'so', '||period||', 'you', 'know', 'they', '||comma||', 'theyre', 'so', 'fragile', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||exclammark||', 'all', 'right', '||period||', 'i', 'wont', 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'you', 'swear', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'swear', '||period||', '||return||', '||return||', 'jerry:', 'on', 'your', 'mothers', 'life', '||questionmark||', '||return||', '||return||', 'newman:', 'on', 'my', 'mothers', 'life', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'oh', 'oh', 'oh', 'oh', '||return||', '||return||', 'newman:', 'oooh', '||comma||', '||return||', '||return||', 'elaine:', 'and', 'there', 'it', 'was', '||comma||', 'mountains', 'of', 'duck', '||period||', 'and', 'not', 'fatty', 'duck', 'either', '||comma||', 'but', 'juicy', 'tender', 'breasts', 'of', 'duck', '||period||', '||return||', '||return||', 'george:', 'sweetheart', '||comma||', 'no', 'come', 'here', '||comma||', 'sweetheart', '||return||', '||return||', 'rula:', 'pew', '||comma||', 'pew', '||comma||', 'pew', '||comma||', 'pew', '||leftparen||', 'breathing', '||rightparen||', '||return||', '||return||', 'george:', 'how', 'did', 'i', 'know', 'you', 'were', 'here', '||questionmark||', 'something', 'drew', 'me', 'here', '||period||', 'this', 'is', 'phenomenal', '||period||', '||return||', '||return||', 'rula:', 'the', 'nurse', 'said', 'she', 'would', 'be', 'right', 'back', '||period||', 'theyre', 'supposed', 'to', 'take', 'me', 'into', 'the', 'delivery', 'room', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'thats', 'great', '||period||', 'thats', 'great', '||period||', 'by', 'the', 'way', 'i', 'have', 'to', 'apologize', 'for', 'my', 'friend', 'the', 'other', 'day', '||period||', 'friend', '||questionmark||', 'uh', '||comma||', 'uh', 'i', 'dont', 'even', 'know', 'that', 'woman', '||period||', 'i', 'met', 'her', 'on', 'the', 'bus', 'on', 'the', 'way', 'over', '||period||', 'i', 'couldnt', 'get', 'rid', 'of', 'her', '||period||', 'uh', '||comma||', 'my', 'psychic', 'instincts', 'were', 'a', 'little', 'off', '||period||', '||period||', '||return||', '||return||', 'rula:', 'oh', '||comma||', 'wheres', 'the', 'nurse', '||return||', '||return||', 'george:', 'i', 'dont', 'know', 'where', 'the', 'nurse', 'is', '||period||', 'sweetheart', 'why', 'dont', 'you', 'get', 'a', 'nurse', 'for', 'mommy', '||questionmark||', 'anyway', 'i', 'was', 'just', 'curious', '||period||', 'remember', 'the', 'other', 'day', 'you', 'were', 'saying', 'something', 'about', 'my', 'trip', '||period||', '||return||', '||return||', 'rula:', 'dont', 'take', 'that', 'trip', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'why', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'rula:', '||leftparen||', 'screams', '||rightparen||', 'eeey', '||comma||', 'beegit', '||comma||', 'beegit', 'beegit', '||period||', '||return||', '||return||', 'dx:', 'all', 'right', '||comma||', 'rula', '||comma||', 'its', 'time', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'because', '||questionmark||', 'because', '||questionmark||', '||return||', '||return||', 'elaine:', 'assassins', '||exclammark||', 'how', 'dare', 'they', 'keep', 'a', 'person', 'waiting', 'like', 'this', '||exclammark||', 'drakes', 'coffee', 'cake', '||questionmark||', 'give', 'me', 'that', '||period||', '||return||', '||return||', 'newman:', 'jerry', '||comma||', 'you', 'better', 'stop', 'her', 'or', 'ill', 'tell', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||exclammark||', 'no', '||exclammark||', 'no', '||exclammark||', '||return||', '||return||', 'martin:', 'ooooh', '||comma||', 'ahhhh', '||comma||', '||return||', '||return||', 'george:', 'are', 'there', 'terrorists', 'on', 'the', 'plane', '||questionmark||', 'a', 'hotel', 'fire', '||period||', 'is', 'that', 'it', '||questionmark||', 'malaria', '||questionmark||', 'yellow', 'fever', '||questionmark||', 'lupus', '||questionmark||', 'is', 'it', 'lupus', '||questionmark||', '||return||', '||return||', 'newman:', 'he', 'did', 'it', 'right', 'in', 'this', 'bed', '||comma||', 'martin', '||period||', 'right', 'in', 'front', 'of', 'you', '||period||', '||return||', '||return||', 'kramer:', 'i', 'want', 'my', 'vacuum', 'cleaner', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'newman:', 'it', 'was', 'disgusting', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', 'were', 'going', 'out', 'to', 'dinner', 'in', 'ten', 'minutes', '||period||', '||return||', '||return||', 'george:', 'i', 'never', 'assisted', 'in', 'a', 'birth', 'before', '||period||', 'its', 'really', 'quite', 'disgusting', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'she', 'name', 'the', 'kid', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'wouldnt', 'believe', 'it', '||period||', 'rasputin', '||period||', '||return||', '||return||', 'kramer:', 'heey', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'when', 'did', 'you', 'get', 'back', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'couple', 'of', 'hours', 'ago', '||period||', '||return||', '||return||', 'george:', 'so', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'i', 'would', 'like', 'to', 'thank', 'you', 'for', 'the', 'greatest', 'four', 'days', 'i', 'ever', 'spent', 'in', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', 'osh', '||period||', '||return||', '||return||', 'kramer:', 'they', 'were', 'shooting', 'the', 'sports', 'illustrated', 'swim', 'suit', 'issue', 'right', 'in', 'the', 'hotel', 'pool', '||period||', '||return||', '||return||', 'jerry:', 'woah', '||period||', '||leftparen||', 'hitting', 'george', '||rightparen||', '||return||', '||return||', 'kramer:', 'not', 'only', 'that', 'but', 'at', 'the', 'hotel', 'they', 'opened', 'up', 'this', 'area', 'on', 'the', 'beach', 'for', 'nude', 'bathing', 'and', 'all', 'of', 'the', 'sports', 'illustrated', 'models', 'went', 'down', 'there', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', '||leftparen||', 'hitting', 'george', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', 'was', 'on', 'the', 'next', 'blanket', 'from', 'elle', 'mcpherson', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', '||leftparen||', 'hitting', 'george', '||rightparen||', '||return||', '||return||', 'kramer:', 'we', 'played', 'backgammon', 'in', 'the', 'nude', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', '||leftparen||', 'hitting', 'george', '||rightparen||', '||return||', '||return||', 'kramer:', 'shes', 'a', 'sweet', 'kid', '||period||', '||return||', '||return||', 'jerry:', 'nude', 'backgammon', 'with', 'swimsuit', 'models', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'know', 'what', '||questionmark||', 'the', 'second', 'day', 'i', 'was', 'there', 'i', 'stepped', 'on', 'a', 'jellyfish', '||period||', 'now', 'it', 'kind', 'of', 'stung', 'my', 'foot', '||period||', 'thats', 'probably', 'what', 'rula', 'was', 'trying', 'to', 'warn', 'you', 'about', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'you', 'gotta', 'watch', 'for', 'the', 'jellyfish', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'whats', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'its', 'an', 'invitation', 'to', 'a', 'house', 'warming', 'from', 'martin', 'and', 'gina', '||period||', '||return||', '||return||', 'kramer:', 'they', 'moved', 'in', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'its', 'some', 'place', 'down', 'in', 'the', 'village', '||period||', '||return||', '||return||', 'kramer:', 'phew', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'its', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'were', 'coming', 'down', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'where', 'ya', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'were', 'taking', 'elaine', 'to', 'dinner', '||period||', 'shes', 'got', 'to', 'start', 'the', 'fast', 'again', '||period||', 'um', '||comma||', 'you', 'want', 'to', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'um', '||comma||', 'id', 'like', 'to', 'but', 'a', 'bunch', 'of', 'us', 'from', 'the', 'islands', '||comma||', 'well', 'be', 'getting', 'together', '||period||', '||return||', '||return||', 'george:', 'elle', 'mcpherson', 'going', 'to', 'be', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'i', 'got', 'to', 'call', 'her', 'back', '||period||', '||return||', '||return||', 'george:', 'why', 'even', 'try', 'anymore', '||questionmark||', "there's", 'no', 'sense', 'to', 'it', '||period||', "i'm", 'never', 'gonna', 'meet', 'anybody', '||comma||', 'i', 'should', 'just', 'accept', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yes', 'you', 'will', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "won't", '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'maybe', 'you', "won't", '||period||', '||return||', '||return||', 'george:', 'i', 'mean', "it's", 'hard', 'enough', 'to', 'meet', 'a', 'woman', 'you', 'dislike', '||comma||', 'much', 'less', 'like', '||period||', '||return||', '||return||', 'jerry:', 'are', 'my', 'nostrils', 'getting', 'bigger', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'why', 'must', 'it', 'be', 'so', 'difficult', '||questionmark||', 'why', 'is', 'there', 'all', 'this', 'tension', 'and', 'hostility', '||questionmark||', 'why', "can't", 'i', 'just', 'walk', 'up', 'to', 'a', 'woman', 'on', 'the', 'street', 'and', 'say', '||comma||', '||quotemark||', 'hi', '||period||', "i'm", '||return||', '||return||', 'cynthia:', "there's", 'just', 'no', 'men', 'out', 'there', '||comma||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'cynthia:', 'i', 'mean', 'the', 'problem', 'is', 'that', 'the', 'good', 'ones', 'know', "they're", 'good', '||period||', 'and', 'they', 'know', "they're", 'in', 'such', 'demand', "they're", 'just', 'not', 'interested', 'in', 'confining', 'themselves', 'to', 'one', 'person', '||period||', '||return||', '||return||', 'elaine:', 'i', 'hate', 'the', 'good', 'ones', '||period||', '||return||', '||return||', 'cynthia:', 'is', 'jerry', 'one', 'of', 'the', 'good', 'ones', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'a', 'good', 'question', '||comma||', 'i', 'think', 'he', 'thinks', 'he', 'is', '||period||', '||return||', '||return||', 'cynthia:', 'well', '||comma||', 'the', 'mediocre', 'ones', 'are', 'available', '||comma||', 'but', "they're", 'so', 'insecure', 'about', 'not', 'being', 'one', 'of', 'the', 'good', 'ones', 'that', "they're", 'always', 'going', '||comma||', '||quotemark||', 'well', "i'm", 'not', 'good', 'enough', 'for', 'you', '||comma||', 'what', 'are', 'you', 'doing', 'with', 'me', '||questionmark||', '||quotemark||', 'and', 'eventually', 'i', 'just', 'go', '||comma||', '||quotemark||', "you're", 'right', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'maybe', 'you', 'need', 'somebody', 'between', 'good', 'and', 'mediocre', '||period||', '||return||', '||return||', 'cynthia:', 'no', '||comma||', 'maybe', 'i', 'need', 'somebody', 'who', 'has', 'nothing', '||comma||', 'somebody', 'who', 'just', 'has', 'to', 'appreciate', 'being', 'with', 'me', 'because', "he's", 'so', 'desperate', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', "it's", 'gotten', 'to', 'the', 'point', 'where', "i'm", 'flirting', 'with', 'operators', 'on', 'the', 'phone', '||period||', 'i', 'almost', 'made', 'a', 'date', 'with', 'one', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', "there's", 'still', 'hope', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'hope', '||period||', 'hope', 'is', 'killing', 'me', '||period||', 'my', 'dream', 'is', 'to', 'become', 'hopeless', '||period||', 'when', "you're", 'hopeless', '||comma||', 'you', "don't", 'care', '||comma||', 'and', 'when', 'you', "don't", 'care', '||comma||', 'that', 'indifference', 'makes', 'you', 'attractive', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', 'hopelessness', 'is', 'the', 'key', '||period||', '||return||', '||return||', 'george:', "it's", 'my', 'only', 'hope', '||period||', '||return||', '||return||', 'cynthia:', 'see', '||comma||', 'i', "wouldn't", 'really', 'mind', 'so', 'much', '||comma||', 'but', 'i', 'feel', 'badly', 'for', 'my', 'mother', '||period||', 'i', 'mean', '||comma||', 'if', 'my', 'mother', "weren't", 'around', '||comma||', 'it', "wouldn't", 'be', 'so', 'bad', '||period||', 'but', '||comma||', "i'm", 'telling', 'you', '||comma||', 'if', "i'm", 'not', 'married', 'by', 'the', 'time', "i'm", 'forty', '||comma||', "i'm", 'gonna', 'have', 'to', 'kill', 'her', 'because', "it's", 'the', 'only', 'fair', 'thing', 'to', 'do', '||period||', 'i', 'just', "couldn't", 'put', 'her', 'through', 'that', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'at', 'least', "you're", 'not', 'bitter', '||period||', '||return||', '||return||', 'cynthia:', 'who', 'says', "i'm", 'not', 'bitter', '||questionmark||', '||return||', '||return||', 'elaine:', "aren't", 'you', 'too', 'young', 'to', 'be', 'bitter', '||questionmark||', '||return||', '||return||', 'cynthia:', 'no', '||comma||', 'you', 'can', 'be', 'young', 'and', 'bitter', '||comma||', 'just', 'maybe', 'not', 'as', 'bitter', 'as', "i'm", 'gonna', 'be', 'ten', 'years', 'from', 'now', '||comma||', 'but', "i'm", 'bitter', '||period||', 'anyway', '||comma||', "don't", 'tell', 'anyone', '||period||', '||return||', '||return||', 'elaine:', "don't", 'worry', '||comma||', 'your', 'bitterness', 'is', 'safe', 'with', 'me', '||period||', '||return||', '||return||', 'cynthia:', 'um', '||comma||', 'order', 'me', 'a', 'piece', 'of', 'cake', '||period||', "i'm", 'gonna', 'go', 'throw', 'up', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'my', 'hands', '||period||', 'look', '||period||', 'filthy', 'from', 'the', 'paper', '||period||', 'you', 'know', '||comma||', 'they', 'should', 'give', 'you', 'a', 'wet', '||dash||', 'nap', 'when', 'you', 'buy', 'one', '||comma||', 'like', 'at', 'those', 'rib', 'joints', '||period||', '||return||', '||return||', 'elaine:', 'so', "what'd", 'you', 'do', 'last', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'went', 'out', 'with', 'george', '||comma||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'went', 'out', 'with', 'cynthia', '||period||', '||return||', '||return||', 'jerry:', 'how', 'was', 'it', '||questionmark||', "what'd", 'you', 'talk', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'the', 'usual', '||semicolon||', 'the', 'federal', 'reserve', '||comma||', 'the', 'rainforest', '||period||', 'cynthia', 'thought', 'we', 'should', 'nuke', 'the', 'rainforest', '||comma||', 'you', 'know', '||comma||', 'get', 'rid', 'of', 'it', 'in', 'one', 'fell', 'swoop', 'so', 'we', 'can', 'at', 'least', 'eliminate', 'it', 'as', 'a', 'subject', 'of', 'conversation', '||period||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'brushed', 'on', 'that', '||period||', 'actually', '||comma||', 'george', 'was', 'in', 'rare', 'form', '||period||', 'he', 'just', "can't", 'find', 'anybody', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'cynthia', 'too', '||period||', "she's", 'really', 'given', 'up', '||period||', '||return||', '||return||', 'jerry:', 'george', 'too', '||period||', '||return||', '||return||', 'jerry', 'and', 'elaine', '||leftparen||', 'together', '||rightparen||', ':', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', "i've", 'never', 'fixed', 'anybody', 'up', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'me', 'neither', 'and', 'i', 'am', 'not', 'about', 'to', 'start', 'with', 'george', '||period||', '||return||', '||return||', 'jerry:', 'well', 'why', "wouldn't", 'you', 'start', 'with', 'george', '||questionmark||', 'you', 'think', "she's", 'too', 'good', 'for', 'george', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'say', "'too", "good'", '||comma||', 'did', 'i', 'say', "'too", "good'", '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'implied', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'say', 'it', '||period||', '||return||', '||return||', 'jerry:', 'because', 'if', 'you', 'think', "she's", 'too', 'good', 'for', 'george', '||comma||', 'you', 'are', 'dead', 'wrong', '||period||', 'dead', 'wrong', '||period||', 'who', 'is', 'she', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'is', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'george', '||exclammark||', '||return||', '||return||', 'elaine:', "she's", 'cynthia', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'you', "don't", 'think', "she's", 'beautiful', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', "what's", 'with', 'the', 'eyebrows', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', 'your', 'problem', 'is', '||questionmark||', 'your', 'standards', 'are', 'too', 'high', '||period||', '||return||', '||return||', 'jerry:', 'i', 'went', 'out', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', "that's", 'because', 'my', 'standards', 'are', 'too', 'low', '||period||', 'and', 'by', 'the', 'way', '||comma||', 'you', 'know', '||comma||', 'women', 'kill', 'for', 'eyebrows', 'like', 'that', '||period||', 'do', 'you', 'know', 'that', '||questionmark||', 'i', 'mean', 'women', 'pluck', 'their', 'real', 'eyebrows', 'out', 'of', 'their', 'head', '||comma||', 'one', 'by', 'one', '||comma||', 'until', "they're", 'bald', '||comma||', 'jerry', '||period||', 'bald', 'above', 'the', 'eyes', '||exclammark||', 'and', 'then', 'they', 'paint', 'in', 'these', 'eyebrows', 'to', 'look', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'well', 'let', 'me', 'tell', 'you', 'something', 'about', 'george', '||period||', 'he', 'is', 'fast', '||period||', 'he', 'can', 'run', 'like', 'the', 'wind', '||period||', 'and', "he's", 'strong', '||period||', "i've", 'seen', 'him', 'lift', 'a', 'hundred', 'pounds', 'over', 'his', 'head', 'without', 'even', 'knowing', 'it', '||period||', 'and', 'you', "wouldn't", 'know', 'it', 'to', 'look', 'at', 'him', '||comma||', 'but', 'george', 'can', 'bait', 'a', 'hook', '||period||', '||return||', '||return||', 'elaine:', 'he', 'can', 'really', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', "let's", 'do', 'it', '||comma||', 'i', 'think', "they'll", 'really', 'get', 'along', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'are', 'you', 'into', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'come', 'on', '||comma||', "it's", 'a', 'good', 'match', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', "they're", 'gonna', 'be', 'telling', 'us', 'how', 'their', 'dates', 'went', '||period||', 'are', 'we', 'gonna', 'share', 'that', 'information', '||questionmark||', '||return||', '||return||', 'jerry:', 'naturally', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'wait', 'a', 'minute', '||comma||', "we're", 'gonna', 'tell', 'each', 'other', 'everything', '||comma||', 'i', 'mean', 'every', 'secret', '||questionmark||', '||return||', '||return||', 'jerry:', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'what', 'if', 'it', 'worked', 'out', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'dialing', '||rightparen||', ':', 'yeah', 'right', '||period||', '||return||', '||return||', 'george:', 'out', 'of', 'the', 'question', '||period||', 'out', 'of', 'the', 'question', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', "i'm", 'not', 'gonna', 'do', 'that', '||exclammark||', "that's", 'one', 'step', 'away', 'from', 'personal', 'ads', '||exclammark||', 'and', 'prostitutes', '||exclammark||', 'no', '||exclammark||', 'no', '||comma||', 'i', 'am', 'not', 'going', 'down', 'that', 'road', '||exclammark||', 'what', 'does', 'she', 'look', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'good', 'looking', '||period||', '||return||', '||return||', 'george:', 'how', 'good', 'looking', '||questionmark||', '||return||', '||return||', 'jerry:', 'very', 'good', 'looking', '||period||', '||return||', '||return||', 'george:', 'really', 'good', 'looking', '||questionmark||', '||return||', '||return||', 'jerry:', 'really', 'very', 'good', 'looking', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'take', 'her', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'would', 'take', 'her', 'out', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'hesitated', '||period||', '||return||', '||return||', 'jerry:', 'what', 'hesitate', '||questionmark||', 'i', "didn't", 'hesitate', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', "something's", 'off', 'here', '||comma||', 'you', 'hesitated', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'you', '||comma||', "she's", 'good', 'looking', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'body', '||comma||', 'what', 'kind', 'of', 'body', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', 'body', '||comma||', 'nice', 'body', '||period||', '||return||', '||return||', 'george:', 'how', 'nice', '||questionmark||', '||return||', '||return||', 'jerry:', 'nice', '||period||', '||return||', '||return||', 'george:', 'just', 'nice', '||questionmark||', '||return||', '||return||', 'jerry:', 'pretty', 'nice', '||period||', '||return||', '||return||', 'george:', 'really', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'really', 'very', 'nice', 'and', 'good', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'personality', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', 'personality', '||period||', 'funny', '||period||', 'bright', '||period||', '||return||', '||return||', 'george:', 'smarter', 'than', 'me', '||questionmark||', 'i', "don't", 'want', 'anyone', 'smarter', 'than', 'me', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'she', 'be', 'smarter', 'than', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', "let's", 'see', '||comma||', "let's", 'see', '||period||', 'what', 'else', '||period||', 'what', 'else', '||period||', 'oh', 'yeah', '||comma||', 'what', 'does', 'she', 'do', '||questionmark||', '||return||', '||return||', 'cynthia:', 'first', 'of', 'all', '||comma||', 'what', 'does', 'he', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'was', 'in', 'real', 'estate', '||comma||', 'um', '||comma||', 'now', '||comma||', "he's", 'not', 'working', 'right', 'now', '||dash||', '||return||', '||return||', 'cynthia:', "he's", 'not', 'working', '||questionmark||', '||exclammark||', 'how', 'come', "he's", 'not', 'working', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'um', '||comma||', 'he', '||comma||', 'he', 'got', 'fired', '||period||', '||return||', '||return||', 'cynthia:', 'why', 'did', 'he', 'get', 'fired', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||period||', 'why', '||questionmark||', 'oh', '||comma||', 'right', '||period||', 'um', '||comma||', 'well', '||comma||', 'he', 'tried', 'to', 'poison', 'his', 'boss', '||period||', '||return||', '||return||', 'cynthia:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'such', 'a', 'long', 'story', '||comma||', 'cynthia', '||comma||', 'seriously', '||comma||', 'i', 'mean', 'he', 'just', 'had', 'some', 'problems', 'at', 'work', '||period||', '||return||', '||return||', 'cynthia:', 'is', 'he', 'nuts', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', "he's", 'a', 'really', 'really', 'funny', 'guy', '||period||', '||return||', '||return||', 'cynthia:', 'what', 'does', 'he', 'look', 'like', '||questionmark||', '||return||', '||return||', 'elaine:', 'pardon', '||questionmark||', '||return||', '||return||', 'cynthia:', 'what', 'does', 'he', 'look', 'like', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'well', '||comma||', "he's", 'got', 'a', 'lot', 'of', 'character', 'in', 'his', 'face', '||period||', 'um', '||comma||', "he's", 'short', '||period||', 'um', '||comma||', "he's", 'stocky', '||period||', '||return||', '||return||', 'cynthia:', 'fat', '||period||', 'is', 'that', 'what', "you're", 'saying', '||comma||', 'that', "he's", 'fat', '||questionmark||', '||return||', '||return||', 'elaine:', 'powerful', '||period||', 'he', 'is', 'so', 'powerful', '||comma||', 'he', 'can', 'lift', 'a', 'hundred', 'pounds', 'right', 'up', 'over', 'his', 'head', '||period||', 'and', 'um', '||comma||', 'what', 'else', '||period||', 'what', 'else', '||period||', 'oh', '||comma||', 'right', '||period||', 'um', '||comma||', 'well', '||comma||', "he's", 'kind', 'of', '||comma||', 'just', 'kind', 'of', 'losing', 'his', 'hair', '||period||', '||return||', '||return||', 'cynthia:', "he's", 'bald', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', "he's", 'not', 'bald', '||period||', "he's", 'balding', '||period||', '||return||', '||return||', 'cynthia:', 'so', 'he', 'will', 'be', 'bald', '||period||', '||return||', '||return||', 'elaine:', 'yup', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'hair', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'long', 'dark', 'hair', '||period||', '||return||', '||return||', 'george:', 'flowing', '||questionmark||', '||return||', '||return||', 'jerry:', 'flowing', '||questionmark||', '||return||', '||return||', 'george:', 'is', 'it', 'flowing', '||questionmark||', 'i', 'like', 'flowing', '||comma||', 'cascading', 'hair', '||period||', 'thick', 'lustrous', 'hair', 'is', 'very', 'important', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', "'thick", 'lustrous', 'hair', 'is', 'very', 'important', 'to', 'me', '||comma||', "'", 'is', 'that', 'what', 'you', 'said', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'just', 'clarifying', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'this', '||period||', 'if', 'you', 'stick', 'your', 'hand', 'in', 'the', 'hair', 'is', 'it', 'easy', 'to', 'get', 'it', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'want', 'to', 'be', 'able', 'to', 'get', 'it', 'out', 'or', 'do', 'you', 'want', 'to', 'not', 'be', 'able', 'to', 'get', 'it', 'out', '||questionmark||', '||return||', '||return||', 'george:', "i'd", 'like', 'to', 'be', 'able', 'to', 'get', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "you'll", 'get', 'it', 'out', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'skin', '||questionmark||', 'i', 'need', 'a', 'good', 'cheek', '||comma||', 'i', 'like', 'a', 'good', 'cheek', '||period||', '||return||', '||return||', 'jerry:', "she's", 'got', 'a', 'fine', 'cheek', '||period||', '||return||', '||return||', 'george:', 'is', 'there', 'a', 'pinkish', 'hue', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'pinkish', 'hue', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'a', 'rosy', 'glow', '||period||', '||return||', '||return||', 'jerry:', "there's", 'a', 'hue', '||period||', "she's", 'got', 'great', 'eyebrows', '||comma||', 'women', 'kill', 'to', 'have', 'her', 'eyebrows', '||period||', '||return||', '||return||', 'george:', 'who', 'cares', 'about', 'eyebrows', '||questionmark||', 'is', 'she', 'sweet', '||questionmark||', 'i', 'like', 'sweet', '||period||', 'but', 'not', 'too', 'sweet', '||comma||', 'you', 'could', 'throw', 'up', 'from', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', "you'll", 'throw', 'up', '||period||', '*she*', 'likes', 'to', 'throw', 'up', '||period||', '||return||', '||return||', 'cynthia:', 'has', 'he', 'ever', 'been', 'married', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'cynthia:', 'has', 'he', 'been', 'close', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'once', 'spent', 'a', 'weekend', 'with', 'a', 'woman', '||period||', '||return||', '||return||', 'cynthia:', 'he', "didn't", 'really', 'try', 'to', 'poison', 'his', 'boss', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'he', 'did', '||period||', '||return||', '||return||', 'george:', 'we', 'had', 'an', 'incredible', 'phone', 'conversation', '||period||', 'we', 'talked', 'for', 'like', 'twenty', 'minutes', '||period||', 'i', 'threw', 'away', 'my', 'notes', 'in', 'the', 'middle', 'of', 'the', 'call', '||period||', 'you', 'know', '||comma||', 'i', 'thought', 'she', 'had', 'a', 'great', 'voice', 'timbre', '||period||', 'is', 'it', 'timbre', 'or', 'tamber', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "it's", 'tamber', '||period||', '||return||', '||return||', 'george:', "why'd", 'i', 'think', 'it', 'was', 'timbre', '||questionmark||', 'yeah', '||comma||', 'she', 'could', 'do', 'voiceover', 'commercials', '||comma||', 'why', "didn't", 'you', 'tell', 'me', 'about', 'her', 'voice', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'notice', 'the', 'voice', '||period||', '||return||', '||return||', 'george:', "it's", 'mellifluous', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'saturday', 'night', '||period||', '||return||', '||return||', 'george:', 'she', 'had', 'to', 'be', 'impressed', 'by', 'that', 'conversation', '||comma||', 'had', 'to', '||exclammark||', 'it', 'was', 'a', 'great', 'performance', '||period||', 'i', 'am', 'unbelievable', 'on', 'the', 'phone', '||period||', 'on', 'the', 'date', 'they', 'should', 'just', 'have', 'two', 'phones', 'on', 'the', 'table', 'at', 'the', 'restaurant', '||comma||', 'done', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'saturday', 'night', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||exclammark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'she', 'said', "you're", 'getting', 'together', 'saturday', 'night', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'she', "didn't", 'mention', 'anything', 'about', 'the', 'conversation', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', 'you', 'see', '||comma||', 'i', "don't", 'get', 'that', '||period||', 'we', 'had', 'a', 'relaxed', 'stimulating', '||comma||', 'great', 'conversation', '||comma||', 'she', "doesn't", 'mention', 'it', '||questionmark||', 'why', "doesn't", 'she', 'mention', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'could', 'have', 'mentioned', 'the', 'conversation', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||comma||', "i'll", 'go', 'on', 'the', 'date', '||comma||', 'but', "that's", 'that', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'my', 'friend', '||comma||', 'bob', 'sacamano', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'guy', 'from', 'jersey', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'he', 'just', 'got', 'a', 'job', 'at', 'a', 'condom', 'factory', 'in', 'edison', '||period||', 'look', 'at', 'this', '||comma||', 'he', 'gave', 'me', 'a', 'gross', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'gonna', 'do', 'with', 'all', 'of', 'them', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||period||', '||period||', '||period||', 'come', 'on', '||comma||', 'take', 'some', '||comma||', 'jerry', '||period||', 'grab', "'em", '||period||', '||return||', '||return||', 'jerry:', 'no', 'thanks', '||comma||', 'they', 'look', 'like', 'they', 'came', 'out', 'of', 'a', 'cereal', 'box', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'elaine', '||comma||', 'here', '||comma||', 'take', 'half', 'a', 'bag', '||period||', '||return||', '||return||', 'elaine:', 'half', 'a', 'bag', '||questionmark||', 'what', 'am', 'i', '||comma||', 'a', 'hooker', '||questionmark||', 'anyway', '||comma||', 'they', 'look', 'kind', 'of', 'cheap', '||period||', '||return||', '||return||', 'george:', "i'll", 'take', 'one', '||period||', "it's", 'possible', '||period||', '||return||', '||return||', 'jerry:', 'so', 'where', 'are', 'they', 'already', '||comma||', "it's", 'a', 'quarter', 'to', 'twelve', '||comma||', 'they', 'should', 'be', 'back', 'by', 'now', '||comma||', 'what', 'did', 'they', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'they', 'went', 'out', 'to', 'dinner', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'i', 'got', 'another', 'call', '||period||', 'that', 'must', 'be', 'him', '||period||', '[clicks', 'over]', 'hello', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "it's", 'me', '||comma||', 'i', 'just', 'got', 'home', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hold', 'on', '||period||', '[clicks', 'back]', "it's", 'george', '||comma||', 'he', 'just', 'got', 'home', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'got', 'cynthia', 'on', 'the', 'other', 'line', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'call', 'you', 'back', 'as', 'soon', 'as', "i'm", 'done', '||period||', '||return||', '||return||', 'elaine:', 'remember', 'our', 'pact', '||period||', 'full', 'disclosure', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', '[clicks', 'back', 'to', 'george]', 'yeah', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'alright', 'look', '||comma||', "i'm", 'gonna', 'tell', 'you', '||comma||', 'but', 'i', 'made', 'a', 'pact', 'with', 'cynthia', '||comma||', 'we', 'swore', 'we', 'were', 'not', 'going', 'to', 'tell', 'you', 'and', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'tell', 'me', '||comma||', "i'll", 'vault', 'it', '||period||', '||return||', '||return||', 'george:', "it's", 'in', 'the', 'vault', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'locking', 'the', 'vault', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'had', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'you', 'had', 'sex', '||comma||', 'how', 'did', 'that', 'happen', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'i', 'closed', 'my', 'eyes', 'and', 'made', 'a', 'move', '||period||', '||return||', '||return||', 'jerry:', 'at', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'she', "didn't", 'stay', 'over', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'she', 'left', '||period||', 'listen', '||comma||', 'you', "can't", 'mention', 'any', 'of', 'this', 'to', 'elaine', '||period||', 'cynthia', 'will', 'kill', 'me', '||comma||', 'we', 'made', 'a', 'deal', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'cynthia:', 'he', 'was', 'uncomfortable', 'because', 'it', 'was', 'our', 'first', 'time', 'so', 'he', 'felt', 'he', 'would', 'perform', 'better', 'if', 'we', 'did', 'it', 'in', 'the', 'kitchen', '||period||', 'he', 'said', 'the', 'kitchen', 'is', 'always', 'the', 'most', 'sociable', 'room', 'in', 'the', 'house', '||period||', 'and', 'he', 'was', 'serious', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'cynthia:', 'how', 'good', 'could', 'it', 'be', '||questionmark||', 'my', 'head', 'was', 'on', 'a', 'hot', 'plate', '||period||', '||return||', '||return||', 'elaine:', 'wait', '||comma||', 'i', 'got', 'another', 'call', '||comma||', 'that', 'must', 'be', 'jerry', '||period||', '||return||', '||return||', 'cynthia:', 'oh', 'wait', '||comma||', "don't", 'you', 'tell', 'him', 'any', 'of', 'this', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'ok', '||period||', '[clicks', 'over]', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'did', 'she', 'have', 'to', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'did', 'he', 'have', 'to', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'said', 'they', 'had', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'elaine:', 'her', 'too', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'good', '||period||', '||return||', '||return||', 'elaine:', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'nope', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'nope', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'elaine:', 'yup', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', 'well', 'uh', '||comma||', 'guess', 'everything', 'is', 'under', 'control', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'okay', 'then', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', 'goodnight', '||period||', '||return||', '||return||', 'jerry:', 'goodnight', '||period||', '||return||', '||return||', 'george:', 'i', 'left', 'three', 'messages', '||period||', 'i', "can't", 'believe', 'this', 'woman', '||period||', 'she', 'has', 'sex', 'with', 'me', '||comma||', 'leaves', 'ten', 'minutes', 'later', 'then', 'i', 'never', 'hear', 'from', 'her', 'again', '||period||', 'what', 'kind', 'of', 'a', 'person', 'does', 'this', '||questionmark||', 'i', 'mean', '||comma||', 'she', 'used', 'me', '||period||', 'i', 'feel', 'cheap', 'and', 'violated', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'gonna', 'do', 'something', 'about', 'this', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'nevermind', '||period||', 'disgraceful', '||period||', 'leaves', 'you', 'sitting', 'there', 'on', 'the', 'kitchen', 'floor', 'like', 'some', 'kind', 'of', 'roach', 'trap', '||period||', 'wham', '||comma||', 'bam', '||comma||', 'thank', 'you', "ma'am", '||period||', 'sir', '||comma||', 'whatever', '||period||', "she's", 'not', 'going', 'to', 'get', 'away', 'with', 'this', '||period||', '||return||', '||return||', 'george:', 'i', 'keep', 'wracking', 'my', 'brain', 'to', 'try', 'and', 'figure', 'out', 'what', 'i', 'did', '||period||', 'i', 'was', 'smart', '||comma||', 'i', 'was', 'funny', '||comma||', 'i', 'made', 'great', 'small', 'talk', 'with', 'the', 'waitress', 'so', 'she', 'could', 'see', 'i', 'could', 'relate', 'to', 'the', 'commoners', '||comma||', 'you', 'know', '||comma||', "i'm", 'a', 'man', 'of', 'the', 'people', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'call', 'her', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "don't", 'call', 'her', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'calling', 'her', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'jerry', '||comma||', "don't", 'call', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'forget', 'it', '||comma||', "i'm", 'gonna', 'call', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'you', 'to', 'call', '||period||', '||return||', '||return||', 'jerry:', 'get', 'away', 'from', 'me', '||comma||', "i'm", 'gonna', 'call', 'her', '||period||', '||return||', '||return||', 'george:', 'give', 'me', 'the', 'phone', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'do', 'you', 'wanna', 'fight', '||questionmark||', 'do', 'you', 'wanna', 'fight', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "i'm", 'gonna', 'kill', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'hey', 'hey', '||exclammark||', '||exclammark||', 'come', 'on', '||exclammark||', 'jerry', '||comma||', 'george', '||comma||', 'now', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', "i'll", 'just', 'call', 'her', 'when', 'you', 'leave', '||exclammark||', '||return||', '||return||', 'george:', 'you', "can't", 'do', 'that', '||comma||', "it's", 'none', 'of', 'your', 'business', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'is', 'so', 'my', 'business', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'hey', 'hey', '||exclammark||', 'i', "don't", 'want', 'to', 'hear', 'another', 'word', 'out', 'of', 'either', 'one', 'of', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'but', 'tell', 'him', 'to', 'give', 'me', 'the', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'ay', 'ay', 'ay', '||exclammark||', 'the', 'next', 'one', 'of', 'you', 'that', 'opens', 'up', 'your', 'mouth', '||comma||', 'says', 'something', '||comma||', "you're", 'gonna', 'have', 'to', 'deal', 'with', 'me', '||period||', 'you', 'know', '||comma||', 'i', 'bet', 'i', 'know', 'what', 'this', 'is', 'about', '||period||', "it's", 'about', 'a', 'woman', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', '||exclammark||', 'you', 'see', '||comma||', 'this', 'is', 'exactly', 'what', 'they', 'want', 'to', 'do', 'to', 'you', '||period||', 'they', 'play', 'one', 'against', 'the', 'other', '||period||', 'you', "can't", 'let', 'them', 'manipulate', 'you', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'but', 'kramer', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'noh', 'noh', 'noh', '||exclammark||', 'i', 'want', 'you', 'guys', 'to', 'shake', 'hands', '||period||', 'come', 'on', '||comma||', 'there', 'are', 'plenty', 'of', 'women', 'out', 'there', 'for', 'all', 'of', 'us', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||period||', 'you', 'see', '||questionmark||', "isn't", 'that', 'better', 'than', 'fighting', '||questionmark||', 'animosity', '||questionmark||', 'i', 'mean', '||comma||', 'you', 'wanna', 'fight', 'with', 'somebody', '||comma||', 'you', 'fight', 'with', 'me', '||period||', 'oh', '||comma||', 'by', 'the', 'way', 'george', '||comma||', 'you', 'know', 'those', 'condoms', 'i', 'gave', 'you', '||questionmark||', "they're", 'defective', '||comma||', "don't", 'use', 'them', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||return||', '||return||', 'george:', 'defective', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'defective', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'attacking', 'kramer', '||rightparen||', 'how', 'could', 'you', 'give', 'me', 'a', 'defective', 'condom', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'even', 'know', 'they', 'were', 'defective', '||period||', '||return||', '||return||', 'kramer:', "didn't", 'even', 'thin', 'you', 'were', 'gonna', 'use', 'them', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', 'you', "didn't", 'think', 'i', "wasn't", 'gonna', 'use', 'them', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'take', 'it', 'easy', '||comma||', 'you', 'guys', '||comma||', 'just', 'spread', 'out', '||exclammark||', "don't", 'worry', 'about', 'it', '||comma||', 'if', 'anything', 'was', 'wrong', 'she', 'would', 'have', 'called', 'you', 'already', '||exclammark||', '||return||', '||return||', 'cynthia:', 'i', 'missed', 'my', 'period', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'cynthia:', 'i', 'am', 'very', 'worried', '||comma||', 'i', 'am', 'never', 'late', '||period||', '||return||', '||return||', 'elaine:', 'but', 'he', 'used', 'a', 'condom', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'cynthia:', 'i', 'know', '||comma||', 'but', 'these', 'things', "aren't", 'always', 'foolproof', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'no', '||period||', '||return||', '||return||', 'cynthia:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'was', 'it', 'blue', '||questionmark||', '||return||', '||return||', 'cynthia:', 'yeah', '||period||', "how'd", 'you', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'a', 'hunch', '||period||', '||return||', '||return||', 'jerry:', 'ow', '||exclammark||', 'ow', '||exclammark||', 'twist', 'off', '||exclammark||', 'twist', 'off', '||exclammark||', 'twist', 'off', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||period||', 'soda', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'so', 'tell', 'me', '||period||', "what's", 'the', 'problem', 'with', 'your', 'little', 'flaky', 'friend', '||questionmark||', 'she', "doesn't", 'return', 'calls', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'are', 'you', 'to', 'talk', 'about', 'her', 'like', 'that', '||questionmark||', "she'll", 'call', 'him', 'when', "she's", 'good', 'and', 'ready', '||period||', 'you', "don't", 'even', 'know', 'her', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'know', 'her', '||period||', 'i', 'know', 'her', 'type', '||period||', '||return||', '||return||', 'elaine:', 'her', 'type', '||questionmark||', 'what', 'type', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'type', 'that', "doesn't", 'return', 'phone', 'calls', '||period||', 'i', 'knew', 'we', "shouldn't", 'have', 'done', 'this', '||comma||', 'it', 'was', 'a', 'bad', 'idea', 'in', 'the', 'first', 'place', '||comma||', 'i', 'told', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'told', 'me', '||questionmark||', 'you', 'pushed', 'this', 'whole', 'thing', 'on', 'me', '||comma||', 'it', 'was', 'your', 'idea', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'just', 'trying', 'to', 'help', 'your', 'bitter', '||comma||', 'twisted', 'friend', '||period||', '||return||', '||return||', 'elaine:', "she's", 'not', 'bitter', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "bitter's", 'a', 'judgement', 'call', '||comma||', 'but', "she's", 'twisted', '||exclammark||', '||return||', '||return||', 'elaine:', 'twisted', '||questionmark||', 'god', '||comma||', 'i', 'did', 'you', 'a', 'favor', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'said', 'they', 'had', 'a', 'good', 'time', '||comma||', 'is', 'there', 'anything', 'else', "you're", 'keeping', 'from', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'are', 'you', 'calling', 'me', 'a', 'liar', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'calling', 'you', 'one', 'if', 'you', 'are', 'one', '||comma||', 'are', 'you', 'a', 'liar', '||questionmark||', '||return||', '||return||', 'elaine:', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'get', 'your', 'finger', 'out', 'of', 'my', 'face', '||period||', '||return||', '||return||', 'elaine:', 'you', 'get', 'yours', 'out', '||comma||', 'i', 'was', 'here', 'first', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'elaine:', 'get', 'it', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'hey', '||comma||', 'alright', '||comma||', 'hey', 'hey', '||comma||', 'stop', 'it', '||exclammark||', 'come', 'on', '||comma||', 'break', 'it', 'up', '||exclammark||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'now', "don't", 'you', 'two', 'see', 'that', "you're", 'in', 'love', 'with', 'each', 'other', '||questionmark||', 'i', 'mean', '||comma||', 'why', "can't", 'you', 'face', 'that', 'already', '||questionmark||', "you're", 'running', 'around', 'out', 'there', 'looking', 'for', 'something', "that's", 'not', 'even', 'there', '||comma||', 'when', 'everything', 'that', 'you', 'dream', 'of', 'is', 'right', 'here', '||comma||', 'right', 'here', 'in', 'front', 'of', 'you', '||period||', 'now', 'why', "can't", 'you', 'admit', 'that', '||questionmark||', 'by', 'the', 'way', '||comma||', 'when', 'you', 'see', 'george', 'give', 'him', 'these', '||comma||', "these'll", 'work', '||period||', '||return||', '||return||', 'elaine:', 'i', 'knew', 'those', 'condoms', 'were', 'defective', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'know', 'they', 'were', 'defective', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'because', '||exclammark||', 'because', 'she', 'missed', 'her', 'period', '||exclammark||', '||return||', '||return||', 'george:', 'she', 'missed', 'her', 'period', '||questionmark||', 'oh', 'my', 'god', '||period||', 'i', "can't", 'believe', 'it', '||exclammark||', "i'm", 'a', 'father', '||exclammark||', 'i', 'did', 'it', '||exclammark||', 'my', 'boys', 'can', 'swim', '||exclammark||', 'i', 'can', 'do', 'it', '||exclammark||', 'i', 'can', 'do', 'it', '||exclammark||', '||return||', '||return||', 'cynthia:', 'so', 'he', 'shows', 'up', '||period||', "he's", 'all', 'out', 'of', 'breath', '||period||', "he's", 'disheveled', '||period||', 'and', 'he', 'tells', 'me', 'that', 'no', 'matter', 'what', 'happens', '||comma||', 'whatever', 'i', 'decide', 'is', 'fine', 'with', 'him', 'and', 'that', 'i', 'could', 'depend', 'on', 'him', '||comma||', 'and', 'that', 'he', 'would', 'be', 'there', 'to', 'support', 'me', 'in', 'whatever', 'way', 'i', 'need', '||period||', 'elaine', '||comma||', 'i', 'was', 'speechless', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||period||', 'wow', '||period||', 'you', 'see', '||questionmark||', 'you', 'think', 'you', 'know', 'somebody', '||period||', '||return||', '||return||', 'cynthia:', 'i', 'said', 'to', 'him', '||comma||', '||quotemark||', 'i', 'really', 'appreciate', 'this', '||comma||', 'but', 'i', 'just', 'got', 'my', 'period', '||period||', '||quotemark||', 'and', 'so', '||comma||', 'i', 'asked', 'him', 'to', 'come', 'in', '||comma||', 'he', 'came', 'in', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'george:', 'sorry', '||comma||', "we're", 'a', 'little', 'late', '||period||', 'we', 'got', 'so', 'hung', 'up', 'in', 'traffic', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'acting', '||period||', '||return||', '||return||', 'elaine:', 'very', 'mature', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', 'hi', 'cynthia', '||period||', '||return||', '||return||', 'cynthia:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'well', 'this', 'is', 'a', 'great', 'place', 'to', 'sit', 'you', 'got', 'here', '||period||', '||return||', '||return||', 'cynthia:', 'best', 'seat', 'in', 'the', 'house', '||period||', '||leftparen||', 'looking', 'at', 'george', '||rightparen||', 'right', 'next', 'to', 'the', 'kitchen', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hitting', 'cynthia', 'playfully', 'with', 'a', 'napkin', '||rightparen||', 'stop', 'it', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'these', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'we', 'ordered', 'some', 'appetizers', '||period||', 'start', 'eating', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'with', 'a', 'mouth', 'full', 'of', 'food', '||rightparen||', 'this', 'is', 'good', '||period||', 'oh', '||comma||', 'this', 'is', 'good', '||period||', '||return||', '||return||', 'kramer:', 'wide', 'open', '||comma||', 'i', 'was', 'wide', 'open', 'underneath', '||exclammark||', 'i', 'had', 'three', 'inches', 'on', 'that', 'guy', '||period||', 'you', 'two', 'were', 'hogging', 'the', 'ball', '||period||', '||return||', '||return||', 'george:', 'me', '||questionmark||', 'it', "wasn't", 'me', 'i', 'never', 'even', 'saw', 'the', 'ball', '||period||', 'all', 'you', 'do', 'is', 'dribble', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'dribble', '||comma||', 'if', 'i', 'give', 'it', 'to', 'you', '||comma||', 'you', 'just', 'shoot', '||period||', "you're", 'a', 'chucker', '||period||', '||return||', '||return||', 'george:', 'oh', "i'm", 'a', 'chucker', '||period||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'everytime', 'you', 'get', 'the', 'ball', 'you', 'shoot', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'you', 'called', 'me', 'a', 'chucker', '||period||', 'no', 'way', "i'm", 'a', 'chucker', '||comma||', 'i', 'do', 'not', 'chuck', '||comma||', 'never', 'chucked', '||comma||', 'never', 'have', 'chucked', '||comma||', 'never', 'will', 'chuck', '||comma||', 'no', 'chuck', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'chuck', '||period||', '||return||', '||return||', 'geroge:', 'kramer', 'am', 'i', 'a', 'chucker', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'a', 'chucker', '||period||', '||return||', '||return||', 'george:', 'all', 'these', 'years', "i've", 'been', "chuckin'", 'and', "you've", 'never', 'told', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "it's", 'not', 'an', 'easy', 'thing', 'to', 'bring', 'up', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'you', 'know', 'this', 'is', 'the', 'first', 'time', "we've", 'ever', 'seen', 'each', 'other', 'naked', '||period||', '||return||', '||return||', 'jerry:', 'believe', 'me', 'i', "didn't", 'see', 'anything', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', "didn't", 'sneak', 'a', 'peak', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'snuck', 'a', 'peak', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', 'not', '||questionmark||', 'hey', 'what', 'about', 'you', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', '||period||', '||period||', '||period||', 'i', 'snuck', 'a', 'peak', '||period||', '||period||', '||period||', '||period||', 'but', 'it', 'was', 'so', 'fast', 'i', "didn't", 'see', 'anything', '||period||', 'it', 'was', 'just', 'a', 'blur', '||period||', '||return||', '||return||', 'jerry:', 'i', 'made', 'a', 'conscious', 'effort', 'not', 'to', 'look', '||period||', "there's", 'certain', 'information', 'i', 'just', "don't", 'want', 'to', 'have', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'i', 'gotta', 'go', 'meet', 'newman', '||period||', 'all', 'right', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||return||', '||return||', 'kramer:', 'have', 'a', 'good', 'one', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||return||', '||return||', 'george:', 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'look', 'at', 'this', 'guy', '||period||', 'does', 'he', 'have', 'to', 'stretch', 'in', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'who', 'that', 'is', '||questionmark||', "that's", '||return||', '||return||', 'george:', 'keith', 'hernandez', '||questionmark||', 'the', 'baseball', 'player', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'him', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', 'positive', '||period||', '||return||', '||return||', 'george:', 'wow', '||comma||', 'keith', 'hernandez', '||period||', "he's", 'such', 'a', 'great', 'player', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'a', 'real', 'smart', 'guy', 'too', '||period||', "he's", 'a', 'civil', 'war', 'buff', '||period||', '||return||', '||return||', 'george:', "i'd", 'love', 'to', 'be', 'a', 'civil', 'war', 'buff', '||period||', '||period||', '||period||', '||period||', 'what', 'do', 'you', 'have', 'to', 'do', 'to', 'be', 'a', 'buff', '||return||', '||return||', 'jerry:', 'so', 'biff', 'wants', 'to', 'be', 'a', 'buff', '||questionmark||', '||period||', '||period||', '||period||', 'well', 'sleeping', 'less', 'than', '18', 'hours', 'a', 'day', 'would', 'be', 'a', 'start', '||period||', '||return||', '||return||', 'george:', 'ho', 'ho', 'ho', 'ho', '||period||', 'you', 'know', 'i', 'only', 'got', 'two', 'weeks', 'left', 'of', 'unemployment', '||period||', 'i', 'got', 'to', 'prove', "i've", 'been', 'looking', 'for', 'a', 'job', 'to', 'get', 'an', 'extension', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'should', 'we', 'say', 'something', 'to', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', "i'm", 'sure', 'he', 'loves', 'to', 'hear', 'from', 'fans', 'in', 'the', 'locker', 'room', '||period||', '||return||', '||return||', 'jerry:', 'well', 'he', 'could', 'say', 'hello', 'to', 'me', '||period||', 'i', "wouldn't", 'mind', '||period||', '||return||', '||return||', 'george:', "he's", 'keith', 'hernandez', '||period||', "you're", 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'comparing', 'yourself', 'to', 'keith', 'hernandez', '||period||', 'the', 'guys', 'a', 'baseball', 'player', 'jerry', '||comma||', 'baseball', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'what', 'he', 'is', '||period||', 'i', 'recognized', 'him', '||period||', 'you', "didn't", 'even', 'notice', 'him', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', '||period||', '||period||', '||period||', 'you', 'are', 'making', 'some', 'wisecracks', 'in', 'a', 'night', 'club', '||period||', '||period||', '||period||', 'wo', 'wo', 'wo', '||period||', 'the', 'guy', 'was', 'in', 'game', 'six', 'two', 'runs', 'down', 'two', 'outs', 'facing', 'elimination', '||period||', '||return||', '||return||', 'keith:', 'excuse', 'me', '||period||', 'i', "don't", 'want', 'to', 'disturb', 'you', '||comma||', "i'm", 'keith', 'hernandez', 'and', 'i', 'just', 'want', 'to', 'tell', 'you', 'what', 'a', 'big', 'fan', 'i', 'am', '||period||', 'i', 'love', 'your', 'comedy', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'keith:', "i've", 'always', 'wanted', 'to', 'do', 'what', 'you', 'do', '||period||', '||return||', '||return||', 'jerry:', 'what', 'i', 'do', '||questionmark||', 'you', 'are', 'one', 'of', 'my', 'favorite', 'ball', 'players', 'of', 'all', 'time', '||return||', '||return||', 'george:', 'mine', 'too', '||period||', '||return||', '||return||', 'keith:', 'i', 'love', 'that', 'bit', 'about', 'jimmy', 'olson', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'keith', '||comma||', 'what', "i've", 'always', 'wondered', '||comma||', 'with', 'all', 'these', 'ball', 'clubs', 'flying', 'around', 'all', 'season', "don't", 'you', 'think', 'there', 'would', 'be', 'a', 'plane', 'crash', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'keith:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'do', 'you', 'perform', 'anywhere', 'in', 'new', 'york', 'right', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'performing', 'in', 'this', 'club', 'on', 'the', 'east', 'side', '||period||', 'you', 'should', 'come', 'in', '||period||', '||return||', '||return||', 'george:', 'but', 'if', 'you', 'think', 'about', 'it', '||period||', '||period||', '||period||', '26', 'teams', '||comma||', '162', 'games', 'a', 'season', '||comma||', "you'd", 'think', 'eventually', 'an', 'entire', 'team', 'would', 'get', 'wiped', 'out', '||period||', '||return||', '||return||', 'keith:', 'you', 'know', '||comma||', 'i', 'live', 'on', 'the', 'east', 'side', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'what', '||comma||', "i'll", 'give', 'you', 'my', 'number', 'and', 'uh', '||comma||', 'just', 'give', 'me', 'a', 'call', '||comma||', 'tell', 'me', 'whenever', 'you', 'want', 'to', 'go', '||period||', '||return||', '||return||', 'keith:', 'or', 'maybe', 'just', 'to', 'get', 'together', 'for', 'a', 'cup', 'of', 'coffee', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'that', 'would', 'be', 'great', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', "it's", 'only', 'a', 'matter', 'of', 'time', '||period||', '||return||', '||return||', 'keith:', "who's", 'this', 'chucker', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'been', 'three', 'days', 'and', 'he', "hasn't", 'called', '||period||', '||return||', '||return||', 'elaine:', 'well', 'maybe', 'you', 'should', 'call', 'him', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', '||period||', '||period||', 'i', "can't", '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'i', 'just', 'feel', 'he', 'should', 'call', 'me', '||period||', '||return||', '||return||', 'elaine:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||comma||', 'elaine', '||period||', 'i', "don't", 'want', 'to', 'be', 'overanxious', '||period||', 'if', 'he', 'wants', 'to', 'see', 'me', 'he', 'has', 'my', 'number', '||comma||', 'he', 'should', 'call', '||period||', '||return||', '||return||', 'elaine:', 'yech', '||comma||', 'look', 'at', 'this', 'ashtray', '||period||', 'i', 'hate', 'cigarettes', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'stand', 'these', 'guys', '||period||', 'you', 'give', 'your', 'number', 'to', 'them', 'and', 'then', 'they', "don't", 'call', '||period||', 'why', 'do', 'they', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', 'honey', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'i', 'thought', 'he', 'liked', 'me', '||period||', 'i', 'really', 'thought', 'he', 'liked', 'me', '||period||', 'we', 'were', 'getting', 'along', '||period||', 'he', 'came', 'over', 'to', 'me', 'i', "didn't", 'go', 'over', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', '||return||', '||return||', 'jerry:', 'why', 'did', 'he', 'come', 'over', 'to', 'me', 'if', 'he', "didn't", 'want', 'to', 'see', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'he', 'come', 'over', 'to', 'me', 'if', 'he', "didn't", 'want', 'to', 'see', 'me', '||questionmark||', 'i', 'mean', 'here', 'i', 'meet', 'this', 'guy', 'this', 'great', 'guy', '||comma||', 'a', 'baseball', 'player', '||comma||', 'best', 'guy', 'i', 'ever', 'met', 'in', 'my', 'life', '||period||', '||period||', '||period||', 'well', "that's", 'it', '||period||', "i'm", 'never', 'giving', 'my', 'number', 'out', 'to', 'another', 'guy', 'again', '||period||', '||return||', '||return||', 'elaine:', 'sometimes', "i've", 'given', 'my', 'number', 'out', 'to', 'guys', 'and', 'it', 'takes', 'them', 'a', 'month', 'to', 'call', '||period||', '||return||', '||return||', 'jerry:', 'hu', '||comma||', 'good', '||comma||', 'good', '||comma||', '||period||', '||period||', '||period||', 'well', 'if', "he's", 'calling', 'in', 'a', 'month', "he's", 'got', 'a', 'prayer', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'maybe', "he's", 'been', 'busy', '||period||', 'maybe', "he's", 'been', 'out', 'of', 'town', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'they', "don't", 'have', 'phones', 'out', 'of', 'town', '||questionmark||', 'why', 'do', '||leftparen||', '||questionmark||', '||rightparen||', 'people', 'say', "they're", 'too', 'busy', '||period||', 'too', 'busy', '||period||', 'pick', 'up', 'a', 'phone', '||exclammark||', '||exclammark||', 'it', 'takes', 'two', 'minutes', '||period||', 'how', 'can', 'you', 'be', 'too', 'busy', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'just', 'go', 'ahead', 'and', 'call', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'call', 'here', '||comma||', "it's", 'a', 'coffee', 'shop', '||period||', 'i', 'mean', 'what', 'am', 'i', 'going', 'to', 'say', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'ask', 'him', 'if', 'he', 'wants', 'a', 'to', 'get', 'together', '||period||', '||return||', '||return||', 'jerry:', 'for', 'what', 'dinner', '||questionmark||', '||return||', '||return||', 'elaine:', "dinner's", 'good', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'think', "that's", 'coming', 'on', 'a', 'little', 'too', 'strong', '||questionmark||', '||period||', '||period||', "isn't", 'that', 'like', 'a', 'turn', 'off', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "he's", 'a', 'guy', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'this', 'is', 'all', '||period||', '||period||', 'very', 'confusing', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'you', 'know', 'you', 'only', 'have', 'two', 'more', 'weeks', 'before', 'your', 'benefits', 'run', 'out', '||period||', '||return||', '||return||', 'george:', 'yes', 'and', 'i', 'was', 'hoping', '||period||', '||period||', '||period||', 'to', 'get', 'a', 'thirteen', 'week', 'extension', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'so', 'where', 'have', 'you', 'been', 'looking', 'for', 'work', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'you', 'know', 'what', "i've", 'discovered', 'mrs', '||period||', 'sokol', '||period||', "it's", 'not', 'so', 'much', 'the', 'looking', 'as', 'the', 'listening', '||period||', 'i', 'listen', 'for', 'work', '||period||', 'and', 'as', "i'm", 'looking', 'and', 'listening', 'i', 'am', 'also', 'looking', '||period||', 'you', "can't", 'discount', 'looking', '||period||', "it's", 'sort', 'of', 'a', 'combination', '||period||', "it's", 'looking', '||comma||', 'and', 'listening', '||comma||', 'listening', 'and', 'looking', '||period||', 'but', 'you', 'must', 'look', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'can', 'you', 'be', 'specific', 'about', 'any', 'of', 'these', 'companies', '||questionmark||', '||return||', '||return||', 'george:', 'specific', '||comma||', 'ah', '||comma||', 'lets', 'see', '||period||', "i've", 'walked', 'in', 'and', 'out', 'of', 'so', 'many', 'buildings', 'they', 'all', '||period||', '||period||', 'blend', 'in', 'together', '||comma||', 'i', 'uh', '||comma||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'well', 'just', 'give', 'me', 'one', 'name', '||period||', '||return||', '||return||', 'george:', 'absolutely', '||comma||', 'uh', '||comma||', 'lets', 'see', "there's", '||comma||', 'uh', '||comma||', 'vandelay', 'industries', '||comma||', 'i', 'just', 'saw', 'them', '||period||', 'i', 'got', 'very', 'close', 'there', '||period||', 'very', 'close', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'and', 'what', 'type', 'of', 'company', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'latex', '||comma||', 'latex', 'manufacturing', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'and', 'you', 'interviewed', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'for', 'a', 'sales', 'position', '||period||', 'latex', 'salesman', '||comma||', 'the', 'selling', 'of', 'latex', '||comma||', 'and', 'latex', 'related', 'products', '||period||', 'they', 'just', "wouldn't", 'give', 'me', 'a', 'chance', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', "i'm", 'going', 'to', 'need', 'an', 'address', 'and', 'a', 'phone', 'number', 'for', 'this', 'uh', '||comma||', 'vandelay', 'company', '||period||', '||period||', '||period||', '||return||', '||return||', 'goerge:', 'you', 'like', 'gum', '||questionmark||', "'cause", 'i', 'have', 'a', 'friend', 'in', 'the', 'gum', 'business', '||period||', 'i', 'got', 'a', 'gum', 'guy', '||period||', 'i', 'make', 'one', 'phone', 'call', '||period||', 'i', 'got', 'boxes', 'of', 'delivered', 'right', 'to', 'your', 'door', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'the', 'address', '||exclammark||', '||return||', '||return||', 'george:', 'yyyddsshe', '||leftparen||', '||questionmark||', '||rightparen||', '||period||', '||period||', '||period||', 'jose', 'jimenez', '||period||', 'you', 'recognize', 'it', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'no', '||period||', '||return||', '||return||', 'george:', 'jose', 'jimenez', '||comma||', '||period||', '||period||', '||period||', 'verrry', 'funny', '||period||', '||period||', '||period||', 'very', 'funny', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'the', 'address', '||exclammark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'uh', '||comma||', 'vandelay', 'industries', '||comma||', 'is', 'uh', '||period||', '129', 'west', '81st', 'street', '||period||', "it's", 'a', 'very', 'small', 'industry', 'vandelay', '||period||', "it's", 'one', 'of', 'the', 'reasons', 'i', 'wanted', 'to', 'uh', '||comma||', 'work', 'for', 'them', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'the', 'phone', 'number', '||period||', '||return||', '||return||', 'george:', "that's", 'uh', '||comma||', 'kl5', '||dash||', '8383', '||period||', 'are', 'you', 'calling', 'them', 'soon', 'because', '||comma||', 'they', 'keep', 'very', 'strange', 'hours', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'as', 'soon', 'as', "i'm", 'done', 'wit', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'sure', '||comma||', 'well', 'uh', '||comma||', 'you', 'know', "i'll", 'check', 'in', 'with', 'you', 'next', 'week', 'uh', '||comma||', 'i', 'gotta', 'run', 'now', 'because', 'i', 'got', 'a', 'full', 'plate', 'this', 'afternoon', '||period||', 'all', 'right', '||comma||', 'really', 'go', 'to', 'uh', '||comma||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantically', '||comma||', 'takes', 'phone', 'and', 'screams', '||period||', '||period||', '||period||', '||rightparen||', "he'll", 'call', 'you', 'back', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'loungingly', 'talking', 'on', 'phone', '||rightparen||', "it's", 'a', 'par', 'five', '||period||', 'so', 'you', 'know', 'i', 'step', 'up', 'to', 'the', 'tee', 'and', 'i', 'hit', 'a', 'beautiful', 'drive', 'right', 'down', 'the', 'middle', 'of', 'the', 'fairway', '||period||', 'i', 'mean', 'you', 'know', 'my', 'hook', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'how', 'about', 'this', 'shirt', '||questionmark||', 'is', 'this', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', '||period||', '||period||', '||period||', "he's", 'a', 'guy', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', "it's", 'a', 'dog', 'leg', 'left', '||comma||', 'so', 'i', 'play', 'the', 'hook', 'right', '||questionmark||', '||period||', '||period||', 'hold', 'on', "there's", 'another', 'call', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantically', '||rightparen||', 'jerry', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', 'put', 'jerry', 'on', 'the', 'phone', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'angrily', '||rightparen||', 'yeah', '||comma||', 'look', "i'm", 'in', 'the', 'middle', 'of', 'something', '||period||', 'call', 'back', '||period||', '||return||', '||return||', 'george:', 'kramer', '||exclammark||', '||exclammark||', 'kramer', 'no', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'so', 'the', 'ball', 'takes', 'of', 'and', "i'm", 'waiting', 'for', 'it', 'to', 'turn', '||period||', '||return||', '||return||', 'george:', 'hitting', 'phone', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'll", 'talk', 'to', 'jerry', '||period||', 'yeah', '||comma||', '[hangs', 'up]', '||period||', '||period||', '||period||', 'you', 'know', 'that', 'was', 'michael', 'and', 'carol', '||period||', "she's", 'wondering', 'when', "we're", 'going', 'to', 'come', 'over', 'and', 'see', 'the', 'baby', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'see', 'the', 'baby', 'again', 'with', 'the', 'baby', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'who', 'are', 'they', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', "he's", 'this', 'guy', 'who', 'used', 'to', 'live', 'in', 'the', 'building', 'and', 'they', 'keep', 'calling', 'us', 'to', 'see', 'the', 'baby', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'imitates', '||rightparen||', "ya'", 'gotta', 'see', 'the', 'babi', '||dash||', 'when', 'are', "ya'", 'gonna', 'see', 'the', 'babi', '||period||', '||period||', '||period||', "can't", 'they', 'just', 'send', 'us', 'a', 'tape', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'if', 'you', 'waited', 'a', 'few', 'more', 'months', 'it', "won't", 'be', 'a', 'baby', 'anymore', 'then', 'you', "wouldn't", 'have', 'to', 'see', 'it', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'uh', 'because', 'then', 'it', 'would', 'be', 'all', 'grown', 'up', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'ha', 'ha', 'ha', '||return||', '||return||', 'jerry:', 'hey', 'kramer', 'what', 'do', 'you', 'think', 'of', 'this', 'shirt', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'does', 'a', 'double', 'take', '||rightparen||', "it's", 'too', 'busy', '||return||', '||return||', 'elaine:', 'it', 'looks', 'like', "you're", 'trying', 'too', 'hard', 'to', 'make', 'an', 'impression', 'on', 'him', '||period||', "you're", 'not', 'being', 'yourself', '||period||', '||return||', '||return||', 'kramer:', 'what', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', "he's", 'just', 'a', 'guy', 'but', '||period||', '||period||', 'i', 'like', 'him', '||period||', '||return||', '||return||', 'kramer:', 'who', 'are', 'you', 'talkin', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'keith', 'uh', 'hernandez', '||period||', '||return||', '||return||', 'kramer:', 'keith', 'hernandez', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'enters', '||rightparen||', 'keith', 'hernandez', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'me', 'a', 'favor', 'would', 'you', '||questionmark||', 'would', 'you', 'change', 'lanes', '||questionmark||', 'would', 'you', 'get', 'outta', 'this', 'lane', '||period||', 'you', 'gotta', 'get', 'out', 'of', 'this', 'lane', '||period||', 'this', 'lane', 'stinks', '||period||', "they're", 'all', 'double', 'parked', 'here', 'please', 'get', 'outta', 'this', 'lane', '||period||', "i'm", 'beggin', 'you', 'please', 'please', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||comma||', 'bad', 'mistake', 'my', 'mistake', 'do', 'me', 'a', 'favor', 'go', 'back', 'to', 'the', 'other', 'lane', '||dash||', "you'll", 'never', 'get', 'there', '||dash||', 'forget', 'this', 'lane', '||dash||', "y'a", 'kn', 'ow', 'what', 'this', 'lane', 'stinks', '||dash||', 'go', 'back', 'to', 'the', 'other', 'lane', '||dash||', 'bad', 'decision', '||dash||', 'go', 'go', 'go', 'take', 'this', 'light', '||dash||', 'take', 'this', 'light', '||dash||', '||return||', '||return||', 'cabby:', "that's", 'it', 'get', 'out', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'get', 'out', '||questionmark||', '||return||', '||return||', 'cabby:', 'get', 'out', 'of', 'my', 'cab', '||period||', '||return||', '||return||', 'george:', 'wa', '||comma||', "i'm", 'not', 'getting', 'out', 'of', 'this', 'cab', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||exclammark||', 'you', "can't", 'throw', 'me', 'out', '||return||', '||return||', 'jerry:', 'hellooo', 'newman', '||period||', '||return||', '||return||', 'kramer:', 'i', 'hate', 'keith', 'hernandez', '||dash||', 'hate', 'him', '||period||', '||return||', '||return||', 'newman:', 'i', 'despise', 'him', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'newman:', 'why', '||questionmark||', "i'll", 'tell', 'you', 'why', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'tell', 'it', '||period||', '||period||', '||return||', '||return||', 'newman:', 'no', '||comma||', 'you', "can't", 'tell', 'it', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'always', 'tell', 'it', '||period||', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', 'tell', 'it', '||period||', '||return||', '||return||', 'kramer:', 'ja', 'ja', 'ja', '||dash||', 'just', 'tell', 'it', '||return||', '||return||', 'newman:', 'june', '14', '||comma||', '1987', '||period||', '||period||', '||period||', '||period||', 'mets', 'phillies', '||period||', "we're", 'enjoying', 'a', 'beautiful', 'afternoon', 'in', 'the', 'right', 'field', 'stands', 'when', 'a', 'crucial', 'hernandez', 'error', 'to', 'a', 'five', 'run', 'phillies', 'ninth', '||period||', 'cost', 'the', 'mets', 'the', 'game', '||period||', '||return||', '||return||', 'kramer:', 'our', 'day', 'was', 'ruined', '||period||', 'there', 'was', 'a', 'lot', 'of', 'people', '||comma||', 'you', 'know', '||comma||', 'they', 'were', 'waiting', 'by', 'the', "player's", 'parking', 'lot', '||period||', 'now', "we're", 'coming', 'down', 'the', 'ramp', '||period||', '||period||', '||period||', '[cut', 'to', 'film', 'of', 'the', 'day', '||dash||', 'like', 'the', 'zabruter', 'film', '||dash||', 'with', 'the', 'umbrella', 'man', 'and', 'everything', '||dash||', 'oh', 'so', 'brilliant', 'parody', '||exclammark||', '||exclammark||', '||exclammark||', ']', '||period||', '||period||', '||period||', 'newman', 'was', 'in', 'front', 'of', 'me', '||period||', 'keith', 'was', 'coming', 'toward', 'us', '||comma||', 'as', 'he', 'passes', 'newman', 'turns', 'and', 'says', '||comma||', '||quotemark||', 'nice', 'game', 'pretty', 'boy', '||period||', '||quotemark||', '||period||', 'keith', 'continued', 'past', 'us', 'up', 'the', 'ramp', '||period||', '||return||', '||return||', 'newman:', 'a', 'second', 'later', '||comma||', 'something', 'happened', 'that', 'changed', 'us', 'in', 'a', 'deep', 'and', 'profound', 'way', 'front', 'that', 'day', 'forward', '||period||', '||return||', '||return||', 'elaine:', 'what', 'was', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'spit', 'on', 'us', '||period||', '||period||', '||period||', '||period||', 'and', 'i', 'screamed', 'out', '||comma||', '||quotemark||', "i'm", 'hit', '||exclammark||', '||quotemark||', '||return||', '||return||', 'newman:', 'then', 'i', 'turned', 'and', 'the', 'spit', 'ricochet', 'of', 'him', 'and', 'it', 'hit', 'me', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', 'what', 'a', 'story', '||period||', '||return||', '||return||', 'jerry:', 'unfortunately', 'the', 'immutable', 'laws', 'of', 'physics', 'contradict', 'the', 'whole', 'premise', 'of', 'your', 'account', '||period||', 'allow', 'me', 'to', 'reconstruct', 'this', 'if', 'i', 'may', 'for', 'miss', 'benes', 'as', "i've", 'heard', 'this', 'story', 'a', 'number', 'of', 'times', '||period||', '||return||', '||return||', 'jerry:', 'newman', '||comma||', 'kramer', '||comma||', 'if', "you'll", 'indulge', 'me', '||period||', 'according', 'to', 'your', 'story', 'keith', 'passes', 'you', 'and', 'starts', 'walking', 'up', 'the', 'ramp', 'then', 'you', 'say', 'you', 'were', 'struck', 'on', 'the', 'right', 'temple', '||period||', 'the', 'spit', 'then', 'proceeds', 'to', 'ricochet', 'off', 'the', 'temple', 'striking', 'newman', 'between', 'the', 'third', 'and', 'forth', 'rib', '||period||', 'the', 'spit', 'then', 'cam', 'off', 'the', 'rib', 'turned', 'and', 'hit', 'newman', 'in', 'the', 'right', 'wrist', 'causing', 'him', 'to', 'drop', 'his', 'baseball', 'cap', '||period||', 'the', 'spit', 'then', 'splashed', 'off', 'the', 'wrist', '||comma||', 'pauses', 'in', 'mid', 'air', 'mind', 'you', '||dash||', 'makes', 'a', 'left', 'turn', 'and', 'lands', 'on', "newman's", 'left', 'thigh', '||period||', 'that', 'is', 'one', 'magic', 'luggie', '||period||', '||return||', '||return||', 'newman:', 'well', "that's", 'the', 'way', 'it', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'your', 'head', 'when', 'you', 'got', 'hit', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||period||', 'uh', '||comma||', 'well', 'my', 'head', 'went', 'back', 'and', 'to', 'the', 'left', '||return||', '||return||', 'jerry:', 'again', '||return||', '||return||', 'kramer:', 'back', 'and', 'to', 'the', 'left', '||return||', '||return||', 'jerry:', 'back', 'and', 'to', 'the', 'left', 'back', 'and', 'to', 'the', 'left', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'am', 'saying', 'that', 'the', 'spit', 'could', 'not', 'have', 'come', 'from', 'behind', '||period||', '||period||', '||period||', 'that', 'there', 'had', 'to', 'have', 'been', 'a', 'second', 'spitter', 'behind', 'the', 'bushes', 'on', 'the', 'gravelly', 'road', '||period||', 'if', 'the', 'spitter', 'was', 'behind', 'you', 'as', 'you', 'claimed', 'that', 'would', 'have', 'caused', 'your', 'head', 'to', 'pitch', 'forward', '||period||', '||return||', '||return||', 'elaine:', 'so', 'the', 'spit', 'could', 'have', 'only', 'come', 'from', 'the', 'front', 'and', 'to', 'the', 'right', '||period||', '||return||', '||return||', 'jerry:', 'but', 'that', 'is', 'not', 'what', 'they', 'would', 'have', 'you', 'believe', '||period||', '||return||', '||return||', 'newman:', "i'm", "leavin'", '||period||', "jerry's", 'a', 'nut', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'the', 'sad', 'thing', 'is', 'we', 'may', 'never', 'know', 'the', 'real', 'truth', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantically', '||rightparen||', 'did', 'anybody', 'call', 'here', 'asking', 'for', 'vandelay', 'industries', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'now', '||comma||', 'listen', 'closely', '||period||', 'i', 'was', 'at', 'the', 'unemployment', 'office', 'and', 'i', 'told', 'them', 'that', 'i', 'was', 'very', 'close', 'to', 'getting', 'a', 'job', 'with', 'vandelay', 'industries', 'and', 'i', 'gave', 'them', 'your', 'phone', 'number', '||period||', 'so', '||comma||', 'when', 'now', 'when', 'the', 'phone', 'rings', "you've", 'got', 'to', 'answer', '||quotemark||', 'vandelay', 'industries', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'vandelay', 'industries', '||questionmark||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'and', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'in', 'latex', '||return||', '||return||', 'jerry:', 'latex', '||questionmark||', 'and', 'what', 'do', 'i', 'do', 'with', 'latex', '||questionmark||', '||return||', '||return||', 'george:', 'ya', 'manufacture', 'it', '||period||', '||return||', '||return||', 'elaine:', 'here', 'in', 'this', 'little', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'what', 'do', 'i', 'say', 'about', 'you', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'considering', 'hiring', 'me', 'for', 'your', 'latex', 'salesman', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'to', 'hire', 'you', 'as', 'my', 'latex', 'salesman', '||questionmark||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'so', '||period||', 'why', 'would', 'i', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'i', 'asked', 'you', 'to', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'think', "i'm", 'looking', 'for', 'someone', 'to', 'just', 'sit', 'at', 'a', 'desk', 'pushing', 'papers', 'around', '||comma||', 'you', 'can', 'forget', 'it', '||period||', 'i', 'have', 'enough', 'headaches', 'just', 'trying', 'to', 'manufacture', 'the', 'stuff', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', "it's", 'keith', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', "we're", 'coming', 'down', '||period||', '||return||', '||return||', 'george:', 'keith', 'hernandez', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'come', 'on', 'elaine', '||comma||', 'lets', 'go', '||period||', '||return||', '||return||', 'george:', 'where', 'are', 'you', 'goin', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'giving', 'me', 'a', 'ride', 'you', 'know', 'there', 'had', 'to', 'have', 'been', 'a', 'second', 'spitter', '||period||', 'but', 'who', 'was', 'it', '||questionmark||', 'who', 'had', 'the', 'motive', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'what', "i've", 'been', 'trying', 'to', 'figure', 'out', 'the', 'past', 'five', 'years', '||period||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'are', 'you', 'two', 'talking', 'about', '||questionmark||', '||leftparen||', 'all', 'exit', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', 'that', 'was', 'really', 'fun', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'keith:', 'yeah', '||comma||', 'it', 'really', 'was', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'mind', '||rightparen||', ':', 'should', 'i', 'shake', 'his', 'hand', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'keith:', 'uh', '||comma||', 'do', 'you', 'want', 'to', 'catch', 'a', 'movie', 'this', 'weekend', '||questionmark||', 'have', 'you', 'seen', 'jfk', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "haven't", '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'mind', '||rightparen||', ':', 'this', 'weekend', '||period||', 'wow', '||exclammark||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'that', 'would', 'be', 'great', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'mind', '||rightparen||', ':', 'damn', '||comma||', 'i', 'was', 'too', 'overanxious', '||comma||', 'he', 'must', 'have', 'noticed', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', '||period||', '||period||', '||period||', 'if', 'you', 'want', 'to', '||period||', '||return||', '||return||', 'keith:', 'well', '||comma||', 'how', 'about', 'this', 'friday', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "friday's", 'okay', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'mind', '||rightparen||', ':', 'go', 'ahead', 'shake', 'his', 'hand', '||period||', "you're", 'jerry', 'seinfeld', '||period||', "you've", 'been', 'on', 'the', 'tonight', 'show', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'good', 'night', '[holds', 'hand', 'out', 'and', 'shakes', 'hand]', '||return||', '||return||', 'keith:', 'goodnight', '||period||', 'oh', '||comma||', 'jer', '||comma||', 'by', 'the', 'way', '||comma||', 'the', 'woman', 'we', 'gave', 'a', 'ride', 'to', 'earlier', 'tonight', '||comma||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||return||', '||return||', 'keith:', 'yeah', '||period||', "what's", 'her', 'story', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'i', "don't", 'know', '||comma||', 'we', 'used', 'to', 'go', 'out', '||period||', '||return||', '||return||', 'keith:', 'would', 'you', 'mind', 'if', 'i', 'gave', 'her', 'a', 'call', '||questionmark||', '||return||', '||return||', 'jerry:', 'for', 'a', 'date', '||questionmark||', '||return||', '||return||', 'keith:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'uh', '||comma||', 'go', 'ahead', '||period||', 'you', 'got', 'a', 'pen', '||questionmark||', '||return||', '||return||', 'keith:', 'you', 'sure', 'you', "don't", 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'silence', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'then', 'we', 'went', 'to', 'dinner', '||period||', '||return||', '||return||', 'george:', 'who', 'paid', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'split', 'it', '||period||', '||return||', '||return||', 'george:', 'split', 'it', '||period||', 'pretty', 'good', '||period||', 'talk', 'about', 'game', 'six', '||questionmark||', '||return||', '||return||', 'jerry:', 'naw', '||comma||', 'i', 'gotta', 'wait', 'until', 'its', 'just', 'the', 'right', 'time', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'elaine:', "it's", 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'george:', 'so', 'then', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', "nuthin'", '||period||', 'then', 'he', 'took', 'me', 'home', '||period||', '||return||', '||return||', 'george:', 'shake', 'his', 'hand', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', '||rightparen||', 'yeah', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'a', 'shake', 'does', 'he', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', 'shake', '||period||', 'perfect', 'shake', '||period||', 'single', 'pump', '||comma||', 'not', 'too', 'hard', '||comma||', 'you', 'know', '||comma||', "doesn't", 'have', 'to', 'prove', 'anything', '||comma||', 'but', '||comma||', 'you', 'know', '||comma||', 'firm', 'enough', 'to', 'know', 'he', 'was', 'there', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'uh', '||comma||', 'you', 'gonna', 'see', 'him', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'asked', 'me', 'if', 'i', 'was', 'doing', 'anything', 'friday', 'night', '||period||', '||return||', '||return||', 'george:', 'wow', '||exclammark||', 'the', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'so', 'then', 'as', 'i', 'was', 'getting', 'out', 'of', 'the', 'car', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||return||', '||return||', 'jerry:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'sooo', '||comma||', 'how', 'was', 'your', 'date', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'date', '||questionmark||', "it's", 'a', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'so', 'you', 'know', '||comma||', '||period||', '||period||', '||period||', 'he', 'called', 'me', '||period||', '||return||', '||return||', 'jerry:', 'already', '||questionmark||', '||return||', '||return||', 'george:', 'keith', 'called', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'he', 'this', 'guy', 'really', 'gets', 'around', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'mind', 'at', 'all', '||period||', 'why', 'should', 'i', 'mind', '||questionmark||', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'asked', 'me', 'out', 'for', 'saturday', 'night', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "ya'", 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'told', 'him', 'i', 'was', 'busy', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'really', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "we're", 'going', 'out', 'friday', '||period||', '||return||', '||return||', 'jerry:', 'friday', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "he's", "going'", 'out', 'with', 'you', 'on', 'friday', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "he's", 'supposed', 'to', 'see', 'me', 'on', 'friday', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'uh', '||comma||', 'i', "didn't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'we', 'made', 'plans', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'uh', '||comma||', "i'll", 'cancel', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "don't", 'cancel', 'it', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', 'well', 'this', 'is', 'a', 'little', 'awkward', '||comma||', "isn't", 'it/', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'frankly', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', "i've", 'never', 'seen', 'you', 'jealous', 'before', '||period||', '||return||', '||return||', 'jerry:', 'well', "you're", 'not', 'even', 'a', 'fan', '||period||', 'i', 'was', 'at', 'game', 'six', '||dash||', 'you', "didn't", 'even', 'watch', 'it', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'second', 'wait', 'a', 'minute', '||comma||', 'you', 'jealous', 'of', 'him', 'or', 'you', 'jealous', 'of', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'any', 'hennigans', 'around', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'vandelay', 'industries', '||comma||', 'kel', 'varnsen', 'speaking', '||period||', 'may', 'we', 'help', 'you', '||questionmark||', '||period||', '||period||', '||period||', 'oh', 'hi', 'keith', '||period||', 'na', '||comma||', 'i', 'was', 'just', "jokin'", 'around', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', '||period||', 'i', "don't", 'mind', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'can', 'cancel', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'we', 'can', 'do', 'something', 'next', 'week', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'i', 'can', 'cancel', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'its', 'no', 'problem', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'i', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'take', 'it', 'easy', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'that', 'was', 'keith', '||period||', "we're", 'going', 'to', 'do', 'something', 'next', 'week', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'jerry:', 'hey', 'what', 'are', 'you', 'doing', 'friday', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'friday', 'night', '||questionmark||', "nothin'", '||comma||', '||period||', '||period||', '||period||', 'now', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'wanna', 'come', 'with', 'me', 'and', 'see', 'the', 'baby', '||questionmark||', '||return||', '||return||', 'jerry:', 'fasten', 'your', 'seat', 'belts', '||period||', "we're", "goin'", 'to', 'see', 'the', 'baby', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'if', 'you', "don't", 'see', 'the', 'baby', 'now', "you're", 'never', 'gonna', 'see', 'it', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'll", 'go', '||return||', '||return||', 'kramer:', 'all', 'right', '||return||', '||return||', 'kramer:', 'yallo', '||period||', 'what', 'delay', 'industries', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'from', 'bathroom', '||rightparen||', 'vandelay', '||comma||', 'say', 'vandelay', '||exclammark||', '||return||', '||return||', 'kramer:', 'na', '||comma||', "you're", 'way', 'way', 'way', 'off', '||period||', '||period||', 'well', '||comma||', 'yeah', "that's", 'the', 'right', 'number', 'but', 'this', 'is', 'an', 'apartment', '||return||', '||return||', 'george:', '||leftparen||', 'from', 'bathroom', '||rightparen||', 'vandelay', '||comma||', 'say', 'vandel', '||period||', '||period||', '||period||', '||leftparen||', 'george', 'falls', '||rightparen||', '||period||', '||period||', '||period||', 'vandelay', 'industries', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', 'problem', '||comma||', '||period||', '||period||', '||period||', 'no', 'problem', '||period||', '[hangs', 'up]', '||period||', '||period||', '||period||', 'how', 'did', 'you', 'know', 'who', 'that', 'was', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'you', 'want', 'to', 'be', 'my', 'latex', 'salesman', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'just', 'sign', 'here', 'please', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'who', 'it', 'was', 'too', '||period||', 'it', 'was', 'the', 'guy', 'who', 'interviewed', 'me', '||period||', 'he', 'was', 'very', 'threatened', 'by', 'me', '||period||', 'why', 'else', "wouldn't", 'he', 'hire', 'me', '||questionmark||', 'i', 'could', 'sell', 'latex', 'like', 'that', '||leftparen||', 'snaps', 'fingers', '||rightparen||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'sign', 'that', '||period||', '||return||', '||return||', 'george:', 'who', 'is', 'this', '||questionmark||', '||leftparen||', 'sees', 'photo', '||rightparen||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', "it's", 'my', "daughta'", '||return||', '||return||', 'george:', 'this', 'is', 'your', 'daughter', '||questionmark||', 'my', 'god', '||exclammark||', 'my', 'god', '||exclammark||', 'i', 'i', 'hope', 'you', "don't", 'mind', 'my', 'saying', '||period||', 'she', 'is', 'breathtaking', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', "ya'", 'think', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'would', 'you', 'take', 'this', 'picture', 'away', 'from', 'me', '||period||', 'take', 'it', 'away', 'and', 'get', 'it', 'outta', 'here', '||period||', 'let', 'me', 'just', 'sign', 'this', 'and', 'go', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'you', 'know', 'she', "doesn't", 'even', 'have', 'a', 'boyfriend', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'okay', '||period||', 'who', 'do', 'you', 'think', "you're", 'talking', 'to', '||questionmark||', 'what', 'are', "ya'", 'you', 'trying', 'to', 'make', 'a', 'joke', '||comma||', 'because', "it's", 'not', 'funny', '||period||', 'i', 'can', 'tell', 'you', 'that', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', "i'm", 'serious', '||period||', '||return||', '||return||', 'george:', "it's", 'one', 'think', 'to', 'not', 'give', 'me', 'the', 'extension', 'but', 'to', 'tease', 'and', 'to', 'torture', 'me', 'like', 'this', '||period||', "there's", 'no', 'call', 'for', 'that', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'would', 'you', 'like', 'her', 'phone', "numba'", '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'mrs', '||period||', 'sokol', 'i', '||comma||', 'i', "don't", 'know', 'what', 'to', 'say', '||period||', 'i', '||comma||', 'uh', '||comma||', 'where', 'should', 'i', 'sign', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'no', 'no', 'no', '||comma||', "don't", 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'so', 'tell', 'me', 'more', 'about', 'this', 'game', 'six', '||period||', '||return||', '||return||', 'keith:', 'well', '||comma||', 'there', 'was', 'two', 'outs', '||comma||', 'bottom', 'of', 'the', 'tenth', '||comma||', "we're", 'one', 'out', 'away', 'from', 'losing', 'the', 'series', '||period||', '||return||', '||return||', 'elaine:', 'ooooh', 'ahhh', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'baby', '||rightparen||', 'koochie', 'koochie', 'koochie', 'koo', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'baby', '||rightparen||', 'hello', '||period||', 'how', 'are', 'you/', '||return||', '||return||', 'carol:', 'so', '||comma||', 'wadda', "ya'", 'think', '||questionmark||', 'do', 'you', 'love', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'i', 'do', 'love', 'her', '||period||', '||leftparen||', 'to', 'baby', '||rightparen||', 'you', 'have', 'a', 'very', 'nice', 'place', 'here', '||period||', '||return||', '||return||', 'carol:', 'so', 'how', 'do', 'you', 'think', 'she', 'looks', 'like', '||questionmark||', '||return||', '||return||', 'kramer:', 'lyndon', 'johnson', '||period||', '||return||', '||return||', 'carol:', 'what', '||questionmark||', 'lyndon', 'johnson', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'joking', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'not', 'joking', '||period||', 'she', 'looks', 'like', 'lyndon', 'johnson', '||period||', '||return||', '||return||', 'carol:', 'jerry', '||comma||', 'i', "can't", 'believe', 'it', 'took', 'you', 'so', 'long', 'to', 'come', 'see', 'the', 'baby', '||period||', 'i', 'kept', 'saying', 'to', 'michael', '||comma||', '||quotemark||', 'when', 'is', 'jerry', 'going', 'to', 'see', 'the', 'baby', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'saying', 'the', 'same', 'thing', '||period||', '||return||', '||return||', 'carol:', "let's", 'take', 'a', 'picture', '||period||', 'michael', '||comma||', 'get', 'the', 'camera', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'you', "don't", 'have', 'to', 'take', 'a', 'picture', '||period||', '||return||', '||return||', 'mike:', 'i', "don't", 'know', 'where', 'it', 'is', '||period||', '||return||', '||return||', 'carol:', "it's", 'in', 'the', 'bottom', "draw'", 'of', 'are', "dressa'", '||period||', 'hurry', 'up', '||exclammark||', "he's", 'such', 'an', 'idiot', '||period||', '||return||', '||return||', 'jerry:', 'jerry', '||comma||', 'you', 'want', 'to', 'pick', 'her', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'better', 'not', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'pick', 'her', 'up', '||period||', '||return||', '||return||', 'carrie:', 'thank', 'you', 'for', 'a', 'wonderful', 'time', 'george', '||period||', '||return||', '||return||', 'george:', 'glad', 'you', 'enjoyed', 'it', '||period||', '||return||', '||return||', 'carrie:', 'i', "haven't", 'had', 'a', 'big', 'mac', 'in', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'george:', 'millions', 'and', 'millions', '||return||', '||return||', 'carrie:', 'would', 'you', 'like', 'to', 'come', 'up', '||questionmark||', '||return||', '||return||', 'george:', '[pause]', 'would', 'i', 'like', 'to', 'come', 'up', '||questionmark||', 'i', 'would', 'love', 'to', 'come', 'up', '||period||', 'i', '||comma||', "i'm", 'fighting', 'not', 'to', '||period||', 'fighting', '||exclammark||', 'unfortunately', 'i', 'uh', 'have', 'to', 'get', 'an', 'early', 'start', 'tomorrow', '||period||', "gotta'", 'get', 'up', 'and', 'hit', 'that', 'pavement', '||return||', '||return||', 'carrie:', 'but', "it's", 'saturday', '||period||', 'all', 'the', 'offices', 'are', 'closed', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'me', 'an', 'appointment', 'with', 'a', 'hardware', 'store', '||period||', "i'm", 'not', 'saying', 'i', 'want', 'to', 'do', 'it', 'for', 'the', 'rest', 'of', 'my', 'life', '||comma||', 'but', '||comma||', 'uh', '||comma||', 'hardware', 'fascinates', 'me', '||period||', "don't", 'you', 'love', 'to', 'make', 'a', 'key', '||questionmark||', '||return||', '||return||', 'carrie:', 'will', 'you', 'call', 'me', 'as', 'soon', 'as', 'you', 'get', 'home', '||questionmark||', '||return||', '||return||', 'george:', '[pause]', 'tonight', '||questionmark||', '||return||', '||return||', 'carrie:', 'yes', '||period||', '||return||', '||return||', 'george:', 'will', 'i', 'call', 'you', 'when', 'i', 'get', 'home', '||questionmark||', 'ha', 'ha', 'what', 'do', 'you', 'think', '||questionmark||', 'ee', '||comma||', 'you', 'kill', 'me', 'kill', 'me', '||return||', '||return||', 'carrie:', 'well', '||period||', 'good', 'night', '||period||', '[puckers', 'up]', '||return||', '||return||', 'kramer:', 'well', 'it', 'was', 'an', 'accident', '||period||', 'right', 'jerry', 'it', 'was', 'an', 'accident', '||period||', 'ah', '||comma||', "she's", 'going', 'to', 'be', 'all', 'right', '||period||', '||period||', '||period||', 'baby', '||comma||', 'baby', '||comma||', 'ah', '||comma||', 'baby', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'thanks', 'for', 'a', 'nice', 'evening', '||period||', 'it', 'was', 'really', 'fun', '||period||', '||return||', '||return||', 'keith:', 'yeah', '||comma||', 'it', 'was', '||period||', '[mind]', 'gosh', '||comma||', 'should', 'i', 'kiss', 'her', 'good', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', '[mind]', 'is', 'he', 'going', 'to', 'try', 'to', 'kiss', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'love', 'cajun', 'cooking', '||period||', '||return||', '||return||', 'keith:', 'really', '||comma||', 'you', 'know', 'my', "mom's", 'one', 'quarter', 'cajun', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'my', "father's", 'half', 'drunk', '||period||', 'ha', 'ha', 'ha', 'ha', '||return||', '||return||', 'keith:', 'maybe', 'they', 'should', 'get', 'together', '||period||', '[mind]', 'go', 'ahead', '||period||', 'kiss', 'her', '||period||', "i'm", 'a', 'baseball', 'player', 'dammit', '||period||', '||return||', '||return||', 'elaine:', '[mind]', "what's", 'he', 'waiting', 'for', '||questionmark||', 'i', 'thought', 'he', 'was', 'a', 'cool', 'guy', '||period||', '||return||', '||return||', 'keith:', '[mind]', 'come', 'on', 'i', 'won', 'the', 'mvp', 'in', '79', '||period||', 'i', 'can', 'do', 'whatever', 'i', 'want', 'to', '||period||', '||return||', '||return||', 'elaine:', '[mind]', 'this', 'is', 'getting', 'awkward', '||period||', '||return||', '||return||', 'keith:', 'well', '||comma||', 'goodnight', '||return||', '||return||', 'elaine:', 'good', 'night', '||return||', '||return||', 'elaine:', '[mind]', 'who', 'does', 'this', 'guy', 'think', 'he', 'is', '||questionmark||', '||return||', '||return||', 'keith:', '[mind]', "i'm", 'keith', 'hernandez', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'who', 'else', '||questionmark||', 'mookie', '||period||', 'mookie', 'was', 'there', '||period||', 'do', 'you', 'know', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'him', '||period||', 'i', 'know', 'who', 'he', 'is', '||period||', '||return||', '||return||', 'elaine:', 'hum', '||comma||', "he's", 'such', 'a', 'great', 'guy', '||period||', 'you', 'should', 'meet', 'him', '||period||', 'you', 'know', "he's", 'the', 'one', 'who', 'got', 'that', 'hit', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'he', 'got', 'the', 'hit', 'in', 'game', 'six', '||period||', 'so', '||comma||', 'so', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', "nuthin'", '||period||', 'then', 'he', 'took', 'me', 'home', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'did', 'you', 'two', '||comma||', 'uh', '||comma||', 'have', 'uh', '||comma||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||return||', '||return||', 'elaine:', 'milk', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', '||return||', '||return||', 'elaine:', 'cookies', '||questionmark||', '||return||', '||return||', 'jerry:', 'did', 'he', 'kiss', 'you', 'good', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dunno', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'he', 'kissed', 'me', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'kind', 'of', 'a', 'kiss', '||questionmark||', 'was', 'it', 'a', 'peck', '||questionmark||', 'was', 'it', 'a', 'kiss', '||questionmark||', 'was', 'it', 'a', 'long', 'make', 'out', 'thing', '||questionmark||', '||return||', '||return||', 'elaine:', 'between', 'a', 'peck', 'and', 'a', 'make', 'out', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'like', 'him', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'understand', '||period||', 'before', 'you', 'were', 'jealous', 'of', 'me', '||period||', 'now', "you're", 'jealous', 'of', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "i'm", 'jealous', 'of', 'everybody', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'oh', '||comma||', 'hi', '||period||', "what's", 'happening', '||questionmark||', 'what', '||questionmark||', 'oh', 'um', '||comma||', 'sure', '||comma||', 'um', '||comma||', 'yeah', '||comma||', 'okay', '||comma||', 'uh', '||period||', "i'll", 'see', 'you', 'then', '||period||', 'yeah', '||comma||', 'yeah', '||comma||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'who', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'was', 'keith', '||period||', '||return||', '||return||', 'elaine:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'wants', 'me', 'to', 'help', 'him', 'move', '||period||', '||return||', '||return||', 'elaine:', 'help', 'him', 'move', '||questionmark||', 'move', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'furniture', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', 'yes', '||comma||', 'but', 'i', "don't", 'feel', 'right', 'about', 'it', '||period||', 'i', 'mean', 'i', 'hardly', 'know', 'the', 'guy', '||period||', "that's", 'a', 'big', 'step', 'oin', 'a', 'relationship', '||period||', 'the', 'biggest', '||period||', "that's", 'like', 'going', 'all', 'the', 'way', '||period||', '||return||', '||return||', 'elaine:', 'and', 'you', 'feel', "you're", 'not', 'really', 'ready', 'for', '||comma||', '||return||', '||return||', 'jerry:', 'well', 'we', 'went', 'out', 'one', 'time', '||period||', "don't", 'you', 'think', "that's", 'coming', 'on', 'a', 'little', 'too', 'strong', '||questionmark||', '||return||', '||return||', 'kramer:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'keith', 'hernandez', 'just', 'asked', 'me', 'to', 'help', 'him', 'move', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'well', '||comma||', 'you', 'hardly', 'know', 'the', 'guy', '||period||', 'what', 'a', 'nerve', '||period||', 'you', 'see', "wasn't", 'i', 'right', 'about', 'this', 'guy', '||questionmark||', "didn't", 'i', 'tell', 'you', '||questionmark||', 'now', '||comma||', "you're", 'not', 'going', 'to', 'do', 'it', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', 'yes', '||period||', '||return||', '||return||', 'kramer:', 'you', 'said', 'yes', '||exclammark||', '||questionmark||', "don't", 'you', 'have', 'any', 'pride', 'or', 'self', 'respect', '||questionmark||', 'i', 'mean', '||comma||', 'how', 'can', 'you', 'prostitute', 'yourself', 'like', 'this', '||questionmark||', 'i', 'mean', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', "you're", 'going', 'to', 'start', 'driving', 'him', 'to', 'the', 'airport', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'driving', 'him', 'to', 'the', 'airport', '||exclammark||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', '||return||', '||return||', 'jerry:', 'hey', 'kramer', 'do', 'me', 'a', 'favour', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'mention', 'it', 'to', 'anybody', '||period||', '||return||', '||return||', 'kramer:', 'i', 'wish', 'you', 'never', 'mentioned', 'it', 'to', 'me', '||period||', '[exits]', '||return||', '||return||', 'george:', 'i', 'had', 'a', 'great', 'time', 'tonight', 'carrie', '||period||', 'and', 'i', 'am', 'going', 'to', 'call', 'you', 'as', 'soon', 'as', 'i', 'get', 'home', '||period||', '||return||', '||return||', 'carrie:', "don't", 'bottha', '||return||', '||return||', 'george:', 'bother', '||comma||', "wa'", '||comma||', 'what', 'kind', 'of', 'bother', '||questionmark||', '||return||', '||return||', 'carrie:', 'i', 'would', "prefa'", 'it', 'if', "ya'", "didn'", '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'is', 'there', 'anything', 'wrong', '||questionmark||', '||return||', '||return||', 'carrie:', "it's", 'over', 'buddy', '||period||', 'done', '||period||', 'finished', '||period||', 'so', 'long', '||period||', 'good', 'bye', '||period||', 'adios', '||period||', 'sayanara', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'carrie:', 'i', 'bin', 'thinkin', 'about', 'it', '||period||', 'you', 'got', 'no', 'job', '||period||', 'you', 'got', 'no', 'prospects', '||period||', "you're", 'like', 'biff', 'loman', '||period||', '||return||', '||return||', 'george:', 'i', 'went', 'to', 'the', 'hardware', 'store', 'interview', '||period||', '||return||', '||return||', 'carrie:', 'you', 'think', "i'm", 'going', 'to', 'spend', 'my', 'life', 'with', 'somebody', 'because', 'he', 'can', 'get', 'me', 'a', 'deal', 'on', 'a', 'box', 'of', 'nails', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'thought', 'were', 'a', 'team', '||period||', '||return||', '||return||', 'carrie:', 'if', 'i', 'ever', 'need', 'a', 'drill', 'bit', "i'll", 'call', 'you', '||period||', '||leftparen||', 'exits', 'car', '||rightparen||', '||return||', '||return||', 'george:', 'carrie', '||comma||', 'could', 'you', 'do', 'me', 'a', 'favour', '||questionmark||', 'could', 'you', 'not', 'mention', 'this', 'to', 'your', 'mother', '||questionmark||', '||return||', '||return||', 'kramer:', 'ya', 'know', 'i', 'hate', 'to', 'brag', 'but', '||comma||', 'uh', '||comma||', 'i', 'did', 'win', 'eleven', 'straight', 'golden', 'gloves', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', "wouldn't", 'have', 'brought', 'it', 'up', 'but', 'since', 'you', 'mentioned', 'it', '||period||', '||return||', '||return||', 'elaine:', 'ha', '||comma||', 'i', "didn't", 'mention', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'won', 'them', 'anyway', '||period||', '||return||', '||return||', 'elaine:', 'well', 'so', 'what', '||period||', 'i', 'mean', 'you', 'played', 'first', 'base', '||period||', 'i', 'mean', 'they', 'always', 'put', 'the', 'worst', 'player', 'on', 'first', 'base', '||period||', "that's", 'were', 'they', 'put', 'me', 'and', 'i', 'stunk', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||period||', 'you', "don't", 'know', 'the', 'first', 'thing', 'about', 'first', 'base', '||period||', '||return||', '||return||', 'elaine:', 'ha', 'ha', 'well', 'i', 'know', 'something', 'about', 'getting', 'to', 'first', 'base', '||period||', 'and', 'i', 'know', "you'll", 'never', 'be', 'there', '||period||', '||return||', '||return||', 'kramer:', 'the', 'way', 'i', 'figure', 'it', "i've", 'already', 'been', 'there', 'and', 'i', 'plan', 'on', 'rounding', 'second', 'tonight', 'at', 'around', 'eleven', "o'clock", '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'uh', '||comma||', "i'd", 'watch', 'the', 'third', 'base', 'coach', 'if', 'i', 'were', 'you', "'cause", 'i', "don't", 'think', "he's", 'waving', 'you', 'in', '||period||', 'you', 'know', 'i', 'hate', 'to', 'say', 'this', 'but', 'i', 'think', "we're", 'really', 'hitting', 'it', 'off', '||period||', 'get', 'it', '||questionmark||', 'get', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'smoke', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'know', 'you', 'smoked', '||period||', '||return||', '||return||', 'kramer:', 'is', 'that', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', '||return||', '||return||', 'jerry:', 'she', 'likes', 'him', 'i', 'mean', 'she', 'really', 'likes', 'him', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'kn', 'ow', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', "wouldn't", 'like', 'him', '||questionmark||', 'i', 'like', 'him', '||period||', 'and', "i'm", 'a', 'guy', '||period||', '||return||', '||return||', 'george:', 'i', 'suppose', "he's", 'an', 'attractive', 'man', '||comma||', 'i', '||comma||', '||return||', '||return||', 'jerry:', 'forget', 'that', '||period||', "he's", 'a', 'ball', 'player', '||period||', 'mvp<', '1979', '||period||', "i'm", 'making', 'wise', 'cracks', 'in', 'some', 'night', 'club', '||period||', 'this', 'guy', 'was', 'in', 'game', 'six', '||period||', "they're", 'a', 'perfect', 'match', '||period||', 'they', 'like', 'go', 'together', '||period||', "they're", 'like', 'one', 'of', 'these', 'brother', 'and', 'sister', 'couples', 'that', 'look', 'alike', '||period||', '||return||', '||return||', 'george:', 'hate', 'those', 'couples', '||period||', 'i', 'could', 'never', 'bee', 'one', 'of', 'those', 'couples', '||period||', 'there', 'are', 'no', 'bald', 'woman', 'around', '||period||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'know', 'this', 'sounds', 'a', 'little', 'arrogant', 'but', 'i', 'never', 'thought', 'she', 'would', 'find', 'anyone', 'she', 'would', 'like', 'better', 'than', 'me', '||period||', 'ya', 'know', '||comma||', 'i', 'guess', 'i', 'had', 'my', 'chance', 'and', "that's", 'that', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'i', 'would', 'like', 'to', 'do', '||questionmark||', 'i', 'would', 'really', 'like', 'to', 'have', 'sex', 'with', 'a', 'tall', 'woman', '||period||', 'i', 'mean', 'really', 'tall', '||period||', 'like', 'a', 'like', 'a', 'giant', 'like', 'six', 'five', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'was', 'the', 'tallest', 'woman', 'you', 'ever', 'slept', 'with', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'six', 'three', '||period||', '||return||', '||return||', 'george:', 'wow', '||comma||', 'god', '||exclammark||', 'you', 'see', 'this', 'is', 'all', 'i', 'think', 'about', '||period||', 'sleeping', 'with', 'a', 'giant', '||period||', "it's", 'my', "life's", 'ambition', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'guess', "it's", 'fair', 'to', 'say', "you've", 'set', 'different', 'goals', 'for', 'yourself', 'than', 'say', '||comma||', 'thomas', 'edison', '||comma||', 'magellan', '||comma||', 'these', 'types', 'of', 'people', '||period||', '||return||', '||return||', 'george:', 'magellan', '||questionmark||', 'you', 'like', 'magellan', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||comma||', '||period||', 'my', 'favourite', 'explorer', '||period||', 'around', 'the', 'world', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'who', 'do', 'you', 'like', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'like', 'desoto', '||period||', '||return||', '||return||', 'jerry:', 'desoto', '||questionmark||', 'what', 'did', 'he', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'discovered', 'the', 'mississippi', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'like', 'they', "wouldn't", 'have', 'found', 'that', 'anyway', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "i've", 'got', 'to', 'go', 'down', 'to', 'the', 'unemployment', 'office', '||period||', 'wanna', 'take', 'a', 'walk', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "can't", "i've", 'got', 'some', 'stuff', 'to', 'do', 'then', "i've", 'got', 'to', 'meet', 'keith', 'at', 'my', 'apartment', 'at', 'three', '||period||', "i'm", 'helping', 'him', 'move', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'the', 'guy', 'asked', 'you', 'to', 'help', 'him', 'move', '||questionmark||', 'wow', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', "isn't", 'that', 'something', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'got', 'money', '||period||', 'why', "doesn't", 'he', 'just', 'pay', 'a', 'mover', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', "he's", 'got', 'some', 'valuable', 'antiques', '||comma||', "he's", 'worried', "they'll", 'break', 'something', '||period||', '||return||', '||return||', 'george:', 'the', 'next', 'thing', 'you', 'know', '||comma||', "he'll", 'have', 'you', 'driving', 'him', 'to', 'the', 'airport', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'driving', 'him', 'to', 'the', 'airport', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'gave', '||period||', 'i', 'gave', 'everything', 'i', 'could', 'mrs', '||period||', 'sokol', '||period||', 'but', 'nothing', 'was', 'good', 'enough', 'for', 'her', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'sign', 'here', 'please', '||period||', '||return||', '||return||', 'george:', 'ha', '||comma||', 'i', "don't", 'know', 'who', "she's", 'looking', 'for', '||period||', 'i', "don't", 'know', '||period||', "i'll", 'tell', 'you', 'something', '||period||', "she's", 'very', 'particular', '||comma||', 'your', 'daughter', '||period||', 'very', 'particular', '||period||', 'what', 'is', 'she', 'looking', 'for', 'some', 'big', 'hot', 'shot', 'businessman', '||questionmark||', 'well', "i've", 'got', 'my', 'pride', 'too', '||period||', "i'm", 'not', 'going', 'to', 'beg', 'her', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'all', 'right', 'just', 'sign', 'it', '||period||', 'people', 'are', 'waiting', '||period||', '||return||', '||return||', 'george:', 'you', '||comma||', 'uh', '||comma||', 'you', 'like', 'baseball', '||questionmark||', '[picks', 'up', 'baseball', 'from', 'desk]', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'that', 'was', 'autographed', 'by', 'the', "'86", 'mets', '||period||', 'i', 'saw', 'every', 'inning', 'that', 'year', '||period||', '||return||', '||return||', 'george:', 'funny', '||comma||', 'cause', 'i', 'happen', 'to', 'be', 'very', 'good', 'friends', 'with', 'keith', 'hernandez', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'you', 'know', 'keith', 'hernandez', '||period||', '||return||', '||return||', 'george:', 'know', 'him', '||questionmark||', 'would', 'you', '||comma||', 'uh', '||comma||', 'like', 'to', 'meet', 'him', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'oh', '||comma||', 'come', 'on', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'i', 'can', 'produce', 'keith', 'hernandez', 'right', 'here', 'within', 'the', 'hour', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sokol:', 'all', 'right', '||period||', 'you', 'got', 'one', 'hour', '||period||', '||return||', '||return||', 'george:', 'all', 'right', 'mrs', '||period||', 's', '||period||', 'i', 'and', 'my', 'good', 'pal', 'keith', 'hernandez', 'will', 'be', 'right', 'back', '||period||', '||return||', '||return||', 'george:', '129', 'west', '81st', 'street', 'and', 'hurry', '||period||', '||return||', '||return||', 'george:', 'goodbye', '||leftparen||', 'exits', 'cab', '||rightparen||', '||return||', '||return||', 'keith:', 'better', 'bring', 'your', 'gloves', '||comma||', "it's", 'freezing', 'out', 'there', '||period||', 'it', "shouldn't", 'take', 'too', 'long', '||period||', "i'd", 'say', 'maybe', '||comma||', 'oh', '||comma||', 'four', 'hours', '||period||', 'really', 'though', '||comma||', 'jerry', '||comma||', "there's", 'not', 'that', 'much', '||period||', 'first', 'we', 'got', 'the', 'bedroom', '||comma||', 'we', 'got', 'two', 'dressers', 'and', 'the', 'bed', '||period||', '||return||', '||return||', 'jerry:', 'is', 'there', 'a', 'box', 'spring', '||questionmark||', '||return||', '||return||', 'keith:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'there', 'a', 'box', 'spring', '||questionmark||', '||return||', '||return||', 'keith:', 'yeah', "there's", 'a', 'box', 'spring', 'but', "it's", 'attached', 'to', 'the', 'headboard', 'and', "we'll", 'have', 'to', 'take', 'that', 'apart', '||period||', 'then', 'we', 'got', 'the', 'couch', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'a', 'sectional', '||questionmark||', '||return||', '||return||', 'keith:', 'yeah', '||period||', 'twelve', 'pieces', '||period||', '<not', 'clear>', 'coffee', 'table', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'a', 'thick', 'marble', '||questionmark||', '||return||', '||return||', 'keith:', 'three', 'inches', 'thick', '||period||', 'got', 'it', 'in', 'italy', '||period||', 'but', 'the', 'big', 'problem', 'is', 'going', 'to', 'be', 'the', 'convertible', 'sofa', '||period||', 'you', 'see', 'when', 'you', 'move', 'it', 'it', 'tends', 'to', 'open', 'up', 'so', "it's", 'going', 'to', 'be', 'real', 'difficult', 'getting', 'it', 'down', 'the', 'stairs', '||period||', '||return||', '||return||', 'jerry:', 'stairs', '||questionmark||', '||questionmark||', '||questionmark||', "there's", 'no', 'elevator', '||questionmark||', '||return||', '||return||', 'keith:', 'nah', '||comma||', "it's", 'a', 'brownstone', '||period||', 'three', 'floors', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', 'i', "can't", 'do', 'this', '||period||', 'i', "can't", 'do', 'it', '||period||', 'i', "can't", '||period||', 'it', '||comma||', "it's", 'too', 'soon', '||period||', 'i', "don't", 'know', 'you', '||period||', 'i', "can't", 'help', 'you', 'move', '||period||', "i'm", 'sorry', '||period||', 'i', "can't", '||period||', 'i', 'just', "can't", '||period||', '||return||', '||return||', 'kramer:', 'hello', '||period||', '||return||', '||return||', 'keith:', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', "don't", 'remember', 'me', '||period||', '||return||', '||return||', 'keith:', 'no', 'should', 'i', '[continuity', 'error', 'in', 'fact', 'he', 'should', 'from', 'the', 'basketball', 'game]', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'should', '||period||', 'i', 'certainly', 'remember', 'you', '||period||', 'let', 'me', 'refresh', 'your', 'memory', '||period||', '||return||', '||return||', 'newman:', 'june', '14th', '||comma||', '1987', '||period||', 'mets', 'phillies', '||period||', 'you', 'made', 'a', 'big', 'error', '||period||', 'cost', 'the', 'mets', 'the', 'game', '||period||', 'then', "you're", 'coming', 'up', 'the', 'parking', 'lot', 'ramp', '||period||', '||return||', '||return||', 'keith:', 'you', 'said', '||comma||', '||quotemark||', 'nice', 'game', '||comma||', 'pretty', 'boy', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'you', 'remember', '||period||', '||return||', '||return||', 'newman:', 'and', 'then', 'you', 'spit', 'on', 'us', '||period||', '||return||', '||return||', 'keith:', 'hey', '||comma||', 'i', "didn't", 'spit', 'at', 'you', '||period||', '||return||', '||return||', 'newman:', 'oh', '||comma||', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||comma||', 'well', '||comma||', 'then', 'who', 'was', 'it', '||questionmark||', '||return||', '||return||', 'keith:', 'well', 'lookit', '||comma||', 'the', 'way', 'i', 'remember', 'it', '||leftparen||', 'back', 'to', 'the', 'grainy', '8mm', 'film', 'parody', '||rightparen||', 'i', 'was', 'walking', 'up', 'the', 'ramp', '||period||', 'i', 'was', 'upset', 'about', 'the', 'game', '||period||', "that's", 'when', 'you', 'called', 'me', 'pretty', 'boy', '||period||', 'it', 'ticked', 'me', 'off', '||period||', 'i', 'started', 'to', 'turn', 'around', 'to', 'say', 'something', 'and', 'as', 'i', 'turned', 'around', 'i', 'saw', 'roger', 'mcdowell', 'behind', 'the', 'bushes', 'over', 'by', 'that', 'gravely', 'road', '||period||', 'anyway', 'he', 'was', 'talking', 'to', 'someone', 'and', 'they', 'were', 'talking', 'to', 'you', '||period||', 'i', 'tried', 'to', 'scream', 'out', 'but', 'it', 'was', 'too', 'late', '||period||', 'it', 'was', 'already', 'on', 'its', 'way', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', '||exclammark||', '||return||', '||return||', 'newman:', 'wow', '||comma||', 'it', 'was', 'mcdowell', '||period||', '||return||', '||return||', 'jerry:', 'but', 'why', '||questionmark||', 'why', 'mcdowell', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', 'because', 'we', 'were', 'sitting', 'in', 'the', 'right', 'field', 'stands', 'cursing', 'at', 'him', 'in', 'the', 'bullpen', 'all', 'game', '||period||', '||return||', '||return||', 'newman:', 'he', 'must', 'have', 'caught', 'a', 'glimpse', 'of', 'us', 'when', 'i', 'poured', 'that', 'beer', 'on', 'his', 'head', '||period||', '||return||', '||return||', 'newman:', 'it', 'was', 'mcdowell', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'boy', '||period||', 'uh', '||comma||', 'look', 'uh', '||comma||', 'keith', '||comma||', 'uh', '||comma||', "we're", 'sorry', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'i', "couldn't", 'be', 'sorrier', '||period||', 'i', 'uh', '||period||', '||return||', '||return||', 'keith:', 'look', 'guys', '||comma||', "don't", 'worry', 'about', 'it', '||comma||', 'i', 'uh', '||comma||', 'well', 'i', 'guess', 'i', 'better', 'get', 'going', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'uh', 'what', 'are', "ya'", 'doing', '||questionmark||', '||return||', '||return||', 'keith:', 'i', 'gotta', 'move', '||period||', '||return||', '||return||', 'kramer:', 'want', 'any', 'help', '||questionmark||', '||return||', '||return||', 'keith:', "i'd", 'love', 'some', '||period||', '||return||', '||return||', 'kramer:', "i'd", 'love', 'to', 'help', 'you', 'move', '||period||', '||return||', '||return||', 'newman:', 'me', 'too', '||period||', '||return||', '||return||', 'keith:', 'ok', 'guys', '||comma||', 'we', 'gotta', 'be', 'careful', 'of', 'one', 'thing', '||period||', 'some', 'of', 'the', "stuff's", 'very', 'fragile', "we're", 'going', 'to', 'have', 'to', 'handle', 'it', 'like', 'a', 'baby', '||period||', '||return||', '||return||', 'kramer:', 'no', 'sweat', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'oh', 'hi', 'elaine', '||period||', '||period||', "what's", 'going', 'on', 'no', 'he', 'just', 'left', 'you', 'broke', 'up', 'with', 'him', '||questionmark||', 'me', 'too', '||period||', '||period||', 'what', 'happened', '||questionmark||', 'oh', 'smoking', 'you', 'know', "you're", 'like', 'going', 'out', 'with', 'c', '||period||', 'everet', 'coope', 'me', 'nah', 'i', "couldn't", 'go', 'through', 'with', 'it', 'i', 'just', "didn't", 'feel', 'ready', 'so', 'what', 'are', 'you', 'doing', 'now', '||questionmark||', 'oh', '||comma||', 'great', 'idea', '||comma||', "i'll", 'meet', 'you', 'there', 'in', 'like', 'thirty', 'minutes', '||period||', 'okay', 'bye', '||period||', '||return||', '||return||', 'george:', 'keith', '||comma||', 'keith', 'wa', 'what', 'happened', '||questionmark||', "where's", 'keith', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'just', 'missed', 'him', '||period||', 'he', 'just', 'left', '||period||', 'what', 'do', 'you', 'need', 'him', 'for', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'out', 'the', 'window', '||rightparen||', 'keith', '||comma||', 'keith', '||comma||', 'up', 'here', '||period||', 'can', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', 'i', 'need', 'you', 'to', 'go', 'to', 'the', 'unemployment', 'office', 'with', 'me', '||period||', 'i', '||comma||', "i'm", "jerry's", 'friend', 'the', 'guy', 'from', 'the', 'locker', 'room', '||comma||', "i'm", 'the', 'chucker', '||period||', "it'll", 'take', 'five', 'minutes', '||period||', 'wait', '||period||', 'wait', '||period||', '||return||', '||return||', 'jerry:', 'well', 'biff/', "what's", 'next', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'tall', 'girl:', 'excuse', 'me', '||period||', 'i', 'was', 'walking', 'behind', 'you', 'and', 'you', 'dropped', 'your', 'wallet', '||period||', '||return||', '||return||', 'george:', "it's", 'all', 'departures', '||period||', 'i', 'see', 'nothing', 'but', 'departures', '||period||', '||leftparen||', 'to', 'the', 'woman', 'beside', 'him', '||rightparen||', 'do', 'you', 'know', 'where', 'the', 'arrivals', 'are', '||questionmark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'sir', '||comma||', 'do', 'you', 'have', 'the', 'time', '||questionmark||', '||return||', '||return||', 'man:', "there's", 'a', 'clock', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'where', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'pointing', '||rightparen||', 'there', '||period||', '||return||', '||return||', 'george:', 'but', 'you', 'have', 'a', 'watch', 'on', '||period||', '||return||', '||return||', 'man:', "it's", 'right', 'by', 'the', 'escalator', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'just', 'look', 'at', 'your', 'watch', '||questionmark||', '||return||', '||return||', 'man:', 'i', 'told', 'you', '||comma||', "it's", 'right', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'see', 'the', 'watch', '||period||', '||return||', '||return||', 'man:', 'hey', '||exclammark||', 'what', 'are', 'you', '||comma||', 'some', 'kind', 'of', 'nut', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'know', "we're", 'living', 'in', 'a', 'society', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||return||', '||return||', 'george:', 'jerry', '||period||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'sorry', '||comma||', 'the', 'flight', 'was', 'delayed', '||comma||', 'how', "long've", 'you', 'been', 'waiting', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', 'got', 'here', '||period||', 'my', 'car', 'broke', 'down', 'on', 'the', 'belt', 'parkway', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'i', "can't", 'believe', '||dash||', '||dash||', 'why', "don't", 'you', 'get', 'rid', 'of', 'that', 'piece', 'of', 'junk', '||period||', '||return||', '||return||', 'george:', 'one', 'mile', 'from', 'the', 'exit', 'it', 'starts', 'shaking', '||comma||', 'really', 'violently', 'shaking', '||comma||', 'like', "it's", 'having', 'a', 'nervous', 'breakdown', '||period||', 'it', 'completely', 'stopped', 'dead', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'have', 'no', 'car', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'good', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'one', 'thing', '||comma||', 'this', "chauffeur's", 'gonna', 'be', 'waiting', 'a', 'while', '||comma||', "o'brien's", 'not', 'showing', 'up', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'was', 'in', 'chicago', '||comma||', 'the', 'flight', 'was', 'overbooked', '||comma||', "wouldn't", 'let', 'him', 'on', 'the', 'plane', '||period||', 'he', 'kept', 'screaming', 'how', 'he', 'had', 'to', 'get', 'to', 'madison', 'square', 'garden', '||period||', '||return||', '||return||', 'george:', 'we', 'should', 'take', 'his', 'limo', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||period||', 'think', 'about', 'it', '||period||', "he's", 'not', 'showing', 'up', '||period||', 'wait', 'till', 'you', 'see', 'the', 'line', 'of', 'cabs', '||comma||', 'its', 'like', 'forty', '||dash||', 'five', 'minutes', 'long', '||period||', 'you', 'said', "he's", 'in', 'chicago', '||period||', '||return||', '||return||', 'jerry:', "he's", 'definitely', 'in', 'chicago', '||period||', '||return||', '||return||', 'george:', 'well', 'the', "guy's", 'just', 'standing', 'there', '||period||', '||return||', '||return||', 'jerry:', 'how', 'would', 'we', 'do', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'just', 'go', 'up', 'to', 'him', '||comma||', 'we', 'say', '||comma||', '||quotemark||', "we're", "o'brien", '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'maybe', 'he', 'knows', "o'brien", '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'he', "doesn't", 'know', "o'brien", '||comma||', 'if', 'he', 'knew', "o'brien", 'he', "wouldn't", 'have', 'a', 'sign', '||period||', "let's", 'just', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'we', 'get', 'caught', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'gonna', 'happen', '||questionmark||', 'they', "can't", 'kill', 'us', '||period||', '||return||', '||return||', 'jerry:', "who's", 'gonna', 'be', "o'brien", '||questionmark||', '||return||', '||return||', 'george:', "i'll", 'be', "o'brien", '||period||', '||return||', '||return||', 'jerry:', 'who', 'am', 'i', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'you', '||period||', '||return||', '||return||', 'jerry:', 'just', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "don't", 'want', 'to', 'be', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'if', "you're", 'gonna', 'be', "o'brien", '||comma||', 'why', "can't", 'i', 'be', 'somebody', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'dylan', 'murphy', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'now', 'you', 'wanna', 'be', 'dylan', 'murphy', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'like', 'dylan', '||period||', '||return||', '||return||', 'jerry:', 'you', 'could', 'be', 'colin', '||period||', '||return||', '||return||', 'george:', 'colin', "o'brien", '||period||', '||return||', '||return||', 'jerry:', "i'm", 'dylan', 'murphy', '||period||', '||return||', '||return||', 'george:', "i'm", 'colin', "o'brien", '||period||', '||return||', '||return||', 'george:', 'are', 'we', 'really', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', '||return||', '||return||', 'man:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', '||comma||', 'do', 'you', 'have', 'the', 'time', '||questionmark||', '||return||', '||return||', 'george:', 'clock', 'over', 'there', '||period||', '||leftparen||', 'to', 'chauffer', '||rightparen||', "o'brien", '||period||', '||return||', '||return||', 'chauffeur:', 'yes', 'sir', '||period||', '||return||', '||return||', 'george:', 'sorry', "we're", 'late', '||period||', '||return||', '||return||', 'chauffeur:', 'here', 'let', 'me', 'take', 'that', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'oh', 'thank', 'you', '||period||', '||return||', '||return||', 'chauffeur:', "i'll", 'get', 'the', 'car', 'and', "i'll", 'bring', 'it', 'around', 'front', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', 'very', 'much', '||period||', 'dylan', '||questionmark||', '||return||', '||return||', 'jerry:', 'colin', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'incredible', '||exclammark||', 'this', 'is', 'one', 'of', 'the', 'greatest', 'things', "i've", 'ever', 'done', 'in', 'my', 'life', '||exclammark||', "i'm", 'gonna', 'call', 'my', 'mother', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dunno', '||comma||', "i'm", 'in', 'a', 'limo', '||period||', '||leftparen||', 'dials', '||rightparen||', 'hello', 'ma', '||questionmark||', "it's", 'me', '||period||', 'guess', 'where', 'i', 'am', '||period||', 'in', 'the', 'back', 'of', 'a', 'limo', '||period||', 'no', '||comma||', 'nobody', 'died', '||period||', "it's", 'a', 'long', 'story', '||comma||', 'i', "can't", 'tell', 'you', 'now', '||period||', 'because', 'i', "can't", '||period||', 'i', 'said', 'i', "can't", '||period||', 'if', 'i', 'could', '||comma||', 'i', 'would', '||period||', 'would', 'you', 'stop', 'it', '||questionmark||', 'alright', '||comma||', 'look', '||comma||', "i'm", 'getting', 'off', '||period||', 'no', '||comma||', "i'm", 'not', 'telling', 'you', '||exclammark||', "how's", 'this', '||questionmark||', "i'm", '*never*', 'telling', 'you', '||exclammark||', 'i', "don't", 'care', '||exclammark||', 'no', '||exclammark||', 'fine', '||exclammark||', 'never', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'happy', 'for', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'can', 'he', 'hear', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'thought', 'i', 'saw', 'him', 'look', 'in', 'the', 'mirror', 'suspiciously', '||period||', '||return||', '||return||', 'jerry:', 'he', "can't", 'hear', 'us', '||period||', '||return||', '||return||', 'george:', "let's", 'test', 'him', '||period||', 'hey', '||comma||', 'driver', '||period||', 'what', 'do', 'you', 'say', 'we', 'stop', 'off', '||comma||', 'pick', 'up', 'your', 'sister', '||comma||', 'have', 'a', 'little', 'fun', 'back', 'here', '||questionmark||', 'no', '||comma||', 'he', "can't", 'hear', 'us', '||period||', '||return||', '||return||', 'jerry:', "where's", 'he', 'dropping', 'us', '||questionmark||', 'maybe', 'we', 'can', 'get', 'him', 'to', 'drop', 'us', 'right', 'at', 'my', 'house', '||questionmark||', '||return||', '||return||', 'george:', "we'll", 'ask', 'him', '||period||', '||leftparen||', 'opens', 'partition', '||rightparen||', 'my', 'dear', 'fellow', '||comma||', 'where', 'are', 'you', 'dropping', 'us', '||questionmark||', '||return||', '||return||', 'chauffeur:', 'madison', 'square', 'garden', '||comma||', 'of', 'course', '||period||', 'i', 'have', 'the', 'four', 'passes', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||comma||', 'the', 'uh', '||comma||', 'the', 'four', 'passes', '||period||', '||leftparen||', 'closes', 'partition', '||rightparen||', 'four', 'passes', 'to', 'madison', 'square', 'garden', '||questionmark||', 'wait', 'a', 'minute', '||period||', 'wait', 'a', 'minute', '||exclammark||', 'of', 'course', '||exclammark||', 'chicago', '||exclammark||', 'the', 'knicks', 'are', 'playing', 'the', 'bulls', 'tonight', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'are', 'going', 'to', 'the', 'knick', 'game', '||exclammark||', 'michael', 'jordan', '||exclammark||', '||return||', '||return||', 'jerry:', "we're", 'going', 'to', 'the', 'knick', 'game', '||exclammark||', '||return||', '||return||', 'george:', 'did', 'i', 'tell', 'you', '||questionmark||', '||exclammark||', 'did', 'i', 'tell', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'it', '||exclammark||', 'you', 'may', 'have', 'hit', 'with', 'this', 'one', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'see', '||comma||', 'you', 'see', '||questionmark||', 'i', 'see', 'things', 'as', 'they', 'are', 'and', 'i', 'say', '||comma||', "'no", '||exclammark||', "'", 'uh', '||comma||', 'wait', '||comma||', 'you', 'see', 'things', 'as', 'they', 'are', 'not', 'and', 'you', 's', '||dash||', 'wait', '||comma||', 'uh', '||comma||', 'you', 'see', 'things', '||comma||', 'do', 'you', 'see', 'things', 'as', 'they', 'are', '||questionmark||', 'what', 'do', 'you', 'say', 'when', 'you', 'see', 'things', '||questionmark||', '||return||', '||return||', 'jerry:', 'lemme', 'call', 'elaine', 'and', 'kramer', '||period||', '||return||', '||return||', 'george:', 'if', 'i', 'see', 'things', 'as', 'they', 'are', '||comma||', 'i', 'would', 'ask', "'why'", 'or', "'why", 'not', '||questionmark||', "'", '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', "it's", 'me', '||period||', 'what', 'are', 'you', 'doing', 'tonight', '||questionmark||', 'great', '||period||', 'george', 'and', 'i', 'have', 'tickets', '||comma||', 'four', 'free', 'passes', 'to', 'the', 'knicks', '||dash||', 'bulls', 'game', '||comma||', 'madison', 'square', 'garden', '||period||', 'can', 'you', 'go', '||questionmark||', 'great', '||comma||', 'listen', '||comma||', 'call', 'kramer', '||comma||', 'tell', 'him', 'to', 'meet', 'us', 'on', 'the', 'corner', 'at', 'seven', "o'clock", '||period||', 'alright', '||period||', "we're", 'gonna', 'pick', 'you', 'up', 'in', 'a', 'limo', '||period||', "that's", 'right', 'baby', '||dash||', 'doll', '||period||', 'hey', 'listen', '||comma||', 'when', 'we', 'pick', 'you', 'up', '||comma||', "i'm", 'murphy', 'and', 'george', 'is', "o'brien", '||period||', 'i', "can't", 'tell', 'you', 'now', '||comma||', "it's", 'a', 'long', 'story', '||period||', 'i', 'am', 'serious', '||period||', 'okay', '||period||', 'okay', 'bye', '||period||', '||leftparen||', 'opens', 'partition', '||rightparen||', "'scuse", 'me', '||comma||', 'driver', '||comma||', 'we', 'have', 'to', 'make', 'a', 'little', 'stop', 'first', '||period||', '||return||', '||return||', 'chauffeur:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry', 'and', 'george:', 'he', 'knows', '||questionmark||', '||return||', '||return||', 'george:', 'where', 'are', 'we', 'going', '||questionmark||', 'why', 'are', 'we', 'pulling', 'off', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', "it's", 'a', 'shortcut', '||period||', '||return||', '||return||', 'george:', "we're", 'on', 'the', 'grand', 'central', '||comma||', "there's", 'no', 'traffic', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'opens', 'partition', '||rightparen||', "'scuse", 'me', '||comma||', 'driver', '||comma||', 'why', 'are', 'we', 'getting', 'off', 'this', 'exit', '||questionmark||', '||return||', '||return||', 'chauffeur:', 'pick', 'up', 'the', 'other', 'members', 'of', 'your', 'party', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', 'the', 'other', 'members', 'of', 'our', 'party', '||period||', '||leftparen||', 'closes', 'partition', '||rightparen||', 'other', 'members', 'of', 'our', 'party', '||questionmark||', 'what', 'other', 'members', 'of', 'our', 'party', '||questionmark||', 'i', "didn't", 'even', 'know', 'we', 'were', 'in', 'a', 'party', '||period||', 'oh', '||comma||', "i'm", 'telling', 'you', '||comma||', 'the', 'jig', 'is', 'up', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'bad', 'jig', 'to', 'begin', 'with', '||comma||', 'we', 'never', 'should', 'have', 'started', 'this', 'jig', '||period||', '||return||', '||return||', 'george:', 'it', 'was', 'a', 'good', 'jig', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'bad', 'jig', '||comma||', 'a', 'terrible', 'terrible', 'jig', '||period||', 'what', 'are', 'we', 'gonna', 'do', 'now', '||questionmark||', "they're", 'gonna', 'know', "you're", 'not', "o'brien", '||period||', '||return||', '||return||', 'george:', 'there', 'could', 'be', 'more', 'than', 'one', "o'brien", 'on', 'a', 'plane', 'who', 'ordered', 'a', 'limo', '||period||', '||return||', '||return||', 'jerry:', 'first', 'of', 'all', '||comma||', 'you', "don't", 'look', 'like', 'any', "o'brien", '||comma||', 'period', '||period||', '||return||', '||return||', 'george:', 'well', 'you', 'should', 'have', 'been', "o'brien", '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', 'be', 'murphy', 'anymore', '||semicolon||', 'do', 'i', 'still', 'have', 'to', 'be', 'murphy', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'you', 'have', 'to', 'be', 'murphy', '||period||', '||return||', '||return||', 'jerry:', 'it', 'makes', 'no', 'sense', 'now', '||comma||', 'me', 'being', 'murphy', '||period||', '||return||', '||return||', 'george:', "you're", 'murphy', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'seinfeld', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'murphy', '||exclammark||', '||exclammark||', 'look', '||comma||', "let's", 'just', 'jump', 'out', 'of', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', "we're", 'doing', 'sixty', 'miles', 'an', 'hour', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'we', 'jump', 'and', 'roll', '||comma||', 'you', "won't", 'get', 'hurt', '||period||', '||return||', '||return||', 'jerry:', 'who', 'are', 'you', '||comma||', 'mannix', '||questionmark||', '||return||', '||return||', 'george:', "we're", 'slowing', 'down', '||period||', 'are', 'those', 'the', 'people', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', 'put', 'your', 'hands', 'up', 'over', 'your', 'face', '||comma||', 'pretend', "you're", 'sleeping', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'reaches', 'out', 'to', 'jerry', '||rightparen||', 'mr', '||period||', "o'brien", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", '||comma||', 'uh', '||comma||', 'dylan', 'murphy', '||period||', 'mr', '||period||', "o'brien", 'had', 'a', 'long', 'trip', '||comma||', "he's", 'sleeping', '||period||', '||return||', '||return||', 'eva:', '||leftparen||', 'whispering', '||rightparen||', 'oh', '||comma||', 'well', 'i', "don't", 'want', 'to', 'disturb', 'him', '||period||', "we're", 'just', 'rather', 'excited', 'to', 'meet', 'him', 'face', 'to', 'face', '||comma||', 'finally', '||period||', "we're", 'faithful', 'readers', 'of', 'his', 'newsletter', '||period||', '||return||', '||return||', 'jerry:', 'newsletter', '||questionmark||', '||return||', '||return||', 'tim:', 'and', 'of', 'course', '||comma||', 'his', 'great', 'book', '||comma||', '||quotemark||', 'the', 'game', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yes', '||comma||', "he's", 'very', 'proud', 'of', 'his', 'work', 'in', 'the', 'big', 'game', '||period||', 'so', "you've", 'never', 'uh', '||comma||', 'met', 'him', 'before', '||questionmark||', '||return||', '||return||', 'eva:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'never', 'seen', 'a', 'picture', 'of', 'him', '||questionmark||', '||return||', '||return||', 'eva:', 'never', '||period||', '||return||', '||return||', 'jerry:', 'not', 'even', 'on', 'the', 'book', 'jacket', '||questionmark||', '||return||', '||return||', 'eva:', 'there', 'was', 'no', 'picture', 'on', 'the', 'book', 'jacket', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nudging', 'george', '||rightparen||', 'hey', "o'brien", '||comma||', 'wake', 'up', '||comma||', "c'mon", '||comma||', 'we', 'got', 'company', '||period||', 'wake', 'up', '||period||', '||return||', '||return||', 'george:', 'hello', '||period||', "i'm", "o'brien", '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'you', 'took', 'a', 'cab', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'how', 'much', 'do', 'you', 'make', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'telling', 'you', '||period||', '||return||', '||return||', 'kramer:', "c'mon", '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'you', 'how', 'much', 'i', 'make', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', 'how', 'much', 'you', 'make', '||period||', 'i', "don't", 'even', 'know', 'why', "i'm", 'doing', 'this', '||comma||', 'i', "don't", 'even', 'like', 'basketball', '||period||', '||return||', '||return||', 'kramer:', 'you', 'ever', 'seen', 'michael', 'jordan', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'in', 'those', 'commercials', '||period||', '||return||', '||return||', 'kramer:', 'maybe', "you'll", 'see', 'him', 'do', 'one', 'of', 'those', 'three', '||dash||', 'sixty', 'dunks', '||period||', '||return||', '||return||', 'elaine:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'like', 'this', '||comma||', 'here', '||comma||', 'you', 'guard', 'me', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'checking', 'his', 'watch', '||rightparen||', 'i', "don't", 'think', "we're", 'gonna', 'make', 'the', 'tip', 'off', '||period||', '||return||', '||return||', 'tim:', 'you', 'think', "someone's", 'been', 'tipped', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'um', '||comma||', "you've", 'read', '||quotemark||', 'the', 'big', 'game', '||quotemark||', '||comma||', 'have', 'you', '||questionmark||', '||return||', '||return||', 'eva:', '||leftparen||', 'fawning', '||rightparen||', 'yes', "i've", 'read', 'it', 'and', "i've", 'memorized', 'it', '||period||', '||return||', '||return||', 'george:', 'tell', 'me', 'your', 'impressions', '||comma||', 'i', 'would', 'love', 'to', 'hear', 'what', 'a', 'young', 'woman', 'thinks', 'of', '||quotemark||', 'the', 'big', 'game', '||quotemark||', '||period||', '||return||', '||return||', 'eva:', 'well', '||comma||', 'this', 'is', 'sort', 'of', 'embarrassing', '||comma||', 'but', "it's", 'changed', 'my', 'life', '||period||', 'the', 'way', 'you', 'analyzed', 'the', 'game', '||questionmark||', 'the', 'way', 'you', 'identify', 'the', 'major', 'players', '||questionmark||', 'well', 'it', 'left', 'me', 'breathless', '||period||', "you're", 'a', 'brilliant', '||comma||', 'brilliant', 'man', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'just', 'a', 'game', '||period||', 'remember', 'that', '||comma||', 'kids', '||period||', '||return||', '||return||', 'tim:', 'just', 'a', 'game', '||period||', "he's", 'so', 'humble', '||period||', "don't", 'forget', 'what', 'you', 'wrote', 'in', 'the', 'epilogue', '||comma||', 'the', 'fate', 'of', 'the', 'world', 'depends', 'on', 'the', 'outcome', 'of', 'this', 'game', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'was', 'exaggerating', 'a', 'bit', '||comma||', 'just', 'for', 'effect', '||period||', '||return||', '||return||', 'jerry:', 'he', 'tends', 'to', 'exaggerate', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'i', 'mean', "it's", 'serious', 'but', '||dash||', '||dash||', '||return||', '||return||', 'eva:', 'we', 'are', 'really', 'looking', 'forward', 'to', 'your', 'speech', 'tonight', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'my', 'speech', '||questionmark||', '||return||', '||return||', 'eva:', 'yes', '||comma||', 'your', 'secretary', 'faxed', 'me', 'the', 'copy', '||period||', 'would', 'you', 'like', 'to', 'look', 'it', 'over', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'might', 'as', 'well', 'look', 'it', 'over', '||period||', '||return||', '||return||', 'kramer:', 'so', "what's", 'going', 'on', '||comma||', 'how', 'did', 'all', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', 'and', 'george', 'called', 'me', 'from', 'this', 'limo', 'and', 'they', 'said', "we're", 'all', 'going', 'to', 'the', 'knicks', '||dash||', 'bulls', 'game', '||period||', '||return||', '||return||', 'kramer:', 'limo', '||questionmark||', 'i', 'thought', 'that', 'george', 'went', 'to', 'pick', 'him', 'up', '||period||', '||return||', '||return||', 'elaine:', 'he', 'did', '||period||', '||return||', '||return||', 'kramer:', 'well', 'then', 'why', 'would', 'they', 'take', 'a', 'limo', 'from', 'the', 'airport', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', "that's", 'pretty', 'strange', '||period||', 'did', 'he', 'say', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'he', 'said', '||comma||', 'um', '||comma||', 'he', 'said', "it's", 'really', 'important', 'that', 'we', 'call', 'them', "o'brien", 'and', 'murphy', '||period||', '||return||', '||return||', 'kramer:', "o'brien", '||period||', 'why', 'would', 'he', 'want', 'to', 'be', 'called', "o'brien", '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'and', 'the', 'jews', 'steal', 'our', 'money', 'through', 'their', 'zionist', 'occupied', 'government', 'and', 'use', 'the', 'black', 'man', 'to', 'bring', 'drugs', 'into', 'our', 'oppressed', 'white', 'minority', 'communities', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'going', 'to', 'open', 'with', 'that', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'eva:', 'what', 'was', 'that', 'you', 'said', 'about', 'the', 'myth', 'of', 'the', 'holocaust', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'said', 'so', 'many', 'things', '||period||', '||return||', '||return||', 'george:', "they're", 'shooting', '||exclammark||', "they're", 'shooting', '||exclammark||', '||return||', '||return||', 'tim:', '||leftparen||', 'pulling', 'out', 'a', 'gun', '||rightparen||', 'alright', '||comma||', 'get', 'down', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'really', 'very', 'nice', 'of', 'you', '||comma||', 'eva', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'eva:', 'but', 'of', 'course', 'you', 'know', 'i', 'would', '||period||', 'i', 'would', 'do', 'anything', 'for', 'you', '||period||', 'anything', '||period||', '||return||', '||return||', 'tim:', 'nothing', 'to', 'worry', 'about', '||comma||', 'it', 'was', 'just', 'a', 'flat', 'tire', '||period||', 'but', 'rest', 'assured', '||comma||', "we're", 'prepared', 'to', 'handle', 'anything', 'that', 'might', 'come', 'up', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'looking', 'lugar', '||period||', '||return||', '||return||', 'jodi:', "i'm", 'standing', 'in', 'front', 'of', 'the', 'paramount', 'adjacent', 'to', 'madison', 'square', 'garden', 'where', 'a', 'growing', 'number', 'of', 'vociferous', 'and', 'angry', 'demonstrators', 'are', 'gathering', 'to', 'protest', 'the', 'very', 'first', 'public', 'appearance', 'of', 'donald', "o'brien", '||comma||', 'the', 'leader', 'of', 'the', 'midwestern', 'regional', 'chapter', 'of', 'the', 'aryan', 'union', '||comma||', 'and', 'reputed', 'to', 'be', 'their', 'most', 'charismatic', 'spokesman', '||period||', 'the', 'reclusive', 'mr', '||period||', "o'brien", 'is', 'an', 'advocate', 'of', 'the', 'violent', 'overthrow', 'of', 'the', 'government', '||period||', 'he', 'has', 'openly', 'professed', 'a', 'deep', 'admiration', 'of', 'adolf', 'hitler', '||period||', 'even', 'david', 'duke', 'has', 'denounced', 'him', 'as', 'a', 'dangerous', 'extremist', '||period||', 'there', 'is', 'a', 'full', 'house', 'inside', 'awaiting', 'his', 'arrival', 'from', 'the', 'airport', '||period||', 'sources', 'tell', 'me', 'he', 'is', 'in', 'route', 'and', 'should', 'be', 'arriving', 'momentarily', '||period||', 'police', 'have', 'set', 'up', 'barricades', '||comma||', 'but', 'quite', 'frankly', 'bill', 'and', 'jean', '||comma||', 'i', "don't", 'think', "they're", 'any', 'match', 'for', 'the', 'emotional', 'fuse', 'that', 'has', 'been', 'lit', 'here', 'tonight', '||period||', 'reporting', 'from', 'the', 'paramount', '||comma||', "i'm", 'jodi', 'baskerville', '||comma||', 'back', 'to', 'you', 'in', 'the', 'studio', '||period||', '||return||', '||return||', 'kramer:', "something's", 'very', 'strange', '||period||', 'george', 'goes', 'to', 'the', 'airport', 'to', 'pick', 'up', 'jerry', '||period||', 'they', 'come', 'back', 'in', 'a', 'limo', 'with', 'four', 'tickets', 'to', 'the', 'basketball', 'game', 'and', 'wanna', 'be', 'called', "o'brien", 'and', 'murphy', '||questionmark||', "o'brien", '||period||', "o'brien", '||comma||', 'why', "o'brien", '||questionmark||', '||return||', '||return||', 'dan:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'dan', '||exclammark||', 'oh', '||comma||', 'hi', 'dan', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'dan:', 'good', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'oh', '||comma||', 'this', 'is', 'um', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'dan:', 'oh', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'elaine:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'dan:', 'oh', '||comma||', "we're", 'heading', 'down', 'to', 'protest', 'this', 'big', 'neo', '||dash||', 'nazi', 'rally', '||period||', 'the', 'head', 'of', 'the', 'aryan', 'union', 'is', 'speaking', '||comma||', "he's", 'in', 'from', 'chicago', '||period||', 'you', 'should', 'come', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "can't", '||comma||', "i'm", 'going', 'to', 'the', 'knicks', '||dash||', 'bulls', 'game', '||period||', '||return||', '||return||', 'dan:', 'oh', '||comma||', 'well', "that's", 'where', 'the', 'rally', 'is', '||period||', 'the', 'paramount', '||comma||', 'right', 'next', 'door', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'maybe', "we'll", 'run', 'into', 'you', '||period||', '||return||', '||return||', 'dan:', 'yeah', '||comma||', 'yeah', 'ok', '||period||', "it's", 'really', 'gonna', 'be', 'something', '||comma||', 'this', 'is', 'the', 'first', 'time', "he's", 'ever', 'appeared', 'in', 'public', '||comma||', 'no', 'one', 'even', 'knows', 'what', 'he', 'looks', 'like', '||period||', '||return||', '||return||', 'kramer:', 'who', '||questionmark||', '||return||', '||return||', 'dan:', 'the', 'head', 'of', 'the', 'aryan', 'union', '||semicolon||', "o'brien", '||period||', '||return||', '||return||', 'jerry:', "what's", 'taking', 'him', 'so', 'long', 'out', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'didja', 'see', 'the', 'way', 'she', 'was', 'looking', 'at', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'a', 'nazi', '||comma||', 'george', '||period||', 'a', 'nazi', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'kind', 'of', 'a', 'cute', 'nazi', 'though', '||period||', '||return||', '||return||', 'jerry:', 'well', 'we', 'gotta', 'make', 'a', 'plan', 'before', 'they', 'come', 'back', '||comma||', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', "let's", 'just', 'make', 'a', 'run', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'run', '||comma||', 'i', 'have', 'a', 'bad', 'hamstring', '||period||', '||return||', '||return||', 'jerry:', "how'd", 'that', 'happen', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'hurt', 'it', 'in', 'a', 'hotel', 'room', '||period||', 'you', 'know', 'where', 'they', 'tuck', 'the', 'covers', 'in', 'real', 'tight', 'in', 'those', 'hotel', 'rooms', '||questionmark||', 'i', "can't", 'sleep', 'like', 'that', 'so', 'i', 'tried', 'to', 'kick', 'it', 'out', 'and', 'i', 'pulled', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'why', 'do', 'they', 'make', 'that', 'bed', 'so', 'tight', '||questionmark||', 'you', 'gotta', 'sleep', 'with', 'your', 'feet', 'like', 'that', '||period||', '||return||', '||return||', 'george:', 'for', 'a', 'mental', 'patient', '||period||', 'wait', 'a', 'minute', '||comma||', 'the', 'phone', '||comma||', "we'll", 'call', 'the', 'police', '||period||', '||return||', '||return||', 'george:', '9', '||period||', '||period||', '||period||', '1', '||period||', '||period||', '||period||', '1', '||period||', 'she', 'said', "she'd", 'do', 'anything', '||period||', 'hello', '||comma||', 'police', '||questionmark||', 'uh', '||comma||', 'yeah', 'listen', '||comma||', "we're", 'in', 'the', 'back', 'of', 'a', 'limo', 'in', 'queens', '||dash||', '||dash||', '||return||', '||return||', 'george:', '||dash||', '||dash||', 'astroturf', '||questionmark||', 'you', 'know', "who's", 'responsible', 'for', 'that', '||comma||', "don't", 'you', '||questionmark||', '||exclammark||', 'the', 'jews', '||exclammark||', 'ah', '||comma||', 'the', 'jews', 'hate', 'grass', '||period||', 'they', 'always', 'have', '||comma||', 'they', 'always', 'will', '||period||', '||return||', '||return||', 'tim:', "we'll", 'be', 'ready', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'excuse', 'us', 'for', 'a', 'minute', 'tim', 'boy', '||comma||', "we're", 'kind', 'of', 'in', 'the', 'middle', 'of', 'something', '||period||', '||return||', '||return||', 'tim:', 'with', 'all', 'due', 'respect', '||comma||', 'mr', '||period||', "o'brien", '||comma||', "we're", 'just', 'about', 'to', 'leave', '||period||', '||return||', '||return||', 'george:', 'tim', '||comma||', "who's", 'the', 'head', 'of', 'the', 'aryan', 'union', '||comma||', 'you', 'or', 'me', '||questionmark||', '||return||', '||return||', 'tim:', 'you', 'are', '||period||', '||return||', '||return||', 'george:', 'and', "who's", 'responsible', 'for', 'making', 'hate', 'mongering', 'and', 'fascism', 'popular', 'again', '||questionmark||', '||return||', '||return||', 'tim:', 'you', 'are', '||period||', '||return||', '||return||', 'george:', 'good', '||period||', 'i', 'think', 'you', 'forgot', 'something', '||period||', '||return||', '||return||', 'tim:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', 'good', '||period||', 'now', 'get', 'out', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "how's", 'this', '||questionmark||', 'we', 'wait', 'till', 'we', 'get', 'to', 'your', 'street', 'corner', '||comma||', 'we', 'see', 'elaine', 'and', 'kramer', 'then', 'we', 'get', 'out', '||period||', 'they', "can't", 'shoot', 'us', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||period||', 'no', "one's", 'ever', 'been', 'shot', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'telling', 'you', '||comma||', "something's", 'going', 'on', '||period||', 'i', 'can', 'feel', 'it', '||comma||', 'sense', 'it', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sure', 'he', 'was', 'just', 'joking', 'around', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'no', 'no', 'no', '||comma||', 'this', 'is', 'no', 'joke', '||period||', "o'brien's", 'coming', 'in', 'from', 'chicago', '||comma||', "jerry's", 'in', 'a', 'limo', '||comma||', 'says', "he's", "o'brien", '||questionmark||', "that's", 'not', 'funny', '||period||', 'oh', 'my', 'god', '||period||', 'yes', '||period||', 'yes', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "don't", 'you', 'see', '||questionmark||', "there's", 'always', 'been', 'something', 'very', 'strange', 'about', 'jerry', '||comma||', 'always', 'so', 'clean', 'and', 'organized', '||period||', 'do', 'i', 'have', 'to', 'spell', 'it', 'out', 'for', 'you', '||questionmark||', 'the', 'limo', '||questionmark||', 'the', 'name', '||questionmark||', 'the', 'rally', 'at', 'madison', 'square', 'garden', '||questionmark||', 'jerry', '||comma||', "o'brien", 'are', 'the', 'same', 'person', '||period||', 'jerry', 'is', 'the', 'leader', 'of', 'the', 'aryan', 'union', '||exclammark||', '||return||', '||return||', 'elaine:', "jerry's", 'a', 'nazi', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "can't", 'believe', 'i', "didn't", 'see', 'it', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'you', 'idiot', '||exclammark||', 'just', 'calm', 'down', '||exclammark||', 'i', 'know', 'jerry', '||comma||', "he's", 'not', 'a', 'nazi', '||period||', '||return||', '||return||', 'kramer:', 'you', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "he's", 'just', 'neat', '||period||', '||return||', '||return||', 'tim:', 'you', 'know', "it's", 'funny', '||period||', 'you', "don't", 'look', 'like', 'an', "o'brien", '||period||', '||return||', '||return||', 'george:', 'me', '||questionmark||', '||questionmark||', '||return||', '||return||', 'tim:', 'and', 'you', 'really', "don't", 'look', 'like', 'a', 'murphy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'may', 'not', 'look', 'like', 'a', 'murphy', 'but', 'i', 'act', 'like', 'a', 'murphy', '||period||', '||return||', '||return||', 'george:', "he's", 'extremely', 'murphy', '||period||', "he's", 'murphy', 'to', 'a', 'fault', '||period||', '||return||', '||return||', 'tim:', 'where', 'are', 'you', 'from', '||questionmark||', '||return||', '||return||', 'jerry:', 'dublin', '||period||', 'originally', '||period||', 'parents', 'came', 'over', 'here', 'when', 'i', 'was', 'eighteen', '||period||', 'cereal', 'famine', '||period||', "couldn't", 'get', 'a', 'bowl', 'anywhere', '||period||', 'bad', '||period||', "'tis", 'a', 'beautiful', 'country', 'though', '||semicolon||', 'lush', 'rolling', 'hills', '||comma||', 'and', 'the', 'peat', '||comma||', 'ah', 'the', 'peat', '||period||', '||return||', '||return||', 'tim:', 'sounds', 'more', 'like', 'scottish', '||period||', '||return||', '||return||', 'jerry:', 'we', 'were', 'right', 'on', 'the', 'border', '||period||', '||return||', '||return||', 'kramer:', 'maybe', "he's", 'with', 'the', 'company', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'cia', '||exclammark||', 'maybe', 'they', 'placed', 'him', 'in', 'there', 'to', 'infiltrate', 'the', 'organization', 'from', 'within', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'his', 'comedy', 'act', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'the', 'perfect', 'cover', '||exclammark||', 'all', 'that', 'time', 'on', 'the', 'road', '||questionmark||', 'look', 'jerry', '||comma||', "he's", 'too', 'normal', 'to', 'be', 'a', 'comedian', '||period||', 'these', 'comedians', '||comma||', "they're", 'sick', '||comma||', 'neurotic', 'people', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'george', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'about', 'him', '||comma||', "he's", 'part', 'of', 'it', '||period||', 'his', 'whole', 'personality', 'is', 'a', 'disguise', '||period||', 'no', 'real', 'person', 'can', 'act', 'the', 'way', 'he', 'does', '||period||', 'elaine', '||comma||', "i'm", 'telling', 'you', "they're", 'with', 'the', 'organization', '||period||', "they're", 'all', 'part', 'of', 'it', '||period||', "he's", 'in', 'there', 'with', 'helms', 'and', 'hunt', 'and', 'liddy', '||comma||', 'that', 'whole', 'crowd', '||period||', 'george', 'and', 'jerry', '||comma||', 'they', 'probably', 'know', 'who', 'killed', 'kennedy', '||exclammark||', '||return||', '||return||', 'elaine:', "i'll", 'bet', 'they', 'were', 'even', 'in', 'on', 'it', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', "i'm", 'not', 'gonna', 'let', 'him', 'hurt', 'you', '||period||', '||leftparen||', 'grabs', 'and', 'hugs', 'elaine', 'tightly', '||rightparen||', "i'm", 'not', 'gonna', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', "you're", 'hurting', 'me', '||exclammark||', '||return||', '||return||', 'george:', 'those', 'are', 'my', 'friends', 'i', 'was', 'telling', 'you', 'about', '||period||', "we're", 'gonna', 'talk', 'to', 'them', '||comma||', 'pull', 'over', '||period||', '||return||', '||return||', 'elaine:', 'get', 'off', 'of', 'me', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', "o'brien", '||period||', '||return||', '||return||', 'man', '#1:', "o'brien", '||questionmark||', 'is', 'that', 'him', '||questionmark||', '||return||', '||return||', 'man', '#2:', 'yeah', '||comma||', "that's", 'him', '||period||', '||return||', '||return||', 'man', '#3:', 'look', "there's", "o'brien", '||exclammark||', '||return||', '||return||', 'man', '#4:', 'filthy', 'nazi', 'bastard', '||exclammark||', '||return||', '||return||', 'all', 'four', 'men:', "let's", 'get', 'him', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'do', 'i', 'do', '||questionmark||', '||exclammark||', 'what', 'do', 'i', 'do', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'get', 'in', 'the', 'car', '||exclammark||', 'get', 'in', 'the', 'car', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', 'to', 'jerry', '||rightparen||', "o'brien", '||period||', 'long', 'time', 'no', 'see', '||period||', "how's", 'tricks', '||comma||', 'murphy', '||questionmark||', '||return||', '||return||', 'tim:', 'why', 'did', 'you', 'call', 'him', "o'brien", 'and', 'him', 'murphy', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'he', 'was', 'talking', 'to', 'me', '||comma||', "he's", 'cross', '||dash||', 'eyed', '||period||', '||return||', '||return||', 'elaine:', 'it', 'could', 'be', 'very', 'confusing', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||questionmark||', 'eva', '||questionmark||', '||return||', '||return||', 'eva:', "it's", 'for', 'me', '||period||', '||leftparen||', 'takes', 'phone', '||rightparen||', 'hello', '||questionmark||', '||leftparen||', 'cups', 'receiver', '||rightparen||', "it's", "o'brien", '||period||', '||return||', '||return||', 'kramer:', "o'brien", '||questionmark||', 'well', "that's", 'weird', '||period||', '||return||', '||return||', 'eva:', '||leftparen||', 'gun', 'drawn', '||rightparen||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jodi:', 'a', 'limousine', 'has', 'just', 'pulled', 'up', "it's", 'being', 'surrounded', 'by', 'a', 'huge', 'group', 'of', 'protestors', '||comma||', 'this', 'has', 'the', 'makings', 'of', 'a', 'very', 'ugly', 'scene', '||period||', '||return||', '||return||', 'jodi:', 'they', 'are', 'banging', 'on', 'the', 'car', '||comma||', 'trying', 'to', 'flip', 'it', 'over', '||period||', 'the', 'police', 'seem', 'unable', 'or', 'unwilling', 'to', 'control', 'the', 'crowd', '||comma||', 'i', 'would', 'imagine', 'mr', '||period||', "o'brien", 'must', 'be', 'having', 'some', 'very', 'grave', 'doubts', 'if', 'he', 'made', 'the', 'right', 'choice', 'for', 'his', 'first', 'public', 'appearance', '||period||', '||return||', '||return||', 'eva:', 'get', 'out', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'look', '||comma||', "it's", 'dan', '||exclammark||', 'hi', 'dan', '||exclammark||', '||return||', '||return||', 'dan:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'am', 'not', "o'brien", '||exclammark||', 'i', 'am', 'not', "o'brien", '||exclammark||', "i'm", 'not', "o'brien", '||exclammark||', 'ask', 'anyone', '||exclammark||', 'jerry', '||questionmark||', '||exclammark||', 'jerry', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'know', "it's", 'bad', 'enough', 'you', 'have', 'a', 'car', 'phone', '||comma||', 'you', 'have', 'to', 'use', 'the', 'speaker', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'safer', '||exclammark||', 'plus', "it's", 'more', 'annoying', 'to', 'the', 'other', 'person', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'look', 'at', 'this', 'guy', '||period||', '||return||', '||return||', 'elaine:', "what's", "goin'", 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', "there's", 'a', 'guy', 'trying', 'to', 'get', 'in', 'front', 'of', 'me', '||comma||', 'he', 'has', 'to', 'ask', 'permission', '||period||', 'yes', '||period||', 'go', 'ahead', '||period||', 'get', 'in', '||comma||', 'get', 'in', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'get', 'a', 'thank', 'you', 'wave', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'nothing', '||period||', 'how', 'could', 'you', 'not', 'give', 'a', 'thank', 'you', 'wave', '||questionmark||', 'hey', 'buddy', '||exclammark||', "where's", 'my', 'thank', 'you', 'wave', '||questionmark||', '||return||', '||return||', 'jerry:', 'give', 'me', 'that', 'wave', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'are', 'you', 'free', 'on', 'friday', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'free', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'god', '||comma||', 'i', 'bumped', 'into', 'robin', 'sandusky', 'today', '||comma||', 'she', 'asked', 'me', 'to', 'have', 'dinner', 'with', 'her', 'and', 'her', 'husband', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', 'you', "won't", 'believe', 'what', 'i', 'just', 'saw', '||exclammark||', 'a', 'car', 'just', 'bashed', 'into', 'a', 'parked', 'car', '||comma||', 'and', 'sped', 'off', '||comma||', 'right', 'on', 'my', 'block', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'gotta', 'follow', 'that', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "can't", 'let', 'him', 'get', 'away', 'with', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'the', 'guy', 'could', 'be', 'dangerous', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', '||comma||', 'yellow', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'yella', '||period||', '||leftparen||', 'in', 'a', 'cowboy', 'voice', '||rightparen||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'if', 'you', "don't", 'follow', 'him', '||comma||', "you're", 'yella', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'he', 'stopped', '||comma||', "he's", 'parking', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', '||questionmark||', 'i', "can't", 'hear', 'you', '||period||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'uh', '||comma||', 'i', 'was', 'uh', '||comma||', 'driving', 'behind', 'you', '||comma||', 'uh', '||comma||', 'a', 'few', 'blocks', 'back', '||comma||', 'and', 'i', '||comma||', 'i', "couldn't", 'help', '||comma||', 'uh', '||comma||', 'maybe', 'you', "didn't", 'realize', '||comma||', 'uh', '||comma||', 'i', 'witnessed', 'that', '||comma||', 'uh', '||comma||', 'um', '||comma||', "you're", "tire's", 'a', 'little', 'low', '||period||', 'that', 'can', 'affect', 'the', 'performance', 'of', 'the', 'twin', 'high', '||dash||', 'beam', 'suspension', '||comma||', 'not', 'to', 'mention', 'your', 'rack', 'and', 'pinion', 'steering', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'wound', 'up', 'going', 'out', 'for', 'a', 'decaf', 'cappuccino', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'boy', '||exclammark||', 'what', 'a', 'story', '||exclammark||', "i'm", 'speechless', '||period||', 'speechless', '||period||', 'i', 'have', 'no', 'speech', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'really', 'liked', 'her', '||period||', 'we', 'talked', '||period||', 'we', 'flirted', '||period||', 'and', 'when', 'she', 'left', '||comma||', 'she', 'reached', 'out', 'and', 'touched', 'my', 'arm', '||period||', '||return||', '||return||', 'jerry:', 'he', '||comma||', 'he', '||comma||', 'he', '||period||', '||leftparen||', 'simulating', 'her', 'feminine', 'laugh', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'love', 'when', 'they', 'touch', 'your', 'arm', '||period||', 'i', "can't", 'get', 'enough', 'of', 'that', '||period||', 'why', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "let's", 'not', 'even', 'analyze', 'it', '||period||', '||return||', '||return||', 'george:', 'so', 'you', "didn't", 'turn', 'her', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'wanted', 'to', 'but', 'i', "couldn't", 'go', 'through', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'gonna', 'see', 'her', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'friday', 'night', '||period||', '||return||', '||return||', 'jerry:', 'yep', '||period||', '||return||', '||return||', 'elaine:', "it's", 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'jerry:', 'by', 'the', 'way', '||comma||', 'elaine', 'does', 'not', 'need', 'to', 'know', 'about', 'anything', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', 'i', 'dig', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'dig', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'i', 'see', 'enormous', 'potential', 'here', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'great', 'couples', 'always', 'have', 'a', 'great', 'story', 'about', 'how', 'they', 'met', '||period||', "that's", 'why', "i've", 'never', 'been', 'in', 'a', 'long', 'term', 'relationship', '||period||', "i've", 'never', 'had', 'a', 'good', 'meeting', 'story', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wonder', 'if', "i'm", 'nuts', 'for', 'pursuing', 'this', 'woman', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'she', 'slammed', 'into', 'a', 'parked', 'car', '||exclammark||', 'she', 'took', 'no', 'responsibility', 'for', 'mutilating', 'the', 'property', 'of', 'a', 'stranger', '||comma||', 'then', 'she', 'sped', 'off', 'like', 'a', 'criminal', '||exclammark||', '||return||', '||return||', 'jerry:', 'on', 'the', 'other', 'hand', '||comma||', 'does', 'that', 'mean', 'she', 'should', 'never', 'be', 'allowed', 'to', 'date', 'again', '||questionmark||', 'you', 'scratch', 'one', 'car', 'and', "you're", 'forbidden', 'to', 'have', 'social', 'contact', 'for', 'the', 'rest', 'of', 'your', 'life', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'drinking', '||comma||', 'milk', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'sweater', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'with', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'with', 'the', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'car', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'hit', 'and', 'run', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||comma||', 'right', '||comma||', 'right', '||comma||', 'right', '||comma||', 'right', '||comma||', 'right', '||comma||', 'right', '||comma||', 'the', 'hit', 'and', 'run', '||period||', 'well', '||period||', 'actually', '||comma||', 'the', 'guy', 'went', 'into', 'queens', '||period||', '||return||', '||return||', 'elaine:', 'queens', '||questionmark||', '||exclammark||', 'you', 'followed', 'him', 'over', 'the', 'bridge', '||questionmark||', '||return||', '||return||', 'jerry:', 'over', 'the', 'bridge', '||period||', '||leftparen||', 'making', 'a', 'pointing', 'motion', 'with', 'his', 'hand', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', 'i', "didn't", 'know', 'you', 'went', 'into', 'queens', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'queens', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'then', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'he', 'gets', 'out', 'of', 'the', 'car', '||comma||', 'i', 'say', '||comma||', '||quotemark||', 'hey', 'buddy', '||exclammark||', 'i', 'saw', 'you', 'hit', 'that', 'car', '||exclammark||', '||quotemark||', 'so', 'he', 'says', 'to', 'me', '||comma||', '||quotemark||', 'what', 'are', 'ya', 'gonna', 'do', 'about', 'it', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'said', 'to', 'him', '||comma||', '||quotemark||', "whatever's", 'necessary', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'speechless', '||period||', 'i', 'am', 'without', 'speech', '||period||', '||return||', '||return||', 'george:', 'tell', 'her', 'about', 'the', 'shoving', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'shoving', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', 'was', 'nothing', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'tell', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', 'he', 'kinda', 'lost', 'his', 'temper', '||comma||', 'and', 'he', 'was', 'pushing', 'me', 'up', 'against', 'the', 'car', '||period||', 'so', 'i', 'went', 'into', 'a', 'karate', 'stance', '||period||', '||leftparen||', 'jerry', 'assumes', 'karate', 'position', 'and', 'does', 'two', 'punches', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'know', 'karate', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'a', 'little', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', 'is', 'so', '||comma||', 'amazing', 'to', 'me', '||exclammark||', 'jerry', 'what', 'did', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'backed', 'off', '||period||', 'pretty', 'pathetic', 'actually', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||leftparen||', 'group', 'does', 'likewise', '||rightparen||', '||return||', '||return||', 'elaine:', 'did', 'you', 'tell', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'nah', '||exclammark||', '||leftparen||', 'waving', 'his', 'hand', 'and', 'walking', 'away', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'what', '||questionmark||', 'what', '||questionmark||', 'tell', 'me', '||period||', '||return||', '||return||', 'elaine:', 'jerry', 'saw', 'this', 'guy', 'crash', 'into', 'a', 'car', '||comma||', 'and', 'he', 'followed', 'him', '||period||', '||return||', '||return||', 'kramer:', 'good', 'for', 'you', '||exclammark||', 'what', 'kind', 'of', 'a', 'sick', 'lowlife', 'would', 'do', 'a', 'thing', 'like', 'that', '||questionmark||', 'you', 'know', 'those', 'people', '||comma||', 'you', 'know', "they're", 'mentally', 'disturbed', '||period||', '||leftparen||', 'pointing', 'a', 'finger', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'kramer:', 'they', 'should', 'be', 'sent', 'to', 'australia', '||period||', '||return||', '||return||', 'jerry:', 'australia', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', "that's", 'where', 'england', 'used', 'to', 'send', 'their', 'convicts', '||period||', '||return||', '||return||', 'jerry:', 'but', 'not', 'anymore', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'kramer', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'happened', 'to', 'you', 'right', 'here', '||questionmark||', '||leftparen||', 'she', 'pointing', 'to', 'her', 'forehead', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', 'was', 'watching', 'entertainment', 'tonight', '||comma||', 'and', 'uh', '||comma||', 'suddenly', 'i', 'got', 'dizzy', '||period||', 'and', 'the', 'next', 'thing', 'i', 'know', 'i', 'hit', 'my', 'head', 'on', 'the', 'coffee', 'table', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'that', 'is', '||comma||', 'that', 'is', 'strange', '||period||', '||return||', '||return||', 'kramer:', 'yep', '||period||', '||leftparen||', 'mumbles', 'off', '||rightparen||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'oh', 'jerry', '||comma||', "we're", 'still', 'on', 'for', 'friday', 'night', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'friday', '||comma||', 'i', "can't", '||comma||', "i'm", 'sorry', '||comma||', 'i', 'have', 'a', 'date', '||period||', '||return||', '||return||', 'elaine:', 'but', 'last', 'night', 'you', 'said', 'you', 'were', 'free', '||exclammark||', '||leftparen||', 'sounding', 'very', 'disappointed', '||rightparen||', '||return||', '||return||', 'jerry:', 'we', 'just', 'met', '||period||', '||return||', '||return||', 'kramer:', 'maybe', 'it', 'was', 'a', 'reaction', 'to', 'the', 'sardines', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', '||comma||', 'i', "can't", 'go', 'alone', '||exclammark||', '||return||', '||return||', 'jerry:', 'ask', 'george', 'to', 'go', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'come', 'on', '||exclammark||', "i'll", 'pay', 'for', 'you', '||period||', '||return||', '||return||', 'george:', "you'll", 'pay', '||questionmark||', "i'm", 'there', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'you', 'even', 'need', 'anybody', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'i', 'hate', 'being', 'at', 'a', 'table', 'alone', '||comma||', 'with', 'a', 'married', 'couple', '||period||', 'talking', 'about', 'their', 'married', 'friends', '||comma||', 'and', 'their', 'married', 'furniture', '||period||', "they're", 'always', 'trying', 'to', 'make', 'me', 'feel', 'like', 'their', 'life', 'is', 'so', 'much', 'better', 'than', 'mine', '||period||', 'you', 'know', '||comma||', 'i', 'have', 'a', 'very', 'exciting', 'life', '||period||', "it's", 'very', 'exciting', '||period||', '||leftparen||', 'as', "she's", 'closing', 'the', 'door', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'robin:', 'you', 'went', 'out', 'with', 'a', 'bullfighter', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'well', '||comma||', 'an', 'ex', '||dash||', 'bullfighter', 'now', '||period||', '||return||', '||return||', 'michael:', 'wow', '||period||', '||return||', '||return||', 'robin:', 'what', 'was', 'his', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'his', 'name', '||questionmark||', 'name', '||comma||', 'um', '||comma||', 'his', 'name', 'was', 'uh', '||comma||', 'uh', '||comma||', 'eduardo', 'carochio', '||period||', '||return||', '||return||', 'george:', 'pass', 'the', 'salt', 'please', '||period||', '||return||', '||return||', 'robin:', 'where', 'did', 'you', 'meet', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'actually', '||comma||', 'i', 'met', 'him', 'in', 'switzerland', '||comma||', 'and', 'he', 'was', 'fighting', 'uh', '||comma||', 'is', 'that', 'the', 'word', 'they', 'use', '||questionmark||', 'fighting', '||questionmark||', 'because', 'they', "don't", 'really', 'fight', 'the', 'bull', '||comma||', 'they', 'avoid', 'fighting', 'the', 'bull', '||period||', '||return||', '||return||', 'george:', 'bread', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'love', 'meeting', 'new', 'people', '||period||', 'you', 'know', "that's", 'how', 'you', 'really', 'do', 'learn', 'about', 'life', '||period||', '||return||', '||return||', 'george:', 'god', 'bless', 'you', '||period||', '||return||', '||return||', 'robin:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'i', "wasn't", 'going', 'to', 'say', 'anything', '||comma||', 'but', 'then', 'i', 'could', 'see', 'that', 'he', "wasn't", 'going', 'to', 'open', 'his', 'mouth', '||period||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'woman:', 'you', 'know', "who's", 'a', 'good', 'actor', '||questionmark||', 'anthony', 'quinn', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'anthony', 'quinn', '||comma||', 'fine', 'actor', '||period||', 'but', 'from', 'what', 'i', 'understand', '||comma||', 'not', 'a', 'very', 'good', 'driver', '||period||', 'hits', 'everything', 'on', 'the', 'road', '||period||', 'but', 'always', 'leaves', 'a', 'note', '||period||', '||return||', '||return||', 'woman:', 'did', 'you', 'ever', 'see', 'zorba', 'the', 'greek', '||questionmark||', '||return||', '||return||', 'jerry:', 'excellent', 'film', '||period||', 'in', 'fact', 'quinn', 'said', 'he', 'never', 'felt', 'so', 'good', 'as', 'when', 'he', 'left', 'a', 'note', 'after', 'smacking', 'into', 'a', 'car', '||period||', '||return||', '||return||', 'woman:', 'come', 'here', '||period||', '||leftparen||', 'moves', 'in', 'for', 'a', 'kiss', '||rightparen||', '||return||', '||return||', 'george:', 'really', '||comma||', 'i', 'was', '||comma||', 'i', 'was', 'only', 'kidding', 'around', '||period||', '||return||', '||return||', 'robin:', 'he', 'was', 'only', 'joking', 'michael', '||period||', '||return||', '||return||', 'michael:', 'you', 'think', "you're", 'so', 'damn', 'special', 'because', 'you', 'say', "'god", 'bless', "you'", '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'i', "don't", 'think', "i'm", 'special', '||period||', 'my', 'mother', 'always', 'said', "i'm", 'not', 'special', '||period||', '||return||', '||return||', 'robin:', 'he', 'was', 'only', 'joking', 'michael', '||exclammark||', 'sorry', '||period||', '||return||', '||return||', 'michael:', 'all', 'right', '||exclammark||', 'take', 'his', 'side', '||exclammark||', '||return||', '||return||', 'robin:', 'i', 'am', 'not', 'taking', 'his', 'side', '||period||', '||return||', '||return||', 'michael:', 'well', "who's", 'side', 'are', 'you', 'taking', '||questionmark||', '||exclammark||', '||return||', '||return||', 'robin:', 'well', "i'm", 'not', 'taking', 'your', 'side', '||exclammark||', '||return||', '||return||', 'jerry:', 'kirk', 'douglas', '||period||', 'now', "there's", 'another', 'very', 'bad', 'driver', '||period||', 'but', "he's", 'such', 'an', 'unbelievable', 'guy', '||comma||', 'that', 'when', 'he', 'hits', 'someone', '||comma||', 'he', "doesn't", 'even', 'leave', 'a', 'note', '||period||', 'he', 'sits', 'in', 'his', 'car', 'and', 'waits', 'for', 'the', 'other', 'person', 'to', 'show', 'up', 'so', 'he', 'can', 'exchange', 'license', '||comma||', 'registration', '||comma||', 'and', 'apologize', '||period||', '||return||', '||return||', 'george:', 'i', 'said', "'god", 'bless', "you'", '||period||', 'was', 'that', 'so', 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'question', 'is', '||comma||', 'did', 'you', 'allow', 'a', 'space', 'for', 'the', 'husband', 'to', 'come', 'in', 'with', 'his', "'god", 'bless', "you'", '||questionmark||', 'because', 'as', 'the', 'husband', '||comma||', 'he', 'has', 'the', 'right', 'to', 'first', 'refusal', '||period||', '||return||', '||return||', 'elaine:', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||comma||', 'i', 'definitely', 'waited', '||period||', 'but', 'let', 'me', 'say', 'this', 'once', 'he', 'passes', 'on', 'that', 'option', '||comma||', 'that', "'god", 'bless', "you'", 'is', 'up', 'for', 'grabs', '||period||', '||return||', '||return||', 'jerry:', 'no', 'argument', '||period||', 'unless', '||comma||', "she's", 'one', 'of', 'these', 'multiple', 'sneezers', '||comma||', 'and', "he's", 'holding', 'his', "'god", 'bless', "you'", 'in', 'abeyance', '||comma||', 'until', 'she', 'completes', 'the', 'series', '||period||', '||return||', '||return||', 'george:', 'well', 'i', "don't", 'think', 'she', 'is', 'a', 'multiple', 'sneezer', '||comma||', 'because', 'she', 'sneezed', 'again', 'later', '||comma||', 'and', 'it', 'was', 'also', 'a', 'single', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', "she's", 'having', 'an', 'off', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'well', '||exclammark||', 'if', 'it', "isn't", 'mister', 'gesuntheit', '||exclammark||', '||return||', '||return||', 'george:', 'oh', 'ya', '||comma||', 'like', "there's", 'something', 'wrong', 'with', 'saying', "'god", 'bless', "you'", '||period||', 'i', 'was', 'raised', 'to', 'say', "'god", 'bless', "you'", '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'shut', 'up', '||period||', '||return||', '||return||', 'elaine:', 'what', 'does', 'it', 'mean', 'anyway', '||questionmark||', "'god", 'bless', "you'", '||period||', "it's", 'a', 'stupid', "'stuperstition'", '||period||', '||return||', '||return||', 'jerry:', 'a', 'stupid', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'whatever', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'you', 'want', 'to', 'make', 'a', 'person', 'feel', 'better', 'after', 'they', 'sneeze', '||comma||', 'you', "shouldn't", 'say', "'god", 'bless', "you'", '||comma||', 'you', 'should', 'say', '||comma||', "'you're", 'soo', 'good', "lookin''", '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', "that's", 'better', 'than', "'god", 'bless', "you'", '||period||', 'anyway', '||comma||', 'she', 'left', 'a', 'message', 'on', 'my', 'machine', '||comma||', 'she', 'wants', 'you', 'to', 'call', 'her', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'elaine:', 'robin', '||exclammark||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', 'i', 'assumed', 'she', 'called', 'to', 'apologize', '||comma||', "that's", 'why', 'she', 'called', 'me', '||period||', '||return||', '||return||', 'jerry:', 'entertainment', "tonight's", 'on', '||period||', '||return||', '||return||', 'george:', "where's", 'the', 'remote', 'phone', '||questionmark||', '||return||', '||return||', 'jerry:', 'bedroom', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'grab', "jerry's", 'sweater', 'for', 'me', '||comma||', 'would', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'it', 'like', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'chilly', 'out', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'take', 'a', 'sweater', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'can', 'take', 'a', 'sweater', 'if', 'you', 'want', 'to', '||period||', '||return||', '||return||', 'jerry:', 'scarf', '||questionmark||', '||return||', '||return||', 'elaine:', 'nah', '||comma||', 'hey', '||comma||', 'shut', 'this', 'off', '||comma||', 'shut', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'happened', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'think', 'i', 'hit', 'my', 'head', 'again', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'wrong', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'hey', '||comma||', 'wait', 'a', 'minute', '||exclammark||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'kramer', '||comma||', 'the', 'last', 'time', 'you', 'hit', 'your', 'head', '||comma||', 'was', 'mary', 'hart', 'on', 'tv', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'that', 'is', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'is', 'it', '||exclammark||', 'mary', "hart's", 'voice', '||comma||', "don't", 'you', 'see', '||questionmark||', "there's", 'something', 'about', 'mary', "hart's", 'voice', "that's", 'giving', 'you', 'seizures', '||period||', 'just', 'like', '||comma||', 'just', 'like', '||comma||', 'just', 'like', 'that', 'woman', 'in', 'albany', '||exclammark||', '||return||', '||return||', 'kramer:', 'mary', 'hart', '||exclammark||', '||return||', '||return||', 'george:', 'god', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'she', 'apologized', '||comma||', 'and', 'then', 'she', 'wanted', 'to', 'know', 'if', 'we', 'could', 'get', 'together', 'wednesday', 'afternoon', '||period||', '||return||', '||return||', 'jerry:', 'get', 'together', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'she', 'just', 'wants', 'to', 'talk', 'to', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'married', 'women', "don't", "'get", "together'", '||period||', 'they', 'have', 'affairs', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||comma||', 'an', 'affair', '||period||', "that's", 'so', 'adult', '||period||', "it's", 'like', 'with', 'stockings', 'and', 'martinis', '||comma||', 'and', 'william', 'holden', '||period||', 'on', 'the', 'other', 'hand', 'it', 'probably', "wouldn't", 'cost', 'me', 'any', 'money', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'actually', 'considering', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'have', 'an', 'affair', 'with', 'a', 'married', 'woman', '||comma||', "that's", 'despicable', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "it's", 'like', 'hitting', 'a', 'car', 'and', 'driving', 'away', 'without', 'leaving', 'a', 'note', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'know', 'who', 'owns', 'that', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'one', 'that', 'was', 'hit', 'a', 'couple', 'of', 'nights', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'blond', 'across', 'the', 'street', '||period||', 'you', 'know', 'the', 'one', 'with', 'the', 'long', 'ponytail', '||comma||', 'she', 'wears', 'those', 'blue', 'sweatpants', '||period||', '||return||', '||return||', 'jerry:', 'the', 'blond', 'with', 'the', 'blue', 'sweatpants', '||exclammark||', 'yeah', '||comma||', 'i', 'think', "i've", 'seen', 'her', '||period||', '||return||', '||return||', 'elaine:', 'well', "i've", 'got', 'to', 'get', 'going', '||period||', "i'm", 'meeting', 'a', 'guy', 'with', 'grey', 'sweatpants', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'how', 'do', 'you', 'know', "it's", 'not', 'john', 'tesh', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'blond', 'with', 'the', 'blue', 'sweatpants', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'who', 'is', 'she', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'had', 'a', 'crush', 'on', 'this', 'woman', 'for', 'year', '||exclammark||', "i've", 'always', 'been', 'afraid', 'to', 'approach', 'her', '||exclammark||', 'she', 'looks', 'like', 'she', 'belongs', 'on', 'one', 'of', 'these', 'hallmark', 'cards', '||period||', '||return||', '||return||', 'george:', 'oh', 'right', '||comma||', 'right', '||exclammark||', 'the', 'blue', 'sweatpants', '||exclammark||', 'gees', '||comma||', "it's", 'too', 'bad', 'you', "can't", 'say', 'anything', 'because', 'of', 'angela', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', 'too', 'bad', '||period||', 'angela', '||period||', 'lousy', 'thug', '||period||', 'i', 'mean', 'what', 'kind', 'of', 'sick', 'person', 'does', 'something', 'like', 'that', '||questionmark||', 'that', 'woman', 'belongs', 'in', 'prison', '||exclammark||', 'i', 'mean', '||comma||', 'i', 'actually', 'owe', 'it', 'to', 'society', 'to', 'do', 'something', 'about', 'this', '||exclammark||', 'i', "can't", 'sit', 'by', 'and', 'allow', 'this', 'to', 'go', 'on', '||period||', "it's", 'a', 'moral', 'issue', 'is', 'what', 'it', 'is', '||exclammark||', '||return||', '||return||', 'george:', 'you', "can't", 'compromise', 'your', 'principles', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'am', 'i', 'going', 'to', 'live', 'with', 'myself', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', "can't", 'live', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'religious', '||comma||', 'but', 'i', 'certainly', 'know', 'where', 'to', 'draw', 'the', 'line', '||exclammark||', '||return||', '||return||', 'george:', 'this', 'country', 'needs', 'more', 'people', 'like', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', "don't", 'sell', 'yourself', 'short', 'saying', "'god", 'bless', "you'", 'to', 'every', 'tom', '||comma||', 'dick', 'and', 'harry', 'in', 'great', 'personal', 'risk', '||period||', '||return||', '||return||', 'george:', 'i', 'believe', 'strongly', 'in', 'that', 'as', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'there', 'should', 'be', 'more', 'people', 'like', 'us', '||period||', '||return||', '||return||', 'george:', "that's", 'why', 'the', "world's", 'in', 'the', 'shape', "it's", 'in', '||period||', '||return||', '||return||', 'jerry:', "you're", 'telling', 'me', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'i', 'just', 'wanted', 'you', 'to', 'know', '||comma||', 'that', "i'm", 'going', 'to', 'do', 'everything', 'i', 'can', 'to', 'make', 'sure', 'the', 'party', 'responsible', 'is', 'made', 'to', 'be', 'responsible', 'or', 'something', 'very', 'close', 'to', 'that', '||period||', '||return||', '||return||', 'becky:', 'well', 'god', 'bless', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', 'i', 'must', 'be', 'crazy', '||period||', 'what', 'have', 'i', 'done', '||questionmark||', '||return||', '||return||', 'robin:', 'oh', 'no', '||comma||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'wrong', '||questionmark||', "i'll", 'tell', 'you', "what's", 'wrong', '||period||', 'i', 'just', 'committed', 'adultery', '||exclammark||', '||return||', '||return||', 'robin:', 'you', "didn't", 'commit', 'adultery', '||comma||', 'i', 'did', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'robin:', 'if', 'i', "didn't", 'do', 'it', 'with', 'you', '||comma||', 'i', 'would', 'have', 'done', 'it', 'with', 'someone', 'else', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "wouldn't", 'want', 'you', 'to', 'do', 'that', '||period||', 'you', 'know', "there's", 'a', 'lot', 'of', 'losers', 'out', 'there', '||period||', '||return||', '||return||', 'robin:', 'maybe', 'even', 'someone', 'who', "didn't", 'say', "'god", 'bless', "you'", '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "that's", 'a', 'given', '||period||', '||return||', '||return||', 'robin:', 'in', 'three', 'years', 'with', 'michael', '||comma||', 'not', 'one', "'god", 'bless', "you'", '||period||', '||return||', '||return||', 'george:', 'must', 'be', 'hell', 'living', 'in', 'that', 'house', '||period||', '||return||', '||return||', 'michael:', 'hi', '||comma||', "it's", 'michael', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'michael', '||exclammark||', '||return||', '||return||', 'michael:', 'is', 'robin', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'robin', '||questionmark||', 'no', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'michael:', 'uh', '||comma||', 'she', 'said', 'she', 'was', 'going', 'to', 'be', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'no', 'i', "haven't", 'spoken', 'to', 'her', 'all', 'day', '||dash||', 'uh', '||comma||', 'yeah', 'right', '||comma||', 'um', '||comma||', 'as', 'a', 'matter', 'of', 'fact', '||comma||', 'um', '||comma||', 'she', 'was', 'here', '||comma||', 'and', 'she', 'uh', '||comma||', 'left', 'a', 'note', '||comma||', 'but', 'i', "wasn't", 'here', '||comma||', 'but', 'i', 'have', 'the', 'note', '||comma||', 'uh', '||comma||', 'right', 'here', '||period||', '||return||', '||return||', 'michael:', 'if', "she's", 'not', 'with', 'you', '||comma||', 'then', 'where', 'is', 'she', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'i', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'michael:', 'is', 'she', 'with', 'your', 'bald', 'friend', 'from', 'the', 'other', 'night', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'come', 'on', 'michael', '||exclammark||', '||return||', '||return||', 'michael:', "he's", 'finished', '||exclammark||', "i'm", 'going', 'to', 'sew', 'his', 'ass', 'to', 'his', 'face', '||exclammark||', "i'm", 'going', 'to', 'twist', 'his', 'neck', 'so', 'hard', 'his', 'lips', 'will', 'be', 'his', 'eyebrows', '||exclammark||', "i'm", 'going', 'to', 'break', 'his', 'joints', '||comma||', 'and', 'reattach', 'them', '||exclammark||', '||return||', '||return||', 'elaine:', "you're", 'soo', 'good', "lookin'", '||period||', '||return||', '||return||', 'angela:', 'now', 'you', 'listen', 'to', 'me', '||comma||', 'suck', 'face', '||exclammark||', 'you', 'tell', 'anybody', '||comma||', 'anything', '||comma||', 'and', 'i', 'will', 'carve', 'my', 'initials', 'in', 'your', 'brain', 'tissue', '||exclammark||', '||return||', '||return||', 'jerry:', 'let', 'me', 'rephra', '||dash||', '||return||', '||return||', 'angela:', "i'll", 'bash', 'your', 'skull', 'into', 'a', 'vegematic', 'like', 'a', 'bad', 'cabbage', '||comma||', 'and', "i'll", 'have', 'a', 'party', 'on', 'your', 'head', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', 'elaine', '||comma||', 'this', 'is', 'angela', '||period||', '||return||', '||return||', 'angela:', "i'll", 'pluck', 'all', 'your', 'body', 'hairs', 'out', 'with', 'my', 'teeth', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'think', 'i', 'get', 'the', 'gist', 'of', 'it', '||period||', '||return||', '||return||', 'angela:', 'so', 'you', "don't", 'say', 'anything', 'to', 'anybody', 'about', 'me', 'hitting', 'that', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'car', '||questionmark||', '||return||', '||return||', 'angela:', 'good', '||period||', "i'm", 'glad', 'we', 'understand', 'each', 'other', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'complicated', '||period||', '||return||', '||return||', 'elaine:', 'very', 'nice', 'meeting', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'well', '||comma||', 'well', '||comma||', 'mr', '||period||', 'seinfeld', '||exclammark||', 'that', 'must', 'have', 'been', 'so', 'frightening', '||exclammark||', 'when', 'you', 'confronted', 'that', 'guy', '||comma||', 'in', 'queens', '||exclammark||', 'now', '||comma||', "let's", 'just', 'see', 'if', "i've", 'got', 'this', 'scenario', 'right', '||period||', '||return||', '||return||', 'jerry:', 'alright', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'because', "i'm", 'picturing', "'french", "connection'", '||comma||', 'kind', 'of', 'thing', '||period||', 'you', 'know', '||questionmark||', 'sort', 'of', 'a', 'popeye', 'doyle', 'chase', 'through', 'the', 'city', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'just', 'a', 'couple', 'of', 'blocks', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'no', '||comma||', 'no', '||comma||', 'come', 'on', '||period||', "don't", 'be', 'so', 'modest', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'did', 'you', 'check', 'you', 'machine', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'why', '||comma||', "what's", 'happening', '||questionmark||', '||return||', '||return||', 'elaine:', 'michael', 'called', 'me', 'today', '||comma||', 'and', 'he', 'asked', 'me', 'where', 'robin', 'was', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'and', 'i', 'said', 'i', "hadn't", 'seen', 'her', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', 'george', '||exclammark||', 'you', "don't", 'understand', '||exclammark||', 'she', "didn't", 'tell', 'me', 'she', 'was', 'using', 'me', 'as', 'an', 'excuse', '||exclammark||', 'okay', '||questionmark||', '||exclammark||', 'but', 'then', 'i', 'realized', 'what', 'was', 'going', 'on', '||comma||', 'and', 'i', 'said', 'that', 'she', 'left', 'a', 'note', '||period||', 'um', '||comma||', 'but', 'he', "didn't", 'really', 'buy', 'that', '||period||', 'and', 'then', '||comma||', 'and', 'then', 'he', 'did', 'mention', 'your', 'name', '||period||', '||return||', '||return||', 'george:', 'he', 'mentioned', 'my', 'name', '||questionmark||', '||exclammark||', 'what', 'did', 'he', 'say', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'he', 'said', 'he', 'was', 'going', 'to', 'sew', 'your', 'ass', 'to', 'your', 'face', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'why', "couldn't", 'you', 'think', 'of', 'something', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', 'i', "don't", 'know', '||comma||', 'he', 'caught', 'me', 'off', 'guard', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'lie', '||exclammark||', 'how', 'hard', 'is', 'it', 'to', 'lie', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'that', 'hard', '||period||', '||return||', '||return||', 'elaine:', 'well', 'who', 'told', 'you', 'to', 'sleep', 'with', 'her', 'george', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'not', 'my', 'fault', '||exclammark||', 'i', "wasn't", 'going', 'to', 'do', 'anything', 'until', 'you', 'got', 'her', 'all', 'juiced', 'up', 'with', 'your', 'story', 'about', 'having', 'the', 'affair', 'with', 'the', 'matador', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'gosh', '||exclammark||', 'none', 'of', 'this', 'would', 'never', 'have', 'happened', 'if', 'you', "wouldn't", 'have', 'said', "'god", 'bless', "you'", '||exclammark||', '||return||', '||return||', 'george:', 'oh', "don't", '||dash||', '||return||', '||return||', 'jerry:', 'hold', 'it', '||exclammark||', 'hold', 'it', '||exclammark||', 'hold', 'it', 'people', '||exclammark||', 'matador', '||questionmark||', 'what', 'matador', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'told', 'this', 'couple', 'she', 'had', 'an', 'affair', 'with', 'a', 'matador', '||period||', '||return||', '||return||', 'jerry:', 'a', 'matador', '||exclammark||', 'well', '||comma||', 'well', '||comma||', 'well', '||period||', 'uno', 'momento', 'por', 'favor', '||period||', 'pray', 'tell', '||comma||', 'what', 'was', 'the', 'young', "man's", 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'eduardo', '||comma||', 'uh', '||comma||', 'carochio', '||period||', '||return||', '||return||', 'jerry:', 'eduardo', '||comma||', 'carochio', '||exclammark||', "that's", 'good', '||period||', "that's", 'very', 'good', '||period||', 'kind', 'of', 'just', 'rolls', 'of', 'the', 'tongue', '||period||', 'i', 'wonder', 'where', 'on', 'the', 'upper', 'west', 'side', 'a', 'single', 'girl', 'might', 'meet', 'a', 'matador', '||questionmark||', 'perhaps', 'zabars', '||questionmark||', 'or', 'les', 'pizza', '||exclammark||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'this', 'person', 'told', 'me', 'to', 'tell', 'you', 'to', 'get', 'an', 'estimate', 'on', 'the', 'damage', '||period||', '||return||', '||return||', 'becky:', 'well', '||comma||', 'i', 'already', 'got', 'an', 'estimate', '||period||', "it's", '$875', '||period||', '||return||', '||return||', 'jerry:', '$875', '||questionmark||', '||return||', '||return||', 'becky:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'well', '||comma||', "i'll", 'tell', 'you', 'what', '||period||', 'um', '||comma||', "i'll", 'give', 'you', 'a', 'check', '||comma||', 'and', 'then', 'this', 'person', 'can', 'pay', 'me', 'back', '||period||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'who', 'do', 'i', 'make', 'it', 'out', 'to', '||questionmark||', '||return||', '||return||', 'becky:', 'becky', 'gelke', '||period||', 'g', '||dash||', 'e', '||dash||', 'l', '||dash||', 'k', '||dash||', 'e', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'are', 'you', 'doing', 'this', 'weekend', '||questionmark||', '||return||', '||return||', 'becky:', 'you', 'have', 'got', 'some', 'nerve', '||exclammark||', 'you', 'smash', 'up', 'my', 'car', '||comma||', 'you', "don't", 'admit', 'it', '||comma||', 'and', 'now', 'you', 'want', 'to', 'ask', 'me', 'out', 'on', 'a', 'date', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'do', 'it', '||exclammark||', '||return||', '||return||', 'becky:', 'yeah', 'righ', '||dash||', '||return||', '||return||', 'jerry:', 'you', 'are', 'soo', 'good', "lookin'", '||period||', '||return||', '||return||', 'becky:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "let's", 'go', '||exclammark||', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'sure', 'you', 'want', 'to', 'do', 'this', '||questionmark||', "i'm", 'going', 'to', 'be', 'on', 'the', 'road', 'for', 'three', 'weeks', '||exclammark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', "i've", 'got', 'a', 'maniac', 'stalking', 'me', '||comma||', "i'm", 'not', 'staying', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||exclammark||', '||return||', '||return||', 'george:', 'come', 'on', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'how', 'could', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'man', '||exclammark||', 'i', 'never', 'thought', 'you', 'were', 'capable', 'of', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'talked', 'to', 'becky', 'gelke', 'outside', '||comma||', 'she', 'told', 'me', 'how', 'you', 'hit', 'and', 'ran', '||period||', '||return||', '||return||', 'jerry:', 'i', '||dash||', '||return||', '||return||', 'kramer:', 'i', "don't", 'even', 'want', 'to', 'look', 'at', 'you', 'anymore', '||exclammark||', 'all', 'these', 'years', 'of', 'friendship', 'and', "you're", 'nothing', 'but', 'a', 'felon', '||period||', "you're", 'an', 'embarrassment', 'to', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'do', 'it', '||exclammark||', 'i', 'just', 'had', 'to', 'pay', 'her', 'to', 'cover', 'for', 'somebody', 'else', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', "you're", 'not', 'going', 'to', 'lie', 'to', 'me', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'never', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||period||', 'well', '||period||', 'glad', 'we', 'got', 'that', 'straightened', 'out', 'because', "i've", 'got', 'a', 'date', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'date', 'with', 'becky', 'gelke', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'going', 'out', 'with', 'her', 'saturday', 'night', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'can', 'we', 'get', 'out', 'of', 'here', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'as', 'a', 'matter', 'of', 'fact', '||comma||', 'if', 'it', "wasn't", 'for', 'you', '||comma||', 'i', "wouldn't", 'have', 'even', 'had', 'an', 'excuse', 'to', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', "i'm", 'happy', 'to', 'help', '||comma||', 'in', 'any', 'way', 'that', 'i', 'can', '||period||', '||return||', '||return||', 'nina:', '||leftparen||', 'laughing', '||rightparen||', 'kramer', '||comma||', 'would', 'you', 'hold', 'still', '||questionmark||', 'i', 'cant', 'do', 'this', 'if', 'you', 'keep', 'moving', '||period||', '||return||', '||return||', 'kramer:', 'you', 'sure', 'you', 'dont', 'want', 'me', 'to', 'take', 'my', 'clothes', 'off', '||questionmark||', '||leftparen||', 'beat', '||rightparen||', 'ill', 'do', 'it', '||exclammark||', '||return||', '||return||', 'nina:', 'no', '||comma||', 'thats', 'the', 'last', 'thing', 'in', 'the', 'world', 'i', 'want', 'you', 'to', 'do', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'dont', 'you', 'take', 'your', 'clothes', 'off', '||questionmark||', '||return||', '||return||', 'nina:', 'i', 'dont', 'know', '||period||', '||period||', '||period||', 'i', 'dont', 'think', 'jerry', 'would', 'like', 'that', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'debonair', 'smile', '||rightparen||', 'well', '||comma||', 'itd', 'be', 'our', 'little', 'secret', '||period||', '||return||', '||return||', '[cut', 'to:', 'jerrys', 'apartment]', '||return||', '||return||', 'george:', '||leftparen||', 'bursting', 'out', 'of', 'the', 'bathroom', '||comma||', 'fumbling', 'with', 'his', 'fly', '||rightparen||', 'button', 'fly', '||exclammark||', 'why', 'do', 'they', 'put', 'buttons', 'on', 'a', 'fly', '||questionmark||', 'it', 'takes', 'ten', 'minutes', 'to', 'get', 'these', 'things', 'open', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'like', 'the', 'button', 'fly', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'incredulous', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'is', 'one', 'place', 'on', 'my', 'wardrobe', 'i', 'do', 'not', 'need', 'sharp', 'interlocking', 'metal', 'teeth', '||period||', 'its', 'like', 'a', 'mink', 'trap', 'down', 'there', '||period||', '||leftparen||', 'beat', '||rightparen||', 'what', 'are', 'you', 'doing', 'today', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'go', 'meet', 'nina', '||period||', 'want', 'to', 'come', 'up', 'to', 'her', 'lot', '||comma||', 'check', 'out', 'her', 'paintings', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'get', 'art', '||period||', '||return||', '||return||', 'jerry:', 'theres', 'nothing', 'to', 'get', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'always', 'has', 'to', 'be', 'explained', 'to', 'me', '||comma||', 'and', 'then', 'i', 'have', 'to', 'have', 'someone', 'explain', 'the', 'explanation', '||period||', '||return||', '||return||', 'jerry:', 'she', 'does', 'a', 'lot', 'of', 'abstract', 'stuff', '||period||', 'in', 'fact', "she's", 'painting', 'kramer', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'sees', 'something', 'in', 'him', '||period||', '||return||', '||return||', 'george:', 'so', 'do', 'i', '||comma||', 'but', 'i', "wouldn't", 'hang', 'it', 'on', 'a', 'wall', '||period||', '||return||', '||return||', '[cut', 'to:', "nina's", 'studio', 'again', '||dash||', '||dash||', 'same', 'scene]', '||return||', '||return||', 'kramer:', 'are', 'you', 'getting', 'the', 'eyes', '||questionmark||', "'cause", "they're", 'brown', '||period||', '||leftparen||', 'beat', '||rightparen||', 'or', '||comma||', 'really', '||comma||', "they're", 'dark', 'brown', '||comma||', 'like', 'rich', '||comma||', 'columbian', 'coffee', '||period||', '||return||', '||return||', 'nina:', 'tell', 'me', 'about', 'elaine', '||period||', '||return||', '||return||', 'kramer:', 'she', 'and', 'jerry', 'were', 'a', 'big', 'thing', '||comma||', 'like', 'abe', 'lincoln', 'and', 'mary', 'todd', '||period||', '||return||', '||return||', 'nina:', 'but', '||comma||', "they're", 'still', 'friends', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "they're", 'like', 'this', '||leftparen||', 'holds', 'up', 'two', 'fingers', 'together', '||rightparen||', '||period||', '||return||', '||return||', 'nina:', "don't", 'you', 'think', "that's", 'strange', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', '||comma||', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'nina:', 'well', '||comma||', 'are', 'you', 'still', 'friends', 'with', 'any', 'of', 'your', 'ex', '||dash||', 'girlfriends', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', 'have', 'many', 'relationships', '||period||', '||return||', '||return||', '[cut', 'to:', 'the', 'door', 'outside', "nina's", 'studio]', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "i'm", 'a', 'little', 'nervous', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'the', 'friend', 'meeting', 'the', 'new', 'woman', '||period||', 'i', 'feel', 'like', "i'm", 'getting', 'fixed', 'up', 'for', 'a', 'friendship', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'how', 'long', 'this', 'is', 'gonna', 'last', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'i', 'thought', 'you', 'liked', 'her', '||period||', '||return||', '||return||', 'jerry:', 'i', 'do', '||period||', '||period||', '||period||', "she's", 'got', 'like', 'a', 'jealousy', 'thing', '||period||', 'she', "doesn't", 'like', 'me', 'having', 'fun', 'with', 'anyone', 'but', 'her', '||period||', '||leftparen||', 'knocks', 'on', 'the', 'door', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "it's", 'a', 'miracle', "you're", 'not', 'married', '||period||', '||leftparen||', 'beat', '||rightparen||', 'hey', '||comma||', "i'm", 'not', 'obligated', 'to', 'buy', 'anything', '||comma||', 'am', 'i', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'nina', '||period||', '||leftparen||', 'smooch', '||rightparen||', 'this', 'is', 'my', 'friend', 'george', '||period||', '||return||', '||return||', 'nina:', 'how', 'nice', 'to', 'meet', 'you', '||comma||', "i've", 'heard', 'a', 'lot', 'about', 'you', '||period||', '||leftparen||', 'george', 'nods', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'over', 'to', 'where', 'kramer', 'is', 'posing', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'this', 'guy', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'nina', '||rightparen||', 'i', 'brought', 'george', 'up', 'to', 'see', 'some', 'of', 'your', 'paintings', '||period||', '||return||', '||return||', 'nina:', 'oh', '||comma||', 'are', 'you', 'interested', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'uncomfortable', '||rightparen||', 'um', '||period||', '||period||', '||period||', 'yeah', '||exclammark||', 'sure', '||comma||', 'sure', "i'm", 'interested', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'you', 'gonna', 'buy', 'a', 'painting', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'gritting', 'teeth', '||rightparen||', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'nina:', 'are', 'you', 'an', 'art', '||dash||', 'lover', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'am', 'an', 'art', '||dash||', 'adorer', '||exclammark||', 'i', 'adore', 'art', '||period||', '||return||', '||return||', 'nina:', 'great', '||exclammark||', 'well', '||comma||', 'take', 'a', 'look', 'around', '||period||', 'pick', 'out', 'something', 'you', 'like', '||period||', '||leftparen||', 'george', 'reluctantly', 'begins', 'to', 'look', 'around', '||comma||', 'while', 'jerry', 'strolls', 'over', 'to', 'the', 'painting', '||dash||', 'in', '||dash||', 'progress', '[kramer]', 'and', 'picks', 'up', 'a', 'brush', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'may', 'i', '||questionmark||', '||leftparen||', 'pantomimes', 'making', 'a', 'big', '||quotemark||', 'x', '||quotemark||', 'across', 'the', 'painting', '||rightparen||', '||return||', '||return||', 'nina:', '||leftparen||', 'laughing', '||rightparen||', 'get', 'outta', 'here', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', 'here', '||comma||', 'play', 'with', 'this', '||period||', '||leftparen||', 'hands', 'jerry', 'a', 'small', 'white', 'envelope', '||rightparen||', '||return||', '||return||', 'jerry:', "what's", 'this', '||questionmark||', '||return||', '||return||', 'nina:', 'my', 'father', 'gave', 'me', 'four', 'tickets', 'to', 'the', 'yankee', 'game', 'for', 'saturday', 'afternoon', '||period||', "owner's", 'box', '||comma||', 'first', 'row', 'behind', 'the', 'dugout', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sincerely', 'disappointed', '||rightparen||', 'oh', '||comma||', 'saturday', '||period||', '||period||', '||period||', "i'm", 'working', '||comma||', "i'm", 'going', 'out', 'of', 'town', '||period||', '||return||', '||return||', 'nina:', 'oh', '||comma||', 'well', '||period||', "i'm", 'not', 'gonna', 'go', 'without', 'you', '||period||', 'do', 'you', 'guys', 'want', "'em", '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'immediately', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "they're", 'right', 'behind', 'the', 'dugout', '||comma||', 'george', '||comma||', 'first', 'row', '||exclammark||', '||return||', '||return||', 'george:', 'behind', 'the', 'dugout', '||comma||', 'are', 'you', 'kidding', '||questionmark||', 'how', 'did', 'you', 'get', 'them', '||questionmark||', '||return||', '||return||', 'nina:', 'oh', '||comma||', 'my', "father's", 'the', 'yankees', 'accountant', '||period||', '||period||', '||period||', "it's", 'the', "owner's", 'box', '||period||', '||return||', '||return||', 'george:', 'all', 'my', 'life', "i've", 'dreamed', 'of', 'sitting', 'front', 'row', '||comma||', 'behind', 'the', 'dugout', '||exclammark||', '||return||', '||return||', 'nina:', '||leftparen||', 'gesturing', 'towards', 'a', 'small', '||comma||', 'ugly', 'painting', 'george', 'was', 'apparently', 'look', '||dash||', 'ing', 'at', 'and', 'happens', 'to', 'be', 'holding', '||rightparen||', 'you', 'like', 'that', 'one', '||questionmark||', '||return||', '||return||', '[cut', 'to:', 'saturday', '||comma||', 'the', 'game', '||period||', 'george', '||comma||', 'kramer', '||comma||', 'and', 'elaine', 'are', 'being', 'lead', 'to', 'their', 'seats]', '||return||', '||return||', 'george:', 'look', 'at', 'where', 'we', 'are', '||exclammark||', '||leftparen||', 'referring', 'to', 'the', 'seat', 'usher', '||rightparen||', "he's", 'not', 'stopping', '||exclammark||', 'he', 'just', 'keeps', 'going', 'and', 'going', 'and', 'going', '||exclammark||', '||leftparen||', 'the', 'usher', 'abruptly', 'stops', 'at', 'the', 'second', 'row', '||rightparen||', "we're", 'not', 'in', 'the', 'first', 'row', '||questionmark||', '||return||', '||return||', 'usher:', 'no', '||comma||', 'no', '||comma||', 'these', 'are', 'your', 'seats', '||period||', '||return||', '||return||', 'george:', 'she', 'said', 'first', 'row', '||exclammark||', 'right', 'behind', 'the', 'dugout', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'the', 'second', 'row', '||period||', "it's", 'just', 'as', 'good', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'all', 'primed', 'for', 'the', 'first', 'row', '||semicolon||', 'i', 'was', 'gonna', 'put', 'my', 'feet', 'up', 'on', 'the', 'dugout', '||exclammark||', '||return||', '||return||', 'elaine:', 'would', 'you', 'shut', 'up', '||questionmark||', 'these', 'are', 'great', '||exclammark||', 'you', "can't", 'get', 'any', 'better', 'than', 'this', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "there's", 'better', '||comma||', '||leftparen||', 'pointing', 'at', 'the', 'row', 'in', 'front', 'of', 'them', '||rightparen||', 'right', 'there', '||comma||', "that's", 'better', '||period||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||leftparen||', 'elaine', 'giggles', '||rightparen||', 'oh', 'boy', '||period||', '||period||', '||period||', 'okay', '||comma||', 'who', 'wants', 'a', 'dog', '||questionmark||', '||leftparen||', 'kramer', 'hands', 'out', 'the', 'hot', 'dogs', '||rightparen||', 'what', 'a', 'great', 'day', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', "could've", 'been', 'at', 'my', "boss'", "son's", 'bris', 'right', 'now', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'amused', '||rightparen||', "you're", 'supposed', 'to', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrugs', '||rightparen||', 'yeah', '||period||', '||leftparen||', 'beat', '||rightparen||', 'what', 'makes', 'you', 'think', 'anyone', 'would', 'want', 'to', 'go', 'to', 'a', 'circumcision', '||questionmark||', '||return||', '||return||', 'george:', "i'd", 'rather', 'go', 'to', 'a', 'hanging', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', 'i', 'called', 'him', 'back', '||period||', '||period||', '||period||', 'i', 'told', 'him', 'i', 'had', 'to', 'go', 'visit', 'my', 'father', 'in', 'the', 'hospital', 'in', 'maryland', '||period||', '||leftparen||', 'george', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'screaming', 'at', 'the', 'players', 'on', 'the', 'field', '||rightparen||', 'you', 'better', 'catch', 'it', '||comma||', '||return||', '||return||', 'man:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'man:', 'hi', '||period||', "i'm", 'leonard', 'west', '||comma||', "nina's", 'father', '||period||', '||return||', '||return||', 'george:', 'hi', '||exclammark||', 'mr', '||period||', 'west', '||comma||', 'this', 'is', 'my', 'friend', 'elaine', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'screaming', 'again', '||rightparen||', 'hey', '||comma||', '230', "ain't", 'gonna', 'cut', 'it', 'in', 'this', 'town', '||comma||', 'babe', '||exclammark||', '||return||', '||return||', 'george:', '||dash||', '||dash||', 'and', 'this', 'is', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'west:', 'so', 'how', 'are', 'the', 'seats', '||questionmark||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'great', '||comma||', 'great', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'west:', 'george', '||comma||', 'i', 'heard', 'you', 'bought', 'one', 'of', "nina's", 'paintings', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "it's", 'being', 'framed', 'right', 'now', '||period||', 'i', "don't", 'even', 'know', 'what', 'it', 'costs', '||period||', '||leftparen||', 'beat', '||rightparen||', 'not', '||comma||', 'uh', '||comma||', 'too', 'expensive', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'west:', 'well', '||comma||', 'if', 'you', 'have', 'a', 'lot', 'of', 'money', '||period||', '||return||', '||return||', 'west:', '||leftparen||', 'leaving', '||rightparen||', 'well', '||comma||', 'enjoy', 'the', 'game', '||period||', '||leftparen||', 'beat', '||dash||', '||dash||', 'to', 'elaine', '||rightparen||', 'i', 'think', 'you', 'better', 'take', 'off', 'that', 'orioles', 'cap', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thinking', "he's", 'joking', '||rightparen||', 'yeah', '||period||', 'i', 'better', '||exclammark||', '||return||', '||return||', 'west:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'seriously', '||period||', "you're", 'in', 'the', "owner's", 'box', '||comma||', 'and', 'i', "don't", 'think', "it's", 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'elaine:', "you're", 'not', 'serious', '||period||', '||return||', '||return||', 'west:', 'yes', '||comma||', 'yes', '||comma||', 'yes', '||comma||', 'i', 'am', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'did', 'he', 'say', 'that', '||questionmark||', '||return||', '||return||', 'west:', 'no', '||comma||', 'no', '||comma||', 'but', 'he', 'gave', 'me', 'the', 'seats', '||period||', 'i', "don't", 'think', "he'd", 'like', 'it', 'if', 'you', 'wore', 'an', 'orioles', 'cap', '||period||', '||return||', '||return||', 'elaine:', 'well', 'maybe', 'you', 'should', 'ask', 'him', '||exclammark||', '||return||', '||return||', 'west:', 'i', "don't", 'have', 'to', 'ask', 'him', '||exclammark||', 'now', 'are', 'you', 'gonna', 'take', 'the', 'hat', 'off', 'or', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'i', "don't", 'have', 'to', 'take', 'it', 'off', '||comma||', 'why', 'should', 'i', 'take', 'it', 'off', '||questionmark||', 'this', 'is', 'ridiculous', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'just', 'take', 'the', 'cap', 'off', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'we', 'are', 'at', 'a', 'baseball', 'game', '||exclammark||', 'this', 'is', 'america', '||exclammark||', '||return||', '||return||', 'west:', 'look', '||period||', 'either', 'you', 'take', 'the', 'cap', 'off', '||comma||', 'or', "you'll", 'have', 'to', 'leave', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'care', '||comma||', "i'm", 'not', 'taking', 'it', 'off', '||period||', '||return||', '||return||', 'george:', 'just', 'take', 'the', 'cap', 'off', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'just', 'wait', 'a', 'minute', '||period||', 'we', 'just', 'got', 'here', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'do', 'you', 'want', 'us', 'to', 'go', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'getting', 'up', '||rightparen||', "i'll", 'go', 'get', 'your', 'hat', '||comma||', 'george', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastically', '||comma||', 'to', 'george', '||rightparen||', 'stay', '||exclammark||', '||return||', '||return||', 'george:', 'okay', '||comma||', "we'll", 'go', '||exclammark||', '||return||', '||return||', '||leftparen||', 'meanwhile', 'kramer', 'is', 'climbing', 'over', 'the', 'dugout', 'retrieve', "george's", 'cap', '||period||', '||period||', '||period||', 'the', 'camera', 'cuts', 'to', 'the', 'field', 'where', 'the', 'batter', 'hits', 'a', 'pop', 'fly', 'to', 'where', 'kramer', 'is:', 'the', 'ball', 'knocks', 'him', 'squarely', 'in', 'the', 'head', '||comma||', 'he', 'falls', 'off', 'the', 'dugout', 'onto', 'the', 'crowd', '||rightparen||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'and', 'then', 'the', 'ball', 'hits', 'him', 'in', 'the', 'head', 'and', 'he', 'falls', 'right', 'over', 'the', 'railing', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'he', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'yeah', '||comma||', "he's", 'fine', '||exclammark||', 'we', 'took', 'him', 'to', 'the', 'emergency', 'room', '||comma||', 'and', 'you', 'know', '||comma||', 'the', 'x', '||dash||', 'rays', 'were', 'all', 'negative', '||period||', '||leftparen||', 'beat', '||rightparen||', 'it', 'was', 'quite', 'a', 'day', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'the', 'most', 'amazing', 'story', "i've", 'ever', 'heard', '||dash||', '||dash||', 'why', 'did', 'he', 'want', 'you', 'to', 'take', 'off', 'the', 'baseball', 'cap', '||questionmark||', 'that', 'is', 'so', 'insane', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||exclammark||', 'can', 'you', 'imagine', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'you', 'feeling', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', "i'm", 'fine', '||comma||', "i'm", 'fine', '||period||', '||leftparen||', 'beat', '||dash||', '||dash||', 'holds', 'up', 'newspaper', '||rightparen||', 'hey', '||comma||', 'we', 'made', 'the', 'paper', '||period||', 'eh', '||questionmark||', 'look', 'at', 'this', '||dash||', 'page', '2', '||comma||', 'sports', 'section', '||period||', '||period||', '||period||', "we're", 'all', 'in', 'the', 'picture', '||period||', '||return||', '||return||', 'elaine:', 'wha', '||dash||', 'a', 'picture', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'picture', '||period||', '||return||', '||return||', 'elaine:', 'our', "picture's", 'in', 'there', '||questionmark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasps', '||rightparen||', 'i', 'cannot', 'believe', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', "there's", 'george', '||exclammark||', '||return||', '||return||', 'kramer:', 'yup', '||comma||', 'yup', '||exclammark||', '||return||', '||return||', 'elaine:', 'ohmygod', '||exclammark||', 'lippman', 'could', 'see', 'this', '||exclammark||', 'he', 'thinks', 'i', 'was', 'visiting', 'my', 'father', '||exclammark||', 'oh', 'my', 'g', '||dash||', 'i', 'make', 'up', 'one', 'little', 'white', 'lie', 'and', 'they', 'put', 'my', 'picture', 'in', 'the', 'paper', '||exclammark||', '||return||', '||return||', '[cut', 'to:', "lippman's", 'office', '||period||', 'lippman', 'is', 'at', 'his', 'desk', '||comma||', 'elaine', 'enters', '||period||', ']', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'mr', '||period||', 'lippman', '||period||', '||return||', '||return||', 'lippman:', "how's", 'your', 'father', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', '||comma||', 'my', 'father', '||questionmark||', '||return||', '||return||', 'lippman:', 'yeah', '||period||', 'you', '||comma||', 'you', 'went', 'to', 'see', 'him', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'lippman:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'i', 'went', 'to', 'visit', 'him', '||period||', '||return||', '||return||', 'lippman:', 'uh', '||dash||', 'huh', '||period||', 'so', '||comma||', 'what', 'was', 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'name', 'it', '||comma||', 'uh', '||comma||', 'neuritis', '||comma||', 'uh', '||comma||', 'neuralgia', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', 'but', '||dash||', '||dash||', 'but', "he's", 'feeling', 'better', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'yup', '||period||', 'yes', '||comma||', 'yes', '||comma||', 'it', 'just', '||period||', '||period||', '||period||', 'such', 'a', 'miracle', '||comma||', 'um', '||period||', 'my', 'visit', 'must', 'have', 'buoyed', '||leftparen||', 'elaine', 'says', '||quotemark||', 'boyed', '||quotemark||', '||rightparen||', 'his', 'spirits', '||period||', '||return||', '||return||', 'lippman:', '||leftparen||', 'correcting', 'her', '||rightparen||', 'boo', '||dash||', 'eed', '||period||', '||return||', '||return||', 'elaine:', 'what', '||dash||', '||dash||', 'what', 'did', 'i', 'say', '||questionmark||', '||return||', '||return||', 'lippman:', 'you', 'said', '||quotemark||', 'boyed', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'i', 'did', '||questionmark||', '||return||', '||return||', 'lippman:', 'yeah', '||period||', '||return||', '||return||', 'lippman:', 'well', '||comma||', 'i', 'got', 'a', 'plane', 'to', 'catch', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'lippman:', 'going', 'to', 'houston', '||period||', "it's", 'a', "publisher's", 'convention', '||period||', '||leftparen||', 'beat', '||rightparen||', 'can', 'i', 'have', 'my', 'sports', 'section', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'lippman:', "i've", 'been', 'saving', 'it', 'for', 'the', 'plane', '||period||', 'i', 'never', 'miss', 'the', 'sunday', 'sports', 'section', '||period||', '||return||', '||return||', 'elaine:', "there's", 'nothing', 'to', 'read', '||comma||', "it's", 'just', "yesterday's", 'news', '||period||', 'you', 'know', '||comma||', 'the', 'yankees', 'won', '||comma||', 'the', 'mets', 'lost', '||comma||', 'ricky', "henderson's", 'unhappy', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', 'right', '||comma||', 'right', '||period||', '||leftparen||', 'starts', 'to', 'take', 'the', 'paper', 'from', "elaine's", 'hand', '||semicolon||', 'elaine', 'holds', 'on', 'tight', '||period||', '||rightparen||', 'what', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'wha', '||dash||', '||dash||', 'oh', '||exclammark||', '||leftparen||', 'noticing', 'her', 'hand', '||rightparen||', 'oh', '||comma||', 'god', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', 'that', 'is', 'the', 'third', 'time', 'today', 'i', 'have', 'done', 'that', '||exclammark||', 'blaaah', '||exclammark||', '||leftparen||', 'laughs', 'again', '||rightparen||', 'grabbing', 'news', '||dash||', 'papers', '||period||', '||period||', '||period||', "i'm", 'just', 'tugging', 'at', "'em", '||period||', '||period||', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'lippman:', 'gotta', 'go', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||exclammark||', 'well', '||comma||', 'you', 'know', '||comma||', 'have', 'a', 'nice', 'trip', '||comma||', 'and', 'uh', '||period||', '||period||', '||period||', 'alrighty', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', "i'll", 'just', 'hold', 'down', 'the', '||comma||', 'uh', '||comma||', 'fort', '||exclammark||', '||return||', '||return||', '[cut', 'to:', "nina's", 'studio', '||period||', 'mr', '||period||', 'and', 'mrs', '||period||', 'armstrong', 'are', 'admiring', "nina's", '||quotemark||', 'kramer', '||period||', '||quotemark||', ']', '||return||', '||return||', 'mrs', '||period||', 'arm:', 'i', 'sense', 'great', 'vulcrability', '||period||', 'a', 'land', 'child', 'crying', 'out', 'for', 'love', '||comma||', 'an', 'innocent', 'orphan', 'in', 'the', 'post', '||dash||', 'modern', 'world', '||period||', '||return||', '||return||', 'mr', '||period||', 'arm:', 'i', 'see', 'a', 'parasite', '||period||', '||return||', '||return||', 'mrs', '||period||', 'arm:', 'a', 'sexually', '||dash||', 'depraved', 'miscrient', '||comma||', 'who', 'is', 'seeking', 'to', 'gratify', 'only', 'his', 'most', 'basic', 'and', 'immediate', 'urges', '||period||', '||return||', '||return||', '[cut', 'to:', 'another', 'part', 'of', 'the', 'studio', 'where', 'jerry', 'and', 'nina', 'are', 'arguing', '||period||', ']', '||return||', '||return||', 'nina:', 'she', 'was', 'a', 'guest', 'of', 'my', "father's", '||period||', 'she', "should've", 'taken', 'the', 'cap', 'off', '||period||', '||return||', '||return||', 'jerry:', "it's", 'preposterous', '||exclammark||', 'they', 'ask', 'someone', 'to', 'take', 'off', 'a', 'baseball', 'cap', 'at', 'a', 'baseball', 'game', '||period||', '||leftparen||', 'beat', '||rightparen||', 'how', 'can', 'you', 'defend', 'that', '||questionmark||', '||return||', '||return||', '[cut', 'to:', 'armstrongs', 'admiring', 'painting', 'again', '||period||', ']', '||return||', '||return||', 'mrs', '||period||', 'arm:', 'he', 'is', 'struggled', '||comma||', 'he', 'is', 'man', '||dash||', 'struggled', '||period||', 'he', 'lifts', 'my', 'spirit', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'arm:', 'he', 'is', 'a', 'loathsome', '||comma||', 'offensive', 'brute', '||comma||', 'yet', 'i', "can't", 'look', 'away', '||period||', '||return||', '||return||', '[cut', 'to:', 'jerry', 'and', 'nina', 'again', '||period||', ']', '||return||', '||return||', 'jerry:', 'look', '||comma||', "i'm", 'really', 'getting', 'tired', 'off', 'all', 'the', 'fighting', '||period||', 'maybe', 'we', 'should', 'just', 'end', 'this', 'before', 'we', 'really', 'start', 'hating', 'each', 'other', '||period||', '||return||', '||return||', 'nina:', 'oh', '||comma||', 'well', '||comma||', 'you', "wouldn't", 'want', 'that', 'because', 'you', 'always', 'have', 'to', 'remain', 'friends', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'like', 'to', 'remain', 'friends', 'with', 'people', 'i', 'was', 'friends', 'with', '||exclammark||', '||return||', '||return||', 'nina:', 'hey', '||dash||', '||dash||', 'why', "don't", 'you', 'just', 'go', 'then', '||exclammark||', 'and', '||dash||', '||dash||', 'oh', '||comma||', 'give', 'this', 'to', 'george', '||period||', 'tell', 'him', 'he', 'owes', 'me', '$500', '||exclammark||', '||return||', '||return||', '[cut', 'to:', 'armstrongs]', '||return||', '||return||', 'mrs', '||period||', 'arm:', 'he', 'transcends', 'time', 'and', 'space', '||period||', '||return||', '||return||', 'mr', '||period||', 'arm:', 'he', 'sickens', 'me', '||period||', '||return||', '||return||', 'mrs', '||period||', 'arm:', 'i', 'love', 'it', '||period||', '||return||', '||return||', 'mr', '||period||', 'arm:', 'me', 'too', '||period||', '||return||', '||return||', '[cut', 'to:', "jerry's", 'apartment', '||period||', ']', '||return||', '||return||', 'george:', 'five', '||dash||', 'hundred', 'dollars', '||questionmark||', '||exclammark||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'what', 'she', 'told', 'me', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'not', 'paying', '$500', 'for', 'this', '||exclammark||', "it's", 'a', 'piece', 'of', 'junk', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'what', 'it', 'costs', '||exclammark||', '||return||', '||return||', 'george:', 'why', 'did', 'you', 'even', 'take', 'it', '||questionmark||', 'you', 'broke', 'up', 'with', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "wasn't", 'thinking', '||exclammark||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'you', "weren't", 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'she', 'framed', 'it', 'and', 'everything', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'not', 'buying', 'it', '||period||', 'no', 'way', '||period||', 'forget', 'it', '||period||', 'no', 'way', "i'm", 'buying', 'this', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', 'i', 'mean', '||comma||', 'look', 'at', 'it', '||exclammark||', 'what', 'is', 'it', '||questionmark||', "it's", 'a', 'bunch', 'of', 'squiggly', 'lines', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', 'are', 'you', 'telling', 'me', 'you', "couldn't", 'paint', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'want', 'me', 'to', 'paint', 'you', 'something', '||questionmark||', "i'd", 'love', 'to', 'paint', 'you', 'some', '||dash||', 'thing', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'not', 'paying', 'for', 'this', '||period||', 'if', 'you', 'were', 'going', 'out', 'with', 'her', '||comma||', "it'd", 'be', 'a', 'different', 'story', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'entering', '||comma||', 'handing', 'jerry', 'a', 'piece', 'of', 'paper', '||rightparen||', 'this', 'was', 'in', 'front', 'of', 'your', 'door', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||comma||', 'mike', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'the', 'paper', '||rightparen||', 'wow', '||comma||', 'a', 'letter', 'from', 'nina', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'notices', 'the', 'painting', '||rightparen||', 'whoa', '||comma||', 'man', '||exclammark||', 'that', 'is', 'the', 'ugliest', 'thing', "i've", 'ever', 'seen', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', 'note', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'amazing', '||comma||', 'you', "can't", 'believe', 'this', '||exclammark||', '||return||', '||return||', 'george:', "what's", 'it', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'listen', 'to', 'this', '||quotemark||', 'i', "don't", 'know', 'what', 'you', 'expect', 'to', 'find', 'out', 'there', '||comma||', 'jerry', '||comma||', 'you', 'know', 'what', 'you', 'want', 'better', 'than', 'me', '||period||', 'but', "there's", 'one', 'thing', 'i', 'do', 'know', '||period||', 'i', 'know', 'i', 'can', 'stand', 'here', 'watching', 'you', 'destroy', 'everything', "i've", 'ever', 'wanted', 'in', 'my', 'life', '||comma||', 'wanting', 'to', 'smash', 'your', 'face', 'with', 'my', 'fists', '||comma||', 'because', 'you', "won't", 'make', 'even', 'the', 'slightest', 'effort', 'to', 'offer', 'happiness', 'and', 'still', 'know', 'that', 'i', 'love', 'you', '||period||', 'you', 'mean', 'so', 'much', 'to', 'me', 'that', "i'm", 'will', '||dash||', 'ing', 'to', 'take', 'all', 'your', 'abuse', 'and', 'insults', 'and', 'insensitivity', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'wow', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'emotionally', '||rightparen||', "she's", 'deep', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', 'on', '||rightparen||', '||quotemark||', '||period||', '||period||', '||period||', "'cause", "that's", 'what', 'you', 'need', 'to', 'do', 'to', 'prove', "i'm", 'not', 'going', 'to', 'leave', 'you', '||period||', "i'm", 'sick', 'and', 'tired', 'of', 'running', 'from', 'places', 'and', 'people', 'and', 'relationships', '||period||', 'you', 'want', 'me', '||comma||', 'that', 'fight', 'for', 'me', '||comma||', 'becau', '||dash||', '||quotemark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'jerry', '||comma||', 'she', 'sounds', 'like', 'a', 'poet', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', "one's", 'ever', 'written', 'me', 'a', 'letter', 'like', 'this', '||period||', 'maybe', 'i', 'was', 'wrong', 'about', 'her', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pushing', 'jerry', 'towards', 'the', 'phone', '||rightparen||', 'yeah', '||exclammark||', 'get', 'in', 'there', 'and', 'give', 'her', 'a', 'call', '||period||', 'pick', 'up', 'the', 'phone', 'and', 'call', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'should', 'i', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'screaming', '||rightparen||', 'yes', '||exclammark||', "you're", 'damn', 'right', 'you', 'should', '||exclammark||', '||leftparen||', 'hysterically', '||rightparen||', 'fight', 'for', 'her', '||comma||', 'jerry', '||comma||', "she's", 'sure', 'as', 'hell', 'fighting', 'for', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||exclammark||', "i'll", 'call', 'her', '||period||', '||return||', '||return||', '[cut', 'to:', "jerry's", 'apartment', '||comma||', 'another', 'day', '||period||', 'jerry', 'is', 'helping', 'nina', 'put', 'on', 'her', 'coat', '||period||', 'the', 'tv', 'is', 'on', 'a', 'horse', 'race', '||period||', ']', '||return||', '||return||', 'jerry:', 'shot', '||exclammark||', '||leftparen||', 'the', 'sound', 'of', 'a', 'shot', 'on', 'the', 'tv', 'is', 'heard', '||rightparen||', 'i', 'told', 'ya', '||exclammark||', '||leftparen||', 'the', 'inter', '||dash||', 'com', 'buzzes', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'intercom', '||rightparen||', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||leftparen||', 'to', 'nina', '||rightparen||', 'well', '||comma||', 'now', 'we', 'gotta', 'get', 'a', 'posse', 'together', '||period||', 'i', 'love', 'a', 'good', 'posse', '||period||', '||return||', '||return||', 'nina:', "what's", 'the', 'appeal', 'of', 'the', 'posse', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'appeal', 'of', 'the', 'posse', '||questionmark||', 'the', 'posse', 'has', 'tremendous', 'appeal', '||period||', 'get', 'away', 'from', 'the', 'job', '||comma||', 'camp', 'out', '||comma||', "you're", 'with', 'your', 'friends', '||period||', '||period||', '||period||', 'come', 'on', '||comma||', "it's", 'a', 'week', '||dash||', 'long', 'game', 'of', 'hide', '||dash||', 'and', '||dash||', 'seek', 'on', 'horseback', '||period||', '||return||', '||return||', 'nina:', 'hello', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'nina', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', 'i', 'owe', 'you', 'some', 'money', '||comma||', "don't", 'i', '||questionmark||', '||return||', '||return||', 'nina:', 'well', '||comma||', 'i', 'really', 'love', 'that', 'piece', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||comma||', 'me', 'too', '||comma||', 'me', 'too', '||period||', 'boy', 'oh', 'boy', 'oh', 'boy', '||period||', '||period||', '||period||', '||exclammark||', 'you', 'know', '||comma||', 'in', 'fact', '||comma||', "i've", 'been', 'thinking', 'about', 'it', '||comma||', 'and', 'i', 'feel', 'like', "i'm", 'stealing', 'from', 'you', '||exclammark||', 'five', '||dash||', 'hundred', 'dollars', '||exclammark||', "it's", 'gonna', 'be', 'worth', 'thousands', 'soon', '||exclammark||', 'you', 'know', 'what', '||questionmark||', 'on', 'second', 'thought', '||comma||', 'i', "can't", 'even', 'accept', 'it', '||period||', '||return||', '||return||', 'nina:', 'no', '||comma||', 'no', 'no', 'no', '||comma||', 'george', '||exclammark||', 'a', "deal's", 'a', 'deal', '||period||', 'i', 'want', 'you', 'to', 'have', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'this', 'could', 'be', 'in', 'a', 'museum', 'some', 'day', '||exclammark||', "it's", 'not', 'safe', 'with', 'me', '||exclammark||', 'it', 'should', 'really', 'be', 'in', 'a', 'doormanned', 'building', '||period||', '||return||', '||return||', 'nina:', 'honestly', '||comma||', 'george', '||comma||', 'the', "money's", 'not', 'important', '||period||', '||return||', '||return||', 'george:', 'who', 'said', 'anything', 'about', 'money', '||questionmark||', '||leftparen||', 'intercom', 'buzzes', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'intercom', '||rightparen||', "it's", 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'nina:', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'nina:', '||leftparen||', 'rolling', 'eyes', '||rightparen||', 'this', 'person', 'does', 'not', 'believe', 'in', 'telephones', '||comma||', 'does', 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'likes', 'the', 'pop', '||dash||', 'in', '||period||', "i've", 'told', 'her', 'how', 'i', 'hate', 'the', 'pop', '||dash||', 'in', '||period||', '||leftparen||', 'pointing', 'to', 'george', '||rightparen||', 'he', 'likes', 'the', 'pop', '||dash||', 'in', '||comma||', 'too', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'popped', 'in', 'now', '||period||', "i'm", 'a', 'big', 'pop', '||dash||', 'in', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'how', "'bout", 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'huge', 'pop', '||dash||', 'in', 'guy', '||exclammark||', '||return||', '||return||', 'nina:', 'well', '||comma||', 'i', 'was', 'leaving', 'anyway', '||comma||', 'so', '||comma||', 'uh', '||comma||', "we're", 'on', 'for', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'nina:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||exclammark||', '||return||', '||return||', 'nina:', 'bye', '||period||', '||leftparen||', 'just', 'as', 'nina', 'is', 'about', 'to', 'leave', '||comma||', 'elaine', 'walks', 'in', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'nina', '||rightparen||', 'hello', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastic', '||rightparen||', 'chatty', 'gal', '||period||', '||leftparen||', 'beat', '||rightparen||', "lippman's", 'coming', 'back', 'tomorrow', '||comma||', "i'll", 'be', 'fired', '||exclammark||', '||return||', '||return||', 'jerry:', 'if', 'he', 'noticed', '||comma||', 'he', 'would', 'have', 'called', 'you', 'from', 'houston', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'he', 'wants', 'to', 'torture', 'me', '||period||', '||return||', '||return||', '[cut', 'to:', 'later', 'on', 'that', 'night', '||period||', 'george', '||comma||', 'elaine', '||comma||', 'and', 'jerry', 'are', 'watching', 'tv', '||period||', 'jerry', '||comma||', 'with', 'the', 'remote', '||comma||', 'is', 'furiously', 'flipping', 'through', 'channels', '||period||', ']', '||return||', '||return||', 'elaine:', '||leftparen||', 'annoyed', '||rightparen||', 'oh', '||exclammark||', 'would', 'you', 'gimme', 'the', 'clicker', '||questionmark||', 'i', 'hate', 'it', 'when', "you're", 'the', 'clicker', '||exclammark||', 'you', 'go', 'too', 'fast', '||exclammark||', '||leftparen||', 'elain', 'makes', 'a', 'grab', 'for', 'the', 'clicker', '||comma||', 'instigating', 'a', 'tug', '||dash||', 'o', '||dash||', 'war', 'between', 'elaine', 'and', 'jerry', 'over', 'the', 'clicker', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tugging', 'at', 'the', 'clicker', '||rightparen||', "i'm", 'a', 'great', 'clicker', '||exclammark||', '||leftparen||', 'gets', 'the', 'clicker', 'back', '||rightparen||', 'great', 'instincts', '||period||', 'how', 'dare', 'you', 'impune', 'my', 'clicking', '||period||', '||return||', '||return||', 'elaine:', "you're", 'all', 'over', 'the', 'dial', '||exclammark||', 'you', "don't", 'know', 'what', 'you', 'want', '||exclammark||', "i've", 'never', 'seen', 'you', 'stay', 'on', 'anything', 'for', 'more', 'than', '5', 'seconds', '||period||', 'gimme', 'that', '||period||', '||return||', '||return||', 'jerry:', 'let', 'go', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'come', 'on', '||exclammark||', 'i', 'want', 'it', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'let', 'go', '||comma||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', 'at', 'least', 'let', 'george', 'do', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'george', "can't", 'click', '||exclammark||', '||leftparen||', 'george', 'joins', 'in', 'the', 'fight', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'as', 'jerry', 'and', 'elaine', 'continue', 'to', 'whine', '||rightparen||', 'give', 'it', '||exclammark||', 'give', 'it', '||exclammark||', '||leftparen||', 'he', 'finally', 'gets', 'the', 'remote', 'away', 'from', 'them', '||rightparen||', 'pinheads', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'wait', 'a', 'second', '||exclammark||', 'go', 'back', '||comma||', 'go', 'back', 'to', 'that', '||period||', '||leftparen||', 'they', 'watch', 'it', 'a', 'little', 'longer', '||rightparen||', '||return||', '||return||', 'elaine:', "it's", 'chapter', '2', '||comma||', "it's", 'neil', 'simon', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'to', 'something', '||rightparen||', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'wait', 'a', 'second', '||exclammark||', '||exclammark||', '||leftparen||', 'he', 'watches', 'the', 'tv', 'for', 'another', 'minute', '||rightparen||', 'the', 'letter', '||comma||', "that's", 'the', 'letter', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'letter', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'the', 'letter', 'she', 'wrote', 'to', 'me', '||comma||', 'she', 'stole', 'it', 'right', 'from', 'the', 'movie', '||exclammark||', '||return||', '||return||', 'jerry:', '||quotemark||', '||period||', '||period||', '||period||', "'cause", 'you', "don't", 'even', 'make', 'the', 'slightest', 'effort', 'to', 'offer', 'happiness', 'still', 'know', 'that', 'i', 'love', 'you', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george:', 'this', 'is', 'incredible', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'always', 'thought', 'there', 'was', 'something', 'funny', 'about', 'this', 'letter', '||exclammark||', 'she', 'copied', 'it', 'right', 'out', 'of', 'chapter', '2', '||exclammark||', 'she', 'a', 'thief', '||comma||', 'a', 'bunko', '||dash||', 'artist', '||exclammark||', '||return||', '||return||', 'george:', 'maybe', 'i', "won't", 'send', 'her', 'that', 'check', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', "it's", 'not', 'really', 'that', 'terrible', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'she', 'completely', 'misrepresented', 'herself', '||exclammark||', '||leftparen||', 'mimicking', 'the', 'letter', '||rightparen||', 'i', "don't", 'offer', 'happiness', '||period||', 'i', 'offer', 'happiness', '||exclammark||', 'james', 'caan', "doesn't", 'offer', 'happiness', '||exclammark||', '||return||', '||return||', '[cut', 'to:', "lippman's", 'office', '||period||', 'lippman', 'is', 'on', 'the', 'phone', 'when', 'elaine', 'walks', 'in', 'and', 'places', 'something', 'on', 'his', 'desk', '||period||', 'after', 'she', 'does', '||comma||', 'she', 'tries', 'to', 'leave', 'but', 'lippman', '||comma||', 'still', 'on', 'the', 'phone', '||comma||', 'motions', 'for', 'her', 'to', 'stay', 'in', 'the', 'room]', '||return||', '||return||', 'lippman:', '||leftparen||', 'into', 'phone', '||rightparen||', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'yeah', '||period||', 'but', 'she', "wouldn't", 'take', 'the', 'cap', 'off', '||questionmark||', '||leftparen||', 'beat', '||rightparen||', 'but', "didn't", 'she', 'know', 'they', 'were', 'the', "owner's", 'seats', '||questionmark||', '||leftparen||', 'beat', '||rightparen||', 'aw', '||comma||', "that's", 'unbelievable', '||period||', '||leftparen||', 'beat', '||rightparen||', 'yeah', '||period||', 'okay', '||period||', 'alright', 'lenny', '||comma||', 'thanks', 'again', '||period||', 'take', 'care', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||comma||', 'and', 'then', '||comma||', 'to', 'elaine', '||rightparen||', 'that', 'was', 'lenny', 'west', '||comma||', 'my', 'accountant', '||comma||', 'who', 'is', 'a', 'hell', 'of', 'a', 'guy', '||period||', 'and', 'he', 'handles', 'the', 'yankees', 'too', '||semicolon||', "it's", 'his', 'biggest', 'account', '||period||', 'so', 'every', 'once', 'in', 'a', 'while', 'they', 'throw', 'him', 'a', 'couple', 'of', 'seats', 'and', 'last', 'weekend', 'he', 'gave', 'them', 'to', 'his', 'daughter', '||period||', "she's", 'an', 'artist', '||comma||', 'by', 'the', 'way', '||period||', 'anyway', '||comma||', 'her', 'daughter', 'gives', "'em", 'to', 'some', 'friends', '||comma||', 'you', 'know', '||period||', 'one', 'of', 'her', 'friends', 'shows', 'up', 'wearing', 'a', 'baltimore', 'cap', '||exclammark||', '||leftparen||', 'beat', '||rightparen||', "you're", 'from', 'baltimore', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'oh', '||comma||', "it's", 'townscend', '||comma||', 'which', 'is', 'near', 'baltimore', '||period||', '||return||', '||return||', 'lippman:', 'yeah', '||comma||', 'but', "you're", 'an', 'oriole', 'fan', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'uh', '||comma||', 'fan', '||period||', 'my', 'father', '||dash||', '||dash||', '||return||', '||return||', 'lippman:', 'anyway', '||comma||', 'she', 'refused', 'to', 'take', 'the', 'cap', 'off', '||semicolon||', 'caused', 'a', 'whole', 'big', 'scene', '||exclammark||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'lippman:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'so', '||period||', '||period||', '||period||', 'impudent', '||period||', '||return||', '||return||', 'lippman:', 'yeah', '||comma||', 'so', 'lenny', 'gave', 'me', 'the', 'tickets', 'for', 'tomorrow', 'night', '||period||', "i'm", 'inviting', 'frank', 'and', 'marsha', '||period||', "'wantcha", 'to', 'come', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'ah', '||period||', "i've", '||dash||', "i've", 'got', 'plans', '||comma||', 'though', '||comma||', 'mr', '||period||', 'li', '||dash||', '||dash||', '||return||', '||return||', 'lippman:', 'well', '||comma||', 'break', "'em", '||period||', 'you', 'missed', 'the', 'bris', '||comma||', 'i', 'want', 'you', 'at', 'the', 'game', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'very', 'reluctant', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'lippman:', 'good', '||period||', '||leftparen||', 'elaine', 'stars', 'to', 'leave', '||rightparen||', 'oh', '||dash||', '||dash||', 'and', 'elaine', '||period||', 'you', 'know', 'the', 'baltimore', 'cap', 'you', 'got', 'in', 'your', 'office', '||questionmark||', 'wear', 'it', '||period||', "i'm", 'gonna', 'have', 'a', 'little', 'fun', 'with', 'him', '||period||', '||return||', '||return||', 'elaine:', 'that', 'will', 'be', 'fun', '||period||', '||return||', '||return||', '[cut', 'to:', "nina's", 'studio', '||period||', 'nina', 'is', 'working', 'on', 'a', 'painting', '||period||', 'jerry', 'is', 'watching', 'her', '||comma||', 'sitting', 'on', 'the', 'sofa', '||period||', ']', '||return||', '||return||', 'jerry:', "how's", 'it', 'coming', '||questionmark||', '||return||', '||return||', 'nina:', 'good', '||comma||', 'good', '||period||', '||return||', '||return||', 'jerry:', 'seen', 'any', 'good', 'movies', 'lately', '||questionmark||', '||return||', '||return||', 'nina:', 'no', '||period||', '||period||', '||period||', 'not', 'really', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'like', 'a', 'good', 'comedy', '||period||', 'you', 'know', '||comma||', 'like', 'a', 'neil', 'simon', '||questionmark||', 'you', 'like', 'neil', 'simon', '||questionmark||', '||return||', '||return||', 'nina:', 'neil', 'simon', '||questionmark||', 'uh', '||comma||', 'some', 'of', 'his', 'stuff', '||period||', '||return||', '||return||', 'jerry:', "i've", 'seen', 'most', 'of', 'it', '||period||', 'i', 'guess', 'my', 'favorite', 'would', 'have', 'to', 'be', '||comma||', 'uh', '||period||', '||period||', '||period||', 'chapter', '2', '||period||', 'have', 'you', 'ever', 'seen', 'that', '||questionmark||', '||return||', '||return||', 'nina:', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'maybe', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', '||period||', 'funny', '||comma||', 'funny', '||period||', 'in', 'fact', 'it', 'was', 'on', 'tv', 'just', 'the', 'other', 'night', '||period||', 'happened', 'to', 'catch', 'it', '||period||', '||leftparen||', 'a', 'knock', 'is', 'heard', 'at', 'the', 'door', '||rightparen||', 'i', "couldn't", 'help', 'notice', 'a', 'stunning', 'similiarity', '||dash||', '||dash||', '||leftparen||', 'jerry', 'is', 'interrupted', 'as', 'nina', 'opens', 'answer', 'the', 'door', '||period||', '||period||', '||period||', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'arm:', 'well', '||comma||', "we've", 'made', 'our', 'decision', '||period||', 'we', 'want', '||quotemark||', 'the', 'kramer', '||period||', '||quotemark||', '||return||', '||return||', '[cut', 'to:', "jerry's", 'apartment', '||comma||', 'night', '||period||', 'jerry', 'and', 'george', 'are', 'watching', 'a', 'baseball', 'game', 'and', 'talking', '||period||', ']', '||return||', '||return||', 'george:', 'five', '||dash||', 'thousand', '||questionmark||', 'why', 'would', 'anybody', 'buy', 'kramer', 'for', '$5000', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'the', 'yankees', 'cannot', 'buy', 'a', 'hit', 'tonight', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'is', 'it', 'all', 'over', 'between', 'you', 'and', '||period||', '||period||', '||period||', 'marsha', 'mason', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'picks', 'up', "nina's", 'painting', 'george', 'bought', '||rightparen||', 'and', 'by', 'the', 'way', '||comma||', 'can', 'you', 'get', 'this', 'thing', 'outta', 'my', 'house', '||questionmark||', '||return||', '||return||', 'george:', 'tell', 'you', 'what', '||comma||', "i'll", 'make', 'a', 'deal', 'with', 'you', '||period||', "i'll", 'sell', 'it', 'to', 'you', 'right', 'now', 'for', 'ten', 'bucks', '||period||', '||return||', '||return||', 'tvvoice:', 'uh', '||comma||', "there's", 'seems', 'to', 'be', 'a', 'lot', 'of', 'trouble', 'in', 'the', 'area', 'just', 'behind', 'the', 'yankee', 'dugout', '||period||', '||return||', '||return||', 'george:', 'behind', 'the', 'dugout', '||comma||', "that's", 'where', 'we', 'were', 'sitting', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'tvvoice:', 'well', '||comma||', "we're", 'not', 'going', 'to', 'show', 'it', '||comma||', 'we', "don't", 'want', 'to', 'encourage', 'that', 'kind', 'of', 'behavior', '||period||', 'say', '||comma||', "it's", 'a', 'young', 'lady', '||comma||', 'and', 'boy', "she's", 'really', 'going', 'at', 'it', 'with', 'the', 'security', 'guard', '||period||', "she's", 'a', 'fiesty', 'one', '||period||', 'and', 'now', "they're", 'getting', 'the', 'other', 'security', 'guard', 'to', 'come', 'down', '||period||', 'how', 'do', 'you', 'like', 'that', 'seegers', '||questionmark||', 'boy', '||comma||', "she's", 'someting', '||period||', '||leftparen||', 'beat', '||rightparen||', 'and', 'a', 'ball', 'to', 'left', 'field', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', '[cut', 'to:', 'the', "armstrong's", 'dining', 'room', '||period||', 'mr', '||period||', 'and', 'mrs', '||period||', 'armstrong', 'are', 'having', 'kramer', 'over', 'for', 'dinner', '||period||', ']', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'then', '||comma||', 'when', 'i', 'was', 'seventeen', '||comma||', 'i', 'ran', 'away', 'from', 'home', 'and', 'hopped', 'a', 'steamship', 'to', 'sweden', '||period||', '||leftparen||', 'beat', '||rightparen||', 'this', 'steak', 'is', 'excellent', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'mrs', '||period||', 'arm:', 'more', 'potatoes', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'sure', '||period||', 'please', '||period||', '||return||', '||return||', 'mr', '||period||', 'arm:', 'yes', '||comma||', 'yes', '||period||', 'go', 'on', '||period||', 'you', 'hopped', 'a', 'steamship', 'to', 'sweden', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'beat', '||rightparen||', 'and', '||comma||', 'it', 'was', 'a', 'big', 'one', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'i', 'got', 'some', 'bad', 'news', 'for', 'you', '||comma||', 'buddy', '||period||', 'i', 'think', 'your', 'car', 'got', 'stolen', 'again', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'parked', 'it', 'on', 'eighty', '||dash||', 'fourth', 'and', 'columbus', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yep', '||comma||', 'well', 'i', 'just', 'walked', 'by', 'there', 'and', 'that', 'car', 'is', 'gone', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "there's", 'no', 'difference', '||comma||', 'you', 'know', '||comma||', "i'm", 'just', 'curious', '||period||', '||return||', '||return||', 'jerry:', 'you', 'always', 'have', 'to', 'know', 'everything', "that's", 'going', 'on', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'happened', 'to', 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'i', "don't", 'tell', 'you', 'it', 'will', 'kill', 'you', '||comma||', "won't", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', "it'll", 'kill', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'to', 'know', '||comma||', 'you', 'must', 'know', '||period||', '||return||', '||return||', 'kramer:', 'i', 'must', 'know', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'not', 'telling', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'nope', '||period||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'today', '||comma||', 'pal', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'i', 'beg', 'you', '||period||', '||return||', '||return||', 'jerry:', 'now', 'see', '||questionmark||', 'just', 'saying', 'beg', "doesn't", 'make', 'it', 'a', 'real', 'beg', '||period||', 'you', 'gotta', 'put', 'some', 'beg', 'into', 'it', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'please', '||exclammark||', 'please', 'tell', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'tell', 'you', '||comma||', 'but', 'your', 'begging', 'needs', 'a', 'lot', 'of', 'work', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'okay', '||comma||', 'what', 'is', 'it', '||questionmark||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'i', 'loaned', 'the', 'car', 'to', 'george', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'george', '||comma||', 'alright', '||period||', 'well', '||comma||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'and', 'elaine', 'went', 'to', 'a', 'flea', 'market', 'in', 'westchester', '||comma||', 'okay', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'huh', '||period||', 'i', 'mean', '||comma||', 'what', 'do', 'they', 'want', 'to', 'go', 'there', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'will', 'you', 'stop', 'it', 'already', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'why', "didn't", 'they', 'ask', 'me', 'to', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||exclammark||', 'how', 'am', 'i', 'supposed', 'to', 'know', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'they', "don't", 'like', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', '*i*', "don't", 'like', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', 'if', 'they', 'like', 'me', '||comma||', 'why', "don't", 'they', 'ask', 'me', 'to', 'go', '||questionmark||', 'oh', 'yeah', '||period||', '||return||', '||return||', 'george:', 'i', 'really', 'think', 'it', 'looks', 'good', '||period||', '||return||', '||return||', 'elaine:', 'ten', 'bucks', '||comma||', 'how', 'can', 'you', 'go', 'wrong', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'bald', 'people', 'look', 'good', 'in', 'hats', '||period||', '||return||', '||return||', 'elaine:', 'you', 'should', 'have', 'lived', 'in', 'the', 'twenties', 'and', 'thirties', '||comma||', 'you', 'know', 'men', 'wore', 'hats', 'all', 'the', 'time', 'then', '||period||', '||return||', '||return||', 'george:', 'what', 'a', 'bald', 'paradise', 'that', 'must', 'have', 'been', '||period||', 'nobody', 'knew', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'can', 'wear', 'a', 'hat', 'all', 'the', 'time', 'now', '||period||', "who's", 'stopping', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "can't", '||period||', 'what', 'if', 'i', 'meet', 'a', 'woman', '||questionmark||', "i'd", 'always', 'be', 'worried', 'about', 'that', 'first', 'moment', 'where', "i'd", 'take', 'it', 'off', 'and', 'see', 'that', 'look', 'of', 'disappointment', 'on', 'her', 'face', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'sure', 'you', 'like', 'these', 'sunglasses', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "i'm", 'very', 'disappointed', 'in', 'george', 'and', 'elaine', '||period||', 'and', 'you', 'know', "i'm", 'somebody', 'you', "don't", 'want', 'to', 'have', 'on', 'your', 'bad', 'side', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "i'm", 'like', 'ice', '||comma||', 'buddy', '||period||', 'when', 'i', "don't", 'like', 'you', '||comma||', "you've", 'got', 'problems', '||period||', '||leftparen||', 'notices', 'some', 'snacks', 'on', 'the', 'table', '||rightparen||', 'oh', '||comma||', 'is', 'this', 'for', 'the', 'fight', '||questionmark||', '||return||', '||return||', 'jerry:', 'yep', '||period||', '||leftparen||', 'checks', 'watch', '||rightparen||', 'starts', 'in', 'thirty', '||dash||', 'five', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'hey', '||comma||', 'you', 'know', 'i', 'invited', 'mike', 'moffit', '||period||', 'you', "don't", 'mind', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'like', 'mike', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'just', 'got', 'off', 'the', 'phone', 'with', 'him', '||comma||', 'you', 'know', 'we', 'had', 'a', 'great', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||questionmark||', 'what', 'did', 'you', 'talk', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'actually', 'we', 'talked', 'about', 'you', '||period||', 'yeah', '||period||', 'he', 'had', 'some', 'pretty', 'interesting', 'things', 'to', 'say', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||questionmark||', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'have', 'to', 'know', 'everything', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'come', 'on', '||comma||', 'kramer', '||period||', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', 'is', 'that', '||questionmark||', 'why', 'do', 'you', 'have', 'to', 'know', 'everything', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'just', 'tell', 'me', 'what', 'the', 'guy', 'said', '||period||', '||return||', '||return||', 'kramer:', 'beg', 'me', '||period||', '||return||', '||return||', 'jerry:', 'please', '||comma||', "don't", 'make', 'me', 'beg', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||comma||', 'i', 'want', 'you', 'to', 'beg', 'me', '||period||', 'and', 'i', "don't", 'want', 'you', 'to', 'say', 'it', '||comma||', 'i', 'just', 'want', 'you', 'to', 'put', 'some', 'beg', 'into', 'it', '||period||', 'go', 'on', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'please', 'tell', 'me', 'what', 'the', 'guy', 'said', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||comma||', "that's", 'no', 'good', '||period||', 'no', '||comma||', 'i', 'really', "don't", 'think', "that's", 'a', 'beg', '||period||', 'no', '||comma||', "it's", 'close', '||comma||', 'but', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'i', "can't", 'say', 'anything', '||period||', 'you', 'know', '||comma||', 'the', 'guy', 'told', 'me', 'the', 'stuff', 'in', 'confidence', '||comma||', "i'd", 'be', 'betraying', 'a', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'well', 'you', "can't", 'just', 'mention', 'it', 'and', 'then', 'not', 'tell', 'me', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||period||', "i'll", 'tell', 'you', 'but', 'you', "can't", 'say', 'anything', 'to', 'him', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'saying', 'anything', '||comma||', "i'm", 'putting', 'it', 'in', 'the', 'vault', '||comma||', "i'm", 'locking', 'the', 'vault', '||comma||', "it's", 'a', 'vault', '||exclammark||', '||return||', '||return||', 'kramer:', 'he', 'thinks', "you're", 'a', 'phony', '||period||', '||return||', '||return||', 'jerry:', 'he', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', '||comma||', 'he', 'thinks', "you're", 'a', 'phony', '||period||', '||return||', '||return||', 'jerry:', 'a', 'phony', '||questionmark||', 'he', 'called', 'me', 'a', 'phony', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'big', 'phone', '||period||', 'a', 'big', 'one', '||period||', '||return||', '||return||', 'jerry:', 'why', 'did', 'you', 'tell', 'me', 'that', 'if', 'i', "can't", 'say', 'anything', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'begged', 'me', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'of', 'course', 'i', 'hear', 'that', '||period||', '||return||', '||return||', 'george:', 'you', 'had', 'to', 'move', 'the', 'mirror', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'wanted', 'to', 'check', 'out', 'my', 'sunglasses', '||period||', '||return||', '||return||', 'george:', 'i', 'went', 'to', 'look', 'in', 'the', 'mirror', '||comma||', 'it', "wasn't", 'there', '||period||', 'you', 'threw', 'off', 'my', 'equilibrium', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'blame', 'it', 'on', 'me', 'because', 'you', "can't", 'drive', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'drive', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'nobody', 'drives', 'like', 'me', '||period||', 'nobody', '||period||', "i'm", 'doing', 'things', 'in', 'this', 'car', '||comma||', 'you', 'have', 'no', 'idea', "they're", 'going', 'on', '||period||', 'wanna', 'see', 'me', 'make', 'a', 'right', 'turn', 'from', 'the', 'left', 'lane', '||questionmark||', 'watch', 'this', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'really', "don't", '||period||', '||return||', '||return||', 'george:', 'and', 'i', 'can', 'make', 'a', 'left', 'turn', 'from', 'the', 'right', 'lane', 'too', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sure', 'you', 'could', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'we', 'gonna', 'tell', 'jerry', 'about', 'the', 'car', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'start', 'looking', 'for', 'spaces', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "you're", 'never', 'gonna', 'find', 'a', 'space', 'on', "jerry's", 'block', '||comma||', 'just', 'put', 'it', 'in', 'a', 'garage', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'i', 'have', 'my', 'system', '||period||', 'first', 'i', 'look', 'for', 'the', 'dream', 'spot', 'right', 'in', 'front', 'of', 'the', 'door', '||comma||', 'then', 'i', 'slowly', 'expand', 'out', 'in', 'concentric', 'circles', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'come', 'on', '||comma||', 'george', '||comma||', 'please', 'put', 'it', 'in', 'a', 'garage', '||period||', 'i', "don't", 'want', 'to', 'spend', 'an', 'hour', 'looking', 'for', 'a', 'space', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'park', 'in', 'a', 'garage', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'i', 'just', "can't", '||period||', 'nobody', 'in', 'my', 'family', 'can', 'pay', 'for', 'parking', '||comma||', "it's", 'a', 'sickness', '||period||', 'my', 'father', 'never', 'paid', 'for', 'parking', '||semicolon||', 'my', 'mother', '||comma||', 'my', 'brother', '||comma||', 'nobody', '||period||', 'we', "can't", 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'understand', '||period||', 'a', 'garage', '||period||', 'i', "can't", 'even', 'pull', 'in', 'there', '||period||', "it's", 'like', 'going', 'to', 'a', 'prostitute', '||period||', 'why', 'should', 'i', 'pay', '||comma||', 'when', 'if', 'i', 'apply', 'myself', '||comma||', 'maybe', 'i', 'could', 'get', 'it', 'for', 'free', '||questionmark||', '||leftparen||', 'he', 'hears', 'a', 'horn', 'honking', '||rightparen||', 'what', '||questionmark||', 'what', 'do', 'you', 'want', '||questionmark||', 'go', 'around', 'me', '||comma||', "i'm", 'looking', 'for', 'spaces', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'backwards', '||rightparen||', 'oh', 'george', '||comma||', "there's", 'a', 'space', 'right', 'there', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'putting', 'the', 'car', 'in', 'reverse', '||rightparen||', 'oh', 'beautiful', '||exclammark||', 'look', 'at', 'that', '||comma||', 'the', 'dream', 'space', 'right', 'in', 'front', 'of', "jerry's", 'building', '||period||', 'huh', '||questionmark||', 'dreams', 'can', 'come', 'true', '||comma||', 'what', 'did', 'i', 'tell', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "didn't", 'even', 'have', 'to', 'take', 'it', 'out', 'to', 'dinner', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'now', "you're", 'gonna', 'see', 'some', 'parallel', 'parking', '||period||', '||leftparen||', 'spitting', 'into', 'his', 'hands', 'and', 'rubbing', 'them', 'together', '||rightparen||', 'how', 'i', 'wish', 'you', 'could', 'make', 'a', 'living', 'parallel', 'parking', '||period||', '||leftparen||', 'turning', 'around', 'in', 'his', 'seat', '||rightparen||', "it's", 'all', 'geometry', '||comma||', 'knowing', 'all', 'the', 'angles', '||comma||', 'when', 'to', 'make', 'that', 'first', 'turn', 'and', 'then', 'when', 'to', 'swing', 'it', 'back', 'in', '||comma||', "that's", 'the', 'key', '||period||', '||return||', '||return||', 'elaine:', 'will', 'you', 'just', 'park', 'it', 'already', '||questionmark||', '||return||', '||return||', 'george:', "there's", 'nothing', 'i', 'can', 'even', 'impart', 'to', 'you', '||comma||', "that's", 'the', 'sad', 'thing', '||period||', "it's", 'so', 'inborn', '||comma||', 'i', "can't", 'pass', 'it', 'on', '||period||', '||leftparen||', 'begins', 'backing', 'into', 'the', 'space', '||rightparen||', 'look', 'at', 'this', 'guy', '||period||', 'are', 'you', 'crazy', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', 'hey', '||exclammark||', 'hey', '||comma||', "you're", 'stealing', 'my', 'space', '||exclammark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'wait', '||comma||', 'you', "don't", 'know', 'who', 'this', 'guy', 'is', '||comma||', 'people', 'kill', 'for', 'a', 'parking', 'space', 'in', 'this', 'city', '||period||', '||return||', '||return||', 'george:', 'no', 'no', 'no', '||comma||', "he's", 'not', 'getting', 'away', 'with', 'this', '||period||', '||return||', '||return||', 'elaine:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'mike:', 'i', 'think', "i'm", 'parking', 'my', 'car', '||period||', '||return||', '||return||', 'george:', 'you', "can't", 'do', 'that', '||comma||', 'you', "can't", 'just', 'sneak', 'in', 'from', 'the', 'back', 'like', 'that', '||period||', '||return||', '||return||', 'mike:', "i'm", 'not', 'sneaking', '||period||', 'i', "didn't", 'even', 'know', 'you', 'were', 'parking', '||comma||', 'you', 'were', 'just', 'sitting', 'there', 'three', 'spaces', 'up', '||period||', '||return||', '||return||', 'george:', 'well', 'if', 'you', "didn't", 'think', 'i', 'was', 'parking', '||comma||', 'why', 'did', 'you', 'put', 'it', 'in', 'head', 'first', '||questionmark||', '||return||', '||return||', 'mike:', 'well', "that's", 'the', 'way', 'i', 'park', '||period||', 'anyway', '||comma||', 'you', "didn't", 'start', 'backing', 'in', 'until', 'i', 'pulled', 'in', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'in', 'the', 'middle', 'of', 'a', 'conversation', '||period||', '||return||', '||return||', 'mike:', 'hey', '||comma||', 'buddy', '||comma||', 'what', 'can', 'i', 'tell', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'point', 'is', 'i', 'was', 'here', 'first', '||period||', '||return||', '||return||', 'mike:', 'i', 'was', 'closer', 'to', 'this', 'space', 'than', 'you', 'were', '||period||', '||return||', '||return||', 'george:', 'but', "i'm", 'backing', 'in', '||exclammark||', 'you', "can't", 'put', 'it', 'in', 'head', 'first', '||exclammark||', '||return||', '||return||', 'mike:', 'i', 'can', 'if', 'i', 'have', 'room', '||exclammark||', '||return||', '||return||', 'george:', 'are', 'you', 'gonna', 'move', 'the', 'car', '||questionmark||', '||return||', '||return||', 'mike:', 'no', '||comma||', "i'm", 'not', 'gonna', 'move', 'the', 'car', '||period||', '||return||', '||return||', 'george:', 'jerk', '||exclammark||', '||return||', '||return||', 'mike:', 'oh', '||comma||', "you're", 'not', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'you', 'believe', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', "we'll", 'put', 'it', 'in', 'a', 'garage', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'not', 'putting', 'it', 'in', 'a', 'garage', '||comma||', "it's", 'my', 'space', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'gonna', 'do', '||comma||', 'you', 'just', 'gonna', 'leave', 'it', 'here', 'like', 'this', '||questionmark||', 'uh', '||period||', "i'm", 'going', 'upstairs', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'coming', 'back', 'down', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'gotta', 'tell', 'jerry', "we're", 'here', '||period||', 'i', 'gotta', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'just', 'make', 'sure', 'he', 'reserves', 'the', 'good', 'chair', 'for', 'me', '||period||', 'wait', '||comma||', 'what', 'are', 'you', 'gonna', 'tell', 'him', 'about', 'the', 'clanking', 'noise', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'elaine:', 'me', '||questionmark||', 'no', 'no', 'no', '||comma||', 'you', '||period||', "you're", 'gonna', 'tell', 'him', '||period||', "i'm", 'not', 'gonna', 'tell', '||dash||', 'noo', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'come', 'on', '||comma||', "you're", 'good', 'at', 'this', '||period||', '||return||', '||return||', 'elaine:', 'what', 'am', 'i', 'gonna', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'i', "don't", 'know', '||comma||', "you'll", 'think', 'of', 'something', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||comma||', 'i', 'need', 'a', 'drink', '||comma||', 'do', 'you', 'got', 'any', "hennigan's", 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'under', 'the', 'counter', '||period||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||period||', 'oh', '||comma||', 'jerry', 'it', 'was', 'so', 'terrible', 'what', 'we', 'just', 'went', 'through', 'on', 'the', 'way', 'home', '||period||', '||leftparen||', 'pouring', 'a', 'big', 'shot', 'of', 'scotch', '||rightparen||', 'you', "wouldn't", 'believe', 'it', '||period||', '||leftparen||', 'pushing', 'a', 'bag', 'of', 'chips', 'off', 'the', 'counter', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bending', 'down', 'to', 'pick', 'up', 'the', 'chips', '||rightparen||', 'tell', 'me', 'what', 'happened', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'after', 'pouring', 'the', 'shot', 'in', 'the', 'sink', 'while', 'jerry', 'was', 'distracted', 'and', 'pretending', 'to', 'have', 'downed', 'it', '||rightparen||', 'okay', '||period||', 'now', 'listen', '||period||', 'we', 'were', 'at', 'the', 'toll', 'booth', 'at', 'the', 'henry', 'hudson', 'parkway', '||comma||', 'okay', '||questionmark||', '||exclammark||', 'and', 'there', 'were', 'these', '||comma||', 'like', '||comma||', 'this', 'pack', 'of', 'extremely', 'wild', 'teenagers', 'in', 'a', 'convertible', 'behind', 'us', '||comma||', 'okay', '||questionmark||', '||exclammark||', 'and', 'for', 'some', 'reason', '||comma||', 'i', "don't", 'know', '||comma||', 'they', 'just', 'started', 'to', 'taunt', 'us', '||exclammark||', 'and', 'so', 'then', 'we', 'payed', 'the', 'toll', '||comma||', 'and', 'then', 'we', 'went', 'through', '||comma||', 'and', 'then', 'they', 'started', 'to', 'follow', 'us', '||comma||', 'alright', '||questionmark||', '||exclammark||', 'so', 'george', 'tries', 'to', 'lose', 'them', '||comma||', 'and', '||comma||', 'and', '||comma||', 'but', 'they', 'were', 'in', 'this', 'really', 'like', 'a', 'souped', 'up', 'car', '||comma||', 'you', 'know', '||questionmark||', '||exclammark||', 'and', 'so', 'he', 'turned', 'off', 'the', 'road', 'really', 'suddenly', 'and', 'the', 'car', 'was', 'on', 'two', 'wheels', 'and', 'i', 'was', 'just', 'screaming', '||exclammark||', 'and', 'then', '||comma||', 'george', 'is', 'such', 'a', 'great', 'driver', '||period||', '||return||', '||return||', 'jerry:', 'he', 'is', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'he', 'is', 'fantastic', '||exclammark||', 'and', 'then', 'they', 'fired', 'a', 'gun', 'right', 'up', 'in', 'the', 'air', '||period||', '||return||', '||return||', 'jerry:', 'a', 'gun', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'it', 'was', 'a', 'gun', '||period||', 'and', 'then', 'they', 'followed', 'us', 'all', 'the', 'way', 'into', 'the', 'city', '||comma||', 'and', 'then', 'they', 'just', 'stopped', 'and', 'they', 'turned', 'around', 'and', 'they', 'went', 'home', '||period||', '||return||', '||return||', 'jerry:', 'my', 'god', '||comma||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', "i'm", 'alright', '||period||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'the', 'car', 'hit', 'a', 'pothole', 'and', 'now', "it's", 'making', 'a', 'clanking', 'noise', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'mean', '||comma||', 'as', 'long', 'as', "you're", 'okay', '||comma||', 'that', '||comma||', "that's", 'the', 'important', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', "where's", 'george', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'out', 'in', 'front', 'of', 'the', 'building', '||period||', "he's", 'arguing', 'with', 'some', 'guy', 'about', 'a', 'parking', 'space', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'look', 'out', 'the', 'window', '||comma||', "you'll", 'see', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaning', 'out', 'the', 'window', '||rightparen||', 'hey', 'georgie', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "i'm", 'fine', '||period||', '||return||', '||return||', 'jerry:', 'crazy', 'kids', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'desperate', 'to', 'distract', 'jerry', '||rightparen||', 'ow', '||exclammark||', '||exclammark||', '||leftparen||', 'jerry', 'looks', 'over', '||rightparen||', "it's", 'my', 'cuticle', '||period||', '||return||', '||return||', 'mike:', 'is', 'that', 'jerry', '||questionmark||', 'jerry', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hey', 'mike', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'know', 'jerry', '||questionmark||', '||return||', '||return||', 'mike:', 'yeah', '||comma||', 'i', 'know', 'jerry', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', 'him', '||questionmark||', '||return||', '||return||', 'mike:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'i', 'know', 'him', 'too', '||comma||', 'and', 'probably', 'a', 'lot', 'better', 'than', 'you', '||period||', '||return||', '||return||', 'mike:', 'well', '||comma||', 'bully', 'for', 'you', '||period||', 'hey', '||comma||', 'jerry', '||exclammark||', 'you', 'know', 'your', 'friend', "here's", 'a', 'real', 'piece', 'of', 'work', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'coming', 'down', '||period||', '||return||', '||return||', 'mike:', 'hey', '||comma||', 'will', 'you', 'tell', 'kramer', "i'm", 'outside', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'know', 'kramer', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'acting', 'standoffish', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'your', 'friend', "mike's", 'outside', '||comma||', 'he', 'wants', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'out', 'the', 'window', '||rightparen||', 'hey', '||comma||', 'mike', '||exclammark||', 'come', 'on', 'up', '||comma||', 'the', "fight's", 'almost', 'starting', '||exclammark||', '||return||', '||return||', 'george:', 'and', "you're", 'watching', 'the', 'fight', 'at', "jerry's", '||questionmark||', '||return||', '||return||', 'mike:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'oh', 'great', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'that', 'guy', 'downstairs', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'a', 'real', 'phony', '||period||', '||return||', '||return||', 'kramer:', "what's", 'going', 'on', '||questionmark||', '||exclammark||', '||return||', '||return||', 'mike:', 'hey', '||comma||', 'will', 'you', 'come', 'on', 'down', '||questionmark||', 'this', "guy's", 'in', 'my', 'space', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'my', 'space', '||exclammark||', '||return||', '||return||', 'kramer:', "i'll", 'be', 'down', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'going', 'down', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'is', 'anything', 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaving', '||rightparen||', 'why', 'should', 'anything', 'be', 'wrong', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'heading', 'for', 'the', 'bathroom', '||rightparen||', 'be', 'down', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'mike:', 'hey', 'pal', '||comma||', "you're", 'not', 'getting', 'that', 'space', '||period||', 'i', 'mean', '||comma||', "i'll", 'sleep', 'in', 'my', 'car', 'if', 'i', 'have', 'to', '||period||', '||return||', '||return||', 'george:', "i'll", 'die', 'out', 'here', '||period||', '||return||', '||return||', 'bystander', '#1:', 'he', 'was', 'down', 'there', '||period||', 'once', 'he', 'passed', 'his', 'front', 'bumper', '||comma||', "it's", 'no', 'longer', 'his', 'space', '||period||', '||return||', '||return||', 'bystander', '#2:', 'no', '||comma||', 'it', "doesn't", 'matter', '||period||', 'he', 'was', '||dash||', '||return||', '||return||', 'mike:', 'hey', '||exclammark||', 'jerry', '||exclammark||', 'long', 'time', 'no', 'see', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', 'mike', '||period||', '||leftparen||', 'noticing', "george's", 'fedora', '||rightparen||', 'indiana', '||period||', '||return||', '||return||', 'mike:', 'hey', 'krame', '||exclammark||', 'you', 'know', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'know', 'him', '||period||', '||return||', '||return||', 'mike:', '||leftparen||', 'to', 'jerry', '||rightparen||', "you're", 'looking', 'tremendous', '||period||', 'what', 'are', 'you', 'on', 'some', 'kind', 'of', 'regimen', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'twenty', '||dash||', 'five', 'percent', 'bran', 'flakes', '||period||', 'the', 'forty', 'percent', 'was', 'too', 'much', 'so', 'i', 'found', 'a', 'store', 'to', 'mix', 'it', 'up', 'special', 'for', 'me', '||comma||', 'they', 'take', 'it', 'down', 'another', 'fifteen', 'percent', '||period||', '||return||', '||return||', 'mike:', '||leftparen||', 'laughing', 'way', 'too', 'loud', 'and', 'hard', '||rightparen||', 'ha', 'ha', 'ha', 'ha', '||exclammark||', '||exclammark||', '||exclammark||', "that's", 'killer', '||exclammark||', 'killer', '||exclammark||', 'i', 'love', 'that', '||exclammark||', 'ha', 'ha', 'ha', '||exclammark||', '||exclammark||', '||exclammark||', 'you', 'gotta', 'use', 'that', '||comma||', "that's", 'a', 'definite', '||exclammark||', '||exclammark||', 'ha', 'ha', 'ha', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'mike:', 'hey', '||exclammark||', 'your', 'friend', 'here', 'has', 'some', 'real', 'problems', '||period||', '||return||', '||return||', 'george:', 'me', '||questionmark||', 'you', 'see', 'what', 'he', 'did', 'here', '||comma||', 'you', 'see', 'how', 'he', 'tried', 'to', 'sneak', 'into', 'my', 'space', '||questionmark||', '||return||', '||return||', 'mike:', 'hey', '||comma||', 'just', "'cause", 'i', 'went', 'in', 'front', 'first', "doesn't", 'mean', "i'm", 'sneaking', 'in', '||period||', '||return||', '||return||', 'george:', 'you', 'only', 'went', 'in', 'front', 'first', "'cause", 'you', 'saw', 'me', 'backing', 'up', 'and', 'you', "didn't", 'have', 'room', 'to', 'parallel', 'park', '||exclammark||', '||return||', '||return||', 'mike:', 'i', 'only', 'went', 'in', 'front', 'first', "'cause", 'i', 'could', 'make', 'it', 'in', 'front', 'first', 'and', 'if', 'you', 'pull', 'out', "i'll", 'show', 'you', '||exclammark||', '||return||', '||return||', 'george:', "you've", 'got', 'a', 'prayer', '||period||', '||return||', '||return||', 'kramer:', 'i', 'go', 'in', 'front', 'first', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'front', 'first', '||comma||', "that's", 'how', 'you', 'park', 'when', "you're", 'pulling', 'a', 'bank', 'job', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'talk', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "it's", 'all', 'taken', 'care', 'of', '||period||', '||return||', '||return||', 'george:', 'you', 'told', 'him', '||questionmark||', 'what', 'did', 'you', 'tell', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'did', 'a', 'number', 'on', 'him', '||comma||', 'it', 'was', 'a', 'thing', 'of', 'beauty', '||comma||', 'you', 'really', 'had', 'to', 'have', 'been', 'there', 'to', 'appreciate', 'it', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'believe', 'it', '||comma||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'told', 'him', 'a', 'pack', 'of', 'teenagers', 'in', 'a', 'convertible', 'were', 'terrorizing', 'us', 'and', 'they', 'followed', 'us', 'into', 'the', 'city', '||period||', '||return||', '||return||', 'george:', 'a', 'pack', 'of', 'teenagers', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'by', 'the', 'time', 'i', 'got', 'to', 'the', 'end', 'of', 'the', 'story', '||comma||', 'he', 'was', 'to', 'relieved', 'that', 'we', 'were', 'alive', 'he', "couldn't", 'care', 'less', 'about', 'the', 'car', '||period||', '||return||', '||return||', 'george:', 'you', 'are', 'a', 'genius', '||comma||', "it's", 'as', 'simple', 'as', 'that', '||period||', '||return||', '||return||', 'elaine:', 'what', 'can', 'i', 'say', '||comma||', 'you', 'know', '||questionmark||', "it's", 'a', 'gift', '||period||', 'i', 'only', 'wish', 'i', 'could', 'teach', 'it', 'but', '||comma||', 'you', 'know', "it's", 'inborn', '||period||', '||return||', '||return||', 'kramer:', 'by', 'the', 'way', '||comma||', 'thanks', 'a', 'lot', 'for', 'inviting', 'me', 'to', 'the', 'flea', 'market', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'jerry', '||comma||', 'he', 'told', 'me', 'all', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', 'great', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'so', "that's", 'why', 'you', 'were', 'acting', 'so', 'funny', '||period||', '||return||', '||return||', 'george:', 'well', 'i', "didn't", 'know', 'you', 'wanted', 'to', 'go', 'to', 'the', 'flea', 'market', '||period||', '||return||', '||return||', 'mike:', 'a', 'flea', 'market', '||questionmark||', 'you', 'went', 'to', 'a', 'flea', 'market', '||questionmark||', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', "who's", 'talking', 'to', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'just', "didn't", 'think', 'of', 'you', '||period||', '||return||', '||return||', 'kramer:', 'you', 'said', 'it', '||comma||', 'sister', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'every', 'time', 'i', 'leave', 'my', 'house', 'now', 'i', 'have', 'to', 'call', 'everybody', 'i', 'know', 'and', 'ask', 'them', 'if', 'they', 'want', 'to', 'do', 'what', "i'm", 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'great', 'move', '||comma||', 'telling', 'him', '||comma||', 'by', 'the', 'way', '||comma||', 'real', 'smart', 'move', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'i', "wasn't", 'supposed', 'to', 'say', 'anything', '||exclammark||', '||return||', '||return||', 'george:', 'judgement', '||comma||', 'jerry', '||comma||', 'judgement', '||exclammark||', 'you', 'exercised', 'no', 'judgement', '||period||', '||return||', '||return||', 'jerry:', "you're", 'right', '||period||', 'my', 'fault', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||questionmark||', "i'm", 'so', 'sorry', '||comma||', 'really', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'sorry', '||comma||', 'i', "don't", 'care', 'for', 'that', 'sorry', '||period||', '||return||', '||return||', 'george:', 'what', 'was', 'wrong', 'with', 'that', 'sorry', '||questionmark||', 'it', 'was', 'a', 'good', 'sorry', '||period||', 'jerry', '||comma||', 'was', 'that', 'a', 'good', 'sorry', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'so', '||dash||', 'so', 'sorry', '||period||', '||return||', '||return||', 'truck', 'driver:', 'hey', '||exclammark||', 'move', 'this', 'car', '||comma||', 'i', 'gotta', 'get', 'through', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'heard', 'the', 'man', '||period||', 'i', 'guess', 'you', 'gotta', 'be', 'moving', 'your', 'car', '||period||', '||return||', '||return||', 'mike:', 'and', 'like', "you're", 'not', 'gonna', 'just', 'back', 'it', 'in', 'if', 'i', 'do', 'that', '||questionmark||', '||return||', '||return||', 'truck', 'driver:', 'well', 'somebody', 'better', 'move', 'something', 'soon', '||exclammark||', 'i', 'got', 'a', 'truck', 'full', 'of', 'ice', 'cream', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'see', '||comma||', 'they', 'had', 'to', 'move', 'the', 'cars', 'so', 'the', 'truck', 'could', 'get', 'through', '||comma||', 'right', '||questionmark||', 'but', 'these', 'guys', "don't", 'trust', 'each', 'other', 'so', 'they', 'got', 'these', 'two', 'nonpartisan', 'drivers', 'to', 'move', 'them', '||period||', '||return||', '||return||', 'jerry:', 'wild', 'pack', 'of', 'teenagers', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'amazing', 'how', 'they', 'picked', 'you', '||comma||', 'out', 'of', 'everyone', '||comma||', 'to', 'terrorize', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'know', '||comma||', 'i', 'said', 'to', 'myself', '||comma||', "'why", 'us', '||questionmark||', "'", 'you', 'remember', '||questionmark||', '||return||', '||return||', 'george:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'sounds', 'like', 'you', 'did', 'some', 'pretty', 'nifty', 'maneuvering', '||comma||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', "it's", 'interesting', '||comma||', 'you', 'know', '||comma||', 'under', 'that', 'pressure', '||comma||', 'what', "you're", 'capable', 'of', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||return||', '||return||', 'george:', 'i', 'learned', 'a', 'lot', 'about', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', 'to', 'my', 'car', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'i', "couldn't", 'help', 'it', '||exclammark||', 'elaine', 'moved', 'the', 'mirror', '||comma||', 'i', 'got', 'discombobulated', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'like', "you've", 'ever', 'been', 'bobulated', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'said', 'you', 'were', 'a', 'good', 'driver', '||exclammark||', '||return||', '||return||', 'george:', 'no', 'no', '||comma||', 'i', 'never', 'said', 'i', 'was', 'a', 'good', 'driver', '||comma||', 'i', 'said', 'i', 'was', 'a', 'good', 'parker', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'you', 'said', 'driver', '||period||', '||return||', '||return||', 'george:', 'parker', '||comma||', 'i', 'never', 'said', 'driver', '||comma||', 'i', 'said', 'parker', '||comma||', 'a', 'great', 'parker', '||period||', '||return||', '||return||', 'mike:', 'will', 'you', 'move', 'it', 'up', 'a', 'little', 'bit', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'no', 'no', '||comma||', "that's", 'in', 'the', 'right', 'position', '||period||', '||return||', '||return||', 'mike:', 'no', 'no', '||comma||', 'i', 'was', 'further', 'in', '||period||', '||return||', '||return||', 'george:', 'no', 'you', "weren't", '||period||', 'stop', 'there', '||comma||', "that's", 'fine', '||period||', '||return||', '||return||', 'mike:', 'do', 'you', 'mind', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'you', '||questionmark||', '||return||', '||return||', 'sid:', 'hey', '||comma||', 'somebody', 'better', 'move', 'these', 'cars', '||comma||', "you're", 'making', 'a', 'commotion', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'sid', '||period||', '||return||', '||return||', 'mike:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'sid:', 'never', 'mind', 'who', 'i', 'am', '||period||', 'i', 'know', 'who', 'i', 'am', '||period||', 'do', 'you', 'know', 'who', 'you', 'are', '||questionmark||', '||leftparen||', 'to', 'george', '||rightparen||', 'why', 'is', 'it', 'every', 'time', 'you', 'park', 'a', 'car', 'in', 'this', 'block', '||comma||', 'everything', 'gets', 'disrupted', 'and', 'disjointed', '||questionmark||', '||return||', '||return||', 'george:', 'sid', '||comma||', "it's", 'completely', 'his', 'fault', '||period||', '||return||', '||return||', 'mike:', 'oh', '||comma||', 'right', '||period||', '||return||', '||return||', 'sid:', 'why', "don't", 'you', 'start', 'taking', 'the', 'bus', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'george', '||period||', 'come', 'on', '||comma||', "let's", 'go', '||period||', "i'm", 'putting', 'it', 'in', 'a', 'garage', '||period||', 'the', "fight's", 'starting', 'in', 'two', 'minutes', '||period||', '||return||', '||return||', 'george:', "don't", 'do', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'we', 'gonna', 'do', '||comma||', 'stay', 'out', 'here', 'all', 'night', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', "i'm", 'not', 'giving', 'him', 'the', 'satisfaction', '||comma||', "it's", 'my', 'space', '||period||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'just', 'flip', 'a', 'coin', 'already', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'no', '||comma||', 'this', 'is', 'a', 'matter', 'of', 'principle', '||period||', 'that', 'would', 'just', 'be', 'saying', 'that', 'anybody', 'could', 'just', 'pull', 'into', 'any', 'parking', 'space', 'any', 'way', 'they', 'want', '||period||', 'well', "i'm", 'making', 'a', 'stand', 'here', '||period||', "i'm", 'saying', '*no*', 'to', 'head', 'first', 'parking', '||period||', "i'm", 'not', 'putting', 'up', 'with', 'that', '||period||', 'we', 'put', 'up', 'with', 'too', 'much', 'crap', 'in', 'this', 'city', '||comma||', "we're", 'not', 'putting', 'up', 'with', 'head', 'first', 'parking', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'maybe', 'if', 'you', "hadn't", 'been', 'sitting', 'there', 'pontificating', 'about', 'what', 'a', 'great', 'parker', 'you', 'were', '||comma||', 'you', 'might', 'have', 'got', 'the', 'space', '||period||', '||return||', '||return||', 'george:', 'so', "you're", 'against', 'me', 'now', '||questionmark||', '||return||', '||return||', 'angry', 'man:', 'he', 'could', 'have', 'pulled', 'up', 'to', 'the', 'car', 'and', 'backed', 'in', '||comma||', 'but', 'he', 'chose', 'to', 'go', 'in', 'head', 'first', '||period||', '||return||', '||return||', 'matthew:', 'no', 'he', "couldn't", '||comma||', 'because', 'the', 'other', 'car', 'was', 'already', 'backing', 'in', '||period||', '||return||', '||return||', 'angry', 'man:', 'no', 'he', "wasn't", '||period||', '||return||', '||return||', 'matthew:', 'all', 'that', 'matters', 'is', 'who', 'was', 'there', 'first', '||period||', '||return||', '||return||', 'angry', 'man:', 'ahh', '||comma||', "you're", 'not', 'even', 'old', 'enough', 'to', 'drive', '||comma||', 'you', 'little', 'puke', '||period||', '||return||', '||return||', 'matthew:', 'you', 'just', 'spit', 'on', 'me', '||exclammark||', '||return||', '||return||', 'angry', 'man:', "don't", 'you', 'raise', 'your', 'voice', 'to', 'me', '||exclammark||', '||return||', '||return||', 'matthew:', "you're", 'not', 'my', 'father', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'matthew', '||period||', '||return||', '||return||', 'matthew:', 'hi', 'jerry', '||period||', 'this', "guy's", 'really', 'a', 'jerk', '||period||', '||return||', '||return||', 'jerry:', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'matthew:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "how's", 'your', 'father', '||questionmark||', 'i', 'hear', "he's", 'closing', 'his', 'store', '||period||', '||return||', '||return||', 'matthew:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'matthew:', "what's", 'happened', 'to', 'daddy', '||questionmark||', "he's", 'going', 'out', 'of', 'business', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'matthew:', "we're", 'not', 'going', 'to', 'have', 'any', 'money', '||questionmark||', "we're", 'out', 'of', 'money', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'of', 'course', 'not', '||comma||', 'of', 'course', 'not', '||exclammark||', '||return||', '||return||', 'matthew:', 'mommy', '||exclammark||', '||questionmark||', 'jerry', 'says', "daddy's", 'closing', 'the', 'store', '||period||', "he's", 'going', 'out', 'of', 'business', '||period||', 'we', "don't", 'have', 'any', 'money', '||questionmark||', '||return||', '||return||', 'maryedith:', 'jerry', '||questionmark||', '||exclammark||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", '||dash||', '||dash||', '||return||', '||return||', 'maryedith:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'boy', '||comma||', 'i', "don't", 'know', 'about', 'your', 'friend', '||comma||', 'jerry', '||period||', 'he', 'says', 'some', 'pretty', 'stupid', 'things', 'sometimes', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'congratulations', '||period||', '||return||', '||return||', 'maryedith:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'pregnant', '||period||', '||return||', '||return||', 'maryedith:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'not', 'pregnant', '||questionmark||', '||return||', '||return||', 'maryedith:', 'no', '||comma||', "i'm", 'not', 'pregnant', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'sure', "you're", 'not', 'pregnant', '||questionmark||', '||return||', '||return||', 'maryedith:', 'yes', '||comma||', "i'm", 'sure', '||exclammark||', '||return||', '||return||', 'kramer:', "that's", 'weird', '||period||', '||return||', '||return||', 'maryedith:', 'come', 'on', '||comma||', 'matthew', '||period||', '||return||', '||return||', 'matthew:', 'no', '||period||', '||return||', '||return||', 'maryedith:', 'come', 'on', '||comma||', 'matthew', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'she', 'was', 'pregnant', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hey', '||comma||', 'do', 'you', 'think', "i'm", 'phony', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'mike', 'thinks', "i'm", 'a', 'phony', '||period||', '||return||', '||return||', 'elaine:', 'he', 'thinks', "you're", 'a', 'phony', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'i', "can't", 'say', 'anything', 'because', 'kramer', "wasn't", 'supposed', 'to', 'tell', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'have', 'to', 'say', 'something', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||comma||', 'i', 'told', 'kramer', 'i', 'was', 'vaulting', 'it', '||period||', '||return||', '||return||', 'elaine:', 'you', 'gotta', 'open', 'the', 'vault', '||period||', '||return||', '||return||', 'jerry:', 'open', 'my', 'vault', '||questionmark||', '||return||', '||return||', 'elaine:', 'open', 'your', 'vault', '||period||', '||return||', '||return||', 'jerry:', 'once', 'i', 'open', 'the', 'vault', '||comma||', 'it', 'ceases', 'to', 'be', 'a', 'vault', '||period||', '||return||', '||return||', 'elaine:', 'you', 'have', 'no', 'choice', '||period||', '||return||', '||return||', 'jerry:', 'oy', 'ga', '||dash||', 'vault', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'wanna', 'know', 'why', 'you', "can't", 'go', 'in', 'front', 'first', '||questionmark||', "i'll", 'tell', 'you', 'why', '||period||', 'because', 'it', 'signals', 'a', 'breakdown', 'in', 'the', 'social', 'order', '||period||', 'chaos', '||period||', 'it', 'reduces', 'us', 'to', 'jungle', 'law', '||period||', '||return||', '||return||', 'kramer:', 'when', 'can', 'you', 'park', 'head', 'first', '||questionmark||', '||return||', '||return||', 'newman:', 'never', '||period||', '||return||', '||return||', 'mike:', 'what', 'are', 'you', 'asking', 'this', 'guy', 'for', '||questionmark||', '||return||', '||return||', 'newman:', "who's", 'talking', 'to', 'you', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'right', '||period||', 'never', '||period||', '||return||', '||return||', 'mike:', 'oh', 'yeah', '||questionmark||', 'what', 'if', 'you', 'got', 'ten', 'car', 'lengths', '||questionmark||', 'you', 'have', 'to', 'pull', 'all', 'the', 'way', 'up', 'to', 'the', 'front', 'car', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'i', 'suppose', 'if', 'you', 'got', 'ten', 'car', 'lengths', '||period||', '||return||', '||return||', 'george:', 'when', 'do', 'you', 'ever', 'have', 'ten', 'car', 'lengths', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'about', 'sundays', 'and', 'holidays', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'please', '||period||', '||return||', '||return||', 'sheila:', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'guy', 'tried', 'to', 'sneak', 'into', 'my', 'space', '||period||', '||return||', '||return||', 'sheila:', 'i', 'really', 'hate', 'people', 'who', 'do', 'that', '||period||', 'i', 'hope', 'you', "don't", 'let', 'him', 'get', 'away', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'thank', 'you', 'for', 'your', 'support', '||period||', '||return||', '||return||', 'sheila:', 'hey', '||comma||', "that's", 'a', 'great', 'hat', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'you', 'like', 'it', '||questionmark||', 'i', 'got', 'it', 'at', 'a', 'flea', 'market', 'today', '||period||', '||return||', '||return||', 'newman:', 'hey', 'george', '||comma||', 'nice', 'hat', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'newman:', 'can', 'i', 'try', 'it', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'it', '||comma||', 'uh', '||comma||', 'it', "wouldn't", 'fit', 'you', '||period||', '||return||', '||return||', 'newman:', 'well', 'sure', 'it', 'would', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'get', 'out', 'of', 'here', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'come', 'on', '||comma||', 'let', 'me', 'try', 'it', 'on', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'newman', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'sheila:', 'let', 'him', 'try', 'it', 'on', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'him', 'to', '||exclammark||', '||return||', '||return||', 'sheila:', 'what', 'is', 'wrong', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'wanna', 'see', '||questionmark||', '||exclammark||', '||leftparen||', 'pulling', 'off', 'the', 'hat', 'to', 'reveal', 'the', 'bald', 'pate', '||rightparen||', 'there', '||exclammark||', 'there', 'it', 'is', '||exclammark||', '||leftparen||', 'turning', 'to', 'newman', '||rightparen||', 'alright', '||comma||', 'here', '||exclammark||', 'you', 'wanna', 'try', 'on', 'the', 'hat', '||questionmark||', '||exclammark||', 'here', '||exclammark||', 'try', 'on', 'the', 'hat', '||exclammark||', '||return||', '||return||', 'newman:', 'stop', 'it', '||comma||', 'george', '||comma||', 'stop', 'it', '||period||', 'i', 'was', 'defending', 'your', 'parking', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'just', 'keep', 'the', 'hat', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "that's", 'it', '||period||', 'the', "fight's", 'already', 'started', '||period||', "i'm", 'going', 'upstairs', '||comma||', "who's", 'coming', '||questionmark||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'depends', 'on', "who's", 'going', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'not', 'going', 'if', "he's", 'going', '||period||', '||return||', '||return||', 'newman:', 'me', 'either', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'going', 'if', "he's", 'going', '||period||', '||return||', '||return||', 'mike:', 'well', "i'm", 'going', '||period||', '||return||', '||return||', 'jerry:', 'well', 'if', "he's", 'going', 'then', "i'm", 'not', 'going', '||period||', '||return||', '||return||', 'newman:', 'but', "it's", 'your', 'house', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "don't", 'have', 'to', 'go', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', "don't", 'want', 'to', 'go', 'if', "jerry's", 'not', 'going', '||period||', '||return||', '||return||', 'mike:', 'why', "won't", 'you', 'go', 'if', 'i', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', "i'll", 'tell', 'you', 'why', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', "don't", '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'like', 'you', "didn't", 'call', 'me', 'a', 'phony', '||questionmark||', '||return||', '||return||', 'mike:', 'what', '||questionmark||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'thanks', '||exclammark||', 'real', 'good', '||exclammark||', 'jerry', '||exclammark||', 'first', 'of', 'all', '||comma||', 'i', 'think', 'you', 'completely', 'misunderstood', 'what', 'i', 'said', '||period||', 'i', 'meant', 'it', 'in', 'a', 'complementary', 'way', '||period||', 'i', 'mean', '||comma||', 'you', 'know', 'when', 'people', 'say', '||comma||', "'he's", "bad'", '||comma||', 'it', 'really', 'means', "he's", 'good', '||comma||', 'sort', 'of', 'thing', '||questionmark||', 'you', 'know', '||comma||', 'slang', '||period||', '||return||', '||return||', 'jerry:', 'use', 'it', 'in', 'a', 'sentence', '||period||', '||return||', '||return||', 'mike:', 'man', '||comma||', 'that', 'michael', 'jordan', 'is', 'so', 'phony', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', "why'd", 'you', 'tell', 'him', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'begged', 'me', '||period||', '||return||', '||return||', 'mike:', 'he', 'begged', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'come', 'on', '||period||', 'who', 'wants', 'to', 'watch', 'the', 'fight', '||questionmark||', '||return||', '||return||', 'cop', '#1:', 'okay', '||comma||', "who's", 'cars', 'are', 'these', '||questionmark||', "let's", 'move', "'em", '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'officer', '||comma||', 'could', 'i', 'just', 'explain', 'something', 'to', 'you', '||questionmark||', '||return||', '||return||', 'cop', '#1:', 'hey', '||period||', "let's", 'go', 'or', "i'm", 'gonna', 'write', 'both', 'of', 'you', 'a', 'ticket', 'in', 'about', 'two', 'minutes', '||period||', '||return||', '||return||', 'george:', 'officer', '||comma||', 'he', "can't", 'pull', 'in', 'head', 'first', '||period||', '||return||', '||return||', 'mike:', 'officer', '||comma||', 'he', 'backed', 'up', 'from', 'down', 'the', 'street', '||period||', 'he', 'was', 'double', '||dash||', 'parked', '||comma||', 'he', 'was', '||return||', '||return||', 'cop', '#1:', 'alright', '||comma||', 'you', 'move', 'your', 'car', '||period||', "it's", 'his', 'space', '||comma||', 'you', "can't", 'go', 'in', 'head', '||return||', '||return||', 'cop', '#2:', 'wait', 'a', 'second', '||period||', 'why', "can't", 'he', 'go', 'in', 'head', 'first', '||questionmark||', 'he', 'said', 'the', 'guy', 'was', 'just', 'sitting', 'over', 'there', '||period||', '||return||', '||return||', 'cop', '#1:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'this', 'guy', 'was', 'here', 'first', '||period||', '||return||', '||return||', 'cop', '#2:', 'but', 'he', "didn't", 'take', 'it', '||period||', '||return||', '||return||', 'cop', '#1:', 'hey', '||comma||', "it's", 'his', 'space', '||period||', '||return||', '||return||', 'cop', '#2:', 'no', '||comma||', "it's", 'his', 'space', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "you're", 'gonna', 'have', 'to', 'go', 'to', 'the', 'bathroom', '||exclammark||', '||return||', '||return||', 'mike:', 'well', '||comma||', "you're", 'gonna', 'have', 'to', 'go', 'to', 'work', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'have', 'a', 'job', '||exclammark||', '||return||', '||return||', 'mike:', 'neither', 'do', 'i', '||exclammark||', '||return||', '||return||', 'referee:', 'seven', '||period||', '||period||', '||period||', 'eight', '||period||', '||period||', '||period||', 'nine', '||period||', '||period||', '||period||', 'ten', '||period||', '*ding*', '||return||', '||return||', "jerry's", 'stand', '||dash||', 'up:', 'so', '||comma||', 'i', 'fly', 'a', 'lot', '||period||', 'i', 'like', 'planes', '||period||', 'i', 'was', 'on', 'a', 'plane', 'the', 'other', 'day', 'and', 'i', 'was', 'wondering', '||dash||', 'are', 'there', 'keys', 'to', 'the', 'plane', '||questionmark||', 'do', 'they', 'need', 'keys', 'to', 'start', 'the', 'plane', '||questionmark||', 'maybe', "that's", 'what', 'those', 'delays', 'on', 'the', 'ground', 'are', 'sometimes', '||period||', 'when', "you're", 'just', 'sitting', 'there', 'at', 'the', 'gate', '||comma||', 'maybe', 'the', "pilot's", 'just', 'up', 'there', 'in', 'the', 'cockpit', 'going', '||leftparen||', 'mimics', 'looking', 'for', 'keys', '||rightparen||', '||quotemark||', 'oh', '||comma||', 'i', "don't", 'believe', 'this', '||period||', 'oh', 'my', 'god', '||period||', '||period||', '||period||', 'i', 'did', 'it', 'again', '||period||', '||quotemark||', 'they', 'tell', 'you', "it's", 'something', 'mechanical', '||comma||', 'because', 'they', "don't", 'want', 'to', 'come', 'on', 'the', 'pa', 'system', '||period||', '||period||', '||period||', '||quotemark||', 'ladies', 'and', 'gentlemen', '||comma||', "we're", 'going', 'to', 'be', 'delayed', 'here', 'on', 'the', 'ground', 'for', 'a', 'little', 'while', '||comma||', 'i', 'uh', '||period||', '||period||', '||period||', 'oh', 'god', '||comma||', 'this', 'is', 'so', 'embarrassing', '||period||', '||period||', '||period||', 'i', '||dash||', 'i', 'left', 'the', 'keys', 'to', 'the', 'plane', 'in', 'my', 'apartment', '||period||', '||quotemark||', 'you', 'see', 'the', 'technicians', 'all', 'running', 'underneath', 'the', 'plane', '||semicolon||', 'you', 'think', "they're", 'servicing', 'it', '||comma||', 'but', "they're", 'actually', 'looking', 'for', 'the', 'magnet', '||quotemark||', 'hide', '||dash||', 'a', '||dash||', 'key', '||quotemark||', 'under', 'the', 'wing', '||period||', '||period||', '||period||', '||quotemark||', 'maybe', 'he', 'left', 'it', 'up', 'there', 'somewhere', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'opening', 'scene:', "jerry's", 'apartment', 'in', 'the', 'middle', 'of', 'the', 'night', '||period||', 'jerry', 'comes', 'out', 'of', 'his', 'room', '||period||', 'we', 'hear', 'his', 'thoughts', '||period||', '||return||', '||return||', "jerry's", 'brain:', 'what', 'is', 'it', 'about', 'sleep', 'that', 'makes', 'you', 'so', 'thirsty', '||questionmark||', 'do', 'dreams', 'require', 'liquid', '||questionmark||', "it's", 'not', 'like', "i'm", 'running', 'a', 'marathon', '||comma||', "i'm", 'just', 'lying', 'there', '||period||', '||return||', '||return||', "jerry's", 'brain:', 'what', 'the', 'hell', '||period||', '||period||', '||period||', '||questionmark||', 'why', 'is', 'the', 'door', 'open', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'now', 'calm', 'down', '||comma||', "it's", 'okay', '||period||', "i'm", 'sorry', '||period||', 'i', "didn't", 'want', 'to', 'wake', 'you', 'up', '||exclammark||', "y'know", '||comma||', 'i', 'was', 'watching', '||quotemark||', 'thirty', 'seconds', 'over', 'tokyo', '||comma||', '||quotemark||', 'and', 'i', '||dash||', "y'know", '||comma||', 'i', 'wanted', 'to', 'get', 'some', 'popcorn', '||comma||', 'and', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'used', 'the', 'spare', 'keys', 'that', 'you', 'gave', 'me', 'to', 'come', 'into', 'your', 'apartment', 'to', 'get', 'your', 'popper', '||period||', '||return||', '||return||', 'jerry:', 'you', 'scared', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'just', 'me', '||period||', '||return||', '||return||', 'jerry:', "that's", 'enough', '||exclammark||', '||return||', '||return||', 'kramer:', 'forgot', 'the', 'popper', '||period||', '||period||', '||period||', '||leftparen||', 'goes', 'to', 'the', 'kitchen', '||comma||', 'grabs', 'the', 'popper', '||comma||', 'drops', 'the', 'lid', '||comma||', 'juggles', 'it', 'around', '||comma||', 'then', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'from', 'outside', 'the', 'door', '||rightparen||', ':', "c'mon", '||period||', '||period||', '||period||', "c'mon", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'does', 'it', 'look', 'like', "i'm", 'doing', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'get', 'out', '||exclammark||', 'get', 'out', 'of', 'the', 'bathroom', '||comma||', 'i', 'gotta', 'go', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'alright', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||exclammark||', '||return||', '||return||', 'kramer:', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'move', 'it', '||exclammark||', 'move', 'it', '||exclammark||', 'get', 'going', '||exclammark||', '||return||', '||return||', 'kramer:', 'my', "drain's", 'all', 'clogged', 'up', '||exclammark||', '||leftparen||', 'comes', 'out', 'of', 'the', 'bathroom', 'in', 'a', 'towel', '||comma||', 'covered', 'in', 'soap', 'suds', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'from', 'inside', 'the', 'bathroom', '||rightparen||', ':', 'is', 'that', 'my', 'towel', '||questionmark||', '||return||', '||return||', 'girlfriend:', "i'm", 'really', 'happy', 'the', 'movie', 'was', 'sold', 'out', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'did', 'you', 'ever', 'pretend', "there's", 'like', '||comma||', 'murderers', 'chasing', 'you', '||comma||', 'and', 'you', 'try', 'and', 'see', 'how', 'fast', 'you', 'can', 'get', 'your', 'keys', 'out', 'and', 'get', 'into', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'girlfriend:', "i'm", 'from', 'witchita', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'i', 'see', '||period||', 'there', 'he', 'is', '||exclammark||', '||leftparen||', 'pretends', 'the', 'murderers', 'are', 'coming', '||period||', '||rightparen||', '||return||', '||return||', 'girlfriend:', 'hurry', '||comma||', 'jerry', '||exclammark||', "he's", 'coming', '||exclammark||', 'hurry', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'murderers', '||exclammark||', '||leftparen||', 'jerry', 'unlocks', 'his', 'door', 'and', 'they', 'both', 'run', 'inside', '||period||', '||rightparen||', '||return||', '||return||', 'girlfriend:', 'that', 'was', 'close', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'see', 'the', 'look', 'on', 'that', "guy's", 'face', '||questionmark||', '||return||', '||return||', 'girlfriend:', 'you', 'were', 'so', 'fast', 'with', 'those', 'keys', '||period||', '||leftparen||', 'they', 'prepare', 'to', 'kiss', '||comma||', 'but', 'are', 'interrupted', 'by', 'kramer', 'and', 'his', 'girlfriend', 'coming', 'out', 'of', "jerry's", 'bedroom', '||comma||', 'laughing', 'and', 'horsing', 'around', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', 'what', 'the', 'hell', 'are', 'you', 'doing', 'here', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||exclammark||', 'how', 'are', 'ya', '||questionmark||', 'i', 'thought', 'you', 'were', 'going', 'to', 'the', 'movies', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "that's", 'it', '||period||', 'hand', "'em", 'over', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'you', 'know', 'what', '||comma||', 'the', 'keys', '||period||', 'i', 'want', 'the', 'keys', '||period||', "you've", 'lost', 'your', 'key', 'privileges', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'what', '||comma||', 'i', 'thought', 'you', 'went', 'to', 'the', 'movies', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'sold', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', 'how', 'was', 'i', 'supposed', 'to', 'know', 'it', 'was', 'going', 'to', 'be', 'sold', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'the', 'point', '||period||', '||return||', '||return||', 'kramer:', 'what', 'point', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', '||comma||', 'look', '||comma||', 'just', 'give', 'the', 'keys', '||period||', '||return||', '||return||', 'kramer:', 'just', 'give', 'me', 'another', 'chance', '||exclammark||', '||return||', '||return||', 'jerry:', "don't", 'ask', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'asking', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'you', '||period||', '||return||', '||return||', 'kramer:', "you're", 'joking', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'serious', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'not', 'going', 'to', 'happen', 'again', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', 'it', 'will', '||comma||', 'now', 'give', 'me', 'those', 'keys', '||exclammark||', '||return||', '||return||', 'kramer', '||leftparen||', 'getting', 'up', '||rightparen||', ':', 'o', '||period||', 'k', '||period||', '||comma||', 'fine', '||comma||', 'go', 'ahead', '||comma||', 'you', 'take', 'the', 'keys', '||exclammark||', 'but', "you're", 'going', 'to', 'regret', 'this', '||period||', '||leftparen||', 'he', 'angrily', 'storms', 'out', '||period||', 'kramer', 'then', 're', '||dash||', 'enters', 'seconds', 'later', 'when', 'he', 'realizes', "he's", 'left', 'his', 'girlfriend', 'in', "jerry's", 'apartment', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'put', "'em", 'in', 'a', 'safe', 'place', '||period||', '||return||', '||return||', 'elaine:', 'i', 'will', '||period||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', "i'll", 'hide', "'em", '||period||', 'so', '||comma||', 'is', 'kramer', 'upset', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'so', '||period||', 'i', 'mean', '||comma||', "he's", 'acting', 'really', 'weird', 'lately', '||period||', '||period||', '||period||', "he's", 'different', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'maybe', 'you', 'should', 'just', 'give', 'him', 'the', 'keys', 'back', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'mouths', 'the', 'words', '||rightparen||', ':', 'is', 'that', 'kramer', '||questionmark||', '||leftparen||', 'jerry', 'nods', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "who's", 'there', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'in', 'hallway', '||rightparen||', ':', 'uh', '||comma||', 'kramer', '||period||', '||leftparen||', 'jerry', 'opens', 'the', 'door', '||comma||', 'kramer', 'enters', '||period||', 'elaine', 'waves', 'at', 'kramer', 'with', 'the', 'keys', 'in', 'her', 'hand', '||period||', '||rightparen||', 'oh', '||comma||', 'hi', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'you', 'got', 'the', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'not', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', "it's", 'o', '||period||', 'k', '||period||', 'i', "don't", 'care', 'about', 'the', 'keys', '||period||', "it's", 'my', 'fault', '||period||', 'i', 'gave', 'the', 'keys', 'away', 'with', 'my', 'stupidity', '||period||', 'i', 'broke', '||quotemark||', 'the', 'covenant', 'of', 'the', 'keys', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'give', 'him', 'the', 'keys', 'back', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'want', 'the', 'keys', 'back', '||exclammark||', 'no', '||comma||', "i'm", 'glad', 'the', 'way', 'things', 'turned', 'out', '||period||', 'i', 'was', "clingin'", 'to', 'those', 'keys', '||comma||', 'man', '||exclammark||', 'like', 'a', 'branch', 'on', 'the', 'banks', 'of', 'a', 'raging', 'river', '||period||', 'and', 'now', 'i', 'have', 'let', 'go', '||period||', 'and', "i'm", 'free', '||period||', '||period||', '||period||', 'to', 'go', 'with', 'the', 'current', '||period||', 'to', 'float', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'and', 'i', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'take', 'the', 'keys', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'want', 'the', 'keys', '||exclammark||', '||leftparen||', 'jerry', 'tries', 'to', 'force', 'the', 'keys', 'on', 'kramer', '||comma||', 'but', 'kramer', 'refuses', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'one', 'more', 'thing', '||dash||', 'i', 'would', 'like', 'my', 'keys', 'back', '||period||', '||return||', '||return||', 'jerry:', 'your', 'spare', 'set', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', "'em", 'back', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'yeah', '||comma||', 'i', 'think', 'it', 'would', 'be', 'for', 'the', 'best', '||period||', '||return||', '||return||', 'george:', 'gee', '||comma||', 'kramer', '||comma||', 'i', 'uh', '||period||', '||period||', '||period||', 'i', "don't", 'know', 'what', 'to', 'say', '||period||', '||return||', '||return||', 'kramer:', 'say', 'yes', '||exclammark||', 'yes', '||comma||', 'george', '||period||', 'yes', '||exclammark||', '||return||', '||return||', 'george:', 'should', 'i', 'give', 'you', 'my', 'keys', '||comma||', 'is', 'that', 'the', 'transaction', '||comma||', 'trading', 'keys', '||period||', '||period||', '||period||', '||questionmark||', 'because', 'elaine', 'has', 'my', 'keys', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'can', 'get', "'em", 'back', '||period||', '||return||', '||return||', 'george:', 'i', 'suppose', 'i', 'could', '||period||', '||return||', '||return||', 'kramer:', 'because', 'you', 'see', '||comma||', 'george', '||comma||', 'having', 'the', 'keys', 'to', "jerry's", 'apartment', '||questionmark||', 'that', 'kept', 'me', 'in', 'a', 'fantasy', 'world', '||period||', 'every', 'time', 'i', 'went', 'over', 'to', 'his', 'house', '||comma||', 'it', 'was', 'like', 'i', 'was', 'on', 'vacation', '||period||', 'better', 'food', '||comma||', 'better', 'view', '||comma||', 'better', 'tv', '||period||', 'and', 'cleaner', '||questionmark||', 'oh', '||dash||', 'much', 'cleaner', '||period||', 'that', 'became', 'my', 'reality', '||period||', 'i', 'ignored', 'the', 'squalor', 'in', 'my', 'own', 'life', 'because', "i'm", 'looking', 'at', 'life', '||comma||', 'you', 'see', '||comma||', 'through', "jerry's", 'eyes', '||period||', 'i', 'was', 'living', 'in', 'twilight', '||comma||', 'george', '||period||', 'living', 'in', 'the', 'shadows', '||period||', 'living', 'in', 'the', 'darkness', '||period||', '||period||', '||period||', 'like', 'you', '||period||', '||return||', '||return||', 'george:', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'can', 'barely', 'see', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'stop', 'it', 'kramer', '||comma||', "you're", "freakin'", 'me', 'out', '||period||', '||leftparen||', 'the', 'waitress', 'comes', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'waitress:', 'hi', '||comma||', 'are', 'you', 'ready', 'to', 'order', '||questionmark||', '||leftparen||', 'george', 'tries', 'to', 'order', '||comma||', 'but', 'kramer', 'interrupts', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'moves', 'over', 'and', 'sits', 'next', 'to', 'george', '||rightparen||', ':', 'do', 'you', 'ever', 'yearn', '||questionmark||', '||return||', '||return||', 'george:', 'yearn', '||questionmark||', 'do', 'i', 'yearn', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'yearn', '||period||', '||return||', '||return||', 'george:', 'you', 'yearn', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yes', '||period||', 'yes', '||comma||', 'i', 'yearn', '||period||', 'often', '||comma||', 'i', '||period||', '||period||', '||period||', 'i', 'sit', '||period||', '||period||', '||period||', 'and', 'yearn', '||period||', 'have', 'you', 'yearned', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'not', 'recently', '||period||', 'i', 'craved', '||period||', 'i', 'crave', 'all', 'the', 'time', '||comma||', 'constant', 'craving', '||period||', '||period||', '||period||', 'but', 'i', "haven't", 'yearned', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'in', 'disgust', '||rightparen||', ':', 'look', 'at', 'you', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', 'kramer', '||comma||', "don't", 'start', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'moving', 'back', 'to', 'the', 'othe', 'side', 'of', 'the', 'booth', '||rightparen||', ':', "you're", 'wasting', 'your', 'life', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'not', '||exclammark||', 'what', 'you', 'call', 'wasting', '||comma||', 'i', 'call', 'living', '||exclammark||', "i'm", 'living', 'my', 'life', '||exclammark||', '||return||', '||return||', 'kramer:', 'o', '||period||', 'k', '||period||', '||comma||', 'like', 'what', '||questionmark||', 'no', '||comma||', 'tell', 'me', '||exclammark||', 'do', 'you', 'have', 'a', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'money', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'have', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'have', 'any', 'prospects', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'anything', 'on', 'the', 'horizon', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'have', 'any', 'action', 'at', 'all', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'have', 'any', 'conceivable', 'reason', 'for', 'even', 'getting', 'up', 'in', 'the', 'morning', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'like', 'to', 'get', 'the', 'daily', 'news', '||exclammark||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "it's", 'time', 'for', 'us', 'to', 'grow', 'up', '||dash||', 'and', 'be', 'men', '||period||', 'not', 'little', 'boys', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", "goin'", 'to', 'california', '||period||', 'you', 'know', '||comma||', 'i', 'got', 'the', 'bug', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'think', 'i', 'got', 'a', 'touch', 'of', 'something', '||comma||', 'too', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'the', 'acting', 'bug', '||period||', 'ever', 'since', 'i', 'was', 'in', 'that', 'woody', 'allen', 'movie', '||period||', '||return||', '||return||', 'george:', '||quotemark||', 'these', 'pretzels', 'are', 'making', 'me', 'thirsty', '||quotemark||', '||questionmark||', 'that', 'was', 'one', 'line', '||exclammark||', 'you', 'got', 'fired', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', 'i', 'know', '||comma||', 'but', 'man', '||exclammark||', 'i', 'never', 'felt', 'so', 'alive', '||exclammark||', 'now', '||comma||', 'are', 'you', 'coming', 'with', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'no', '||comma||', "i'm", 'not', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'suit', 'yourself', '||period||', 'but', "let's", 'keep', 'this', 'between', 'us', '||dash||', "we're", 'key', 'brothers', 'now', '||period||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||period||', '||rightparen||', '||return||', '||return||', 'george:', "you're", 'not', 'really', 'gonna', 'go', 'to', 'california', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'points', 'to', 'his', 'head', '||rightparen||', ':', 'up', 'here', '||comma||', "i'm", 'already', 'gone', '||period||', '||leftparen||', 'kramer', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'so', 'he', 'gave', 'me', 'his', 'spare', 'keys', '||comma||', 'now', 'he', 'wants', 'to', 'have', 'my', 'keys', '||comma||', 'so', 'i', 'need', 'mine', 'back', 'from', 'you', '||period||', '||return||', '||return||', 'elaine:', 'just', "'cause", 'you', 'have', 'his', 'keys', '||questionmark||', 'why', 'does', 'he', 'need', 'yours', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'he', 'said', 'he', 'wants', 'to', 'be', 'my', '||quotemark||', 'key', 'brother', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', "that's", 'ridiculous', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'shakes', 'huge', 'keyring', '||rightparen||', ':', "that's", 'kramer', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'give', 'you', 'back', 'your', 'spare', 'keys', '||dash||', 'but', 'now', 'i', 'want', 'mine', 'back', '||period||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', "'cause", '||period||', "i'll", 'give', "'em", 'to', 'jerry', '||period||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "'cause", 'he', 'gave', 'me', 'his', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'if', 'he', 'has', 'my', 'keys', '||comma||', 'i', 'should', 'have', 'his', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "don't", 'see', 'why', 'if', 'you', 'have', 'his', '||comma||', 'he', 'should', 'have', 'yours', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'said', 'the', 'same', 'thing', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'listen', '||comma||', "i'll", 'give', 'you', 'your', 'spare', 'keys', '||comma||', 'but', 'i', "don't", 'have', 'them', 'with', 'me', '||period||', 'can', 'i', 'please', 'have', 'mine', 'to', 'give', 'to', 'back', 'to', 'kramer', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'o', '||period||', 'k', '||period||', "i'll", 'go', 'get', "'em", '||period||', '||leftparen||', 'george', 'begins', 'to', 'leaf', 'through', 'papers', 'on', "elaine's", 'counter', '||period||', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', 'would', 'you', 'just', 'put', 'that', 'down', '||questionmark||', '||leftparen||', 'takes', 'the', 'papers', 'away', 'from', 'george', '||period||', '||rightparen||', 'i', 'gotta', 'get', 'some', 'new', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'bring', 'the', 'keys', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'but', 'i', 'still', "don't", 'feel', 'right', 'about', 'letting', 'you', 'into', "kramer's", 'apartment', 'without', 'his', 'permission', '||period||', '||return||', '||return||', 'jerry:', 'this', 'could', 'be', 'an', 'emergency', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'never', 'should', 'have', 'taken', 'away', 'his', 'keys', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'tried', 'to', 'give', "'em", 'back', '||comma||', 'he', "wouldn't", 'take', "'em", '||period||', '||leftparen||', 'jerry', 'and', 'george', 'go', 'out', 'into', 'the', 'hallway', 'to', "kramer's", 'apartment', '||period||', '||rightparen||', '||return||', '||return||', 'george:', "how'd", 'the', 'mets', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'lost', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', '||return||', '||return||', 'newman', '||leftparen||', 'startling', 'them', '||rightparen||', ':', 'hello', '||comma||', 'boys', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'you', "lookin'", 'for', 'someone', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'play', 'coy', 'with', 'me', '||comma||', 'newman', '||comma||', "i'm", 'not', 'in', 'the', 'mood', '||exclammark||', '||return||', '||return||', 'newman:', 'coy', '||questionmark||', "i'm", 'not', 'being', 'coy', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'is', 'he', 'being', 'coy', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'coy', '||period||', '||return||', '||return||', 'jerry:', "you're", 'being', 'coy', '||period||', 'now', "where's", 'kramer', '||comma||', 'newman', '||questionmark||', '||return||', '||return||', 'newman', '||leftparen||', 'coyly', '||rightparen||', ':', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'tiny', '||period||', 'i', 'wanna', 'know', 'where', 'kramer', 'is', 'and', 'wanna', 'know', 'now', '||exclammark||', '||return||', '||return||', 'newman:', 'alright', '||comma||', 'go', 'ahead', 'and', 'hit', 'me', '||comma||', 'seinfeld', '||period||', 'i', 'got', 'witnesses', '||period||', '||return||', '||return||', 'jerry:', 'turn', 'around', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'sure', '||period||', '||leftparen||', 'turns', 'around', '||period||', '||rightparen||', '||return||', '||return||', 'newman:', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'you', 'better', 'tell', 'me', 'where', 'kramer', 'is', '||comma||', 'or', 'are', 'we', 'gonna', 'have', 'to', 'do', 'this', 'the', 'hard', 'way', '||questionmark||', '||leftparen||', 'hits', 'wall', 'with', 'his', 'fist', '||period||', '||rightparen||', '||return||', '||return||', 'newman:', 'help', '||exclammark||', 'help', '||exclammark||', '||return||', '||return||', 'jerry:', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'newman:', 'help', '||exclammark||', '||leftparen||', 'elaine', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'newman:', "they're", 'gonna', 'beat', 'me', 'up', '||exclammark||', '||return||', '||return||', 'george:', 'no', "we're", 'not', '||period||', '||return||', '||return||', 'jerry:', "we're", 'trying', 'to', 'find', 'out', 'what', 'happened', 'to', 'kramer', '||period||', '||return||', '||return||', 'newman:', 'you', 'wanna', 'know', 'what', 'happened', 'to', 'kramer', '||questionmark||', "i'll", 'tell', 'you', 'what', 'happened', 'to', 'kramer', '||period||', 'he', 'was', 'ticked', 'off', '||period||', 'about', 'the', 'keys', '||period||', 'yeah', '||comma||', "that's", 'right', '||dash||', 'about', 'the', 'keys', '||period||', 'thought', 'he', 'got', 'a', 'bad', 'rap', '||period||', '||return||', '||return||', 'jerry:', 'bad', 'rap', '||questionmark||', '||return||', '||return||', 'newman:', 'yeah', '||period||', 'from', 'you', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', '||return||', '||return||', 'newman:', 'you', 'heard', 'me', '||period||', 'so', 'he', 'packed', 'it', 'up', 'and', 'split', 'for', 'the', 'coast', '||period||', 'la', '||dash||', 'la', 'land', '||period||', 'l', '||period||', 'a', '||period||', '||return||', '||return||', 'jerry:', 'l', '||period||', 'a', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'never', 'should', 'have', 'taken', 'his', 'keys', 'away', '||period||', 'but', 'he', 'drove', 'me', 'to', 'it', '||exclammark||', 'i', 'had', 'no', 'choice', '||exclammark||', 'he', "wouldn't", 'take', "'em", 'back', '||period||', 'elaine', '||comma||', 'you', 'saw', 'it', '||comma||', 'remember', '||questionmark||', 'i', 'said', '||comma||', "'take", 'the', 'keys', 'back', '||period||', "'", 'he', "wouldn't", 'do', 'anything', '||period||', 'you', 'saw', 'it', '||comma||', "didn't", 'you', 'see', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'saw', 'it', '||period||', '||leftparen||', 'mutters', 'under', 'her', 'breath', '||rightparen||', 'i', 'mean', '||comma||', "it's", 'complete', 'bullshit', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "what'd", 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', 'i', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', "didn't", 'see', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'saw', 'it', '||period||', 'i', 'saw', 'it', '||exclammark||', 'i', 'did', '||comma||', 'i', 'saw', 'it', '||period||', 'yep', '||period||', '||return||', '||return||', 'jerry:', 'i', 'heard', 'you', 'say', 'something', '||comma||', 'there', '||period||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'calling', "kramer's", 'mother', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', '||comma||', 'dials', '||period||', '||rightparen||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'i', "don't", 'know', 'what', 'you', 'said', '||period||', 'but', 'it', 'was', 'something', '||period||', 'i', 'heard', 'something', '||period||', 'hello', '||questionmark||', 'hello', '||comma||', 'mrs', '||period||', 'kramer', '||questionmark||', 'mrs', '||period||', 'kramer', '||questionmark||', 'could', 'you', 'turn', 'the', 'music', 'down', '||questionmark||', 'could', 'you', 'turn', 'the', 'music', 'down', '||exclammark||', '||return||', '||return||', 'george:', 'ask', 'her', 'about', 'kramer', '||period||', '||return||', '||return||', 'jerry:', "she's", 'drunk', 'out', 'of', 'her', 'mind', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'leaving', 'a', 'message', 'on', "elaine's", 'machine', '||rightparen||', ':', 'elaine', '||questionmark||', 'are', 'you', 'there', '||questionmark||', "it's", 'me', '||comma||', "i'm", 'locked', 'out', 'of', 'my', 'apartment', '||comma||', 'i', 'need', 'my', 'spare', 'keys', '||period||', 'where', 'are', 'you', '||questionmark||', "i'm", 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'shouting', 'over', 'the', "cycle's", 'engine', '||rightparen||', ':', 'hey', '||exclammark||', 'you', 'ever', 'been', 'in', 'an', 'accident', '||questionmark||', '||return||', '||return||', 'biker:', 'about', 'five', 'years', 'ago', '||period||', 'i', 'was', 'going', 'down', 'this', 'very', 'road', '||period||', 'same', 'time', 'of', 'day', '||comma||', 'going', 'about', 'the', 'same', 'speed', "i'm", 'going', 'now', '||period||', '||period||', '||period||', 'there', 'was', 'a', 'rock', 'in', 'the', 'road', '||period||', "couldn't", 'have', 'been', 'more', 'than', 'a', 'pebble', '||period||', 'never', 'really', 'saw', 'it', '||exclammark||', 'lost', 'control', 'of', 'the', 'bike', '||comma||', 'went', "flyin'", 'about', 'a', 'hundred', 'feet', '||dash||', 'came', 'down', 'right', 'on', 'my', 'head', '||period||', 'cracked', 'it', 'wide', 'open', '||exclammark||', 'blood', 'and', 'stuff', 'was', 'just', 'splattered', 'all', 'over', 'the', 'road', '||comma||', 'there', '||period||', '||period||', '||period||', 'i', 'broke', 'every', 'bone', 'in', 'my', 'face', '||period||', 'hey', '||comma||', 'you', 'know', '||comma||', 'when', 'they', 'found', 'me', '||comma||', 'my', 'eyes', 'were', 'hanging', 'out', 'of', 'their', 'sockets', '||questionmark||', 'yeah', '||comma||', 'they', 'pronounced', 'me', 'dead', 'at', 'the', 'scene', '||period||', 'i', 'was', 'in', 'a', 'coma', 'for', '||period||', '||period||', '||period||', 'well', '||comma||', 'they', 'told', 'me', 'about', 'a', 'year', '||period||', '||period||', '||period||', 'said', "i'd", 'be', 'a', 'vegetable', 'for', 'life', '||period||', 'yeah', '||comma||', 'but', 'i', 'showed', "'em", '||period||', 'ever', 'since', 'then', 'i', 'always', 'wear', 'a', 'helmet', '||exclammark||', '||leftparen||', 'the', 'biker', 'goes', 'into', 'a', 'turn', '||period||', '||rightparen||', 'lean', '||exclammark||', '||leftparen||', 'kramer', 'yells', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'applauding', '||rightparen||', ':', 'georgie', 'boy', '||exclammark||', 'way', 'to', 'come', 'through', 'with', 'the', 'keys', '||exclammark||', 'sit', 'down', '||comma||', "i'm", 'buying', 'you', 'dinner', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'i', 'gotta', 'tell', 'ya', '||period||', '||period||', '||period||', 'i', 'been', "thinkin'", 'about', 'it', '||comma||', 'i', 'just', "don't", 'feel', 'right', 'about', 'letting', 'you', 'into', "elaine's", 'apartment', '||period||', '||return||', '||return||', 'jerry:', "don't", 'feel', 'right', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', "shouldn't", 'have', 'let', 'you', 'into', "kramer's", '||comma||', 'now', 'you', 'want', 'to', 'go', 'into', "elaine's", '||period||', '||period||', '||period||', 'she', 'entrusted', 'me', 'with', 'her', 'spare', 'keys', '||comma||', 'how', 'can', 'i', 'just', 'let', 'you', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'the', 'big', 'deal', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'because', 'you', 'have', "someone's", 'spare', 'keys', '||comma||', 'it', "doesn't", 'entitle', 'you', 'to', 'break', 'into', 'their', 'apartment', '||period||', "that's", 'the', 'reason', 'you', 'took', 'away', "kramer's", 'keys', '||period||', '||return||', '||return||', 'jerry:', 'first', 'of', 'all', '||comma||', "you're", 'not', 'even', 'supposed', 'to', 'have', "elaine's", 'keys', '||period||', "you're", 'supposed', 'to', 'give', "'em", 'back', 'to', 'her', '||comma||', 'so', 'she', 'can', 'give', "'em", 'back', 'to', 'me', '||comma||', 'because', 'she', 'has', 'mine', '||period||', 'so', 'technically', '||comma||', 'those', 'are', 'my', 'keys', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'well', '||comma||', 'if', 'you', 'had', 'never', 'taken', 'your', 'keys', 'back', 'from', 'kramer', '||comma||', 'he', 'never', 'would', 'have', 'taken', 'his', 'back', 'from', 'you', 'and', 'given', "'em", 'to', 'me', '||comma||', 'in', 'which', 'case', 'i', "wouldn't", 'have', 'had', 'to', 'take', 'mine', 'back', 'from', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'want', 'those', 'keys', '||period||', '||leftparen||', 'tries', 'to', 'grab', 'the', 'keys', 'from', 'george', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'nope', '||comma||', 'no', 'can', 'do', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'give', 'them', 'to', 'me', '||comma||', 'i', 'want', 'these', 'keys', '||period||', '||leftparen||', 'they', 'struggle', 'over', 'the', 'keys', '||period||', '||rightparen||', 'i', "don't", 'want', 'to', 'get', 'physical', '||exclammark||', '||return||', '||return||', 'george:', 'do', 'you', 'wanna', 'fight', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'wanna', 'fight', '||questionmark||', '||return||', '||return||', 'george:', "i'll", 'fight', 'ya', '||exclammark||', 'not', 'the', 'face', '||exclammark||', 'not', 'the', 'face', '||exclammark||', '||leftparen||', 'the', 'struggle', 'continues', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'and', 'then', '||comma||', 'the', 'evil', 'ogre', 'took', 'back', 'the', 'magical', 'keys', 'from', 'the', 'handsome', 'young', 'prince', '||period||', '||return||', '||return||', 'hippie', '#1:', 'oh', 'no', '||period||', 'he', "didn't", 'take', 'back', 'the', 'keys', '||comma||', 'no', 'way', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', 'and', 'then', 'the', 'handsome', 'young', 'prince', 'was', 'cast', 'out', 'into', 'the', 'cruel', '||comma||', 'cruel', 'world', '||period||', '||return||', '||return||', 'hippie', '#1:', 'oh', 'man', '||comma||', 'what', 'a', 'bummer', '||period||', 'that', 'ogre', "dude's", 'pretty', 'cold', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "he's", 'cold', '||period||', '||return||', '||return||', 'hippie', '#1:', 'lemme', 'tell', 'you', 'something', '||comma||', 'kramer', '||period||', 'if', 'that', 'ogre', 'dude', 'pulled', 'that', 'crap', 'on', 'me', '||leftparen||', 'pulls', 'out', 'a', 'knife', '||rightparen||', '||dash||', "i'd", 'stab', 'him', '||exclammark||', "i'd", 'cut', 'him', 'in', 'half', '||exclammark||', "i'd", 'gut', 'him', 'like', 'a', 'fish', '||comma||', 'man', '||exclammark||', "that's", 'what', "i'd", 'do', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', "that'd", 'be', 'funny', '||period||', '||leftparen||', 'to', 'driver', '||rightparen||', 'hey', '||comma||', 'you', 'can', 'drop', 'me', 'here', '||exclammark||', '||return||', '||return||', 'hippie', '#1:', 'hey', '||comma||', "what's", 'the', 'rush', '||comma||', 'man', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'gotta', 'be', "goin'", 'now', '||period||', '||return||', '||return||', 'hippie', '#1:', 'hey', '||comma||', 'kramer', '||dash||', 'have', 'you', 'ever', 'killed', 'a', 'man', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'think', '||comma||', 'junior', '||questionmark||', 'you', 'think', 'these', 'hands', 'have', 'been', "soakin'", 'in', 'ivory', 'liquid', '||questionmark||', '||leftparen||', 'mimics', 'choking', 'somebody', '||rightparen||', '||return||', '||return||', 'hippie', '#2:', "don't", 'leave', '||comma||', 'kramer', '||comma||', 'stay', 'with', 'us', '||period||', 'you', 'know', 'so', 'much', 'about', 'the', 'world', '||comma||', 'we', 'need', 'you', '||comma||', 'please', 'kramer', '||exclammark||', '||leftparen||', 'they', 'all', 'start', 'chanting', '||rightparen||', 'please', '||comma||', 'kramer', '||exclammark||', 'please', '||comma||', 'kramer', '||exclammark||', '||leftparen||', 'scene', 'ends', 'with', 'kramer', 'trying', 'to', 'escape', 'their', 'clutches', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "don't", 'you', 'see', '||questionmark||', "you're", 'just', 'avoiding', 'the', 'middle', 'man', '||period||', 'you', 'were', 'gonna', 'give', 'her', 'her', 'spare', 'keys', '||comma||', 'so', 'she', 'was', 'gonna', 'give', "'em", 'to', 'me', '||period||', 'so', '||comma||', 'all', "that's", 'happening', 'is', 'that', 'instead', 'of', 'giving', 'them', 'to', 'her', '||comma||', "you're", 'giving', 'them', 'to', 'me', '||period||', "it's", 'just', 'unfortunate', 'that', 'when', 'she', 'gave', 'you', 'yours', '||comma||', 'you', "didn't", 'give', 'her', 'hers', '||period||', "'cause", 'then', 'she', 'would', 'have', 'given', "'em", 'to', 'me', '||comma||', 'because', 'she', 'has', 'mine', '||period||', 'so', 'then', 'i', 'would', 'have', 'never', 'had', 'to', 'ask', 'you', 'for', 'hers', '||comma||', 'so', 'that', 'i', 'could', 'get', 'mine', '||period||', '||return||', '||return||', 'george:', "you're", 'right', '||comma||', 'how', 'did', 'i', 'miss', 'that', '||questionmark||', '||leftparen||', 'begins', 'unlocking', 'the', 'door', '||comma||', 'mutters', 'under', 'his', 'breath', '||rightparen||', 'maybe', 'because', "it's", 'a', 'crock', 'of', 'shit', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'i', 'heard', 'something', '||period||', '||return||', '||return||', 'george:', "didn't", 'say', 'anything', '||period||', '||leftparen||', 'they', 'go', 'into', "elaine's", 'apartment', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'how', 'long', 'you', 'been', "drivin'", 'this', 'thing', '||questionmark||', '||return||', '||return||', 'woman:', "goin'", 'on', 'four', 'years', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "nothin's", 'sexier', 'than', 'a', 'woman', 'behind', 'the', 'wheel', 'of', 'a', 'semi', '||period||', '||return||', '||return||', 'woman:', "nothin'", '||questionmark||', '||leftparen||', 'they', 'exchange', 'a', 'glance', '||comma||', 'then', 'laugh', '||period||', '||rightparen||', 'listen', 'to', 'you', '||comma||', "you're", 'quite', 'the', 'sweet', '||dash||', 'talker', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'always', 'wanted', 'to', 'drive', 'the', 'big', 'rigs', '||period||', 'i', 'used', 'to', 'watch', 'those', 'commercials', 'during', 'the', 'reruns', 'of', 'gomer', 'pyle', '||period||', '||return||', '||return||', 'woman:', 'you', 'want', 'to', 'give', 'it', 'a', 'try', '||questionmark||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '||return||', '||return||', 'woman:', 'do', 'you', 'know', 'how', 'to', 'double', '||dash||', 'clutch', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'woman:', 'well', '||comma||', 'come', 'on', '||exclammark||', '||leftparen||', 'they', 'trade', 'places', 'and', 'kramer', 'gets', 'behind', 'the', 'wheel', '||period||', 'kramer', 'turns', 'out', 'to', 'be', 'really', 'rusty', 'on', 'the', "ol'", 'double', '||dash||', 'clutch', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'they', 'were', 'in', 'here', '||comma||', 'i', 'saw', 'her', 'put', "'em", 'in', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'this', 'is', 'great', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'do', 'they', 'look', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'look', 'like', 'keys', '||comma||', 'george', '||period||', 'they', 'look', 'exactly', 'like', 'keys', '||period||', '||leftparen||', 'in', 'disgust', '||rightparen||', '||quotemark||', 'what', 'do', 'they', 'look', 'like', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'well', '||comma||', "they're", 'obviously', 'not', 'here', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "they've", 'gotta', 'be', 'here', 'somewhere', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'unless', 'i', 'pull', 'down', 'on', 'this', 'statuette', 'and', 'a', 'hidden', 'wall', 'opens', 'up', '||comma||', 'we', 'have', 'checked', 'every', 'square', 'inch', 'of', 'this', 'apartment', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'looking', 'through', 'some', 'papers', 'on', 'the', 'desk', '||rightparen||', ':', 'what', 'is', 'this', '||questionmark||', '||quotemark||', 'murphy', 'brown', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'by', 'elaine', 'benes', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "elaine's", 'writing', 'a', '||quotemark||', 'murphy', 'brown', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'lemme', 'see', 'this', '||period||', '||leftparen||', 'tries', 'to', 'grab', 'the', 'papers', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||exclammark||', '||leftparen||', 'they', 'fight', 'over', 'the', 'paper', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'gimme', 'half', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'here', '||exclammark||', '||return||', '||return||', 'george:', 'why', "didn't", 'she', 'tell', 'us', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'making', 'fun', '||rightparen||', ':', 'elaine', 'is', 'writing', 'a', 'sitcom', '||period||', '||period||', '||period||', '||exclammark||', '||leftparen||', 'elaine', 'enters', 'the', 'room', 'behind', 'jerry', 'and', 'george', '||period||', 'jerry', 'spots', 'her', 'and', 'tosses', 'his', 'half', 'of', 'the', 'script', 'at', 'george', '||period||', 'george', 'throws', 'it', 'back', 'and', 'paper', 'goes', 'flying', 'everywhere', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'weasels', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'dare', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'we', 'hardly', 'read', 'anything', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'funny', '||exclammark||', '||return||', '||return||', 'elaine:', 'who', 'gave', 'you', 'permission', 'to', 'come', 'into', 'my', 'house', 'and', 'just', 'go', 'through', 'all', 'my', 'things', '||questionmark||', 'you', 'thought', 'it', 'was', 'funny', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||leftparen||', 'picks', 'up', 'some', 'of', 'the', 'pages', '||rightparen||', 'from', 'what', 'i', 'saw', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'grabs', 'the', 'papers', 'from', 'jerry', '||rightparen||', ':', 'well', '||comma||', "it's", 'just', 'a', 'first', 'draft', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'locked', 'out', 'of', 'my', 'apartment', '||comma||', "i'm", 'just', 'trying', 'to', 'get', 'my', 'keys', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'turning', 'on', 'george', '||rightparen||', ':', 'why', 'did', 'you', 'let', 'him', 'in', '||questionmark||', '||exclammark||', '||leftparen||', 'shoves', 'george', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'he', 'forced', 'me', 'to', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'did', 'not', '||exclammark||', '||return||', '||return||', 'george:', 'yes', 'you', 'did', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', '||exclammark||', 'get', 'out', '||exclammark||', 'get', 'out', '||exclammark||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'wait', '||exclammark||', 'i', 'need', 'my', 'spare', 'keys', '||exclammark||', '||return||', '||return||', 'elaine:', 'here', '||exclammark||', "here's", 'your', 'damn', 'keys', '||comma||', 'you', 'keep', "'em", '||exclammark||', 'i', "don't", 'want', "'em", 'anymore', '||exclammark||', '||return||', '||return||', 'jerry:', 'good', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'and', 'i', 'want', 'my', 'keys', 'back', 'from', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "don't", 'want', 'me', 'to', 'hold', 'your', 'keys', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'you', "can't", 'be', 'trusted', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||comma||', 'fine', '||period||', '||leftparen||', 'gives', 'the', 'keys', 'to', 'elaine', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'and', 'i', "don't", 'want', 'you', 'to', 'hold', 'mine', '||exclammark||', '||return||', '||return||', 'elaine:', 'good', '||exclammark||', 'i', "won't", '||exclammark||', '||return||', '||return||', 'jerry:', 'good', '||exclammark||', "don't", '||exclammark||', 'are', 'these', 'my', 'keys', '||questionmark||', '||return||', '||return||', 'elaine:', 'these', "aren't", 'my', 'keys', '||exclammark||', '||return||', '||return||', 'george:', 'whose', 'are', 'these', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'just', 'thought', 'i', 'could', 'write', 'it', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'something', 'you', 'want', 'to', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'those', 'writers', 'make', 'a', 'lot', 'of', 'money', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'let', 'me', 'tell', 'you', 'something', 'about', 'show', 'business', '||period||', "it's", 'hard', 'work', '||exclammark||', 'you', "don't", 'just', 'write', 'a', '||quotemark||', 'murphy', 'brown', '||period||', '||quotemark||', 'you', 'gotta', 'watch', 'the', 'show', '||comma||', 'study', 'it', '||comma||', 'get', 'a', 'sense', 'of', 'the', 'characters', '||comma||', 'how', 'they', 'relate', 'to', 'each', 'other', '||period||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', '||comma||', 'can', 'i', 'just', 'watch', 'the', 'show', '||questionmark||', '||leftparen||', 'mutters', 'under', 'her', 'breath', '||rightparen||', 'god', '||comma||', 'what', 'an', 'asshole', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'i', 'heard', 'something', '||period||', '||leftparen||', 'looks', 'at', 'the', 'tv', '||rightparen||', 'elaine', '||comma||', 'elaine', '||exclammark||', "it's", 'kramer', '||exclammark||', "kramer's", 'on', '||quotemark||', 'murphy', 'brown', '||quotemark||', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'laughing', '||rightparen||', ':', "kramer's", 'on', '||quotemark||', 'murphy', 'brown', '||quotemark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'there', 'he', 'is', '||comma||', "he's", "sittin'", 'at', 'the', 'desk', '||exclammark||', '||return||', '||return||', 'candice', 'bergen:', 'hi', '||comma||', "i'm", 'murphy', 'brown', '||comma||', 'you', 'must', 'be', 'my', 'new', 'secretary', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'good', 'morning', '||comma||', 'miss', 'brown', '||period||', '||return||', '||return||', 'candice', 'bergen:', 'and', 'you', 'are', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'uh', '||comma||', 'steven', 'snell', '||period||', '||return||', '||return||', 'candice', 'bergen:', 'snell', '||period||', 'well', '||comma||', 'hello', '||comma||', 'mr', '||period||', 'snell', '||period||', '||return||', '||return||', 'kramer:', 'steven', '||period||', '||return||', '||return||', 'candice', 'bergen:', 'steven', '||period||', 'are', 'you', 'familiar', 'with', 'this', 'computer', 'system', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||dash||', "i'm", 'familiar', 'with', 'it', '||period||', '||return||', '||return||', 'candice', 'bergen:', 'steven', 'snell', '||questionmark||', 'i', 'know', 'people', '||period||', '||period||', '||period||', 'and', 'i', 'have', 'a', 'very', 'good', 'feeling', 'about', 'you', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'kramer', 'was', 'on', 'murphy', 'brown', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'murphy', 'brown', '||comma||', 'the', 'tv', 'show', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'will', 'ya', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', 'was', 'on', 'murphy', 'brown', '||questionmark||', 'that', 'son', 'of', 'a', 'gun', '||exclammark||', '||return||', '||return||', 'jerry:', 'something', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'with', 'candace', 'bergen', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||exclammark||', '||return||', '||return||', 'george:', "i've", 'always', 'liked', 'her', '||period||', 'remember', 'her', 'in', "'carnal", "knowledge'", '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'george:', 'did', 'she', 'show', 'her', 'breasts', 'in', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'not', 'really', 'the', 'naked', 'type', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'i', 'missed', 'kramer', '||period||', 'you', 'know', 'he', 'asked', 'me', 'to', 'go', 'with', 'him', 'to', 'california', '||period||', '||return||', '||return||', 'jerry:', 'he', 'did', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'turned', 'him', 'down', '||period||', '||return||', '||return||', 'jerry:', 'how', 'come', 'you', "didn't", 'tell', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'asked', 'me', 'to', 'keep', 'it', 'a', 'secret', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'can', 'never', 'keep', 'a', 'secret', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'this', 'was', 'like', 'a', 'record', '||period||', 'my', 'previous', 'record', 'was', 'when', 'joni', 'hirsch', 'asked', 'me', 'not', 'to', 'tell', 'anybody', 'that', 'we', 'slept', 'together', '||period||', 'kept', 'a', 'lid', 'on', 'that', 'for', 'about', '28', 'seconds', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "you've", 'come', 'a', 'long', 'way', '||period||', '||return||', '||return||', 'george:', "i've", 'matured', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'listen', '||comma||', 'the', 'tonight', 'show', 'called', 'me', '||comma||', 'they', 'want', 'me', 'to', 'come', 'out', 'and', 'do', 'the', 'show', 'on', 'the', '28th', 'and', "they're", 'giving', 'me', 'two', 'free', 'tickets', 'to', 'la', '||period||', 'you', 'wanna', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'free', 'ticket', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'in', 'fact', 'we', 'could', 'track', 'down', 'kramer', '||period||', 'i', 'always', 'felt', 'bad', 'about', 'the', 'way', 'he', 'left', '||comma||', 'you', 'know', '||questionmark||', 'that', 'was', 'a', 'mess', '||period||', 'i', 'never', 'should', 'have', 'taken', 'back', 'those', 'keys', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'accommodations', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'taken', 'care', 'of', '||period||', '||return||', '||return||', 'george:', 'is', 'there', 'a', 'meal', 'allowance', '||questionmark||', 'what', 'about', 'seat', 'assignments', '||questionmark||', 'could', 'i', 'have', 'the', 'kosher', 'meal', '||questionmark||', 'i', 'hear', 'the', 'kosher', 'meal', 'is', 'good', '||period||', 'and', 'i', 'need', 'clothes', '||period||', 'gotta', 'get', 'a', 'haircut', '||period||', 'gonna', 'have', 'to', '||comma||', 'i', 'have', 'to', 'refill', 'my', 'allergy', 'medication', '||period||', 'oh', '||comma||', 'do', 'i', 'need', 'a', 'hat', '||questionmark||', 'i', 'need', 'a', 'hat', '||comma||', "don't", 'i', '||questionmark||', 'could', 'we', 'do', 'the', 'universal', 'tour', '||questionmark||', 'they', 'have', 'that', 'backdraft', 'exhibit', 'now', '||comma||', 'that', 'looks', 'very', 'cool', 'to', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'so', 'my', 'acting', 'technique', '||comma||', 'my', 'personal', 'acting', 'technique', 'is', 'working', 'with', 'color', '||comma||', 'imagining', 'color', '||comma||', 'then', 'finding', 'the', 'emotional', 'vibrational', 'mood', 'connected', 'to', 'the', 'color', '||period||', 'see', '||comma||', 'if', 'you', 'look', 'through', 'my', 'scripts', '||comma||', "you'll", 'see', 'that', 'all', 'my', 'lines', 'have', 'a', 'special', 'color', '||comma||', 'so', 'i', "don't", 'memorize', 'language', '||comma||', 'i', 'memorize', 'color', '||period||', 'this', 'way', 'i', 'can', 'go', 'through', 'red', '||comma||', 'yellow', '||comma||', 'green', '||comma||', 'blue', '||period||', 'and', 'i', 'have', 'a', 'full', 'palette', 'of', 'emotions', '||period||', '||return||', '||return||', 'studio', 'guard:', 'hey', '||comma||', "didn't", 'i', 'tell', 'you', 'to', 'get', 'out', 'of', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'studio', 'guard:', "c'mon", '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'just', '||dash||', '||dash||', '||return||', '||return||', 'studio', 'guard:', 'yeah', 'yeah', '||comma||', 'you', 'were', 'just', 'nothing', '||period||', "c'mon", '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "we'll", 'talk', 'about', 'this', 'a', 'little', 'later', '||period||', 'are', 'you', 'an', 'actor', '||questionmark||', '||return||', '||return||', 'voice:', 'murphy', 'brown', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||comma||', 'uh', '||comma||', 'candace', 'bergen', 'please', '||period||', '||return||', '||return||', 'voice:', "who's", 'calling', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'well', '||comma||', 'just', 'tell', 'her', 'that', "it's", 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'alright', "i'll", 'uh', '||comma||', "i'll", 'call', 'her', 'at', 'home', '||period||', '||leftparen||', 'to', 'man', 'waiting', 'behind', 'him', '||rightparen||', 'go', 'ahead', '||comma||', "it's", 'all', 'yours', '||period||', '||return||', '||return||', 'helena:', 'hello', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'uh', '||comma||', 'helena', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'helena:', 'i', "haven't", 'worked', 'since', '1934', '||comma||', 'how', 'do', 'you', 'think', 'i', 'am', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'only', 'uh', '||comma||', '58', 'years', '||period||', '||return||', '||return||', 'helena:', 'it', 'was', 'a', 'three', 'stooges', 'short', '||comma||', '||quotemark||', 'sappy', 'pappy', '||period||', '||quotemark||', 'i', 'played', 'mr', '||period||', "sugarman's", 'secretary', '||comma||', 'remember', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'right', '||comma||', 'right', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'that', 'was', 'a', 'shemp', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'helena:', 'no', '||comma||', 'a', 'curly', '||period||', 'the', 'boys', 'played', 'three', 'sailors', 'who', 'find', 'a', 'baby', '||comma||', 'the', "baby's", 'been', 'kidnapped', 'and', 'the', 'police', 'think', 'that', 'they', 'did', 'it', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||comma||', 'right', '||period||', '||return||', '||return||', 'helena:', 'but', '||comma||', 'but', 'of', 'course', 'they', "didn't", 'do', 'it', '||comma||', 'the', 'police', 'had', 'made', 'an', 'awful', 'mistake', '||period||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||return||', '||return||', 'helena:', 'moe', 'hits', 'curly', 'with', 'an', 'axe', '||comma||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||period||', '||return||', '||return||', 'helena:', 'the', 'stooges', 'catch', 'the', 'kidnappers', '||comma||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||return||', '||return||', 'helena:', 'but', "it's", 'too', 'late', '||period||', '||return||', '||return||', 'kramer:', 'really', '||period||', '||return||', '||return||', 'helena:', 'the', "baby's", 'dead', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '||return||', '||return||', 'helena:', 'the', 'boys', 'are', 'sent', 'to', 'death', 'row', 'and', 'are', 'executed', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', "don't", 'remember', 'that', 'part', '||period||', '||return||', '||return||', 'helena:', 'i', 'play', 'mr', '||period||', "sugarman's", 'secretary', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'you', 'were', '||comma||', 'you', 'were', 'very', 'good', '||period||', '||return||', '||return||', 'helena:', 'yeah', '||comma||', 'it', 'was', 'sad', 'for', 'a', 'three', 'stooges', '||comma||', 'what', 'with', 'the', 'dead', 'baby', 'and', 'the', 'stooges', 'being', 'executed', 'and', 'all', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'was', 'an', 'unusual', 'choice', 'for', 'the', 'stooges', '||period||', '||return||', '||return||', 'helena:', 'would', 'you', 'like', 'to', 'buy', 'me', 'a', 'fat', '||dash||', 'free', 'frozen', 'yogurt', 'at', 'the', 'store', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', '||comma||', 'uh', '||comma||', 'you', 'know', 'i', "can't", 'right', 'now', '||comma||', 'you', 'know', '||comma||', 'uh', '||comma||', 'i', 'got', 'a', 'very', 'big', 'meeting', '||comma||', 'i', 'got', 'these', 'people', 'interested', 'in', 'my', 'movie', 'treatment', '||period||', 'so', '||comma||', 'uh', '||comma||', 'i', 'guess', "we'll", 'have', 'to', 'make', 'it', 'another', 'time', '||comma||', 'alright', '||questionmark||', '||return||', '||return||', 'helena:', 'well', 'no', '||exclammark||', 'no', '||comma||', "don't", 'go', 'out', 'there', '||comma||', 'kramer', '||comma||', "they'll", 'hurt', 'you', '||comma||', "they'll", 'destroy', 'you', '||period||', "you'll", 'never', 'make', 'it', 'in', 'this', 'town', '||comma||', "you're", 'too', 'sensitive', 'like', 'me', '||comma||', '||return||', '||return||', 'kramer:', 'helena', '||comma||', "you're", 'wrong', '||comma||', 'you', 'know', "i'm", 'not', 'that', 'sensitive', 'at', 'all', '||period||', '||return||', '||return||', 'helena:', 'i', 'was', 'engaged', 'to', 'mickey', 'rooney', '||exclammark||', 'he', 'left', 'me', 'at', 'the', 'altar', '||period||', 'kramer', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'going', 'on', 'a', 'two', 'day', 'trip', '||comma||', 'what', 'are', 'you', '||comma||', 'diana', 'ross', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'happen', 'to', 'dress', 'based', 'on', 'mood', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'but', 'you', 'essentially', 'wear', 'the', 'same', 'thing', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'george:', 'seemingly', '||period||', 'seemingly', '||period||', 'but', 'within', 'that', 'basic', 'framework', 'there', 'are', 'many', 'subtle', 'variations', '||comma||', 'only', 'discernable', 'to', 'an', 'acute', 'observer', '||comma||', 'that', 'reflect', 'the', 'many', 'moods', '||comma||', 'the', 'many', 'shades', '||comma||', 'the', 'many', 'sides', 'of', 'george', 'costanza', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'referring', 'to', "george's", 'outfit', '||rightparen||', 'and', 'what', 'mood', 'is', 'this', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'morning', 'mist', '||period||', '||return||', '||return||', 'lt', '||period||', 'coleman:', 'what', 'do', 'you', 'figure', '||comma||', '20', '||questionmark||', '21', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'close', 'enough', '||period||', '||return||', '||return||', 'lt', '||period||', 'coleman:', 'forensics', 'ought', 'to', 'be', 'able', 'to', 'nail', 'it', 'down', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'no', 'id', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'coleman:', 'no', 'id', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'no', 'witnesses', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'coleman:', 'just', 'the', 'trees', '||comma||', 'johnny', '||period||', 'pretty', 'young', 'thing', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'she', 'was', '||period||', 'not', 'any', 'more', '||period||', 'somebody', 'saw', 'to', 'that', '||period||', '||return||', '||return||', 'lt', '||period||', 'coleman:', 'sure', 'did', '||comma||', 'johnny', '||period||', 'damn', 'shame', 'too', '||period||', 'what', 'do', 'you', 'make', 'of', 'it', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'i', "don't", 'know', '||comma||', 'but', 'i', "don't", 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', 'guy', '||comma||', "he's", 'like', 'a', 'cat', 'burglar', '||period||', 'he', 'thinks', 'if', 'he', 'goes', 'through', 'real', 'slow', 'the', 'machine', "won't", 'detect', 'him', '||period||', '||return||', '||return||', 'george:', 'personally', "i'm", 'a', 'little', 'nervous', 'about', 'going', 'through', 'these', 'things', '||period||', "i'm", 'afraid', "i'm", 'gonna', 'step', 'through', 'into', 'another', 'dimension', '||period||', '||return||', '||return||', 'jerry:', 'just', 'go', '||period||', '||return||', '||return||', 'george:', 'heh', 'he', '||comma||', 'i', 'made', 'it', '||period||', '||return||', '||return||', 'security', 'guard:', 'empty', 'your', 'pockets', 'please', '||period||', '||return||', '||return||', 'security', 'guard:', 'walk', 'through', 'again', 'please', '||period||', '||return||', '||return||', 'security', 'guard:', 'are', 'you', 'sure', 'you', "don't", 'have', 'any', 'metal', 'on', 'you', '||questionmark||', 'bracelets', '||questionmark||', 'rings', '||questionmark||', 'anklets', '||questionmark||', '||return||', '||return||', 'jerry:', 'anklets', '||questionmark||', '||return||', '||return||', 'security', 'guard:', 'a', 'lot', 'of', 'men', 'wear', 'anklets', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'security', 'guard:', 'yeah', '||period||', '||return||', '||return||', 'other', 'security', 'guard', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'what', 'do', 'you', 'have', 'in', 'your', 'bag', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'bag', '||questionmark||', '||return||', '||return||', 'security', 'guard:', 'step', 'over', 'here', 'please', '||period||', '||return||', '||return||', 'jerry:', 'over', 'here', '||questionmark||', '||return||', '||return||', 'other', 'security', 'guard:', 'do', 'you', 'have', 'a', 'knife', 'in', 'the', 'bag', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'knife', '||questionmark||', '||return||', '||return||', 'other', 'security', 'guard:', 'open', 'the', 'bag', '||comma||', 'please', '||period||', '||return||', '||return||', 'other', 'security', 'guard:', "what's", 'this', '||questionmark||', '||return||', '||return||', 'george:', 'moisturizer', '||questionmark||', '||return||', '||return||', 'other', 'security', 'guard:', 'for', 'your', 'wife', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'uh', '||period||', '||period||', '||period||', 'i', 'use', 'it', '||period||', '||return||', '||return||', 'security', 'guard:', 'spread', 'your', 'arms', 'and', 'legs', 'please', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'facing', 'the', 'lengthening', 'line', 'behind', 'him', '||rightparen||', 'ladies', 'and', 'gentlemen', '||comma||', 'i', 'implore', 'you', '||period||', '||return||', '||return||', 'other', 'security', 'guard:', 'have', 'a', 'good', 'trip', '||period||', '||return||', '||return||', 'security', 'guard:', 'alright', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'security', 'guard:', "that's", 'it', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'george:', "c'mon", 'jerry', '||comma||', "let's", 'go', '||period||', 'what', 'was', 'that', 'all', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'must', 'have', 'iron', 'rich', 'blood', '||period||', '||return||', '||return||', 'george:', 'here', 'we', 'go', '||comma||', 'la', '||period||', '||return||', '||return||', 'jerry:', 'the', 'coast', '||comma||', '||return||', '||return||', 'george:', 'la', '||dash||', 'la', 'land', '||period||', 'i', 'got', 'the', 'window', 'seat', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'said', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'called', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||comma||', 'oh', 'no', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'ah', '||comma||', 'yeah', '||comma||', "i'm", 'here', 'for', 'the', 'audition', '||period||', '||return||', '||return||', 'receptionist:', 'which', 'audition', '||comma||', 'the', 'music', 'video', '||comma||', 'the', 'horror', 'movie', '||comma||', 'the', 'exercise', 'tape', 'or', 'the', 'infomercial', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', "let's", 'see', '||period||', '||period||', '||period||', 'well', '||period||', '||return||', '||return||', 'kramer:', 'you', 'scream', 'good', '||period||', '||return||', '||return||', 'chelsea:', 'you', 'too', '||period||', '||return||', '||return||', 'chelsea:', 'so', '||comma||', 'can', 'i', 'keep', 'this', 'treatment', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'got', '20', 'copies', '||period||', '||return||', '||return||', 'chelsea:', "'cause", 'i', 'can', '||comma||', 'uh', '||comma||', 'show', 'it', 'to', 'my', 'manager', '||period||', 'he', 'has', 'connections', 'with', 'west', 'german', 'television', 'money', '||period||', '||return||', '||return||', 'kramer:', 'really', '||period||', '||return||', '||return||', 'chelsea:', 'yeah', '||comma||', "they're", 'trying', 'to', 'put', 'together', 'a', 'miniseries', 'for', 'me', 'on', 'eva', 'braun', '||period||', 'i', 'mean', 'think', 'about', 'it', '||comma||', 'is', 'that', 'a', 'great', 'idea', '||questionmark||', 'we', 'know', 'nothing', 'about', 'eva', 'braun', '||comma||', 'only', 'that', 'she', 'was', "hitler's", 'girlfriend', '||period||', '||return||', '||return||', 'kramer:', 'um', '||dash||', 'hm', '||period||', '||return||', '||return||', 'chelsea:', 'what', 'was', 'it', 'like', 'having', 'sex', 'with', 'adolf', 'hitler', '||questionmark||', 'what', 'do', 'you', 'wear', 'in', 'a', 'bunker', '||questionmark||', 'what', 'did', 'her', 'parents', 'think', 'of', 'hitler', 'as', 'a', 'potential', 'son', '||dash||', 'in', '||dash||', 'law', '||questionmark||', 'i', 'mean', 'it', 'could', 'just', 'go', 'on', 'and', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'wait', '||comma||', 'hold', 'it', '||comma||', 'hold', 'it', '||period||', 'look', "who's", 'over', 'there', '||period||', "don't", 'look', '||comma||', "don't", 'look', '||exclammark||', "it's", 'fred', 'savage', '||period||', '||return||', '||return||', 'chelsea:', 'big', 'deal', '||period||', '||return||', '||return||', 'kramer:', "he'd", 'be', 'perfect', 'for', 'my', 'movie', '||period||', 'this', 'is', 'a', 'once', '||dash||', 'in', '||dash||', 'a', '||dash||', 'lifetime', 'opportunity', '||period||', '||leftparen||', 'takes', 'a', 'deep', 'breath', '||rightparen||', 'i', 'gotta', 'go', 'over', 'there', '||comma||', 'i', 'gotta', 'give', 'him', 'a', 'copy', 'of', 'my', 'treatment', '||period||', '||return||', '||return||', 'chelsea:', 'why', 'are', 'you', 'breathing', 'so', 'hard', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'just', 'a', 'little', 'nervous', '||period||', 'ok', '||comma||', 'i', 'gotta', 'relax', '||period||', 'phew', '||period||', 'wish', 'me', 'luck', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'oh', '||comma||', 'did', 'i', 'frighten', 'you', '||questionmark||', "i'm", 'not', 'crazy', '||period||', 'i', 'mean', '||comma||', 'i', 'may', 'look', 'weird', '||comma||', 'but', "i'm", 'just', 'like', 'you', '||comma||', "i'm", 'just', 'a', 'regular', 'guy', 'just', 'trying', 'to', 'make', 'it', 'in', 'this', 'business', '||period||', 'you', 'know', 'i', 'really', 'like', 'your', 'work', '||comma||', 'the', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'fred', 'savage:', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', "can't", 'remember', 'the', 'name', 'of', 'it', '||period||', '||return||', '||return||', 'fred:', 'thanks', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'my', "mind's", 'a', 'blank', '||comma||', "i'm", 'sorta', 'nervous', '||comma||', 'you', 'know', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'fred:', "that's", 'ok', '||period||', 'relax', '||comma||', 'relax', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'but', 'i', 'got', 'this', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'stupid', 'table', '||period||', 'you', 'know', '||comma||', "i'm", 'not', 'normally', 'like', 'this', '||comma||', 'usually', "i'm", 'very', 'cool', 'and', 'charming', '||comma||', 'i', "don't", 'mean', 'to', 'bother', 'you', 'or', 'anything', 'but', 'i', 'think', "it's", 'fate', 'that', 'you', 'happened', 'to', 'be', 'here', 'at', 'the', 'same', 'time', 'as', 'me', '||period||', '||return||', '||return||', 'fred', '||leftparen||', 'a', 'little', 'frightened', 'and', 'backing', 'away', 'towards', 'the', 'door', '||rightparen||', ':', 'yeah', '||comma||', 'its', 'fate', '||comma||', 'you', 'know', '||comma||', "can't", 'avoid', 'your', 'fate', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'this', 'treatment', 'i', 'think', "you'll", 'be', 'great', 'in', '||period||', '||return||', '||return||', 'fred:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'so', "i'd", 'like', 'to', 'give', 'it', 'to', 'you', '||period||', '||return||', '||return||', 'fred:', 'yeah', '||comma||', 'thank', 'you', '||comma||', 'thanks', 'a', 'lot', '||period||', 'bye', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'bumping', 'into', 'a', 'lamp', '||rightparen||', 'alright', '||comma||', 'excuse', 'me', '||period||', 'uh', 'wait', '||comma||', 'wait', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'kramer', '||period||', 'k', '||dash||', 'r', '||dash||', 'a', '||dash||', 'm', '||dash||', 'e', '||dash||', 'r', '||period||', 'uh', '||comma||', 'i', "don't", 'know', '||comma||', 'wavy', '||questionmark||', 'george', '||comma||', 'how', 'would', 'you', 'describe', "kramer's", 'hair', '||questionmark||', '||return||', '||return||', 'george:', 'curly', '||period||', '||return||', '||return||', 'jerry:', 'wavy', '||period||', '||return||', '||return||', 'george:', "what'd", 'you', 'ask', 'me', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'll", 'hold', 'on', '||period||', 'hey', 'george', '||comma||', 'did', 'you', 'see', 'a', 'piece', 'of', 'paper', 'i', 'had', 'on', 'the', 'nightstand', 'here', '||comma||', 'like', 'crumpled', 'up', '||comma||', 'like', 'a', 'napkin', '||questionmark||', '||return||', '||return||', 'george:', 'nope', '||period||', '||return||', '||return||', 'jerry:', "'cause", 'i', 'had', 'like', 'three', 'jokes', 'on', 'it', '||comma||', 'they', 'were', 'all', 'perfectly', 'worded', 'just', 'the', 'way', 'i', 'wanted', 'to', 'have', 'it', '||period||', "can't", 'find', 'it', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'from', 'the', 'bathroom', '||rightparen||', ':', 'hey', '||comma||', 'a', 'shoe', 'buffing', 'machine', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', '6', '||dash||', '3', '||comma||', 'george', '||comma||', 'how', 'tall', 'is', 'kramer', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'got', 'your', 'own', 'shampoo', '||comma||', 'conditioner', '||comma||', 'body', 'lotion', '||exclammark||', 'jerry', '||comma||', 'body', '||return||', '||return||', 'jerry:', 'about', '6', '||dash||', '3', '||period||', '||return||', '||return||', 'george:', 'ooh', '||comma||', 'a', 'shower', 'cap', '||exclammark||', '||return||', '||return||', 'jerry:', 'coming', '||period||', '||return||', '||return||', 'lupe:', 'hello', '||period||', 'i', 'have', 'more', 'towels', '||period||', '||return||', '||return||', 'george:', 'oh', 'good', '||comma||', 'good', '||comma||', 'come', 'in', '||period||', 'come', 'in', '||comma||', 'welcome', '||period||', "i'm", 'george', '||period||', 'and', 'this', 'is', 'jerry', '||comma||', 'over', 'there', '||comma||', 'on', 'the', 'phone', '||comma||', "that's", 'jerry', '||period||', 'and', 'you', 'are', '||comma||', 'um', '||questionmark||', '||return||', '||return||', 'lupe:', 'lupe', '||period||', '||return||', '||return||', 'george:', 'lupe', '||period||', "that's", 'very', 'nice', '||comma||', 'very', 'nice', '||period||', 'listen', '||comma||', 'are', 'you', 'going', 'to', 'be', 'making', 'up', 'the', 'bed', 'in', 'the', 'morning', '||questionmark||', '||return||', '||return||', 'lupe:', 'oh', 'yes', '||period||', '||return||', '||return||', 'george:', 'fine', '||period||', 'excellent', '||period||', 'could', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', 'could', 'you', 'not', 'tuck', 'the', 'blankets', 'in', '||questionmark||', "'cause", 'i', "can't", 'sleep', 'all', 'tucked', 'in', '||period||', '||return||', '||return||', 'lupe:', 'oh', '||comma||', 'yes', '||comma||', 'yes', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'like', 'to', 'just', 'be', 'able', 'to', 'take', 'the', 'blankets', 'and', 'swish', 'them', 'and', 'swirl', 'them', '||comma||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'you', 'know', '||comma||', 'i', "don't", 'like', 'being', 'all', 'tucked', 'in', '||period||', 'i', 'like', 'to', 'have', 'a', 'lot', 'of', 'room', '||comma||', 'you', 'know', 'i', 'like', 'to', 'have', 'my', 'toes', 'pointed', 'up', 'in', 'the', 'air', '||period||', 'just', 'like', 'to', 'scrunch', 'up', 'the', 'blankets', '||period||', '||return||', '||return||', 'lupe:', 'yes', '||comma||', 'yes', '||period||', "it's", 'too', 'tight', 'to', 'sleep', '||period||', '||return||', '||return||', 'george:', 'exactly', '||comma||', 'you', 'know', 'what', "i'm", 'talking', 'about', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'lupe:', 'oh', 'yees', '||comma||', "it's", 'too', 'tight', '||period||', '||leftparen||', 'gesturing', 'towards', 'jerry', '||rightparen||', 'him', 'too', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'jerry', '||comma||', 'you', 'want', 'your', 'blankets', 'tucked', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'want', 'your', 'blankets', 'tucked', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'blankets', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'lupe', 'makes', 'up', 'the', 'beds', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'whatever', 'they', 'do', '||period||', '||return||', '||return||', 'lupe:', 'i', 'tuck', 'in', '||questionmark||', 'yes', '||questionmark||', '||return||', '||return||', 'jerry:', 'tuck', 'in', '||comma||', 'tuck', 'in', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'so', "that's", 'one', 'tuck', 'and', 'one', 'no', '||dash||', 'tuck', '||period||', '||return||', '||return||', 'lupe:', 'okay', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'one', 'second', 'sweetheart', '||period||', 'jerry', '||comma||', 'i', 'really', 'think', "it'd", 'be', 'easier', 'if', 'you', "didn't", 'tuck', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', 'fine', '||comma||', 'you', "don't", 'want', 'me', 'to', 'tuck', '||comma||', 'put', 'me', 'down', 'for', 'a', 'no', '||dash||', 'tuck', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'lupe', '||rightparen||', ':', 'two', 'no', '||dash||', 'tucks', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'hang', 'on', 'a', 'second', '||comma||', 'you', 'know', 'what', '||questionmark||', 'changed', 'my', 'mind', '||comma||', 'make', 'it', 'a', 'tuck', '||period||', '||return||', '||return||', 'george:', 'you', 'just', 'said', 'you', "weren't", 'tucking', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'tucking', '||exclammark||', 'hello', '||questionmark||', 'hello', '||questionmark||', 'they', 'hung', 'up', 'on', 'me', '||period||', 'they', "don't", 'know', 'where', 'kramer', 'is', 'anyway', '||period||', '||return||', '||return||', 'george:', 'alrighty', '||comma||', 'so', '||period||', "that's", 'one', 'tuck', 'and', 'one', 'no', '||dash||', 'tuck', '||period||', 'got', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', 'um', '||comma||', 'did', 'you', 'see', 'a', 'piece', 'of', 'paper', 'on', 'the', 'nightstand', 'here', 'earlier', 'today', 'crumpled', 'up', 'like', 'a', 'napkin', '||questionmark||', '||return||', '||return||', 'lupe:', 'oh', '||comma||', 'yes', '||comma||', 'yes', '||period||', 'i', 'throw', 'away', 'when', 'we', 'clean', 'the', 'room', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'okay', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'lupe:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', '||period||', '||return||', '||return||', 'lupe:', 'bye', '||dash||', 'bye', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'lupe', '||comma||', 'bye', '||dash||', 'bye', 'now', '||period||', '||return||', '||return||', 'lupe:', 'bye', '||period||', '||return||', '||return||', 'george:', 'bye', '||dash||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'she', 'threw', 'that', 'out', '||period||', 'i', 'had', 'like', 'the', 'perfect', 'wording', 'of', 'a', 'whole', 'joke', 'i', 'was', 'gonna', 'do', 'about', 'the', 'x', '||dash||', 'ray', 'counter', 'at', 'the', 'airport', '||comma||', 'i', 'was', 'gonna', 'do', 'it', 'on', 'the', 'tonight', 'show', '||comma||', 'now', 'i', "can't", 'remember', 'it', '||period||', '||return||', '||return||', 'george:', 'well', 'what', 'did', 'you', 'want', 'her', 'to', 'do', '||comma||', 'you', 'left', 'it', 'on', 'the', 'night', 'table', '||period||', '||return||', '||return||', 'jerry:', "they're", 'not', 'supposed', 'to', 'just', 'take', 'everything', 'and', 'throw', 'it', 'out', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', "it's", 'not', "lupe's", 'fault', '||comma||', 'you', "shouldn't", 'have', 'left', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'just', 'get', 'your', 'thing', 'together', 'and', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'now', '||period||', 'what', 'mood', 'am', 'i', 'in', '||comma||', 'what', 'mood', 'am', 'i', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'you', "shouldn't", 'have', 'tucked', '||period||', '||return||', '||return||', 'jerry:', 'i', 'like', 'it', 'tucked', '||period||', '||return||', '||return||', 'george:', 'nobody', 'tucks', 'anymore', '||period||', '||return||', '||return||', 'officer:', 'hey', '||comma||', 'lieutenant', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'yeah', '||period||', '||return||', '||return||', 'officer:', 'this', 'was', 'found', 'on', 'her', 'person', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'on', 'her', 'person', '||questionmark||', 'what', 'kind', 'of', 'expression', 'is', 'that', '||questionmark||', '||return||', '||return||', 'officer:', 'i', "don't", 'know', '||comma||', 'sir', '||period||', 'police', 'lingo', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'oh', 'yeah', '||questionmark||', "what's", 'your', 'name', '||comma||', 'son', '||period||', '||return||', '||return||', 'officer:', 'ross', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'ross', '||period||', 'do', 'you', 'see', 'that', 'person', 'there', '||comma||', 'ross', '||questionmark||', '||return||', '||return||', 'officer:', 'yes', 'sir', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', "she's", 'dead', '||period||', 'have', 'you', 'got', 'that', '||questionmark||', '||return||', '||return||', 'officer:', 'yes', 'sir', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'good', '||period||', 'now', 'get', 'out', 'of', 'here', 'before', 'you', 'find', 'yourself', 'on', 'transit', 'patrol', 'writing', 'tickets', 'to', 'senior', 'citizens', 'with', 'fake', 'bus', 'passes', '||period||', '||return||', '||return||', 'officer:', 'yes', 'sir', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'i', 'think', 'we', 'just', 'caught', 'a', 'break', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'very', 'exciting', '||exclammark||', "you're", 'on', 'the', 'tonight', 'show', '||comma||', 'nbc', '||comma||', 'who', 'else', 'is', 'on', 'the', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'might', 'meet', 'a', 'celebrity', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'she', 'threw', 'out', 'my', 'napkin', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'worried', 'about', '||comma||', 'you', 'know', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'gonna', 'be', 'alright', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', 'yeah', 'yeah', 'yeah', '||comma||', 'go', '||period||', 'go', 'about', 'your', 'business', '||comma||', "i'll", 'just', 'wander', 'around', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "don't", 'wander', 'too', 'far', '||comma||', "i'll", 'meet', 'you', 'back', 'here', 'in', 'fifteen', 'minutes', '||period||', '||return||', '||return||', 'george:', 'go', '||comma||', 'go', '||comma||', 'go', '||comma||', "don't", 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||leftparen||', 'pointing', 'at', 'him', '||rightparen||', 'corbin', 'bernsen', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'big', 'fan', '||exclammark||', 'big', 'fan', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'grew', 'a', 'beard', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'corbin', 'bernsen:', 'yeah', '||comma||', 'yeah', '||period||', "i'm", 'doing', 'a', 'movie', 'during', 'my', 'hiatus', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', 'you', 'know', '||comma||', 'do', 'i', 'have', 'a', 'case', 'for', 'you', 'guys', 'to', 'do', 'on', 'l', '||period||', 'a', '||period||', 'law', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'really', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'so', 'mind', 'you', '||comma||', 'at', 'this', 'point', "i'm", 'only', 'going', 'out', 'with', 'her', 'two', 'or', 'three', 'weeks', '||period||', 'so', 'she', 'goes', 'out', 'of', 'town', 'and', 'she', 'asks', 'me', 'to', 'feed', 'her', 'cat', '||period||', 'so', 'at', 'this', 'time', '||comma||', "there's", 'a', 'lot', 'of', 'stuff', 'going', 'on', 'in', 'my', 'life', 'and', '||comma||', 'uh', '||comma||', 'it', 'slips', 'my', 'mind', 'for', 'a', 'few', 'days', '||period||', 'maybe', 'a', 'week', '||period||', 'not', 'a', 'week', '||comma||', 'five', '||comma||', 'six', 'days', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'yeah', 'yeah', 'yeah', '||period||', 'so', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'the', 'damnedest', 'thing', '||period||', 'the', 'cat', 'dies', '||period||', 'so', 'she', 'comes', 'back', 'into', 'town', '||comma||', 'she', 'finds', 'the', 'cat', 'lying', 'on', 'the', 'carpet', 'stiff', 'as', 'a', 'board', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'so', 'you', 'killed', 'the', 'cat', '||period||', '||return||', '||return||', 'george:', "that's", 'what', 'she', 'says', '||period||', 'i', 'say', '||comma||', 'listen', '||period||', 'it', 'was', 'an', 'old', 'cat', '||period||', 'it', 'died', 'of', 'natural', 'causes', '||period||', 'so', 'get', 'this', '||comma||', 'now', 'she', 'tells', 'me', 'that', 'i', 'gotta', 'buy', 'her', 'a', 'brand', 'new', 'cat', '||period||', 'i', 'say', 'listen', '||comma||', 'honey', '||period||', 'first', 'of', 'all', '||comma||', 'it', 'was', 'a', 'pretty', 'old', 'cat', '||period||', "i'm", 'not', 'gonna', 'buy', 'you', 'a', 'brand', 'new', 'cat', 'to', 'replace', 'an', 'old', 'dying', 'cat', '||period||', 'and', 'second', 'of', 'all', '||comma||', 'i', 'go', 'out', 'to', 'the', 'garbage', '||comma||', 'i', 'find', 'you', 'a', 'new', 'cat', 'in', 'fifteen', 'seconds', '||period||', 'i', 'say', '||comma||', 'you', 'show', 'me', 'an', 'autopsy', 'report', 'that', 'says', 'this', 'cat', 'died', 'of', 'starvation', '||comma||', 'i', 'spring', 'for', 'a', 'new', 'cat', '||period||', 'so', 'she', 'says', 'something', 'to', 'me', '||comma||', 'like', '||comma||', 'uh', '||comma||', 'i', 'dunno', '||comma||', 'get', 'the', 'hell', 'out', 'of', 'here', '||comma||', 'and', 'she', 'breaks', 'up', 'with', 'me', '||period||', 'now', "don't", 'you', 'think', 'that', 'would', 'be', 'a', 'great', 'case', 'on', 'l', '||period||', 'a', '||period||', 'law', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'wanna', 'tell', 'you', 'how', 'to', 'run', 'your', 'show', '||period||', '||return||', '||return||', 'george', 'wendt:', 'oh', '||comma||', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'george:', 'but', 'really', '||comma||', "it's", 'enough', 'with', 'the', 'bar', 'already', '||period||', '||return||', '||return||', 'george', 'wendt:', 'yeah', '||comma||', 'well', '||period||', '||return||', '||return||', 'george:', 'seriously', '||comma||', 'have', 'they', 'though', 'about', 'changing', 'the', 'setting', '||questionmark||', '||return||', '||return||', 'george', 'wendt:', 'doubt', 'it', '||comma||', 'i', 'doubt', 'it', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'because', 'people', 'do', 'meet', 'in', 'places', 'besides', 'a', 'bar', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george', 'wendt:', 'well', 'yeah', '||comma||', 'they', 'do', '||comma||', 'heh', 'heh', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'a', 'rec', 'room', '||questionmark||', 'huh', '||questionmark||', 'or', 'a', 'community', 'center', '||period||', '||return||', '||return||', 'george', 'wendt', '||leftparen||', 'checking', 'his', 'watch', '||comma||', 'obviously', 'uncomfortable', '||rightparen||', ':', 'yeah', '||comma||', 'you', 'oughta', 'write', 'one', 'of', 'those', '||period||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'george', 'wendt:', 'yeah', '||comma||', "i'll", 'bring', 'it', 'up', 'with', 'the', 'producers', '||comma||', 'i', 'gotta', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'fabulous', '||comma||', "i'll", 'think', 'about', 'that', 'george', '||comma||', 'thank', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'great', '||exclammark||', 'great', '||exclammark||', 'i', 'actually', 'just', 'had', 'two', 'meaningful', 'intelligent', 'conversations', 'with', 'corbin', 'bernsen', 'and', 'george', 'wendt', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'not', 'fan', 'talk', '||comma||', 'not', 'gushing', '||comma||', 'you', 'know', '||questionmark||', 'actual', 'conversation', '||comma||', 'i', 'was', 'incredibly', 'articulate', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'got', 'toilet', 'paper', 'on', 'your', 'heel', 'there', '||period||', '||return||', '||return||', 'announcer:', "it's", 'the', 'tonight', 'show', 'with', 'jay', 'leno', '||period||', 'tonight', 'jay', 'welcomes', 'corbin', 'bernsen', '||comma||', 'george', 'wendt', 'and', 'comedian', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', 'people', 'are', 'always', 'coming', 'up', 'to', 'me', 'trying', 'to', 'give', 'me', 'a', 'great', 'case', 'for', 'l', '||period||', 'a', '||period||', 'law', '||comma||', 'just', 'a', 'few', 'seconds', 'ago', '||comma||', 'right', 'here', '||comma||', 'right', 'outside', 'in', 'the', 'hallway', 'this', 'nut', '||comma||', 'some', 'sick', 'nut', 'comes', 'up', 'to', 'me', 'and', 'says', "he's", 'supposed', 'to', 'watch', 'this', "girl's", 'cat', 'while', "she's", 'away', 'out', 'of', 'town', '||period||', 'anyway', 'he', 'forgets', 'to', 'feed', 'the', 'cat', '||comma||', 'the', 'cat', 'dies', '||comma||', 'starves', 'to', 'death', '||comma||', 'he', 'kills', 'the', 'cat', '||comma||', 'refuses', 'to', 'get', 'her', 'a', 'new', 'one', '||comma||', "won't", 'give', 'her', 'any', 'money', '||comma||', "won't", 'pay', 'her', '||comma||', 'and', 'he', 'wants', 'arnie', 'becker', 'to', 'represent', 'him', '||period||', 'nice', 'guy', '||period||', 'yeah', '||comma||', "that'd", 'make', 'a', '*great*', 'case', 'for', 'l', '||period||', 'a', '||period||', 'law', '||period||', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'helena:', "he's", 'a', 'very', 'handsome', 'man', '||period||', 'passionate', '||comma||', 'intense', '||comma||', 'but', 'troubled', '||comma||', 'strange', '||period||', 'i', 'think', 'he', 'may', 'be', 'in', 'love', 'with', 'me', '||period||', 'of', 'course', "there's", 'nothing', 'abnormal', 'about', 'that', '||comma||', 'i', 'have', 'many', 'suitors', '||period||', '||return||', '||return||', 'george', 'wendt:', "it's", 'funny', '||comma||', "'cause", 'even', 'after', 'all', 'these', 'years', '||comma||', 'we', 'still', 'get', 'people', 'giving', 'us', 'advice', '||comma||', 'how', 'to', 'improve', 'the', 'show', '||period||', 'actually', '||comma||', 'a', 'few', 'moments', 'ago', 'i', 'ran', 'into', 'a', 'nut', 'back', 'there', '||comma||', 'he', 'said', '||comma||', 'you', 'know', '||comma||', 'that', 'maybe', 'we', 'should', 'think', 'about', '||comma||', 'you', 'know', '||comma||', 'not', 'doing', 'the', 'show', 'in', 'a', 'bar', '||period||', '||return||', '||return||', 'the', 'freak:', 'so', "that's", 'when', 'i', 'said', '||comma||', '||quotemark||', 'hey', '||comma||', 'kramer', '||comma||', 'dude', '||period||', 'you', 'ever', 'killed', 'a', 'man', 'before', '||questionmark||', '||quotemark||', 'and', 'he', 'said', '||comma||', '||quotemark||', 'what', 'do', 'you', 'think', '||comma||', 'junior', '||questionmark||', 'these', 'hands', 'have', 'been', 'soaking', 'in', 'ivory', 'liquid', '||questionmark||', '||return||', '||return||', 'george', 'wendt:', 'the', 'guy', 'you', 'talked', 'to', '||comma||', 'what', 'did', 'he', 'look', 'like', '||questionmark||', '||return||', '||return||', 'corbin', 'bernsen:', 'short', 'little', 'bald', 'guy', 'with', 'glasses', '||period||', '||return||', '||return||', 'george', 'wendt:', 'yeah', '||comma||', 'yeah', '||comma||', "that's", 'the', 'same', 'guy', 'i', 'talked', 'to', '||period||', '||return||', '||return||', 'corbin', 'bernsen:', 'it', 'never', 'ends', '||comma||', 'does', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', "i'm", 'going', 'through', 'the', 'airport', 'and', 'i', 'have', 'to', 'put', 'my', 'bag', 'on', 'that', 'little', 'uh', '||comma||', 'uh', '||comma||', 'the', 'uh', '||comma||', 'that', 'uh', '||comma||', 'the', 'conveyor', 'belt', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'issue', 'an', 'arrest', 'warrant', '||comma||', 'put', 'out', 'an', 'apb', '||period||', "let's", 'pick', 'up', 'this', '||comma||', 'uh', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'terrible', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', '||comma||', 'crazy', '||questionmark||', 'you', 'were', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'did', 'you', 'hear', 'the', 'end', '||questionmark||', 'i', "couldn't", 'remember', 'what', 'i', 'was', 'trying', 'to', 'say', '||comma||', 'that', 'whole', 'thing', 'about', 'the', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'conveyor', 'belt', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'because', 'she', 'threw', 'out', 'my', 'napkin', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', '||comma||', "you're", 'blaming', 'lupe', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'lupe', '||period||', "i'm", 'blaming', 'lupe', '||period||', '||return||', '||return||', 'tv', 'newscaster:', 'our', 'top', 'story', 'tonight', '||comma||', 'there', 'has', 'been', 'a', 'break', 'in', 'the', 'so', 'called', "'smog", "stranglings'", '||period||', 'police', 'have', 'just', 'released', 'a', 'photo', 'of', 'the', 'suspect', 'being', 'sought', 'in', 'connection', 'with', 'the', 'slayings', '||period||', 'he', 'is', 'known', 'only', 'as', '||quotemark||', 'kramer', '||quotemark||', '||period||', '||return||', '||return||', 'george:', "he's", 'on', 'the', 'lamb', '||leftparen||', '||questionmark||', '||rightparen||', '||comma||', "he's", 'on', 'the', 'loose', '||exclammark||', '||return||', '||return||', 'jerry:', 'would', 'you', 'let', 'go', 'of', 'my', 'arm', '||questionmark||', '||exclammark||', "i'm", 'trying', 'to', 'drive', '||comma||', "you're", 'getting', 'us', 'both', 'killed', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'are', 'we', 'supposed', 'to', 'do', '||questionmark||', 'what', 'do', 'you', 'do', 'on', 'a', 'situation', 'like', 'this', '||questionmark||', 'should', 'we', 'call', 'a', 'lawyer', '||comma||', 'should', 'we', 'call', 'the', 'police', '||questionmark||', '||return||', '||return||', 'jerry:', 'obviously', "we're", 'gonna', 'call', 'the', 'police', 'and', 'tell', 'that', "he's", 'not', 'the', 'guy', '||period||', '||return||', '||return||', 'george:', 'hope', "he's", 'not', 'the', 'guy', '||period||', '||return||', '||return||', 'jerry:', "couldn't", 'be', 'the', 'guy', '||period||', '||period||', '||period||', 'nah', '||period||', '||return||', '||return||', 'george:', 'god', '||comma||', "i'm", 'starved', '||comma||', "i'm", 'weak', 'from', 'hunger', '||period||', '||return||', '||return||', 'jerry:', 'how', 'can', 'you', 'think', 'of', 'food', 'at', 'the', 'time', 'like', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'time', 'like', 'what', '||questionmark||', "i'm", 'hungry', '||period||', 'my', 'stomach', "doesn't", 'know', 'that', "kramer's", 'wanted', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'to', 'have', 'breakfast', '||comma||', 'you', "should've", 'had', 'breakfast', '||exclammark||', '||return||', '||return||', 'george:', 'i', "couldn't", 'have', 'breakfast', '||comma||', 'it', 'was', 'lunchtime', '||exclammark||', 'the', 'three', 'hour', 'time', 'difference', 'threw', 'me', '||period||', 'i', 'wanted', 'a', 'tuna', 'fish', 'sandwich', '||comma||', 'they', "wouldn't", 'serve', 'me', 'tuna', 'fish', 'sandwich', '||comma||', 'because', 'they', 'were', 'only', 'serving', 'breakfast', '||period||', '||return||', '||return||', 'jerry:', 'you', "should've", 'had', 'some', 'eggs', '||period||', '||return||', '||return||', 'george:', 'for', 'lunch', '||questionmark||', 'who', 'eats', 'eggs', 'for', 'lunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'you', 'ever', 'heard', 'of', 'egg', 'salad', '||questionmark||', '||return||', '||return||', 'george:', 'why', "didn't", 'you', 'say', 'something', 'then', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'gotta', 'to', 'tell', 'you', 'about', 'existence', 'of', 'egg', 'salad', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'need', 'food', '||comma||', 'jerry', '||period||', 'i', 'feel', 'faint', '||comma||', "i'm", 'getting', 'light', 'headed', '||period||', '||return||', '||return||', 'jerry:', "i've", 'gotta', 'call', 'the', 'police', '||comma||', "there's", 'a', 'pay', 'phone', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'pay', 'phone', 'in', 'l', '||period||', 'a', '||period||', '||comma||', 'look', "it's", 'a', 'miracle', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'any', 'change', '||period||', "you've", 'got', 'any', 'change', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "don't", 'have', 'any', 'change', '||period||', 'i', 'never', 'carry', 'change', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'need', 'change', 'and', 'all', 'i', 'have', 'is', 'twenties', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'a', 'ten', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'break', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'hate', 'asking', 'for', 'change', '||period||', 'they', 'always', 'make', 'a', 'face', '||period||', 'like', "i'm", 'asking', 'them', 'to', 'donate', 'a', 'kidney', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'buy', 'something', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'some', 'mints', 'or', 'tictacs', '||period||', '||return||', '||return||', 'george:', 'breath', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'just', 'want', 'some', 'change', '||period||', '||return||', '||return||', 'george:', 'tell', 'me', '||period||', '||return||', '||return||', 'jerry:', 'your', 'breath', 'is', 'fine', '||period||', "it's", 'delightful', '||comma||', "it's", 'delicious', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', "haven't", 'eaten', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'wanna', 'call', 'the', 'police', '||exclammark||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'just', 'call', '911', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', 'is', 'this', 'an', 'emergency', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', 'how', 'is', 'this', 'an', 'emergency', '||questionmark||', '||return||', '||return||', 'george:', 'your', 'friend', 'is', 'been', 'accused', 'of', 'being', 'a', 'serial', 'killer', '||period||', 'i', 'think', 'that', 'qualifies', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'll", 'call', '911', '||period||', 'think', 'he', 'did', 'it', '||questionmark||', "could've", 'he', 'done', 'it', '||questionmark||', "couldn't", 'done', 'it', '||questionmark||', 'how', "could've", 'he', 'done', 'it', '||questionmark||', "couldn't", 'be', '||questionmark||', 'could', 'it', '||questionmark||', 'hello', '911', '||questionmark||', 'how', 'are', 'you', '||questionmark||', "i'm", 'sorry', 'it', 'was', 'just', 'a', 'reflex', '||period||', '||period||', '||period||', 'i', 'know', "it's", 'an', 'emergency', 'number', '||period||', '||period||', '||period||', 'it', 'is', 'an', 'emergency', '||period||', '||period||', '||period||', 'my', 'friend', 'is', 'being', 'accused', 'of', 'being', 'a', 'smog', 'strangler', 'and', 'i', 'know', 'he', "didn't", 'do', 'it', '||period||', '||period||', '||period||', "they're", 'putting', 'me', 'trough', 'to', 'the', 'detective', 'in', 'charge', 'of', 'the', 'investigation', '||period||', '||period||', '||period||', 'what', 'is', 'my', 'name', '||questionmark||', 'who', 'am', 'i', '||questionmark||', "i'm", 'eh', '||period||', '||period||', '||period||', 'george', 'costanza', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'are', 'you', 'crazy', '||questionmark||', 'why', 'are', 'you', 'using', 'my', 'name', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "don't", 'be', 'a', 'baby', '||exclammark||', 'what', 'are', 'you', 'scared', 'of', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'am', 'i', 'scared', 'of', '||questionmark||', "i'm", 'scared', 'of', 'the', 'same', 'thing', 'that', 'you', 'are', '||comma||', 'everything', '||exclammark||', 'why', "don't", 'you', 'just', 'use', 'your', 'own', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'name', 'is', 'a', 'good', 'name', '||comma||', 'costanza', '||period||', 'sounds', 'like', "it's", 'stands', 'for', 'something', '||comma||', "they'll", 'believe', 'us', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', 'yes', 'i', 'have', 'some', 'very', 'important', 'information', 'regarding', 'the', 'smog', 'strangler', '||period||', '||leftparen||', 'george', 'leans', 'close', '||rightparen||', 'would', 'you', 'suck', 'a', 'mint', 'or', 'something', '||period||', 'can', 'i', 'come', 'right', 'now', '||questionmark||', 'i', 'suppose', '||comma||', 'where', 'are', 'you', 'located', '||questionmark||', 'where', 'is', 'that', '||questionmark||', 'i', "don't", 'know', 'where', 'we', 'are', '||period||', 'where', 'are', 'we', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'we', "don't", 'know', '||period||', 'he', 'says', 'ask', 'somebody', '||comma||', 'ask', 'that', 'guy', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'where', 'are', 'we', '||questionmark||', '||return||', '||return||', 'man:', 'earth', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'know', "i'm", 'on', 'the', 'phone', 'with', 'the', 'police', '||exclammark||', 'some', 'guy', 'just', 'gave', 'me', 'a', 'wise', 'answer', '||period||', 'ask', 'that', 'woman', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', 'ms', '||period||', 'which', 'street', 'are', 'we', 'on', '||questionmark||', '||return||', '||return||', 'woman:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'woman:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'how', 'come', 'you', "don't", 'know', 'what', 'street', 'are', 'you', 'on', '||questionmark||', '||return||', '||return||', 'woman:', 'you', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'it', 'says', 'it', 'here', 'on', 'the', 'phone', '||period||', "it's", '12145', 'ventura', 'boulevard', '||period||', 'aha', '||comma||', 'ok', '||period||', '||period||', '||period||', 'do', 'we', 'know', 'where', 'the', '101', 'is', '||questionmark||', '||leftparen||', 'george', 'shakes', 'his', 'head', '||rightparen||', 'no', '||period||', '||period||', '||period||', 'do', 'we', 'know', 'where', '170', 'is', '||questionmark||', '||leftparen||', 'george', 'shakes', 'his', 'head', '||rightparen||', 'no', '||period||', '||period||', '||period||', 'do', 'we', 'know', 'where', '134', 'is', '||questionmark||', '||leftparen||', 'george', 'just', 'looks', 'at', 'jerry', '||rightparen||', 'no', '||period||', 'aha', '||comma||', 'ok', '||period||', '||leftparen||', 'jerry', 'hangs', 'up', '||rightparen||', "he's", 'gonna', 'send', 'a', 'black', 'and', 'white', 'to', 'pick', 'us', 'up', '||period||', '||return||', '||return||', 'george:', 'black', 'and', 'white', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'cop', 'car', '||period||', '||return||', '||return||', 'george:', 'why', "didn't", 'you', 'just', 'say', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'it', 'sounded', 'kind', 'of', 'cool', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'real', 'cool', '||period||', "you're", 'a', 'cool', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'are', '||questionmark||', 'i', 'guaranty', 'you', '||comma||', 'lupe', 'is', 'going', 'to', 'tuck', 'your', 'covers', 'in', '||period||', '||return||', '||return||', 'george:', "i'll", 'bet', 'you', '||comma||', 'how', 'much', '||questionmark||', '||return||', '||return||', 'jerry:', 'her', 'tip', '||period||', '||return||', '||return||', 'george:', "you've", 'got', 'a', 'bet', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'george:', 'how', 'much', 'do', 'you', 'tip', 'a', 'chamber', 'maid', '||questionmark||', '||return||', '||return||', 'police:', 'which', 'one', 'of', 'you', 'is', 'costanza', '||questionmark||', '||return||', '||return||', 'police:', 'get', 'in', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'how', 'are', 'you', 'guys', '||questionmark||', 'listen', '||comma||', 'does', 'either', 'one', 'of', 'you', 'have', 'like', 'a', 'mint', 'or', 'piece', 'of', 'gum', 'or', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'would', 'you', 'do', 'me', 'a', 'favor', '||comma||', 'close', 'the', 'window', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'get', 'out', 'of', 'here', '||period||', '||period||', '||period||', 'hey', 'officer', '||comma||', "he's", 'fooling', 'around', 'back', 'here', '||period||', '||return||', '||return||', 'cop:', 'cut', 'it', 'up', 'back', 'there', '||period||', '||return||', '||return||', 'george:', 'he', 'started', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'did', 'not', '||period||', 'you', 'guys', 'gonna', 'go', 'through', 'some', 'red', 'lights', '||questionmark||', '||return||', '||return||', 'cop:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'could', '||questionmark||', '||return||', '||return||', 'cop:', 'oh', 'yeah', '||comma||', 'of', 'course', 'we', 'could', '||period||', 'we', 'can', 'do', 'anything', 'we', 'want', '||period||', '||return||', '||return||', 'cop', '2:', 'we', 'could', 'drive', 'on', 'the', 'wrong', 'side', 'of', 'the', 'road', '||period||', '||return||', '||return||', 'cop:', 'yeah', '||comma||', 'we', 'do', 'that', 'all', 'the', 'time', '||period||', 'you', 'should', 'see', 'the', 'looks', 'on', "people's", 'faces', '||period||', '||return||', '||return||', 'cop', '2:', 'shoot', 'people', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'guys', 'ever', 'shot', 'anybody', '||questionmark||', '||return||', '||return||', 'cops:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'can', 'i', 'flip', 'on', 'the', 'siren', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'bothering', 'them', 'for', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'just', 'asking', '||comma||', 'all', 'they', 'have', 'to', 'do', 'is', 'say', 'no', '||period||', '||return||', '||return||', 'cop:', 'yeah', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'wohoo', '||comma||', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'try', 'it', '||questionmark||', '||return||', '||return||', 'cop:', 'yeah', '||comma||', 'go', 'ahead', '||comma||', 'hurry', 'up', '||period||', '||return||', '||return||', 'jerry:', 'scared', 'the', 'hell', 'out', 'of', 'that', 'guy', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'i', 'never', 'understood', '||questionmark||', 'why', 'did', 'they', 'change', 'the', 'siren', 'noise', '||questionmark||', 'when', 'i', 'was', 'a', 'kid', 'it', 'was', 'always', '||quotemark||', 'waaaa', '||comma||', 'waaaa', '||quotemark||', '||comma||', 'you', 'know', 'now', 'it', '||quotemark||', 'woo', '||dash||', 'woo', '||dash||', 'woo', '||dash||', 'woo', '||dash||', 'woo', '||quotemark||', '||period||', 'why', 'did', 'they', 'do', 'that', '||comma||', 'did', 'they', 'do', 'some', 'research', '||questionmark||', 'did', 'they', 'find', 'that', 'woo', '||dash||', 'woo', 'was', 'more', 'effective', 'than', 'waa', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'what', 'about', 'those', 'english', 'sirens', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'eee', '||dash||', 'aaa', '||dash||', 'eee', '||dash||', 'aaa', '||dash||', 'eee', '||dash||', 'aaa', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', 'and', 'george:', 'eee', '||dash||', 'aaa', '||dash||', 'eee', '||dash||', 'aaa', '||dash||', 'eee', '||dash||', 'aaa', '||period||', '||period||', '||period||', '||return||', '||return||', 'cop:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'dizzy', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'shotgun', '||period||', '||return||', '||return||', 'cop:', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'clean', 'as', 'a', 'whistle', '||period||', '||return||', '||return||', 'george:', 'you', 'could', 'eat', 'of', 'that', 'shotgun', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||comma||', 'a', '12', 'gauge', '||questionmark||', '||return||', '||return||', 'cop:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '12', 'gauge', '||period||', 'seems', 'to', 'be', 'the', 'most', 'popular', 'gauge', '||period||', '||return||', '||return||', 'george:', 'my', 'favorite', '||period||', '||return||', '||return||', 'jerry:', 'mine', 'too', '||comma||', 'love', 'the', '12', 'gauge', '||period||', '||return||', '||return||', 'george:', 'makes', 'the', '11', 'gauge', 'look', 'like', 'a', 'cap', 'pistol', '||period||', '||return||', '||return||', 'cop:', 'what', 'do', 'got', 'over', 'there', '||questionmark||', '||return||', '||return||', 'cop', '2:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'cop:', 'looks', 'like', 'a', 'possible', '5', '||dash||', '19', '||period||', '||return||', '||return||', 'jerry:', '5', '||dash||', '19', '||questionmark||', "what's", 'a', '5', '||dash||', '19', '||questionmark||', '||return||', '||return||', 'george:', 'where', '||questionmark||', '||return||', '||return||', 'cop', '2:', 'think', 'so', '||questionmark||', '||return||', '||return||', 'cop:', 'looks', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'this', '||period||', 'a', '5', '||dash||', '19', '||questionmark||', '||return||', '||return||', 'george:', 'where', '||comma||', 'where', '||questionmark||', 'i', "can't", 'see', '||period||', '||return||', '||return||', 'cop:', 'this', 'is', 'car', '23', '||comma||', 'we', 'have', 'a', 'possible', '5', '||dash||', '19', 'in', 'progress', '||comma||', 'over', '||period||', '||return||', '||return||', 'cop', '2:', 'all', 'right', '||comma||', "let's", 'pull', 'over', 'and', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'pull', 'over', '||questionmark||', 'you', "can't", 'pull', 'over', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', 'where', 'do', 'you', 'think', "you're", 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'pull', 'over', '||questionmark||', 'the', 'lieutenant', 'is', 'waiting', 'to', 'see', 'us', '||period||', '||return||', '||return||', 'george:', 'hey', 'hey', 'hey', '||comma||', "we're", 'in', 'a', 'rush', 'here', '||period||', '||return||', '||return||', 'jerry:', 'we', 'have', 'an', 'appointment', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'great', '||period||', '||return||', '||return||', 'george:', "there's", 'a', 'bag', 'of', 'pepperidge', 'farm', 'cookies', 'up', 'there', '||period||', '||return||', '||return||', 'jerry:', 'which', 'flavor', '||questionmark||', '||return||', '||return||', 'george:', 'milano', '||period||', '||return||', '||return||', 'jerry:', 'cops', 'eating', 'milanos', '||period||', 'what', 'crazy', 'town', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'should', 'i', 'take', 'some', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "that's", 'a', '5', '||dash||', '19', '||period||', '||return||', '||return||', 'george:', "i'm", 'starving', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "they're", 'busting', 'this', 'guy', '||period||', '||return||', '||return||', 'george:', "they're", 'cuffing', 'him', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'this', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', "i'm", 'jerry', '||period||', '||return||', '||return||', 'george:', 'george', '||comma||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'guy:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'guy:', 'oh', 'yeah', 'right', '||comma||', 'me', 'neither', '||period||', 'hey', 'i', "didn't", 'do', 'nothing', '||exclammark||', '||return||', '||return||', 'cop:', 'shut', 'up', '||period||', '||return||', '||return||', 'jerry:', 'hot', 'out', '||period||', '||return||', '||return||', 'guy:', 'brutal', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'tip', 'a', 'chamber', 'maid', '||period||', '||return||', '||return||', 'guy:', 'i', "don't", 'know', '||comma||', 'five', 'bucks', 'a', 'night', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'a', 'dollar', '||comma||', 'two', 'tops', '||period||', '||return||', '||return||', 'guy:', 'hey', '||comma||', 'you', 'guys', "aren't", 'cuffed', '||period||', 'what', 'are', 'you', '||comma||', 'narks', '||questionmark||', '||return||', '||return||', 'george:', 'narks', '||questionmark||', '||return||', '||return||', 'jerry:', 'imagine', '||comma||', 'us', 'narks', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'no', 'no', '||comma||', 'you', 'know', 'actually', 'we', 'are', 'friends', 'of', 'a', 'serial', 'killer', '||period||', '||return||', '||return||', 'guy:', 'really', '||questionmark||', 'well', '||comma||', "that's", 'very', 'nice', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'suspected', 'serial', 'killer', '||comma||', 'he', "didn't", 'actually', 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', 'well', '||comma||', 'we', "don't", 'think', '||period||', '||return||', '||return||', 'jerry:', "we're", 'pretty', 'sure', '||period||', '||return||', '||return||', 'guy:', 'a', 'dollar', 'a', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'a', 'good', 'tip', '||exclammark||', '||return||', '||return||', 'guy:', 'that', 'stinks', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'read', 'it', 'in', 'ann', 'landers', '||period||', '||return||', '||return||', 'guy:', 'oh', '||comma||', 'ann', 'landers', 'sucks', '||exclammark||', '||return||', '||return||', 'cop', '2:', 'hey', '||comma||', 'shut', 'it', 'up', 'back', 'there', '||period||', '||return||', '||return||', 'police', 'radio:', 'attention', 'all', 'units', '||comma||', 'attention', 'all', 'units', '||comma||', 'all', 'units', 'code', '3', '||period||', 'all', 'units', 'in', 'the', 'area', '||comma||', 'code', '3', 'in', 'progress', '||comma||', '1648', 'north', 'bartholis', '||comma||', 'units', 'required', 'for', 'assistance', 'in', 'apprehension', 'of', '702', '||period||', '||return||', '||return||', 'cop:', "that's", 'smog', 'strangler', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||return||', '||return||', 'cop', '2:', 'got', 'him', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wanna', 'see', "what's", 'happening', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'why', "i'm", 'doing', 'this', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'you', 'are', 'under', 'arrest', 'in', 'first', 'degree', 'murder', 'and', 'death', 'of', 'ms', 'chelsea', 'lang', '||period||', '||return||', '||return||', 'reporters:', 'why', 'did', 'you', 'do', 'it', '||questionmark||', 'what', 'possessed', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', 'are', 'you', 'doing', '||questionmark||', 'jerry', '||exclammark||', 'george', '||exclammark||', '||return||', '||return||', 'jerry:', "we're", 'doing', 'fine', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'me', '||questionmark||', 'fabulous', '||comma||', 'just', 'fabulous', '||period||', "i've", 'got', 'a', 'lot', 'of', 'auditions', '||comma||', 'a', 'lot', 'of', 'call', 'backs', 'and', "i've", 'got', 'a', 'lot', 'of', 'interest', 'for', 'my', 'movie', 'treatment', '||period||', "i'm", 'in', 'development', '||comma||', "i'm", 'in', 'developed', 'vehicles', '||period||', 'and', "there's", 'a', 'lot', 'of', 'energy', 'here', '||comma||', 'man', '||period||', 'you', 'know', '||comma||', 'the', 'vibe', '||comma||', "it's", 'powerful', '||period||', "i'm", 'just', 'swept', 'up', 'at', 'it', '||period||', 'yeah', '||comma||', "i'm", 'a', 'player', '||period||', '||return||', '||return||', 'george:', 'a', 'player', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'a', 'player', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'do', 'you', 'realize', "what's", 'going', 'on', 'here', '||questionmark||', 'do', 'you', 'know', 'why', "you're", 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'what', 'this', '||questionmark||', "i'll", 'be', 'out', 'of', 'here', 'in', 'couple', 'of', 'hours', '||period||', 'hey', '||comma||', 'guess', 'who', 'i', 'met', 'today', '||questionmark||', 'rick', 'savage', '||comma||', 'oh', 'nice', 'kid', '||comma||', 'really', 'good', 'kid', '||period||', 'you', 'know', '||comma||', "we're", 'talking', 'about', 'doing', 'a', 'project', 'together', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "you've", 'been', 'arrested', 'as', 'a', 'serial', 'killer', '||exclammark||', '||return||', '||return||', 'kramer:', 'so', '||questionmark||', "i'm", 'innocent', '||exclammark||', 'i', 'mean', 'you', 'guys', 'believe', 'that', "i'm", 'innocent', '||comma||', "don't", 'you', '||questionmark||', 'jerry', '||questionmark||', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'sure', '||period||', '||return||', '||return||', 'police:', 'kramer', '||comma||', "let's", 'go', '||period||', 'the', 'lieutenant', 'wants', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'yeah', '||period||', 'all', 'right', 'look', '||comma||', "i'll", 'be', 'out', 'of', 'here', 'by', 'noon', '||period||', 'maybe', "we'll", 'have', 'lunch', 'together', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'help', 'me', '||exclammark||', '||exclammark||', 'help', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'kill', 'anyone', '||comma||', 'i', 'swear', '||exclammark||', 'i', 'swear', 'to', 'god', '||exclammark||', '||return||', '||return||', 'lt', '||period||', 'martel:', "don't", 'you', 'ever', 'swear', 'to', 'my', 'god', '||comma||', 'kramer', '||period||', 'my', 'god', 'is', 'the', 'god', 'who', 'protects', 'the', 'innocent', 'and', 'punishes', 'the', 'evil', 'scum', 'like', 'you', '||comma||', 'have', 'you', 'got', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'making', 'a', 'big', 'mistake', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'no', '||exclammark||', 'you', 'have', 'made', 'the', 'mistake', '||comma||', 'kramer', '||period||', 'sickies', 'like', 'you', 'always', 'do', '||period||', 'the', 'only', 'difference', 'is', 'that', 'this', 'time', "you're", 'gonna', 'pay', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'now', 'you', 'might', 'beat', 'the', 'gas', 'chamber', 'kramer', '||comma||', 'but', 'as', 'long', 'as', 'i', 'have', 'got', 'a', 'breath', 'in', 'my', 'body', 'you', 'will', 'never', 'ever', 'see', 'the', 'light', 'of', 'day', 'again', '||period||', '||return||', '||return||', 'kramer:', 'wow', 'wow', 'wow', 'wow', '||comma||', "you've", 'got', 'the', 'wrong', 'man', '||exclammark||', '||exclammark||', 'it', "wasn't", 'me', '||exclammark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'oh', 'yeah', '||comma||', 'right', '||period||', 'maybe', 'it', 'was', 'one', 'of', 'your', 'other', 'personalities', 'huh', '||comma||', 'the', 'wise', 'guy', '||comma||', 'the', 'little', 'kid', '||comma||', 'the', 'bellhop', '||comma||', 'the', 'ball', 'player', '||comma||', 'maybe', 'the', 'door', 'to', 'door', 'vacuum', 'cleaner', 'salesman', '||comma||', 'but', 'not', 'you', 'right', '||questionmark||', 'no', '||comma||', 'you', "wouldn't", 'hurt', 'a', 'fly', '||period||', 'you', 'just', "couldn't", 'help', 'yourself', '||comma||', 'could', 'you', 'kramer', '||questionmark||', 'you', 'saw', 'life', 'brimming', 'brightly', 'with', 'optimism', 'and', 'verve', 'and', 'you', 'just', 'had', 'to', 'snuff', 'it', 'out', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'can', 'i', 'just', 'talk', 'to', 'somebody', '||questionmark||', 'can', 'i', 'just', 'explain', '||period||', '||period||', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', "i'm", 'not', 'interested', 'in', 'your', 'explanations', '||comma||', 'kramer', '||exclammark||', 'sure', '||comma||', 'i', 'bet', "you've", 'got', 'a', 'million', 'of', "'em", '||period||', 'maybe', 'your', 'mother', "didn't", 'love', 'you', 'enough', '||comma||', 'maybe', 'the', 'teacher', "didn't", 'call', 'on', 'you', 'in', 'school', 'when', 'you', 'had', 'your', 'little', 'hand', 'raised', '||comma||', 'maybe', 'the', 'pervert', 'in', 'the', 'park', 'had', 'a', 'present', 'in', 'his', 'pants', '||comma||', 'huh', '||questionmark||', 'well', '||comma||', "i've", 'got', 'another', 'theory', "you're", 'a', 'weed', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'society', 'is', 'filled', 'with', 'them', '||period||', "they're", 'choking', 'the', 'life', 'out', 'of', 'the', 'all', 'pretty', 'flowers', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'you', 'see', 'something', 'even', 'remotely', 'pretty', 'and', 'you', 'have', 'to', 'choke', 'the', 'life', 'out', 'if', 'it', '||comma||', "don't", 'you', 'kramer', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'you', 'killed', 'all', 'the', 'pretty', 'flowers', '||comma||', "didn't", 'you', 'kramer', '||questionmark||', 'you', 'killed', 'the', 'pretty', 'little', 'flowers', '||comma||', "didn't", 'you', '||questionmark||', 'you', 'dirty', '||comma||', 'filthy', '||comma||', 'stinky', 'weed', '||exclammark||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'officer:', 'lieutenant', '||comma||', "it's", 'for', 'you', '||period||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'martel', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'officer:', 'what', 'it', 'is', '||comma||', 'lieutenant', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'let', 'him', 'go', '||period||', '||return||', '||return||', 'officer:', 'what', '||comma||', 'but', 'lieutenant', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'you', 'heard', 'me', '||comma||', 'let', 'him', 'go', '||period||', 'they', 'just', 'found', 'another', 'body', 'at', 'the', 'laurel', 'canyon', '||period||', 'go', 'on', 'kramer', '||comma||', 'get', 'out', 'of', 'my', 'sight', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', 'did', 'you', 'know', 'about', 'the', 'guy', 'in', 'the', 'park', '||questionmark||', '||return||', '||return||', 'lt', '||period||', 'martel:', 'i', 'said', 'beat', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'hahaa', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'somebody', 'got', 'killed', 'while', 'they', 'had', 'me', 'in', 'custody', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'did', 'you', 'hear', 'that', '||questionmark||', 'somebody', 'else', 'was', 'killed', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'kidding', '||questionmark||', 'somebody', 'else', 'got', 'killed', '||questionmark||', '||return||', '||return||', 'jerry:', 'while', 'you', 'were', 'in', 'jail', '||period||', 'so', "you're", 'free', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', "i'm", 'free', '||period||', '||leftparen||', 'singing', '||rightparen||', "'cause", 'the', 'murderer', 'struck', 'again', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'kramer', '||comma||', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'do', '||questionmark||', 'do', '||questionmark||', 'hey', '||comma||', "i'm", 'doing', 'what', 'i', 'do', '||period||', 'you', 'know', '||comma||', "i've", 'always', 'done', 'what', 'i', 'do', '||period||', "i'm", 'doing', 'what', 'i', 'do', '||comma||', 'way', "i've", 'always', 'done', 'and', 'the', 'way', "i'll", 'always', 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'what', 'the', 'hell', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'want', 'me', 'to', 'say', '||questionmark||', 'that', 'the', 'things', "haven't", 'worked', 'out', 'the', 'way', 'that', 'i', 'planned', '||questionmark||', 'that', "i'm", 'struggling', '||comma||', 'barely', 'able', 'to', 'keep', 'my', 'head', 'above', 'water', '||questionmark||', 'that', 'l', '||period||', 'a', '||period||', 'is', 'a', 'cold', 'place', 'even', 'in', 'the', 'middle', 'of', 'the', 'summer', '||questionmark||', 'that', "it's", 'a', 'lonely', 'place', 'even', 'when', 'your', 'stuck', 'in', 'traffic', 'at', 'the', 'hollywood', 'freeway', '||questionmark||', 'that', "i'm", 'no', 'better', 'than', 'a', 'screenwriter', 'driving', 'a', 'cab', '||comma||', 'a', 'starlet', 'turning', 'tricks', '||comma||', 'a', 'producer', 'in', 'a', 'house', 'he', "can't", 'afford', '||questionmark||', 'is', 'that', 'what', 'you', 'want', 'me', 'to', 'say', '||questionmark||', '||return||', '||return||', 'george:', "i'd", 'like', 'to', 'hear', 'that', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'not', 'saying', 'that', '||exclammark||', 'you', 'know', '||comma||', 'things', 'are', 'going', 'pretty', 'well', 'for', 'me', 'here', '||period||', 'i', 'met', 'a', 'girl', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'she', 'was', 'murdered', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'i', "wasn't", 'looking', 'for', 'a', 'long', 'term', 'relationship', '||period||', 'i', 'was', 'on', 'tv', '||period||', '||return||', '||return||', 'george:', 'as', 'a', 'suspect', 'in', 'a', 'serial', 'killing', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'yeah', '||comma||', 'you', 'guys', 'got', 'to', 'put', 'a', 'negative', 'spin', 'on', 'everything', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'they', 'put', 'on', 'this', 'tuna', '||questionmark||', 'tastes', 'like', 'a', 'dill', '||comma||', 'i', 'think', "it's", 'a', 'dill', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'not', 'gonna', 'come', 'back', 'to', 'new', 'york', 'with', 'us', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'no', "i'm", 'not', 'ready', '||comma||', 'things', 'are', 'starting', 'to', 'happen', '||period||', '||return||', '||return||', 'george:', 'taste', 'this', '||comma||', 'is', 'this', 'a', 'dill', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'tarragon', '||period||', 'hey', 'kramer', '||comma||', "i'm", 'sorry', 'about', 'that', 'whole', 'fight', 'we', 'had', 'about', 'you', 'having', 'my', 'apartment', 'keys', 'and', 'everything', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', "it's", 'forgotten', '||period||', '||return||', '||return||', 'george:', 'tarragon', '||questionmark||', 'oh', '||comma||', "you're", 'crazy', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'ok', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'take', 'care', '||period||', 'stay', 'in', 'touch', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'hey', '||comma||', 'whoa', 'come', 'on', 'give', 'me', 'a', 'hug', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "you're", 'crushing', 'my', 'sandwich', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'so', 'nice', 'when', 'it', 'happens', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'mint', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'thanks', '||period||', '||return||', '||return||', 'george:', "i've", 'got', 'to', 'tell', 'you', '||comma||', "i'm", 'really', 'disappointed', 'in', 'lupe', '||period||', '||return||', '||return||', 'jerry:', "it's", 'been', 'three', 'days', 'already', '||comma||', 'forget', 'about', 'lupe', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'think', 'she', 'gets', 'to', 'take', 'any', 'of', 'those', 'little', 'bars', 'of', 'soap', 'home', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'george:', 'you', 'would', 'think', 'that', 'at', 'the', 'end', 'of', 'the', 'week', 'when', 'they', 'hand', 'out', 'the', 'checks', '||comma||', 'throw', 'in', 'a', 'few', 'soaps', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'maybe', 'they', 'should', 'throw', 'in', 'a', 'couple', 'of', 'lamps', 'too', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'something', '||comma||', 'if', "i'd", 'own', 'a', 'company', '||comma||', 'my', 'employees', 'would', 'love', 'me', '||period||', "they'd", 'have', 'huge', 'pictures', 'of', 'me', 'up', 'on', 'the', 'walls', 'and', 'in', 'their', 'home', '||comma||', 'like', 'lenin', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'did', 'you', 'wound', 'up', 'tipping', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||comma||', 'i', 'forgot', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'communism', "didn't", 'work', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'any', 'mustard', '||questionmark||', 'this', 'is', 'empty', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "there's", 'a', 'new', 'one', 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', '||comma||', 'i', "don't", 'like', 'this', 'one', '||period||', "it's", 'too', 'yellow', '||period||', 'any', 'pickles', '||questionmark||', '||return||', '||return||', 'jerry:', 'help', 'yourself', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'getting', 'something', 'to', 'eat', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'here', '||exclammark||', '||return||', '||return||', 'newscaster:', 'authorities', 'exposed', 'today', '||comma||', 'that', 'the', 'latest', 'suspect', 'in', 'the', 'smog', 'strangling', 'was', 'apprehended', 'this', 'week', 'on', 'an', 'unrelated', 'charge', '||comma||', 'but', 'somehow', 'managed', 'to', 'escape', 'from', 'the', 'police', 'car', '||comma||', 'in', 'which', 'he', 'was', 'being', 'held', '||period||', 'tobias', 'lehigh', 'nagy', '||comma||', 'who', 'is', 'also', 'wanted', 'in', 'connection', 'with', 'a', 'series', 'of', 'unrelated', 'slains', 'in', 'the', 'north', 'west', 'is', 'still', 'at', 'large', '||comma||', 'his', 'whereabouts', 'unknown', '||period||', "he's", 'described', 'as', "5'5", '||quotemark||', 'bald', 'and', 'reputedly', 'a', 'very', 'generous', 'tipper', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'they', 'do', 'for', 'toilet', 'paper', 'in', 'the', 'civil', 'war', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'wonder', 'what', 'toilet', 'paper', 'was', 'loike', 'in', 'the', "1860's", '||period||', 'did', 'they', 'carry', 'it', 'in', 'rolls', 'in', 'their', 'duffle', 'bags', '||questionmark||', '||return||', '||return||', 'jerry:', 'everything', 'with', 'you', 'comes', 'down', 'to', 'toilet', 'paper', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'always', 'the', 'first', 'question', 'with', 'you', '||period||', 'why', 'is', 'that', 'always', 'your', 'focus', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'so', 'what', 'did', 'they', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'maybe', 'they', 'gave', 'out', 'fig', 'leaf', 'clumps', 'to', 'all', 'the', 'soldiers', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'think', 'it', 'would', 'be', 'nice', 'if', 'there', 'was', 'some', 'kind', 'of', 'historical', 'record', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'they', 'should', 'have', 'a', 'toilet', 'paper', 'museum', '||period||', 'would', 'you', 'like', 'that', '||questionmark||', 'so', 'we', 'could', 'see', 'all', 'the', 'toilet', 'paper', 'advancements', 'down', 'through', 'the', 'ages', '||period||', 'toilet', 'paper', 'of', 'the', 'crusades', '||comma||', 'the', 'development', 'of', 'the', 'perforation', '||comma||', 'the', 'first', 'six', '||dash||', 'pack', '||period||', '||period||', '||period||', '||return||', '||return||', 'stu:', 'excuse', 'me', '||comma||', 'jerry', '||questionmark||', "i'm", 'stu', 'chermak', '||period||', "i'm", 'with', 'nbc', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'stu:', 'could', 'we', 'speak', 'for', 'a', 'few', 'moments', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'jay:', 'hi', '||comma||', 'jay', 'crespi', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'c', '||dash||', 'r', '||dash||', 'e', '||dash||', 's', '||dash||', 'p', '||dash||', 'i', '||questionmark||', '||return||', '||return||', 'jay:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', "i'm", 'unbelievable', 'at', 'spelling', 'last', 'names', '||period||', 'give', 'me', 'a', 'last', 'name', '||period||', '||return||', '||return||', 'jay:', 'mm', '||comma||', "i'm", 'not', '||dash||', '||return||', '||return||', 'jerry:', 'george', '||dash||', '||return||', '||return||', 'george:', '||leftparen||', 'backing', 'off', '||rightparen||', 'huh', '||questionmark||', 'all', 'right', '||comma||', 'fine', '||period||', '||return||', '||return||', 'stu:', 'first', 'of', 'all', '||comma||', 'that', 'was', 'a', 'terrific', 'show', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'stu:', 'and', 'basically', '||comma||', 'i', 'just', 'wanted', 'to', 'let', 'you', 'know', 'that', "we've", 'been', 'discussing', 'you', 'at', 'some', 'of', 'our', 'meetings', 'and', "we'd", 'be', 'very', 'interested', 'in', 'doing', 'something', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'wow', '||period||', '||return||', '||return||', 'stu:', 'so', '||comma||', 'if', 'you', 'have', 'any', 'idea', 'for', 'like', 'a', 'tv', 'show', 'for', 'yourself', '||comma||', 'well', '||comma||', "we'd", 'just', 'love', 'to', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', "i'd", 'be', 'very', 'interested', 'in', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'stu:', 'well', '||comma||', 'here', '||comma||', 'uh', '||comma||', 'why', "don't", 'you', 'give', 'us', 'a', 'call', 'and', 'maybe', 'we', 'can', 'develop', 'a', 'series', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'great', '||period||', 'thanks', '||period||', '||return||', '||return||', 'stu:', 'it', 'was', 'very', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'jay:', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'george:', 'what', 'was', 'that', 'all', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'said', 'they', 'were', 'interested', 'in', 'me', '||period||', '||return||', '||return||', 'george:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'a', 'tv', 'show', '||period||', '||return||', '||return||', 'george:', 'your', 'own', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'guess', 'so', '||period||', '||return||', '||return||', 'george:', 'they', 'want', 'you', 'to', 'do', 'a', 'tv', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'they', 'want', 'me', 'to', 'come', 'up', 'with', 'an', 'idea', '||period||', 'i', 'mean', '||comma||', 'i', "don't", 'have', 'any', 'ideas', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'how', 'hard', 'is', 'that', '||questionmark||', 'look', 'at', 'all', 'the', 'junk', "that's", 'on', 'tv', '||period||', 'you', 'want', 'an', 'idea', '||questionmark||', "here's", 'an', 'idea', '||period||', 'you', 'coach', 'gymnastics', 'team', 'in', 'high', 'school', '||period||', 'and', "you're", 'married', '||period||', 'and', 'your', "son's", 'not', 'interested', 'in', 'gymnastics', 'and', "you're", 'pushing', 'him', 'into', 'gymnastics', '||period||', '||return||', '||return||', 'jerry:', 'why', 'should', 'i', 'care', 'if', 'my', "son's", 'into', 'gymnastics', '||questionmark||', '||return||', '||return||', 'george:', 'because', "you're", 'a', 'gymnastics', 'teacher', '||period||', "it's", 'only', 'natural', '||period||', '||return||', '||return||', 'jerry:', 'but', 'gymnastics', 'is', 'not', 'for', 'everybody', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'but', "he's", 'your', 'son', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'forget', 'that', 'idea', '||comma||', "it's", 'not', 'for', 'you', '||period||', '||period||', '||period||', '||period||', 'okay', '||comma||', 'okay', '||comma||', 'i', 'got', 'it', '||period||', 'you', 'run', 'an', 'antique', 'store', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'and', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'people', 'come', 'in', 'the', 'store', 'and', 'you', 'get', 'involved', 'in', 'their', 'lives', '||period||', '||return||', '||return||', 'jerry:', 'what', 'person', 'who', 'runs', 'an', 'antique', 'store', 'gets', 'involved', 'in', "people's", 'lives', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'someone', 'comes', 'in', 'to', 'buy', 'an', 'old', 'lamp', 'and', 'all', 'of', 'a', 'sudden', "i'm", 'getting', 'them', 'out', 'of', 'a', 'jam', '||questionmark||', 'i', 'could', 'see', 'if', 'i', 'was', 'a', 'pharmacist', 'because', 'a', 'pharmacist', 'knows', "what's", 'wrong', 'with', 'everybody', 'that', 'comes', 'in', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'but', 'antiques', 'are', 'very', 'popular', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'no', "they're", 'not', '||comma||', 'they', 'used', 'to', 'be', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'like', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'like', 'you', 'do', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'and', "you're", 'the', 'manager', 'of', 'the', 'circus', '||period||', '||return||', '||return||', 'jerry:', 'a', 'circus', '||questionmark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'this', 'is', 'a', 'great', 'idea', '||period||', 'look', 'at', 'the', 'characters', '||period||', "you've", 'got', 'all', 'these', 'freaks', 'on', 'the', 'show', '||period||', 'a', 'woman', 'with', 'a', 'moustache', '||questionmark||', 'i', 'mean', '||comma||', 'who', "wouldn't", 'tune', 'in', 'to', 'see', 'a', 'women', 'with', 'a', 'moustache', '||questionmark||', "you've", 'for', 'the', 'tallest', 'man', 'in', 'the', 'world', '||semicolon||', 'a', 'guy', "who's", 'just', 'a', 'head', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'look', 'jerry', '||comma||', 'the', 'show', "isn't", 'about', 'the', 'circus', '||comma||', "it's", 'about', 'watching', 'freaks', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'the', 'network', 'will', 'go', 'for', 'it', '||period||', '||return||', '||return||', 'kramer:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', "i'm", 'not', 'pitching', 'a', 'show', 'about', 'freaks', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'come', 'on', 'jerry', '||comma||', "you're", 'wrong', '||period||', 'people', 'they', 'want', 'to', 'watch', 'freaks', '||period||', 'this', 'is', 'a', '||quotemark||', "can't", 'miss', '||period||', '||quotemark||', '||return||', '||return||', 'newman:', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'newman:', 'come', 'on', 'lets', 'go', '||period||', 'i', 'got', 'the', 'helmet', '||period||', 'lets', 'get', 'the', 'radar', 'detector', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', "i'll", 'be', 'back', 'in', 'a', 'second', '||period||', 'you', 'guys', 'coming', 'to', 'my', 'party', '||questionmark||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry', 'and', 'newman:', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'jerry:', "what's", 'this', 'all', 'about', '||questionmark||', '||return||', '||return||', 'newman:', "we're", 'making', 'a', 'trade', '||period||', "i'm", 'giving', 'him', 'my', 'motorcycle', 'helmet', '||dash||', "he's", 'giving', 'me', 'his', 'radar', 'detector', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'you', 'had', 'a', 'motorctcle', '||period||', '||return||', '||return||', 'newman:', 'well', 'my', 'girlfriend', 'had', 'one', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'a', 'girlfriend', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'had', 'a', 'girlfriend', 'and', 'she', 'was', 'pretty', 'wild', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'remember', 'you', 'with', 'a', 'girl', '||period||', '||return||', '||return||', 'newman:', 'nevertheless', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'a', 'pretty', 'bad', 'deal', 'for', 'kramer', '||period||', 'you', 'know', 'a', 'radar', 'detector', 'is', 'worth', 'much', 'more', 'than', 'that', 'helmet', '||period||', 'i', 'think', "you're", 'cheating', 'him', '||period||', '||return||', '||return||', 'newman:', "don't", 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "you're", 'getting', 'gypped', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', 'really', '||comma||', 'ah', '||comma||', '||return||', '||return||', 'newman:', 'we', 'had', 'a', 'deal', '||period||', 'are', 'you', 'reneging', 'out', 'of', 'the', 'deal', '||questionmark||', 'are', 'you', 'reneging', '||questionmark||', "that's", 'a', 'renege', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'stop', 'saying', "'reneging", '||quotemark||', '||period||', '||return||', '||return||', 'newman:', 'well', "you're", 'reneging', '||period||', '||return||', '||return||', 'kramer:', 'i', '||comma||', 'okay', '||comma||', 'okay', '||period||', "i'm", 'not', 'reneging', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', 'give', 'it', 'to', 'me', '||period||', 'let', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'let', 'go', '||dash||', 'come', 'on', '||period||', '||period||', '||period||', '||leftparen||', 'they', 'fight', 'over', 'the', 'items', '||rightparen||', '||return||', '||return||', 'jerry:', 'gimme', 'that', '||dash||', 'just', 'gimme', 'that', '||period||', 'here', '||period||', 'idiots', '||exclammark||', '||return||', '||return||', 'newman:', 'thanks', 'buddy', '||period||', 'so', 'long', 'he', 'he', '||period||', '||period||', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'does', 'that', 'thing', 'work', '||questionmark||', '||return||', '||return||', 'kramer:', 'nah', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'i', 'just', 'got', 'a', 'postcard', 'from', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "they're", 'in', 'london', 'now', '||period||', "they'll", 'be', 'back', 'in', 'a', 'few', 'weeks', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'she', 'got', 'involved', 'with', 'a', 'shrink', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "what's", 'happening', 'with', 'the', 'tv', 'show', '||questionmark||', 'you', 'come', 'up', 'with', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'they', 'have', 'salsa', 'on', 'the', 'table', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'need', 'salsa', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'salsa', 'is', 'now', 'the', 'number', 'one', 'condiment', 'in', 'america', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'why', '||questionmark||', 'because', 'people', 'like', 'to', 'say', '||quotemark||', 'salsa', '||period||', '||quotemark||', '||quotemark||', 'excuse', 'me', '||comma||', 'do', 'you', 'have', 'salsa', '||questionmark||', '||quotemark||', '||quotemark||', 'we', 'need', 'more', 'salsa', '||period||', '||quotemark||', '||quotemark||', 'where', 'is', 'the', 'salsa', '||questionmark||', 'no', 'salsa', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', 'you', 'know', 'it', 'must', 'be', 'impossible', 'for', 'a', 'spanish', 'person', 'to', 'order', 'seltzer', 'and', 'not', 'get', 'salsa', '||period||', '||leftparen||', 'angry', '||rightparen||', '||quotemark||', 'i', 'wanted', 'seltzer', '||comma||', 'not', 'salsa', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "don't", 'you', 'know', 'the', 'difference', 'between', 'seltzer', 'and', 'salsa', '||questionmark||', '||questionmark||', 'you', 'have', 'the', 'seltezer', 'after', 'the', 'salsa', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george:', 'see', '||comma||', 'this', 'should', 'be', 'a', 'show', '||period||', 'this', 'is', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'this', '||period||', 'just', 'talking', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'dismissing', '||rightparen||', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'george:', "i'm", 'really', 'serious', '||period||', 'i', 'think', "that's", 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'just', 'talking', '||questionmark||', 'well', "what's", 'the', 'show', 'about', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'about', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'no', 'story', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'forget', 'the', 'story', '||period||', '||return||', '||return||', 'jerry:', "you've", 'got', 'to', 'have', 'a', 'story', '||period||', '||return||', '||return||', 'george:', 'who', 'says', 'you', 'gotta', 'have', 'a', 'story', '||questionmark||', 'remember', 'when', 'we', 'were', 'waiting', 'for', '||comma||', 'for', 'that', 'table', 'in', 'that', 'chinese', 'restaurant', 'that', 'time', '||questionmark||', 'that', 'could', 'be', 'a', 'tv', 'show', '||period||', '||return||', '||return||', 'jerry:', 'and', 'who', 'is', 'on', 'the', 'show', '||questionmark||', 'who', 'are', 'the', 'characters', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'could', 'be', 'a', 'character', '||period||', '||return||', '||return||', 'jerry:', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'you', 'could', 'base', 'a', 'character', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'on', 'the', 'show', '||comma||', "there's", 'a', 'character', 'named', 'george', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', "there's", 'something', 'wrong', 'with', 'that', '||questionmark||', "i'm", 'a', 'character', '||period||', 'people', 'are', 'always', 'saying', 'to', 'me', '||comma||', '||quotemark||', 'you', 'know', "you're", 'a', 'quite', 'a', 'character', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'and', 'who', 'else', 'is', 'on', 'the', 'show', '||questionmark||', '||return||', '||return||', 'george:', 'elaine', 'could', 'be', 'a', 'character', '||period||', 'kramer', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'now', "he's", 'a', 'character', '||period||', '||leftparen||', 'pause', '||rightparen||', 'so', 'everybody', 'i', 'know', 'is', 'a', 'character', 'on', 'the', 'show', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'and', "it's", 'about', 'nothing', '||questionmark||', '||return||', '||return||', 'george:', 'absolutely', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'saying', '||comma||', 'i', 'go', 'in', 'to', 'nbc', '||comma||', 'and', 'tell', 'them', 'i', 'got', 'this', 'idea', 'for', 'a', 'show', 'about', 'nothing', '||period||', '||return||', '||return||', 'george:', 'we', 'go', 'into', 'nbc', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'we', '||quotemark||', '||questionmark||', 'since', 'when', 'are', 'you', 'a', 'writer', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'scoffs', '||rightparen||', 'writer', '||period||', "we're", 'talking', 'about', 'a', 'sit', '||dash||', 'com', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'go', 'with', 'me', 'to', 'nbc', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'think', 'we', 'really', 'go', 'something', 'here', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'we', 'got', '||questionmark||', '||return||', '||return||', 'george:', 'an', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'what', 'idea', '||questionmark||', '||return||', '||return||', 'george:', 'an', 'idea', 'for', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "don't", 'know', 'what', 'the', 'idea', 'is', '||period||', '||return||', '||return||', 'george:', "it's", 'about', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'george:', "everybody's", 'doing', 'something', '||comma||', "we'll", 'do', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'we', 'go', 'into', 'nbc', '||comma||', 'we', 'tell', 'them', "we've", 'got', 'an', 'idea', 'for', 'a', 'show', 'about', 'nothing', '||period||', '||return||', '||return||', 'george:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', 'they', 'say', '||comma||', '||quotemark||', "what's", 'your', 'show', 'about', '||questionmark||', '||quotemark||', 'i', 'say', '||comma||', '||quotemark||', 'nothing', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nodding', '||rightparen||', 'i', 'think', 'you', 'may', 'have', 'something', 'there', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'the', 'show', 'would', 'be', 'about', 'my', 'real', 'life', '||period||', 'and', 'one', 'of', 'the', 'characters', 'would', 'be', 'based', 'on', 'you', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'thinks', '||rightparen||', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'you', "don't", 'think', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', '||period||', 'what', "don't", 'you', 'like', 'about', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'like', 'the', 'idea', 'of', 'a', 'character', 'based', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'it', 'just', "doesn't", 'sit', 'well', '||period||', '||return||', '||return||', 'jerry:', "you're", 'my', 'neighbor', '||period||', "there's", 'got', 'to', 'be', 'a', 'character', 'based', 'on', 'you', '||period||', '||return||', '||return||', 'kramer:', "that's", 'your', 'problem', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', 'what', 'the', 'big', 'deal', 'is', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'll", 'tell', 'you', 'what', '||dash||', 'you', 'can', 'do', 'it', 'on', 'one', 'condition', '||period||', '||return||', '||return||', 'jerry:', 'whatever', 'you', 'want', '||period||', '||return||', '||return||', 'kramer:', 'i', 'get', 'to', 'play', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'play', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'i', 'am', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', "can't", 'act', '||period||', '||return||', '||return||', 'kramer:', 'phew', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'fine', '||period||', "we'll", 'use', 'newman', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', 'use', 'me', 'for', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "nothin'", 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', "you'll", 'never', 'guess', 'what', 'happened', 'to', 'me', 'today', '||period||', 'i', 'was', 'uh', '||comma||', 'driving', '||leftparen||', 'jerry', 'and', 'kramer', 'turn', 'away', '||rightparen||', 'home', 'on', 'the', 'palisades', 'parkway', 'when', 'i', 'looked', 'in', 'the', 'rear', 'view', 'mirror', 'and', 'what', 'did', 'i', 'see', '||questionmark||', 'the', 'fuzz', '||period||', 'and', "it's", 'funny', 'because', 'my', 'new', 'radar', 'detector', 'was', 'on', '||period||', 'i', "didn't", 'hear', 'a', 'thing', '||period||', "isn't", 'that', 'strange', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "that's", 'strange', '||period||', '||return||', '||return||', 'newman:', 'a', 'radar', 'detector', '||comma||', 'as', 'i', 'understand', 'it', '||comma||', 'detects', 'radar', '||exclammark||', 'with', 'a', 'series', 'of', 'beeps', 'and', 'flashing', 'lights', '||period||', 'but', 'oddly', '||comma||', 'for', 'some', 'reason', 'i', "didn't", 'hear', 'a', 'thing', 'except', 'for', 'the', 'sound', 'of', 'a', 'police', 'siren', '||period||', '||return||', '||return||', 'kramer:', "that's", 'queer', 'uh', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'want', 'my', 'helmet', 'back', '||exclammark||', 'give', 'me', 'back', 'my', 'helmet', 'and', "you're", 'going', 'to', 'pay', 'for', 'that', 'ticket', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'better', 'think', 'again', 'mojumbo', '||period||', '||return||', '||return||', 'newman:', 'you', 'gave', 'me', 'a', 'defective', 'detector', '||period||', '||period||', '||period||', '||period||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'buyer', 'beware', '||period||', '||return||', '||return||', 'newman:', 'are', 'you', 'going', 'to', 'give', 'me', 'back', 'that', 'helmet', 'or', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'we', 'had', 'a', 'deal', '||period||', 'there', 'are', 'no', 'guarantees', 'in', 'life', '||period||', '||return||', '||return||', 'newman:', 'no', '||comma||', 'but', "there's", 'karma', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'karma', 'kramer', '||questionmark||', '||return||', '||return||', 'newman:', 'and', 'one', 'more', 'thing', '||period||', "i'm", 'not', 'coming', 'to', 'your', 'party', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'salsa', '||comma||', 'seltzer', '||period||', 'hey', '||comma||', 'excuse', 'me', '||comma||', 'you', 'got', 'any', 'salsa', '||questionmark||', 'no', '||comma||', 'not', 'selzer', '||comma||', 'salsa', '||period||', '||leftparen||', 'george', "doesn't", 'react', '||rightparen||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'nervous', '||rightparen||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sure', '||questionmark||', 'you', 'look', 'a', 'little', 'pale', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "i'm", 'fine', '||period||', "i'm", 'good', '||period||', "i'm", 'very', 'good', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'are', 'you', 'nervous', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'nervous', '||period||', "i'm", 'good', '||comma||', 'very', 'good', '||period||', '||leftparen||', 'a', 'beat', '||comma||', 'then', 'he', 'snaps', '||rightparen||', 'i', "can't", 'do', 'this', '||exclammark||', "can't", 'do', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'do', 'this', '||exclammark||', 'i', "can't", 'do', 'it', '||period||', 'i', 'have', 'tried', '||period||', "i'm", 'here', '||period||', "it's", 'impossible', '||period||', '||return||', '||return||', 'jerry:', 'this', 'was', 'your', 'idea', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'idea', '||questionmark||', 'i', 'just', 'said', 'something', '||period||', 'i', "didn't", 'know', 'you', 'were', 'going', 'to', 'listen', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', "dont'", 'worry', 'about', 'it', '||period||', "they're", 'just', 'tv', 'executives', '||period||', '||return||', '||return||', 'george:', "they're", 'men', 'with', 'jobs', '||comma||', 'jerry', '||exclammark||', 'they', 'wear', 'suits', 'and', 'ties', '||period||', "they're", 'married', '||comma||', 'they', 'have', 'secretaries', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'not', 'to', 'come', '||period||', '||return||', '||return||', 'george:', 'i', 'need', 'some', 'water', '||period||', 'i', 'gotta', 'get', 'some', 'water', '||period||', '||return||', '||return||', 'jerry:', "they'll", 'give', 'us', 'water', 'in', 'there', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', "that's", 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'god', '||comma||', "it's", 'joe', 'devola', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', "guy's", 'a', 'writer', '||comma||', "he's", 'a', 'total', 'nut', '||period||', 'i', 'think', 'he', 'goes', 'to', 'the', 'same', 'shrink', 'as', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'god', 'he', 'saw', 'me', '||period||', '||return||', '||return||', 'devola:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'joe', '||exclammark||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'devola:', "you're", 'under', 'no', 'obligation', 'to', 'shake', 'my', 'hand', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'just', 'a', 'custom', '||period||', 'uh', '||comma||', "that's", 'my', 'friend', 'george', '||period||', 'you', 'look', 'good', '||period||', '||return||', '||return||', 'devola:', 'why', "shouldn't", 'i', 'look', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', 'reason', '||period||', "you're", 'into', 'karate', 'right', '||questionmark||', '||return||', '||return||', 'devola:', 'you', 'want', 'to', 'hit', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'devola:', 'i', 'dreopped', 'a', 'script', 'off', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'devola:', 'you', "don't", 'have', 'to', 'say', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'uh', '||comma||', 'hey', 'i', 'guess', "i'll", 'see', 'you', 'sunday', 'night', '||period||', '||return||', '||return||', 'devola:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', "kramer's", 'party', '||period||', '||return||', '||return||', 'devola:', "kramer's", '||period||', '||period||', '||period||', 'having', '||period||', '||period||', '||period||', 'a', '||period||', '||period||', '||period||', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', "he's", 'not', 'having', 'a', 'party', '||period||', "he's", 'doing', 'something', '||period||', 'i', "don't", 'know', 'what', 'it', 'is', '||period||', "it's", 'nothing', '||period||', "he's", 'not', 'doing', 'anything', '||period||', '||return||', '||return||', 'devola:', 'gee', '||comma||', 'i', 'thought', 'kramer', 'and', 'i', 'were', 'very', 'close', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'sure', 'you', 'are', '||period||', "i'm", 'sure', 'you', 'are', 'very', 'close', 'friends', '||period||', 'very', 'close', '||period||', '||return||', '||return||', 'jerry:', 'give', 'my', 'best', 'to', 'hinckley', '||period||', '||return||', '||return||', 'george:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'what', 'i', 'just', 'did', '||period||', 'i', "didn't", 'know', 'kramer', "didn't", 'invite', 'him', '||period||', 'i', 'better', 'call', 'kramer', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'receptionist:', "they're", 'ready', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'okay', '||period||', 'look', '||comma||', 'you', 'do', 'all', 'the', 'talking', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'relax', '||period||', 'who', 'are', 'they', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "they're", 'not', 'better', 'than', 'me', '||period||', '||return||', '||return||', 'jerry:', 'course', 'not', '||period||', '||return||', '||return||', 'george:', 'who', 'are', 'they', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'nobody', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'them', '||questionmark||', 'why', 'not', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'not', 'you', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'as', 'good', 'as', 'them', '||period||', '||return||', '||return||', 'jerry:', 'better', '||period||', '||return||', '||return||', 'george:', 'you', 'really', 'think', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'stu:', '||leftparen||', 'to', 'jerry', '||comma||', 'laughing', 'about', 'one', 'of', 'his', 'bits', '||rightparen||', 'the', 'bit', '||comma||', 'the', 'bit', 'i', 'really', 'liked', 'what', 'were', 'the', 'parakeet', 'flew', 'into', 'the', 'mirror', '||period||', 'now', "that's", 'funny', '||period||', '||return||', '||return||', 'george:', 'the', 'parakeet', 'in', 'the', 'mirror', '||period||', "that's", 'a', 'good', 'one', '||comma||', 'stu', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'one', 'of', 'my', 'favorites', '||period||', '||return||', '||return||', 'russell:', 'what', 'about', 'you', '||comma||', 'george', '||questionmark||', 'have', 'you', 'written', 'anything', 'we', 'might', 'know', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'quickly', 'making', 'it', 'up', '||rightparen||', 'well', '||comma||', 'possibly', '||period||', 'i', 'wrote', 'an', 'off', '||dash||', 'broadway', 'show', '||comma||', '||quotemark||', 'la', 'cocina', '||period||', '||quotemark||', '||period||', '||period||', 'actually', '||comma||', 'it', 'was', 'off', '||dash||', 'off', '||dash||', 'broadway', '||period||', 'it', 'was', 'a', 'comedy', 'about', 'a', 'mexican', 'chef', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', 'was', 'very', 'funny', '||period||', 'there', 'was', 'one', 'great', 'scene', 'with', 'the', 'chef', '||dash||', 'what', 'was', 'his', 'name', '||questionmark||', '||return||', '||return||', 'george:', 'pepe', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'pepe', '||period||', 'yeah', '||comma||', 'pepe', '||period||', 'and', '||comma||', 'uh', '||comma||', 'he', 'was', 'making', 'tamales', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'he', 'actually', 'cooked', 'on', 'the', 'stage', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'he', 'mimed', 'it', '||period||', "that's", 'what', 'was', 'so', 'funny', 'about', 'it', '||period||', '||return||', '||return||', 'russell:', 'so', '||comma||', 'what', 'have', 'you', 'two', 'come', 'up', 'with', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "we've", 'thought', 'about', 'this', 'in', 'a', 'variety', 'of', 'ways', '||period||', 'but', 'the', 'basic', 'idea', 'is', 'i', 'will', 'play', 'myself', '||dash||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupting', '||rightparen||', 'may', 'i', '||questionmark||', '||return||', '||return||', 'jerry:', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'can', 'sum', 'up', 'the', 'show', 'for', 'you', 'with', 'one', 'word', 'nothing', '||period||', '||return||', '||return||', 'russell:', 'nothing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'nothing', '||period||', '||return||', '||return||', 'russell:', '||leftparen||', 'unimpressed', '||rightparen||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'show', 'is', 'about', 'nothing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'well', '||comma||', "it's", 'not', 'about', 'nothing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'no', '||comma||', "it's", 'about', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'in', 'philosophy', '||period||', 'but', '||comma||', 'even', 'nothing', 'is', 'something', '||period||', '||return||', '||return||', 'receptionist:', 'mr', '||period||', 'dalrymple', '||comma||', 'your', 'niece', 'is', 'on', 'the', 'phone', '||period||', '||return||', '||return||', 'russell:', "i'll", 'call', 'back', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'attempting', 'to', 'spell', 'his', 'last', 'name', '||rightparen||', 'd', '||dash||', 'a', '||dash||', 'l', '||dash||', 'r', '||dash||', 'i', '||dash||', 'm', '||dash||', 'p', '||dash||', 'e', '||dash||', 'l', '||questionmark||', '||return||', '||return||', 'russell:', '||leftparen||', 'obviously', 'dislikes', 'george', '||rightparen||', 'not', 'even', 'close', '||period||', '||return||', '||return||', 'george:', 'is', 'it', 'with', 'a', '||quotemark||', 'y', '||quotemark||', '||questionmark||', '||return||', '||return||', 'russell:', 'no', '||period||', '||return||', '||return||', 'susan:', "what's", 'the', 'premise', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'well', '||comma||', 'as', 'i', 'was', 'saying', '||comma||', 'i', 'would', 'play', 'myself', '||comma||', 'and', '||comma||', 'as', 'a', 'comedian', '||comma||', 'living', 'in', 'new', 'york', '||comma||', 'i', 'have', 'a', 'friend', '||comma||', 'a', 'neighbor', '||comma||', 'and', 'an', 'ex', '||dash||', 'girlfriend', '||comma||', 'which', 'is', 'all', 'true', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'but', 'nothing', 'happens', 'on', 'the', 'show', '||period||', 'you', 'see', '||comma||', "it's", 'just', 'like', 'life', '||period||', 'you', 'know', '||comma||', 'you', 'eat', '||comma||', 'you', 'go', 'shopping', '||comma||', 'you', 'read', '||period||', '||period||', 'you', 'eat', '||comma||', 'you', 'read', '||comma||', 'you', 'go', 'shopping', '||period||', '||return||', '||return||', 'russell:', 'you', 'read', '||questionmark||', 'you', 'read', 'on', 'the', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'know', 'about', 'the', 'reading', '||period||', '||period||', 'we', "didn't", 'discuss', 'the', 'reading', '||period||', '||return||', '||return||', 'russell:', 'all', 'right', '||comma||', 'tell', 'me', '||comma||', 'tell', 'me', 'about', 'the', 'stories', '||period||', 'what', 'kind', 'of', 'stories', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', 'no', 'stories', '||period||', '||return||', '||return||', 'russell:', 'no', 'stories', '||questionmark||', 'so', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'showing', 'an', 'example', '||rightparen||', "what'd", 'you', 'do', 'today', '||questionmark||', '||return||', '||return||', 'russell:', 'i', 'got', 'up', 'and', 'came', 'to', 'work', '||period||', '||return||', '||return||', 'george:', "there's", 'a', 'show', '||period||', "that's", 'a', 'show', '||period||', '||return||', '||return||', 'russell:', '||leftparen||', 'confused', '||rightparen||', 'how', 'is', 'that', 'a', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'uh', '||comma||', 'maybe', 'something', 'happens', 'on', 'the', 'way', 'to', 'work', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'nothing', 'happens', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'something', 'happens', '||period||', '||return||', '||return||', 'russell:', 'well', '||comma||', 'why', 'am', 'i', 'watching', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'because', "it's", 'on', 'tv', '||period||', '||return||', '||return||', 'russell:', '||leftparen||', 'threatening', '||rightparen||', 'not', 'yet', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'uh', '||comma||', 'look', '||comma||', 'if', 'you', 'want', 'to', 'just', 'keep', 'on', 'doing', 'the', 'same', 'old', 'thing', '||comma||', 'then', 'maybe', 'this', 'idea', 'is', 'not', 'for', 'you', '||period||', 'i', '||comma||', 'for', 'one', '||comma||', 'am', 'not', 'going', 'to', 'compromise', 'my', 'artistic', 'integrity', '||period||', 'and', "i'll", 'tell', 'you', 'something', 'else', '||comma||', 'this', 'is', 'the', 'show', 'and', "we're", 'not', 'going', 'to', 'change', 'it', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'russell', '||rightparen||', 'how', 'about', 'this', 'i', 'manage', 'a', 'circus', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'want', 'to', 'talk', 'about', 'it', 'anymore', '||period||', 'what', 'were', 'you', 'thinking', '||questionmark||', 'what', 'was', 'going', 'on', 'in', 'your', 'mind', '||questionmark||', 'artistic', 'integrity', '||questionmark||', 'where', '||comma||', 'where', 'did', 'you', 'come', 'up', 'with', 'that', '||questionmark||', "you're", 'not', 'artistic', 'and', 'you', 'have', 'no', 'integrity', '||period||', 'you', 'know', 'you', 'really', 'need', 'some', 'help', '||period||', 'a', 'regular', 'psychiatrist', "couldn't", 'even', 'help', 'you', '||period||', 'you', 'need', 'to', 'go', 'to', 'like', 'vienna', 'or', 'something', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', 'you', 'need', 'to', 'get', 'involved', 'at', 'the', 'university', 'level', '||period||', 'like', 'where', 'freud', 'studied', 'and', 'have', 'all', 'those', 'people', 'looking', 'at', 'you', 'and', 'checking', 'up', 'on', 'you', '||period||', "that's", 'the', 'kind', 'of', 'help', 'you', 'need', '||period||', 'not', 'the', 'once', 'a', 'week', 'for', 'eighty', 'bucks', '||period||', 'no', '||period||', 'you', 'need', 'a', 'team', '||period||', 'a', 'team', 'of', 'psychiatrists', 'working', 'round', 'the', 'clock', 'thinking', 'about', 'you', '||comma||', 'having', 'conferences', '||comma||', 'observing', 'you', '||comma||', 'like', 'the', 'way', 'they', 'did', 'with', 'the', 'elephant', 'man', '||period||', "that's", 'what', "i'm", 'talking', 'about', 'because', "that's", 'the', 'only', 'way', "you're", 'going', 'to', 'get', 'better', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'i', 'thought', 'the', 'woman', 'was', 'kind', 'of', 'cute', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'it', '||period||', 'i', 'really', 'want', 'to', 'be', 'clear', 'about', 'this', '||period||', 'are', 'you', 'talking', 'about', 'the', 'woman', 'in', 'the', 'meeting', '||questionmark||', 'is', 'that', 'the', 'woman', "you're", 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'thought', 'i', 'might', 'give', 'her', 'a', 'call', '||period||', 'i', '||comma||', 'i', "don't", 'meet', 'that', 'many', 'women', '||period||', 'i', 'meet', 'like', 'three', 'women', 'a', 'year', '||period||', 'i', 'mean', '||comma||', "we've", 'been', 'introduced', '||period||', 'she', 'knows', 'my', 'name', '||period||', '||return||', '||return||', 'jerry:', "it's", 'completely', 'inappropriate', '||exclammark||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'maybe', 'she', 'liked', 'me', '||period||', 'i', '||comma||', 'i', 'mean', 'she', 'was', 'looking', 'right', 'at', 'me', '||period||', 'you', 'know', '||comma||', 'i', 'think', 'she', 'was', 'impressed', '||period||', 'you', 'know', '||comma||', 'we', 'had', 'good', 'eye', 'contact', 'the', 'whole', 'meeting', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'forgot', 'to', 'call', 'kramer', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', 'let', 'me', 'call', 'susan', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'this', 'is', 'more', 'important', '||period||', '||return||', '||return||', 'george:', 'she', 'might', 'be', 'leaving', 'to', 'work', 'any', 'minute', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'got', 'to', 'warn', 'him', 'that', 'i', 'told', 'joe', 'devola', 'about', 'his', 'party', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'i', 'was', 'just', 'thinking', 'about', 'this', 'patient', 'of', 'mine', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'just', 'wondering', 'if', "he's", 'taking', 'his', 'medication', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'come', 'on', "we're", 'on', 'vacation', '||period||', '||return||', '||return||', 'jerry:', 'well', 'we', 'were', 'standing', 'uh', '||comma||', 'inn', 'the', 'waiting', 'area', 'there', '||comma||', 'and', 'you', 'know', 'how', 'devola', 'is', '||period||', "he's", 'all', '||comma||', '||period||', '||period||', '||period||', '||leftparen||', 'buzzer', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||leftparen||', 'to', 'buzzer', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'oc', '||rightparen||', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'and', 'so', '||comma||', 'uh', 'i', 'felt', 'very', 'uncomfortable', 'with', 'him', 'and', 'you', 'know', 'i', 'just', 'blurted', 'out', 'something', 'about', 'your', 'party', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', 'back', 'up', 'a', 'second', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "didn't", 'know', 'that', 'you', "didn't", 'invite', 'him', '||period||', '||return||', '||return||', 'kramer:', 'why', 'would', 'you', 'think', 'i', 'would', 'invite', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'just', 'a', 'ssumed', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'assumed', '||questionmark||', 'never', 'assume', 'anything', '||period||', 'i', "don't", 'want', 'that', 'nut', 'in', 'my', 'house', '||period||', 'you', 'know', "he's", 'on', 'medication', '||period||', '||return||', '||return||', 'george:', 'hello', '||comma||', 'oh', '||comma||', 'hello', '||period||', 'you', 'remember', '||comma||', '||period||', '||period||', '||period||', 'susan', '||comma||', 'from', 'n', 'b', 'c', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'susan:', 'fine', '||comma||', "it's", 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'george:', 'and', 'this', 'is', 'kramer', '||period||', '||return||', '||return||', 'susan:', 'hello', '||period||', '||return||', '||return||', 'george:', 'all', 'right', 'go', 'ahead', 'susan', '||comma||', 'tell', 'him', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'me', 'what', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'i', '||comma||', '||leftparen||', 'phone', 'rings', '||rightparen||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'sorry', '||comma||', 'excuse', 'me', 'one', 'second', '||period||', 'hello', '||period||', '||return||', '||return||', 'tel:', 'hi', '||comma||', 'would', 'you', 'be', 'interested', 'in', 'switching', 'over', 'to', 'tmi', 'long', 'distance', 'service', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'gee', '||comma||', 'i', "can't", 'talk', 'right', 'now', '||period||', 'why', "don't", 'you', 'give', 'me', 'your', 'home', 'number', 'and', "i'll", 'call', 'you', 'later', '||period||', '||return||', '||return||', 'tel:', 'uh', '||comma||', "i'm", 'sorry', "we're", 'not', 'allowed', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'guess', 'you', "don't", 'want', 'people', 'calling', 'you', 'at', 'home', '||period||', '||return||', '||return||', 'tel:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'well', 'now', 'you', 'know', 'how', 'i', 'feel', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'go', 'ahead', '||comma||', 'tell', 'him', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'are', 'you', 'drinking', 'that', 'milk', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'expiration', 'date', 'on', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'september', 'third', '||period||', '||return||', '||return||', 'jerry:', 'the', 'third', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'susan', 'the', 'third', '||questionmark||', '||return||', '||return||', 'kramer:', 'um', '||comma||', 'uh', '||comma||', 'ugh', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'noooo', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'throws', 'up', 'on', 'susan', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'never', 'should', 'have', 'brought', 'her', 'up', 'there', '||period||', 'should', 'have', 'known', 'better', '||period||', 'should', 'have', 'seen', 'it', 'coming', '||period||', 'i', "didn't", 'see', 'it', 'coming', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'she', 'saw', 'it', 'coming', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'she', 'was', 'behind', 'the', 'idea', '||period||', 'she', 'was', 'going', 'to', 'champion', 'the', 'show', '||period||', "that's", 'what', 'i', 'was', 'bring', 'her', 'up', 'there', 'to', 'tell', 'you', '||period||', 'and', 'she', 'liked', 'me', '||period||', '||return||', '||return||', 'jerry:', 'look', 'just', 'because', 'kramer', 'vomited', 'on', 'her', "doesn't", 'mean', 'the', 'deal', 'is', 'dead', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'are', 'you', 'crazy', '||questionmark||', "it's", 'a', 'traumatic', 'thing', 'to', 'be', 'thrown', 'up', 'on', '||period||', '||return||', '||return||', 'jerry:', 'vommiting', 'is', 'not', 'a', 'deal', 'breaker', '||period||', 'if', 'hitler', 'had', 'vommited', 'on', 'chamberlin', '||comma||', 'chamberlind', 'still', 'would', 'have', 'given', 'him', 'chekoslovakia', '||period||', '||return||', '||return||', 'george:', 'chamberlind', '||comma||', 'you', 'could', 'hold', 'his', 'head', 'in', 'nthe', 'toilet', '||comma||', "he'd", 'still', 'give', 'you', 'half', 'of', 'europe', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'devola', 'came', 'after', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'devola', '||questionmark||', 'see', 'i', 'told', 'you', 'this', 'guy', 'is', 'crazy', '||period||', 'i', "can't", 'believe', 'this', '||period||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'can', 'i', 'have', 'a', 'coffee', '||period||', '||period||', '||period||', '||period||', 'what', '||comma||', 'you', 'know', 'i', 'was', 'walking', 'home', 'and', 'i', 'had', 'to', 'pick', 'up', 'my', 'helmet', 'from', 'the', 'shop', '||comma||', 'you', 'know', '||period||', 'i', 'gota', 'new', 'strap', '||period||', 'and', 'i', 'had', 'it', 'on', 'you', 'know', '||comma||', 'and', 'i', 'was', 'checking', 'the', 'strap', 'out', 'to', 'make', 'sure', 'it', 'fit', '||period||', 'then', 'suddenly', 'i', 'feel', 'this', 'kick', 'hit', 'me', 'on', 'the', 'side', 'of', 'the', 'head', '||period||', 'it', 'knocks', 'me', 'down', '||comma||', 'i', 'look', 'up', 'and', "it's", 'crazy', 'joe', 'devola', '||period||', 'and', 'he', "say's", '||comma||', '||quotemark||', "that's", 'what', 'i', 'thin', 'k', 'of', 'your', 'party', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'that', 'is', 'some', 'kick', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||comma||', "newman's", 'helmet', '||comma||', 'it', 'saved', 'my', 'life', '||period||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', "newman's", 'helmet', '||period||', '||return||', '||return||', 'george:', 'holly', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'bad', 'news', 'for', 'you', 'buddy', '||period||', 'devola', 'says', "you're", 'next', '||period||', '||return||', '||return||', 'jerry:', 'me', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', "doesn't", 'like', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'he', 'want', 'from', 'me', '||questionmark||', 'i', "didn't", 'do', 'anything', '||period||', 'see', 'this', 'is', 'all', "elaine's", 'fault', '||period||', 'she', 'took', 'off', 'to', 'europe', 'with', 'his', 'psychiatrist', '||period||', 'he', 'probably', "can't", 'get', 'his', 'medication', '||period||', 'now', 'i', 'got', 'some', 'nut', 'after', 'me', '||period||', '||return||', '||return||', 'kramer:', 'pass', 'the', 'cream', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||period||', '||leftparen||', 'smells', 'it', '||rightparen||', '||period||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'going', 'through', 'couch', 'cushions', '||rightparen||', 'where', 'the', 'hell', 'did', 'i', 'put', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'looking', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'remote', '||comma||', 'the', 'remote', '||comma||', 'i', "can't", 'find', 'the', 'remote', '||period||', 'did', 'i', 'lost', '||comma||', 'i', 'lost', 'it', '||period||', 'did', 'you', 'take', 'it', '||questionmark||', 'did', 'you', 'put', 'it', 'some', 'place', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'clueless', '||rightparen||', 'what', 'is', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'very', 'funny', '||period||', 'i', 'get', 'it', '||period||', '||return||', '||return||', 'kramer:', "you're", 'in', 'a', 'weird', 'mood', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'go', 'back', 'to', 'your', 'apartment', 'and', 'fix', 'it', '||period||', '||return||', '||return||', 'kramer:', 'fix', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'pants', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'is', 'this', '||questionmark||', 'what', 'have', 'i', 'got', 'one', 'pant', 'leg', 'on', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'you', 'know', '||questionmark||', 'look', '||dash||', 'look', 'at', 'your', 'face', '||exclammark||', 'you', 'only', 'shaved', 'the', 'right', 'side', 'of', 'your', 'face', '||exclammark||', 'what', 'is', 'this', '||questionmark||', 'a', 'joke', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "t's", 'a', 'joke', '||period||', '||period||', 'a', 'joke', '||period||', '||period||', '||period||', 'a', 'joke', '||period||', '||period||', '||period||', 'you', 'think', 'this', 'is', 'funny', '||questionmark||', '||return||', '||return||', 'jerry:', 'go', 'look', 'at', 'your', 'face', 'in', 'the', 'mirror', '||period||', '||return||', '||return||', 'kramer:', 'wha', '||dash||', 'huh', '||dash||', 'wha', '||dash||', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pressing', 'intercom', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'intercom', '||rightparen||', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'believe', 'this', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', '||comma||', 'you', "didn't", 'know', 'you', 'were', 'doing', 'any', 'of', 'these', 'things', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'swear', '||period||', '||return||', '||return||', 'jerry:', 'i', 'bet', 'this', 'is', 'from', 'that', 'kick', 'from', 'that', 'crazy', 'joe', 'davola', '||period||', 'you', 'better', 'see', 'a', 'doctor', 'and', 'get', 'some', 'x', '||dash||', 'rays', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'ah', '||exclammark||', "you're", 'just', 'the', 'man', "i'm", 'looking', 'for', '||period||', '||return||', '||return||', 'kramer:', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'kramer:', "what's", 'this', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'dry', '||dash||', 'cleaning', 'bill', '||questionmark||', '||return||', '||return||', 'jerry:', 'from', 'that', 'woman', 'at', 'nbc', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'a', 'dry', '||dash||', 'cleaning', 'bill', 'for', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'for', 'vomiting', 'on', 'her', 'vest', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', 'george', '||exclammark||', 'i', "didn't", 'do', 'that', 'on', 'purpose', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "shouldn't", 'have', 'to', 'pay', 'for', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'neither', 'should', 'i', '||exclammark||', "jerry's", 'the', 'one', 'who', 'left', 'the', 'milk', 'in', 'the', 'refrigerator', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'yeah', '||comma||', 'your', 'milk', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'kramer', '||rightparen||', 'he', 'drank', 'it', '||period||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'well', '||comma||', 'we', 'should', 'all', 'chip', 'in', 'i', 'guess', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'was', 'it', 'to', 'clean', 'the', 'vest', '||questionmark||', '||return||', '||return||', 'george:', 'eighteen', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'get', 'vomit', 'out', 'of', 'suede', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'yo', '||dash||', 'yo', 'ma', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'yo', '||dash||', 'yo', 'ma', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'about', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'just', 'said', "'yo", '||dash||', 'yo', "ma'", '||period||', '||return||', '||return||', 'george:', "what's", 'yo', '||dash||', 'yo', 'ma', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'cellist', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'should', 'see', 'a', 'doctor', 'today', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'come', 'on', '||comma||', 'come', 'on', '||comma||', "let's", 'go', '||period||', 'six', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'she', 'sent', 'you', 'that', 'dry', '||dash||', 'cleaning', 'bill', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||exclammark||', '||return||', '||return||', 'jerry:', 'that', "doesn't", 'really', 'bode', 'well', 'for', 'the', 'show', '||comma||', 'does', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'show', '||exclammark||', 'forget', 'about', 'the', 'show', '||exclammark||', 'we', 'should', 'take', 'the', 'idea', 'to', 'a', 'different', 'network', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'right', '||period||', 'like', "anybody's", 'ever', 'gonna', 'do', 'this', '||exclammark||', 'how', 'did', 'you', 'get', 'me', 'to', 'go', 'along', 'with', 'that', '||questionmark||', 'a', 'show', 'about', 'nothing', '||exclammark||', '||return||', '||return||', 'george:', 'it', 'was', 'a', 'good', 'idea', '||period||', 'susan', 'liked', 'it', '||period||', 'now', '||comma||', 'if', 'he', "hadn't", 'vomitted', 'all', 'over', 'her', '||comma||', "we'd", 'be', 'writing', 'it', 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', 'jeez', '||exclammark||', '||return||', '||return||', 'george:', 'anyway', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupts', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', "what's", 'wrong', 'with', 'you', '||questionmark||', "what're", 'you', 'doing', '||questionmark||', 'give', 'me', 'that', 'phone', '||exclammark||', 'go', 'to', 'your', 'apartment', 'and', 'lie', 'down', '||comma||', "i'll", 'make', 'an', 'appointment', 'for', 'a', 'doctor', 'today', '||period||', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', 'oh', 'hi', '||exclammark||', "i'm", 'sorry', '||period||', 'no', '||comma||', "that's", 'my', 'next', 'door', 'neighbor', '||period||', "he's", 'not', 'quite', 'himself', '||period||', 'he', 'got', 'kicked', 'in', 'the', 'head', '||period||', 'what', '||questionmark||', 'really', '||questionmark||', "you're", 'kidding', '||exclammark||', 'today', '||questionmark||', 'yeah', '||exclammark||', 'sure', '||exclammark||', 'we', 'could', 'make', 'it', '||period||', 'two', "o'clock", '||questionmark||', 'yeah', '||comma||', 'we', 'would', 'do', 'that', '||period||', 'okay', '||period||', 'great', '||exclammark||', 'thanks', 'a', 'million', '||exclammark||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'nbc', '||exclammark||', 'they', 'wanna', 'have', 'another', 'meeting', 'about', 'the', 'idea', '||period||', '||return||', '||return||', 'george:', 'they', 'wanna', 'have', 'another', 'meeting', '||questionmark||', 'they', 'wanna', 'buy', 'it', '||questionmark||', '||exclammark||', 'they', 'wanna', 'but', 'it', '||questionmark||', '||exclammark||', 'oh', '||exclammark||', 'i', 'tell', 'you', '||exclammark||', "we're", 'gonna', 'be', 'rich', '||exclammark||', '||exclammark||', 'what', 'are', 'we', 'gonna', 'get', 'for', 'this', '||questionmark||', 'fifty', '||comma||', 'sixty', 'thousand', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'about', 'sixty', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'gotta', 'be', 'fifty', '||exclammark||', 'hee', 'hee', '||exclammark||', 'you', 'know', 'how', 'much', 'ted', 'danson', 'makes', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'ted', 'danson', '||exclammark||', 'now', '||comma||', 'how', 'are', 'you', 'comparing', 'us', 'to', 'ted', 'danson', '||questionmark||', '||return||', '||return||', 'george:', 'i', "didn't", 'say', "'we're", 'ted', 'danson', '||period||', "'", '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'you', 'did', '||period||', 'you', 'said', "'we're", 'ted', "danson'", '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'think', 'he', 'wears', 'a', 'piece', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "don't", 'worry', '||period||', 'he', 'can', 'afford', 'it', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'ten', 'minutes', 'slow', 'again', '||exclammark||', "that's", 'it', 'for', 'this', 'piece', 'of', 'junk', '||exclammark||', "i've", 'had', 'it', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'is', 'that', 'the', 'one', 'your', 'parents', 'gave', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'but', 'it', 'never', 'works', '||period||', 'you', 'know', "we're", 'supposed', 'to', 'be', 'there', 'by', 'two', "o'clock", '||period||', 'we', 'should', 'take', 'a', 'cab', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "we'll", 'be', 'a', 'little', 'late', '||comma||', 'i', '||comma||', 'm', 'not', 'taking', 'a', 'cab', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'the', 'money', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'is', 'it', 'you', 'object', 'to', '||questionmark||', 'the', 'comfort', '||questionmark||', 'the', 'speed', '||questionmark||', 'the', 'convenience', '||questionmark||', '||return||', '||return||', 'leo:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||exclammark||', '||return||', '||return||', 'leo:', 'helloooo', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', 'there', '||comma||', "how're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'leo:', 'ha', 'ha', '||exclammark||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'good', '||period||', '||return||', '||return||', 'leo:', "how's", 'your', 'mom', 'and', 'dad', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'fine', '||period||', '||return||', '||return||', 'leo:', 'what', 'are', 'you', 'getting', 'to', 'be', 'too', 'much', 'of', 'a', 'big', 'shot', 'now', 'to', 'give', 'me', 'a', 'call', '||questionmark||', 'i', "don't", 'hear', 'from', 'you', 'anymore', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', "i've", 'been', 'kinda', 'busy', '||period||', "it's", 'all', '||period||', '||return||', '||return||', 'leo:', 'you', 'know', 'where', 'i', 'just', 'came', 'from', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'enthousiastic', 'at', 'all', '||rightparen||', 'oh', '||comma||', 'sure', '||period||', 'danny', '||period||', '||return||', '||return||', 'leo:', 'he', 'used', 'to', 'be', 'in', 'the', 'pajama', 'business', '||period||', 'i', 'used', 'to', 'be', 'able', 'to', 'get', 'pajamas', 'for', 'free', '||period||', 'i', 'used', 'to', 'come', 'over', 'and', 'get', 'pajamas', 'all', 'the', 'time', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'remember', '||period||', '||return||', '||return||', 'leo:', 'the', 'funny', 'thing', 'is', 'i', "can't", 'wear', "'em", '||period||', 'i', 'get', 'too', 'hot', '||period||', 'i', 'sleep', 'in', 'my', 'underwear', 'and', 'a', 't', '||dash||', 'shirt', '||period||', 'if', 'it', 'gets', 'too', 'hot', '||comma||', 'i', 'just', 'get', 'the', 't', '||dash||', 'shirt', 'off', '||exclammark||', 'anyway', '||comma||', 'danny', 'says', 'to', 'me', "'you", 'need', 'any', 'pajamas', '||questionmark||', "'", '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupts', '||rightparen||', 'i', '||dash||', "i'm", 'sorry', 'uncle', 'leo', '||comma||', 'i', 'really', 'gotta', 'get', 'going', '||period||', '||return||', '||return||', 'leo:', 'oh', '||period||', 'well', '||period||', 'you', 'gotta', 'get', 'going', '||comma||', 'so', 'go', '||period||', '||return||', '||return||', 'jerry:', 'we', '||comma||', 'we', 'got', 'a', 'big', 'meeting', 'with', 'the', 'president', 'of', 'nbc', '||period||', '||return||', '||return||', 'leo:', 'nobody', 'got', 'a', 'gun', 'to', 'your', 'head', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'seems', 'sincere', '||rightparen||', 'yeah', '||comma||', "i'm", 'really', 'sorry', '||comma||', 'uh', '||period||', '||return||', '||return||', 'leo:', 'go', '||period||', 'really', '||period||', 'i', 'understand', '||period||', 'you', 'got', 'an', 'appointment', '||comma||', 'go', 'to', 'your', 'appointment', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'really', '||period||', '||return||', '||return||', 'leo:', 'you', 'know', '||comma||', 'i', 'know', 'plenty', 'of', 'people', 'in', 'hollywood', 'too', '||exclammark||', '||return||', '||return||', 'jerry:', 'sorry', '||comma||', 'really', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'inside', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'newman:', 'come', 'on', '||comma||', 'are', 'you', 'ready', '||questionmark||', "let's", 'go', '||exclammark||', '||return||', '||return||', 'kramer:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'newman:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'i', 'just', 'talked', 'to', 'you', 'fifteen', 'minutes', 'ago', '||period||', '||return||', '||return||', 'kramer:', 'what', 'about', '||questionmark||', '||return||', '||return||', 'newman:', 'the', 'courthouse', '||period||', 'you', 'gotta', 'go', 'with', 'me', 'to', 'the', 'courthouse', '||period||', "i'm", 'contesting', 'a', 'ticket', 'today', '||period||', '||return||', '||return||', 'kramer:', 'i', "can't", '||comma||', "i'm", 'going', 'to', 'the', "doctor's", 'later', '||period||', '||return||', '||return||', 'newman:', 'you', 'gotta', 'go', 'with', 'me', '||period||', 'i', 'mean', '||comma||', 'you', '||dash||', "you're", 'my', 'alibi', '||period||', 'you', 'have', 'to', 'take', 'the', 'stand', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "can't", '||exclammark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'let', 'me', 'remind', 'you', 'of', 'something', '||period||', 'you', "wouldn't", 'be', 'here', 'if', 'it', "wasn't", 'for', 'me', 'and', 'my', 'helmet', '||period||', 'i', 'saved', 'your', 'life', '||exclammark||', 'you', 'would', 'be', 'dead', '||exclammark||', 'dead', '||exclammark||', 'you', 'would', 'cease', 'to', 'exist', '||exclammark||', 'you', 'would', 'be', 'gone', 'for', 'the', 'rest', 'of', 'eternity', '||exclammark||', 'you', "wouldn't", 'even', 'begin', 'to', 'comprehend', 'what', 'that', 'means', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'shut', 'up', '||exclammark||', "i'll", 'get', 'my', 'coat', '||exclammark||', '||return||', '||return||', 'kramer:', "don't", 'step', 'on', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'you', 'see', 'the', 'look', 'on', 'my', "uncle's", 'face', '||questionmark||', 'did', 'you', 'see', 'how', 'insulted', 'he', 'was', '||questionmark||', 'what', 'could', 'i', 'do', '||questionmark||', 'waht', 'are', 'we', 'supposed', 'to', 'do', '||questionmark||', 'you', "can't", 'leave', '||period||', "there's", 'no', 'excuse', 'good', 'enough', 'to', 'justify', 'walking', 'away', 'from', 'a', 'conversation', 'with', 'one', 'of', 'my', 'relatives', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'shave', 'this', 'morning', '||period||', 'i', "don't", 'feel', 'like', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'you', 'could', 'be', 'a', 'fireman', 'on', 'a', 'fire', 'truck', 'on', 'the', 'way', 'to', 'a', 'fire', '||period||', 'you', 'bump', 'into', 'one', 'of', 'my', 'relatives', '||period||', "'i'm", 'sorry', 'uncle', 'leo', '||comma||', "there's", 'a', 'building', 'full', 'of', 'people', 'burning', 'down', '||period||', 'i', 'really', 'do', 'have', 'to', 'be', 'running', '||period||', "'", "he'll", 'go', "'go", '||period||', 'go', 'ahead', '||period||', 'go', 'to', 'your', 'fancy', 'fire', '||period||', 'if', "that's", 'what', 'you', 'have', 'to', 'do', '||period||', "'", '||return||', '||return||', 'george:', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'shave', 'this', 'morning', '||questionmark||', '||return||', '||return||', 'george:', "'cause", 'i', 'shaved', 'yesterday', 'in', 'the', 'afternoon', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'of', 'the', 'day', 'before', '||period||', "it's", 'a', 'long', 'story', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'joe', 'davola', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'not', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'live', 'tlike', 'this', '||period||', "i'm", 'being', 'stalked', '||period||', '||return||', '||return||', 'receptionist:', 'mister', 'seinfeld', '||questionmark||', "they're", 'ready', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'george:', 'mister', 'seinfeld', '||questionmark||', 'what', 'about', 'mister', 'costanza', '||questionmark||', "i'm", 'not', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'look', '||period||', 'now', '||comma||', 'you', 'promised', "you're", 'gonna', 'be', 'a', 'little', 'more', 'flexible', 'on', 'the', 'nothing', 'idea', '||comma||', 'okay', '||questionmark||', 'jsut', 'a', 'little', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', 'a', 'little', '||period||', '||return||', '||return||', 'newman:', 'okay', '||comma||', "you're", 'all', 'set', '||questionmark||', 'you', 'got', 'your', 'story', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'newman:', 'when', 'the', 'cop', 'stopped', 'me', '||comma||', 'i', 'told', 'him', 'that', 'i', 'was', 'rushing', 'home', 'because', 'my', 'friend', 'was', 'about', 'to', 'commit', 'suicide', '||period||', '||return||', '||return||', 'kramer:', 'uhm', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'now', '||comma||', "you're", 'that', 'firend', '||period||', 'now', '||comma||', 'all', 'we', 'need', 'is', 'a', 'reason', 'why', 'you', 'were', 'going', 'to', 'commit', 'suicide', '||period||', '||return||', '||return||', 'kramer:', 'i', 'never', 'had', 'an', 'air', 'conditioner', '||period||', '||return||', '||return||', 'newman:', 'no', '||exclammark||', "that's", 'no', 'reason', 'to', 'kill', 'yourself', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', 'it', 'gets', 'hot', 'at', 'night', '||comma||', 'you', "can't", 'sleep', '||period||', 'you', 'ever', 'tried', 'to', 'sleep', 'in', 'a', 'really', 'hot', 'room', '||questionmark||', '||return||', '||return||', 'newman:', 'every', 'night', 'i', 'sleep', 'in', 'a', 'really', 'hot', 'room', '||comma||', 'i', "don't", 'want', 'to', 'kill', 'myself', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'slept', 'in', 'really', 'hot', 'rooms', 'and', 'i', 'wanted', 'to', 'kill', 'myself', '||period||', '||return||', '||return||', 'newman:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "that's", 'not', 'gonna', 'work', '||period||', 'something', 'else', '||period||', '||return||', '||return||', 'kramer:', 'i', 'was', 'never', 'able', 'to', 'become', 'a', 'banker', '||period||', '||return||', '||return||', 'newman:', 'banker', '||exclammark||', 'so', "you're", 'killing', 'yourself', 'because', 'your', 'dreams', 'of', 'becoming', 'a', 'banker', 'have', 'gone', 'unfulfilled', '||period||', 'you', '||dash||', 'you', '||dash||', 'you', '||dash||', 'you', "can't", 'live', 'without', 'being', 'a', 'banker', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'if', 'i', "can't", 'be', 'banker', '||comma||', 'i', "don't", 'wanna', 'live', '||period||', '||return||', '||return||', 'newman:', 'you', 'must', 'be', 'banker', '||period||', '||return||', '||return||', 'kramer:', 'must', 'be', 'banker', '||period||', '||return||', '||return||', 'newman', '||leftparen||', 'satisfied', '||rightparen||', ':', 'okay', '||comma||', "we'll", 'go', 'with', 'the', 'banker', 'story', '||period||', '||return||', '||return||', 'george:', 'the', 'story', 'is', 'the', 'foundation', 'of', 'all', 'entertainment', '||period||', 'you', 'must', 'have', 'a', 'good', 'story', 'otherwise', "it's", 'just', 'masturbation', '||period||', '||return||', '||return||', 'russel:', 'and', 'people', 'really', 'have', 'to', 'care', 'about', 'the', 'characters', '||period||', '||return||', '||return||', 'george:', 'care', '||questionmark||', 'forget', 'about', 'care', '||period||', 'love', '||period||', 'they', 'have', 'to', 'love', 'the', 'characters', '||period||', 'otherwise', '||comma||', 'why', 'would', 'they', 'keep', 'tuning', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', "wouldn't", 'tune', 'in', '||period||', '||return||', '||return||', 'george:', 'would', 'they', 'tune', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'tune', '||period||', '||return||', '||return||', 'russel:', 'we', 'like', 'to', 'look', 'at', 'the', 'show', 'as', 'if', 'it', 'were', 'in', 'ekg', '||period||', 'you', 'have', 'your', 'highs', 'and', 'your', 'lows', 'and', 'it', 'goes', 'up', 'and', 'down', '||period||', '||return||', '||return||', 'george:', 'the', 'show', 'will', 'be', 'like', 'a', 'heart', 'attack', '||exclammark||', '||return||', '||return||', 'jerry:', 'just', 'a', 'huge', 'massive', 'coronary', '||period||', '||return||', '||return||', 'russel:', 'so', 'what', 'you', 'said', 'last', 'week', 'about', 'no', 'story', '||comma||', "you're", 'a', 'little', 'flexible', 'on', 'that', 'now', '||period||', '||return||', '||return||', 'george:', 'is', '||dash||', 'is', 'that', 'what', 'i', 'said', "'no", "story'", '||questionmark||', 'because', 'jerry', 'had', 'to', 'tell', 'me', 'later', '||period||', '||return||', '||return||', 'jerry:', 'he', "couldn't", 'believe', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||comma||', 'snorts', '||rightparen||', 'i', 'said', '||comma||', 'i', 'said', "'get", 'outta', 'here', '||exclammark||', 'no', 'story', '||questionmark||', 'is', 'that', 'what', 'i', 'said', '||questionmark||', "'", '||return||', '||return||', 'police', 'officer:', 'well', '||comma||', 'i', 'informed', 'him', 'that', 'he', 'was', 'exceeding', 'the', 'speed', 'limit', 'and', 'uh', '||comma||', "that's", 'when', 'he', 'told', 'me', 'that', 'he', 'was', 'racing', 'home', 'because', 'his', 'friend', 'was', 'about', 'to', 'commit', 'suicide', '||period||', '||return||', '||return||', 'judge:', 'and', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'police', 'officer:', 'well', '||comma||', 'then', 'he', 'became', 'very', 'loud', 'and', 'hysterical', '||period||', 'he', 'was', 'flailing', 'his', 'arms', 'about', 'as', 'he', 'told', 'the', 'story', 'and', 'then', 'he', 'threw', 'himself', 'on', 'the', 'ground', 'and', 'he', 'grabbed', 'me', 'around', 'the', 'legs', 'and', 'then', 'he', 'begged', 'me', 'to', 'let', 'him', 'go', '||period||', 'and', 'when', 'i', 'refused', '||comma||', "that's", 'when', 'he', 'began', 'to', 'scream', "'my", "friend's", 'going', 'to', 'die', '||comma||', 'my', "friend's", 'going', 'to', 'die', '||period||', "'", '||return||', '||return||', 'russel:', 'look', '||period||', 'i', "don't", 'know', 'how', 'you', 'two', 'guys', 'feel', 'but', 'we', 'would', 'really', 'like', 'to', 'be', 'in', 'business', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'we', 'would', 'like', 'to', 'be', 'in', 'business', '||period||', "let's", 'do', 'business', '||period||', "we'll", 'have', 'some', 'business', '||period||', "let's", 'have', 'business', '||period||', '||return||', '||return||', 'jerry:', 'we', 'would', 'love', 'to', 'be', 'in', 'business', '||period||', "we'll", 'do', 'business', '||period||', "we're", 'in', 'business', '||period||', "it's", '||period||', '||period||', '||period||', "it's", 'business', '||period||', 'this', 'is', 'business', '||period||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', '||return||', '||return||', 'stu:', 'would', 'it', 'be', 'possible', 'to', 'get', 'a', '||dash||', 'a', '||dash||', 'a', 'copy', 'of', "'la", "cocina'", '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'off', '||dash||', 'broadway', 'play', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'oh', '||period||', 'uh', '||comma||', 'you', 'know', '||period||', "it's", 'the', 'damndest', 'thing', '||period||', 'i', '||comma||', 'uh', '||comma||', 'i', 'moved', 'recently', 'and', 'my', 'files', '||comma||', 'pfff', '||comma||', 'disappeared', '||period||', 'now', '||comma||', 'i', '||dash||', 'i', "don't", 'know', 'if', 'they', 'fell', 'off', 'the', 'truck', 'or', 'if', 'there', 'was', 'some', 'sort', 'of', 'foul', 'play', 'but', 'let', 'me', 'tell', 'you', 'something', '||period||', "i'm", 'not', 'through', 'with', 'that', 'moving', 'company', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'backs', 'his', 'story', '||rightparen||', 'hmm', '||comma||', 'hmm', '||period||', '||return||', '||return||', 'george:', "that's", 'my', 'vow', 'to', 'you', '||period||', '||return||', '||return||', 'russel:', 'well', '||comma||', 'i', 'got', 'a', 'feeling', 'about', 'you', 'two', '||period||', 'and', 'even', 'more', 'than', 'that', '||period||', 'i', 'place', 'a', 'great', 'deal', 'of', 'confidence', 'in', 'that', "lady's", 'judgment', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', "that's", 'good', 'judgment', '||period||', "that's", 'a', 'pile', 'of', 'judgment', 'there', '||period||', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', "taht's", 'judgment', '||period||', 'yes', '||comma||', 'yes', '||period||', 'judgment', 'with', 'earrings', 'on', '||period||', 'yeah', '||period||', '||return||', '||return||', 'russel:', '||leftparen||', 'gets', 'up', '||rightparen||', 'so', '||comma||', "let's", 'make', 'a', 'pilot', '||period||', '||return||', '||return||', 'newman:', 'i', 'had', 'gone', 'up', 'to', 'westchester', '||period||', 'i', 'go', 'there', 'every', 'tuesday', '||period||', 'i', 'do', 'charity', 'for', 'the', 'blind', 'in', 'my', 'spare', 'time', 'for', 'the', 'lighthouse', '||period||', 'i', 'was', 'in', 'the', 'middle', 'of', 'a', 'game', 'of', 'parcheesi', 'with', 'an', 'old', 'blind', 'man', 'and', 'i', 'excused', 'myself', 'to', 'call', 'my', 'friend', 'as', 'he', 'was', 'very', 'depressed', 'lately', 'because', 'he', 'never', 'became', 'a', 'banker', '||period||', '||return||', '||return||', 'judge:', 'i', "don't", 'understand', '||period||', '||return||', '||return||', 'newman:', 'you', 'see', '||comma||', "it'd", 'been', 'his', 'lifelong', 'dream', 'to', 'be', 'a', 'banker', 'and', 'he', 'uh', '||comma||', 'just', 'the', 'day', 'before', 'he', 'was', 'turned', 'down', 'by', 'another', 'bank', '||period||', 'i', 'believe', 'it', 'was', 'the', "manufacturer's", 'hanover', 'on', 'lexington', 'and', '40th', 'street', '||period||', 'that', 'was', 'the', 'third', 'bank', 'to', 'turn', 'him', 'down', 'so', 'i', 'was', '||dash||', 'i', 'was', 'a', 'little', 'concerned', '||period||', 'i', 'wanted', 'to', 'see', 'how', 'he', 'was', 'doing', '||period||', 'well', '||comma||', 'your', 'honor', '||comma||', 'he', 'was', 'barely', 'audible', '||period||', 'but', 'i', 'distinctly', 'recall', 'him', 'say', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interupts', 'involuntarily', '||rightparen||', 'yo', '||dash||', 'yo', 'ma', '||exclammark||', '||return||', '||return||', 'newman:', 'so', 'i', 'sped', 'home', 'to', 'save', 'my', "friend's", 'life', 'and', 'i', 'was', 'stopped', 'for', 'speeding', '||period||', 'yes', '||comma||', 'i', 'admit', 'i', 'was', 'speeding', 'but', 'it', 'was', 'to', 'save', 'a', "man's", 'life', '||period||', 'a', 'close', 'friend', '||period||', 'an', 'innocent', 'person', 'who', 'wanted', 'nothing', 'more', 'out', 'of', 'life', 'than', 'to', 'love', '||comma||', 'to', 'be', 'loved', 'and', 'to', 'be', 'a', 'banker', '||period||', '||return||', '||return||', 'judge:', 'so', 'then', 'he', "didn't", 'kill', 'himself', '||period||', '||return||', '||return||', 'newman:', 'no', 'sir', '||period||', 'he', 'did', 'not', '||period||', 'but', 'only', 'by', 'thge', 'grace', 'of', 'god', '||period||', "he's", 'in', 'the', 'courtroom', 'today', '||return||', '||return||', 'george:', 'see', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'told', 'you', '||comma||', 'i', 'told', 'you', '||exclammark||', 'ha', 'ha', 'ha', '||exclammark||', 'ooh', 'ooh', '||exclammark||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'all', 'we', 'gotta', 'do', 'is', 'write', 'it', '||period||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', "how're", 'we', 'gonna', 'do', 'that', '||questionmark||', '||return||', '||return||', 'susan:', 'hey', '||exclammark||', 'congratulations', '||exclammark||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'george:', 'thanks', '||period||', 'gee', '||comma||', 'you', 'know', '||comma||', 'i', 'thought', 'you', 'were', 'mad', 'at', 'me', '||period||', '||return||', '||return||', 'susan:', 'no', '||period||', '||return||', '||return||', 'receptionist:', 'mister', 'seinfeld', '||comma||', 'you', 'have', 'a', 'phone', 'call', '||period||', '||return||', '||return||', 'jerry:', 'phone', 'call', '||questionmark||', 'who', 'knows', "i'm", 'here', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'you', 'sent', 'me', 'the', '||dash||', 'the', 'bill', 'for', 'the', 'dry', '||dash||', 'cleaning', '||period||', 'i', 'thought', 'the', 'show', "didn't", 'have', 'a', 'chance', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'it', 'was', 'only', 'vomit', '||period||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'i', '||dash||', 'i', 'would', 'like', 'to', '||dash||', 'to', 'pay', 'for', 'the', 'cleaning', '||period||', '||return||', '||return||', 'susan:', 'oh', 'no', '||dash||', 'no', '||comma||', "it's", 'okay', '||period||', '*comment', 'from', 'transcriber', 'yeah', '||comma||', 'she', "doesn't", 'want', 'to', 'be', 'paid', '||comma||', "didn't", 'she', 'send', 'the', 'bill', '||questionmark||', '*', '||return||', '||return||', 'george:', 'no', '||dash||', 'no', '||dash||', 'no', '||comma||', 'we', 'all', 'chipped', 'in', '||period||', 'we', 'have', 'the', 'money', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'it', 'was', 'eighteen', 'dollars', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'uh', '||comma||', 'eighteen', 'dollars', '||comma||', 'and', 'there', 'it', 'is', '||period||', 'there', 'you', 'go', '||period||', 'so', 'maybe', 'we', 'could', 'get', 'together', 'this', 'weekend', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||period||', 'call', 'me', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'great', '||period||', '||return||', '||return||', 'susan:', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'bye', 'thanks', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'chuckles', '||rightparen||', 'bye', '||comma||', 'thanks', '||period||', '||leftparen||', 'to', 'jerry', '||comma||', 'when', 'susan', 'is', 'far', '||rightparen||', 'i', "can't", 'believe', 'she', 'took', 'the', 'money', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'offered', 'to', 'pay', '||period||', 'she', "should've", 'said', 'no', '||period||', '||return||', '||return||', 'jerry:', 'she', 'did', '||comma||', 'you', 'insisted', '||period||', '||return||', '||return||', 'george:', 'maybe', 'this', 'is', 'what', 'the', 'pilot', 'should', 'be', 'about', '||comma||', 'vomiting', 'on', "somebody's", 'vest', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'much', 'are', 'we', 'gonna', 'get', 'for', 'this', '||questionmark||', 'fifty', '||comma||', 'sixty', 'thousand', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'd', '||dash||', 'i', "don't", 'know', '||period||', 'i', 'd', '||dash||', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'gotta', 'get', 'fifty', '||period||', 'gotta', 'get', 'fifty', '||period||', 'all', 'right', '||comma||', 'i', 'tell', 'you', 'what', '||period||', 'we', 'go', 'to', 'the', 'coffee', 'shop', '||comma||', 'you', 'call', 'your', 'manager', '||period||', 'maybe', 'they', 'made', 'an', 'offer', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||comma||', 'pushing', 'jerry', 'forward', '||rightparen||', 'all', 'right', '||comma||', "let's", 'go', '||comma||', "let's", 'go', '||comma||', "let's", 'go', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'thirteen', 'thousand', '||questionmark||', '||return||', '||return||', 'jerry:', 'thirteen', 'thousand', '||period||', '||return||', '||return||', 'george:', 'a', 'piece', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'for', 'both', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'insulting', '||exclammark||', 'ted', 'danson', 'makes', 'eight', 'hundred', 'thousand', 'dollars', 'an', 'episode', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'would', 'you', 'stop', 'with', 'the', 'ted', 'danson', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'he', 'does', '||period||', '||return||', '||return||', 'jerry:', "you're", 'nuts', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'sorry', '||period||', 'i', "can't", 'live', 'knowing', 'ted', 'danson', 'makes', 'that', 'much', 'more', 'than', 'me', '||period||', 'who', 'is', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'somebody', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'nobody', '||period||', '||return||', '||return||', 'george:', 'why', 'him', '||questionmark||', 'why', 'not', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'good', '||comma||', "you're", 'not', '||period||', '||return||', '||return||', 'george:', "i'm", 'better', 'than', 'him', '||period||', '||return||', '||return||', 'jerry:', "you're", 'worse', '||comma||', 'much', 'much', 'worse', '||period||', '||leftparen||', 'crouches', 'in', 'booth', '||rightparen||', "that's", 'davola', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'crouches', 'too', '||rightparen||', 'what', '||questionmark||', 'where', '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'outside', '||exclammark||', 'i', 'saw', 'him', 'outside', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'boyfriend:', 'oh', '||comma||', "it's", 'this', 'patient', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighing', '||rightparen||', 'again', '||questionmark||', '||return||', '||return||', 'boyfriend:', "i'm", 'fairly', 'certain', '||period||', 'i', 'forgot', 'to', 'leave', 'him', 'an', 'extra', 'prescription', 'for', 'his', 'medication', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'so', '||comma||', 'he', 'can', 'live', 'without', 'his', 'valium', 'for', 'a', 'couple', 'of', 'days', '||period||', '||return||', '||return||', 'boyfriend:', 'nah', '||comma||', 'you', "don't", 'understand', '||period||', 'he', 'could', 'be', 'dangerous', '||period||', '||return||', '||return||', 'jerry:', 'go', 'outside', 'and', 'see', 'if', "he's", 'still', 'there', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'go', 'out', 'there', '||comma||', 'he', 'knows', "we're", 'friends', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'are', 'we', 'supposed', 'to', 'do', '||questionmark||', 'i', 'gotta', 'take', 'kramer', 'to', 'the', 'doctor', '||period||', '||return||', '||return||', 'george:', 'tell', 'the', 'cop', '||period||', '||return||', '||return||', 'jerry:', 'good', 'idea', '||period||', '||return||', '||return||', 'cop:', 'yeah', '||comma||', 'all', 'right', '||period||', 'just', 'let', 'me', 'get', 'a', 'muffin', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'back', 'in', 'booth', '||rightparen||', "he's", 'gonna', 'get', 'a', 'muffin', 'and', 'then', "he'll", 'walk', 'us', 'outside', '||period||', 'this', 'is', 'a', 'great', 'way', 'to', 'go', 'through', 'life', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'you', 'said', 'he', 'was', 'gonna', 'get', 'a', 'muffin', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bossy', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'cop:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'are', 'you', 'ordering', 'food', 'now', '||questionmark||', '||return||', '||return||', 'cop:', 'yeah', '||exclammark||', 'yeah', '||comma||', 'i', 'decided', 'to', 'get', 'a', 'sandwich', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'the', 'muffin', '||questionmark||', '||return||', '||return||', 'cop:', 'i', 'got', 'a', 'little', 'hungry', '||period||', '||return||', '||return||', 'jerry:', 'all', 'of', 'a', 'sudden', 'you', 'get', 'hungry', '||questionmark||', '||return||', '||return||', 'cop:', 'yeah', '||exclammark||', 'you', 'got', 'a', 'problem', 'with', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'enjoy', 'your', 'lunch', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'he', 'was', 'just', 'gonna', 'have', 'a', 'muffin', '||period||', '||return||', '||return||', 'jerry:', 'all', 'of', 'a', 'sudden', 'he', 'gets', 'hungry', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'a', 'muffin', 'can', 'be', 'very', 'filling', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'interrogating', 'kramer', '||rightparen||', 'mister', 'kramer', '||comma||', 'you', 'heard', 'the', 'testimony', 'so', 'far', '||period||', 'would', 'you', 'please', 'tell', 'the', 'court', 'in', 'your', 'own', 'words', 'what', 'happened', 'on', 'the', 'afternoon', 'of', 'september', '10th', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', "'my", 'own', "words'", '||questionmark||', 'whose', 'words', 'are', 'they', 'gonna', 'be', '||questionmark||', '||return||', '||return||', 'newman:', 'you', 'know', 'what', 'i', 'mean', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'judge', '||rightparen||', 'i', 'was', 'very', 'upset', 'that', 'day', '||period||', '||return||', '||return||', 'newman:', 'and', 'why', 'was', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'newman', '||rightparen||', 'would', 'you', 'let', 'me', 'say', 'it', '||questionmark||', 'let', 'me', 'talk', '||exclammark||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'go', 'ahead', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', '||return||', '||return||', 'newman:', 'okay', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'judge', '||rightparen||', 'i', 'was', 'very', 'upset', 'that', 'day', 'because', 'i', 'could', 'never', 'become', 'a', 'banker', '||period||', '||return||', '||return||', 'newman:', 'and', 'that', 'failure', 'to', 'become', 'a', 'banker', 'was', 'eating', 'at', 'you', '||period||', 'eating', '||dash||', 'eating', '||dash||', 'eating', 'at', 'you', 'inside', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'not', 'convincing', '||rightparen||', 'uh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'newman:', 'it', 'was', 'your', 'family', 'that', 'pushed', 'you', 'into', 'banking', '||comma||', 'it', 'was', 'their', 'dream', 'for', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'judge:', 'mister', 'newman', '||period||', '||return||', '||return||', 'newman:', 'your', 'honor', '||comma||', "i'm", 'only', 'trying', 'to', 'establish', 'mister', "kramer's", 'fragile', 'emotional', 'state', '||comma||', 'my', 'entire', 'case', 'depends', 'on', 'it', '||period||', '||return||', '||return||', 'judge:', 'uh', '||comma||', 'continue', '||period||', '||return||', '||return||', 'newman:', 'as', 'you', 'were', 'saying', '||comma||', 'mister', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', 'was', 'the', 'question', '||questionmark||', '||return||', '||return||', 'newman:', "you're", 'telling', 'how', 'your', 'parents', 'pushed', 'you', 'into', 'banking', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', '||comma||', 'my', 'father', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'he', 'took', 'me', 'to', 'the', 'bank', 'and', 'he', 'lifted', 'me', 'up', 'and', 'he', 'pointed', 'to', 'the', 'teller', 'and', 'he', 'said', "'sonny", 'boy', '||comma||', 'take', 'a', 'good', 'look', 'at', 'him', '||comma||', "that's", 'gonna', 'be', 'you', 'some', 'day', '||period||', "'", '||return||', '||return||', 'newman:', 'but', 'you', 'never', 'became', 'a', 'banker', '||comma||', 'did', 'you', 'mister', 'kramer', '||questionmark||', 'why', '||questionmark||', 'why', 'did', 'you', 'fail', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'newman:', 'it', 'was', 'because', 'you', 'hated', 'your', 'father', 'and', 'you', 'would', 'do', 'anything', 'to', 'displease', 'him', '||period||', "isn't", 'that', 'true', '||questionmark||', '||return||', '||return||', 'judge:', 'uh', '||comma||', 'could', 'you', 'get', 'to', 'the', 'speeding', '||questionmark||', '||return||', '||return||', 'newman:', 'yuh', '||comma||', 'yes', '||period||', 'i', 'intend', 'to', 'your', 'honor', '||period||', 'and', 'then', '||comma||', 'on', 'the', 'afternoon', 'of', 'september', '10th', '||comma||', 'you', 'received', 'a', 'phone', 'call', 'did', 'you', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'puzzled', '||rightparen||', 'phone', 'call', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'a', 'phone', 'call', '||exclammark||', '||return||', '||return||', 'kramer:', 'from', 'who', '||questionmark||', '||return||', '||return||', 'newman:', 'from', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'from', 'you', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'from', 'me', '||exclammark||', '||exclammark||', 'i', 'called', 'you', 'remember', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'called', 'me', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'i', 'called', 'you', '||comma||', 'you', 'idiot', '||exclammark||', 'because', 'you', 'were', 'going', 'to', '||period||', '||period||', '||period||', 'you', 'were', 'going', 'to', '||period||', '||period||', '||period||', 'remember', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'you', 'were', 'going', 'to', '||period||', '||period||', '||period||', '||return||', '||return||', 'judge:', "i'm", 'afraid', "i'm", 'gonna', 'have', 'to', 'call', 'a', '||dash||', '||dash||', '||dash||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'the', 'banker', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'banking', '||questionmark||', '||return||', '||return||', 'newman:', 'a', 'banker', '||exclammark||', 'a', 'banker', '||exclammark||', 'your', 'honor', '||comma||', 'your', 'honor', '||comma||', 'your', 'honor', '||period||', '||period||', '||period||', '||return||', '||return||', 'judge:', "that's", 'enough', 'already', '||period||', '||return||', '||return||', 'newman:', 'your', 'honor', '||comma||', 'mister', "kramer's", 'obviously', 'very', 'distraught', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'distraught', '||exclammark||', '||questionmark||', '||exclammark||', 'wooh', '||dash||', 'wooh', '||dash||', 'hoo', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'shut', 'up', '||exclammark||', '||leftparen||', 'to', 'judge', '||rightparen||', 'i', 'demand', 'a', 'recess', 'so', 'i', 'can', 'take', 'him', 'outside', 'and', 'help', 'him', 'regain', 'hius', 'composure', '||period||', '||return||', '||return||', 'judge:', "that'll", 'be', 'seventy', '||dash||', 'five', 'dollars', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'strangling', 'kramer', '||rightparen||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'we', 'had', 'it', 'all', 'worked', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'see', 'him', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'not*', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'either', 'you', 'see', 'him', 'or', 'you', "don't", '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'i', "don't", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'the', 'cop', '||rightparen||', 'what', 'is', 'he', 'doing', '||questionmark||', 'is', 'he', 'getting', 'coffee', '||questionmark||', 'i', 'think', "he's", 'getting', 'coffee', '||period||', '||exclammark||', '||return||', '||return||', 'george:', "what's", 'with', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'bossy', '||rightparen||', 'did', 'you', 'just', 'order', 'coffee', '||questionmark||', '||return||', '||return||', 'cop:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'really', 'too', 'much', '||period||', '||return||', '||return||', 'cop:', 'what', 'is', 'your', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'sitting', 'over', 'there', 'waiting', 'for', 'you', 'to', 'finish', 'your', 'sandwich', 'for', 'twenty', 'minutes', '||period||', 'now', "you're", 'drinking', 'coffee', '||comma||', "that's", 'gonna', 'be', 'another', 'ten', 'minutes', '||period||', '||return||', '||return||', 'cop:', 'well', '||comma||', "you're", 'just', 'gonna', 'have', 'to', 'wait', '||period||', '||return||', '||return||', 'kramer:', 'never', 'said', 'anything', 'about', 'the', 'banking', '||period||', '||return||', '||return||', 'newman:', "you're", 'off', 'your', 'rocker', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'you', 'guys', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'is', 'davola', 'outside', '||questionmark||', '||return||', '||return||', 'kramer:', 'davola', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', "didn't", 'see', 'him', '||period||', '||return||', '||return||', 'newman:', 'crazy', 'joe', 'davola', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'reading', 'the', 'tabs', '||rightparen||', 'jerry', '||comma||', 'yours', 'is', 'eleven', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'eleven', 'dollars', 'for', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'muffin', '||comma||', 'sandwich', 'and', 'coffee', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||comma||', 'nbc', 'okayed', 'our', 'idea', '||period||', "we're", 'gonna', 'make', 'the', 'pilot', '||period||', '||return||', '||return||', 'kramer:', "you're", 'gonna', 'do', 'the', 'circus', 'freak', 'show', '||comma||', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'newman:', 'pilot', '||questionmark||', 'so', 'what', 'do', 'you', 'make', 'for', 'something', 'like', 'that', '||questionmark||', 'fifty', '||questionmark||', 'sixty', 'thousand', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'the', 'difference', '||questionmark||', 'the', 'money', 'is', 'not', 'important', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'outside', '||rightparen||', 'hey', 'newman', '||comma||', 'is', 'that', 'your', 'red', 'car', '||questionmark||', '||return||', '||return||', 'newman:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "you're", 'getting', 'a', 'ticket', '||period||', '||return||', '||return||', 'newman:', 'deh', '||exclammark||', '||return||', '||return||', 'kramer:', 'run', '||comma||', 'run', '||exclammark||', 'go', '||comma||', 'go', '||comma||', 'go', '||exclammark||', '||return||', '||return||', 'newman:', 'hey', '||exclammark||', 'what', 'are', 'you', 'doing', '||questionmark||', "it's", 'after', 'six', "o'clock", '||exclammark||', 'you', "can't", 'give', 'me', 'a', 'ticket', '||exclammark||', 'hey', '||comma||', "you're", 'not', 'gonna', 'get', 'away', 'with', 'this', '||period||', "i'll", 'fight', 'this', '||period||', 'i', 'got', 'witnesses', '||period||', '||return||', '||return||', 'kramer:', 'i', 'saw', 'the', 'whole', 'thing', '||exclammark||', '||return||', '||return||', 'jerry:', 'maybe', 'this', 'whole', 'thing', 'would', 'be', 'a', 'good', 'idea', 'for', 'the', 'pilot', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'get', 'outta', 'here', '||period||', 'the', 'vomiting', 'is', 'much', 'funnier', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'like', 'you', 'know', 'what', "you're", 'talking', 'about', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'do', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'george', 'and', 'i', 'went', 'up', 'to', 'nbc', 'and', 'we', 'told', 'them', 'the', 'idea', 'for', 'a', 'series', 'now', "we're", 'just', 'waiting', 'to', 'sign', 'the', 'contract', '||period||', '||return||', '||return||', 'helen:', 'and', 'they', 'liked', 'the', 'idea', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'morty:', "what'ya", 'got', 'leather', 'seats', 'here', '||questionmark||', '||return||', '||return||', 'helen:', 'since', 'when', 'is', 'george', 'a', 'writer', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'writer', '||questionmark||', "it's", 'a', 'sitcom', '||period||', '||return||', '||return||', 'helen:', 'this', 'is', 'so', 'exciting', '||period||', 'when', 'are', 'you', 'going', 'to', 'sign', 'the', 'contract', '||questionmark||', '||return||', '||return||', 'jerry:', 'soon', '||comma||', "there's", 'a', 'couple', 'of', 'problems', '||period||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', 'i', 'wanna', 'tell', 'you', 'that', 'meal', 'was', 'the', 'worst', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'expect', '||questionmark||', "it's", 'airline', 'food', '||period||', '||return||', '||return||', 'morty:', 'they', 'give', 'you', 'that', '*fish', '||period||', '*', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'eat', 'fish', 'on', 'a', 'plane', '||questionmark||', '||return||', '||return||', 'morty:', 'because', 'she', 'puts', 'up', 'such', 'a', 'big', 'stink', 'every', 'time', 'i', 'have', 'a', 'piece', 'of', 'meat', '||period||', '||return||', '||return||', 'helen:', 'what', 'kind', 'of', 'problems', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'george', "doesn't", 'think', '$13', '||comma||', '000', 'is', 'enough', 'money', '||period||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', "he's", 'not', 'even', 'working', '||period||', '||return||', '||return||', 'morty:', 'george', 'is', 'right', '||period||', 'those', 'people', 'will', 'try', 'to', 'get', 'away', 'with', 'murder', '||period||', 'believe', 'me', '||period||', "they're", 'all', 'crooks', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'i', 'want', 'you', 'to', 'sign', 'that', 'contract', '||period||', '||return||', '||return||', 'jerry:', "we're", 'going', 'to', 'sign', 'it', '||period||', "we're", 'going', 'to', 'sign', 'it', '||period||', 'in', 'fact', 'george', 'is', 'out', 'with', 'the', 'woman', 'from', 'nbc', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "i'm", 'uh', '||comma||', "i'm", 'afraid', "we're", 'going', 'to', 'have', 'to', 'pass', '||period||', '||return||', '||return||', 'susan:', 'yu', '||dash||', "you're", 'passing', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", '||period||', '||period||', '||period||', 'much', 'too', 'low', '||period||', '||return||', '||return||', 'susan:', 'are', 'you', 'and', 'jerry', 'in', 'complete', 'agreement', 'on', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'tsh', '||leftparen||', 'snorts', '||rightparen||', 'ah', '||comma||', 'yeah', '||comma||', "we've", '||dash||', "we've", 'talked', '||period||', '||period||', '||period||', 'i', 'believe', 'i', 'can', 'speak', 'for', 'the', 'both', 'of', 'us', 'on', 'this', '||period||', '||return||', '||return||', 'susan:', 'well', 'be', '||dash||', 'because', 'you', 'know', 'that', '||comma||', 'because', 'this', 'is', 'your', 'first', 'show', "it's", 'a', 'pretty', 'standard', 'deal', '||period||', '||return||', '||return||', 'george:', 'standard', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'is', 'ted', "danson's", 'deal', 'standard', '||questionmark||', '||return||', '||return||', 'susan:', 'ted', 'danson', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'the', 'guy', 'from', 'cheers', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'i', 'know', 'who', 'he', 'is', '||period||', '||leftparen||', 'laughs', '||rightparen||', "you're", 'not', 'ted', 'danson', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'say', 'i', 'was', 'ted', 'danson', '||period||', '||return||', '||return||', 'susan:', 'all', 'right', '||comma||', "i'll", 'tell', 'russell', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'you', 'tell', 'russell', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'um', '||comma||', 'before', 'i', 'forget', '||comma||', '||period||', '||period||', '||period||', 'cuban', 'cigars', '||period||', "it's", 'a', 'present', 'from', 'my', 'father', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', 'do', 'i', 'have', 'to', 'write', 'him', 'a', 'note', 'or', 'something', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'i', 'am', 'sure', "he'd", 'appreciated', 'that', '||period||', '||return||', '||return||', 'george:', 'well', 'what', 'would', 'i', 'say', 'in', 'the', 'note', '||questionmark||', '||return||', '||return||', 'susan:', 'ah', '||comma||', "you're", 'a', 'writer', '||period||', "you'll", 'think', 'of', 'something', '||period||', '||return||', '||return||', 'george:', 'oh', '||dash||', 'ohf', '||leftparen||', 'snorts', '||rightparen||', 'yeah', '||comma||', "i'm", 'a', 'writer', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'helen:', 'were', 'you', 'waiting', 'long', 'at', 'the', 'gate', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'i', "don't", 'even', 'know', '||questionmark||', '||return||', '||return||', 'helen:', "where's", 'that', 'watch', 'we', 'bought', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "that's", 'enough', 'with', 'this', 'piece', 'of', 'junk', "i've", 'had', 'it', '||period||', '||leftparen||', 'throws', 'watch', 'in', 'garbage', '||rightparen||', '||return||', '||return||', 'george:', 'wha', '||dash||', 'is', 'that', 'the', 'one', 'your', 'parents', 'gave', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'it', 'never', 'works', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', "it's", 'uh', '||comma||', 'being', 'fixed', '||period||', '||return||', '||return||', 'morty:', 'i', 'got', 'a', 'guarantee', 'on', 'that', 'watch', '||period||', 'give', 'it', 'to', 'me', '||comma||', "i'll", 'take', 'it', 'back', 'to', 'where', 'we', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', "it's", 'at', 'the', 'jeweler', '||period||', '||return||', '||return||', 'morty:', 'you', 'send', 'me', 'the', 'bill', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'sending', 'you', 'the', 'bill', '||period||', '||return||', '||return||', 'helen:', 'that', 'watch', 'was', 'a', 'gift', '||period||', 'you', "shouldn't", 'have', 'to', 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'gas', 'station', 'attendant:', "that's", 'uh', '||comma||', '$18', '||period||', '50', '||period||', '||return||', '||return||', 'morty:', 'here', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', "it's", 'my', 'car', '||period||', 'let', 'me', 'pay', 'for', 'the', 'gas', '||period||', '||return||', '||return||', 'morty:', 'no', '||comma||', 'no', 'put', 'it', 'away', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'dad', '||exclammark||', '||return||', '||return||', 'morty:', 'stop', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'money', '||period||', 'i', 'make', 'money', '||period||', '||return||', '||return||', 'morty:', 'yeah', '||comma||', 'yeah', '||comma||', 'you', 'make', 'money', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'think', 'i', 'make', 'money', '||period||', "that's", 'what', 'you', 'think', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'helen:', 'no', '||comma||', 'i', "don't", 'think', 'that', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'you', 'do', '||period||', "that's", 'what', 'you', 'both', 'think', '||period||', '||return||', '||return||', 'morty:', "i'm", 'paying', '||period||', '||return||', '||return||', 'jerry:', 'dad', "i'm", 'paying', '||period||', '||return||', '||return||', 'morty:', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'paying', '||period||', '||return||', '||return||', 'morty:', 'now', 'jerry', 'please', '||comma||', 'do', 'not', 'do', 'this', 'to', 'your', 'father', '||period||', 'over', 'my', 'dead', 'body', 'jerry', '||period||', "i'll", 'tell', 'you', 'right', 'now', '||comma||', "you're", 'not', 'going', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', "don't", 'do', 'this', '||period||', "you're", 'not', 'doing', 'this', '||period||', 'i', 'will', 'fight', 'you', '||period||', 'no', 'you', "don't", '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'you', 'got', 'a', 'lot', 'of', 'stuff', 'here', '||period||', '||period||', '||period||', '||period||', 'dad', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'morty:', 'nothing', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'leave', 'it', '||period||', 'what', 'about', 'your', 'back', '||questionmark||', '||return||', '||return||', 'helen:', 'morty', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'morty:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'you', 'come', 'all', 'the', 'way', 'up', 'here', 'to', 'see', 'a', 'back', 'specialist', 'and', "you're", 'lifting', 'heavy', 'suit', 'cases', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'morty', '||period||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'mr', '||period||', 'kramer', '||period||', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'mrs', '||period||', 'seinfeld', '||period||', 'hi', '||return||', '||return||', 'helen:', 'ha', '||comma||', 'ha', '||comma||', 'ha', 'oh', '||comma||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'ah', '||comma||', 'well', 'some', 'guy', 'kicked', 'me', 'in', 'the', 'side', 'of', 'the', 'head', '||period||', '||return||', '||return||', 'helen:', 'what', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'w', '||dash||', 'crazy', 'joe', 'devola', '||period||', '||return||', '||return||', 'helen:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'having', 'this', 'party', 'and', 'i', "didn't", 'invite', 'him', 'and', 'then', 'jerry', '||comma||', 'tipped', 'him', 'off', '||period||', '||return||', '||return||', 'jerry:', 'why', 'did', 'you', 'tell', 'this', 'crazy', 'guy', 'that', 'kramer', "didn't", 'invite', 'him', 'to', 'his', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'he', "wasn't", 'invited', '||period||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'these', 'are', 'very', 'comfortable', 'pants', '||period||', 'you', 'know', 'what', 'i', 'paid', 'for', 'these', 'jerry', '||questionmark||', '||return||', '||return||', 'helen:', 'so', 'why', 'did', 'you', 'say', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'mistake', '||period||', '||return||', '||return||', 'morty:', "they're", 'good', 'around', 'the', 'house', '||dash||', '||dash||', 'and', "they're", 'good', 'for', 'outside', '||period||', '||return||', '||return||', 'helen:', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'was', 'a', 'little', 'off', 'last', 'week', '||comma||', 'huh', 'jerry', '||dash||', '||dash||', 'yeah', 'but', 'the', 'doctor', 'says', 'it', 'was', 'just', 'a', 'slight', 'concussion', '||return||', '||return||', 'helen:', 'so', "what's", 'the', 'matter', 'with', 'this', 'devola', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'got', 'like', 'a', 'chemical', 'imbalance', '||period||', 'he', 'needs', 'to', 'be', 'on', 'medication', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', "he's", 'after', 'jerry', 'now', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||exclammark||', '||return||', '||return||', 'helen:', "he's", 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "he's", 'joking', '||period||', '||return||', '||return||', 'helen:', "he's", 'after', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'nooo', '||period||', '||return||', '||return||', 'helen:', 'why', 'is', 'he', 'after', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'not', 'after', 'me', '||period||', '||return||', '||return||', 'helen:', 'morty', '||comma||', 'do', 'you', 'here', 'this', '||questionmark||', 'some', 'crazy', 'guy', 'is', 'after', 'jerry', '||period||', '||return||', '||return||', 'morty:', "i'll", 'make', 'a', 'few', 'phone', 'calls', '||period||', '||return||', '||return||', 'jerry:', 'who', 'you', 'gonna', 'to', 'call', '||questionmark||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'worried', 'about', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'want', 'to', 'know', 'what', 'you', 'did', 'to', 'this', 'guy', 'that', "he's", 'after', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'helen:', 'well', 'you', 'must', 'have', 'done', 'something', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'he', 'just', "doesn't", 'like', 'me', '||period||', '||return||', '||return||', 'helen:', "doesn't", 'like', 'you', '||questionmark||', 'how', 'could', 'anyone', 'not', 'like', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'it', 'seems', 'impossible', '||period||', '||return||', '||return||', 'helen:', "doesn't", '||dash||', "doesn't", 'like', 'you', '||questionmark||', 'how', 'could', 'that', 'be', '||questionmark||', '||return||', '||return||', 'jerry:', 'ma', '||comma||', 'i', 'know', 'this', 'may', 'be', 'hard', 'for', 'you', 'to', 'understand', 'but', 'i', 'am', 'sure', 'there', 'are', 'many', 'people', 'who', 'do', 'not', 'like', 'me', '||period||', '||return||', '||return||', 'helen:', 'huh', '||comma||', 'jerry', '||comma||', "don't", 'say', 'that', '||period||', '||return||', '||return||', 'jerry:', "it's", 'true', '||period||', '||return||', '||return||', 'helen:', 'no', '||comma||', 'it', "isn't", '||exclammark||', "it's", 'not', 'true', '||period||', "you're", 'a', 'wonderful', '||comma||', 'wonderful', 'boy', '||period||', 'everybody', 'likes', 'you', '||period||', "it's", 'impossible', 'not', 'to', 'like', 'you', '||period||', 'impossible', '||period||', 'morty', '||questionmark||', '||return||', '||return||', 'morty:', 'maybe', 'some', 'people', "don't", 'like', 'him', '||period||', 'i', 'could', 'see', 'that', '||period||', '||return||', '||return||', 'helen:', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'like', 'him', '||period||', 'hey', 'jerry', '||comma||', 'what', 'time', 'you', 'got', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'i', "haven't", 'got', 'my', 'watch', 'on', '||period||', "it's", 'being', 'fixed', '||period||', '||return||', '||return||', 'kramer:', 'when', 'you', 'getting', 'it', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'next', 'week', '||period||', '||return||', '||return||', 'kramer:', 'next', 'week', '||questionmark||', 'how', 'come', "it's", "takin'", 'so', 'long', '||questionmark||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'said', 'how', 'come', "it's", "takin'", 'so', 'long', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', "they're", '||comma||', 'backed', 'up', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||comma||', 'where', 'did', 'you', 'take', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "where'd", 'i', 'take', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'i', 'take', 'it', '||questionmark||', 'where', 'did', 'i', 'take', 'it', '||questionmark||', '||leftparen||', 'stabbing', 'a', 'knife', 'into', 'a', 'cutting', 'board', '||rightparen||', 'umm', '||comma||', 'to', 'that', 'place', 'on', '||comma||', 'uh', 'columbus', 'and', '85th', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'jimmy', 'sherman', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'know', 'the', 'guy', '||period||', 'i', 'take', 'my', 'stuff', 'in', 'there', 'all', 'the', 'time', '||period||', 'yeah', '||comma||', 'i', 'bet', 'i', 'can', 'get', 'your', 'watch', 'back', 'by', 'tomorrow', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'kramer', '||comma||', 'i', "don't", 'want', 'you', 'to', 'say', 'anything', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'd", 'be', 'happy', 'to', '||period||', "he's", 'a', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'jerry:', "i'd", 'like', 'to', 'follow', 'the', 'regular', 'procedures', '||period||', 'i', "don't", 'want', 'any', 'special', 'treatment', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'm", 'going', 'to', 'get', 'that', 'watch', 'back', 'for', 'you', 'by', 'tomorrow', '||comma||', 'buddy', '||period||', 'you', 'see', '||period||', '||return||', '||return||', 'morty:', 'bring', 'me', 'the', 'receipt', '||period||', '||return||', '||return||', 'kramer:', 'i', 'get', 'that', 'too', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'be', 'right', 'back', '||period||', '||leftparen||', 'follows', 'kramer', 'out', '||rightparen||', '||return||', '||return||', 'jerry:', "there's", 'no', 'watch', '||period||', '||period||', '||period||', 'i', 'threw', 'it', 'in', 'the', 'garbage', 'can', 'on', 'the', 'street', '||period||', 'it', "didn't", 'keep', 'good', 'time', '||period||', 'my', 'parents', 'gave', 'it', 'to', 'me', '||comma||', 'but', 'i', "didn't", 'like', 'it', '||period||', 'so', "don't", 'mention', 'it', 'again', '||comma||', 'okay', '||exclammark||', '||return||', '||return||', 'kramer:', 'y', '||dash||', 'yeah', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', '||period||', '||period||', '||period||', 'y', '||dash||', 'yea', '||comma||', 'w', '||dash||', 'no', 'dit', 'dit', 'g', '||dash||', '||leftparen||', 'kramer', 'noises', '||rightparen||', '||return||', '||return||', 'helen:', 'what', 'was', 'that', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'uh', '||comma||', "he's", 'got', 'my', 'calamine', 'lotion', 'and', 'uh', '||comma||', 'i', 'told', 'him', 'not', 'to', 'return', 'it', '||period||', 'if', 'he', 'needs', 'it', 'he', 'should', 'keep', 'it', '||period||', "he's", 'got', 'uh', '||comma||', "he's", 'got', 'a', 'thing', 'on', 'his', 'ankle', '||period||', '||return||', '||return||', 'helen:', 'how', 'can', 'anyone', 'not', 'like', 'him', '||period||', '||return||', '||return||', 'morty:', 'hi', '||comma||', 'morty', 'seinfeld', '||period||', 'i', 'have', 'a', 'two', "o'clock", 'appointment', '||period||', '||return||', '||return||', 'receptionist:', 'yes', '||comma||', 'mr', '||period||', 'seinfeld', '||period||', 'would', 'you', 'please', 'fill', 'this', 'out', '||period||', '||return||', '||return||', 'morty:', 'all', 'this', '||questionmark||', 'this', 'whole', 'thing', '||questionmark||', "it's", 'going', 'to', 'take', 'me', 'forty', '||dash||', 'five', 'minutes', '||period||', '||return||', '||return||', 'receptionist:', 'i', 'know', '||period||', "it's", 'very', 'long', '||period||', '||return||', '||return||', 'morty:', 'look', 'at', 'this', '||period||', "it's", 'a', 'book', '||period||', "employer's", 'address', '||period||', 'whydo', 'they', 'need', 'this', '||questionmark||', 'you', 'know', 'i', 'never', 'had', 'a', 'back', 'problem', 'until', 'that', 'night', 'i', 'slept', 'on', 'the', 'convertible', 'sofa', '||period||', '||leftparen||', 'hu', 'hu', '||rightparen||', 'my', 'back', 'was', 'fine', '||period||', '||return||', '||return||', 'helen:', 'well', '||comma||', "it's", 'not', 'the', 'sofa', '||period||', '||return||', '||return||', 'morty:', 'you', 'stick', 'up', 'for', 'that', 'sofa', 'like', "i'm", 'criticizing', 'a', 'person', '||period||', '||return||', '||return||', 'helen:', 'we', 'got', 'it', 'from', "sullivan's", '||period||', "it's", 'a', 'good', 'store', '||period||', '||return||', '||return||', 'morty:', 'well', 'one', 'day', "somebody's", 'going', 'to', 'sleep', 'on', 'that', 'thing', 'and', "we'll", 'get', 'sued', '||period||', 'i', 'hope', 'this', 'doctor', 'knows', 'what', "he's", 'doing', '||period||', '||return||', '||return||', 'helen:', 'leo', 'says', "he's", 'the', 'best', 'there', 'is', '||period||', '||return||', '||return||', 'morty:', 'leo', '||comma||', "i'm", 'listening', 'to', 'leo', 'now', '||exclammark||', '||return||', '||return||', 'helen:', 'well', "you're", 'lucky', 'he', 'was', 'able', 'to', 'get', 'you', 'this', 'appointment', '||period||', 'you', 'know', 'what', 'the', 'waiting', 'list', 'is', 'for', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'if', 'he', 'fixes', 'my', 'back', "i'll", 'be', 'happy', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'back', 'to', 'the', 'form', '||rightparen||', 'have', 'you', 'ever', 'had', 'a', 'sexually', 'transmitted', 'disease', '||questionmark||', "that's", 'it', '||exclammark||', '||period||', '||period||', '||period||', 'here', '||comma||', 'you', 'got', 'my', 'name', '||comma||', 'you', 'got', 'my', 'address', '||period||', "that's", 'enough', '||period||', '||return||', '||return||', 'receptionist:', 'julie', '||comma||', 'you', 'want', 'to', 'take', 'him', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', 'you', 'passed', '||questionmark||', 'how', 'could', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'ahhhhh', '||leftparen||', 'exhaling', '||rightparen||', 'jerry', '||comma||', 'my', 'young', 'friend', '||comma||', "you're", 'so', 'nave', '||period||', 'you', 'are', 'so', '||comma||', 'so', 'nave', '||period||', 'you', 'know', 'about', 'a', 'few', 'things', '||period||', 'you', 'know', 'about', 'comedy', '||comma||', 'a', 'little', 'bit', 'about', 'relationships', '||comma||', 'some', 'baseball', '||comma||', 'but', 'you', 'are', 'so', 'far', 'out', 'of', 'your', 'element', 'here', '||comma||', 'you', 'are', 'embarrassing', 'yourself', '||period||', 'now', 'listen', 'to', 'me', '||period||', "i'm", 'negotiating', '||period||', 'negotiation', '||comma||', 'this', 'is', "what'cha", 'do', 'in', 'business', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'explain', 'to', 'you', 'what', 'you', 'just', 'did', '||period||', 'there', 'are', 'literally', 'hundreds', 'of', 'people', 'trying', 'to', 'get', 'pilot', 'deals', 'with', 'them', 'this', 'year', '||period||', 'they', 'go', 'with', 'maybe', '||comma||', 'five', '||period||', 'okay', '||comma||', 'if', 'we', 'pass', '||comma||', "that's", 'it', '||period||', 'they', 'go', 'to', 'the', 'next', 'show', '||period||', '||return||', '||return||', 'george:', 'ooooo', '||comma||', "i'm", 'scared', '||period||', '||period||', '||period||', '||period||', 'ohoooo', "they're", 'not', 'going', 'to', 'do', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', "we're", 'lucky', "they're", 'even', 'interested', 'in', 'the', 'idea', 'in', 'the', 'first', 'place', '||period||', 'we', 'got', 'a', 'show', 'about', 'nothing', '||period||', 'with', 'no', 'story', '||period||', 'what', 'do', 'you', 'think', '||comma||', "they're", 'up', 'there', 'going', '||comma||', 'hey', 'maybe', 'we', 'should', 'give', 'those', 'two', 'guys', '||comma||', 'who', 'have', 'no', 'experience', 'and', 'no', 'idea', '||comma||', 'more', 'money', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'ohooo', 'what', 'are', 'we', 'going', 'to', 'do', '||questionmark||', "i'm", 'shaking', '||exclammark||', "i'm", 'shaking', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'think', "you're", 'wrong', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "we'll", 'just', 'see', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'we', 'will', '||period||', '||return||', '||return||', 'george:', 'yes', 'we', 'will', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'said', 'that', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'you', 'did', '||period||', '||return||', '||return||', 'jerry:', 'so', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'so', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'repeating', 'everything', "i'm", 'saying', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'repeating', 'everything', "i'm", 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'george', 'is', 'an', 'idiot', '||period||', '||return||', '||return||', 'george:', 'well', 'george', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', "let's", 'go', 'already', '||period||', 'they', 'keep', 'you', 'in', 'here', 'a', 'year', '||period||', 'they', "don't", 'give', 'a', 'damn', '||period||', 'i', 'could', 'die', 'in', 'here', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'open', 'the', 'door', 'and', 'shouts', 'into', 'the', 'hallway', '||rightparen||', 'excuse', 'me', '||exclammark||', 'excuse', 'me', '||exclammark||', "what's", 'going', 'on', '||questionmark||', "i'm", 'here', 'twenty', 'minutes', '||period||', 'could', 'somebody', 'please', 'help', 'me', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'enters', '||rightparen||', 'shhh', '||period||', 'quiet', '||exclammark||', 'everyone', 'can', 'hear', 'you', '||period||', '||return||', '||return||', 'morty:', 'twenty', 'minutes', '||period||', "i've", 'been', 'waiting', 'twenty', 'minutes', '||period||', '||return||', '||return||', 'helen:', 'well', 'the', 'doctor', 'must', 'be', 'busy', '||period||', '||return||', '||return||', 'morty:', 'well', 'then', 'what', 'do', 'they', 'make', 'appointments', 'for', 'if', 'they', "can't", 'keep', 'them', '||period||', 'huh', '||comma||', 'hha', '||period||', 'look', 'if', 'i', 'did', 'that', 'in', 'my', 'business', 'i', "wouldn't", 'have', 'made', 'a', 'nickel', '||period||', '||return||', '||return||', 'nurse:', 'hello', '||comma||', 'mr', '||period||', 'seinfeld', '||period||', '||return||', '||return||', 'morty:', 'i', 'thought', 'you', 'forgot', 'about', 'me', '||period||', '||return||', '||return||', 'nurse:', 'we', "didn't", 'forget', '||period||', '||return||', '||return||', 'morty:', 'haahhh', '||exclammark||', 'the', 'velcro', '||period||', 'i', "can't", 'stand', 'velcro', '||period||', "it's", 'that', 't', '||dash||', 'e', '||dash||', 'a', '||dash||', 'r', '||dash||', 'i', '||dash||', 'n', '||dash||', 'g', 'sound', '||period||', 'i', 'used', 'to', 'be', 'in', 'raincoats', '||period||', 'i', 'refused', 'to', 'put', 'that', 'in', 'any', 'of', 'my', 'lines', '||period||', '||return||', '||return||', 'nurse:', 'okay', '||comma||', 'mr', '||period||', 'seinfeld', '||comma||', 'please', 'come', 'this', 'way', '||period||', 'we', 'need', 'some', 'x', '||dash||', 'rays', '||period||', '||return||', '||return||', 'morty:', 'leave', 'all', 'my', 'stuff', 'here', '||questionmark||', '||return||', '||return||', 'nurse:', 'leave', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', 'hey', '||comma||', 'by', 'the', 'way', '||period||', 'do', 'you', 'want', 'a', 'box', "'a", '||comma||', 'cuban', 'cigars', '||questionmark||', 'i', 'smoked', 'one', 'last', 'night', '||period||', 'i', 'got', 'nauseous', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', "don't", 'want', '||questionmark||', 'em', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'take', 'it', '||period||', 'no', '||comma||', "i'll", 'take', 'it', '||period||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'kramer:', 'cigars', '||questionmark||', '||leftparen||', 'hits', 'the', 'box', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'cubans', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'the', 'kind', 'that', 'castro', 'smoked', '||period||', 'you', "can't", 'buy', '||questionmark||', 'em', 'anywhere', '||period||', '||return||', '||return||', 'kramer:', 'castro', 'eh', '||questionmark||', 'pasto', 'costillo', 'homiga', '||leftparen||', 'nonsense', 'spanish', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'voice:', 'federal', 'express', '||period||', '||return||', '||return||', 'jerry:', 'federal', 'express', '||questionmark||', 'come', 'on', 'up', '||period||', '||period||', '||period||', '||period||', 'federal', 'express', '||period||', "i'm", 'not', 'expecting', 'a', 'package', '||period||', '||return||', '||return||', 'kramer:', 'wooo', '||comma||', 'you', 'know', 'what', 'you', 'just', 'did', '||questionmark||', 'you', 'let', 'a', 'burglar', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'federal', 'express', '||questionmark||', 'of', 'course', '||period||', "that's", 'the', 'oldest', 'trick', 'in', 'the', 'book', '||period||', 'you', 'know', 'it', 'might', 'not', 'be', 'a', 'burglar', 'it', 'could', 'be', 'a', 'murderer', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'to', 'just', 'abolish', 'all', 'home', 'package', 'deliveries', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||period||', "it's", 'dangerous', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'det', 'doit', '||period||', '||period||', '||period||', 'dit', '||leftparen||', 'kramer', 'noises', '||dash||', '||dash||', 'he', 'prepares', 'for', 'a', 'fight', 'by', 'rolling', 'up', 'a', 'magazine', '||rightparen||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'voice:', 'federal', 'express', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', '||period||', '||period||', '||period||', 'gidg', 'gi', 'gt', '||leftparen||', 'backs', 'up', 'and', 'bends', 'his', 'knees', '||comma||', 'holding', 'the', 'rolled', 'magazine', '||dash||', 'arm', 'back', '||comma||', 'ready', 'for', 'a', 'rumble', '||rightparen||', '||return||', '||return||', 'all:', 'hiiiiiiiiiiiiiiiiiiii', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'want', 'one', 'of', 'those', '||exclammark||', '||return||', '||return||', 'elaine:', 'hiiii', 'kramer', '||return||', '||return||', 'kramer:', 'oh', 'yes', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'hi', '||comma||', 'i', 'thought', 'you', 'went', 'to', 'california', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'came', 'back', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'shut', 'up', '||leftparen||', 'pushes', 'kramer', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'missed', 'you', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'you', 'really', 'missed', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', '||period||', '||period||', '||period||', 'seriously', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'me', 'to', 'miss', '||dash||', '||dash||', 'i', 'miss', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'big', 'missing', "goin'", 'on', '||leftparen||', 'spreads', 'arms', 'wide', '||rightparen||', '||return||', '||return||', 'elaine:', 'ahhhhhh', 'haa', 'ha', 'ha', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'm", 'going', 'to', 'be', 'right', 'back', '||period||', "i'm", 'going', 'to', 'get', 'a', 'match', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||comma||', "who's", 'suitcase', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'my', 'parents', '||period||', 'my', 'father', 'came', 'up', 'to', 'see', 'a', 'back', 'specialist', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||comma||', "it's", 'probably', 'from', 'sleeping', 'on', 'that', 'sofa', '||period||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'you', 'look', 'really', 'great', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'you', 'lie', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'you', 'really', 'look', 'great', '||period||', '||return||', '||return||', 'elaine:', 'hu', 'hu', '||comma||', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'jerry:', 'so', 'tell', 'us', 'about', 'the', 'trip', '||period||', "how's", 'dr', '||period||', 'reston', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'fine', '||period||', '||return||', '||return||', 'jerry:', 'things', 'are', 'good', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'know', '||leftparen||', 'scratches', 'cheek', 'and', 'sniffs', '||rightparen||', '||return||', '||return||', 'jerry:', 'uh', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'uh', 'oh', '||questionmark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'see', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'saw', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'tell', '||period||', 'you', 'gotta', 'tell', '||period||', '||return||', '||return||', 'elaine:', 'what', 'tell', '||questionmark||', "what's", 'a', 'tell', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'you', 'ask', 'someone', 'about', 'their', 'relationship', 'and', 'they', 'touch', 'their', 'face', '||comma||', 'you', 'know', "it's", 'not', 'going', 'too', 'well', '||period||', 'go', 'ahead', 'ask', 'me', 'how', "it's", 'going', 'with', 'somebody', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'uh', '||comma||', "who's", 'it', 'going', 'with', '||comma||', 'uh', '||comma||', 'alice', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'going', 'good', '||leftparen||', 'scratches', 'chin', '||rightparen||', 'and', 'the', 'higher', 'up', 'on', 'the', 'face', 'you', 'go', 'the', 'worse', 'the', 'relationship', 'is', 'getting', '||period||', 'you', 'know', 'it', 'is', 'like', '||dash||', 'pretty', 'good', '||dash||', 'not', 'bad', '||dash||', 'i', 'gotta', 'get', 'out', '||period||', '||leftparen||', 'scratches', 'chin', '||comma||', 'nose', 'then', 'covers', 'eyes', 'with', 'hands', '||rightparen||', '||return||', '||return||', 'elaine:', 'how', 'high', 'did', 'i', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'almost', 'did', 'the', 'nose', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'eating', 'my', 'peanut', 'butter', 'out', 'of', 'the', 'jar', 'with', 'your', 'disgusting', 'index', 'fingers', '||questionmark||', 'this', 'is', 'a', 'sickening', 'display', '||period||', '||leftparen||', 'takes', 'the', 'peanut', 'butter', 'jar', 'away', 'from', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'what', '||questionmark||', "i'm", 'not', 'eating', 'bread', 'now', '||period||', "i'm", 'off', 'bread', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', "you're", 'off', 'bread', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'so', 'what', 'happened', 'is', 'it', 'over', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'not', 'quite', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'he', 'was', 'my', 'psychiatrist', '||comma||', 'you', 'know', '||period||', 'i', 'mean', '||comma||', 'he', 'knows', 'all', 'my', 'patterns', '||period||', 'he', 'knows', 'in', 'relationships', 'that', 'i', 'always', 'try', 'to', 'find', 'some', 'reason', 'to', 'leave', '||comma||', 'and', 'so', '||comma||', 'he', 'says', 'as', 'my', 'doctor', '||comma||', 'he', "can't", 'allow', 'me', 'to', 'do', 'this', '||comma||', 'so', "he's", 'not', 'letting', 'me', 'leave', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||dash||', '||quotemark||', 'not', 'letting', 'you', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'he', 'has', 'this', 'power', 'over', 'me', '||comma||', 'okay', '||period||', 'i', 'mean', 'he', 'has', 'this', 'way', 'of', 'manipulating', 'every', 'little', 'word', 'that', 'i', 'say', '||period||', "he's", 'like', 'a', 'svenjolly', '||period||', '||return||', '||return||', 'jerry:', 'svengali', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'i', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'svenjolly', '||period||', '||return||', '||return||', 'elaine:', 'svenjolly', '||questionmark||', 'i', 'did', 'not', 'say', 'svenjolly', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'svenjolly', '||period||', '||leftparen||', 'licking', 'a', 'little', 'bit', 'of', 'peanut', 'butter', 'from', 'his', 'finger', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', "don't", 'see', 'how', 'i', 'could', 'have', 'said', 'svenjolly', '||period||', '||return||', '||return||', 'jerry:', 'well', 'maybe', "he's", 'got', 'like', 'a', '||comma||', 'cheerful', 'mental', 'hold', 'on', 'you', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', "can't", 'find', 'a', 'match', 'anywhere', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'you', 'should', 'do', '||questionmark||', 'you', 'should', 'tell', 'this', 'guy', "you're", 'seeing', 'somebody', 'else', '||period||', "that's", 'the', 'easiest', 'way', 'to', 'get', 'out', 'of', 'these', 'things', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "it's", 'not', 'going', 'to', 'work', 'with', 'this', 'guy', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'just', 'tell', 'him', 'ah', '||comma||', 'an', 'old', 'boyfriend', 'has', 'come', 'back', 'into', 'your', 'life', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'nice', 'try', '||period||', '||return||', '||return||', 'george:', 'took', 'a', 'shot', '||period||', '||return||', '||return||', 'kramer:', 'this', 'is', 'a', 'good', 'cigar', '||leftparen||', 'hair', 'is', 'on', 'fire', '||comma||', 'white', 'smoke', 'pouring', 'from', 'the', 'back', 'of', 'his', 'head', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'woooooooooow', '||period||', '||period||', '||period||', '||leftparen||', 'runs', 'to', 'bathroom', '||comma||', 'his', 'arms', 'in', 'the', 'air', '||dash||', '||dash||', 'he', 'bangs', 'them', 'in', 'to', 'the', 'top', 'of', 'the', 'hallway', 'door', 'jam', 'and', 'falls', 'into', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'when', 'do', 'i', 'get', 'to', 'see', 'the', 'doctor', '||questionmark||', '||return||', '||return||', 'nurse:', "he'll", 'be', 'in', 'with', 'the', 'x', '||dash||', 'rays', 'in', 'a', 'few', 'minutes', '||period||', 'you', 'can', 'get', 'dressed', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'morty:', '||leftparen||', 'checking', 'pants', '||rightparen||', 'they', 'stole', 'my', 'wallet', '||period||', 'the', 'bum', 'stole', 'my', 'wallet', '||period||', '||leftparen||', 'opens', 'door', '||comma||', 'shouts', 'into', 'the', 'hallway', '||rightparen||', 'my', "wallet's", 'gone', '||exclammark||', 'my', "wallet's", 'gone', '||exclammark||', 'i', 'had', 'my', 'wallet', 'in', 'my', 'back', 'pocket', '||period||', "it's", 'gone', '||period||', '||return||', '||return||', 'nurse:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'morty:', 'yes', '||comma||', "i'm", 'sure', '||period||', 'i', 'went', 'in', 'to', 'get', 'my', 'x', '||dash||', 'ray', '||comma||', 'somebody', 'takes', 'my', 'wallet', '||period||', 'is', 'that', 'the', 'operation', 'here', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'dembrow:', 'mr', '||period||', 'seinfeld', '||comma||', "i'm", 'dr', '||period||', 'dembrow', '||comma||', "i've", 'been', 'going', 'over', 'your', 'x', '||dash||', 'rays', '||period||', '||return||', '||return||', 'morty:', "i'm", 'not', 'interested', 'in', 'the', 'x', '||dash||', 'rays', '||period||', 'i', 'want', 'my', 'money', 'back', '||period||', 'somebody', 'stole', 'my', 'wallet', '||period||', 'i', 'had', '$225', 'in', 'there', '||period||', '||return||', '||return||', 'dr', '||period||', 'dembrow:', 'well', '||comma||', 'i', "don't", 'see', 'how', 'something', 'like', 'that', 'could', 'have', 'happened', '||period||', '||return||', '||return||', 'morty:', 'oh', '||comma||', 'you', "don't", 'see', '||period||', 'you', "don't", 'see', '||period||', 'well', 'it', 'happened', '||period||', 'believe', 'me', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'enters', '||rightparen||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'morty:', 'they', 'stole', 'my', 'wallet', '||period||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', '||return||', '||return||', 'morty:', 'yeah', '||comma||', 'while', 'i', 'was', 'in', 'getting', 'x', '||dash||', 'rayed', '||period||', '||return||', '||return||', 'dr', '||period||', 'dembrow:', 'all', 'right', '||comma||', 'mr', '||period||', 'seinfeld', '||comma||', 'i', 'am', 'sorry', 'about', 'your', 'wallet', 'but', 'would', 'you', 'like', 'me', 'to', 'look', 'over', 'these', 'x', '||dash||', 'rays', '||questionmark||', '||return||', '||return||', 'morty:', 'what', 'kind', 'of', 'clip', 'joint', 'are', 'ya', 'running', 'here', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'dembrow:', 'all', 'right', '||comma||', 'fine', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'helen:', 'the', 'least', 'you', 'could', 'have', 'done', 'was', 'heard', 'your', 'diagnosis', '||period||', '||return||', '||return||', 'morty:', 'i', 'am', 'not', 'interested', 'in', 'his', 'diagnosis', '||period||', "he's", 'a', 'bum', '||period||', '||return||', '||return||', 'helen:', 'you', 'came', 'all', 'the', 'way', 'from', 'florida', 'to', 'see', 'him', '||period||', '||return||', '||return||', 'morty:', 'i', 'want', 'to', 'know', 'what', 'kind', 'of', 'an', 'office', 'this', 'is', 'where', 'you', "can't", 'leave', 'your', 'pants', 'in', 'the', 'room', '||period||', 'you', 'tell', 'me', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', 'but', "there's", 'somebody', 'else', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'umm', 'hm', '||period||', '||return||', '||return||', 'elaine:', 'well', "it's", '||comma||', 'nothing', 'i', 'planned', 'on', 'happening', '||comma||', 'you', 'know', '||period||', 'it', 'just', '||comma||', 'kind', 'of', 'happened', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'tell', 'me', 'about', 'him', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "there's", 'not', 'really', 'much', 'to', 'tell', '||comma||', 'you', 'know', '||comma||', "he's", 'just', 'a', 'guy', '||comma||', 'really', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'yes', '||comma||', 'well', 'i', 'assumed', "he's", 'a', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'and', "you've", 'known', 'him', 'how', 'long', '||questionmark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'years', '||period||', 'many', 'years', '||leftparen||', 'her', 'voice', 'cracks', '||rightparen||', '||comma||', 'um', '||comma||', '||leftparen||', 'clears', 'throat', '||rightparen||', "we've", 'been', 'close', 'friends', 'and', 'then', 'recently', 'something', 'just', 'you', 'know', '*ehghh*', 'happened', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'you', 'mean', 'sexually', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', 'sexu', '||dash||', 'ally', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', 'your', 'um', '||period||', '||period||', '||period||', '||leftparen||', 'points', 'at', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'excuse', 'me', '||period||', 'yes', '||comma||', 'oh', 'yes', '||comma||', 'bobo', '||period||', 'uh', '||comma||', 'no', "it's", 'just', 'east', 'of', 'madison', '||period||', 'around', '400', 'will', 'be', 'fine', '||period||', 'all', 'right', 'bobo', '||period||', '||period||', '||period||', 'see', 'you', 'then', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||period||', '||period||', '||period||', "i'm", 'sorry', 'where', 'were', 'we', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'was', 'just', 'um', '||comma||', 'telling', 'you', 'about', 'this', '||comma||', 'other', 'guy', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'mm', '||period||', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'dr', '||period||', 'reston:', 'do', 'you', 'remember', 'your', 'dream', '||comma||', 'where', 'you', 'have', 'a', 'sexual', 'encounter', 'with', 'a', 'chinese', 'woman', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'yeah', '||comma||', '||leftparen||', 'cough', '||comma||', 'cough', '||rightparen||', 'mm', '||dash||', 'hm', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'elaine', '||comma||', "i'm", 'concerned', 'about', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', 'no', 'no', 'no', '||comma||', "don't", 'concern', 'yourself', 'with', 'me', '||comma||', 'because', "i'm", '||dash||', "i'm", 'good', '||period||', "i'm", '||dash||', "i'm", 'very', 'good', '||comma||', 'i', 'mean', "i'm", 'really', 'very', '||comma||', 'very', 'good', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'elaine', '||period||', 'have', 'you', 'been', 'urinating', 'a', 'lot', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'and', 'how', 'often', 'have', 'you', 'been', 'seeing', '||comma||', 'um', '||period||', '||period||', '||period||', '||questionmark||', "i'm", 'sorry', 'what', 'is', 'his', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'h', '||dash||', 'his', 'name', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'yes', '||comma||', 'his', 'name', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'well', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'are', 'you', 'afraid', 'to', 'tell', 'me', 'his', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'i', 'just', '||dash||', 'i', 'just', "don't", 'see', 'how', "that's", 'relevant', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'it', "doesn't", 'matter', 'if', 'you', "don't", 'see', 'how', '||period||', 'i', 'see', 'how', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'his', 'name', '||comma||', 'um', '||comma||', 'i', "don't", '||dash||', 'i', "don't", 'even', 'know', '||comma||', 'all', 'right', 'you', 'want', 'to', 'know', 'his', 'name', '||questionmark||', "i'll", '||dash||', "i'll", 'tell', 'you', 'his', 'name', '||period||', 'his', 'name', 'is', '||period||', '||period||', '||period||', 'kramer', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'kramer', '||period||', 'is', 'that', 'his', 'first', 'name', 'or', 'his', 'last', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", '||dash||', "i'm", 'really', 'uncomfortable', 'talking', 'about', 'this', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'elaine', '||comma||', 'i', 'want', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'i', 'want', 'you', 'to', 'tell', 'this', 'young', 'man', 'to', 'give', 'me', 'a', 'call', '||period||', "it's", 'very', 'important', 'that', 'i', 'speak', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'oh', 'no', '||comma||', 'no', 'no', 'no', '||comma||', 'i', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'you', 'can', 'do', 'it', 'and', 'you', 'will', 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "can't", '||period||', '||return||', '||return||', 'dr', '||period||', 'reston:', 'you', 'can', 'and', 'you', 'will', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'okay', '||period||', 'yeah', "i'll", 'have', 'kramer', 'give', 'you', 'a', 'call', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', "didn't", 'even', 'let', 'the', 'doctor', 'treat', 'you', '||questionmark||', '||return||', '||return||', 'morty:', 'i', "wouldn't", 'give', 'him', 'the', 'satisfaction', '||period||', '||return||', '||return||', 'helen:', 'why', 'did', 'you', 'leave', 'your', 'wallet', 'in', 'your', 'pants', '||questionmark||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'what', 'was', 'i', 'supposed', 'to', 'hide', 'it', 'somewhere', '||questionmark||', '||return||', '||return||', 'helen:', 'you', "could've", 'taken', 'it', 'with', 'you', '||period||', '||return||', '||return||', 'morty:', 'oh', '||comma||', 'yeah', '||comma||', "i'll", 'be', 'lying', 'on', 'an', 'x', '||dash||', 'ray', 'table', 'with', 'my', 'wallet', 'in', 'my', 'mouth', '||period||', '||return||', '||return||', 'leo:', 'hello', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'uncle', 'leo', '||period||', '||return||', '||return||', 'leo:', 'i', 'just', 'talked', 'to', 'dr', '||period||', "dembrow's", 'son', '||period||', 'he', 'said', 'they', 'almost', 'had', 'to', 'call', 'the', 'police', '||period||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', "i'm", 'the', 'one', 'who', 'should', 'have', 'called', 'the', 'police', '||period||', 'they', 'stole', 'my', 'wallet', '||period||', '||return||', '||return||', 'leo:', 'you', 'know', 'how', 'hard', 'it', 'was', 'for', 'me', 'to', 'get', 'that', 'appointment', 'for', 'you', '||questionmark||', 'you', "can't", 'just', 'walk', 'in', 'on', 'this', 'guy', '||period||', 'he', 'did', 'me', 'a', 'personal', 'favor', '||period||', '||return||', '||return||', 'morty:', 'all', 'right', '||comma||', 'leo', '||period||', '||return||', '||return||', 'leo:', 'and', 'you', 'walked', 'out', 'without', 'paying', '||period||', '||return||', '||return||', 'morty:', 'how', 'was', 'i', 'supposed', 'to', 'pay', '||questionmark||', 'i', "didn't", 'have', 'my', 'wallet', '||period||', '||return||', '||return||', 'leo:', 'well', '||comma||', 'i', 'hope', 'you', 'send', 'him', 'a', 'check', '||period||', '||return||', '||return||', 'morty:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'leo:', 'what', 'for', '||questionmark||', 'this', 'man', 'was', 'nice', 'enough', 'to', 'see', 'you', '||period||', 'he', 'did', 'me', 'a', 'personal', 'favor', '||period||', '||return||', '||return||', 'morty:', "that's", 'the', 'second', 'time', 'you', 'said', '||quotemark||', 'personal', 'favor', '||quotemark||', '||period||', 'why', 'do', 'you', 'keep', 'saying', 'that', '||questionmark||', '||return||', '||return||', 'leo:', 'i', 'said', 'it', 'once', '||period||', '||return||', '||return||', 'morty:', 'twice', '||exclammark||', 'and', 'dembrow', "doesn't", 'even', 'know', 'you', '||period||', 'his', 'son', 'happens', 'to', 'live', 'on', 'your', 'floor', '||period||', '||return||', '||return||', 'helen:', 'leo', '||comma||', 'where', 'did', 'you', 'get', 'that', 'watch', '||questionmark||', '||return||', '||return||', 'leo:', 'you', 'know', 'where', 'i', 'got', 'this', '||questionmark||', '||leftparen||', 'flashback', '||rightparen||', 'i', 'found', 'it', 'in', 'the', 'garbage', 'can', '||period||', 'it', 'kept', 'terrible', 'time', '||period||', 'i', 'brought', 'it', 'over', 'to', 'jimmy', 'sherman', 'right', 'here', 'on', '85th', 'and', 'columbus', '||period||', 'gave', 'it', 'to', 'me', 'back', 'the', 'next', 'day', '||period||', 'works', 'great', '||period||', 'what', 'kind', 'of', 'idiot', 'throws', 'a', 'way', 'a', 'perfectly', 'good', 'watch', '||questionmark||', '||return||', '||return||', 'helen:', 'morty', '||comma||', "doesn't", 'that', 'watch', 'look', 'like', 'the', 'one', 'that', 'we', 'gave', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "where's", 'the', 'waiter', '||period||', 'dad', '||comma||', 'what', 'say', 'we', 'have', 'some', 'red', 'meat', 'tonight', '||period||', "let's", 'live', 'a', 'little', '||period||', '||period||', '||return||', '||return||', 'helen:', 'let', 'me', 'see', 'that', '||period||', '||return||', '||return||', 'jerry:', 'could', 'we', 'continue', 'this', 'another', 'time', '||period||', '||return||', '||return||', '||leftparen||', 'the', 'episode', 'opens', 'with', 'a', 'series', 'of', 'clips', 'from', "'the", "pitch'", '||comma||', "'the", "ticket'", 'and', "'thewallet'", '||comma||', 'illustrating', 'the', 'story', 'so', 'far', '||period||', 'a', 'rough', 'precis', 'would', 'be:', 'george', 'turns', 'down', 'the', 'offer', 'from', 'nbc', 'for', 'the', 'show', '||comma||', 'telling', 'jerry', "he's", 'negotiating', '||period||', 'susan', 'gives', 'george', 'a', 'box', 'of', 'cuban', 'cigars', 'from', 'her', 'father', '||comma||', 'which', 'hepasses', 'to', 'kramer', '||comma||', 'who', 'sets', 'fire', 'to', 'his', 'hair', 'while', 'lighting', 'one', '||period||', "jerry's", 'parents', 'come', 'to', 'town', '||comma||', "so's", 'morty', 'can', 'see', 'a', 'back', 'specialist', '||dash||', 'he', 'slept', 'on', 'the', 'fold', '||dash||', 'out', '||period||', 'kramer', 'tells', "jerry's", 'parents', 'that', 'crazy', 'joe', 'davola', 'is', 'after', 'jerry', '||period||', 'jerry', 'throws', 'away', 'a', 'watch', 'his', 'parents', 'gave', 'him', '||comma||', 'because', 'it', "doesn't", 'keep', 'time', '||period||', 'uncle', 'leo', 'fetches', 'it', 'out', 'of', 'the', 'garbage', '||period||', 'jerry', 'tells', 'his', 'parents', 'his', 'watch', 'is', 'at', 'the', 'jeweller', 'for', 'repair', '||period||', 'at', 'the', "doctor's", '||comma||', 'morty', 'reveals', 'his', 'hatred', 'of', 'velcro', 'and', 'his', 'wallet', 'disappears', '||period||', 'elaine', 'returns', 'from', 'europe', '||comma||', 'eager', 'to', 'rid', 'herself', 'of', 'the', "'svenjolly'", 'dr', 'reston', '||period||', 'george', 'tells', 'her', 'to', 'inform', 'the', 'doctor', "she's", 'seeing', 'someone', 'else', '||period||', 'elaine', 'opts', 'to', 'say', "she's", 'seeing', 'kramer', '||comma||', 'and', 'dr', 'reston', 'wants', 'to', 'meet', 'him', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "it's", 'an', 'entire', 'industry', 'of', 'bad', 'gifts', '||comma||', "aren't", 'they', '||questionmark||', 'all', 'those', 'executive', 'gifts', '||comma||', 'any', 'stupid', '||comma||', 'goofy', '||comma||', 'brass', '||comma||', 'wood', 'thing', '||comma||', 'they', 'put', 'a', 'piece', 'of', 'green', 'felt', 'on', 'the', 'bottom', '||period||', '||quotemark||', "it's", 'a', 'golf', '||comma||', 'desk', '||comma||', 'tie', 'and', 'stress', 'organiser', '||comma||', 'dad', '||period||', '||quotemark||', 'but', 'to', 'me', '||comma||', 'nothing', 'compares', 'with', 'the', 'paperweight', 'as', 'a', 'bad', 'gift', '||period||', "there's", 'no', 'better', 'way', 'than', 'a', 'paperweight', '||comma||', 'to', 'express', 'to', 'someone', 'that', '||comma||', '||quotemark||', 'i', 'refuse', 'to', 'put', 'any', 'thought', 'into', 'this', 'at', 'all', '||period||', '||quotemark||', 'where', 'are', 'these', 'people', 'working', 'that', 'the', 'papers', 'are', 'just', 'blowing', 'right', 'off', 'of', 'their', 'desks', '||questionmark||', 'what', '||comma||', 'are', 'their', 'desks', 'screwed', 'to', 'the', 'back', 'of', 'a', 'flat', '||dash||', 'bed', 'truck', 'going', 'down', 'the', 'highway', 'or', 'something', '||questionmark||', 'what', '||comma||', 'are', 'they', 'typing', 'up', 'in', 'the', "crow's", 'nest', 'of', 'a', 'clipper', 'ship', '||questionmark||', 'what', 'do', 'you', 'need', 'a', 'paperweight', 'for', '||questionmark||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'leo', '||rightparen||', 'i', "don't", 'understand', 'this', 'jeweller', '||comma||', 'jimmy', 'sherman', '||period||', '||leftparen||', 'indicates', 'jerry', '||rightparen||', 'he', 'brings', 'in', 'a', 'watch', '||comma||', 'it', 'takes', 'over', 'a', 'week', 'to', 'fix', '||period||', 'he', 'fixed', 'yours', 'in', 'one', 'day', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'know', 'these', 'jewellers', '||comma||', "they're", 'enigmas', '||period||', "they're", 'mysteries', '||comma||', 'wrapped', 'in', 'a', 'riddle', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'indicating', 'to', 'jerry', '||rightparen||', "she's", 'very', 'attractive', '||period||', '||return||', '||return||', 'jerry:', "she's", 'okay', '||period||', '||return||', '||return||', 'helen:', 'just', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'nice', '||period||', '||return||', '||return||', 'helen:', "she's", 'better', 'than', 'nice', '||period||', '||return||', '||return||', 'jerry:', "she's", 'all', 'right', '||period||', '||return||', '||return||', 'helen:', "she's", 'beautiful', '||period||', '||return||', '||return||', 'jerry:', "she's", 'not', 'beautiful', '||period||', '||return||', '||return||', 'helen:', 'i', 'think', "she's", 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'ask', 'her', 'out', '||period||', '||return||', '||return||', 'helen:', "i'm", 'not', 'gonna', 'ask', 'her', 'out', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'helen:', 'if', 'you', "don't", 'think', "she's", 'beautiful', '||comma||', "there's", 'something', 'wrong', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', "she's", 'pretty', '||period||', "she's", 'not', 'beautiful', '||period||', '||return||', '||return||', 'helen:', 'i', 'should', 'drop', 'dead', 'if', "she's", 'not', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "that's", 'a', 'little', 'extreme', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'grudgingly', '||rightparen||', "she's", 'awright', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'oblivious', 'to', 'the', 'above', '||rightparen||', 'two', 'exact', 'same', 'watches', '||period||', 'he', 'tells', 'you', 'a', 'week', '||comma||', 'and', 'him', 'a', 'day', '||period||', 'how', 'could', 'that', 'be', '||questionmark||', "something's", 'fishy', 'about', 'this', '||period||', '||return||', '||return||', 'george:', 'he', 'said', 'what', '||questionmark||', '||return||', '||return||', 'susan:', '||quotemark||', 'the', 'hell', 'with', 'them', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'the', 'hell', 'with', 'them', '||questionmark||', '||quotemark||', '||return||', '||return||', 'susan:', 'those', 'were', 'his', 'exact', 'words', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'worried', '||rightparen||', 'oh', 'boy', '||period||', '||return||', '||return||', 'susan:', 'he', 'said', '||comma||', '||quotemark||', "we've", 'got', 'five', 'hundred', 'shows', 'to', 'choose', 'from', '||period||', 'why', 'should', 'we', 'give', 'two', 'guys', '||comma||', 'who', 'have', 'no', 'idea', '||comma||', 'and', 'no', 'experience', '||comma||', 'more', 'money', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'worried', '||rightparen||', 'he', 'was', 'pretty', 'emphatic', '||questionmark||', '||return||', '||return||', 'susan:', 'pounded', 'on', 'his', 'desk', '||period||', '||return||', '||return||', 'george:', 'pounded', '||questionmark||', '||return||', '||return||', 'susan:', '||leftparen||', 'tossing', 'her', 'purse', 'on', 'the', 'dash', '||rightparen||', 'i', 'told', 'you', 'to', 'take', 'the', 'offer', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'animated', '||rightparen||', 'look', 'i', '||comma||', 'i', 'uh', '||comma||', 'i', 'had', 'nothing', 'to', 'do', 'with', 'this', '||period||', 'it', "wasn't", 'my', 'decision', '||period||', 'it', 'was', 'jerry', '||exclammark||', 'jerry', 'told', 'me', 'no', '||period||', "i'm", 'the', 'creative', 'guy', '||period||', 'he', 'handles', 'the', 'business', 'end', '||period||', '||return||', '||return||', 'susan:', 'you', 'said', 'it', 'was', 'insulting', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'quoting', 'him', '||period||', 'why', 'would', 'i', 'be', 'insulted', '||questionmark||', "i'm", 'never', 'insulted', '||period||', 'you', 'could', 'call', 'me', 'baldy', '||comma||', 'dump', 'soup', 'on', 'my', 'head', '||period||', 'nothing', 'insults', 'me', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', "there's", 'nothing', 'i', 'can', 'do', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "don't", 'they', 'make', 'a', 'counter', 'offer', '||questionmark||', 'how', 'can', 'they', 'just', 'cancel', 'the', 'whole', 'deal', 'like', 'that', '||questionmark||', 'what', 'kind', 'of', 'a', 'maniac', 'is', 'this', 'guy', '||questionmark||', 'i', 'mean', 'he', 'just', '||comma||', 'he', 'says', 'no', '||comma||', 'and', "that's", 'it', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', "that's", 'the', 'way', 'russell', 'is', '||period||', 'he', "doesn't", 'like', 'to', 'play', 'games', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'he', 'has', 'to', 'play', '||exclammark||', 'he', "can't", 'just', 'not', 'play', '||period||', "we're", 'playing', '||exclammark||', 'look', '||comma||', 'i', 'gotta', 'see', 'him', '||comma||', 'how', 'do', 'i', 'get', 'in', 'touch', 'with', 'him', '||questionmark||', '||return||', '||return||', 'susan:', "you'll", 'have', 'to', 'wait', 'til', 'monday', '||period||', '||return||', '||return||', 'george:', 'mon', '||period||', '||period||', '||period||', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'i', "can't", 'wait', 'til', 'monday', '||comma||', "that's", 'impossible', '||comma||', 'i', 'gotta', 'talk', 'to', 'him', 'now', '||period||', 'where', 'does', 'he', 'live', '||questionmark||', '||return||', '||return||', 'susan:', '||leftparen||', 'laugh', '||rightparen||', 'i', "can't", 'give', 'you', 'his', 'address', '||period||', '||return||', '||return||', 'susan:', 'give', 'it', 'back', '||exclammark||', '||return||', '||return||', 'george:', 'gimme', 'the', 'purse', '||exclammark||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'so', 'he', 'just', 'wants', 'to', 'talk', 'to', 'you', '||period||', 'i', "couldn't", 'talk', 'him', 'out', 'of', 'it', '||period||', 'so', 'you', 'just', 'tell', 'him', 'that', "you're", 'my', 'boyfriend', 'and', 'that', "we're", 'in', 'love', '||comma||', 'okay', '||period||', 'can', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'okay', '||period||', "i'm", 'your', 'boyfriend', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'have', 'we', 'been', 'intimate', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'yeah', '||comma||', "we've", 'been', 'intimate', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'how', 'often', 'do', 'we', 'do', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'how', 'is', 'that', 'important', '||questionmark||', 'honestly', '||comma||', 'do', 'you', 'really', 'think', "he's", 'gonna', 'ask', 'you', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', "he's", 'a', 'psychiatrist', '||period||', "they're", 'interested', 'in', 'stuff', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'alright', '||period||', 'we', 'do', 'it', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'thinks', '||rightparen||', 'five', 'times', 'a', 'week', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'suggestive', '||rightparen||', 'oooh', '||comma||', 'baby', '||period||', '||leftparen||', 'smiles', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'man', '||period||', 'alright', '||comma||', 'listen', '||period||', 'just', 'tell', 'me', 'something', '||comma||', 'what', 'are', 'you', 'gonna', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'know', 'what', "i'm", 'gonna', 'say', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'but', 'i', 'would', 'like', 'to', 'hear', 'it', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'i', "don't", 'wanna', 'say', 'it', 'out', 'loud', '||period||', 'kills', 'the', 'spontaneity', '||period||', 'you', 'know', '||comma||', 'gleason', '||comma||', 'he', 'never', 'rehearsed', '||period||', '||leftparen||', 'indicates', 'phone', '||rightparen||', "'kay", '||comma||', 'go', "'head", '||comma||', 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dialling', '||rightparen||', 'alright', '||comma||', 'okay', '||period||', 'you', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'playing', 'with', 'his', 'hair', '||rightparen||', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "how's", 'your', 'hair', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||comma||', 'yeah', '||comma||', "it's", 'good', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'handing', 'over', 'the', 'phone', '||rightparen||', "you're", 'not', 'the', 'type', 'that', 'should', 'be', 'playing', 'with', 'matches', '||comma||', 'seriously', 'kramer', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'listens', '||rightparen||', 'uh', '||comma||', 'yes', '||period||', 'uh', 'uh', '||comma||', 'doctor', 'uh', '||comma||', 'reston', '||comma||', 'is', 'he', 'in', '||questionmark||', 'well', '||comma||', 'this', 'is', 'kramer', 'and', 'uh', '||comma||', "he's", 'expecting', 'my', 'call', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mouths', 'silently', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'singing', '||rightparen||', '||period||', '||period||', '||period||', 'johnny', '||period||', '||period||', '||period||', 'was', 'a', 'rebel', '||period||', 'he', 'rode', 'through', 'the', 'land', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'yu', 'uh', '||comma||', 'yes', '||comma||', 'yes', 'uh', '||comma||', 'uh', '||comma||', 'doctor', 'reston', '||period||', 'uhm', 'well', '||comma||', 'hello', 'there', '||period||', 'ahh', 'yeah', '||comma||', 'well', '||comma||', "i'm", 'a', 'good', 'friend', 'of', "elaine's", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'animated', '||comma||', 'but', 'quietly', '||rightparen||', 'no', '||comma||', 'no', '||period||', 'not', 'friends', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'well', '||comma||', 'actually', 'uh', '||comma||', "we're", 'uh', '||comma||', "we're", 'not', 'friends', 'uh', '||comma||', "we're", 'uh', '||comma||', "we're", 'much', 'more', 'than', 'friends', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'and', 'uh', '||comma||', "i'm", 'afraid', 'we', 'have', 'a', 'bit', 'of', 'a', 'problem', '||period||', 'well', '||comma||', 'the', 'point', 'is', '||comma||', 'doctor', 'uh', '||comma||', "i'm", 'very', 'much', 'in', 'love', 'with', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'and', 'uh', '||comma||', "she's", 'very', 'much', 'in', 'love', 'with', 'me', '||comma||', 'and', 'uh', '||comma||', 'well', 'uh', '||comma||', 'we', 'would', 'uh', '||comma||', 'appreciate', 'it', 'if', 'you', 'would', 'cease', 'and', 'desist', '||comma||', 'and', 'allow', 'us', 'to', 'pursue', 'our', 'courtship', 'unfettered', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mouths', 'silently', '||rightparen||', "that's", 'perfect', '||exclammark||', '||return||', '||return||', 'kramer:', 'if', 'not', '||comma||', 'i', 'can', 'assure', 'you', '||comma||', 'doctor', '||comma||', 'that', 'i', 'can', 'make', 'things', 'very', 'unpleasant', 'for', 'you', 'and', 'your', 'staff', '||period||', 'if', 'you', 'have', 'one', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||period||', 'yeah', '||comma||', 'but', 'the', 'point', 'that', 'i', '||period||', '||period||', '||period||', '||leftparen||', 'listens', '||rightparen||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'ah', '||comma||', 'ye', '||period||', '||period||', '||period||', '||leftparen||', 'listens', '||rightparen||', 'well', '||comma||', 'no', '||period||', '||period||', '||period||', 'uh', '||comma||', 'yeah', '||comma||', "that's", 'possible', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'listens', '||rightparen||', '||period||', '||period||', '||period||', 'well', '||comma||', 'i', 'suppose', 'i', 'could', '||comma||', '||leftparen||', 'turns', 'away', 'from', 'elaine', '||rightparen||', 'but', "i'd", 'have', 'to', 'shift', 'a', 'few', 'things', 'around', '||comma||', 'uhm', '||period||', '||period||', '||period||', 'hold', 'on', 'for', 'a', 'second', '||comma||', 'will', 'you', '||questionmark||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'uh', '||comma||', 'go', 'ahead', '||comma||', 'yeah', '||period||', '||leftparen||', 'listens', 'and', 'makes', 'a', 'note', '||rightparen||', 'alright', 'uh', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'yeah', '||comma||', 'okay', '||period||', '||period||', '||period||', 'i', 'look', 'forward', 'to', 'it', 'too', '||period||', '||leftparen||', 'listens', '||rightparen||', 'eh', '||comma||', 'hah', '||comma||', 'okay', '||period||', 'so', 'long', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', "what'd", 'he', 'say', '||questionmark||', '||leftparen||', 'indicates', 'pad', '||rightparen||', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'okay', 'now', '||period||', 'he', 'uh', '||comma||', 'you', 'know', '||comma||', 'he', 'uh', '||comma||', 'wants', 'to', 'get', 'together', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'horrified', '||rightparen||', 'get', 'together', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'he', 'wants', 'to', 'talk', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'why', "didn't", 'you', 'say', 'no', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'momentary', 'confusion', '||rightparen||', 'wha', '||period||', '||period||', '||period||', '||questionmark||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'thoughtful', '||rightparen||', "that's", 'interesting', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'frustration', '||rightparen||', 'ugh', '||exclammark||', '||return||', '||return||', 'naomi:', 'did', 'you', 'enjoy', 'your', 'poisson', '||questionmark||', '||return||', '||return||', 'helen:', 'it', 'was', '||period||', '||period||', '||period||', 'different', '||period||', '||return||', '||return||', 'naomi:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'and', 'how', 'was', 'yours', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'very', 'good', '||period||', '||return||', '||return||', 'naomi:', 'you', 'should', 'try', 'our', 'mousse', '||period||', '||leftparen||', 'a', 'little', 'flirtatious', '||rightparen||', "it'll", 'change', 'your', 'life', 'expectancy', '||period||', '||return||', '||return||', 'jerry:', 'no', 'thanks', '||comma||', 'just', 'the', 'check', '||period||', '||return||', '||return||', 'helen:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'helen:', 'why', "didn't", 'you', 'flirt', 'with', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||return||', '||return||', 'helen:', 'she', 'was', 'flirting', 'with', 'you', '||period||', 'why', "didn't", 'you', 'say', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'gonna', 'say', '||questionmark||', '||return||', '||return||', 'helen:', 'you', 'just', 'sat', 'there', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'made', 'me', 'uncomfortable', '||period||', '||return||', '||return||', 'helen:', "you're", 'a', 'comedian', '||comma||', "couldn't", 'you', 'come', 'up', 'with', 'something', '||questionmark||', '||return||', '||return||', 'leo:', '||leftparen||', 'to', 'morty', '||rightparen||', "where's", 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'jerry:', 'in', 'the', 'back', '||comma||', 'on', 'your', 'right', '||period||', '||return||', '||return||', 'jerry:', 'dad', '||exclammark||', '||return||', '||return||', 'morty:', 'will', 'you', 'stop', 'it', 'jerry', '||period||', 'let', 'go', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'will', 'you', 'let', 'me', 'pay', 'just', 'once', '||period||', '||return||', '||return||', 'morty:', "you're", 'out', 'of', 'your', 'mind', '||period||', '||return||', '||return||', 'jerry:', 'how', 'you', 'gonna', 'pay', '||questionmark||', 'you', "don't", 'even', 'have', 'a', 'wallet', '||exclammark||', '||return||', '||return||', 'morty:', "don't", 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'morty:', "what's", 'the', 'difference', '||comma||', "we'll", 'figure', 'something', 'out', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'jerry', '||rightparen||', "you're", 'not', 'paying', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'fine', '||period||', 'you', 'figure', 'something', 'out', '||period||', "i'd", 'be', 'very', 'curious', 'to', 'know', 'how', 'you', 'pick', 'up', 'a', 'check', 'with', 'no', 'money', '||period||', "'cause", 'if', 'this', 'works', '||comma||', 'the', 'whole', 'monetary', "system's", 'obsolete', '||comma||', "we're", 'back', 'to', 'wampum', '||period||', '||leftparen||', 'standing', '||rightparen||', "i'm", 'going', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'morty:', 'how', 'the', 'hell', 'am', 'i', 'gonna', 'pay', 'for', 'this', '||questionmark||', '||return||', '||return||', 'leo:', 'they', 'give', 'you', 'some', 'portion', 'here', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||period||', '||leftparen||', 'broaching', 'a', 'subject', '||rightparen||', 'hey', 'uncle', 'leo', '||comma||', 'i', 'hope', 'i', "wasn't", 'uh', '||comma||', 'rude', 'to', 'you', 'that', 'day', 'i', 'bumped', 'into', 'you', 'on', 'the', 'street', '||period||', 'uh', '||comma||', 'i', 'really', 'did', 'have', 'to', 'get', 'to', 'a', 'meeting', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'preening', 'himself', 'in', 'the', 'mirror', '||rightparen||', 'aw', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'understand', '||period||', 'i', 'got', 'plenty', 'of', 'friends', 'in', 'showbusiness', '||period||', 'i', 'know', "you're", 'all', 'very', 'busy', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'found', 'that', 'watch', 'in', 'the', 'garbage', 'can', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'leo:', 'yeah', '||period||', 'in', 'fact', 'it', 'was', 'right', 'after', 'i', 'ran', 'into', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'heh', '||period||', 'you', 'know', '||comma||', 'a', 'friend', 'of', 'mine', 'has', 'a', 'watch', 'just', 'like', 'that', '||period||', "i'd", 'love', 'to', 'replace', 'it', 'for', 'him', 'as', 'a', 'gift', '||period||', '||return||', '||return||', 'leo:', 'well', '||comma||', 'i', "haven't", 'seen', 'too', 'many', 'like', '||leftparen||', 'indicating', 'watch', '||rightparen||', 'these', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', 'maybe', 'uh', '||comma||', 'you', 'wanna', 'sell', 'me', 'that', 'one', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'sarcastic', '||rightparen||', 'aww', '||comma||', 'sure', '||period||', '||leftparen||', 'laughter', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulling', 'leo', 'back', 'in', '||rightparen||', 'hang', 'on', 'a', 'second', '||period||', 'i', 'got', 'a', 'little', 'proposition', 'for', 'you', '||period||', '||return||', '||return||', 'doorman:', '||leftparen||', 'into', 'phone', '||rightparen||', "there's", 'a', 'george', 'bonanza', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'george:', 'costanza', '||period||', 'costanza', '||period||', '||return||', '||return||', 'doorman:', '||leftparen||', 'into', 'phone', '||rightparen||', 'george', 'costanza', '||period||', '||return||', '||return||', 'george:', 'the', 'guy', 'who', 'pitched', 'him', 'the', 'show', 'with', 'the', 'stories', 'about', 'nothing', '||period||', '||leftparen||', 'snaps', 'fingers', '||rightparen||', 'jerry', 'seinfeld', '||period||', 'jerry', "seinfeld's", 'friend', '||period||', '||return||', '||return||', 'doorman:', '||leftparen||', 'into', 'phone', '||rightparen||', 'seinfeld', 'friend', '||period||', '||leftparen||', 'he', 'listens', '||rightparen||', '||leftparen||', 'to', 'george', '||rightparen||', 'he', 'says', '||comma||', 'call', 'him', 'monday', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'into', 'phone', '||comma||', 'frantic', '||rightparen||', 'mister', 'dalrimple', '||exclammark||', 'mister', 'dalrimple', 'i', 'have', 'to', 'talk', 'to', 'you', '||exclammark||', '||return||', '||return||', 'doorman:', 'excuse', 'me', '||period||', '||return||', '||return||', 'george:', "it's", 'about', 'the', 'show', '||period||', 'it', '||period||', '||period||', '||period||', 'no', '||comma||', 'it', 'was', '||period||', '||period||', '||period||', '||return||', '||return||', 'doorman:', 'excuse', 'me', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'it', 'was', 'all', 'a', 'terrible', 'misunderstanding', '||comma||', 'sir', '||period||', 'just', 'five', 'minutes', '||period||', 'just', 'five', 'minutes', 'of', 'your', 'time', '||period||', '||leftparen||', 'listens', '||rightparen||', 'thank', 'you', '||exclammark||', 'thank', 'you', '||comma||', 'mister', 'dalrimple', '||period||', '||return||', '||return||', 'doorman:', '||leftparen||', 'into', 'phone', '||rightparen||', 'very', 'good', '||comma||', 'sir', '||period||', '||return||', '||return||', 'morty:', 'you', "don't", 'understand', '||period||', 'i', "can't", 'allow', 'my', 'son', 'to', 'pay', 'for', 'me', '||period||', 'look', '||comma||', 'as', 'soon', 'as', 'i', 'get', 'back', 'to', 'florida', '||comma||', 'i', 'promise', 'you', "i'll", 'mail', 'you', 'a', 'check', '||period||', '||return||', '||return||', 'maitre', "d':", 'why', "don't", 'you', 'just', 'let', 'him', 'pay', '||comma||', 'and', 'then', 'you', 'can', 'pay', 'him', 'back', '||questionmark||', '||return||', '||return||', 'morty:', 'no', '||comma||', 'no', '||comma||', 'he', "won't", 'let', 'me', 'do', 'that', '||period||', '||return||', '||return||', 'maitre', "d':", 'why', "don't", 'you', 'just', 'put', 'the', 'money', 'in', 'his', 'pants', 'pocket', '||comma||', 'unsuspectingly', '||questionmark||', '||return||', '||return||', 'morty:', 'he', 'could', 'wash', 'them', '||period||', '||return||', '||return||', 'maitre', "d':", 'monsieur', '||comma||', 'we', 'are', 'running', 'a', 'reputable', 'business', '||period||', '||return||', '||return||', 'morty:', "don't", 'tell', 'me', 'about', 'business', '||exclammark||', 'i', 'sold', 'raincoats', 'for', 'thirty', '||dash||', 'five', 'years', '||exclammark||', '||return||', '||return||', 'maitre', "d':", 'aha', '||comma||', 'but', 'you', 'did', 'not', 'give', 'them', 'away', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'morty:', 'you', "don't", 'understand', 'my', '||period||', '||period||', '||period||', '||return||', '||return||', 'maitre', "d':", 'ah', '||comma||', 'monsieur', '||comma||', 'i', 'cannot', 'get', 'involved', 'with', 'you', 'and', 'your', 'family', '||comma||', 'ah', '||period||', '||return||', '||return||', 'elaine:', 'now', 'look', '||comma||', "don't", 'take', 'too', 'long', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'around', '||rightparen||', 'look', 'at', 'this', 'building', '||period||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', "it's", 'a', 'building', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'indicating', '||rightparen||', 'the', "door's", 'on', 'a', 'diagonal', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'around', '||rightparen||', "it's", 'architecturally', 'incorrect', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'frustrated', '||rightparen||', 'just', 'go', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sidling', 'in', '||rightparen||', 'is', 'this', 'a', 'bad', 'time', '||questionmark||', 'i', 'hope', "i'm", 'not', 'disturbing', 'anything', '||period||', '||return||', '||return||', 'russell:', 'we', 'were', 'about', 'to', 'sit', 'down', 'to', 'dinner', '||period||', '||return||', '||return||', 'russell:', '||leftparen||', 'indicating', '||rightparen||', 'this', 'is', 'cynthia', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', 'the', 'apartment', 'more', 'fully', '||rightparen||', 'oh', '||period||', 'oh', '||comma||', 'hi', '||comma||', 'hi', '||period||', 'hi', '||period||', 'nice', 'to', 'meet', 'you', '||period||', '||leftparen||', 'peering', 'at', 'the', 'table', '||rightparen||', "what're", 'you', 'having', '||comma||', 'veal', '||questionmark||', '||return||', '||return||', 'russell:', 'no', '||period||', '||return||', '||return||', 'george:', 'looks', 'like', 'veal', '||period||', '||return||', '||return||', 'russell:', "it's", 'not', 'veal', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'a', 'good', 'looking', 'piece', 'of', 'meat', '||period||', '||leftparen||', 'laughs', 'nervously', '||rightparen||', 'wow', '||comma||', 'this', 'is', 'some', 'place', '||period||', 'a', 'duplex', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'indicating', '||rightparen||', 'look', 'at', 'this', '||comma||', 'you', 'got', 'stairs', 'in', 'an', 'apartment', '||period||', 'all', 'my', 'life', '||comma||', 'i', 'dreamed', 'about', 'having', 'steps', 'in', 'an', 'apartment', '||period||', 'even', 'one', 'step', '||period||', 'sunken', 'living', 'room', '||period||', 'although', '||comma||', 'one', 'step', 'is', 'really', 'not', 'all', 'that', 'sunken', '||period||', '||leftparen||', 'tries', 'hard', 'to', 'elicit', 'a', 'laugh', '||rightparen||', '||return||', '||return||', 'russell:', 'who', 'gave', 'you', 'my', 'address', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'a', 'fair', 'question', '||period||', 'it', 'is', '||comma||', 'uhm', '||period||', '||period||', '||period||', '||leftparen||', 'nervous', 'chuckle', '||rightparen||', 'jerry', '||comma||', 'yeah', '||period||', '||leftparen||', 'to', 'cynthia', '||rightparen||', "jerry's", 'a', 'friend', 'of', 'mine', '||period||', '||leftparen||', 'to', 'russell', '||rightparen||', 'he', 'uh', '||comma||', 'he', 'gave', 'it', 'to', 'me', '||period||', 'unbelievable', 'how', 'many', 'addresses', 'of', 'people', 'this', 'guy', 'has', '||period||', '||return||', '||return||', 'george:', "he's", 'got', 'marlon', "brando's", '||period||', 'i', 'could', 'go', 'to', 'marlon', "brando's", 'house', 'if', 'i', 'really', 'wanted', '||period||', '||return||', '||return||', 'george:', 'course', '||comma||', 'i', "wouldn't", '||comma||', 'i', 'mean', 'uh', '||comma||', 'the', 'guy', 'is', 'uh', '||comma||', 'well', 'obviously', '||leftparen||', 'to', 'cynthia', '||comma||', 'as', 'she', 'passes', '||rightparen||', 'the', 'guy', 'has', 'his', 'problems', '||period||', '||return||', '||return||', 'russell:', 'so', '||comma||', "what's", 'the', 'surprise', '||questionmark||', 'you', 'wanna', 'talk', 'about', 'the', 'show', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', "it's", 'really', 'very', 'funny', '||comma||', 'because', 'you', 'know', 'what', 'we', 'got', 'here', '||comma||', 'really', '||questionmark||', 'we', 'really', '||comma||', 'really', '||comma||', 'just', 'have', 'a', 'terrible', 'misunderstanding', '||period||', 'you', 'see', '||comma||', 'when', 'i', 'passed', 'on', 'the', 'deal', '||comma||', 'i', 'thought', "that's", 'what', 'jerry', 'wanted', 'me', 'to', 'say', '||period||', "y'know", '||comma||', 'i', '||comma||', 'i', 'misinterpreted', '||period||', '||return||', '||return||', 'cynthia:', '||leftparen||', 'bored', '||rightparen||', 'russell', '||comma||', "where's", 'the', 'tv', 'guide', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'what', 'time', 'is', 'it', '||questionmark||', 'eight', 'thirty', '||questionmark||', "i'll", 'tell', 'you', "what's", 'on', '||period||', 'you', 'got', 'major', 'dad', '||comma||', 'blossom', '||comma||', 'very', 'funny', 'programme', '||period||', '||period||', '||period||', '||return||', '||return||', 'russell:', "blossom's", 'on', 'monday', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'sure', '||questionmark||', 'oh', '||comma||', 'look', 'who', "i'm", 'talking', 'to', '||period||', 'the', 'president', 'of', 'nbc', '||period||', '||leftparen||', 'forced', 'laughter', '||rightparen||', '||return||', '||return||', 'russell:', 'look', 'mister', 'costanza', '||comma||', "it's", 'too', 'late', 'now', 'anyway', '||period||', 'i', 'already', 'made', 'a', 'deal', 'with', 'another', 'writing', 'team', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'worried', '||rightparen||', 'alright', '||comma||', 'alright', '||period||', 'look', '||comma||', "we're", 'people', '||comma||', 'you', 'and', 'me', '||comma||', 'huh', '||questionmark||', 'businessmen', '||period||', 'colleagues', '||comma||', 'if', 'i', 'may', '||period||', "let's", 'not', 'quibble', '||period||', "we'll", 'do', 'it', 'for', 'the', 'thirteen', 'thousand', '||period||', 'thirteen', 'thousand', '||comma||', 'and', 'i', 'never', 'came', 'up', 'here', '||comma||', 'we', 'never', 'talked', '||comma||', 'alright', '||period||', 'you', 'take', 'good', 'care', '||period||', '||leftparen||', 'moving', 'past', 'russell', 'toward', 'the', 'door', '||rightparen||', 'it', 'was', 'nice', 'seeing', 'you', 'again', '||comma||', 'and', 'nice', 'meeting', 'you', '||period||', '||leftparen||', 'to', 'cynthia', '||rightparen||', 'cynthia', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'russell:', 'alright', '||comma||', 'now', 'look', '||period||', 'these', 'deals', 'are', 'already', 'made', '||period||', '||return||', '||return||', 'george:', 'awright', '||comma||', 'lemme', 'just', 'say', 'this', '||period||', 'ten', 'thousand', 'dollars', '||comma||', 'alright', '||comma||', 'and', 'now', "i'm", 'going', 'below', 'what', 'you', 'wanted', 'to', 'pay', '||period||', 'you', 'have', 'your', 'dinner', '||comma||', 'have', 'your', 'veal', '||comma||', 'or', 'whatever', 'it', 'is', '||period||', 'enjoy', '||period||', '||period||', '||period||', '||return||', '||return||', 'russell:', 'mister', 'costanza', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "that's", 'it', '||period||', 'alright', '||comma||', 'good', '||comma||', 'eight', 'thousand', 'dollars', '||period||', '||leftparen||', 'to', 'cynthia', '||rightparen||', 'cynthia', '||comma||', 'again', '||comma||', 'nice', 'meeting', 'you', '||period||', 'have', 'i', 'commented', 'on', 'the', 'shoes', '||questionmark||', 'i', 'love', 'suede', '||comma||', "it's", 'so', 'thick', 'and', 'rich', '||period||', 'did', 'you', 'ever', '||comma||', 'you', 'ever', 'rub', 'it', 'against', 'the', 'grain', '||questionmark||', 'alright', '||comma||', 'anyway', '||period||', '||period||', '||period||', '||return||', '||return||', 'cynthia:', '||leftparen||', 'bored', '||comma||', 'frustrated', '||rightparen||', 'russell', '||comma||', 'can', 'we', 'eat', '||questionmark||', '||return||', '||return||', 'russell:', '||leftparen||', 'to', 'george', '||rightparen||', 'alright', '||period||', 'eight', 'thousand', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleased', '||rightparen||', "you've", 'made', 'jerry', 'very', 'happy', '||period||', '||return||', '||return||', 'george:', 'may', 'i', 'just', 'use', 'your', 'bathroom', 'for', 'a', 'moment', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'two', 'hundred', '||comma||', 'but', "that's", 'as', 'high', 'as', 'i', 'can', 'go', '||period||', 'i', 'really', 'think', "you're", 'being', 'unreasonable', 'here', '||exclammark||', '||return||', '||return||', 'leo:', 'jerry', '||comma||', "i'd", 'give', 'you', 'the', 'watch', '||period||', "it's", 'not', 'the', 'money', '||comma||', 'i', 'happen', 'to', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'i', 'happen', 'to', 'know', 'how', 'much', 'that', 'watch', 'cost', '||period||', "it's", 'a', 'sixty', 'dollar', 'watch', '||comma||', 'you', 'paid', 'forty', 'to', 'get', 'it', 'fixed', '||period||', "that's", 'a', 'hundred', 'dollars', '||period||', "i'm", 'offering', 'you', 'two', 'hundred', '||exclammark||', '||return||', '||return||', 'leo:', '||leftparen||', 'indicating', '||rightparen||', "i've", 'never', 'seen', 'a', 'band', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', 'aww', '||comma||', 'right', '||period||', 'three', 'hundred', '||comma||', 'plus', 'fifty', 'for', 'the', 'repair', '||period||', 'three', 'fifty', '||comma||', "that's", 'it', '||exclammark||', '||return||', '||return||', 'leo:', 'you', 'have', 'it', 'on', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'think', 'i', 'do', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'under', 'his', 'breath', '||rightparen||', 'this', 'is', 'unbelievable', '||period||', '||return||', '||return||', 'morty:', 'what', 'the', 'hell', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'it', 'uh', '||comma||', '||leftparen||', 'offering', 'his', 'hand', '||rightparen||', "it's", 'a', 'pleasure', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'reston:', '||leftparen||', 'shaking', 'hands', '||rightparen||', 'thank', 'you', 'for', 'coming', 'in', '||period||', '||return||', '||return||', 'kramer:', 'thank', 'you', '||period||', '||return||', '||return||', 'reston:', 'please', '||comma||', 'sit', 'down', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quiet', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'reston:', 'could', 'i', 'offer', 'you', 'something', 'to', 'drink', '||period||', 'uhm', '||comma||', 'coffee', '||questionmark||', 'anything', '||questionmark||', '||return||', '||return||', 'kramer:', 'okay', 'uh', '||comma||', 'yeah', '||period||', "i'll", 'have', 'a', 'uh', '||comma||', 'you', 'have', 'a', 'decaf', 'cappuccino', '||questionmark||', '||return||', '||return||', 'reston:', 'i', "don't", 'think', 'we', 'have', 'that', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'a', 'little', 'strange', '||period||', '||return||', '||return||', 'reston:', 'uh', '||comma||', 'why', 'does', 'that', 'surprise', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'uh', '||comma||', "it's", 'a', 'very', 'popular', 'drink', '||return||', '||return||', 'reston:', 'this', 'is', 'an', 'office', '||period||', '||return||', '||return||', 'kramer:', "that's", 'true', '||period||', 'but', '||comma||', 'you', 'know', '||comma||', 'i', "can't", 'help', 'but', 'think', 'that', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'reston:', '||leftparen||', 'interrupting', '||rightparen||', 'so', 'tell', 'me', 'mister', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'okay', '||comma||', 'yes', '||comma||', 'shoot', '||period||', '||return||', '||return||', 'reston:', 'tell', 'me', 'all', 'about', 'uh', '||comma||', 'you', 'and', 'elaine', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'alrighty', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'we', 'have', 'here', '||comma||', 'doctor', '||comma||', 'is', 'uhm', '||comma||', 'an', 'extraordinary', 'situation', '||period||', '||return||', '||return||', 'reston:', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'better', 'believe', 'it', '||period||', '||return||', '||return||', 'davola:', '||leftparen||', 'singing', '||rightparen||', "'", '||period||', '||period||', '||period||', 'travelling', 'along', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'elaine/davola:', "'", '||period||', '||period||', '||period||', 'singing', 'a', 'song', '||comma||', 'side', 'by', 'side', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'elaine:', 'wow', '||period||', 'you', 'really', 'have', 'a', 'terrible', 'voice', '||period||', '||return||', '||return||', 'davola:', 'do', 'i', 'know', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'uhh', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'davola:', "'cos", 'you', 'really', 'look', 'familiar', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', 'maybe', "you've", 'seen', 'me', '||period||', 'my', 'face', 'is', 'on', 'uhm', '||comma||', 'mount', '||return||', '||return||', 'davola:', 'oh', 'yes', '||comma||', 'of', 'course', '||comma||', "that's", 'it', '||period||', 'i', 'guess', "i'm", 'just', 'used', 'to', 'seeing', 'it', 'on', 'a', 'much', 'larger', 'scale', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'right', '||period||', 'i', 'replaced', 'uh', '||comma||', 'teddy', 'roosevelt', '||period||', '||return||', '||return||', 'davola:', 'oh', 'really', '||period||', '||return||', '||return||', 'elaine:', 'umm', '||period||', 'trustbuster', '||period||', 'bust', 'this', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'never', 'thought', 'of', 'it', 'like', 'that', 'before', '||comma||', 'doctor', '||period||', '||leftparen||', 'points', '||rightparen||', 'you', '||comma||', 'are', 'absolutely', 'right', '||period||', '||return||', '||return||', 'reston:', "i'm", 'glad', 'we', 'agree', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reaching', 'in', 'pocket', '||rightparen||', 'hey', '||comma||', 'would', 'you', 'like', 'a', 'cigar', '||questionmark||', "y'know", '||comma||', "they're", 'cubans', '||period||', '||return||', '||return||', 'reston:', "i'd", 'love', 'one', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'you', 'know', '||comma||', 'i', 'think', 'elaine', 'is', 'a', 'wonderful', 'woman', '||period||', 'you', 'two', 'are', 'gonna', 'make', 'a', 'wonderful', 'couple', '||period||', '||return||', '||return||', 'reston:', 'if', 'you', 'ever', 'feel', '||comma||', 'a', 'need', 'to', 'talk', 'to', 'someone', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'lighting', 'dr', "reston's", 'cigar', '||rightparen||', 'uh', 'huh', '||period||', '||return||', '||return||', 'reston:', '||period||', '||period||', '||period||', 'about', 'anything', '||period||', 'you', 'have', 'my', 'number', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'lighting', 'his', 'own', 'cigar', '||rightparen||', 'well', '||comma||', "that's", 'very', 'kind', 'of', 'you', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||comma||', 'these', 'are', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quiet', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'i', 'cannot', 'believe', "i'm", 'doing', 'this', '||period||', 'i', 'never', 'meet', 'people', 'like', 'this', '||period||', "you're", 'not', 'a', 'nut', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'davola:', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', "i'm", 'doing', 'this', '||period||', 'i', 'never', 'do', 'stuff', 'like', 'this', '||period||', '||return||', '||return||', 'naomi:', '||leftparen||', 'joking', '||rightparen||', 'really', '||questionmark||', 'i', 'give', 'out', 'my', 'number', 'to', 'just', 'about', 'every', 'customer', 'who', 'comes', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'really', '||questionmark||', 'you', "don't", 'seem', 'that', 'desperate', '||period||', '||return||', '||return||', 'naomi:', '||leftparen||', 'playing', 'it', 'straight', '||rightparen||', 'oh', 'yeah', '||period||', 'actually', '||comma||', "i'm", 'a', 'little', 'disappointed', '||period||', 'i', 'kind', 'of', 'had', 'my', 'eye', 'on', 'uncle', 'leo', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', 'well', 'uh', '||comma||', "i'll", 'give', 'you', 'a', 'call', '||comma||', 'and', 'thanks', 'for', 'the', 'fish', '||period||', 'by', 'the', 'way', '||comma||', 'you', 'know', 'why', 'fish', 'are', 'so', 'thin', '||questionmark||', '||return||', '||return||', 'naomi:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'eat', 'fish', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', 'what', 'took', 'you', 'so', 'long', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "he's", 'a', 'terrific', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'wha', '||period||', '||period||', '||period||', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', "what'd", 'he', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'we', 'talked', 'about', 'a', 'lot', 'of', 'things', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'you', 'talked', 'about', 'a', 'lot', 'of', 'things', '||questionmark||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'yeah', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'did', 'you', 'talk', 'about', 'us', '||questionmark||', '||return||', '||return||', 'davola', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', "i'm", 'in', 'love', '||period||', 'i', 'just', 'met', 'her', 'outside', 'in', 'the', 'street', '||period||', 'her', '||return||', '||return||', 'reston', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'did', 'you', 'say', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'come', 'the', 'psychiatrist', '||comma||', 'every', '||comma||', 'the', 'hour', 'is', 'only', 'fifty', 'minutes', '||questionmark||', 'wha', '||comma||', 'what', 'do', 'they', 'do', 'with', 'that', 'ten', 'minutes', 'that', 'they', 'have', 'left', '||questionmark||', 'do', 'they', 'just', 'sit', 'there', 'going', '||comma||', '||quotemark||', 'boy', '||comma||', 'that', 'guy', 'was', 'crazy', '||period||', 'i', "couldn't", 'believe', 'the', 'things', 'he', 'was', 'saying', '||period||', 'what', 'a', 'nut', '||exclammark||', "who's", 'coming', 'in', 'next', '||questionmark||', 'oh', '||comma||', 'no', '||comma||', 'another', 'headcase', '||exclammark||', '||quotemark||', '||return||', '||return||', 'morty:', 'you', 'shoulda', 'told', 'me', 'it', "didn't", 'work', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'helen:', 'you', "didn't", 'have', 'to', 'throw', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'always', 'late', '||period||', 'it', 'was', 'frustrating', 'me', '||period||', "i'm", 'sorry', '||comma||', 'i', 'really', 'am', '||period||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'that', 'must', 'be', 'leo', '||period||', '||return||', '||return||', 'jerry:', 'i', 'woulda', 'taken', 'you', 'to', 'the', 'airport', '||period||', '||return||', '||return||', 'helen:', 'he', 'has', 'nothing', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', 'neither', 'do', 'i', '||period||', '||leftparen||', 'to', 'intercom', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'o', '||period||', 's', '||period||', '||rightparen||', ':', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||leftparen||', 'to', 'parents', '||rightparen||', "it's", 'george', '||period||', '||return||', '||return||', 'morty:', 'oh', '||comma||', "it's", 'george', '||period||', '||return||', '||return||', 'helen:', 'what', 'ever', 'happened', 'with', 'nbc', 'and', 'the', 'deal', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'george', 'turned', 'it', 'down', '||period||', '||return||', '||return||', 'helen:', 'he', 'turned', 'it', 'down', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'helen:', 'why', 'did', 'he', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'of', 'ted', 'danson', '||period||', '||return||', '||return||', 'helen:', 'what', 'does', 'ted', 'danson', 'have', 'to', 'do', 'with', 'it', '||questionmark||', '||return||', '||return||', 'morty:', 'maybe', 'he', "doesn't", 'like', 'ted', 'danson', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'fetching', 'a', 'drink', 'from', 'the', 'fridge', '||rightparen||', 'hey', '||comma||', 'who', 'knows', '||comma||', 'maybe', "we'll", 'wind', 'up', 'getting', 'more', 'money', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'georgie', '||dash||', 'boy', '||comma||', 'how', 'are', 'ya', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'mr', 'seinfeld', '||period||', '||leftparen||', 'shakes', "morty's", 'hand', '||rightparen||', 'hey', '||comma||', 'mrs', 'seinfeld', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'helen:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', "what'd", 'i', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'nbc', '||questionmark||', 'did', 'you', 'hear', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'as', 'a', 'matter', 'of', 'fact', '||comma||', 'i', 'did', '||period||', '||return||', '||return||', 'george:', 'we', 'got', 'a', 'deal', '||period||', '||return||', '||return||', 'morty/helen/jerry:', '||leftparen||', 'simultaneous', '||rightparen||', 'hey', '||exclammark||', "/that's", 'wonderful', '||exclammark||', '/we', 'got', 'a', 'deal', '||exclammark||', '||return||', '||return||', 'jerry:', 'heyy', '||exclammark||', 'terrific', '||period||', '||return||', '||return||', 'morty:', 'you', 'see', '||comma||', 'he', 'had', 'the', 'right', 'idea', '||period||', 'hold', 'out', '||period||', "that's", 'how', 'you', 'get', 'the', 'big', 'money', '||comma||', 'huh', 'george', '||questionmark||', '||leftparen||', 'slaps', 'george', 'on', 'the', 'shoulder', '||rightparen||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'please', '||comma||', 'morty', '||period||', '||return||', '||return||', 'morty:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'he', 'knows', 'how', 'to', 'talk', 'to', 'these', 'people', '||period||', 'no', '||dash||', "one's", 'gonna', 'take', 'advantage', 'of', 'georgie', '||period||', '||leftparen||', 'slaps', "george's", 'shoulder', 'again', '||rightparen||', '||return||', '||return||', 'george:', "i'm", 'just', 'happy', 'to', 'be', 'working', 'with', 'your', 'talented', 'son', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'aww', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', "who's", 'not', 'doing', 'this', 'for', 'the', 'money', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', "c'mon", '||period||', '||return||', '||return||', 'george:', 'you', 'have', 'no', 'idea', 'how', 'refreshing', 'that', 'is', '||period||', '||return||', '||return||', 'jerry:', 'so', "what'd", 'we', 'get', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'big', 'smile', '||rightparen||', 'eight', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'beautiful', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'quietly', '||rightparen||', "that's", 'uh', '||comma||', 'for', 'the', 'two', 'of', 'us', '||period||', '||return||', '||return||', 'helen:', 'four', 'thousand', 'apiece', '||questionmark||', '||return||', '||return||', 'jerry:', 'lemme', 'see', 'if', 'i', 'understand', 'this', '||period||', 'in', 'other', 'words', '||comma||', 'you', 'held', 'out', '||return||', '||return||', 'george:', 'i', 'was', 'wrong', '||comma||', 'you', 'were', 'right', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'basic', 'idea', 'of', 'negotiation', '||comma||', 'as', 'i', 'understand', 'it', '||comma||', 'is', 'to', 'get', 'your', 'price', 'to', 'go', '||period||', '||period||', '||period||', 'up', '||period||', '||return||', '||return||', 'george:', "you're", 'smart', '||comma||', "i'm", 'dumb', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'this', 'is', 'how', 'they', 'negotiate', 'in', 'the', 'bizarro', 'world', '||period||', '||return||', '||return||', 'helen:', "that's", 'gotta', 'be', 'leo', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'intercom', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'leo', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'leo', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "we're", 'coming', 'down', '||period||', '||return||', '||return||', 'morty:', 'alright', '||comma||', "let's", 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'dad', '||comma||', 'before', 'we', 'go', '||comma||', 'i', 'got', 'a', 'little', 'something', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'a', 'present', '||period||', '||return||', '||return||', 'morty:', 'a', 'present', '||questionmark||', '||return||', '||return||', 'morty:', 'hey', '||exclammark||', 'look', 'at', 'this', '||comma||', 'a', 'wallet', '||period||', 'exactly', 'what', 'i', 'needed', '||comma||', "y'see", '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'you', 'lost', 'your', 'wallet', '||comma||', 'i', 'figured', "i'd", 'get', 'you', 'another', 'one', '||period||', '||return||', '||return||', 'helen:', 'i', 'hope', 'you', "didn't", 'spend', 'too', 'much', 'on', 'that', '||period||', '||return||', '||return||', 'morty:', 'i', 'wanna', 'tell', 'you', '||period||', 'this', 'is', 'one', 'of', 'the', 'most', 'thoughtful', 'gifts', "anyone's", 'ever', 'given', 'me', '||period||', '||return||', '||return||', 'helen:', "he's", 'something', '||comma||', 'you', 'son', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', 'hah', '||comma||', 'alright', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'morty:', "you're", 'a', 'terrific', 'kid', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "he's", 'something', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'helen:', 'how', 'could', 'anybody', 'not', 'like', 'you', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', "you're", 'very', 'special', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointedly', '||rightparen||', 'yeah', '||comma||', "i'm", 'good', 'for', 'about', 'four', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'leo:', 'hey', '||comma||', "let's", 'go', '||exclammark||', "it's", 'twelve', '||leftparen||', 'checks', 'watch', '||rightparen||', 'uh', '||comma||', 'twelve', 'twenty', '||dash||', 'two', '||period||', '||return||', '||return||', 'morty:', 'alright', '||comma||', 'leo', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'uncle', 'leo', '||period||', '||return||', '||return||', 'leo:', 'hi', '||comma||', 'hi', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'some', 'beautiful', 'parking', 'spot', 'you', 'got', 'here', '||period||', '||return||', '||return||', 'leo:', 'yeah', '||comma||', 'i', 'hate', 'to', 'give', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'hey', '||comma||', 'dad', '||comma||', 'you', 'sure', 'you', "don't", 'need', 'any', 'more', 'money', '||questionmark||', '||return||', '||return||', 'morty:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'm", 'just', 'joking', '||period||', 'listen', '||comma||', 'have', 'a', 'nice', 'trip', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'hugging', 'jerry', '||rightparen||', 'bye', 'bye', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'george:', 'bye', 'mrs', 'seinfeld', '||comma||', 'take', 'care', '||period||', '||return||', '||return||', 'morty:', 'bye', 'bye', '||period||', '||leftparen||', 'hugging', 'jerry', '||rightparen||', 'thanks', 'again', 'for', 'the', 'wallet', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shaking', 'hands', 'with', 'morty', '||rightparen||', 'morty', '||comma||', 'always', 'a', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', 'take', 'care', 'now', '||period||', 'so', 'long', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'like', 'he', 'was', 'really', 'gonna', 'take', 'your', 'money', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'he', 'took', 'it', '||period||', 'i', 'put', 'four', 'hundred', 'dollars', 'in', 'the', 'new', 'wallet', '||period||', '||return||', '||return||', 'george:', "you're", 'kidding', '||period||', '||return||', '||return||', 'jerry:', 'he', 'lost', 'all', 'that', 'cash', '||period||', 'it', 'was', 'the', 'only', 'way', 'i', 'could', 'give', 'it', 'back', 'to', 'him', '||comma||', 'otherwise', 'he', "wouldn't", 'accept', 'it', '||period||', '||return||', '||return||', 'george:', 'man', '||comma||', 'would', 'i', 'like', 'to', 'see', 'the', 'look', 'on', 'his', 'face', '||period||', '||return||', '||return||', 'morty:', 'you', 'believe', 'this', '||questionmark||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', '||return||', '||return||', 'morty:', '||leftparen||', 'indicates', 'the', 'new', 'wallet', '||rightparen||', "it's", 'velcro', '||period||', '||return||', '||return||', 'helen:', "you're", 'kidding', '||period||', '||return||', '||return||', 'morty:', 'who', 'needs', 'this', '||questionmark||', '||return||', '||return||', 'morty:', 'leo', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'main', 'difference', 'between', 'the', "women's", 'wallet', 'and', 'the', "man's", 'wallet', '||comma||', 'is', 'the', 'photo', 'section', '||period||', 'true', '||questionmark||', 'women', 'carry', 'with', 'them', 'a', 'photograph', 'of', 'every', 'person', "they've", 'ever', 'met', '||comma||', 'every', 'day', 'in', 'their', 'whole', 'lives', '||comma||', 'since', 'the', 'beginning', 'of', 'time', '||period||', 'and', 'every', 'picture', 'is', 'out', 'of', 'date', '||period||', 'you', 'know', 'what', 'i', 'mean', '||questionmark||', "it's", '||comma||', '||quotemark||', "here's", 'my', 'cousin', '||comma||', 'three', 'years', 'old', '||period||', "she's", 'in', 'the', 'marines', 'now', '||period||', '||quotemark||', '||quotemark||', 'this', 'is', 'my', 'dog', '||period||', 'he', 'died', 'during', 'the', 'johnson', 'administration', '||period||', '||quotemark||', 'you', 'know', '||period||', 'you', 'get', 'stopped', 'by', 'a', 'cop', '||comma||', 'no', 'licence', '||comma||', 'no', 'registration', '||comma||', '||leftparen||', 'waves', 'imaginary', 'wallet', '||rightparen||', '||quotemark||', "here's", 'fifty', '||dash||', 'six', 'people', 'that', 'know', 'me', '||period||', '||quotemark||', 'cop', 'goes', '||period||', '||quotemark||', 'alright', '||comma||', "ma'am", '||comma||', 'just', 'wanted', 'to', 'make', 'sure', 'you', 'had', 'some', 'friends', '||comma||', 'move', 'it', 'along', '||period||', 'routine', 'pal', 'check', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'have', 'you', 'ever', 'called', 'someone', 'up', '||comma||', 'and', "you're", 'disappointed', 'when', 'they', 'answer', 'the', 'phone', '||questionmark||', 'you', 'wanted', 'the', 'machine', '||period||', 'you', 'know', '||comma||', 'and', "you're", 'always', 'kind', 'of', 'thrown', 'off', '||comma||', '||leftparen||', 'left', 'hand', 'up', 'to', 'side', 'of', 'face', '||comma||', 'pretending', 'its', 'a', 'receiver', '||rightparen||', 'you', 'go', '||quotemark||', 'oh', '||comma||', 'i', 'eh', '||comma||', 'i', '||dash||', 'i', "didn't", 'know', 'you', 'were', 'there', '||comma||', 'i', 'ah', '||dash||', 'just', 'wanted', 'to', 'leave', 'a', 'message', 'saying', '||comma||', 'sorry', 'i', 'missed', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'well', 'this', 'is', 'it', '||period||', '||return||', '||return||', 'naomi:', 'oh', '||comma||', 'this', 'is', 'nice', '||period||', 'thanks', 'again', 'for', 'the', 'chinese', 'food', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you're", 'welcome', '||period||', 'you', 'know', 'i', 'think', 'i', 'ate', 'too', 'much', 'of', 'that', 'garlic', '||period||', '||return||', '||return||', 'naomi:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'ate', 'the', 'whole', 'plate', '||period||', 'i', "didn't", 'know', 'those', 'little', 'things', 'were', 'garlic', '||period||', 'i', 'thought', 'they', 'were', 'peanuts', '||period||', '||return||', '||return||', 'naomi:', '||leftparen||', 'laughs', '||rightparen||', '||dash||', 'nnnhhahahahahahahahahahahahahaha', '||leftparen||', 'obnoxious', 'laugh', '||rightparen||', '||period||', 'oh', '||comma||', 'you', 'know', 'what', '||questionmark||', 'i', 'think', 'naked', 'gun', 'is', 'on', '||period||', 'oh', "i've", 'seen', 'it', '||period||', 'i', 'laughed', 'through', 'that', 'whole', 'thing', '||period||', 'you', 'wanna', 'watch', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'mean', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'naomi:', 'i', 'thought', 'you', 'liked', 'to', 'laugh', '||period||', 'i', 'thought', 'you', 'were', 'happy', 'go', 'lucky', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "i'm", 'not', 'happy', '||comma||', "i'm", 'not', 'lucky', '||comma||', 'and', 'i', "don't", 'go', '||period||', 'if', 'anything', "i'm", 'sad', 'stop', 'unlucky', '||period||', '||return||', '||return||', 'naomi:', 'ahahahahahahahahaha', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'funny', 'naomi', '||period||', '||return||', '||return||', 'naomi:', 'ah', 'hahahaha', '||period||', '||leftparen||', 'points', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'mean', 'to', 'be', 'funny', 'there', '||period||', 'why', "don't", 'you', 'check', 'the', 'tv', 'guide', '||period||', 'i', 'think', 'uh', '||comma||', 'holocaust', 'is', 'on', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'the', 'answering', 'machine', '||rightparen||', 'jerry', '||comma||', "it's", 'george', '||period||', 'hey', '||comma||', 'hey', 'are', 'you', 'all', 'set', 'for', 'the', 'weekend', '||period||', 'this', 'is', 'going', 'to', 'be', 'great', '||period||', "you're", 'going', 'to', 'have', 'a', 'great', 'time', 'with', 'naomi', '||period||', '||return||', '||return||', 'george:', '||leftparen||', "con't", '||rightparen||', 'all', 'right', '||comma||', 'you', 'know', "she's", 'got', 'that', 'laugh', '||period||', 'what', 'did', 'you', 'say', '||questionmark||', "it's", 'like', 'elmer', 'fudd', 'sitting', 'on', 'a', 'juicer', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', "con't", '||rightparen||', 'a', '||dash||', 'anyway', '||comma||', 'i', 'was', 'thinking', 'we', 'would', 'take', 'two', 'cars', 'up', 'to', 'the', 'cabin', 'and', 'that', 'way', 'if', 'one', 'of', 'wanted', 'to', 'stay', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'this', 'thing', 'has', 'never', 'worked', 'right', '||period||', '||leftparen||', 'holding', 'the', 'machine', 'in', 'his', 'hand', '||rightparen||', '||return||', '||return||', 'naomi:', 'you', 'think', 'i', '||comma||', 'laugh', 'like', 'elmer', 'fudd', 'sitting', 'on', 'a', 'juicer', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'first', 'of', 'all', 'elmer', 'fudd', 'is', 'one', 'of', 'the', 'most', 'beloved', 'internationally', 'known', 'cartoon', 'characters', 'of', 'all', 'time', '||period||', '||quotemark||', "i'm", 'going', 'to', 'kill', 'that', 'cwazy', 'wabbit', '||period||', '||period||', '||period||', 'hahahahahaaa', '||quotemark||', 'come', 'on', '||period||', 'not', 'only', 'that', '||comma||', 'a', 'juicer', 'is', 'one', 'of', 'the', 'healthiest', 'ways', '||period||', '||period||', '||period||', '||leftparen||', 'naomi', 'exits', '||rightparen||', 'it', 'makes', 'the', 'juice', '||period||', '||period||', '||period||', 'it', 'extracts', 'the', '||dash||', 'the', 'pulp', 'and', '||dash||', 'and', '||dash||', 'and', 'the', 'vitamins', '||comma||', 'for', '||dash||', 'for', 'long', 'life', 'and', '||dash||', 'and', '||dash||', 'and', 'vitality', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'leave', 'a', 'message', 'like', 'that', 'on', 'my', 'machine', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'how', 'could', 'you', 'just', 'play', 'your', 'message', 'in', 'front', 'of', 'anybody', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', "didn't", 'think', 'anyone', 'would', 'leave', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "didn't", 'think', 'anyone', 'would', 'play', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'now', "she's", 'not', 'going', 'away', 'for', 'this', 'weekend', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', 'not', "goin'", '||questionmark||', 'come', 'on', '||comma||', 'we', 'got', 'plans', 'here', '||period||', 'call', 'her', 'up', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "it's", 'better', 'anyway', '||period||', 'i', 'mean', 'really', '||period||', 'what', 'was', 'going', 'to', 'happen', '||questionmark||', "i'm", 'a', 'comedian', '||period||', 'how', 'can', 'i', 'go', 'out', 'with', 'a', 'girl', 'with', 'a', 'laugh', 'like', 'that', '||questionmark||', 'i', 'mean', 'izz', '||dash||', "it's", 'like', 'ah', '||comma||', "it's", 'like', 'coco', 'chanel', "goin'", 'out', 'with', 'a', 'fish', 'monger', '||period||', 'you', 'know', '||comma||', 'cause', "she's", 'with', 'all', 'the', 'perfumes', 'and', 'a', 'fish', "monger's", 'pretty', 'bad', 'smell', '||period||', '||return||', '||return||', 'george:', 'wh', '||dash||', 'well', 'maybe', 'you', 'should', 'ask', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'but', 'if', 'i', 'ask', 'elaine', '||comma||', 'then', 'kramer', 'will', 'feel', 'slighted', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', 'no', 'no', 'no', '||comma||', "don't", 'say', 'anything', 'to', 'kramer', '||period||', 'susan', "can't", 'stand', 'him', '||period||', 'he', 'vomited', 'all', 'over', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', '||period||', '||period||', 'wait', 'a', 'minute', 'do', 'you', 'smell', 'smoke', '||questionmark||', '||return||', '||return||', 'kramer:', 'hmm', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hello', 'boys', '||comma||', '||leftparen||', 'in', 'an', 'irish', 'accent', '||rightparen||', 'top', 'of', 'the', 'morning', 'to', 'ya', '||period||', 'what', 'do', 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'will', 'you', 'put', 'that', 'thing', 'out', 'before', 'you', 'start', 'another', 'fire', '||period||', 'you', 'had', 'to', 'give', 'him', 'a', 'box', 'of', 'cigars', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'what', 'are', 'you', 'guys', "doin'", 'this', 'weekend', '||questionmark||', '||return||', '||return||', 'jerry', 'and', 'george:', 'uh', 'uh', '||comma||', "we're", 'uh', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'because', "i'm", 'going', 'to', 'be', 'playing', 'golf', 'at', 'the', 'westchester', 'country', 'club', '||period||', 'mmh', '||period||', '||return||', '||return||', 'jerry:', 'westchester', '||questionmark||', "isn't", 'that', 'a', 'private', 'club', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'right', 'buddy', '||period||', "it's", 'private', '||period||', "it's", 'very', 'private', '||period||', 'but', 'i', 'met', 'the', 'pro', 'at', 'the', 'golf', 'shop', 'up', 'on', '49th', 'st', '||period||', '||dash||', '||dash||', 'i', 'gave', 'him', 'one', 'of', 'these', 'cubans', 'and', 'he', 'invites', 'me', 'up', 'to', 'play', 'a', 'free', 'round', '||period||', '||period||', '||period||', 'then', 'he', 'says', 'anytime', 'i', 'lay', 'one', 'of', 'these', 'babies', 'on', 'him', "it's", 'going', 'to', 'be', 'the', 'same', 'deal', '||period||', 'ha', 'ha', '||period||', "idn't", 'that', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'and', 'george', 'ye', '||comma||', 'hu', '||comma||', 'um', 'ye', '||comma||', '||return||', '||return||', 'kramer:', 'man', '||comma||', "i'm", 'going', 'to', 'be', 'hitting', 'the', 'links', 'all', 'weekend', '||period||', 'ffoooo', '||leftparen||', 'taking', 'an', 'imaginary', 'swing', '||comma||', 'he', 'makes', 'the', 'sound', 'of', 'a', 'golf', 'ball', 'being', 'hit', '||rightparen||', '||return||', '||return||', 'george:', 'gee', '||comma||', "that's", '||dash||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'too', 'bad', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', 'what', 'wa', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'cause', 'we', 'were', 'just', 'saying', 'we', 'were', 'going', 'to', 'ask', 'you', 'to', 'come', 'up', 'to', 'the', 'country', 'with', 'us', 'this', 'weekend', '||period||', "susan's", 'father', 'has', 'a', 'cabin', 'up', 'there', '||period||', 'but', '||comma||', 'eh', '||comma||', 'all', 'right', '||comma||', 'well', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', '||comma||', 'they', 'got', 'any', 'golf', 'courses', 'up', 'there', '||questionmark||', '||return||', '||return||', 'jerry', 'and', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', "that's", 'ah', '||comma||', "that's", 'pie', 'country', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'they', 'eh', '||comma||', 'they', 'do', 'a', 'lot', 'of', 'baking', 'up', 'there', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'they', 'sell', 'them', 'by', 'the', 'side', 'of', 'the', 'road', '||period||', 'blueberry', '||comma||', 'blackberry', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'blackberry', '||comma||', 'boysenberry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'boysenberry', '||comma||', 'huckleberry', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'huckleberry', '||comma||', 'raspberry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'raspberry', '||comma||', 'strawberry', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'strawberry', '||comma||', 'cranberry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'peach', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'i', "don't", 'want', 'to', 'tag', 'along', 'with', 'george', 'and', 'susan', '||period||', 'if', "you're", 'there', "it'll", 'be', 'a', 'better', 'group', '||period||', '||return||', '||return||', 'elaine:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "it's", 'an', 'autographed', 'picture', 'for', 'my', 'dry', 'cleaner', '||period||', 'i', 'never', 'know', 'what', 'to', 'write', 'on', 'these', 'things', '||period||', 'i', 'hate', "doin'", 'this', '||period||', '||return||', '||return||', 'elaine:', '||quotemark||', "i'm", 'very', 'impressed', '||quotemark||', '||questionmark||', '||period||', '||period||', '||period||', 'ah', 'you', 'mean', 'pressed', "caus'", 'its', 'like', 'a', 'dry', 'cleaner', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'see', "that's", 'why', 'i', 'hate', 'it', '||period||', 'so', '||comma||', 'come', 'on', '||comma||', 'you', 'going', 'to', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'what', 'about', 'the', 'sleeping', 'arrangements', '||questionmark||', 'in', 'the', 'cabin', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'um', 'same', 'bed', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||leftparen||', 'very', 'quietly', '||rightparen||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'and', 'uh', '||comma||', 'underwear', 'and', 'a', 'tee', 'shirt', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "you'd", 'be', 'naked', 'of', 'course', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', "that's", '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'mel:', 'excuse', 'me', '||comma||', 'jerry', 'seinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'mel:', 'my', "name's", 'sanger', '||comma||', 'mel', 'sanger', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'mel:', 'i', 'drive', 'that', 'truck', 'out', 'there', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'yoo', 'hoo', '||questionmark||', '||return||', '||return||', 'mel:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'yoo', 'hoo', '||period||', '||return||', '||return||', 'mel:', 'yes', '||comma||', "it's", 'a', 'fine', 'product', '||period||', 'anyway', 'i', 'saw', 'you', 'on', 'the', 'tonight', 'show', 'a', 'couple', 'weeks', 'ago', '||period||', 'i', 'was', 'watching', 'the', 'show', 'with', 'my', 'son', 'donald', '||period||', "he's", 'got', 'this', 'rare', 'immune', 'deficiency', 'in', 'his', 'blood', '||period||', '||period||', '||period||', 'the', 'damnedest', 'thing', '||period||', 'doctors', 'say', 'he', 'has', 'to', 'live', 'in', 'a', 'plastic', 'bubble', '||period||', 'can', 'you', 'imagine', 'that', '||questionmark||', 'a', 'bubble', '||period||', '||return||', '||return||', 'jerry:', 'a', 'bubble', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'bubble', '||questionmark||', '||return||', '||return||', 'mel:', 'yes', '||comma||', 'a', 'bubble', '||exclammark||', '||return||', '||return||', 'mel:', 'do', 'you', 'mind', '||questionmark||', 'may', 'i', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'sure', '||period||', '||return||', '||return||', 'mel:', 'ah', '||comma||', "it'd", 'break', 'your', 'heart', "seein'", 'him', 'in', 'there', '||period||', "it's", 'like', 'a', 'prisoner', '||period||', 'no', 'friends', '||dash||', 'just', 'his', 'mother', 'and', 'me', '||period||', 'and', "i'm", 'out', 'there', 'six', 'days', 'a', 'week', "haulin'", 'yoo', 'hoo', '||period||', 'we', 'have', 'sacrificed', 'everything', '||period||', 'all', 'for', 'the', 'sake', 'of', 'our', 'little', '||period||', '||period||', '||period||', 'bubble', 'boy', '||period||', '||return||', '||return||', 'mel:', '||leftparen||', 'in', 'tears', '||rightparen||', 'excuse', 'me', '||comma||', 'i', 'ah', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'right', 'here', '||leftparen||', 'giving', 'out', 'paper', 'napkins', 'to', 'mel', 'and', 'jerry', 'and', 'herself', '||rightparen||', '||return||', '||return||', 'mel:', 'excuse', 'me', '||comma||', 'anyway', 'we', 'were', 'watching', 'ya', 'on', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'you', 'get', 'in', 'the', 'bubble', 'with', 'him', '||questionmark||', '||return||', '||return||', 'mel:', 'no', '||period||', 'he', 'can', 'see', 'through', 'the', 'bubble', '||period||', "it's", 'plastic', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'thought', 'it', 'was', 'like', 'an', 'igloo', '||period||', '||return||', '||return||', 'mel:', 'no', '||comma||', "it's", 'clear', '||period||', '||return||', '||return||', 'jerry:', 'ah', 'ha', '||period||', '||return||', '||return||', 'elaine:', 'who', 'has', 'the', 'remote', '||questionmark||', '||leftparen||', 'wipes', 'a', 'tear', 'from', 'her', 'eye', '||rightparen||', '||return||', '||return||', 'mel:', 'he', 'does', '||period||', '||return||', '||return||', 'elaine:', 'the', 'remote', 'goes', 'through', 'the', 'bubble', '||questionmark||', '||return||', '||return||', 'mel:', 'yeah', '||comma||', "he's", 'in', 'the', 'bubble', 'with', 'the', 'remote', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'have', 'no', 'control', 'over', 'the', 'remote', '||questionmark||', '||return||', '||return||', 'mel:', 'no', '||comma||', "it's", 'frustrating', '||period||', '||return||', '||return||', 'jerry:', 'mmm', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'of', 'course', '||comma||', 'yeah', '||period||', '||leftparen||', 'blows', 'her', 'nose', '||rightparen||', '||return||', '||return||', 'mel:', 'so', 'anyway', '||comma||', "you're", 'his', 'favorite', 'comedian', '||period||', 'he', 'laughed', 'so', 'hard', 'the', 'other', 'night', 'we', 'had', 'to', 'give', 'him', 'an', 'extra', 'shot', 'of', 'hemoglobin', '||period||', '||return||', '||return||', 'jerry:', 'awe', '||period||', '||period||', '||period||', "that's", 'nice', '||exclammark||', '||return||', '||return||', 'mel:', 'tomorrow', 'is', 'his', 'birthday', 'and', 'it', 'would', 'mean', 'so', 'much', 'to', 'him', 'if', 'you', 'could', 'find', 'it', 'in', 'your', 'heart', "ta'", 'pay', 'him', 'a', 'visit', 'and', '||comma||', 'just', 'say', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hu', '||comma||', 'well', '||comma||', 'tomorrow', '||comma||', 'i', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', 'of', 'course', "he'd", 'pay', 'him', 'a', 'visit', '||period||', "you'd", 'be', 'happy', 'to', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'uh', '||comma||', 'ok', '||comma||', 'uh', '||comma||', 'tomorrow', 'uh', '||comma||', 'where', 'da', 'ya', '||dash||', 'where', 'do', 'you', 'live', '||comma||', 'uh', '||comma||', 'up', 'town', '||questionmark||', 'upper', 'west', 'side', '||questionmark||', '||return||', '||return||', 'mel:', 'no', '||comma||', 'up', 'state', '||period||', '||return||', '||return||', 'jerry:', 'up', 'state', '||exclammark||', 'hummm', '||period||', '||return||', '||return||', 'jerry:', "he's", 'a', 'bubble', 'boy', '||period||', '||return||', '||return||', 'george:', 'a', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'a', 'bubble', 'boy', '||period||', '||return||', '||return||', 'susan:', "what's", 'a', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'lives', 'in', 'a', 'bubble', '||period||', '||return||', '||return||', 'george:', 'boy', '||exclammark||', '||return||', '||return||', 'susan:', 'say', '||comma||', 'so', 'what', 'kind', 'of', 'a', 'bubble', '||questionmark||', 'like', 'an', 'igloo', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "that's", 'what', 'i', 'thought', 'but', 'apparently', "it's", 'just', 'a', 'big', 'piece', 'of', 'plastic', 'dividing', 'the', 'room', '||period||', '||return||', '||return||', 'susan:', 'oh', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'plastic', 'do', 'you', 'think', 'it', 'is', '||questionmark||', 'what', 'do', 'you', 'think', 'like', 'that', 'dry', 'cleaning', 'plastic', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'no', 'good', '||period||', 'he', "wouldn't", 'last', 'ten', 'minutes', 'in', 'there', '||period||', 'anyway', 'what', 'can', 'i', 'do', '||comma||', 'i', 'promised', "i'd", 'go', 'visit', 'him', 'tomorrow', '||period||', "it's", 'his', 'birthday', '||period||', 'i', "can't", 'go', 'to', 'the', 'cabin', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'where', 'does', 'he', 'live', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'up', 'state', '||comma||', 'falls', '||comma||', "somethin'", '||return||', '||return||', 'susan:', 'wait', 'a', 'minute', '||comma||', 'this', 'is', 'right', 'on', 'the', 'way', 'to', 'the', 'cabin', '||period||', '||return||', '||return||', 'george:', 'well', 'all', 'right', '||comma||', 'beautiful', '||comma||', 'so', 'you', 'stop', 'in', '||period||', 'ya', '||comma||', 'ya', 'visit', 'the', 'bubble', 'boy', 'for', 'twenty', 'minutes', 'and', 'then', 'we', 'can', 'go', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', 'we', 'can', 'do', 'it', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', 'i', 'know', 'exactly', 'where', 'this', 'is', '||period||', 'you', 'can', 'just', 'follow', 'us', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'great', '||period||', 'ok', "we'll", "goin'", 'away', '||period||', 'i', 'think', "i'm", 'excited', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'hu', 'hu', '||period||', '||return||', '||return||', 'susan:', "i'm", 'excited', '||period||', 'oh', '||comma||', "you're", 'going', 'to', 'love', 'this', 'cabin', '||period||', 'my', 'grandfather', 'built', 'it', 'in', '1947', '||period||', "it's", "it's", 'incredible', '||period||', '||return||', '||return||', 'jerry:', 'ohh', '||period||', '||return||', '||return||', 'george:', 'all', 'right', 'there', 'you', 'go', '||period||', "it's", 'a', "'47", 'cabin', 'all', 'right', '||period||', 'so', '||comma||', "we'll", 'see', 'you', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', '||return||', '||return||', 'george:', 'and', 'jerry', 'very', 'nice', '||comma||', 'very', 'nice', '||comma||', 'nice', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'off', 'to', 'the', 'links', '||period||', '||return||', '||return||', 'george:', 'and', 'jerry', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'i', 'want', 'to', 'thank', 'you', 'for', 'the', 'invite', 'up', 'state', '||period||', "i'm", 'sorry', 'i', "can't", 'make', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'clears', 'his', 'throat', '||rightparen||', '||return||', '||return||', 'susan:', 'the', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'nothing', '||comma||', 'lets', 'get', 'going', '||period||', 'come', 'on', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'hu', 'hu', '||period||', '||return||', '||return||', 'susan:', 'did', 'you', '||period||', '||period||', '||period||', '||leftparen||', 'george', 'grabs', 'her', 'hand', '||rightparen||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', "we'll", 'talk', 'about', 'it', 'later', '||period||', '||return||', '||return||', 'susan:', 'is', 'that', 'one', 'of', 'the', 'cigars', 'my', 'father', 'gave', 'you', '||questionmark||', '||leftparen||', 'susan', 'is', 'pulled', 'from', 'the', 'apt', '||period||', 'and', 'kramer', 'looks', 'out', 'the', 'door', 'to', 'watch', 'them', 'leave', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "what's", 'with', 'george', 'and', 'susan', '||questionmark||', 'does', 'he', 'actually', 'like', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', "don't", 'know', 'if', 'he', 'likes', 'her', 'as', 'much', 'as', 'he', 'likes', 'it', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "that's", 'nice', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'he', 'doing', '||questionmark||', 'what', 'is', 'his', 'hurry', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'you', 'know', 'george', '||period||', "it's", 'not', 'good', 'enough', 'to', 'get', 'there', '||period||', 'you', 'gotta', 'make', 'good', 'time', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'he', 'once', 'went', 'from', 'west', '81st', 'street', 'to', 'kennedy', 'airport', 'in', '25', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'hmhmhm', '||leftparen||', 'laughing', 'quietly', '||rightparen||', '||return||', '||return||', 'jerry:', 'look', 'at', 'him', '||period||', '||return||', '||return||', 'elaine:', 'hmhmhm', '||leftparen||', 'laughing', 'quietly', '||rightparen||', '||return||', '||return||', 'george:', 'would', 'you', 'stop', 'that', 'please', '||period||', 'would', 'you', 'just', 'stop', 'that', '||questionmark||', '||return||', '||return||', 'susan:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'knock', 'it', 'off', '||comma||', 'just', 'sit', 'in', 'your', 'seat', 'over', 'there', "you're", 'distracting', 'me', '||period||', "we're", 'making', 'incredible', 'time', 'here', '||period||', 'i', 'once', 'went', 'into', 'kennedy', 'airport', 'from', 'west', '81st', 'street', 'to', 'in', 'uh', '||comma||', 'in', '15', 'minutes', '||period||', 'hu', 'uh', '||period||', 'oh', '||comma||', 'here', 'hold', 'this', '||period||', "it's", 'uh', '||comma||', 'ten', 'dollars', 'for', 'the', 'tolls', '||period||', '||return||', '||return||', 'jerry:', "what's", 'he', 'doing', '||questionmark||', 'is', 'he', 'out', 'of', 'his', 'mind', '||questionmark||', 'do', 'you', 'see', 'him', '||questionmark||', 'i', "don't", 'even', 'think', 'i', 'see', 'him', 'anymore', '||period||', 'where', 'is', 'he', '||questionmark||', '||return||', '||return||', 'elaine:', "isn't", 'that', 'blue', 'car', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', "that's", 'not', 'him', '||period||', 'what', 'happened', 'to', 'him', '||questionmark||', 'i', "can't", 'believe', 'it', '||period||', 'i', 'lost', 'him', '||period||', 'that', 'stupid', 'idiot', '||period||', 'now', 'what', 'are', 'we', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'no', 'big', 'deal', 'jerry', '||period||', "we'll", 'just', 'meet', 'him', 'at', 'the', 'bubble', "boy's", 'house', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'know', 'where', 'the', 'bubble', 'boy', 'lives', '||period||', 'i', '||dash||', 'i', "don't", 'even', 'remember', 'the', 'name', 'of', 'the', 'town', '||period||', '||return||', '||return||', 'elaine:', "wa'", '||comma||', 'you', "don't", 'have', 'the', 'directions', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'was', 'following', 'him', '||period||', '||return||', '||return||', 'elaine:', 'how', 'could', 'you', 'not', 'take', 'the', 'directions', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', '||comma||', "he's", 'my', 'directions', '||period||', '||return||', '||return||', 'susan:', 'i', "didn't", 'see', 'them', 'george', '||period||', '||return||', '||return||', 'jerry:', 'we', 'make', 'all', 'these', 'plans', '||dash||', 'this', 'idiot', 'goes', 'a', 'hundred', 'miles', 'an', 'hour', '||dash||', 'the', 'whole', "weekend's", 'over', '||dash||', 'incredible', '||dash||', 'just', 'like', 'that', '||dash||', '||return||', '||return||', 'elaine:', 'poor', 'little', 'bubble', 'boy', '||period||', "he's", 'sitting', 'there', 'waiting', 'for', 'you', 'in', 'his', 'bubble', '||comma||', 'or', 'igloo', 'thing', '||comma||', 'whatever', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'to', 'do', '||period||', 'i', "don't", 'know', 'where', 'i', 'am', '||period||', '||return||', '||return||', 'elaine:', 'here', 'just', 'get', 'off', 'at', 'this', 'exit', '||period||', "we'll", 'figure', "somethin'", 'out', '||period||', '||return||', '||return||', 'susan:', 'we', 'lost', 'them', '||period||', 'do', 'you', 'know', 'that', '||period||', 'we', 'lost', 'them', '||exclammark||', '||return||', '||return||', 'george:', 'well', "it's", 'not', 'my', 'fault', '||period||', 'seinfeld', "can't", 'drive', '||period||', 'how', 'hard', 'is', 'it', 'to', 'follow', 'somebody', '||questionmark||', '||return||', '||return||', 'susan:', 'well', 'now', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'fine', '||comma||', "we'll", 'just', 'meet', 'him', 'at', 'the', 'bubble', "boy's", 'house', '||period||', '||return||', '||return||', 'susan:', 'does', 'he', 'have', 'the', 'address', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'machine', '||rightparen||', 'leave', 'a', 'message', '||period||', "i'll", 'call', 'you', 'back', '||period||', 'thanks', '||period||', '||return||', '||return||', 'naomi:', '||leftparen||', 'on', 'phone', 'speaker', '||rightparen||', 'hi', '||comma||', 'jerry', "it's", 'naomi', '||period||', 'ah', '||comma||', 'listen', '||comma||', 'if', 'its', 'not', 'too', 'late', 'i', '||comma||', 'changed', 'my', 'mind', '||comma||', "i'd", 'like', 'to', 'go', 'to', 'the', 'cabin', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wai', '||comma||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', 'hello', '||exclammark||', '||comma||', 'hi', '||comma||', 'aw', '||comma||', 'this', 'is', 'kramer', '||period||', 'yeah', '||comma||', "i'm", 'the', 'next', 'door', 'neighbor', '||period||', 'aw', '||comma||', 'well', 'you', 'know', '||comma||', 'ah', "jerry's", 'left', '||comma||', 'uh', '||comma||', 'uh', '||comma||', 'but', 'listen', '||comma||', 'ah', '||comma||', 'see', 'ah', '||comma||', 'my', 'golf', 'game', 'got', 'canceled', '||period||', 'uh', '||comma||', "i'm", "thinkin'", 'of', 'going', 'up', 'myself', '||period||', '||period||', '||period||', 'they', 'got', 'pies', 'and', 'ah', '||comma||', 'i', 'got', 'the', 'directions', 'right', 'here', '||period||', '||return||', '||return||', 'kramer:', 'so', 'then', 'i', 'drive', 'all', 'the', 'way', 'up', 'to', 'the', 'country', 'club', 'and', 'then', 'i', 'find', 'out', 'they', 'got', 'a', 'tournament', "goin'", 'on', '||period||', 'do', 'you', 'mind', 'if', 'i', 'smoke', '||questionmark||', '||return||', '||return||', 'naomi:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'these', 'are', 'cubans', '||period||', '||leftparen||', 'in', 'fake', 'spanish', '||rightparen||', 'maria', '||comma||', 'poquendo', 'los', 'scientos', 'de', 'estes', 'con', 'gleam', '||period||', '||return||', '||return||', 'naomi:', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||period||', '||period||', '||period||', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||period||', '||period||', '||period||', 'ha', 'haaaa', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'of', 'this', 'is', 'the', 'house', '||period||', 'i', "don't", 'see', "jerry's", 'car', 'anywhere', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'stop', 'it', '||period||', '||leftparen||', 'susan', 'playfully', 'bites', 'his', 'ear', 'lobe', 'again', '||rightparen||', 'would', 'you', 'quit', 'it', 'please', '||period||', 'someone', 'is', 'going', 'to', 'see', 'us', 'here', '||period||', '||return||', '||return||', 'susan:', 'so', 'what', '||questionmark||', 'you', 'are', 'such', 'a', 'prude', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'am', 'not', 'a', 'prude', 'sweetheart', '||period||', 'i', 'swing', 'with', 'the', 'best', 'of', 'them', '||period||', '||leftparen||', 'snapping', 'his', 'fingers', '5', 'times', '||rightparen||', '||return||', '||return||', 'susan:', 'okay', '||comma||', 'come', 'on', 'lets', 'go', 'in', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'susan:', 'well', 'we', 'should', 'at', 'least', 'tell', 'them', 'what', 'happened', '||period||', 'they', 'might', 'be', 'very', 'late', 'if', 'they', 'make', 'it', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'go', 'in', 'there', '||period||', 'i', "can't", 'face', 'the', 'bubble', 'boy', '||period||', '||return||', '||return||', 'susan:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', 'just', "don't", 'react', 'well', 'to', 'these', 'situations', '||period||', 'my', 'grandmother', 'died', 'two', 'months', 'early', 'because', 'of', 'the', 'way', 'i', 'reacted', 'in', 'the', 'hospital', '||period||', 'she', 'was', "getting'", 'better', '||period||', 'and', 'then', 'i', 'went', 'to', 'pay', 'her', 'a', 'visit', '||period||', 'she', 'saw', 'my', 'face', '||period||', 'boom', '||period||', 'that', 'was', 'the', 'end', 'of', 'it', '||period||', '||return||', '||return||', 'susan:', 'okay', '||comma||', "we're", "goin'", 'in', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'susan', '||comma||', 'wait', 'please', '||period||', '||period||', '||period||', '||leftparen||', 'grabs', 'her', '||rightparen||', 'please', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'come', 'on', 'george', '||period||', 'george', 'stop', '||period||', 'george', '||period||', '||return||', '||return||', 'george:', 'susan', '||comma||', 'susan', 'would', 'you', 'wai', '||comma||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'ranting', '||rightparen||', 'i', "can't", 'believe', 'how', 'a', 'little', 'thing', 'like', 'george', 'going', 'too', 'fast', '||dash||', 'and', 'my', 'whole', 'weekend', 'is', 'gone', '||dash||', 'the', 'plans', '||comma||', 'the', 'packing', '||comma||', '||period||', '||period||', '||period||', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'your', 'whole', 'weekend', '||questionmark||', 'what', 'about', 'the', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'do', 'you', 'keep', 'bringing', 'up', 'the', 'bubble', 'boy', '||period||', 'you', "don't", 'have', 'to', 'mention', 'the', 'bubble', 'boy', '||questionmark||', 'i', 'know', 'about', 'the', 'bubble', 'boy', '||period||', "i'm", 'aware', 'of', 'the', 'bubble', 'boy', '||period||', 'why', 'do', 'you', 'keep', 'reminding', 'me', 'about', 'the', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'have', 'a', 'cup', 'of', 'coffee', 'and', 'a', 'turkey', 'club', '||period||', '||return||', '||return||', 'waitress:', 'how', '||questionmark||', 'bout', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', "i'll", 'just', 'have', 'a', 'glass', 'of', 'water', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whispers', '||rightparen||', 'you', "can't", 'just', 'have', 'water', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', "that's", 'all', 'i', 'want', '||period||', '||return||', '||return||', 'jerry:', 'well', 'this', 'is', 'not', 'like', 'a', 'park', 'bench', 'where', 'you', 'just', 'come', 'in', 'and', 'sit', 'down', '||period||', "it's", 'a', 'business', '||period||', '||return||', '||return||', 'waitress:', 'hold', 'it', 'a', 'second', '||period||', "don't", '||questionmark||', 'chu', 'play', 'on', 'tv', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', 'yes', '||period||', 'you', 'saw', 'him', 'on', 'tv', '||period||', '||return||', '||return||', 'waitress:', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'jerry:', 'elaaaiinne', '||period||', '||period||', '||period||', '||return||', '||return||', 'waitress:', 'garry', 'seinfield', '||exclammark||', 'i', 'saw', 'you', 'on', 'the', 'tonight', 'show', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', 'hey', '||comma||', "wouldn't", 'you', 'like', 'an', 'autographed', 'picture', '||questionmark||', '||return||', '||return||', 'waitress:', 'oh', '||comma||', 'ha', 'ha', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'i', "don't", 'have', 'anymore', 'pictures', 'elaine', '||period||', '||return||', '||return||', 'elaine:', "he's", 'lying', '||period||', "they're", 'in', 'the', 'trunk', '||leftparen||', 'takes', 'car', 'keys', '||rightparen||', 'now', 'you', 'get', 'to', 'sign', 'another', 'one', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'lying', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', 'he', 'is', '||period||', '||leftparen||', 'as', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', "she'll", 'have', 'a', 'cup', 'of', 'coffee', 'and', 'a', 'broiled', 'chicken', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'see', "it's", 'not', 'really', 'a', 'bubble', '||period||', 'a', 'lot', 'of', 'people', 'think', "it's", 'an', 'igloo', '||period||', 'but', "it's", 'really', 'just', 'a', 'plastic', 'divider', '||period||', '||return||', '||return||', 'george:', 'huh', '||leftparen||', 'quietly', '||rightparen||', '||return||', '||return||', 'george:', 'and', 'susan', '||leftparen||', 'nod', '||rightparen||', '||return||', '||return||', 'george:', 'can', 'you', 'uh', '||comma||', 'go', 'in', 'the', 'bubble', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'well', '||comma||', 'you', 'have', 'to', 'put', 'so', 'many', 'things', 'on', 'because', 'of', 'the', 'germs', '||period||', '||return||', '||return||', 'mel:', 'the', 'gloves', '||comma||', 'the', 'mask', '||comma||', "it's", 'a', 'whole', 'production', '||period||', '||return||', '||return||', 'george:', 'so', 'then', 'he', 'makes', 'his', 'own', 'bed', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'well', '||comma||', "that's", 'one', 'of', 'the', 'things', 'we', 'fight', 'about', '||period||', '||return||', '||return||', 'mel:', 'would', 'you', 'like', 'to', 'meet', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'well', '||comma||', 'you', 'know', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'oh', '||comma||', 'he', 'loves', 'games', '||period||', 'maybe', 'you', 'could', 'play', 'trivial', 'pursuit', 'with', 'him', '||period||', '||return||', '||return||', 'donald:', 'hey', 'ma', 'what', 'the', 'hell', 'do', 'i', 'got', 'to', 'do', 'to', 'get', 'some', 'food', 'around', 'here', '||questionmark||', "i'm", "starvin'", '||period||', 'and', 'if', "it's", 'peanut', 'butter', '||comma||', "i'm", 'gonna', 'shove', 'it', 'in', 'your', 'face', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', '||leftparen||', 'embarrassed', '||rightparen||', 'ha', '||period||', '||period||', '||period||', 'ha', 'ha', 'ha', 'ha', '||comma||', 'ha', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', '||rightparen||', 'hehehe', '||dash||', '||dash||', 'one', 'picture', 'left', 'in', 'the', 'trunk', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'thanks', '||exclammark||', 'this', 'is', 'fun', '||exclammark||', 'yeah', '||comma||', 'this', 'turned', 'out', 'to', 'be', 'a', 'great', 'weekend', '||period||', '||return||', '||return||', 'elaine:', "where's", 'my', 'water', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", "comin'", '||period||', '||dash||', 'here', "ya'", 'go', '||period||', '||return||', '||return||', 'waitress:', 'thanks', '||period||', '||return||', '||return||', 'elaine:', "waddya'", 'write', '||questionmark||', '||return||', '||return||', 'waitress:', '||quotemark||', "nothing's", 'finer', 'than', 'being', 'in', 'your', 'diner', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', 'hu', '||quotemark||', 'ther', '||dash||', 'there', 'is', 'nothing', 'finer', 'than', 'being', 'in', 'your', 'diner', '||period||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'good', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'is', 'what', 'you', 'came', 'up', 'with', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||return||', '||return||', 'elaine:', 'that', 'is', 'so', 'lame', '||period||', 'jerry', '||comma||', 'people', 'are', 'going', 'to', 'be', 'reading', 'that', 'for', 'the', 'next', 'twenty', 'years', 'and', 'laughing', 'at', 'you', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', "you're", 'right', '||period||', 'excuse', 'me', '||comma||', 'excuse', 'me', '||period||', 'would', 'you', 'mind', '||period||', "i'd", 'like', 'to', 'take', 'the', 'picture', 'back', '||period||', '||return||', '||return||', 'waitress:', 'why', '||return||', '||return||', 'jerry:', 'i', '||comma||', "i'm", 'not', 'happy', 'with', 'what', 'i', 'wrote', '||period||', '||return||', '||return||', 'waitress:', "it's", 'good', '||period||', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'believe', 'me', "it's", 'not', 'good', '||period||', "i'll", 'mail', 'you', 'a', 'new', 'one', 'with', 'something', 'really', 'funny', 'written', 'on', 'it', '||period||', '||return||', '||return||', 'waitress:', 'well', '||comma||', 'when', 'you', 'mail', 'me', 'a', 'new', 'one', "i'll", 'send', 'you', 'back', 'this', 'one', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'look', '||comma||', 'you', "don't", 'understand', '||period||', 'i', '||comma||', 'i', 'want', 'the', 'picture', '||period||', '||return||', '||return||', 'waitress:', 'right', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'this', 'is', 'donald', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||leftparen||', 'waves', 'to', 'donald', 'and', 'laughs', '||rightparen||', 'hahahaha', '||period||', '||return||', '||return||', 'susan:', 'hello', '||period||', '||return||', '||return||', 'donald:', 'who', 'are', 'you', '||questionmark||', "where's", 'seinfeld', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', "he's", 'on', 'his', 'way', '||period||', 'these', 'are', 'his', 'friends', '||period||', '||return||', '||return||', 'donald:', 'what', 'are', 'you', "lookin'", 'at', '||questionmark||', 'never', 'seen', 'a', 'kid', 'in', 'a', 'bubble', 'before', '||questionmark||', '||return||', '||return||', 'george:', 'tsst', '||period||', '||period||', '||period||', "'course", 'i', 'have', '||period||', 'come', 'on', '||period||', 'my', "cousin's", 'in', 'a', 'bubble', '||period||', 'my', 'friend', "jeffrey's", 'uh', '||comma||', 'sister', '||comma||', 'also', '||period||', '||period||', '||period||', 'bubble', '||period||', '||period||', '||period||', 'you', 'know', '||period||', 'i', 'got', 'a', 'lot', 'of', 'bubble', 'experience', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'donald:', "what's", 'your', 'story', '||questionmark||', '||return||', '||return||', 'susan:', 'i', '||dash||', 'i', '||dash||', 'i', 'have', 'no', 'story', '||period||', '||return||', '||return||', 'george:', 'she', 'works', 'for', 'nbc', '||period||', '||return||', '||return||', 'donald:', 'how', "'bout", 'taking', 'your', 'top', 'off', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'donald', '||comma||', 'behave', 'yourself', '||period||', '||return||', '||return||', 'donald:', 'come', 'on', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'i', 'know', '||period||', 'i', 'know', '||period||', 'why', "don't", 'you', 'play', 'a', 'game', 'of', 'trivial', 'pursuit', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'well', '||comma||', 'you', 'know', 'we', 'gotta', 'been', 'running', 'because', 'of', 'the', '||period||', '||period||', '||period||', '||return||', '||return||', 'donald:', 'ooo', '||period||', 'what', '||questionmark||', 'are', 'you', 'afraid', '||questionmark||', '||return||', '||return||', 'george:', 'a', '||dash||', 'hu', 'no', '||comma||', 'uh', '||comma||', "it's", 'just', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'donald:', 'well', "i'm", 'going', 'to', 'kick', 'your', 'ass', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'i', 'was', 'nice', 'enough', 'to', 'give', 'you', 'the', 'picture', '||period||', 'i', "don't", 'like', 'what', 'i', 'wrote', '||period||', 'i', "don't", 'want', 'it', 'up', 'there', '||period||', 'now', 'please', 'just', 'give', 'it', 'back', 'to', 'me', '||period||', '||return||', '||return||', 'waitress:', 'you', 'are', 'really', "startin'", 'to', 'get', 'under', 'my', 'skin', '||period||', '||return||', '||return||', 'jerry:', 'i', 'want', 'that', 'picture', '||period||', '||return||', '||return||', 'waitress:', 'well', '||comma||', 'you', "can't", 'have', 'it', '||exclammark||', 'in', 'fact', 'maybe', 'you', 'better', 'just', 'pay', 'your', 'check', 'and', 'get', 'out', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'paying', 'for', 'anything', 'until', 'i', 'get', 'that', 'back', '||period||', '||return||', '||return||', 'waitress:', 'well', '||comma||', 'you', "ain't", "getting'", 'it', 'back', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', "i'll", 'just', 'take', 'it', 'back', '||period||', '||return||', '||return||', 'elaine:', 'this', 'chicken', 'is', 'really', 'good', '||period||', '||return||', '||return||', 'donald:', 'ok', '||comma||', 'history', '||period||', '||period||', '||period||', 'this', 'is', 'for', 'the', 'game', '||period||', '||period||', '||period||', '||period||', 'how', 'ya', "doin'", 'over', 'there', '||questionmark||', '||period||', '||period||', '||period||', 'not', 'too', 'good', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', 'bubble', 'boy', '||period||', "let's", 'just', 'play', '||period||', '||period||', '||period||', 'who', 'invaded', 'spain', 'in', 'the', '8th', 'century', '||questionmark||', '||return||', '||return||', 'donald:', "that's", 'a', 'joke', '||period||', 'the', 'moors', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'noooo', '||comma||', "i'm", 'so', 'sorry', '||period||', "it's", 'the', 'moops', '||period||', 'the', 'correct', 'answer', 'is', '||comma||', 'the', 'moops', '||period||', '||return||', '||return||', 'donald:', 'moops', '||questionmark||', 'let', 'me', 'see', 'that', '||period||', "that's", 'not', 'moops', 'you', 'jerk', '||comma||', "it's", 'moors', '||period||', "it's", 'a', 'misprint', '||period||', '||return||', '||return||', 'george:', "i'm", 'sorry', 'the', 'card', 'says', 'moops', '||period||', '||return||', '||return||', 'donald:', 'it', "doesn't", 'matter', '||period||', "it's", 'moors', '||period||', "there's", 'no', '||comma||', 'moops', '||period||', '||return||', '||return||', 'george:', "it's", 'moops', '||period||', '||return||', '||return||', 'donald:', 'moors', '||period||', '||return||', '||return||', 'george:', 'moops', '||comma||', '||return||', '||return||', 'donald:', 'moors', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'anybody', 'home', '||questionmark||', 'oh', 'boy', '||period||', '||return||', '||return||', 'naomi:', 'what', 'should', 'we', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'hold', 'these', '||leftparen||', 'boxes', 'of', '||rightparen||', 'pies', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', '||return||', '||return||', 'george:', 'help', '||comma||', 'someone', '||period||', '||leftparen||', 'bubble', 'boy', 'is', 'strangling', 'george', '||rightparen||', '||return||', '||return||', 'donald:', "there's", 'no', 'moops', '||period||', 'you', 'idiot', '||period||', '||return||', '||return||', 'susan:', 'stop', 'it', '||period||', 'let', 'go', 'of', 'him', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'donald', '||comma||', 'stop', 'it', '||exclammark||', 'now', '||comma||', 'let', 'go', 'of', 'him', 'donald', '||period||', 'donald', '||exclammark||', '||return||', '||return||', 'donald:', "i'm", 'going', 'to', 'kill', 'him', '||period||', '||return||', '||return||', 'george:', "you're", 'choking', 'me', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'donald', '||comma||', '||period||', '||period||', '||period||', 'donald', '||period||', '||period||', '||period||', '||return||', '||return||', 'donald:', 'moors', '||period||', 'say', 'moors', '||exclammark||', '||return||', '||return||', 'george:', 'moops', '||comma||', 'moops', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'donald', '||comma||', 'no', '||period||', '||period||', '||period||', '||period||', 'donald', '||comma||', 'stop', 'it', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', "you're", 'choking', 'me', '||period||', 'elaine', '||exclammark||', '||return||', '||return||', 'waitress:', 'are', 'you', 'going', 'to', 'pay', 'for', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'want', 'the', 'picture', 'back', '||period||', '||return||', '||return||', 'man', '#1:', "something's", 'happened', 'to', 'the', 'bubble', 'boy', '||period||', "they're", 'rushing', 'him', 'to', 'the', 'hospital', '||period||', '||return||', '||return||', 'waitress:', 'what', '||questionmark||', '||leftparen||', 'releases', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'the', 'bubble', 'boy', '||questionmark||', 'he', 'lives', 'around', 'here', '||questionmark||', '||return||', '||return||', 'man', '#1:', "that's", 'his', 'house', 'right', 'down', 'the', 'road', '||period||', '||return||', '||return||', 'man', '#2:', 'he', 'got', 'in', 'a', 'fight', 'with', 'some', 'guy', '||period||', '||return||', '||return||', 'guy1:', 'what', 'kind', 'of', 'person', 'would', 'hurt', 'the', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'man', '#2:', 'some', 'little', 'bald', 'guy', 'from', 'the', 'city', '||period||', '||return||', '||return||', 'man', '#1:', 'come', 'on', '||dash||', '||dash||', 'vern', '||comma||', 'page', '||comma||', 'preston', '||comma||', "don't", 'you', 'think', 'we', 'ought', 'to', 'do', "somethin'", '||questionmark||', '||return||', '||return||', 'kramer:', 'naomi', '||comma||', 'come', 'on', "let's", 'get', "goin'", '||period||', '||return||', '||return||', 'naomi:', 'but', 'that', 'lake', 'must', 'be', 'freezing', '||period||', '||return||', '||return||', 'kramer:', 'nah', '||comma||', "it's", 'good', 'for', "ya'", '||period||', 'retards', 'the', 'aging', 'process', '||period||', '||return||', '||return||', 'naomi:', 'ready', 'to', 'go', 'swimming', '||questionmark||', '||return||', '||return||', 'kramer:', "let's", 'go', '||period||', '||period||', '||period||', '||period||', 'ok', '||period||', '||leftparen||', 'he', 'snaps', 'the', 'towel', 'at', "naomi's", 'backside', '||rightparen||', 'gotcha', '||period||', '||return||', '||return||', 'naomi:', 'ahaaaaaaha', '||return||', '||return||', 'kramer:', 'heyawaaa', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', 'you', 'were', 'going', 'like', 'a', 'hundred', 'miles', 'an', 'hour', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'was', 'not', '||period||', 'the', 'bubble', 'boy', 'was', 'tried', 'to', 'kill', 'me', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'susan', 'tell', 'him', '||period||', '||return||', '||return||', 'susan:', "it's", 'a', 'long', 'story', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'donald:', 'hey', 'seinfeld', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'happy', 'birthday', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'donald:', 'thanks', 'for', 'showing', 'up', '||period||', 'you', 'know', 'your', 'friend', 'here', 'tried', 'to', 'kill', 'me', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'lying', 'little', 'snot', '||period||', 'and', "he's", 'a', 'cheater', '||period||', "aren't", "ya'", 'you', 'little', 'twerp', '||questionmark||', '||return||', '||return||', 'donald:', 'moors', '||return||', '||return||', 'george:', 'moops', '||return||', '||return||', 'donald:', 'moors', '||return||', '||return||', 'george:', 'moops', '||return||', '||return||', 'donald:', 'moors', '||return||', '||return||', 'george:', 'moops', '||return||', '||return||', 'man', '#1:', "there's", 'the', 'guy', 'who', 'tried', 'to', 'kill', 'the', 'bubble', 'boy', '||period||', 'get', 'him', '||exclammark||', '||return||', '||return||', 'george:', 'go', '||comma||', 'go', '||comma||', 'get', 'out', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'fire', 'engines', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'must', 'be', 'a', 'big', 'one', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'smell', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', '||return||', '||return||', 'susan:', 'smoke', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', '||leftparen||', 'cough', '||rightparen||', 'definite', 'smoke', '||period||', '||return||', '||return||', 'elaine:', 'arghhh', '||comma||', 'look', "it's", 'a', 'fire', '||exclammark||', '||leftparen||', 'cough', '||rightparen||', '||return||', '||return||', 'jerry:', 'holy', 'cow', '||exclammark||', 'look', 'at', 'that', '||exclammark||', '||return||', '||return||', 'susan:', "it's", 'my', "father's", 'cabin', '||exclammark||', '||return||', '||return||', 'elaine:', 'the', 'cabin', 'is', 'on', 'fire', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'apprehensively', '||rightparen||', 'um', '||period||', 'i', 'just', 'realized', '||period||', "ya'", 'never', 'gave', 'me', 'back', 'the', 'change', 'from', 'the', 'tolls', '||period||', '||return||', '||return||', 'elaine:', 'how', 'could', 'this', 'have', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'singing', '||rightparen||', '||period||', '||period||', '||period||', "it's", 'a', 'big', '||comma||', 'wild', '||comma||', 'funky', 'mountain', 'man', '||period||', '||period||', '||period||', '||return||', '||return||', 'naomi:', 'oh', '||comma||', 'my', 'god', '||comma||', 'the', 'cabin', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'two', "doin'", 'here', '||questionmark||', '||return||', '||return||', 'naomi:', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", '||period||', '||period||', '||period||', '||leftparen||', 'makes', 'motion', 'like', "he's", 'lighting', 'a', 'cigar', '||rightparen||', '||return||', '||return||', 'kramer:', 'my', 'cubans', '||exclammark||', '||leftparen||', 'runs', 'off', 'to', 'the', 'burning', 'cabin', '||rightparen||', '||return||', '||return||', '**', 'pies', '||dash||', 'just', 'in', 'case', 'you', 'did', 'not', 'know', 'what', 'these', 'two', 'kinds', 'of', 'pies', 'are:', 'nan', '||return||', '||return||', 'boysenberry:', 'the', 'edible', 'fruit', 'obtained', 'by', 'crossing', 'the', 'blackberry', '||comma||', 'raspberry', '||comma||', 'and', 'loganberry', '||period||', '[', 'after', 'rudolph', 'boysen', '||comma||', '20th', 'century', 'u', '||period||', 's', '||period||', 'horticulturist', ']', '||return||', '||return||', 'huckleberry:', 'the', 'edible', 'black', 'or', 'dark', 'blue', 'berry', 'of', 'any', 'of', 'various', 'north', 'american', 'shrubs', '||period||', '2', '||period||', 'a', 'shrub', 'yielding', 'this', 'berry', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'she', "hasn't", 'told', 'her', 'father', 'yet', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', "we're", 'supposed', 'to', 'tell', 'him', 'tonight', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', "we're", '||quotemark||', '||questionmark||', 'what', 'do', 'you', 'mean', '||comma||', '||quotemark||', "we're", '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'susan', 'wants', 'me', 'to', 'be', 'there', '||period||', '||return||', '||return||', 'jerry:', "you're", "meetin'", 'the', 'father', 'for', 'the', 'first', 'time', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'reluctantly', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'chuckles', 'slightly', '||rightparen||', 'well', '||comma||', "you'll", 'make', 'quite', 'an', 'impression', 'on', 'him', 'when', 'you', 'tell', 'him', 'how', 'you', 'burned', 'his', 'cabin', 'down', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'burn', 'it', 'down', '||dash||', 'kramer', 'did', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'laughs', '||rightparen||', 'i', 'mean', '||comma||', 'the', 'whole', 'thing', 'is', 'ironic', '||period||', 'think', 'of', 'it', 'here', 'the', 'guy', 'is', 'nice', 'enough', 'to', 'give', 'you', 'a', 'box', 'of', 'very', 'fine', 'cuban', 'cigars', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'know', 'what', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'wait', '||comma||', 'wait', 'and', 'then', 'you', 'dump', 'them', 'off', 'onto', 'kramer', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'frustrated', '||rightparen||', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continuing', '||rightparen||', '||period||', '||period||', 'who', '||comma||', 'who', 'proceeds', 'to', 'burn', 'the', "man's", 'cabin', 'down', 'with', 'one', 'of', 'those', 'very', 'same', 'cigars', '||exclammark||', '||leftparen||', 'topping', 'off', 'his', 'observation', '||rightparen||', "it's", 'very', 'comical', '||period||', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'maybe', 'we', "shouldn't", 'start', 'writing', 'today', '||period||', 'i', 'got', 'a', 'lot', 'on', 'my', 'mind', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'persisting', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'we', 'put', 'this', 'off', 'long', 'enough', '||period||', "today's", 'the', 'day', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'letting', 'his', 'conscious', 'get', 'the', 'best', 'of', 'him', '||rightparen||', 'i', 'wonder', 'how', "susan's", "father's", 'going', 'to', 'react', 'to', 'this', '||period||', 'alright', '||comma||', 'what', '||dash||', "what's", 'the', 'worst', 'he', 'could', 'do', '||questionmark||', 'so', 'you', 'burn', 'a', 'cabin', 'down', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'agreeing', '||rightparen||', "c'mon", '||period||', "it's", 'not', 'even', 'a', 'house', '||dash||', "it's", '||comma||', 'like', '||comma||', 'a', 'cabin', '||period||', '||return||', '||return||', 'george:', 'we', 'could', 'build', 'a', 'cabin', 'like', '||leftparen||', 'snaps', '||rightparen||', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'blunt', '||rightparen||', 'well', '||comma||', 'maybe', 'not', 'us', '||comma||', 'but', 'two', 'men', 'could', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'over', 'the', 'writing', 'materials', 'they', 'just', 'bought', '||rightparen||', 'bics', '||questionmark||', 'what', '||comma||', "d'ja", 'get', '||comma||', 'bics', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'you', 'got', 'a', 'problem', 'with', 'the', 'pen', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'like', 'a', 'rolling', 'writer', '||period||', "they're", 'very', 'smooth', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "let's", 'just', 'get', 'to', 'work', '||period||', '||leftparen||', 'they', 'both', 'move', 'into', 'the', 'living', 'room', '||dash||', 'ready', 'to', 'start', 'writing', 'their', 'script', '||period||', 'jerry', 'sits', 'down', '||rightparen||', 'nbc', 'pilot', '||comma||', 'seinfeld', 'project', '||period||', 'act', 'i', '||comma||', 'scene', 'a', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'standing', '||rightparen||', 'so', '||comma||', "you're", 'gonna', 'sit', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'wanting', 'to', 'get', 'started', '||rightparen||', 'just', '||dash||', 'just', 'park', 'yourself', '||period||', '||leftparen||', 'george', 'reluctantly', 'sits', 'on', 'the', 'sofa', '||rightparen||', 'alright', '||period||', 'act', 'i', '||comma||', 'scene', 'a', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'offering', '||rightparen||', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'uncapping', 'his', 'pen', '||rightparen||', 'alright', '||comma||', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'jerry:', 'act', 'i', '||comma||', 'scene', 'a', '||period||', '||period||', '||return||', '||return||', 'george:', "weren't", 'you', 'supposed', 'to', 'call', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'eagerly', 'reaching', 'for', 'the', 'phone', '||rightparen||', 'yes', '||period||', '||leftparen||', 'george', 'turns', 'the', 'tv', 'on', '||comma||', 'and', 'begins', 'watching', 'as', 'jerry', 'dials', 'the', 'number', '||rightparen||', 'hi', '||comma||', 'is', 'elaine', 'there', '||questionmark||', 'oh', '||comma||', 'uh', '||comma||', 'hi', '||comma||', 'sandra', '||period||', 'uh', '||comma||', 'yeah', '||period||', 'i', 'can', 'hold', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'every', 'time', 'i', 'call', 'i', 'gotta', 'chit', '||dash||', 'chat', 'with', 'her', 'assistant', 'for', '||comma||', 'like', '||comma||', 'twenty', 'minutes', '||period||', '||leftparen||', 'back', 'into', 'the', 'phone', '||rightparen||', 'oh', '||comma||', 'hi', '||comma||', 'sandra', '||period||', 'listen', '||comma||', "i'm", 'at', 'a', 'pay', 'phone', '||comma||', 'and', "there's", 'lots', 'of', 'people', 'here', 'waiting', 'to', 'use', 'it', '||period||', '||leftparen||', 'yelling', 'out', 'for', 'believability', '||rightparen||', "i'll", 'be', 'off', 'in', 'a', 'minute', '||exclammark||', '||leftparen||', 'to', 'sandra', '||rightparen||', 'yeah', '||comma||', 'could', 'you', 'just', 'put', 'me', 'through', 'to', 'elaine', '||questionmark||', 'okay', '||comma||', 'thanks', '||exclammark||', '||leftparen||', 'he', 'turns', 'to', 'george', '||rightparen||', 'are', 'you', 'thinking', 'of', 'ideas', '||questionmark||', '||leftparen||', 'george', '||comma||', 'picking', 'his', 'teeth', 'with', 'his', 'finger', '||comma||', 'is', 'absorbed', 'into', 'the', 'television', '||period||', 'he', 'seems', 'to', 'not', 'even', 'notice', 'jerry', '||rightparen||', 'listen', '||comma||', 'elaine', '||comma||', 'is', 'there', 'any', 'way', 'i', 'could', 'get', 'through', 'to', 'you', 'directly', '||questionmark||', 'every', 'time', 'i', 'call', 'sandra', 'bends', 'my', 'ear', 'for', '||comma||', 'like', '||comma||', 'twenty', 'minutes', '||period||', '||leftparen||', 'pause', '||rightparen||', 'so', "we're", 'on', 'for', 'later', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'll", 'come', 'by', 'after', 'work', '||period||', 'hey', '||comma||', 'i', 'got', 'a', 'rubber', 'pencil', 'thing', "happenin'", 'here', '||period||', '||period||', '||leftparen||', 'sandra', 'passes', 'her', 'doorway', '||rightparen||', 'uh', '||comma||', 'i', 'gotta', 'go', '||period||', 'i', 'gotta', 'go', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'sandra', '||exclammark||', 'sandra', '||questionmark||', 'hi', '||comma||', 'can', 'you', 'come', 'here', 'for', 'a', 'second', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', "let's", 'go', '||period||', '||leftparen||', 'george', 'shuts', 'the', 'television', 'off', '||comma||', 'ready', 'to', 'work', '||rightparen||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'here', 'we', 'go', '||period||', 'you', 'got', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'how', 'about', 'this', "i'm", 'in', 'my', 'apartment', '||comma||', 'you', 'come', 'in', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'holding', 'out', 'his', 'arms', '||dash||', 'giving', 'praise', '||rightparen||', "it's", 'beautiful', '||period||', 'now', '||comma||', 'what', 'do', 'i', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'could', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', 'um', '||comma||', 'when', 'my', 'friends', 'call', '||comma||', 'could', 'you', 'not', 'talk', 'to', 'them', 'for', 'too', 'long', '||questionmark||', '||return||', '||return||', 'sandra:', 'why', '||questionmark||', 'did', 'jerry', 'say', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'sandra:', 'he', 'must', 'have', 'said', 'something', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', 'he', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'sandra:', '||leftparen||', 'near', 'tears', '||rightparen||', 'i', "can't", 'work', 'for', 'you', '||exclammark||', 'i', "can't", '||period||', "i'm", 'leaving', '||period||', '||leftparen||', 'exits', 'quickly', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'calling', 'out', 'to', 'sandra', '||rightparen||', 'no', '||comma||', 'sandra', '||period||', "i'm", 'sorry', '||comma||', "i'm", 'sorry', '||exclammark||', 'i', 'really', 'am', '||exclammark||', 'listen', '||comma||', 'listen', '||comma||', "jerry's", 'under', 'a', 'lot', 'of', 'pressure', 'right', 'now', '||period||', "it's", 'very', 'hard', 'being', 'a', 'stand', '||dash||', 'up', 'comedian', '||exclammark||', 'sometimes', 'they', "don't", 'laugh', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'kramer', '||comma||', "we're", '||comma||', 'uh', '||comma||', 'kind', 'of', 'in', 'the', 'middle', 'of', 'something', 'here', '||period||', "we're", 'trying', 'to', 'do', 'a', 'little', 'work', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'come', 'on', '||period||', '||leftparen||', 'kramer', 'gives', 'out', 'a', 'frustrated', 'sigh', '||rightparen||', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'complaining', '||rightparen||', 'no', 'more', 'golf', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'remember', 'i', 'told', 'you', 'about', 'the', 'pro', '||comma||', 'you', 'know', '||comma||', 'at', 'the', 'westchester', 'country', 'club', '||comma||', "who's", 'letting', 'me', 'play', 'a', 'round', 'every', 'time', 'i', 'give', 'him', 'a', 'couple', 'of', 'those', 'cuban', 'cigars', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'angered', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', 'i', 'lost', 'them', 'all', 'in', 'the', 'fire', '||exclammark||', '||leftparen||', 'leaning', 'over', 'the', 'couch', '||comma||', 'he', 'addresses', 'george', '||rightparen||', 'hey', '||comma||', 'george', '||comma||', 'maybe', 'you', 'can', 'ask', "susan's", 'father', 'for', 'more', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', '||comma||', 'crazy', '||questionmark||', 'i', "can't", 'ask', 'the', 'guy', 'for', 'more', 'cigars', 'after', 'you', 'burned', 'down', 'his', 'cabin', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', "what's", 'one', 'thing', 'got', 'to', 'do', 'with', 'another', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'please', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "can't", 'go', 'back', 'to', 'the', 'public', 'courses', '||comma||', 'now', '||period||', 'i', "can't", '||exclammark||', 'i', "won't", '||period||', 'i', 'mean', '||comma||', 'you', 'know', 'what', "that's", 'like', '||questionmark||', "it's", 'crowded', '||comma||', 'the', 'grass', 'has', 'big', 'brown', 'patches', 'in', 'it', '||comma||', 'they', "don't", 'rake', 'the', 'sand', 'traps', '||exclammark||', 'not', 'to', 'mention', 'the', 'caliber', 'of', 'people', 'you', 'have', 'to', 'play', 'with', '||exclammark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'i', "can't", 'help', 'you', '||period||', "you're", 'gonna', 'have', 'to', 'get', 'them', 'some', 'place', 'else', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', 'where', '||questionmark||', "they're", 'cubans', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'up', '||rightparen||', 'you', 'know', 'what', '||questionmark||', 'maybe', 'i', 'should', 'take', 'off', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'gotta', 'go', 'to', '||comma||', 'uh', '||comma||', "susan's", "parent's", 'house', 'for', 'dinner', '||period||', '||period||', 'and', '||comma||', 'you', 'know', '||comma||', 'i', 'want', 'to', 'shower', 'first', '||period||', '||period||', 'and', 'i', 'want', 'to', 'leave', 'myself', 'plenty', 'of', 'time', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'his', 'watch', '||rightparen||', 'you', 'got', 'four', 'hours', '||exclammark||', 'what', 'about', 'the', 'script', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'we', 'got', 'a', 'bite', 'on', 'it', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', '[setting:', 'the', "ross'", 'house]', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'to', 'mr', '||period||', 'ross', '||rightparen||', "doesn't", 'george', 'look', 'like', 'your', 'sister', '||comma||', 'sarah', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'gruff', '||rightparen||', 'a', 'slight', 'resemblance', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'to', 'george', '||rightparen||', 'her', "son's", 'a', 'podiatrist', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'george:', 'ohh', '||comma||', 'i', 'have', 'tremendous', 'respect', 'for', 'people', 'who', 'work', 'with', 'feet', '||period||', 'i', 'mean', '||comma||', 'to', 'dedicate', 'yourself', 'to', 'the', 'foot', '||dash||', "you're", 'toiling', 'in', 'virtual', 'anonymity', '||period||', 'i', 'mean', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'how', 'are', 'you', 'enjoying', 'those', 'cigars', 'i', 'gave', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'uh', '||comma||', 'the', 'cigars', '||period||', '||period||', '||leftparen||', 'chuckles', 'nervously', '||rightparen||', "i'm", '||comma||', 'uh', '||comma||', "suckin'", "'em", 'down', '||period||', "i'm", 'puffing', 'my', 'brains', 'out', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'you', 'know', 'those', 'cigars', 'are', 'made', 'special', 'for', 'castro', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'impersonating', 'carson', '||rightparen||', 'i', "didn't", 'not', 'know', 'that', '||period||', 'weird', '||period||', 'wild', '||period||', '||leftparen||', 'susan', 'and', 'george', 'both', 'laugh', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'what', '||questionmark||', '||return||', '||return||', 'susan:', '||leftparen||', 'explaining', '||rightparen||', "he's", 'doing', 'johnny', 'carson', '||comma||', 'daddy', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'i', "didn't", 'care', 'much', 'for', 'his', 'jokes', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'to', 'george', '||rightparen||', 'daddy', 'never', 'laughs', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||comma||', 'so', 'what', '||questionmark||', 'laughter', '||dash||', 'what', 'is', 'that', '||questionmark||', 'i', 'mean', '||comma||', 'what', 'is', 'the', 'point', 'of', 'opening', 'your', 'mouth', 'and', 'going', '||quotemark||', 'ha', '||comma||', 'ha', '||exclammark||', '||quotemark||', '||questionmark||', 'what', 'is', 'that', '||questionmark||', '||quotemark||', 'ha', '||comma||', 'ha', '||exclammark||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'you', 'know', '||comma||', 'you', "can't", 'get', 'those', 'cigars', 'anywhere', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'you', 'and', 'your', 'cigars', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'shooting', 'back', 'at', 'his', 'wife', '||rightparen||', 'wear', 'some', 'more', 'lipstick', '||period||', '||return||', '||return||', 'susan:', 'daddy', '||comma||', "there's", '||comma||', 'um', '||comma||', "there's", 'something', 'that', 'we', 'have', 'to', 'talk', 'to', 'you', 'about', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'oh', '||comma||', 'i', 'forgot', 'to', 'ask', 'you', '||dash||', "how'd", 'you', 'like', 'the', 'cabin', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'even', 'more', 'nervous', 'than', 'before', '||rightparen||', 'oh', '||comma||', 'the', '||comma||', 'uh', '||comma||', 'the', 'cabin', '||period||', '||period||', 'well', '||comma||', '||leftparen||', 'clears', 'throat', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'right', 'after', 'we', 'get', 'off', 'the', 'phone', '||comma||', 'then', 'you', 'go', 'and', 'tell', 'her', 'that', '||questionmark||', '||exclammark||', 'well', '||comma||', 'of', 'course', 'she', 'knows', 'it', 'was', 'me', 'who', 'complained', '||exclammark||', 'now', "i'm", 'responsible', 'for', 'this', "woman's", 'quitting', '||period||', 'oh', '||comma||', 'this', 'is', 'unbelievable', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'full', 'of', 'guilt', '||rightparen||', 'i', 'know', '||exclammark||', 'i', 'screwed', 'up', '||period||', "it's", 'all', 'my', 'fault', '||period||', 'would', 'you', 'call', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'caving', 'in', '||rightparen||', 'ohh', '||period||', '||period||', 'dial', 'the', 'number', '||period||', '||leftparen||', 'elaine', 'picks', 'up', 'the', 'phone', '||comma||', 'and', 'starts', 'to', 'dial', '||rightparen||', 'how', 'could', 'you', 'do', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'handing', 'the', 'phone', 'over', 'to', 'him', '||rightparen||', 'i', 'was', 'just', 'trying', 'to', 'help', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'muttering', '||rightparen||', 'oh', '||comma||', 'just', 'trying', 'to', '||leftparen||', 'rudely', 'grabs', 'the', 'phone', 'from', 'her', '||rightparen||', 'help', 'me', '||period||', '||period||', '||leftparen||', 'into', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', 'sandra', '||questionmark||', 'hi', '||comma||', 'uh', '||comma||', 'this', 'is', 'jerry', 'seinfeld', '||period||', '||leftparen||', 'elaine', 'now', 'has', 'her', 'hand', 'in', 'a', 'bowl', 'of', 'popcorn', '||dash||', 'grabbing', 'a', 'fistful', '||rightparen||', 'listen', '||comma||', 'i', '||dash||', 'i', 'just', 'want', 'to', 'tell', 'you', '||comma||', '||leftparen||', 'jerry', 'sternly', 'grabs', "elaine's", 'hand', '||dash||', 'forcing', 'her', 'to', 'drop', 'the', 'popcorn', '||comma||', 'then', 'shoves', 'her', 'hand', 'away', '||period||', 'elaine', 'sits', 'back', 'like', 'a', 'scolded', 'child', '||rightparen||', "there's", 'been', 'a', 'terrible', 'misunderstanding', 'see', '||comma||', 'i', 'told', 'elaine', 'that', '||comma||', 'uh', '||comma||', 'it', 'was', 'a', 'real', 'treat', 'talking', 'to', 'you', 'on', 'the', 'phone', '||comma||', 'and', 'she', 'thought', 'i', 'was', 'being', 'sarcastic', '||comma||', 'you', 'know', '||comma||', "'cause", "i'm", 'a', 'comedian', 'and', 'all', '||period||', 'she', 'thought', 'i', 'meant', '||leftparen||', 'deeply', 'sarcastic', '||rightparen||', '||quotemark||', 'yeah', '||comma||', 'it', 'was', 'a', 'real', 'treat', 'talking', 'to', 'her', 'on', 'the', 'phone', '||period||', '||quotemark||', '||leftparen||', 'back', 'to', 'normal', '||rightparen||', 'you', 'know', '||comma||', 'but', 'i', 'was', 'really', 'being', 'sincere', '||period||', '||period||', 'no', '||comma||', 'of', 'course', 'i', 'like', 'you', '||period||', '||period||', 'tonight', '||questionmark||', '||period||', '||period||', 'um', '||comma||', 'uh', '||comma||', 'hold', 'on', 'a', 'second', '||period||', '||leftparen||', 'to', 'elaine', '||comma||', 'whispering', '||rightparen||', 'now', 'she', 'wants', 'to', 'have', 'a', 'drink', 'with', 'me', '||period||', '||leftparen||', 'elaine', 'mouths', 'out', '||quotemark||', 'just', 'go', '||quotemark||', 'while', 'making', 'gestures', '||period||', 'jerry', '||comma||', 'again', '||comma||', 'gives', 'in', '||period||', 'back', 'on', 'the', 'phone', '||rightparen||', 'yeah', '||comma||', 'i', 'think', 'i', 'can', '||period||', '||period||', 'um', '||period||', '||period||', 'yeah', '||comma||', 'i', 'know', 'where', 'that', 'is', '||period||', '||period||', 'ok', '||period||', '||period||', 'uh', '||comma||', "i'll", 'see', 'you', 'there', '||period||', 'okay', '||comma||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||comma||', 'peeved', '||rightparen||', 'now', 'i', 'gotta', 'have', 'a', 'drink', 'with', 'her', '||period||', '||return||', '||return||', '[setting:', 'the', "ross'", 'house]', '||return||', '||return||', 'george:', 'the', 'cabin', '||period||', '||period||', '||leftparen||', 'laughs', 'nervously', '||rightparen||', 'well', '||period||', '||period||', '||leftparen||', 'pauses', 'as', 'he', 'thinks', 'of', 'a', 'way', 'to', 'break', 'the', 'news', '||comma||', 'then', 'decides', 'to', 'pass', 'it', 'off', '||rightparen||', 'susan', '||questionmark||', '||return||', '||return||', 'susan:', 'uhh', '||period||', '||period||', 'about', 'the', 'cabin', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'cutting', 'her', 'off', '||rightparen||', 'i', 'love', 'that', 'place', '||period||', 'my', 'father', 'built', 'that', 'cabin', 'in', '1947', '||period||', 'my', 'mother', 'was', 'recuperating', 'from', 'impetigo', 'at', 'the', 'time', '||comma||', 'and', 'dad', 'thought', 'it', 'would', 'be', 'a', 'good', 'idea', 'to', 'get', 'her', 'out', 'into', 'the', 'fresh', 'air', '||period||', 'she', 'died', 'there', 'the', 'following', 'winter', '||period||', 'and', 'he', 'passed', 'away', '10', 'years', 'later', 'to', 'the', 'day', '||period||', 'his', 'last', 'words', 'to', 'me', 'were', '||comma||', '||leftparen||', 'mrs', '||period||', 'ross', '||comma||', 'bored', 'out', 'of', 'her', 'mind', '||comma||', 'has', 'obviously', 'heard', 'this', 'story', 'a', 'million', 'times', '||dash||', 'she', 'mouths', 'the', 'words', 'as', 'mr', '||period||', 'ross', 'says', 'them', '||rightparen||', '||quotemark||', 'cherish', 'the', 'cabin', '||period||', '||quotemark||', 'not', '||comma||', 'uh', '||comma||', '||quotemark||', 'take', 'care', 'of', 'your', 'sister', '||period||', '||quotemark||', '||leftparen||', 'adding', '||rightparen||', "she's", 'a', 'paraplegic', '||period||', 'but', '||comma||', '||quotemark||', 'cherish', 'the', 'cabin', '||period||', '||quotemark||', '||leftparen||', 'smiling', '||comma||', 'reflecting', '||rightparen||', 'and', 'i', 'have', '||period||', '||period||', 'for', '45', 'years', '||period||', "it's", 'often', 'been', 'a', '||period||', '||period||', 'sanctuary', 'for', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyingly', 'butting', 'in', '||rightparen||', 'kinda', 'like', "superman's", 'fortress', 'of', 'solitude', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 's', '||comma||', 'uh', '||comma||', 'superman', '||dash||', 'he', '||comma||', 'uh', '||comma||', 'built', 'the', 'fortress', 'of', 'solitude', 'up', 'at', 'the', 'north', 'pole', '||comma||', 'to', '||comma||', 'uh', '||comma||', 'you', 'know', '||comma||', 'sort', 'of', 'get', 'away', 'from', 'it', 'all', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'when', 'i', 'go', '||comma||', "i'm", 'passing', 'it', 'on', 'to', 'her', '||period||', '||leftparen||', 'pointing', 'at', 'susan', '||rightparen||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'drunk', '||comma||', 'she', 'laughs', 'out', 'loud', '||rightparen||', "i'll", 'take', 'a', 'hotel', 'any', 'day', '||period||', '||return||', '||return||', 'susan:', 'daddy', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'yes', '||questionmark||', '||return||', '||return||', 'susan:', 'daddy', '||comma||', 'about', 'the', 'cabin', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'laughing', '||comma||', 'she', 'points', 'to', 'her', 'shirt', '||rightparen||', 'look', '||comma||', 'henry', '||comma||', 'i', 'spilled', 'wine', 'on', 'me', '||exclammark||', '||leftparen||', 'laughs', 'again', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'to', 'susan', '||rightparen||', 'what', 'about', 'it', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'the', 'thing', 'is', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'what', '||questionmark||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'the', '||dash||', 'the', 'cabin', '||comma||', 'is', '||comma||', 'kind', 'of', '||comma||', 'uh', '||period||', '||period||', 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'extremely', 'blunt', '||rightparen||', 'burned', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'burned', '||questionmark||', '||return||', '||return||', 'susan:', 'there', 'was', 'a', 'fire', '||comma||', 'and', 'it', 'uh', '||period||', '||period||', '||return||', '||return||', 'george:', 'burned', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'still', 'trying', 'to', 'comprehend', 'what', 'has', 'happened', '||rightparen||', 'the', 'cabin', 'burned', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'yeah', '||comma||', 'burned', '||period||', 'whoo', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'laughing', 'out', 'loud', '||rightparen||', 'burned', '||exclammark||', '||leftparen||', 'george', 'laughs', 'with', 'her', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'was', 'anything', 'found', '||questionmark||', 'was', 'it', 'all', 'burned', 'to', 'the', 'ground', '||questionmark||', '||exclammark||', 'did', 'they', 'find', 'anything', '||questionmark||', '||return||', '||return||', 'susan:', '||leftparen||', 'solemn', '||rightparen||', 'no', '||period||', 'nothing', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'laughing', '||comma||', "she's", 'obviously', 'getting', 'a', 'kick', 'out', 'of', 'her', "husband's", 'misfortune', '||rightparen||', 'nothing', '||exclammark||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||return||', '||return||', 'george:', 'eh', '||comma||', 'but', '||comma||', 'you', 'know', '||comma||', 'mr', '||period||', 'ross', '||comma||', 'if', '||dash||', 'if', 'you', 'look', 'at', 'the', 'whole', 'situating', '||comma||', 'what', 'with', 'it', 'being', 'your', 'cigars', '||comma||', 'and', 'everything', '||comma||', "it's", 'really', 'rather', 'ironic', '||dash||', 'one', 'might', 'even', 'say', '||comma||', 'in', 'a', 'sense', '||comma||', 'comical', '||period||', '||period||', '||leftparen||', 'mr', '||period||', 'ross', 'has', '||comma||', 'by', 'now', '||comma||', 'left', 'the', 'room', '||period||', 'mrs', '||period||', 'ross', 'is', 'pointing', 'at', 'george', '||comma||', 'nodding', '||comma||', 'laughing', '||period||', 'as', 'if', 'to', 'say', 'he', 'hit', 'the', 'bullseye', '||period||', 'george', 'calls', 'out', 'to', 'mr', '||period||', 'ross', '||rightparen||', 'really', '||period||', 'think', 'about', 'it', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'sandra:', '||leftparen||', 'offended', '||rightparen||', 'i', "can't", 'believe', 'you', 'said', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'sandra:', '||leftparen||', 'buttoning', 'her', 'jacket', '||rightparen||', 'how', 'could', 'you', 'say', 'something', 'like', 'that', 'to', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', '||questionmark||', '||exclammark||', 'you', 'were', 'the', 'one', 'who', 'was', 'talking', 'dirty', '||period||', 'i', 'was', 'just', 'trying', 'to', 'keep', 'up', '||exclammark||', '||return||', '||return||', 'sandra:', 'that', 'was', 'a', 'weird', 'thing', 'to', 'say', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', 'it', "didn't", 'mean', 'anything', '||period||', 'i', 'was', 'just', 'trying', 'to', 'join', 'in', 'so', 'you', "wouldn't", 'feel', 'embarrassed', '||period||', '||return||', '||return||', 'sandra:', 'ohh', '||comma||', 'i', 'think', "you're", 'really', 'sick', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'slightly', 'offended', '||rightparen||', "i'm", 'not', 'sick', '||period||', '||leftparen||', 'pointing', 'at', 'her', '||rightparen||', 'you', '||dash||', 'you', 'said', 'much', 'sicker', 'things', 'than', 'me', '||period||', '||return||', '||return||', 'sandra:', "i'm", 'leaving', '||period||', '||leftparen||', 'moves', 'toward', 'the', 'door', '||period||', 'jerry', 'blocks', 'her', 'path', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'really', 'think', "you're", 'making', 'too', 'much', 'of', 'this', '||period||', '||return||', '||return||', 'sandra:', '||leftparen||', 'attempting', 'to', 'get', 'past', 'him', '||rightparen||', 'excuse', 'me', '||period||', '||leftparen||', 'they', 'both', 'move', 'to', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'let', 'me', 'walk', 'you', 'to', 'a', 'cab', '||period||', '||return||', '||return||', 'sandra:', '||leftparen||', 'opens', 'the', 'door', '||rightparen||', "that's", 'ok', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'the', 'main', 'thing', 'is', 'that', 'this', 'is', 'just', 'between', 'us', '||comma||', 'and', "that'll", 'be', 'the', 'end', 'of', 'it', '||period||', '||return||', '||return||', 'sandra:', 'oh', '||comma||', 'really', '||questionmark||', '||leftparen||', 'quickly', 'walks', 'out', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'calling', 'after', 'her', '||rightparen||', 'i', 'mean', '||comma||', 'people', '||dash||', "they're", 'not', 'interested', 'in', 'things', 'like', 'this', '||period||', 'they', "don't", 'want', 'to', 'hear', 'about', 'it', '||period||', 'they', 'really', "don't", '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'so', '||comma||', "we're", '||period||', '||period||', 'uhh', '||comma||', "drinkin'", 'and', "talkin'", '||comma||', 'and', 'uhh', '||comma||', 'so', '||comma||', 'she', 'starts', 'rubbing', 'my', 'leg', '||period||', '||return||', '||return||', 'george:', 'wo', '||dash||', 'hoah', '||exclammark||', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'have', 'you', 'ever', 'told', 'a', 'woman', 'to', 'stop', 'touching', 'your', 'leg', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'i', 'know', "it's", 'the', 'wrong', 'thing', 'to', 'do', '||period||', 'she', 'works', 'in', "elaine's", 'office', '||period||', 'i', 'know', "it's", 'wrong', '||dash||', 'but', 'i', "can't", 'get', 'that', 'hand', 'off', 'my', 'leg', '||period||', 'i', 'mean', '||comma||', "i'm", 'looking', 'at', 'the', 'hand', '||comma||', 'and', "i'm", 'thinking', '||comma||', '||quotemark||', 'that', 'hand', 'should', 'not', 'be', 'on', 'my', 'leg', '||period||', '||quotemark||', 'but', 'i', "can't", 'make', 'my', 'brain', 'to', 'get', 'my', 'mouth', 'to', 'say', 'the', 'words', '||comma||', '||quotemark||', 'would', 'you', 'mind', '||questionmark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'woman', 'have', 'no', 'problem', 'getting', 'the', 'hand', 'off', '||period||', 'how', 'do', 'they', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', "they're", 'working', 'on', 'a', 'whole', 'other', 'level', '||period||', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'so', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'so', 'we', 'go', 'back', 'to', 'my', 'apartment', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'expressing', 'shock', '||rightparen||', 'woah', '||period||', 'whoa', '||exclammark||', 'woah', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "we're", '||comma||', 'uh', '||comma||', "foolin'", 'around', 'there', '||period||', '||period||', 'you', 'know', '||comma||', "it's", 'getting', 'a', 'little', 'passionate', '||period||', '||period||', '||leftparen||', 'scoots', 'closer', 'to', 'george', '||comma||', 'to', 'prevent', 'others', 'from', 'hearing', '||rightparen||', 'and', '||comma||', 'uh', '||comma||', 'she', 'starts', 'with', 'the', 'dirty', 'talking', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'putting', 'his', 'hands', 'up', '||rightparen||', 'alright', '||comma||', 'alright', '||comma||', 'hold', 'on', '||exclammark||', '||leftparen||', 'jerry', 'has', "george's", 'full', 'attention', '||rightparen||', 'time', 'out', '||exclammark||', 'woah', '||comma||', 'woah', '||exclammark||', '||leftparen||', 'scooting', 'in', '||comma||', 'giddy', '||rightparen||', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'modest', '||rightparen||', 'oh', '||comma||', 'you', 'know', '||comma||', 'the', 'usual', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "don't", 'know', '||period||', 'how', 'do', 'i', 'know', 'the', 'usual', '||questionmark||', '||return||', '||return||', 'jerry:', 'typical', 'things', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'picking', 'up', 'the', 'ketchup', '||rightparen||', 'what', 'typical', '||questionmark||', 'gimme', 'typical', '||period||', 'gimme', 'some', 'typical', '||period||', '||return||', '||return||', 'jerry:', 'she', 'says', '||comma||', 'uh', '||period||', '||period||', '||leftparen||', 'mumbles', 'something', 'inaudible', '||period||', 'george', '||comma||', 'so', 'shocked', 'by', 'what', "he's", 'just', 'heard', '||comma||', 'accidentally', 'squeezes', 'the', 'ketchup', 'bottle', '||dash||', 'ketchup', 'squirts', 'out', 'and', 'files', 'off', '||dash||', 'screen', '||period||', 'george', 'reacts', 'deeply', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'breathing', 'deeply', '||rightparen||', "that's", 'very', 'dirty', '||period||', '||leftparen||', 'jerry', 'nods', '||rightparen||', "that's", 'absolutely', 'filthy', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'and', 'then', 'she', 'starts', 'talking', 'about', 'her', 'panties', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'yelling', 'out', 'to', 'a', 'waitress', '||rightparen||', 'gonna', 'need', 'some', 'water', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'said', 'something', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'defensively', '||rightparen||', 'now', '||comma||', 'bear', 'in', 'mind', '||comma||', 'i', 'am', 'just', 'trying', 'to', 'keep', 'up', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||questionmark||', 'so', '||comma||', "she's", 'taking', 'about', 'her', 'panties', '||comma||', 'so', '||comma||', 'uh', '||period||', '||period||', 'so', '||comma||', 'i', 'said', '||comma||', '||quotemark||', 'you', 'mean', 'the', 'panties', 'your', 'mother', 'laid', 'out', 'for', 'you', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'takes', 'a', 'few', 'seconds', 'to', 'mull', 'this', 'one', 'over', '||period||', 'shooting', 'jerry', 'a', 'confused', 'look', '||comma||', 'he', 'repeats', 'it', '||rightparen||', '||quotemark||', 'the', 'panties', 'your', 'mother', 'laid', 'out', 'for', 'you', '||quotemark||', '||questionmark||', '||leftparen||', 'jerry', 'nods', '||rightparen||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'throwing', 'up', 'his', 'hands', '||rightparen||', 'i', "don't", 'know', '||exclammark||', 'it', 'just', 'popped', 'out', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'how', 'did', 'she', 'react', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'flipped', 'out', '||exclammark||', 'just', 'left', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "that's", 'not', 'offensive', '||period||', '||leftparen||', 'reflects', '||rightparen||', "it's", 'abnormal', '||comma||', 'but', "it's", 'not', 'offensive', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'the', 'main', 'thing', 'is', 'i', "don't", 'want', 'elaine', 'to', 'know', 'about', 'any', 'of', 'this', '||period||', 'i', 'mean', '||comma||', 'especially', 'the', 'panty', 'remark', '||period||', 'i', 'mean', '||comma||', "it's", 'embarrassing', '||period||', 'and', "she's", 'never', 'let', 'me', 'hear', 'the', 'end', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'she', 'will', 'tell', 'her', '||period||', "she's", 'going', 'back', 'to', 'work', '||period||', 'i', 'talked', 'her', 'into', 'it', '||dash||', 'how', 'stupid', 'was', 'that', '||questionmark||', '||leftparen||', 'changing', 'subject', 'as', 'they', 'both', 'collect', 'money', 'to', 'pay', 'for', 'the', 'check', '||rightparen||', 'hey', '||comma||', 'so', '||comma||', "susan's", 'father', 'took', 'that', 'news', 'pretty', 'hard', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'he', 'went', 'into', 'the', 'bedroom', 'and', 'started', 'sobbing', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'he', 'failed', 'to', 'see', 'the', 'humor', 'in', 'it', '||period||', '||return||', '||return||', 'george:', 'huh', '||period||', '||leftparen||', 'makes', 'a', '||quotemark||', 'over', 'his', 'head', '||quotemark||', 'gesture', 'with', 'his', 'arm', '||rightparen||', "c'mon", '||comma||', "let's", 'go', '||comma||', 'go', '||period||', 'we', 'got', 'a', 'lot', 'of', 'work', 'to', 'do', 'today', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'up', '||rightparen||', 'alright', '||comma||', 'big', 'work', 'day', '||period||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'jerry:', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'here', 'we', 'are', '||period||', '||return||', '||return||', 'jerry:', 'right', 'now', '||period||', '||return||', '||return||', 'george:', "let's", 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'and', 'me', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'george:', "what'dya", 'got', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', 'from', 'his', 'notebook', '||rightparen||', 'i', 'got', 'you', 'enter', '||comma||', 'you', 'go', '||quotemark||', 'hi', '||quotemark||', '||comma||', 'and', 'i', 'go', '||comma||', '||quotemark||', 'hello', '||period||', '||quotemark||', 'now', '||period||', '||period||', 'we', 'need', 'something', 'here', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'george:', "don't", 'be', 'silly', '||period||', '||return||', '||return||', 'jerry:', 'come', 'in', '||comma||', "we're", 'taking', 'a', 'break', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'moving', 'back', 'into', 'the', 'room', '||rightparen||', 'oh', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'george', '||comma||', 'did', 'you', 'talk', 'to', 'that', 'guy', 'about', 'getting', 'me', 'some', 'more', 'cigars', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'scoffs', '||rightparen||', 'no', '||comma||', 'i', 'told', 'you', '||comma||', "i'm", 'not', 'gonna', 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'concluding', '||rightparen||', 'okay', '||period||', '||period||', 'well', '||comma||', 'i', 'guess', "i'm", 'just', 'going', 'to', 'have', 'to', 'take', 'matters', 'into', 'my', 'own', 'hands', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'pause', '||rightparen||', 'alright', '||comma||', "i'll", 'see', 'you', 'guys', '||period||', '||leftparen||', 'leaves', '||comma||', 'despite', '||quotemark||', 'no', '||comma||', "don't", 'go', '||exclammark||', '||quotemark||', 'and', 'other', 'various', 'comments', 'by', 'jerry', 'and', 'george', '||rightparen||', '||return||', '||return||', '[setting:', 'united', "nations'", 'permanent', 'mission', 'of', 'cuba', 'building]', '||return||', '||return||', 'kramer:', 'buenos', 'dias', '||period||', '||return||', '||return||', 'secretary:', 'buenos', 'dias', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'habla', 'ingles', '||questionmark||', '||return||', '||return||', 'secretary:', 'si', '||period||', '||return||', '||return||', 'kramer:', 'giddy', '||dash||', 'up', '||period||', 'ok', '||comma||', 'uh', '||comma||', '||leftparen||', 'looks', 'at', 'a', 'woman', 'wearing', 'dark', 'sunglasses', 'and', 'sitting', 'on', 'a', 'sofa', 'behind', 'him', '||period||', 'he', 'reacts', 'oddly', '||rightparen||', 'um', '||period||', 'i', 'need', 'to', 'talk', 'to', 'someone', '||period||', '||return||', '||return||', 'secretary:', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', '||comma||', "it's", 'a', 'very', 'private', 'matter', '||comma||', 'but', "it's", 'extremely', 'urgent', '||period||', '||return||', '||return||', 'secretary:', 'are', 'you', 'an', 'american', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'secretary:', 'i', 'see', '||period||', '||period||', 'excuse', 'me', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'kramer:', 'okay', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'stirring', '||comma||', 'he', 'gets', 'up', 'to', 'answer', 'the', 'buzzer', '||rightparen||', 'alright', '||comma||', "let's", 'get', 'going', '||period||', "c'mon", '||comma||', "c'mon", 'now', '||period||', '||leftparen||', 'approaches', 'the', 'intercom', '||rightparen||', "c'mon", '||comma||', "let's", 'get', 'it', 'together', '||period||', '||period||', '||leftparen||', 'through', 'intercom', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'elaine', '||period||', '||return||', '||return||', 'jerry:', "c'mon", 'up', '||period||', '||leftparen||', 'slightly', 'opens', 'the', 'door', 'for', 'elaine', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', 'up', '||comma||', 'still', 'waking', 'up', '||rightparen||', 'alright', '||comma||', 'you', 'know', 'what', 'we', 'should', 'do', '||questionmark||', 'we', 'should', 'go', 'to', 'the', 'movies', '||period||', 'get', 'away', 'from', 'this', 'script', 'for', 'a', 'while', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'agreeing', '||rightparen||', 'yeah', '||comma||', 'we', 'should', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'i', 'just', 'have', 'to', 'go', 'over', 'to', 'the', "ross'", 'apartment', 'and', 'drop', 'off', "susan's", 'sunglasses', '||period||', "you'll", 'come', 'with', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'wha', '||dash||', 'what', '||comma||', 'does', 'she', 'live', 'with', 'them', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'nice', 'going', '||comma||', 'jerome', 'seinfeld', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'just', 'got', 'a', 'message', 'from', 'sandra', '||comma||', "she's", 'coming', 'back', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'then', '||comma||', "you've", 'just', 'got', 'to', 'fire', 'her', '||exclammark||', "don't", 'even', 'think', 'about', 'it', '||dash||', "there's", 'no', 'two', 'ways', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'what', 'happened', '||questionmark||', 'did', 'you', 'talk', '||questionmark||', '||return||', '||return||', 'jerry:', 'talk', '||questionmark||', 'did', 'i', 'talk', '||questionmark||', 'it', '||dash||', "you're", 'darn', 'right', 'i', 'talk', 'to', 'her', '||exclammark||', 'we', 'talked', 'up', 'a', 'storm', '||dash||', 'and', 'i', 'concluded', 'from', 'the', 'basis', 'of', 'these', 'talks', 'that', 'this', "isn't", 'anybody', 'you', 'should', 'be', 'talking', 'to', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'you', 'really', 'think', 'i', 'should', 'fire', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', 'yeah', '||comma||', 'in', 'fact', '||comma||', 'if', 'george', 'and', 'i', "weren't", 'so', 'busy', 'here', 'working', 'on', 'the', 'script', '||comma||', "i'd", 'do', 'it', 'myself', '||period||', '||return||', '||return||', '[setting:', 'united', "nations'", 'permanent', 'mission', 'of', 'cuba', 'building]', '||return||', '||return||', 'man:', '||leftparen||', 'to', 'secretary', '||rightparen||', 'expira', 'te', 'afuera', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'standing', 'up', '||comma||', 'greeting', 'the', 'men', '||rightparen||', 'buenos', 'dias', '||period||', '||return||', '||return||', 'man:', 'what', 'is', 'your', 'name', '||comma||', 'senor', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'man:', 'so', '||comma||', 'senor', 'kramer', '||comma||', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaning', 'in', '||comma||', 'confidentially', '||rightparen||', 'cigars', '||period||', '||return||', '||return||', 'man:', '||leftparen||', 'confused', '||rightparen||', 'cigars', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'definite', '||rightparen||', 'cigars', '||period||', '||return||', '||return||', 'man:', 'what', 'about', 'cigars', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'see', 'here', '||comma||', 'i', '||period||', '||period||', '||leftparen||', 'pulls', 'out', 'a', 'paper', 'ring', 'from', 'his', 'pocket', '||rightparen||', 'i', 'saved', 'one', 'of', 'the', 'cigar', 'rings', '||period||', '||period||', '||return||', '||return||', 'man:', 'ohh', '||period||', '||period||', '||leftparen||', 'laughs', '||comma||', 'pulling', 'a', 'cigar', 'from', 'his', 'inner', 'coat', 'pocket', '||rightparen||', 'you', 'mean', '||dash||', 'one', 'of', 'these', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', 'at', 'the', 'cigar', '||comma||', 'incredibly', 'nervous', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', 'that', '||dash||', "that's", '||comma||', 'uh', '||comma||', 'okay', '||comma||', 'so', '||comma||', 'uh', '||comma||', "i'd", 'like', 'to', 'buy', 'a', 'couple', 'of', 'boxes', 'of', 'those', 'from', 'you', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'deeply', 'sniffs', 'the', "cigar's", 'aroma', '||rightparen||', 'you', 'do', 'realize', '||comma||', 'of', 'course', '||comma||', 'these', 'are', 'illegal', 'in', 'your', 'country', '||period||', '||return||', '||return||', 'kramer:', 'um', '||comma||', 'wha', '||dash||', 'oh', '||comma||', 'illegal', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'man:', 'i', 'like', 'that', 'jacket', '||period||', '||period||', '||return||', '||return||', '[setting:', 'the', "ross'", 'apartment]', '||return||', '||return||', 'susan:', 'hi', '||exclammark||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'how', 'are', 'ya', '||questionmark||', '||leftparen||', 'they', 'kiss', '||rightparen||', '||return||', '||return||', 'susan:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'susan:', 'i', 'thought', 'you', 'two', 'guys', 'were', 'working', 'today', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'just', '||dash||', "takin'", 'a', 'little', 'break', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'chuckling', '||rightparen||', 'yeah', '||period||', 'uh', '||comma||', 'oh', '||comma||', "here's", 'your', 'sunglasses', '||period||', '||leftparen||', 'hands', 'them', 'to', 'her', '||rightparen||', '||return||', '||return||', 'susan:', 'ok', '||comma||', 'thanks', '||period||', 'come', 'on', 'in', 'for', 'a', 'second', '||period||', '||leftparen||', 'they', 'move', 'into', 'the', 'living', 'room', '||period||', 'susan', 'gestures', 'to', 'a', 'man', 'sitting', 'on', 'the', 'couch', 'reading', 'the', 'paper', '||rightparen||', 'this', 'is', 'my', 'brother', '||comma||', 'ricky', '||period||', "he's", 'home', 'from', 'college', 'for', 'the', 'weekend', '||period||', '||return||', '||return||', 'george:', 'ohh', '||comma||', 'hey', 'there', '||comma||', 'young', 'fella', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||rightparen||', "what's", 'your', 'major', '||questionmark||', '||return||', '||return||', 'ricky:', '||leftparen||', 'blunt', '||rightparen||', 'i', "don't", 'have', 'one', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'should', 'always', 'consider', 'podiatry', '||period||', '||leftparen||', 'patting', 'ricky', 'on', 'the', 'shoulder', '||rightparen||', "there's", 'nothing', 'wrong', 'with', 'the', 'feet', '||period||', '||leftparen||', 'ricky', 'looks', 'critically', 'back', 'at', 'george', '||rightparen||', '||return||', '||return||', 'susan:', '||leftparen||', 'now', 'gestures', 'to', 'an', 'old', 'woman', 'in', 'a', 'wheelchair', '||rightparen||', 'and', 'this', 'is', 'my', 'aunt', '||comma||', 'sara', '||period||', '||return||', '||return||', 'sara:', '||leftparen||', 'staring', 'at', 'george', '||rightparen||', 'he', "doesn't", 'look', 'like', 'me', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'sara', '||comma||', 'what', 'do', 'you', 'have', 'on', 'your', 'wheels', '||questionmark||', '||return||', '||return||', 'sara:', 'nothing', '||comma||', "they're", 'clean', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'ricky', '||comma||', 'did', 'you', 'wipe', 'her', 'wheels', 'off', '||questionmark||', '||return||', '||return||', 'ricky:', '||leftparen||', 'annoyed', '||rightparen||', 'yes', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'concluding', '||rightparen||', 'well', '||comma||', "they're", 'filthy', '||period||', "it's", 'just', 'a', 'matter', 'of', 'common', 'courtesy', '||period||', '||period||', '||leftparen||', 'wheels', 'sara', 'over', 'to', 'a', 'spot', 'off', 'the', 'rug', '||rightparen||', 'when', 'you', 'come', 'in', 'the', 'house', 'you', 'wipe', 'your', 'wheels', '||period||', '||return||', '||return||', 'susan:', 'excuse', 'me', '||period||', '||leftparen||', 'answer', 'the', 'door', '||period||', "it's", 'her', 'doorman', '||comma||', 'raymond', '||comma||', 'carrying', 'a', 'burnt', 'box', '||rightparen||', 'hello', '||comma||', 'raymond', '||period||', '||return||', '||return||', 'raymond:', 'ah', '||comma||', 'yes', '||comma||', 'the', 'man', 'from', 'the', 'insurance', 'company', 'dropped', 'this', 'off', 'this', 'morning', '||period||', 'he', 'said', 'it', 'was', 'the', 'only', 'thing', 'left', 'from', 'the', 'remains', 'of', 'the', 'fire', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'accepts', 'the', 'box', '||rightparen||', 'oh', '||comma||', 'thank', 'you', '||period||', '||leftparen||', 'as', 'the', 'doorman', 'leaves', '||comma||', 'she', 'turns', 'to', 'jerry', 'and', 'george', '||rightparen||', 'wow', '||comma||', "i've", 'never', 'seen', 'this', 'before', '||period||', '||period||', '||leftparen||', 'opens', 'the', 'charred', 'box', '||rightparen||', 'oh', '||comma||', "they're", 'letters', '||period||', '||leftparen||', 'hands', 'the', 'box', 'to', 'george', '||rightparen||', 'here', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sure', '||period||', '||leftparen||', 'holds', 'the', 'box', 'out', 'as', 'susan', 'takes', 'out', 'a', 'few', 'letters', '||rightparen||', '||return||', '||return||', 'susan:', 'from', '||period||', '||period||', '||leftparen||', 'trying', 'to', 'read', 'one', '||rightparen||', 'from', 'john', 'cheever', '||period||', '||return||', '||return||', 'jerry', 'and', 'george:', 'oh', '||comma||', 'wow', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'chuckles', 'as', 'she', 'opens', 'up', 'one', 'of', 'the', 'letters', '||period||', 'she', 'reads', 'it', '||rightparen||', '||quotemark||', 'dear', 'henry', '||comma||', 'last', 'night', 'with', 'you', 'was', 'bliss', '||period||', 'i', 'fear', 'my', '||period||', '||period||', 'orgasm', '||leftparen||', 'she', 'now', 'has', "everyone's", 'attention', '||rightparen||', 'has', 'left', 'me', 'a', 'cripple', '||period||', 'i', "don't", 'how', 'how', 'i', 'shall', 'ever', 'get', 'back', 'to', 'work', '||period||', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'make', 'odd', 'faces', 'as', 'susan', 'is', 'still', 'concentrating', 'on', 'the', 'notes', '||rightparen||', 'i', 'love', 'you', 'madly', '||comma||', 'john', '||period||', '||leftparen||', 'pause', '||rightparen||', 'p', '||period||', 's', '||period||', 'loved', 'the', 'cabin', '||period||', '||quotemark||', '||leftparen||', 'george', 'nods', '||comma||', 'and', 'jerry', 'gives', 'a', '||quotemark||', 'oh', '||comma||', 'of', 'course', '||quotemark||', 'reaction', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'we', '||period||', '||period||', 'we', '||comma||', 'we', '||comma||', 'ah', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'his', 'watch', '||rightparen||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'george:', 'we', 'really', 'should', 'be', '||comma||', 'uh', '||comma||', 'heading', 'out', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'tapping', 'his', 'watch', '||rightparen||', 'look', 'at', 'the', 'time', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'the', 'time', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'the', 'box', '||exclammark||', '||leftparen||', 'rushes', 'toward', 'george', '||comma||', 'grabbing', 'the', 'box', 'away', 'from', 'him', '||comma||', 'then', 'the', 'letters', 'from', "susan's", 'hands', '||rightparen||', 'my', 'letters', '||exclammark||', 'gimme', 'that', '||exclammark||', '||leftparen||', 'now', 'holding', 'them', 'against', 'his', 'chest', '||comma||', 'defensively', '||rightparen||', 'who', 'told', 'you', 'to', 'open', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'hysterical', '||rightparen||', "who's", 'john', '||questionmark||', '||exclammark||', "who's", 'john', '||questionmark||', '||exclammark||', '||return||', '||return||', 'sara:', '||leftparen||', 'yelling', 'out', '||rightparen||', 'i', 'knew', 'it', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'i', 'want', 'to', 'know', 'who', 'john', 'is', '||exclammark||', '||return||', '||return||', 'rickey:', 'john', 'cheever', '||questionmark||', '||exclammark||', 'dad', '||comma||', 'you', 'and', 'john', 'cheever', '||questionmark||', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'proclaiming', '||rightparen||', 'yes', '||exclammark||', 'yes', '||comma||', 'he', 'was', 'the', 'most', 'wonderful', 'person', "i've", 'ever', 'known', '||period||', 'and', 'i', 'love', 'him', 'deeply', '||exclammark||', 'in', 'a', 'way', 'you', 'could', 'never', 'understand', '||period||', '||period||', '||leftparen||', 'slowly', 'walks', 'back', 'to', 'his', 'room', '||comma||', 'leaving', 'everyone', 'speechless', '||period||', 'susan', 'seems', 'to', 'be', 'affected', 'the', 'most', '||period||', 'a', 'long', 'pause', 'passes', '||period||', 'jerry', 'gives', 'george', 'a', 'signal', 'that', 'they', 'should', 'go', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'we', 'really', 'should', 'be', '||dash||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'heading', 'out', '||period||', 'jerry', 'really', 'hates', 'to', 'miss', 'the', 'coming', 'attractions', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', '||comma||', '||leftparen||', 'pointing', 'to', 'his', 'watch', '||rightparen||', 'because', 'of', 'the', '||period||', '||period||', '||leftparen||', 'slowly', 'exiting', '||rightparen||', 'time', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'time', 'is', 'what', "he's", 'indicating', 'there', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'waving', 'good', 'bye', '||rightparen||', "we'll", 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'anyway', '||comma||', '||leftparen||', 'waving', 'bye', 'to', 'everyone', '||rightparen||', 'onward', 'and', 'upward', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'alright', '||comma||', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'come', 'on', 'now', '||period||', '||return||', '||return||', 'jerry:', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'jerry:', 'you', 'and', 'me', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', "foolin'", '||return||', '||return||', 'george:', 'ok', '||comma||', 'so', '||comma||', "what'dya", 'got', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'his', 'notebook', '||rightparen||', 'alright', '||comma||', 'i', 'got', '||comma||', 'uh', '||comma||', 'you', 'come', 'in', '||comma||', 'you', 'say', '||quotemark||', 'hi', '||quotemark||', '||comma||', 'and', 'i', 'say', '||quotemark||', 'hello', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'so', '||comma||', 'we', 'need', 'something', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', 'how', 'about', 'this', 'i', 'say', '||quotemark||', "how's", 'it', "goin'", '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', "how's", 'it', 'going', '||questionmark||', '||quotemark||', '||dash||', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'up', 'to', 'answer', 'the', 'door', '||rightparen||', 'alright', '||comma||', 'did', 'you', 'get', 'that', 'line', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'nodding', '||comma||', 'writing', '||rightparen||', '||quotemark||', "how's", 'it', 'going', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'write', 'it', 'down', '||questionmark||', '||return||', '||return||', 'george:', "i'm", "writin'", 'it', '||period||', '||quotemark||', "how's", 'it', 'going', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||leftparen||', 'opens', 'the', 'door', 'to', 'a', 'frantic', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'real', 'good', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'know', 'how', 'much', 'money', 'you', 'cost', 'me', 'today', '||questionmark||', '||exclammark||', '429', 'dollars', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', 'how', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'sandra', 'transferred', 'to', 'another', 'office', 'upstairs', '||comma||', 'okay', '||questionmark||', '||exclammark||', 'so', '||comma||', 'she', 'blabs', 'to', 'lippman', 'about', 'my', 'long', 'distance', 'calls', 'to', 'europe', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'calls', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'uh', '||exclammark||', 'i', 'made', 'a', 'friend', 'when', 'i', 'was', 'in', 'europe', '||comma||', 'okay', '||questionmark||', '||exclammark||', 'and', "we've", 'been', 'in', 'touch', '||comma||', 'and', 'sandra', 'told', 'lippman', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'did', '||dash||', 'did', 'she', 'say', 'anything', 'else', 'to', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', '||rightparen||', '||quotemark||', 'anything', 'else', '||quotemark||', '||questionmark||', 'what', 'do', 'you', 'mean', '||quotemark||', 'anything', 'else', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'she', 'just', 'left', 'the', 'office', '||dash||', "didn't", 'say', 'a', 'word', 'to', 'you', 'about', 'anything', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', 'to', 'himself', '||rightparen||', 'beautiful', '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'that', 'beautiful', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'not', 'beautiful', '||period||', '||return||', '||return||', 'elaine:', "it's", 'four', 'hundred', 'and', 'twenty', 'nine', 'dollars', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'look', '||comma||', "i'm", 'going', 'to', 'pay', 'for', 'that', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'out', 'his', 'checkbook', '||rightparen||', 'no', '||comma||', 'i', 'insist', '||period||', 'i', 'was', 'the', 'one', 'who', 'encouraged', 'you', 'to', 'fire', 'her', '||dash||', 'the', 'whole', 'thing', 'was', 'all', 'my', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'giving', 'up', 'too', 'easy', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pauses', '||comma||', 'noting', "elaine's", 'quick', 'accept', '||rightparen||', 'fault', '||period||', '||leftparen||', 'starts', 'to', 'write', 'a', 'check', 'out', '||comma||', 'then', 'stops', '||comma||', 'looking', 'at', 'the', 'door', '||rightparen||', 'do', 'you', 'smell', 'smoke', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||exclammark||', 'hey', '||comma||', 'jer', '||comma||', 'i', 'want', 'you', 'to', 'meet', 'my', 'new', 'friends', '||comma||', 'here', '||period||', '||leftparen||', 'introducing', 'each', 'one', '||rightparen||', 'this', 'is', '||comma||', 'uh', '||comma||', 'louis', '||comma||', 'jorge', '||comma||', 'and', 'umberto', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'how', 'you', 'doing', '||questionmark||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "we're", 'heading', 'up', 'to', 'westchester', '||dash||', 'gonna', 'hit', 'the', 'links', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'notices', "louis'", 'jacket', '||rightparen||', "isn't", 'that', '||comma||', 'uh', '||comma||', 'your', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'trying', 'to', 'avoid', 'the', 'issue', '||rightparen||', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'okay', '||comma||', "we're", 'going', '||period||', '||leftparen||', 'to', 'his', 'three', 'friends', '||rightparen||', 'vamanos', '||comma||', 'muchachos', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'turns', 'to', 'george', '||comma||', 'he', 'is', 'now', 'reading', 'a', 'book', '||rightparen||', 'hey', '||comma||', 'what', 'are', 'you', 'reading', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'uh', '||comma||', '||quotemark||', 'the', 'falconer', '||quotemark||', 'by', 'john', 'cheever', '||period||', "it's", 'really', 'excellent', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'john', 'cheever', '||comma||', 'you', 'ever', 'read', 'any', 'of', 'his', 'stuff', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||comma||', "i'm", 'familiar', 'with', 'some', 'of', 'his', 'writing', '||period||', '||leftparen||', 'george', 'shoots', 'jerry', 'a', 'smirk', '||comma||', 'then', 'returns', 'to', 'his', 'book', '||rightparen||', 'alright', '||comma||', '||leftparen||', 'hand', 'the', 'check', 'to', 'elaine', '||rightparen||', 'look', '||comma||', 'we', 'gotta', 'get', 'back', 'to', 'work', '||period||', 'we', 'just', 'had', 'a', 'big', 'breakthrough', 'here', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'folding', 'up', 'the', 'check', '||rightparen||', 'ok', '||comma||', "i'll", 'leave', 'you', 'two', 'alone', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'moving', 'back', 'into', 'the', 'living', 'room', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'the', 'door', 'way', '||rightparen||', 'maybe', "i'll", 'go', 'visit', 'my', 'mother', '||period||', 'she', 'just', 'bought', 'me', 'some', 'new', 'panties', '||leftparen||', 'jerry', 'pauses', 'right', 'before', 'sitting', 'in', 'his', 'chair', '||rightparen||', 'and', "they're", '||dash||', 'all', 'laid', 'out', 'for', 'me', '||period||', '||leftparen||', 'leaves', '||comma||', 'smiling', 'to', 'herself', '||period||', 'jerry', 'and', 'george', 'both', 'look', 'at', 'each', 'other', '||comma||', 'frozen', 'in', 'their', 'places', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'machine', '||rightparen||', 'leave', 'a', 'message', 'and', 'i', '||questionmark||', 'll', 'call', 'you', 'back', '||comma||', 'thanks', '||period||', 'joe', 'divola', 'jerry', '||comma||', 'joe', 'divola', '||period||', '*pbt*', '*pbt*', '*pbt*', 'i', 'have', 'a', 'hair', 'on', 'my', 'tongue', '||comma||', 'i', "can't", 'get', 'it', 'off', '||comma||', 'you', 'know', 'how', 'much', 'i', 'hate', 'that', '||questionmark||', 'course', 'you', 'do', '||comma||', 'you', 'put', 'it', 'there', '||period||', 'i', 'know', 'what', 'you', 'said', 'about', 'me', 'seinfeld', '||period||', 'i', 'know', 'you', 'badmouthed', 'me', 'to', 'the', 'execs', 'at', 'nbc', '||comma||', 'put', 'the', 'kibosh', 'on', 'my', 'deal', '||period||', 'now', 'i', '||questionmark||', 'm', 'gonna', 'put', 'the', 'kibosh', 'on', 'you', '||period||', 'you', 'know', 'i', '||questionmark||', 've', 'kiboshed', 'before', '||comma||', 'and', 'i', 'will', 'kibosh', 'again', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'about', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'about', 'the', 'opera', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'i', "don't", 'wanna', 'go', '||period||', '||return||', '||return||', 'kramer:', 'you', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'i', '||dash||', 'i', '||dash||', 'i', "don't", 'like', 'the', 'opera', '||period||', 'what', 'are', 'they', 'singing', 'for', '||questionmark||', 'who', 'sings', '||questionmark||', 'you', 'got', 'something', 'to', 'say', '||comma||', 'say', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', "don't", 'understand', '||comma||', 'that', '||questionmark||', 's', 'the', 'way', 'they', 'talk', 'in', 'italy', '||comma||', 'they', 'sing', 'to', 'one', 'another', '||period||', 'kramer', 'starts', 'to', 'sing', 'in', 'bad', 'italian', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'that', '||questionmark||', 's', 'the', 'way', 'it', 'was', '||comma||', 'you', 'know', '||period||', 'you', 'listen', 'to', 'the', 'language', '||comma||', 'its', 'got', 'that', 'sing', 'songy', 'quality', '||period||', 'it', '||questionmark||', 's', 'the', 'language', 'jerry', '||comma||', 'the', 'language', '||return||', '||return||', 'jerry:', 'so', 'why', "don't", 'they', 'talk', 'like', 'that', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'its', '||comma||', 'uh', '||comma||', 'well', 'its', 'too', 'hard', 'to', 'keep', 'up', '||comma||', 'you', 'know', '||comma||', 'they', 'were', 'tired', '||period||', '||return||', '||return||', 'kramer:', 'better', 'get', 'that', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'intercom', '||rightparen||', 'it', '||questionmark||', 's', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||return||', '||return||', 'kramer:', 'oh', 'come', 'on', 'jerry', '||comma||', 'its', 'opening', 'night', '||comma||', 'black', 'tie', '||comma||', 'pagliacci', '||exclammark||', 'the', 'great', 'clown', '||comma||', 'the', 'great', 'sad', 'tragic', 'clown', '||comma||', 'like', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', 'it', '||questionmark||', 's', 'very', 'flattering', '||period||', 'how', 'did', 'you', 'get', 'these', 'tickets', '||comma||', 'i', 'heard', "they're", 'impossible', 'to', 'get', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', 'i', 'have', 'many', 'associates', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'opera', '||comma||', 'it', '||questionmark||', 's', 'not', 'my', 'kind', 'of', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'you', 'not', 'gonna', 'go', 'i', '||questionmark||', 'm', 'not', 'gonna', 'go', '||comma||', 'i', '||questionmark||', 'm', 'gonna', 'call', 'the', 'whole', 'thing', 'off', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||comma||', 'that', '||questionmark||', 's', 'not', 'fair', '||comma||', 'what', 'about', 'george', '||comma||', 'susan', 'and', 'elaine', '||comma||', 'what', 'do', 'you', 'need', 'me', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'the', 'nucleus', '||comma||', 'the', 'straw', 'that', 'stirs', 'the', 'drink', '||period||', "you're", 'the', 'miana', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'guess', 'if', 'i', '||questionmark||', 'm', 'the', 'miana', 'i', 'should', 'go', '||period||', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'hi', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'got', 'the', 'tickets', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'no', '||comma||', 'i', "don't", 'have', 'them', 'on', 'me', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'that', '||questionmark||', 's', 'why', 'i', 'came', 'all', 'the', 'way', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', 'my', 'friends', 'got', "'em", '||comma||', 'i', '||questionmark||', 'm', 'going', 'to', 'pick', 'them', 'up', 'tomorrow', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'was', 'gonna', 'surprise', 'joey', 'with', 'them', '||comma||', 'you', 'got', 'an', 'extra', 'one', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'finally', 'get', 'to', 'meet', 'your', 'pal', 'joey', '||period||', '||return||', '||return||', 'elaine:', 'its', 'killing', 'you', 'isn', '||questionmark||', 't', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'joey', '||questionmark||', 's', 'a', 'great', 'lover', 'of', 'the', 'opera', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'i', 'got', 'news', 'for', 'ya', '||comma||', 'its', 'nice', 'to', 'be', 'involved', 'with', 'somebody', 'who', '||questionmark||', 's', 'interested', 'in', 'something', 'other', 'than', 'nick', 'at', 'night', '||period||', 'now', 'he', '||questionmark||', 's', 'got', 'a', 'grip', 'on', 'reality', '||comma||', "he's", 'happy', '||comma||', "he's", 'well', 'adjusted', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', '||questionmark||', 'm', 'looking', 'forward', 'to', 'meeting', 'him', '||period||', '||return||', '||return||', 'elaine:', "i've", 'got', 'to', 'go', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||comma||', 'what', '||questionmark||', 's', 'the', 'rush', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'to', 'surprise', 'joey', '||comma||', 'i', '||questionmark||', 've', 'never', 'been', 'to', 'his', 'apartment', 'so', 'i', '||questionmark||', 'm', 'just', 'going', 'to', "'pop", "in'", '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'good', '||comma||', 'men', 'love', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', "you've", 'got', 'a', 'message', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'ooo', '||comma||', 'could', 'be', 'from', 'that', 'blonde', '||return||', '||return||', 'kramer:', 'oo', 'yiggity', 'diggigg', '||return||', '||return||', 'joe', 'divola:', '||leftparen||', 'answering', 'machine', 'message', '||rightparen||', "'jerry", '||comma||', 'joe', 'divola', '||period||', 'i', 'have', 'a', 'hair', 'on', 'my', "tongue'", '||return||', '||return||', 'jerry:', '||leftparen||', 'shouting', '||rightparen||', 'kramer', 'what', 'am', 'i', 'going', 'to', 'do', 'did', 'you', 'hear', 'that', 'that', "guy's", 'gonna', 'put', 'a', 'kibosh', 'on', 'me', "he's", 'crazy', "he's", 'out', 'of', 'his', 'mind', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'steady', '||comma||', 'steady', '||comma||', 'now', 'calm', 'yourself', '||comma||', 'come', 'on', '||comma||', 'now', 'get', 'a', 'hold', 'of', 'yourself', '||comma||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', "he's", 'supposed', 'to', 'be', 'on', 'medication', 'i', "don't", 'understand', 'he', 'told', 'me', "he's", 'getting', 'medication', 'what', 'happened', 'to', 'his', 'medication', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'ok', 'quiet', '||exclammark||', 'quiet', '||exclammark||', 'now', 'let', 'me', 'think', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'call', 'the', 'cops', '||period||', 'that', '||questionmark||', 's', 'what', 'i', '||questionmark||', 'm', 'doing', '||comma||', 'i', '||questionmark||', 'm', 'calling', 'the', 'cops', '||period||', '||return||', '||return||', 'kramer:', 'the', 'cops', '||questionmark||', 'what', 'are', 'you', 'calling', 'the', 'cops', 'for', '||questionmark||', 'they', '||questionmark||', 're', 'not', 'going', 'to', 'do', 'anything', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', "they're", 'not', 'going', 'to', 'do', 'anything', '||comma||', "they're", 'the', 'cops', '||comma||', 'they', 'gotta', 'do', 'something', '||comma||', 'he', 'just', 'put', 'the', 'kibosh', 'on', 'me', '||comma||', 'do', 'you', 'know', 'what', 'the', 'kibosh', 'means', '||comma||', 'its', 'a', 'kibosh', '||exclammark||', '||return||', '||return||', 'kramer:', 'yiddigtkk', 'ka', 'kibosh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', "it's", 'a', 'terrible', 'mistake', '||comma||', 'i', 'mean', 'he', 'thinks', 'i', 'ruined', 'some', 'deal', 'of', 'his', 'at', 'nbc', '||comma||', 'i', "don't", 'know', 'anything', 'about', 'any', 'deal', 'at', 'nbc', '||period||', '||return||', '||return||', 'kramer:', 'call', 'him', 'and', 'tell', 'him', '||return||', '||return||', 'jerry:', 'that', '||questionmark||', 's', 'what', 'i', '||questionmark||', 'll', 'do', '||comma||', 'i', '||questionmark||', 'll', 'just', 'call', 'him', 'and', 'tell', 'him', '||comma||', 'i', '||questionmark||', 'll', 'tell', 'him', '||period||', 'that', '||questionmark||', 's', 'all', 'i', '||questionmark||', 'll', 'do', '||period||', "he's", 'a', 'human', 'being', '||comma||', 'i', '||questionmark||', 'll', 'talk', 'to', 'him', '||period||', "he'll", 'understand', '||period||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||period||', '||period||', '||period||', "don't", 'mention', 'my', 'name', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'got', 'the', 'machine', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 's', 'his', 'message', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'nice', '||exclammark||', '||return||', '||return||', 'kramer:', 'eh', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'hello', 'joe', '||comma||', 'listen', 'this', 'is', 'jerry', 'seinfeld', '||comma||', 'i', 'really', 'think', 'there', '||questionmark||', 's', 'been', 'a', 'huge', 'colossal', 'misunderstanding', '||comma||', '||return||', '||return||', 'kramer:', 'big', '||exclammark||', 'big', '||exclammark||', '||return||', '||return||', 'jerry:', 'and', 'i', 'feel', 'if', 'we', 'can', 'just', 'talk', 'about', 'this', 'we', 'can', 'straighten', 'the', 'whole', 'thing', 'out', '||comma||', 'so', 'listen', '||comma||', 'so', 'call', 'me', 'back', '||period||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'joey', '||questionmark||', 'joey', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||comma||', 'oh', '||comma||', 'its', 'you', '||exclammark||', 'you', 'scared', 'me', '||exclammark||', '||return||', '||return||', 'joe', 'divola:', 'good', '||period||', 'fear', 'is', 'our', 'most', 'primal', 'emotion', '||period||', '||return||', '||return||', 'elaine:', 'you', 'left', 'your', 'door', 'open', '||period||', '||return||', '||return||', 'joe', 'divola:', 'i', 'know', '||comma||', 'i', 'like', 'to', 'encourage', 'intruders', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'what', '||questionmark||', 's', 'all', 'this', '||questionmark||', '||return||', '||return||', 'joe', 'divola:', 'do', 'you', 'like', 'it', '||questionmark||', 'my', 'home', 'is', 'a', 'shrine', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'where', 'did', 'you', 'get', 'all', 'these', 'pictures', '||questionmark||', '||return||', '||return||', 'joe', 'divola:', 'i', 'took', 'them', 'myself', 'with', 'a', 'telephoto', 'lens', '||period||', 'coming', 'out', 'of', 'your', 'office', '||comma||', 'your', 'apartment', '||comma||', 'shopping', '||comma||', 'showering', '||period||', '||return||', '||return||', 'elaine:', 'showering', '||questionmark||', '||return||', '||return||', 'joe', 'divola:', 'i', 'developed', 'them', 'myself', 'in', 'my', 'dark', 'room', '||period||', 'would', 'you', 'like', 'to', 'see', '||questionmark||', '||return||', '||return||', 'elaine:', 'in', 'the', 'dark', 'room', '||questionmark||', 'uh', 'no', '||comma||', 'no', 'thank', 'you', '||period||', 'not', 'right', 'now', '||period||', "i'm", 'a', 'day', 'person', '||exclammark||', '||period||', '||period||', '||period||', 'are', 'you', 'all', 'right', '||questionmark||', '||return||', '||return||', 'joe', 'divola:', 'why', '||return||', '||return||', 'elaine:', 'well', 'i', "don't", 'know', '||comma||', 'you', 'just', "don't", 'seem', 'yourself', '||questionmark||', '||return||', '||return||', 'joe', 'divola:', 'who', 'am', 'i', '||questionmark||', 'who', 'am', 'i', 'supposed', 'to', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', '||questionmark||', 's', 'a', 'good', 'question', '||comma||', 'good', 'question', '||comma||', 'its', 'very', '||period||', '||period||', '||period||', 'exerstential', '||exclammark||', 'who', 'are', 'you', '||questionmark||', 'who', 'am', 'i', '||questionmark||', 'yeah', '||comma||', 'well', '||period||', '||return||', '||return||', 'joe', 'divola:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'nothing', '||comma||', 'i', 'just', 'stopped', 'by', 'to', 'chat', '||comma||', 'you', 'know', '||comma||', 'shoot', 'the', 'breeze', '||period||', '||return||', '||return||', 'joe', 'divola:', 'were', 'you', 'able', 'to', 'get', 'those', 'opera', 'tickets', 'to', 'pagliacci', 'from', 'that', 'friend', 'of', 'yours', '||questionmark||', "i'm", 'really', 'looking', 'forward', 'to', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', 'he', "couldn't", 'get', 'them', '||period||', "we're", 'not', 'going', '||period||', '||return||', '||return||', 'joe', 'divola:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'dammit', '||comma||', 'you', 'know', 'i', 'just', 'remembered', 'i', 'gotta', 'go', '||comma||', 'i', 'left', 'something', 'on', '||comma||', 'the', 'gas', '||comma||', 'the', 'lights', '||comma||', 'the', 'water', 'in', 'the', 'tub', '||period||', 'something', 'is', 'on', 'somewhere', 'so', 'i', '||questionmark||', 'm', 'just', 'gonna', 'get', 'the', 'uh', '||period||', '||period||', '||return||', '||return||', 'joe', 'divola:', 'you', 'know', 'the', 'story', 'of', 'pagliacci', '||comma||', 'nedda', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||period||', '||period||', 'i', '||questionmark||', 'm', 'elaine', '||exclammark||', '||return||', '||return||', 'joe', 'divola:', "he's", 'a', 'clown', 'whose', 'wife', 'is', 'unfaithful', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'joe', 'divola:', 'do', 'you', 'think', 'i', '||questionmark||', 'm', 'a', 'clown', '||comma||', 'nedda', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'i', 'think', "you're", 'a', 'clown', '||questionmark||', 'no', '||comma||', 'not', 'if', 'it', '||questionmark||', 's', 'bad', 'to', 'be', 'a', 'clown', '||comma||', 'if', 'it', '||questionmark||', 's', 'bad', 'to', 'be', 'a', 'clown', 'then', 'you', 'are', 'definitely', 'not', 'a', 'clown', '||period||', 'but', 'if', 'its', 'good', 'to', 'be', 'a', 'clown', 'then', '||comma||', 'you', 'know', '||comma||', 'i', 'would', 'have', 'to', 'rethink', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'joe', 'divola:', "you've", 'betrayed', 'me', 'with', 'another', '||comma||', "haven't", 'you', '||comma||', 'nedda', '||questionmark||', 'who', 'is', 'he', '||period||', 'i', 'want', 'you', 'to', 'tell', 'me', 'who', 'he', 'is', '||period||', 'i', 'want', 'his', 'name', '||period||', 'tell', 'me', 'his', 'name', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'like', 'any', 'man', 'would', 'ever', 'look', 'at', 'me', '||comma||', 'come', 'on', '||comma||', 'i', '||questionmark||', 'm', 'gonna', '||period||', '||period||', '||period||', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'joe', 'divola:', 'pagliacci', 'kills', 'his', 'wife', '||period||', '||return||', '||return||', 'elaine:', 'se', '||comma||', 'now', 'that', '||questionmark||', 's', 'terrible', '||comma||', 'that', 'is', 'not', 'a', 'nice', 'thing', 'to', 'do', 'at', 'all', '||comma||', 'i', 'don', '||questionmark||', 't', 'know', 'how', 'this', 'paliachi', 'thing', 'turns', 'out', 'but', 'you', 'know', 'i', 'would', 'assume', 'that', 'there', 'is', 'big', 'big', 'trouble', 'for', 'that', 'clown', '||return||', '||return||', 'joe', 'divola:', "you're", 'not', 'leaving', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'phone', '||rightparen||', 'but', 'officer', '||comma||', 'he', 'threatened', 'me', '||exclammark||', 'i', "don't", 'understand', '||comma||', 'that', '||questionmark||', 's', 'not', 'right', '||exclammark||', 'what', 'if', 'it', 'was', 'the', 'president', 'of', 'the', 'united', 'states', 'i', 'bet', "you'd", 'investigate', '||period||', 'so', 'what', '||questionmark||', 's', 'the', 'difference', '||comma||', 'i', '||questionmark||', 'm', 'a', 'comedian', 'of', 'the', 'united', 'states', '||comma||', 'and', 'i', '||questionmark||', 'll', 'tell', 'you', 'i', '||questionmark||', 'm', 'under', 'just', 'as', 'much', 'pressure', '||period||', 'alright', '||comma||', 'thanks', 'anyway', '||comma||', 'ok', 'bye', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cautiously', '||rightparen||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'george', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'are', 'you', 'locking', 'the', 'door', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'well', '||comma||', 'look', 'at', 'you', '||period||', 'it', '||questionmark||', 's', 'a', 'little', 'skimpy', 'there', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'you', 'know', 'the', 'last', 'time', 'i', 'wore', 'this', 'thing', '||questionmark||', 'six', 'years', 'ago', '||comma||', 'when', 'i', 'made', 'that', 'toast', 'at', 'bobby', "leighton's", 'wedding', '||period||', '||return||', '||return||', 'jerry:', 'ooo', '||comma||', 'that', 'was', 'a', 'bad', 'toast', '||period||', '||return||', '||return||', 'george:', 'it', "wasn't", 'that', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'heard', 'anybody', 'curse', 'in', 'a', 'toast', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'trying', 'to', 'loosen', "'em", 'up', 'a', 'little', 'bit', '||period||', '||return||', '||return||', 'jerry:', 'there', 'were', 'old', 'people', 'there', '||comma||', 'all', 'the', 'relatives', '||period||', 'you', 'were', 'like', 'a', 'red', 'fox', 'record', '||period||', 'i', 'mean', '||comma||', 'at', 'the', 'end', 'of', 'the', 'toast', 'nobody', 'even', 'drank', '||period||', 'they', 'were', 'just', 'standing', 'there', '||comma||', 'they', 'were', 'just', 'frozen', '||exclammark||', 'that', 'might', 'have', 'been', 'one', 'of', 'the', 'worst', 'all', 'time', 'toasts', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'still', 'her', 'father', "didn't", 'have', 'to', 'throw', 'me', 'out', 'like', 'that', '||comma||', 'he', 'could', 'have', 'just', 'asked', 'me', 'to', 'leave', '||period||', 'the', 'guy', 'had', 'me', 'in', 'a', 'headlock', '||exclammark||', "susan's", 'not', 'going', 'tonight', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'not', 'going', '||questionmark||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'she', 'said', 'she', 'had', 'to', 'pick', 'up', 'a', 'friend', 'of', 'hers', 'at', 'the', 'airport', '||period||', 'it', 'cost', 'me', 'a', 'hundred', 'dollars', 'this', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'why', "doesn't", 'she', 'pay', 'for', 'hers', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'a', 'very', 'good', 'question', '||period||', 'you', 'know', 'she', 'and', 'i', 'go', 'out', 'for', 'dinner', '||comma||', 'she', "doesn't", 'even', 'reach', 'for', 'the', 'check', '||period||', 'that', '||questionmark||', 's', 'all', 'i', '||questionmark||', 'm', 'asking', 'for', 'is', 'a', 'reach', '||period||', 'is', 'that', 'so', 'much', 'to', 'ask', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'nice', 'to', 'get', 'a', 'reach', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'are', 'you', 'locking', 'the', 'door', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'of', 'divola', '||exclammark||', 'get', 'in', 'here', '||period||', '||period||', '||period||', 'how', 'come', "you're", 'not', 'dressed', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'am', 'dressed', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'like', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'hey', 'i', 'want', 'you', 'to', 'hear', 'something', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'said', 'people', 'dress', 'up', 'when', 'they', 'go', 'to', 'the', 'opera', '||exclammark||', '||return||', '||return||', 'kramer:', 'people', 'do', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'about', 'me', '||exclammark||', 'if', "you're", 'going', 'like', 'that', '||comma||', 'i', '||questionmark||', 'm', 'not', 'going', 'like', 'this', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||comma||', 'do', 'you', 'think', 'i', '||questionmark||', 'm', 'comfortable', 'here', '||period||', 'i', "can't", 'change', '||comma||', 'i', '||questionmark||', 've', 'got', 'no', 'clothes', 'here', '||exclammark||', "you've", 'got', 'to', 'go', 'like', 'that', '||comma||', 'i', 'can', '||questionmark||', 't', 'go', 'like', 'this', 'alone', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'should', 'i', 'be', 'uncomfortable', 'just', 'because', 'my', 'apartment', 'is', 'closer', 'to', 'town', 'hall', 'than', 'yours', '||questionmark||', '||return||', '||return||', 'george:', 'that', '||questionmark||', 's', 'not', 'the', 'issue', '||comma||', "we're", 'friends', '||comma||', 'if', 'i', '||questionmark||', 've', 'got', 'to', 'be', 'uncomfortable', '||comma||', "you've", 'got', 'to', 'be', 'uncomfortable', 'too', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'i', '||questionmark||', 'll', 'wear', 'this', '||period||', "it's", 'bad', 'enough', 'i', '||questionmark||', 've', 'got', 'to', 'go', 'to', 'the', 'opera', 'i', '||questionmark||', 've', 'got', 'to', 'sit', 'next', 'to', 'ozzie', 'nelson', 'over', 'here', '||period||', '||return||', '||return||', 'jerry:', 'would', 'you', 'turn', 'that', 'down', '||exclammark||', 'what', 'is', 'that', 'crap', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'pagliacci', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'beautiful', '||period||', 'listen', '||comma||', "we've", 'got', 'a', 'little', 'problem', 'here', '||comma||', "we've", 'got', 'two', 'extra', 'tickets', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'susan', "isn't", 'going', 'and', 'elaine', 'just', 'left', 'me', 'a', 'message', 'her', 'friend', "isn't", 'going', 'either', '||period||', '||return||', '||return||', 'kramer:', 'that', '||questionmark||', 's', 'fantastic', '||exclammark||', "we'll", 'scalp', 'the', 'tickets', '||comma||', "we'll", 'make', 'maybe', 'five', 'hundred', 'a', 'ticket', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'people', 'are', 'looking', 'for', 'tickets', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', 'opening', 'night', 'pavarotti', 'and', 'pagliacci', '||period||', 'ha', '||comma||', "we're", 'gonna', 'clean', 'up', '||exclammark||', '||return||', '||return||', 'george:', 'oh', 'man', '||exclammark||', 'i', 'knew', 'i', 'was', 'gonna', 'love', 'the', 'opera', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', 'right', '||period||', '||return||', '||return||', 'kramer:', 'ok', 'come', 'on', '||comma||', 'let', '||questionmark||', 's', 'go', 'get', 'the', 'tickets', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'you', 'guys', 'listen', '||comma||', "i've", 'got', 'to', 'wait', 'here', 'for', 'elaine', '||comma||', "i'll", 'meet', 'you', 'in', 'front', 'of', 'the', 'theatre', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'wait', '||comma||', "isn't", 'scalping', 'illegal', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'sprayed', 'him', 'in', 'the', 'eyes', 'with', 'binaca', '||questionmark||', '||return||', '||return||', 'elaine:', 'cherry', 'binaca', '||comma||', 'it', '||questionmark||', 's', 'new', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'i', "don't", 'get', 'that', '||period||', 'first', 'they', 'come', 'out', 'with', 'the', 'regular', '||comma||', 'then', 'a', 'year', 'later', 'they', 'come', 'out', 'with', 'the', 'cherry', '||period||', 'they', 'know', 'that', 'we', 'like', 'the', 'cherry', '||comma||', 'start', 'with', 'cherry', '||exclammark||', 'then', 'come', 'out', 'with', 'the', 'regular', '||exclammark||', '||return||', '||return||', 'elaine:', "it's", 'like', 'i', "didn't", 'even', 'know', 'him', '||period||', "he's", 'like', 'a', 'totally', 'different', 'person', '||period||', '||return||', '||return||', 'jerry:', 'well', 'you', 'should', 'hear', 'the', 'message', 'from', 'my', 'nut', '||period||', "where's", 'george', 'and', 'kramer', '||comma||', 'i', 'want', 'to', 'get', 'inside', 'already', '||comma||', 'i', "don't", 'like', 'standing', 'out', 'here', '||comma||', 'i', 'feel', 'very', 'vulnerable', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||comma||', 'what', 'are', 'you', 'doing', '||comma||', 'that', '||questionmark||', 's', 'my', 'quarter', '||period||', '||return||', '||return||', 'man#1:', 'no', "it's", 'not', '||comma||', "it's", 'mine', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'just', 'flipping', 'it', '||comma||', "it's", 'mine', '||period||', '||return||', '||return||', 'man#1:', 'no', '||comma||', 'i', 'dropped', 'it', '||comma||', "it's", 'mine', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'do', 'you', 'want', 'the', 'quarter', '||comma||', 'take', 'the', 'quarter', '||comma||', 'but', "don't", 'try', 'and', 'tell', 'me', "it's", 'yours', '||period||', '||return||', '||return||', 'man#1:', 'well', 'it', 'is', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'do', 'you', 'think', 'i', 'care', 'about', 'the', 'money', '||questionmark||', 'is', 'that', 'what', 'you', 'think', '||questionmark||', 'you', 'want', 'me', 'to', 'show', 'you', 'what', 'i', 'care', 'about', 'money', '||questionmark||', 'here', 'look', '||comma||', 'here', 'look', 'at', 'this', '||comma||', "here's", 'a', 'dollar', 'here', 'look', '||comma||', 'there', '||comma||', 'that', '||questionmark||', 's', 'how', 'much', 'i', 'care', 'about', 'money', '||period||', '||return||', '||return||', 'man#1:', 'you', 'think', 'i', 'care', 'about', 'money', '||comma||', 'that', '||questionmark||', 's', 'how', 'much', 'i', 'care', 'about', 'money', '||comma||', 'i', "don't", 'care', 'about', 'money', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'well', 'why', 'don', '||questionmark||', 't', 'you', 'just', 'get', 'lost', '||period||', '||return||', '||return||', 'man#1:', 'why', "don't", 'you', 'get', 'lost', '||period||', '||return||', '||return||', 'jerry:', 'because', 'i', 'was', 'standing', 'here', '||comma||', 'that', '||questionmark||', 's', 'why', '||period||', '||return||', '||return||', 'man#1:', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'kinda', 'like', 'this', 'opera', 'crowd', '||comma||', 'i', 'feel', 'tough', '||period||', '||period||', '||period||', 'anybody', 'else', 'got', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'park', 'guy#1:', 'hey', 'clown', '||exclammark||', '||return||', '||return||', 'park', 'guy#2:', 'hey', 'clown', '||exclammark||', '||return||', '||return||', 'park', 'guy#1:', 'make', 'us', 'laugh', '||comma||', 'clown', '||exclammark||', '||return||', '||return||', 'park', 'guy#2:', 'nice', 'face', '||comma||', 'clown', '||exclammark||', '||return||', '||return||', 'park', 'guy#2:', 'make', 'me', 'laugh', '||comma||', 'clown', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'two', '||comma||', 'i', 'got', 'two', 'huh', '||comma||', 'paliachi', '||comma||', 'who', 'needs', 'two', '||comma||', 'pagliacci', '||comma||', 'come', 'on', '||comma||', 'the', 'great', 'tragic', 'clown', '||comma||', 'come', 'on', '||comma||', 'check', 'it', 'out', '||comma||', 'he', 'laughs', '||comma||', 'he', 'cries', '||comma||', 'he', 'sings', '||comma||', 'pagliacci', '||period||', 'hey', '||comma||', 'i', 'got', 'two', 'beauties', 'right', 'here', '||comma||', 'check', 'it', 'out', 'all', 'right', '||period||', '||return||', '||return||', 'man#2:', 'hey', '||comma||', 'hey', '||period||', 'are', 'you', 'selling', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'i', '||questionmark||', 'm', 'selling', '||period||', '||return||', '||return||', 'man#2:', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'kramer:', 'orchestra', '||comma||', 'row', 'g', '||comma||', 'dead', 'center', '||comma||', 'primo', '||exclammark||', "you'll", 'think', 'you', 'died', 'and', 'went', 'to', 'heaven', '||period||', '||return||', '||return||', 'man#2:', 'what', 'do', 'you', 'want', 'for', 'them', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'i', '||questionmark||', 'll', 'tell', 'you', 'what', 'i', '||questionmark||', 'll', 'do', '||period||', 'cause', 'you', 'look', 'like', 'a', 'nice', 'guy', '||comma||', 'a', 'thousand', 'dollars', 'for', 'the', 'duce', '||period||', '||return||', '||return||', 'man#2:', "i'll", 'give', 'you', 'five', 'hundred', 'for', 'the', 'pair', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', "it's", 'a', 'deal', '||exclammark||', '||return||', '||return||', 'kramer:', 'pzzzt', '||period||', 'no', '||period||', '||return||', '||return||', 'george:', 'no', '||questionmark||', 'are', 'you', 'crazy', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'let', 'me', 'handle', 'this', '||period||', '||return||', '||return||', 'george:', 'five', 'hundred', 'dollars', '||comma||', 'that', '||questionmark||', 's', 'a', 'great', 'deal', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", 'blowing', 'this', '||comma||', 'the', 'guys', 'a', 'pigeon', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'see', 'that', '||questionmark||', 'the', "guy's", 'walking', 'away', '||period||', 'what', 'is', 'wrong', 'with', 'you', '||questionmark||', 'that', 'was', 'a', 'three', 'hundred', 'dollar', 'profit', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'i', 'know', 'what', 'i', '||questionmark||', 'm', 'doing', 'here', 'george', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'not', 'a', 'metallica', 'concert', '||comma||', 'it', '||questionmark||', 's', 'an', 'opera', 'alright', '||comma||', 'a', 'little', 'dignity', '||comma||', 'a', 'little', 'class', '||comma||', 'just', 'give', 'me', 'my', 'ticket', '||comma||', 'i', 'will', 'stand', 'over', 'here', 'and', 'sell', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', 'very', 'much', '||period||', 'you', 'just', 'stand', 'over', 'there', '||comma||', 'i', '||questionmark||', 'll', 'stand', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', 'where', 'i', '||questionmark||', 'm', 'standing', '||period||', '||return||', '||return||', 'george:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'get', 'your', 'paliachi', '||exclammark||', '||return||', '||return||', 'jerry:', 'where', 'are', 'they', 'already', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'guarantee', 'they', "don't", 'sell', 'either', 'one', 'of', 'those', 'tickets', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'look', '||comma||', "there's", 'bobby', 'eighteen', '||questionmark||', 's', 'father', '||dash||', 'in', '||dash||', 'law', '||comma||', 'mr', 'reichman', '||period||', 'george', 'and', 'i', 'were', 'just', 'talking', 'about', 'that', 'today', '||comma||', 'i', 'can', '||questionmark||', 't', 'believe', 'it', '||exclammark||', 'that', '||questionmark||', 's', 'the', 'guy', 'who', 'threw', 'george', 'out', 'of', 'the', 'wedding', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'when', 'george', 'made', 'that', 'bad', 'toast', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'remember', 'the', 'curse', 'toast', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'the', 'curse', 'toast', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'can', 'you', 'believe', 'that', 'message', '||questionmark||', 'now', 'i', '||questionmark||', 've', 'got', 'to', 'spend', 'the', 'rest', 'of', 'my', 'life', 'looking', 'over', 'my', 'shoulder', '||period||', '||return||', '||return||', 'elaine:', 'me', 'too', '||return||', '||return||', 'jerry:', 'crazy', 'joe', 'divola', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'know', 'his', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', 'why', "wouldn't", 'i', 'know', 'his', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'never', 'told', 'you', 'his', 'name', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'told', 'you', 'his', 'name', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'second', '||comma||', 'who', 'are', 'we', 'talking', 'about', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'joe', 'divola', '||period||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'joe', 'divola', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', 'his', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'been', 'out', 'with', 'him', 'three', 'times', '||comma||', 'i', 'should', 'know', 'the', 'mans', 'name', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'its', 'joe', 'divola', '||return||', '||return||', 'elaine:', 'is', 'he', 'stalking', 'you', '||questionmark||', 'are', 'you', 'kidding', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'madman', 'is', 'trying', 'to', 'kill', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'jerry', '||comma||', 'why', "didn't", 'you', 'tell', 'me', 'his', 'name', '||exclammark||', 'oh', 'my', 'god', '||comma||', 'he', 'accused', 'me', 'of', 'seeing', 'someone', 'else', '||comma||', 'he', 'said', 'tell', 'me', 'his', 'name', '||comma||', 'he', 'said', 'tell', 'me', 'his', 'name', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'he', 'said', 'that', '||exclammark||', 'can', 'you', 'imagine', 'what', "he'll", 'do', 'if', 'he', 'sees', 'me', 'with', 'you', '||exclammark||', "he'll", 'think', 'i', '||questionmark||', 'm', 'the', 'one', 'who', 'ruined', 'his', 'deal', 'at', 'nbc', 'and', 'took', 'away', 'his', 'girl', '||comma||', "he'll", 'put', 'a', 'kibosh', 'on', 'me', '||exclammark||', '||return||', '||return||', 'elaine:', 'oooohh', '||comma||', 'what', 'about', 'me', '||exclammark||', '||return||', '||return||', 'joe', 'divola:', 'excuse', 'me', '||return||', '||return||', 'elaine', '&', 'jerry:', 'aaahhhhh', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'but', 'this', 'is', 'pavarotti', '||exclammark||', '||return||', '||return||', 'man#3:', 'three', 'hundred', 'dollars', '||comma||', 'that', '||questionmark||', 's', 'a', 'lot', 'of', 'money', '||period||', '||return||', '||return||', 'mr', 'reichman:', 'you', 'know', 'steven', 'holstman', '||leftparen||', '||questionmark||', '||rightparen||', 'did', 'a', 'production', 'at', 'tunis', 'last', 'yeas', 'and', 'from', 'what', 'i', 'understand', '||comma||', 'the', 'moslems', 'really', 'took', 'to', 'it', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'i', '||questionmark||', 'll', 'tell', 'you', 'what', '||comma||', 'you', 'seem', 'like', 'a', 'nice', 'guy', '||comma||', 'let', '||questionmark||', 's', 'stop', 'jerking', 'around', '||period||', 'give', 'me', '||period||', '||period||', 'two', 'hundred', 'and', 'fifty', 'dollars', '||comma||', 'i', '||questionmark||', 've', 'got', 'people', 'waiting', 'for', 'me', '||comma||', "i've", 'got', 'to', 'get', 'the', 'hell', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'mr', 'reichman:', 'scalping', '||exclammark||', 'i', 'told', 'them', 'to', 'put', 'out', 'extra', 'security', '||period||', '||period||', 'excuse', 'me', '||period||', '||return||', '||return||', 'george:', 'hey', 'pop', '||comma||', 'would', 'you', 'buzz', 'off', '||comma||', "i've", 'got', 'something', 'cooking', '||period||', '||return||', '||return||', 'mr', 'reichman:', 'costanza', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'mr', 'reichman', '||questionmark||', '||return||', '||return||', 'mr', 'reichman:', "you've", 'still', 'got', 'a', 'mouth', 'like', 'a', 'surd', 'give', 'me', 'those', 'tickets', '||period||', '||return||', '||return||', 'mrs', 'reichman:', 'harold', '||comma||', 'no', '||comma||', 'harold', '||comma||', 'harold', 'be', 'careful', 'of', "you're", 'hair', 'transplant', '||exclammark||', '||return||', '||return||', 'joe', 'divola:', 'anything', 'is', 'welcome', '||comma||', 'i', 'accept', 'change', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'anything', '||comma||', 'i', 'gave', 'it', 'to', 'that', 'guy', '||period||', '||return||', '||return||', 'joe', 'divola:', 'you', 'know', '||comma||', 'you', 'could', 'just', 'say', 'no', '||comma||', 'you', "don't", 'have', 'to', 'humiliate', 'me', '||period||', 'i', 'may', 'be', 'dressed', 'as', 'a', 'clown', 'but', 'i', 'am', 'a', 'person', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'you', '||comma||', 'the', 'guy', 'took', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'joe', 'divola:', 'and', 'i', "don't", 'need', 'people', 'like', 'you', 'looking', 'down', 'their', 'noses', 'at', 'me', '||period||', 'i', 'am', 'just', 'a', 'street', 'performer', 'out', 'here', 'trying', 'to', 'make', 'enough', 'to', 'get', 'by', '||period||', '||return||', '||return||', 'mrs', 'reichman:', 'doctor', '||exclammark||', 'doctor', '||exclammark||', 'is', 'there', 'a', 'doctor', 'anywhere', '||exclammark||', '||return||', '||return||', 'joe', 'divola:', 'what', '||comma||', 'are', 'you', 'showing', 'off', 'to', 'your', 'girlfriend', 'here', '||comma||', 'is', 'that', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'his', 'girlfriend', '||period||', 'we', 'dated', 'for', 'a', 'while', '||comma||', 'but', 'things', "didn't", 'really', 'work', 'out', '||period||', '||return||', '||return||', 'joe', 'divola:', 'you', 'people', 'make', 'me', 'sick', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'one', 'angry', 'clown', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'hardest', 'part', 'about', 'being', 'a', 'clown', '||comma||', 'it', 'seems', 'to', 'me', '||comma||', 'would', 'be', 'that', "you're", 'constantly', 'referred', 'to', 'as', 'a', 'clown', '||period||', '||quotemark||', 'who', 'was', 'that', 'clown', '||questionmark||', '||quotemark||', '||comma||', '||quotemark||', "i'm", 'not', 'working', 'with', 'that', 'clown', '||comma||', 'did', 'you', 'hire', 'that', 'clown', '||questionmark||', '||quotemark||', '||comma||', '||quotemark||', 'the', "guy's", 'a', 'clown', '||exclammark||', '||quotemark||', '||period||', 'how', 'do', 'you', 'even', 'start', 'into', 'being', 'a', 'clown', '||comma||', 'how', 'do', 'you', 'know', 'that', 'you', 'want', 'to', 'be', 'a', 'clown', '||comma||', 'i', 'guess', 'you', 'get', 'to', 'a', 'point', 'where', "you're", 'pants', 'look', 'so', 'bad', '||comma||', "it's", 'actually', 'easier', 'to', 'become', 'a', 'clown', 'than', 'having', 'the', 'proper', 'alterations', 'done', '||period||', 'because', 'if', 'you', 'think', 'about', 'it', '||comma||', 'a', 'clown', '||comma||', 'if', 'there', "isn't", 'a', 'circus', 'around', 'them', '||comma||', 'is', 'really', 'just', 'a', 'very', 'annoying', 'person', '||period||', "you're", 'in', 'the', 'back', 'seat', 'of', 'this', 'guys', 'volkswagen', '||comma||', '||quotemark||', 'what', '||comma||', "you're", 'picking', 'somebody', 'else', 'up', '||questionmark||', 'oh', 'man', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'singing', '||rightparen||', 'camera', '||comma||', 'curtains', '||comma||', 'lights', '||dash||', 'this', 'is', 'it', '||comma||', "we'll", 'hit', 'the', 'heights', '||dash||', 'oh', 'what', 'heights', "we'll", 'hit', '||dash||', 'on', 'with', 'the', 'show', 'this', 'is', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'it', 'is', 'so', 'sad', '||comma||', 'all', 'your', 'knowledge', 'of', 'high', 'culture', 'comes', 'from', 'bugs', 'bunny', 'cartoons', '||period||', '||return||', '||return||', 'jerry:', 'oh', "there's", 'that', 'clown', 'again', '||comma||', 'what', 'does', 'he', 'want', 'from', 'me', '||period||', 'look', 'i', '||questionmark||', 'm', 'serious', '||comma||', 'i', '||questionmark||', 'm', 'not', 'kidding', '||comma||', 'i', "don't", 'have', 'the', 'quarter', '||comma||', 'that', 'guy', 'took', 'it', '||period||', '||return||', '||return||', 'joe', 'divola:', 'i', "don't", 'want', 'any', 'money', '||period||', '||return||', '||return||', 'elaine:', 'i', 'smell', 'cherry', '||period||', '||return||', '||return||', 'joe', 'divola:', "it's", 'binaca', '||period||', '||return||', '||return||', 'jerry:', 'binaca', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'did', 'we', 'say', '||questionmark||', 'two', 'seventy', '||dash||', 'five', '||questionmark||', '||return||', '||return||', 'man#3:', 'two', 'fifty', '||period||', '||return||', '||return||', 'george:', 'two', 'fifty', '||questionmark||', 'are', 'you', 'sure', '||return||', '||return||', 'man#3:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', '||questionmark||', 'm', 'sure', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'two', 'fifty', '||period||', '||return||', '||return||', 'susan:', 'george', '||exclammark||', '||return||', '||return||', 'george:', 's', '||dash||', 'susan', '||return||', '||return||', 'susan:', 'i', "can't", 'believe', 'it', '||comma||', 'i', '||questionmark||', 'm', 'so', 'glad', 'i', 'caught', 'you', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', 'here', '||comma||', 'i', 'though', 'you', 'were', 'going', 'to', 'the', 'airport', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'there', 'was', 'some', 'problem', 'with', 'the', 'plane', '||comma||', 'they', 'landed', 'in', 'philadelphia', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||comma||', 'they', 'don', '||questionmark||', 't', 'have', 'another', 'plane', '||questionmark||', 'she', "couldn't", 'take', 'a', 'bus', '||questionmark||', '||return||', '||return||', 'susan:', "she's", 'coming', 'in', 'tomorrow', '||period||', 'i', 'made', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', 'you', 'made', 'it', '||comma||', 'how', 'about', 'that', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'i', '||questionmark||', 'm', 'so', 'excited', '||comma||', 'now', 'we', 'get', 'to', 'see', 'the', 'opera', 'together', '||period||', '||return||', '||return||', 'george:', 'we', 'get', 'to', 'go', 'to', 'the', 'opera', 'together', '||exclammark||', '||return||', '||return||', 'susan:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'george:', 'that', '||questionmark||', 's', '||dash||', 'that', '||questionmark||', 's', '||dash||', 'harry', 'fong', '||comma||', "he's", 'a', 'very', 'good', 'friend', 'of', 'mine', 'and', "he's", 'a', 'big', 'opera', 'buff', '||period||', 'enjoy', 'the', 'show', 'there', 'harry', '||exclammark||', '||period||', '||period||', '||period||', 'you', 'know', 'what', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'you', 'gotta', 'let', 'us', 'in', '||return||', '||return||', 'usher:', 'not', 'without', 'tickets', '||period||', '||return||', '||return||', 'jerry:', 'we', 'have', 'tickets', '||comma||', 'we', 'just', "don't", 'have', "'em", 'with', 'us', '||period||', '||return||', '||return||', 'usher:', 'well', 'that', '||questionmark||', 's', 'a', 'problem', '||period||', 'excuse', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||comma||', "someone's", 'after', 'us', '||comma||', 'a', 'crazy', 'clown', 'is', 'trying', 'to', 'kill', 'us', '||period||', '||return||', '||return||', 'usher:', 'a', 'crazy', 'clown', 'is', 'after', 'you', '||questionmark||', 'oh', 'that', '||questionmark||', 's', 'rich', '||period||', 'now', 'clear', 'the', 'entrance', 'so', 'people', 'with', 'tickets', 'can', 'get', 'through', '||period||', '||return||', '||return||', 'jerry&elaine:', "we're", 'with', 'him', '||comma||', "we're", 'with', 'him', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'guys', 'ready', '||questionmark||', '||return||', '||return||', 'jerry&elaine:', 'yeah', '||comma||', 'yeah', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'have', 'you', 'seen', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'thought', 'he', 'was', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', "he's", 'on', 'his', 'own', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'kramer:', 'these', 'are', 'great', 'seats', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'kramer:', 'yeah', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'some', 'cast', '||comma||', 'huh', '||questionmark||', 'pavarotti', '||comma||', 'aver', 'martone', '||period||', '||return||', '||return||', 'elaine:', 'aver', 'martone', '||period||', "i've", 'heard', 'of', 'her', '||comma||', "who's", 'she', 'playing', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'playing', '||comma||', 'pagliacci', '||questionmark||', 's', 'wife', '||comma||', 'nedda', '||period||', '||return||', '||return||', 'elaine:', 'nedda', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', '||period||', '||return||', '||return||', 'man#3:', 'excuse', 'me', '||comma||', 'excuse', 'me', '||comma||', 'excuse', 'me', '||period||', '||return||', '||return||', 'jerry:', 'susan', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'susan:', 'my', "friend's", 'flight', 'couldn', '||questionmark||', 't', 'make', 'it', '||period||', '||return||', '||return||', 'jerry:', "where's", 'george', '||questionmark||', '||return||', '||return||', 'man#3:', 'i', 'got', 'his', 'ticket', '||period||', '||return||', '||return||', 'susan:', 'he', 'decided', 'not', 'to', 'come', '||period||', 'he', 'said', 'he', 'was', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'uncomfortable', '||questionmark||', 'how', 'does', 'you', 'think', 'i', 'feel', '||questionmark||', '||period||', '||period||', 'hey', 'let', 'me', 'ask', 'you', 'something', '||comma||', 'how', 'much', 'did', 'you', 'pay', 'for', 'that', 'ticket', '||questionmark||', '||return||', '||return||', 'man#3:', 'one', 'seventy', '||dash||', 'five', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "who'd", 'you', 'sell', 'your', 'ticket', 'to', '||questionmark||', '||return||', '||return||', 'kramer:', 'some', 'nut', 'in', 'a', 'clown', 'suit', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'had', 'some', 'friends', 'drag', 'me', 'to', 'an', 'opera', 'recently', '||comma||', 'you', 'know', 'how', "they've", 'got', 'those', 'little', 'opera', 'glasses', '||comma||', 'you', 'know', '||comma||', 'do', 'you', 'really', 'need', 'binoculars', '||comma||', 'i', 'mean', 'how', 'big', 'do', 'these', 'people', 'have', 'to', 'get', 'before', 'you', 'can', 'spot', "'em", '||period||', 'these', 'opera', 'kids', "they're", 'going', 'two', '||dash||', 'fifty', '||comma||', 'two', '||dash||', 'eighty', '||comma||', 'three', '||dash||', 'twenty', '||dash||', 'five', '||comma||', "they're", 'wearing', 'big', 'white', 'woolly', 'vests', '||comma||', 'the', 'women', 'have', 'like', 'the', 'breastplates', '||comma||', 'the', 'bullet', 'hats', 'with', 'the', 'horn', 'coming', 'out', '||period||', 'if', 'you', "can't", 'pick', 'these', 'people', 'out', '||comma||', 'forget', 'opera', '||comma||', 'think', 'about', 'optometry', '||comma||', 'maybe', 'that', '||questionmark||', 's', 'more', "you're", 'thing', '||period||', '||return||', '||return||', 'jerry:', "we're", 'dead', '||period||', '||return||', '||return||', 'george:', "we're", 'not', 'dead', '||period||', '||return||', '||return||', 'jerry:', 'we', 'are', 'dead', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||period||', 'we', 'got', 'all', 'day', 'tomorrow', 'to', 'come', 'up', 'with', 'a', 'story', '||period||', '||return||', '||return||', 'jerry:', 'all', 'day', 'tomorrow', '||questionmark||', 'we', 'had', 'a', 'month', 'and', 'a', 'half', 'to', 'come', 'up', 'with', 'something', 'and', 'we', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'george:', 'so', "we'll", 'do', 'it', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'ask', 'you', 'something', '||period||', "when's", 'the', 'last', 'time', 'you', 'went', 'skiing', '||questionmark||', '||return||', '||return||', 'george:', 'about', 'six', 'years', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'you', 'can', 'take', 'the', 'lift', 'ticket', 'off', 'your', 'jacket', 'now', '||period||', '||return||', '||return||', 'george:', 'women', 'like', 'skiers', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', 'you', "can't", 'meet', 'anybody', '||period||', "you're", 'going', 'on', 'with', 'susan', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'right', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'see', 'those', 'two', 'women', 'over', 'there', '||questionmark||', 'i', 'almost', 'dated', 'the', 'one', 'on', 'the', 'right', '||period||', "she's", 'in', 'the', 'closet', 'business', '||period||', '||return||', '||return||', 'george:', 'the', 'closet', 'business', '||questionmark||', "what's", 'the', 'closet', 'business', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', 'your', 'business', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'interested', '||period||', '||return||', '||return||', 'jerry:', 'she', 'reorganizes', 'your', 'closet', 'and', 'shows', 'you', 'how', 'to', 'maximize', 'your', 'closet', 'space', '||period||', 'she', 'looked', 'into', 'my', 'closet', '||period||', '||return||', '||return||', 'george:', 'so', 'you', 'thought', 'she', 'was', 'good', 'looking', 'and', 'figured', 'this', 'would', 'be', 'a', 'good', 'way', 'to', 'meet', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'so', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'she', 'mentioned', 'she', 'had', 'a', 'boyfriend', 'and', 'then', 'it', 'hit', 'me', '||period||', 'what', 'do', 'i', 'need', 'more', 'closet', 'space', 'for', '||questionmark||', '||leftparen||', 'across', 'the', 'room', '||rightparen||', 'hi', '||comma||', 'marla', '||period||', '||return||', '||return||', 'marla:', '||leftparen||', 'walks', 'over', 'to', 'jerry', 'and', 'george', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'marla', '||period||', '||return||', '||return||', 'george:', 'marla', '||period||', '||return||', '||return||', 'marla:', 'george', '||period||', 'jerry', '||comma||', 'stacey', '||period||', '||return||', '||return||', 'jerry:', 'stacey', '||period||', '||return||', '||return||', 'stacey:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'stacey', '||period||', '||return||', '||return||', 'george:', 'stacey', '||period||', '||return||', '||return||', 'stacey:', 'george', '||period||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||return||', '||return||', 'george:', 'jerry', '||period||', 'marla', '||period||', '||leftparen||', 'realizing', "jerry's", 'cue', '||rightparen||', 'stacey', '||exclammark||', '||leftparen||', 'walks', 'over', 'to', 'stacey', '||rightparen||', '||return||', '||return||', 'marla:', 'so', '||comma||', 'how', 'was', 'your', 'trip', 'to', 'berlin', '||questionmark||', '||return||', '||return||', 'jerry:', 'trip', 'to', 'berlin', '||questionmark||', '||return||', '||return||', 'marla:', 'remember', '||questionmark||', "that's", 'why', 'you', 'put', 'off', 'doing', 'the', 'closets', '||period||', 'you', 'said', 'you', 'were', 'going', 'to', 'berlin', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||comma||', 'right', '||period||', '||return||', '||return||', 'marla:', 'the', 'wall', 'had', 'just', 'come', 'down', '||comma||', 'and', 'you', 'told', 'me', 'you', 'wanted', 'to', 'be', 'part', 'of', 'the', 'celebration', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'yes', '||comma||', 'i', 'did', '||period||', 'but', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'watching', 'it', 'on', 'cnn', '||comma||', 'and', 'they', 'covered', 'it', 'so', 'well', 'i', 'thought', '||comma||', '||quotemark||', 'why', 'knock', 'my', 'brains', 'out', '||questionmark||', '||quotemark||', '||return||', '||return||', 'marla:', 'you', '||comma||', 'know', 'my', 'boyfriend', 'went', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'marla:', 'yes', '||comma||', 'i', 'told', 'him', 'all', 'about', 'you', 'going', 'and', 'he', 'got', 'all', 'excited', 'and', 'decided', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'did', 'he', 'like', 'it', '||questionmark||', '||return||', '||return||', 'marla:', 'i', "don't", 'know', '||period||', 'he', 'never', 'came', 'back', '||period||', '||leftparen||', 'over', 'to', 'the', 'other', 'side', 'of', 'the', 'bar', '||rightparen||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'we', 'met', 'with', 'nbc', 'about', 'a', 'month', 'ago', 'and', 'they', 'gave', 'us', 'the', 'green', 'light', 'to', 'go', 'ahead', 'and', 'write', 'a', 'pilot', '||period||', 'in', 'fact', '||comma||', 'we', 'got', 'a', 'big', 'meeting', 'with', 'them', 'tomorrow', '||period||', 'they', 'gotta', 'approve', 'of', 'the', 'story', 'before', 'we', 'can', 'write', '||period||', '||return||', '||return||', 'stacey:', 'wow', '||comma||', 'what', 'a', 'great', 'job', '||period||', 'a', 'writer', '||period||', '||return||', '||return||', 'george:', 'not', 'a', 'bad', 'way', 'to', 'make', 'a', 'buck', '||period||', '||return||', '||return||', 'stacey:', 'sounds', 'great', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'll", 'tell', 'you', '||comma||', 'stacey', '||period||', "it's", 'a', 'lot', 'of', 'hard', 'work', '||period||', 'but', '||comma||', 'it', 'comes', 'fairly', 'easy', 'to', 'me', '||period||', 'some', 'people', 'write', 'symphonies', '||period||', 'this', 'is', 'my', 'gift', '||period||', '||leftparen||', 'raises', 'ski', 'lift', 'ticket', 'while', 'stacey', 'looks', 'away', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'are', 'you', 'gonna', 'go', 'out', 'with', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'might', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'susan', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', "i'm", 'not', 'married', '||period||', "i'm", 'not', 'allowed', 'to', 'go', 'out', 'with', 'somebody', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'depends', '||period||', '||return||', '||return||', 'george:', 'depends', 'on', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'on', 'many', 'factors', '||period||', '||return||', '||return||', 'george:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'how', 'long', "you've", 'been', 'seeing', 'her', '||period||', "what's", 'your', 'phone', 'call', 'frequency', '||questionmark||', 'are', 'you', 'on', 'a', 'daily', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'semi', '||dash||', 'daily', '||period||', 'four', 'or', 'five', 'times', 'a', 'week', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'saturday', 'nights', '||questionmark||', 'do', 'you', 'have', 'to', 'ask', 'her', 'out', '||comma||', 'or', 'is', 'a', 'date', 'implied', '||questionmark||', '||return||', '||return||', 'george:', 'implied', '||period||', '||return||', '||return||', 'jerry:', 'she', 'got', 'anything', 'in', 'your', 'medicine', 'cabinet', '||questionmark||', '||return||', '||return||', 'george:', 'there', 'might', 'be', 'some', 'moisturizer', '||period||', '||return||', '||return||', 'jerry:', 'ah', 'hah', '||period||', 'let', 'me', 'ask', 'you', 'this', '||period||', 'is', 'there', 'any', 'tampax', 'in', 'your', 'house', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pause', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'll", 'tell', 'you', 'what', "you've", 'got', 'here', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'got', 'yourself', 'a', 'girlfriend', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'no', '||comma||', 'no', '||period||', 'are', 'you', 'sure', '||questionmark||', 'a', 'girlfriend', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'looking', 'at', 'a', 'guy', 'in', 'a', 'semi', '||dash||', 'daily', 'with', 'tampax', 'in', 'his', 'house', 'and', 'an', 'implied', 'date', 'on', 'saturday', 'night', '||period||', 'i', 'would', 'like', 'to', 'help', 'you', 'out', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'believe', 'my', 'luck', '||questionmark||', 'the', 'first', 'time', 'in', 'my', 'life', 'i', 'have', 'a', 'good', 'answer', 'to', 'the', 'question', '||comma||', '||quotemark||', 'what', 'do', 'you', 'do', '||questionmark||', '||quotemark||', 'and', 'i', 'have', 'a', 'girlfriend', '||period||', 'i', 'mean', '||comma||', 'you', "don't", 'need', 'a', 'girlfriend', 'when', 'you', 'can', 'answer', 'that', 'question', '||period||', "that's", 'what', 'you', 'say', 'in', 'order', 'to', 'get', 'girlfriends', '||period||', 'once', 'you', 'can', 'get', 'a', 'girlfriend', '||comma||', 'you', "don't", 'want', 'a', 'girlfriend', '||comma||', 'you', 'just', 'want', 'more', 'girlfriends', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'make', 'a', 'good', 'father', 'someday', '||period||', '||return||', '||return||', 'george:', 'well', "it's", 'not', 'fair', '||comma||', 'jerry', '||period||', "it's", 'just', 'not', 'fair', '||period||', 'all', 'right', '||comma||', 'all', 'right', '||period||', "that's", 'it', '||period||', "i'm", 'getting', 'out', 'of', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||period||', 'break', 'up', 'with', 'her', '||period||', 'but', 'you', 'know', 'what', 'this', 'means', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'script', '||comma||', 'the', 'pilot', '||comma||', 'the', 'tv', 'show', '||period||', "that's", 'all', 'over', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'figure', 'it', 'out', '||period||', "she's", 'one', 'of', 'the', 'executives', 'at', 'nbc', "that's", 'gonna', 'make', 'the', 'decision', 'whether', 'or', 'not', 'they', 'pick', 'up', 'the', 'show', '||period||', "she's", 'one', 'of', 'our', 'biggest', 'fans', '||period||', 'you', 'drop', 'her', 'off', '||comma||', 'you', 'think', "they're", 'gonna', 'pick', 'us', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'right', '||period||', 'oh', 'no', '||comma||', 'man', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "it's", 'a', 'very', 'interesting', 'situation', '||period||', 'here', 'you', 'have', 'a', 'job', 'that', 'can', 'get', 'you', 'girls', '||period||', 'but', '||comma||', 'you', 'also', 'have', 'a', 'relationship', '||period||', 'but', 'if', 'you', 'try', 'and', 'get', 'rid', 'of', 'the', 'relationship', 'so', 'you', 'can', 'get', 'the', 'girls', '||comma||', 'you', 'lose', 'the', 'job', '||period||', 'you', 'see', 'the', 'irony', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'see', 'the', 'irony', '||period||', 'all', 'right', '||period||', 'what', 'about', 'this', '||questionmark||', 'what', 'if', 'i', 'can', 'find', 'some', 'way', 'to', 'break', 'up', 'with', 'her', 'so', 'that', "she'll", 'still', 'like', 'me', 'and', 'it', "doesn't", 'affect', 'the', 'deal', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'wait', '||period||', 'here', 'me', 'out', '||period||', "don't", 'dismiss', 'this', '||period||', "you're", 'very', 'quick', 'to', 'dismiss', '||period||', "don't", 'dismiss', '||period||', "she's", 'got', 'a', 'big', 'crush', 'on', 'david', 'letterman', '||comma||', 'i', 'mean', '||comma||', 'a', 'big', 'crush', '||period||', 'she', 'talks', 'about', 'him', 'all', 'the', 'time', '||period||', 'suppose', 'i', 'go', 'up', 'to', 'david', 'letterman', '||period||', 'he', 'works', 'at', 'nbc', '||semicolon||', 'i', 'work', 'at', 'nbc', '||period||', 'i', 'explain', 'my', 'situation', '||period||', 'he', 'agrees', 'to', 'meet', 'her', '||period||', 'they', 'go', 'out', '||comma||', 'they', 'fall', 'madly', 'in', 'love', '||period||', 'and', 'she', 'dumps', 'me', 'for', 'david', 'letterman', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'your', 'plan', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', "i'm", 'just', 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'you', 'are', '||period||', '||return||', '||return||', 'marla:', 'let', 'me', 'tell', 'you', 'what', 'i', 'think', '||period||', '||return||', '||return||', 'jerry:', 'please', '||comma||', 'and', 'be', 'brutal', '||period||', 'i', 'have', 'no', 'closet', 'sensitivity', '||period||', '||return||', '||return||', 'marla:', 'are', 'you', 'very', 'fussy', 'about', 'your', 'pants', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'i', 'am', '||period||', '||return||', '||return||', 'marla:', 'because', 'i', 'have', 'a', 'very', 'radical', 'idea', '||period||', 'can', 'you', 'handle', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'try', 'me', '||period||', '||return||', '||return||', 'marla:', "here's", 'what', "i'm", 'proposing', '||period||', 'we', 'eliminate', 'all', 'this', '||period||', 'the', 'hangers', '||comma||', 'the', 'bar', '||comma||', 'the', 'shelves', '||period||', 'and', 'in', 'its', 'place', 'install', 'a', 'series', 'of', 'hooks', '||period||', "we'll", 'put', 'everything', 'on', 'hooks', '||period||', '||return||', '||return||', 'jerry:', 'everything', '||questionmark||', '||return||', '||return||', 'marla:', 'everything', '||period||', 'the', 'shirts', '||comma||', 'pants', '||comma||', 'sport', 'jackets', '||comma||', 'pajamas', '||period||', 'we', 'could', 'get', 'eighty', 'hooks', 'on', 'here', '||period||', '||return||', '||return||', 'jerry:', "you're", 'quite', 'mad', '||comma||', 'you', 'know', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', 'oh', '||comma||', 'i', "don't", 'believe', 'this', '||period||', '||leftparen||', 'goes', 'into', 'other', 'room', '||rightparen||', 'hey', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'watching', 'the', 'bold', 'and', 'the', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'not', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'kramer:', 'five', 'minutes', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'have', 'to', 'give', 'your', 'tv', 'away', 'to', 'george', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "i've", 'been', 'watching', 'too', 'much', '||period||', 'it', 'was', 'an', 'addiction', '||period||', 'i', "couldn't", 'stop', '||period||', 'it', 'was', '||comma||', 'it', 'was', 'destroying', 'my', 'brain', 'cells', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'now', "you're", 'in', 'here', 'all', 'the', 'time', '||period||', '||leftparen||', 'marla', 'enters', 'from', 'other', 'room', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'wow', '||period||', '||return||', '||return||', 'jerry:', 'marla', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'go', 'out', '||questionmark||', "it's", 'nice', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||period||', "there's", 'nothing', 'out', 'there', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', "there's", 'weather', '||period||', '||return||', '||return||', 'kramer:', 'weather', '||questionmark||', 'i', "don't", 'need', 'weather', '||period||', 'weather', "doesn't", 'do', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', "i'm", "tellin'", 'george', 'to', 'give', 'you', 'your', 'tv', 'back', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'i', "don't", 'want', 'it', 'back', '||period||', '||leftparen||', 'pause', '||rightparen||', 'are', 'you', 'gonna', 'watch', 'the', 'knick', 'game', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'will', 'you', 'tape', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||period||', '||period||', '||leftparen||', 'points', 'to', 'marla', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'your', 'boyfriend', 'never', 'came', 'back', 'from', 'berlin', '||period||', '||return||', '||return||', 'marla:', 'never', 'came', 'back', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'must', 'have', 'been', 'devastated', 'being', 'left', 'for', 'a', 'wall', '||period||', '||return||', '||return||', 'marla:', 'it', 'was', 'about', 'to', 'end', 'anyway', '||period||', 'there', 'was', 'this', '||period||', '||period||', '||period||', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'ah', 'hah', '||period||', '||leftparen||', 'buzzer', '||rightparen||', 'excuse', 'me', 'one', 'second', '||period||', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', 'oh', '||comma||', "it's", 'elaine', '||comma||', "she's", 'just', 'a', 'friend', 'of', 'mine', '||period||', 'i', "don't", 'know', 'what', "she's", 'doing', 'here', 'now', '||period||', '||leftparen||', 'buzzer', '||rightparen||', "i'm", 'sorry', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'get', 'it', '||period||', '||return||', '||return||', 'jerry:', 'ugh', '||period||', 'so', 'you', 'were', 'saying', 'there', 'was', 'this', 'problem', '||period||', '||return||', '||return||', 'marla:', 'well', '||comma||', 'he', 'wanted', 'me', 'to', 'move', 'in', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'snapple', '||questionmark||', '||return||', '||return||', 'marla:', 'no', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'go', 'on', '||period||', '||return||', '||return||', 'marla:', 'well', 'i', "wouldn't", 'move', 'in', 'because', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'marla:', 'well', 'because', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'marla:', 'well', 'because', "i'm", 'a', 'virgin', '||period||', '||leftparen||', 'elaine', 'enters', '||rightparen||', '||return||', '||return||', 'elaine:', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'um', '||period||', 'marla', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'i', "didn't", 'know', 'you', 'had', 'company', '||period||', 'i', 'just', 'wanted', 'to', 'return', 'your', 'tape', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'thanks', 'a', 'lot', '||comma||', 'two', 'weeks', 'late', '||period||', 'now', 'that', 'costs', 'me', 'thirty', '||dash||', 'five', 'dollars', 'to', 'see', 'havana', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'i', 'really', 'am', '||period||', 'i', 'just', 'kept', 'forgetting', '||period||', '||return||', '||return||', 'marla:', 'i', 'should', 'be', 'going', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', "i'm", 'leaving', '||period||', '||return||', '||return||', 'jerry:', 'i', 'like', 'that', 'thing', 'in', 'your', 'hair', 'there', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||questionmark||', 'this', 'woman', 'was', 'selling', 'them', 'at', 'this', 'crazy', 'party', 'i', 'was', 'at', 'last', 'night', '||period||', "you'll", 'appreciate', 'this', '||period||', 'snapple', '||questionmark||', '||return||', '||return||', 'marla:', 'no', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'i', 'was', 'talking', 'to', 'this', 'guy', '||comma||', 'you', 'know', '||comma||', 'and', 'i', 'just', 'happened', 'to', 'throw', 'my', 'purse', 'on', 'the', 'sofa', '||period||', 'and', 'my', 'diaphragm', 'goes', 'flying', 'out', '||period||', 'so', 'i', 'just', 'froze', '||comma||', 'you', 'know', '||comma||', 'ahh', '||exclammark||', 'staring', 'at', 'my', 'diaphragm', '||period||', 'you', 'know', '||comma||', "it's", 'just', 'lying', 'there', '||period||', 'so', 'then', '||comma||', 'this', 'woman', '||comma||', 'the', 'one', 'who', 'sold', 'me', 'this', 'hair', 'thing', '||comma||', 'she', 'grabbed', 'it', 'before', 'the', 'guy', 'noticed', '||comma||', 'so', '||period||', 'i', 'mean', '||comma||', 'big', 'deal', '||comma||', 'right', '||questionmark||', 'so', 'i', 'carry', 'around', 'my', 'diaphragm', '||comma||', 'who', "doesn't", '||questionmark||', 'yeah', '||comma||', 'like', "it's", 'a', 'big', '||comma||', 'big', 'secret', 'that', 'women', 'carry', 'around', 'their', 'diaphragms', '||period||', 'you', 'never', 'know', 'when', "you're", 'gonna', 'need', 'it', '||comma||', 'right', '||questionmark||', '||leftparen||', 'sips', 'the', 'snapple', '||rightparen||', 'ahh', '||period||', '||return||', '||return||', 'marla:', 'i', 'should', 'be', 'going', '||period||', '||return||', '||return||', 'jerry:', 'so', "we'll", 'talk', 'about', 'the', 'hooks', 'then', '||questionmark||', '||return||', '||return||', 'marla:', 'yes', '||period||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'was', 'it', 'something', 'i', 'said', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'a', 'virgin', '||comma||', 'she', 'just', 'told', 'me', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', "didn't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'not', 'like', 'spotting', 'a', 'toupee', '||period||', '||return||', '||return||', 'elaine:', 'well', 'you', 'think', 'i', 'should', 'say', 'something', '||questionmark||', 'should', 'i', 'say', 'something', '||questionmark||', 'should', 'i', 'apologize', '||questionmark||', 'was', 'i', 'being', 'anti', '||dash||', 'virgin', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'i', 'mean', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "'cause", "i'm", 'not', 'anti', '||dash||', 'virgin', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'elaine', '||period||', '||period||', '||period||', '||leftparen||', 'buzzer', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'george', '||period||', '||return||', '||return||', 'george:', "she's", 'a', 'virgin', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'virgin', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', 'so', "what're", 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', "i'm", 'very', 'attracted', 'to', 'her', '||period||', 'that', 'accent', '||comma||', "it's", 'so', 'sexy', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'i', 'could', 'do', 'it', '||period||', 'you', 'know', '||comma||', 'they', 'always', 'remember', 'the', 'first', 'time', '||period||', 'i', "don't", 'want', 'to', 'be', 'remembered', '||period||', 'i', 'wanna', 'be', 'forgotten', '||period||', '||return||', '||return||', 'jerry:', 'you', 'need', 'a', 'little', 'pioneer', 'spirit', '||period||', 'you', 'know', '||comma||', 'you', "don't", 'have', 'any', 'of', 'that', 'lewis', 'and', 'clark', 'in', 'you', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'sometimes', 'those', 'guys', "don't", 'make', 'it', 'back', '||period||', '||leftparen||', 'looks', 'in', 'fridge', '||rightparen||', "i'm", 'really', 'hungry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'george:', 'we', 'gotta', 'get', 'something', '||period||', 'i', "don't", 'want', 'to', 'go', 'to', 'that', 'meeting', 'on', 'an', 'empty', 'stomach', '||period||', "let's", 'get', 'some', 'chinese', '||period||', 'you', 'wanna', 'order', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'but', 'then', 'we', 'gotta', 'get', 'some', 'work', 'done', '||period||', 'let', 'me', 'just', 'call', 'kramer', '||comma||', 'see', 'if', 'want', 'anything', '||period||', '||leftparen||', 'calls', '||rightparen||', 'hey', '||comma||', 'we', 'ordering', 'chinese', 'food', '||period||', 'if', 'you', 'want', 'anything', '||dash||', '||dash||', '||leftparen||', 'kramer', 'enters', 'quickly', '||rightparen||', 'let', 'me', 'know', 'what', 'it', 'is', 'and', "i'll", 'order', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'in', '||period||', "let's", 'go', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'care', '||comma||', 'whatever', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'what', '||period||', 'why', "don't", 'we', 'just', 'get', 'a', 'couple', 'of', 'dishes', 'and', "we'll", 'just', 'share', "'em", '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', 'what', 'are', 'you', 'getting', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'get', 'a', 'chow', 'fung', '||period||', '||return||', '||return||', 'kramer:', "what's", 'a', 'chow', 'fung', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'broad', 'noodle', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||comma||', 'a', 'broad', 'noodle', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'big', 'flat', 'noodle', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', "don't", 'want', 'a', 'big', 'flat', 'noodle', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'noodle', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'kramer:', 'who', 'says', 'i', 'want', 'a', 'noodle', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'look', '||period||', "i'm", 'getting', 'the', 'chow', 'fung', '||period||', 'you', "don't", 'have', 'to', 'have', 'any', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', "i'll", 'get', 'pea', 'pods', 'and', 'you', "can't", 'have', 'any', 'of', 'my', 'pea', 'pods', '||period||', '||return||', '||return||', 'george:', 'fine', '||period||', '||return||', '||return||', 'kramer:', 'get', 'extra', 'msg', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'marla', '||period||', 'this', 'whole', 'sex', 'thing', 'is', 'totally', 'overrated', '||period||', 'now', '||comma||', "here's", 'the', 'one', 'thing', "you've", 'gotta', 'be', 'ready', 'for', 'is', 'how', 'the', 'man', 'changes', 'into', 'a', 'completely', 'different', 'person', 'five', 'seconds', 'after', "it's", 'over', '||period||', 'i', 'mean', '||comma||', 'something', 'happens', 'to', 'their', 'personality', "it's", 'really', 'quite', 'astounding', '||period||', "it's", 'like', 'they', 'committed', 'a', 'crime', 'and', 'they', 'want', 'to', 'flee', 'the', 'scene', 'before', 'the', 'police', 'get', 'there', '||period||', '||return||', '||return||', 'marla:', 'so', 'they', 'just', 'leave', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'pretty', 'much', '||comma||', 'yeah', '||period||', 'well', '||comma||', 'the', 'smart', 'ones', 'start', 'working', 'on', 'their', 'getaway', 'stories', 'during', 'dinner', '||period||', 'how', '||comma||', 'you', 'know', '||comma||', 'they', 'gotta', 'get', 'up', 'early', 'tomorrow', '||period||', 'what', 'is', 'about', 'being', 'up', 'early', '||questionmark||', 'they', 'all', 'turn', 'into', 'farmers', 'suddenly', '||period||', '||return||', '||return||', 'marla:', 'wow', '||period||', 'it', 'must', 'be', 'pretty', 'good', 'to', 'put', 'up', 'with', 'all', 'that', '||period||', '||return||', '||return||', 'elaine:', 'eh', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "let's", 'go', '||period||', 'we', "don't", 'have', 'much', 'time', 'before', 'the', 'meeting', '||period||', '||return||', '||return||', 'george:', "where's", 'the', 'food', '||questionmark||', 'what', 'happened', 'to', 'ping', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'worry', '||comma||', "he'll", 'be', 'here', '||period||', 'look', '||comma||', 'we', 'only', 'got', 'about', 'two', 'hours', '||period||', 'we', 'just', 'need', 'to', 'come', 'up', 'with', 'one', 'good', 'story', 'so', 'we', 'can', 'get', 'through', 'this', 'meeting', '||period||', '||leftparen||', 'buzzer', '||rightparen||', "there's", 'your', 'food', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'what', 'about', 'this', '||questionmark||', "i'm", 'in', 'a', 'car', 'accident', '||period||', 'the', 'motorist', 'is', 'uninsured', '||comma||', 'you', 'with', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'my', "car's", 'totaled', '||period||', "it's", 'all', 'his', 'fault', 'and', 'now', '||comma||', 'he', 'has', 'absolutely', 'no', 'money', '||period||', 'there', 'is', 'no', 'way', 'that', 'he', 'can', 'pay', 'me', '||period||', 'so', 'the', 'judge', 'decrees', 'that', 'he', 'becomes', 'my', 'butler', '||period||', '||return||', '||return||', 'jerry:', 'your', 'butler', '||questionmark||', '||return||', '||return||', 'george:', 'right', '||period||', 'he', 'cooks', 'my', 'food', '||comma||', 'he', 'cleans', 'my', 'house', '||comma||', 'he', 'does', 'all', 'my', 'shopping', 'for', 'me', '||period||', 'and', 'there', 'you', 'go', '||comma||', "that's", 'your', 'program', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'worry', '||comma||', "we'll", 'find', 'something', 'for', 'you', '||period||', '||leftparen||', 'knock', 'of', "jerry's", 'door', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'the', 'door', '||rightparen||', "that's", 'the', 'stupidest', 'idea', 'i', 'ever', 'heard', '||period||', 'sentenced', 'to', 'be', 'a', 'butler', '||period||', '||leftparen||', 'elaine', '||comma||', 'marla', '||comma||', 'and', 'an', 'injured', 'ping', 'are', 'at', 'the', 'door', '||rightparen||', 'ping', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'there', 'was', 'a', 'bit', 'of', 'an', 'accident', '||period||', '||return||', '||return||', 'ping:', 'head', 'hurts', '||period||', 'head', 'really', 'hurts', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'marla', 'and', 'i', 'went', 'out', 'for', 'coffee', 'and', 'afterwards', 'i', 'was', 'crossing', 'the', 'street', 'and', 'he', 'was', 'biking', 'right', 'towards', 'me', '||period||', 'so', 'i', 'got', 'out', 'of', 'the', 'way', 'just', 'in', 'time', '||comma||', 'but', 'then', 'he', 'ran', 'into', 'a', 'parked', 'car', '||period||', 'he', 'hit', 'his', 'head', 'and', 'everything', 'went', 'flying', '||period||', '||return||', '||return||', 'george:', 'something', 'happened', 'to', 'the', 'food', '||questionmark||', '||return||', '||return||', 'ping:', 'i', 'only', 'saved', 'one', 'bag', '||period||', '||return||', '||return||', 'jerry:', 'should', 'i', 'call', 'an', 'ambulance', '||questionmark||', 'do', 'you', 'wanna', 'see', 'a', 'doctor', '||questionmark||', '||return||', '||return||', 'marla:', "i'll", 'get', 'some', 'ice', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'after', 'looking', 'in', 'the', 'bag', '||rightparen||', 'the', 'pea', 'pods', '||questionmark||', 'all', 'you', 'saved', 'was', 'the', 'pea', 'pods', '||questionmark||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'got', 'the', 'food', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'here', '||period||', '||return||', '||return||', 'kramer:', 'what', 'took', 'you', 'so', 'long', '||questionmark||', 'hey', '||comma||', 'ping', '||exclammark||', '||return||', '||return||', 'ping:', 'kramer', '||period||', '||leftparen||', 'kramer', 'and', 'george', 'sit', 'on', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "where's", 'yours', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'dropped', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'you', 'should', 'slow', 'down', '||comma||', 'you', 'know', 'that', '||questionmark||', "it's", 'dangerous', 'to', 'go', 'that', 'fast', '||period||', '||return||', '||return||', 'ping:', 'no', '||comma||', 'no', '||period||', 'i', 'have', 'green', 'light', '||period||', 'you', 'jaywalked', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'you', "watchin'", 'oprah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'ping', '||rightparen||', 'i', 'did', 'not', 'jaywalk', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', "you're", "givin'", 'him', 'back', 'that', 'tv', '||period||', '||return||', '||return||', 'ping:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'yes', '||comma||', 'you', 'jaywalked', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'no', '||comma||', 'i', "don't", 'want', 'it', 'back', '||period||', '||return||', '||return||', 'ping:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'jaywalker', '||period||', 'i', 'could', 'slap', 'suit', 'on', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'we', 'got', 'work', 'to', 'do', '||period||', 'what', 'about', 'the', 'meeting', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'himself', '||rightparen||', 'hey', '||comma||', 'look', '||period||', 'an', 'hour', 'with', 'patrick', 'swayze', '||period||', '||return||', '||return||', 'jerry:', 'a', 'month', 'and', 'a', 'half', 'we', 'had', '||period||', 'we', 'did', 'nothing', '||period||', 'i', "can't", 'believe', 'we', 'put', 'it', 'off', 'until', 'today', 'and', 'then', 'we', "couldn't", 'do', 'anything', 'because', 'elaine', 'runs', 'out', 'to', 'apologize', 'to', 'a', 'virgin', '||comma||', 'crosses', 'against', 'a', 'light', '||comma||', 'and', 'knocks', 'over', 'a', 'chinese', 'delivery', 'boy', '||period||', 'now', "we're", 'gonna', 'make', 'fools', 'of', 'ourselves', '||comma||', 'we', 'got', 'nothing', '||period||', "you're", 'not', 'even', 'in', 'show', 'business', '||period||', 'i', 'gotta', 'reputation', '||period||', 'you', 'drag', 'me', 'into', 'the', 'sewer', 'with', 'you', '||period||', "i've", 'been', 'on', 'tv', 'buddy', 'boy', '||period||', 'you', 'know', 'how', 'fast', 'word', 'spreads', 'in', 'show', 'business', '||questionmark||', "it's", 'like', 'that', '||leftparen||', 'snaps', 'in', "george's", 'face', '||rightparen||', '||comma||', 'like', 'that', '||exclammark||', 'one', 'bad', 'impression', '||comma||', "you're", 'outta', 'the', 'business', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "let's", 'postpone', 'it', '||period||', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', 'they', 'know', "we're", 'here', '||period||', '||return||', '||return||', 'george:', "i'll", 'fake', 'an', 'illness', '||period||', '||leftparen||', 'acts', 'it', 'out', '||rightparen||', 'my', 'back', '||exclammark||', 'my', 'back', '||exclammark||', 'i', "can't", 'believe', '||comma||', 'my', 'back', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'would', 'you', 'get', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'can', 'do', 'this', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "i'll", 'tell', 'them', 'my', 'sister', 'died', '||period||', '||leftparen||', 'starts', 'fake', 'crying', '||rightparen||', 'my', 'poor', 'sister', 'died', '||period||', 'she', 'was', 'standing', 'and', 'then', 'she', 'was', 'laughing', 'and', 'then', 'they', 'shot', 'her', '||exclammark||', "that's", 'the', 'kind', 'of', 'sick', 'city', 'that', "we're", "livin'", 'in', '||period||', 'they', 'shoot', 'you', 'for', 'laughing', '||period||', 'i', 'must', 'go', 'and', 'comfort', 'my', 'poor', 'family', '||period||', 'jerry', '||comma||', 'take', 'me', 'home', 'so', 'i', 'can', 'comfort', 'my', '||period||', '||period||', '||period||', 'my', 'poor', 'family', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'david', 'letterman', '||period||', 'i', 'just', 'saw', 'david', 'letterman', 'walk', 'by', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'woman:', 'mr', '||period||', 'seinfeld', '||comma||', "they're", 'ready', 'for', 'you', '||period||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'was', 'very', 'wise', 'to', 'hitch', 'my', 'wagon', 'to', 'his', 'star', '||period||', '||leftparen||', 'jerry', 'enters', 'meeting', '||rightparen||', '||return||', '||return||', 'man', '#1:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'how', 'are', 'you', 'doing', '||questionmark||', 'nice', 'to', 'see', 'you', 'all', 'here', '||period||', 'hello', '||period||', '||return||', '||return||', 'rita:', 'hello', '||comma||', 'jerry', '||period||', "i'm", 'rita', 'kearson', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'uh', '||comma||', 'nice', 'to', 'meet', 'you', '||period||', "where's", 'russell', '||questionmark||', '||return||', '||return||', 'rita:', 'he', '||comma||', 'uh', '||comma||', 'had', 'to', 'go', 'to', 'la', '||period||', "there's", 'a', 'problem', 'on', 'the', 'set', 'of', 'blossom', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'poor', 'blossom', '||period||', '||leftparen||', 'he', 'sits', '||rightparen||', '||return||', '||return||', 'rita:', 'anyway', '||comma||', 'he', 'asked', 'me', 'to', 'sit', 'in', 'for', 'him', '||period||', '||return||', '||return||', 'man', '#2:', "where's", 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'he', 'ran', 'to', 'say', 'something', 'to', 'david', 'letterman', '||period||', '||return||', '||return||', 'susan:', 'david', "letterman's", 'on', 'the', 'floor', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'he', 'just', 'walked', 'by', '||period||', '||return||', '||return||', 'rita:', 'well', '||comma||', 'i', 'think', 'we', 'should', 'get', 'started', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'good', 'idea', '||period||', '||return||', '||return||', 'rita:', 'so', 'how', 'are', 'you', 'guys', "comin'", 'along', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'good', '||comma||', "we've", 'got', 'a', 'lot', 'of', 'ideas', '||period||', '||return||', '||return||', 'rita:', 'good', '||period||', '||leftparen||', 'pause', '||rightparen||', '||return||', '||return||', 'jerry:', 'have', 'you', 'ever', 'been', 'to', 'a', 'chinese', 'restaurant', 'and', 'they', 'tell', 'you', "it'll", 'be', '||comma||', 'like', '||comma||', 'five', 'minutes', 'for', 'a', 'table', 'and', 'you', 'wind', 'up', "waitin'", 'there', 'for', '||comma||', 'like', '||comma||', 'thirty', 'minutes', '||questionmark||', 'well', '||comma||', 'we', 'thought', 'it', 'would', 'be', 'very', 'funny', 'to', 'do', 'an', 'entire', 'show', 'where', 'all', "you're", "doin'", 'is', "waitin'", 'for', 'the', 'table', '||period||', '||leftparen||', 'they', "don't", 'seem', 'to', 'like', 'it', '||rightparen||', 'because', "we've", 'all', 'been', 'in', 'that', 'situation', '||period||', 'you', 'know', '||comma||', "you're", 'waiting', '||period||', '||period||', '||period||', 'and', "you're", 'hungry', '||period||', '||period||', '||period||', 'and', 'you', 'bump', 'into', 'somebody', 'you', 'know', '||period||', '||period||', '||period||', 'when', 'is', 'russell', 'coming', 'back', '||questionmark||', '||return||', '||return||', 'rita:', 'so', "that's", 'the', 'idea', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'no', '||comma||', "that's", 'one', '||period||', 'we', 'have', 'many', 'others', '||period||', 'we', 'have', 'an', 'idea', 'where', '||comma||', 'uh', '||comma||', 'i', 'get', 'into', 'an', 'accident', 'with', 'a', 'guy', 'who', 'has', 'no', 'insurance', 'and', 'the', 'judge', 'sentences', 'him', 'to', 'be', 'my', 'butler', '||period||', '||leftparen||', 'everyone', 'laughs', '||rightparen||', 'you', 'know', 'he', 'cooks', 'for', 'me', '||comma||', 'he', 'has', 'to', 'cook', 'for', 'me', '||period||', '||period||', '||period||', 'he', 'cleans', 'my', 'house', '||comma||', "he's", "doin'", 'my', 'shopping', '||comma||', 'you', 'know', '||questionmark||', "i'm", "walkin'", 'around', 'with', 'one', 'of', 'those', 'big', 'neck', 'collars', '||period||', '||return||', '||return||', 'man', '#2:', 'those', 'collars', 'are', 'funny', '||exclammark||', '||return||', '||return||', 'man', '#1:', 'once', 'you', 'see', 'someone', 'in', 'those', 'collars', 'you', 'start', 'laughing', 'immediately', '||period||', '||leftparen||', 'george', 'enters', '||rightparen||', '||return||', '||return||', 'george:', 'you', "tellin'", "'em", 'about', 'the', 'butler', 'story', '||questionmark||', 'is', 'that', 'beautiful', 'or', 'what', '||questionmark||', 'hey', '||comma||', 'sorry', "i'm", 'late', '||period||', '||leftparen||', 'looks', 'at', 'rita', '||rightparen||', 'russell', '||questionmark||', '||return||', '||return||', 'rita:', "i'm", 'rita', 'kearson', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'rita', '||period||', 'hey', '||comma||', 'mr', '||period||', 'shermack', '||comma||', "how're", 'you', 'doing', '||comma||', 'good', 'to', 'see', 'you', '||period||', 'jay', '||comma||', 'always', 'a', 'pleasure', '||period||', '||leftparen||', 'to', 'susan', '||rightparen||', 'sweetie', '||period||', '||leftparen||', 'kisses', 'her', 'and', 'then', 'sits', 'down', 'next', 'to', 'jerry', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'that', 'butler', 'idea', '||comma||', "that's", 'beautiful', '||period||', "isn't", 'that', 'killer', '||questionmark||', '||leftparen||', 'aside', 'to', 'jerry', '||rightparen||', 'i', 'thought', 'i', 'was', 'getting', 'the', 'butler', '||period||', '||return||', '||return||', 'jerry:', "don't", 'worry', '||comma||', 'uh', '||comma||', "we'll", 'find', 'something', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'so', 'letterman', "didn't", 'spark', 'to', 'your', 'idea', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'he', 'said', 'there', 'was', 'nothing', 'he', 'could', 'do', '||comma||', 'and', 'next', 'time', 'i', 'should', 'probably', 'break', 'the', 'prozacs', 'in', 'half', '||period||', '||return||', '||return||', 'kramer:', 'you', '||comma||', 'you', 'guys', 'wanna', 'hold', 'it', 'down', '||questionmark||', "i'm", "watchin'", 'jeopardy', '||period||', '||return||', '||return||', 'jerry:', 'would', 'you', 'give', 'him', 'the', 'tv', 'back', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'george', '||period||', 'susan', 'called', 'for', 'you', 'a', 'minute', 'ago', '||period||', '||return||', '||return||', 'george:', 'i', 'bet', "they're", 'probably', 'doing', 'summersaults', 'about', 'us', 'over', 'there', '||period||', 'you', 'think', 'they', 'get', 'butler', 'stories', 'like', 'that', 'everyday', '||questionmark||', '||leftparen||', 'he', 'calls', 'susan', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'tv', '||rightparen||', 'who', 'is', 'joseph', 'cotton', '||questionmark||', 'giddee', 'up', '||exclammark||', '||return||', '||return||', 'susan:', 'hello', '||questionmark||', '||return||', '||return||', 'george:', 'hi', '||comma||', "it's", 'me', '||period||', "it's", 'georgie', 'boy', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'susan:', "what's", 'going', 'on', '||questionmark||', "what's", 'going', 'on', '||questionmark||', "i'll", 'tell', 'you', "what's", 'going', 'on', '||period||', "i'm", 'fired', '||exclammark||', '||return||', '||return||', 'george:', 'fired', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'susan:', 'because', 'you', 'kissed', 'me', '||period||', 'you', 'kissed', 'me', '||comma||', 'you', 'stupid', 'idiot', '||exclammark||', 'rita', 'called', 'russell', 'and', 'he', 'fired', 'me', 'over', 'the', 'phone', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'tv', '||rightparen||', 'what', 'is', 'pi', '||questionmark||', 'ooh', '||exclammark||', 'giddee', 'up', 'again', '||period||', '||return||', '||return||', 'george:', 'but', 'i', 'had', 'no', '||period||', '||period||', '||period||', 'i', "didn't", 'realize', '||period||', '||return||', '||return||', 'susan:', 'you', "didn't", 'realize', '||questionmark||', 'how', 'could', 'you', 'not', 'realize', '||questionmark||', "you're", 'stupid', '||exclammark||', "you're", 'a', 'stupid', '||comma||', 'stupid', 'man', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'just', 'feel', 'terrible', 'this', 'is', 'just', 'terrible', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'tv', 'once', 'again', '||rightparen||', 'what', 'is', 'the', 'cha', '||dash||', 'cha', '||questionmark||', 'ooh', '||comma||', 'yes', 'indeed', '||period||', '||return||', '||return||', 'susan:', "i'll", 'speak', 'to', 'you', 'later', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hangs', 'up', 'phone', 'and', 'pauses', '||rightparen||', 'this', 'is', 'great', '||exclammark||', 'he', 'fired', 'her', '||exclammark||', 'this', 'is', 'incredible', '||comma||', 'he', 'fired', 'her', '||period||', "i'm", 'out', '||comma||', 'baby', '||exclammark||', "i'm", 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'did', 'he', 'fire', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'i', 'kissed', 'her', 'in', 'the', 'meeting', '||period||', 'russell', 'found', 'out', '||comma||', 'he', 'fired', 'her', 'over', 'the', 'phone', '||period||', 'finally', '||comma||', 'my', 'stupidity', 'pays', 'off', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'is', 'here', 'comes', 'the', 'judge', '||comma||', 'here', 'comes', 'the', 'judge', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'break', 'up', 'with', 'her', 'now', '||period||', 'her', 'life', 'is', 'shattered', '||period||', 'you', 'got', 'her', 'fired', '||period||', 'you', 'gotta', 'be', 'there', 'for', 'her', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'at', 'least', 'wait', 'until', 'she', 'gets', 'another', 'job', '||period||', '||return||', '||return||', 'george:', 'another', 'job', '||questionmark||', '||return||', '||return||', 'jerry:', 'couple', 'of', 'interviews', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'unbelievable', '||period||', "i'm", 'stuck', '||period||', 'every', 'time', 'i', 'think', "i'm", 'out', '||comma||', 'they', 'pull', 'me', 'back', 'in', '||period||', '||return||', '||return||', 'marla:', 'are', 'you', 'gonna', 'leave', 'after', 'its', 'over', '||questionmark||', 'you', 'know', '||comma||', 'if', 'we', 'have', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'leave', '||questionmark||', 'where', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'marla:', 'you', 'know', '||comma||', 'the', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'why', 'would', 'i', 'leave', '||questionmark||', 'this', 'is', 'my', 'apartment', '||period||', '||return||', '||return||', 'marla:', 'well', 'what', 'if', 'it', 'was', 'my', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'gave', 'you', 'this', 'idea', 'i', 'would', 'wanna', 'leave', '||questionmark||', '||return||', '||return||', 'marla:', 'well', 'elaine', 'said', 'men', 'like', 'to', 'leave', 'after', "it's", 'over', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'i', "wouldn't", 'put', 'too', 'much', 'stock', 'into', 'what', 'elaine', 'has', 'to', 'say', 'about', 'relationships', '||period||', 'she', 'comes', 'from', 'a', 'broken', 'home', '||comma||', 'and', 'i', 'mean', 'that', 'literally', '||period||', 'a', 'tree', 'fell', 'on', 'her', 'roof', 'and', 'cracked', 'the', 'whole', 'structure', '||period||', 'her', 'parents', 'got', 'along', 'beautifully', '||comma||', 'but', 'her', 'house', 'was', 'in', 'bad', 'shape', '||period||', '||return||', '||return||', 'marla:', 'maybe', 'i', 'should', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'what', 'else', 'did', 'you', 'say', 'to', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', "nothin'", '||period||', 'i', 'was', 'just', "givin'", 'her', 'the', 'straight', 'dope', '||period||', '||return||', '||return||', 'jerry:', 'more', 'like', 'a', 'dope', 'was', 'giving', 'it', 'to', 'her', 'straight', '||period||', 'another', 'cup', 'of', 'coffee', 'with', 'you', '||comma||', "she'll", 'wind', 'up', 'in', 'a', 'convent', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'there', 'was', 'a', 'lot', 'more', 'i', "could've", 'told', 'her', '||comma||', 'believe', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'about', 'leaving', 'after', 'sex', '||questionmark||', 'did', 'i', 'ever', 'leave', 'with', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "might've", 'if', "i'd", 'stayed', '||period||', 'so', 'you', 'know', 'what', '||questionmark||', 'i', 'got', 'served', 'with', 'papers', 'today', '||period||', 'ping', 'is', 'suing', 'me', '||period||', 'i', 'need', 'your', 'virgin', 'as', 'a', 'witness', '||period||', 'you', 'better', 'be', 'nice', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'trying', 'to', 'be', '||period||', '||return||', '||return||', 'elaine:', 'look', 'at', 'george', '||period||', '||leftparen||', 'on', 'the', 'other', 'side', 'of', 'the', 'restaurant', '||rightparen||', 'he', 'lucked', 'out', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you're", 'not', "kiddin'", '||period||', "who'd", "'ve", 'figured', 'susan', 'would', 'break', 'up', 'with', 'him', '||questionmark||', 'they', 'had', 'a', 'good', 'thing', 'going', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'since', 'she', 'met', 'him', "she's", 'been', 'vomited', 'on', '||comma||', 'her', 'family', "cabin's", 'been', 'burned', 'down', '||comma||', 'she', 'learned', 'her', "father's", 'a', 'homosexual', '||comma||', 'and', 'she', 'got', 'fired', 'from', 'a', 'high', 'paying', 'network', 'job', '||period||', 'yeah', '||comma||', 'they', 'had', 'a', 'real', 'good', 'thing', 'going', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'i', 'do', '||questionmark||', 'well', 'actually', '||comma||', "i'm", 'a', 'writer', '||period||', 'in', 'fact', '||comma||', "i'm", 'writing', 'a', 'comedy', 'pilot', 'for', 'nbc', 'right', 'now', '||period||', '||return||', '||return||', 'woman:', 'a', 'sitcom', '||questionmark||', 'how', 'can', 'you', 'write', 'that', 'crap', '||questionmark||', 'carol', '||comma||', 'this', "guy's", 'writing', 'a', 'sitcom', '||period||', '||return||', '||return||', 'carol:', 'a', 'sitcom', '||questionmark||', 'come', 'on', '||comma||', "let's", 'go', '||period||', '||leftparen||', 'they', 'leave', '||rightparen||', '||return||', '||return||', 'woman:', 'a', 'sitcom', '||period||', 'can', 'you', 'imagine', '||questionmark||', 'and', 'he', 'actually', 'tried', 'to', 'use', 'it', 'to', 'hit', 'on', 'me', '||exclammark||', '||return||', '||return||', '[setting:', "monk's", 'coffee', 'shop]', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', '||return||', '||return||', 'elaine:', 'mm', '||dash||', 'hm', '||period||', '||return||', '||return||', 'jerry:', "you're", 'a', 'hostage', '||comma||', 'captured', 'by', 'terrorists', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||comma||', 'chewing', '||rightparen||', 'who', '||comma||', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', '||comma||', 'anybody', '||dash||', 'whatever', '||period||', "you're", 'in', 'the', 'little', 'room', '||comma||', "you're", 'chained', 'to', 'the', 'floor', '||comma||', "you're", 'there', 'for', 'a', 'long', 'time', '||period||', '||period||', 'do', 'you', 'think', 'they', 'would', 'ever', 'consider', 'doing', 'the', 'laundry', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'matter', '||dash||', 'of', '||dash||', 'factly', '||rightparen||', 'they', 'have', 'to', '||comma||', "it's", 'in', 'the', 'geneva', 'convention', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'imitating', 'a', 'turkish', 'terrorist', '||rightparen||', 'you', '||exclammark||', 'take', 'off', 'your', 'socks', '||comma||', 'your', 'pants', '||comma||', 'your', 'underwear', '||period||', "we're", 'doing', 'the', 'wash', '||period||', "c'mon", '||exclammark||', 'take', 'it', 'off', '||comma||', 'take', 'it', 'off', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'georgie', '||period||', '||return||', '||return||', 'jerry', 'and', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'slowly', 'shakes', 'his', 'head', '||rightparen||', 'my', 'mother', 'caught', 'me', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'caught', '||quotemark||', 'you', '||questionmark||', 'doing', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||period||', '||leftparen||', 'all', 'three', 'give', 'him', 'blank', 'stares', '||rightparen||', 'i', 'was', 'alone', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'making', 'a', 'face', 'of', 'surprise', '||rightparen||', 'you', 'mean', '||period||', '||period||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'nods', '||rightparen||', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', '||rightparen||', 'she', 'caught', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'really', 'wanting', 'to', 'embellish', '||rightparen||', '||period||', '||period||', 'i', 'stopped', 'by', 'the', 'house', 'to', 'drop', 'the', 'car', 'off', '||comma||', 'and', 'i', 'went', 'inside', 'for', 'a', 'few', 'minutes', '||period||', '||period||', 'nobody', 'was', 'there', '||dash||', "they're", 'supposed', 'to', 'be', 'working', '||period||', '||leftparen||', 'jerry', 'and', 'elaine', 'look', 'at', 'each', 'other', '||dash||', 'enjoying', 'the', 'story', '||rightparen||', 'my', 'mother', 'had', 'a', 'glamour', 'magazine', '||comma||', 'i', 'started', 'leafing', 'through', 'it', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'glamour', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', 'so', '||comma||', 'one', 'thing', 'lead', 'to', 'another', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'did', 'she', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'first', 'she', 'screams', '||comma||', '||quotemark||', 'george', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', 'my', 'god', '||exclammark||', '||quotemark||', 'and', 'it', 'looked', 'like', 'she', 'was', 'gonna', 'faint', '||dash||', 'she', 'started', 'clutching', 'the', 'wall', '||comma||', 'trying', 'to', 'hang', 'onto', 'it', '||period||', '||return||', '||return||', 'krmaer:', '||leftparen||', 'reflecting', 'on', 'the', 'story', 'so', 'far', '||rightparen||', 'man', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'know', 'whether', 'to', 'try', 'and', 'keep', 'her', 'from', 'falling', '||comma||', 'or', 'zip', 'up', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'zipped', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'wide', '||dash||', 'eyed', '||rightparen||', 'so', '||comma||', 'she', 'fell', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'noticing', 'this', 'makes', 'him', 'out', 'to', 'be', 'the', 'bad', 'kid', '||comma||', 'he', 'gets', 'defensive', '||rightparen||', 'well', '||comma||', 'i', "couldn't", 'run', 'over', 'there', 'the', 'way', 'i', 'was', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'guess', 'you', "couldn't", 'have', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'the', 'middle', 'of', "elaine's", 'sentence', '||comma||', 'smiling', '||rightparen||', 'no', '||comma||', 'i', "wouldn't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'finishing', 'it', 'off', '||rightparen||', '||period||', '||period||', 'done', 'that', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'she', 'fell', '||comma||', 'and', 'then', 'she', 'started', 'screaming', '||comma||', '||quotemark||', 'my', 'back', '||exclammark||', 'my', 'back', '||exclammark||', '||quotemark||', 'so', '||comma||', 'i', 'picked', 'her', 'up', 'and', 'took', 'her', 'to', 'the', 'hospital', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'between', 'chuckles', '||rightparen||', 'how', 'is', 'she', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'somewhat', 'angered', '||rightparen||', "she's", 'in', 'traction', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'laughing', '||rightparen||', 'ok', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'funny', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stifling', 'her', 'laughter', '||rightparen||', 'i', 'know', '||period||', "i'm", 'sorry', '||period||', "i'm", 'serious', '||period||', '||return||', '||return||', 'george:', 'her', 'back', 'went', 'out', '||period||', "she's", 'gotta', 'be', 'there', 'for', 'a', 'couple', 'of', 'days', '||period||', 'all', 'she', 'said', 'on', 'the', 'way', 'over', 'in', 'the', 'car', 'was', '||comma||', '||quotemark||', 'why', '||comma||', 'george', '||comma||', 'why', '||questionmark||', '||exclammark||', '||quotemark||', '||period||', '||period||', 'i', 'said', '||comma||', '||quotemark||', 'because', "it's", 'there', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'glamour', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'vowing', '||rightparen||', 'well', '||comma||', "i'll", 'tell', 'you', 'this', '||comma||', 'though', '||dash||', 'i', 'am', 'never', 'doing', '||period||', '||period||', 'that', '||comma||', 'again', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'you', 'mean', '||comma||', 'in', 'your', "mother's", 'house', '||comma||', 'or', 'all', 'together', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'definite', '||rightparen||', 'all', 'together', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'gimme', 'a', 'break', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'skeptical', '||rightparen||', 'ohhh', 'yeah', '||period||', '||period||', 'right', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'like', "you're", 'gonna', 'stop', '||questionmark||', '||return||', '||return||', 'jerry', 'and', 'elaine:', "c'mon", '||period||', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'think', 'i', 'can', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'chance', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'daring', '||rightparen||', 'you', 'think', 'you', 'could', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'know', 'i', 'could', 'hold', 'out', 'longer', 'than', 'you', '||period||', '||return||', '||return||', 'george:', 'care', 'to', 'make', 'it', 'interesting', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'how', 'much', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', "you're", 'on', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'butting', 'in', '||rightparen||', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||period||', 'count', 'me', 'in', 'on', 'this', '||period||', '||leftparen||', 'clicks', 'his', 'tongue', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "you'll", 'be', 'out', 'before', 'we', 'get', 'the', 'check', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||rightparen||', 'i', 'want', 'to', 'be', 'in', 'on', 'this', '||comma||', 'too', '||period||', '||return||', '||return||', 'george', 'and', 'jerry:', '||leftparen||', 'rejecting', '||rightparen||', 'ohh', '||comma||', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'showing', 'difference', '||rightparen||', "it's", 'apples', 'and', 'oranges', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'why', '||questionmark||', '||leftparen||', 'more', "'no", '||comma||', 'no', '||comma||', "no's", 'from', 'jerry', 'and', 'george', '||period||', 'persistent', '||rightparen||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "you're", 'a', 'woman', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'easier', 'for', 'a', 'woman', 'not', 'to', 'do', 'it', 'than', 'a', 'man', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'we', 'have', 'to', 'do', 'it', '||period||', "it's", 'part', 'of', 'our', 'lifestyle', '||period||', "it's", 'like', '||comma||', 'uh', '||period||', '||period||', 'shaving', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'is', 'such', 'bologna', '||period||', 'i', 'shave', 'my', 'legs', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'making', 'a', 'point', '||rightparen||', 'not', 'everyday', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'look', '||comma||', 'you', 'want', 'to', 'be', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'gotta', 'give', 'us', 'odds', '||period||', 'at', 'least', 'two', 'to', 'one', '||dash||', 'you', 'gotta', 'put', 'up', 'two', '||dash||', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'a', 'thousand', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'll", '||dash||', "i'll", 'put', 'up', 'one', '||dash||', 'fifty', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "you're", 'in', 'for', 'one', '||dash||', 'fifty', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nodding', '||rightparen||', 'okay', '||comma||', 'one', '||dash||', 'fifty', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'now', '||comma||', 'how', 'are', 'we', 'gonna', 'monitor', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'obviously', '||comma||', 'we', 'all', 'know', 'each', 'other', 'very', 'well', '||comma||', '||leftparen||', 'elaine', 'slightly', 'laughs', '||rightparen||', "i'm", 'sure', 'that', "we'll", 'all', 'feel', 'comfortable', 'within', 'the', 'confines', 'of', 'the', 'honor', 'system', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||period||', '||leftparen||', 'holds', 'out', 'his', 'pinkie', 'at', 'the', 'center', 'of', 'the', 'table', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', '||leftparen||', 'stern', '||rightparen||', 'no', '||comma||', 'ma', '||comma||', "i'm", 'not', 'gonna', 'see', 'a', 'psychiatrist', '||period||', 'n', '||dash||', 'i', "don't", 'care', 'if', 'you', 'do', 'pay', 'for', 'it', '||exclammark||', 'no', '||exclammark||', 'discussion', 'over', '||period||', 'yeah', '||comma||', 'alright', '||comma||', "i'll", 'see', 'you', 'later', '||period||', 'yes', '||comma||', 'of', 'course', "i'm", 'gonna', 'come', 'by', '||period||', 'alright', '||period||', '||leftparen||', 'hangs', 'up', '||comma||', 'slamming', 'it', 'down', 'on', 'the', 'coffee', 'table', '||period||', 'he', 'sits', 'down', 'next', 'to', 'jerry', '||rightparen||', 'my', 'mother', 'wants', 'me', 'to', 'see', 'a', 'psychiatrist', 'now', '||period||', 'why', '||questionmark||', '||exclammark||', 'because', 'she', 'caught', 'me', '||questionmark||', '||leftparen||', 'scoffs', '||comma||', 'shaking', 'his', 'head', '||rightparen||', 'you', 'know', '||comma||', 'if', 'everyone', 'who', 'did', 'that', 'had', 'to', 'go', 'see', 'a', 'psychiatrist', '||period||', '||period||', '||leftparen||', 'laughing', '||comma||', 'he', 'snorts', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'waits', 'for', 'the', 'rest', 'of', 'the', 'sentence', '||rightparen||', '||period||', '||period||', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'defensively', '||rightparen||', 'whatever', '||period||', '||return||', '||return||', 'jerry:', 'how', 'is', 'she', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shrugging', 'it', 'off', '||rightparen||', "she'll", 'be', 'fine', '||period||', 'i', 'gotta', 'go', 'to', 'the', 'hospital', 'to', 'see', 'her', 'tonight', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'to', 'the', 'intercom', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||leftparen||', 'lets', 'her', 'in', 'by', 'unlocking', 'the', 'front', 'door', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'opens', 'his', 'door', 'slightly', 'for', 'elaine', '||rightparen||', 'dating', 'marla', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'virgin', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'any', '||comma||', 'uh', '||period||', '||period||', 'progress', '||comma||', 'there', '||questionmark||', "what's", 'the', 'latest', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'got', 'my', 'troops', 'amassed', 'along', 'the', 'border', '||dash||', "i'm", 'just', 'waiting', 'for', 'someone', 'to', 'give', 'me', 'the', 'go', '||dash||', 'ahead', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'look', 'at', 'this', '||comma||', "c'mere", '||period||', "there's", 'a', 'naked', 'woman', 'across', 'the', 'street', '||period||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'kramer:', 'second', 'floor', 'from', 'the', 'top', '||period||', '||leftparen||', 'pointing', '||rightparen||', 'see', 'the', 'window', 'on', 'the', 'left', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'in', 'awe', '||rightparen||', 'wow', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'also', 'amazed', '||rightparen||', 'who', 'walks', 'around', 'the', 'house', 'like', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'suggesting', '||rightparen||', 'maybe', "she's", 'a', 'nudist', '||period||', 'you', 'know', '||comma||', 'those', 'nudist', 'colony', 'people', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', 'yeah', '||period||', '||period||', '||leftparen||', 'pause', '||rightparen||', 'yeah', '||period||', '||period||', '||leftparen||', 'slowly', 'stands', 'up', '||comma||', 'and', 'walks', 'out', "jerry's", 'apartment', '||dash||', 'leaving', 'jerry', 'and', 'george', 'with', 'the', 'view', '||comma||', 'he', 'shuts', 'the', 'door', 'behind', 'him', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'in', 'these', 'nudist', 'colonies', '||comma||', 'do', 'they', 'eat', 'naked', 'in', 'the', 'dining', 'room', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'would', 'imagine', "it's", 'all', 'naked', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'the', 'chamber', 'maids', '||questionmark||', 'are', 'they', 'naked', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'focused', 'on', 'the', 'nudist', '||rightparen||', "they're", 'naked', '||comma||', 'the', 'gardeners', 'naked', '||period||', '||period||', 'the', 'bellhops', '||period||', '||leftparen||', 'jerry', 'makes', 'a', 'noise', 'of', 'astonishment', '||rightparen||', 'one', 'big', 'nude', '||dash||', 'a', '||dash||', 'rama', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry', 'and', 'george:', '||leftparen||', 'only', 'turning', 'back', 'for', 'a', 'second', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', '||leftparen||', 'smiling', '||rightparen||', "where's", 'my', 'money', '||questionmark||', 'who', 'caved', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'over', 'his', 'shoulder', '||rightparen||', 'not', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'also', '||comma||', 'over', 'his', 'shoulder', '||rightparen||', 'not', 'me', '||period||', '||return||', '||return||', 'elaine:', "what're", 'you', 'looking', 'at', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'a', 'naked', 'woman', 'across', 'the', 'street', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||comma||', 'chuckling', '||rightparen||', 'this', 'is', 'gonna', 'be', 'the', 'easiest', 'money', "i've", 'ever', 'made', 'in', 'my', 'life', '||period||', '||leftparen||', 'moving', 'on', 'to', 'a', 'new', 'topic', '||rightparen||', 'so', '||comma||', 'my', 'fried', '||comma||', 'joyce', '||comma||', 'is', 'teaching', 'an', 'aerobics', 'class', '||period||', "i'm", 'gonna', 'go', 'tonight', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'commenting', '||rightparen||', 'yeah', '||period||', '||period||', 'the', '||dash||', 'the', 'waitress', "should've", 'taken', 'it', 'back', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'realizes', 'jerry', 'and', 'george', "aren't", 'paying', 'attention', '||rightparen||', 'so', 'then', '||comma||', 'i', 'got', 'a', 'call', 'this', 'morning', '||period||', 'you', 'know', '||comma||', 'i', 'was', '||comma||', 'uh', '||comma||', 'chosen', 'to', 'go', 'on', 'the', 'space', 'shuttle', '||period||', "we're", "goin'", 'to', 'mars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'staring', 'at', 'the', 'woman', '||rightparen||', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', 'have', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'declaring', '||rightparen||', "i'm", 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'out', '||dash||', "i'm", 'out', 'of', 'the', 'contest', '||period||', '||return||', '||return||', 'george:', "you're", 'out', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||leftparen||', 'notes', 'their', 'reactions', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'that', 'was', 'fast', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'was', 'that', 'woman', 'across', 'the', 'street', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'know', '||comma||', 'you', 'better', 'be', 'careful', '||comma||', 'buddy', '||period||', "she's", 'gonna', 'get', 'you', 'next', '||period||', '||leftparen||', 'walks', 'out', '||comma||', 'shutting', 'the', 'door', 'behind', 'him', '||rightparen||', '||return||', '||return||', 'elaine:', '||period||', '||period||', 'and', 'then', 'there', 'were', 'three', '||period||', '||return||', '||return||', '[setting:', 'hospital', 'room]', '||return||', '||return||', 'estelle:', 'i', "don't", 'understand', 'you', '||period||', 'i', 'really', "don't", '||period||', 'you', 'have', 'nothing', 'better', 'to', 'do', 'at', 'three', "o'", 'clock', 'in', 'the', 'afternoon', '||questionmark||', 'i', 'go', 'out', 'for', 'a', 'quart', 'of', 'milk', '||comma||', 'i', 'come', 'home', '||comma||', 'and', 'find', 'my', 'son', 'treating', 'his', 'body', 'like', 'it', 'was', 'an', 'amusement', 'park', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'stern', '||comma||', 'trying', 'to', 'shut', 'her', 'up', '||rightparen||', 'ma', '||period||', '||return||', '||return||', 'estelle:', "don't", 'give', 'me', '||quotemark||', 'ma', '||quotemark||', '||period||', "it's", 'a', 'good', 'thing', 'i', "didn't", 'hit', 'the', 'table', '||period||', 'i', 'could', 'of', 'cracked', 'my', 'head', 'open', '||period||', '||return||', '||return||', 'george:', 'ma', '||comma||', 'people', 'can', 'hear', 'you', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'heavy', 'in', 'sarcasm', '||rightparen||', 'too', 'bad', 'you', "can't", 'do', 'that', 'for', 'a', 'living', '||period||', "you'd", 'be', 'very', 'successful', 'at', 'it', '||period||', 'you', 'could', 'sell', 'out', 'madison', 'square', 'garden', '||period||', 'thousands', 'of', 'people', 'could', 'watch', 'you', '||exclammark||', 'you', 'could', 'be', 'a', 'big', 'star', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'up', '||rightparen||', 'alright', '||comma||', 'ma', '||comma||', "that's", 'enough', '||exclammark||', '||return||', '||return||', 'estelle:', 'i', 'want', 'you', 'to', 'go', 'see', 'a', 'psychiatrist', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'i', 'am', 'not', 'going', 'to', 'see', 'a', 'psychiatrist', '||exclammark||', '||return||', '||return||', 'estelle:', 'why', '||questionmark||', 'why', 'not', '||questionmark||', '||exclammark||', 'why', "won't", 'you', 'go', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'like', 'a', 'kid', '||rightparen||', 'because', 'i', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'estelle:', 'i', 'want', 'you', 'to', 'go', 'see', 'somebody', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'am', 'not', 'going', '||period||', '||return||', '||return||', 'estelle:', "it's", 'a', 'good', 'thing', 'your', "father's", 'in', 'chicago', '||period||', '||return||', '||return||', 'shelly:', 'hello', '||comma||', 'aunt', 'estelle', '||period||', 'look', 'at', 'you', '||dash||', 'how', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'snapping', '||rightparen||', 'is', 'that', 'important', '||comma||', 'really', '||questionmark||', 'what', 'is', 'this', '||comma||', 'a', 'police', 'investigation', '||questionmark||', 'the', "woman's", 'been', 'through', 'enough', '||period||', 'she', 'has', 'to', 'relive', 'the', 'experience', 'now', '||questionmark||', '||exclammark||', '||return||', '||return||', 'nurse:', 'hi', '||comma||', 'denise', '||period||', 'six', '||dash||', 'thirty', '||comma||', 'time', 'for', 'your', 'sponge', 'bath', '||period||', '||return||', '||return||', 'denise:', 'mmm', '||period||', '||period||', 'is', 'it', 'six', '||dash||', 'thirty', 'already', '||questionmark||', 'i', 'fell', 'asleep', '||period||', '||return||', '||return||', 'shelly:', '||leftparen||', 'seems', 'not', 'to', 'notice', "what's", 'going', 'on', 'beyond', 'the', 'divider', '||rightparen||', 'so', '||comma||', 'george', '||comma||', 'what', 'are', 'you', 'doing', 'now', '||questionmark||', 'i', 'hear', 'you', 'got', 'some', 'kinda', 'television', '||comma||', 'writing', '||dash||', 'thing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'slowly', 'backing', 'away', '||comma||', "he's", 'not', 'at', 'all', 'committed', 'to', 'the', 'conversation', '||rightparen||', 'yeah', '||period||', '||period||', 'television', '||period||', '||return||', '||return||', 'nurse:', 'let', 'me', 'help', 'you', 'out', 'with', 'that', '||period||', 'here', '||comma||', 'just', 'slip', 'it', 'over', 'your', 'head', '||period||', '||period||', '||return||', '||return||', 'denise:', 'oh', '||period||', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'shelly:', '||leftparen||', 'nodding', '||rightparen||', 'well', '||comma||', "it's", 'about', 'time', '||period||', 'we', 'thought', 'you', 'were', 'gonna', 'wind', 'up', 'on', 'the', 'street', '||period||', '||leftparen||', 'as', 'the', 'bath', 'is', 'going', 'on', '||comma||', 'george', 'is', 'now', 'completely', 'mesmerized', '||rightparen||', 'what', 'is', 'it', "you're", 'doing', '||comma||', 'exactly', '||questionmark||', '||return||', '||return||', 'estelle:', 'george', '||comma||', "you're", 'cousin', '||comma||', 'shelly', '||comma||', 'is', 'talking', 'to', 'you', '||exclammark||', '||return||', '||return||', '[setting:', 'new', 'york', 'health', 'club]', '||return||', '||return||', 'joyce:', 'so', '||comma||', 'when', 'was', 'the', 'last', 'time', 'you', 'took', 'a', 'class', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "it's", 'been', 'a', 'while', '||period||', '||return||', '||return||', 'joyce:', '||leftparen||', 'overly', 'excited', '||rightparen||', 'are', 'you', 'psyched', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'fake', 'excitement', '||rightparen||', 'yeah', '||period||', 'yeah', '||comma||', "i'm", 'really', '||period||', '||period||', 'psyched', '||period||', '||return||', '||return||', 'joyce:', 'well', '||comma||', "you're", 'gonna', 'thank', 'me', 'for', 'getting', 'you', 'in', 'here', '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'that', '||questionmark||', '||return||', '||return||', 'joyce:', '||leftparen||', 'pointing', '||comma||', 'she', 'directs', "elaine's", 'attention', 'off', '||dash||', 'camera', '||rightparen||', 'see', 'the', 'guy', 'with', 'the', 'dark', 'hair', 'and', 'the', 'red', 'shorts', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'between', 'breaths', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||period||', '||leftparen||', 'joyce', 'nods', '||rightparen||', 'john', 'f', '||period||', 'kennedy', "junior's", 'here', '||exclammark||', '||return||', '||return||', 'joyce:', "he's", 'gonna', 'be', 'in', 'your', 'class', 'today', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'unable', 'to', 'speak', 'right', '||rightparen||', 'in', 'my', 'class', '||questionmark||', 'john', "kennedy's", 'gonna', 'be', 'in', 'my', 'class', '||questionmark||', '||exclammark||', '||return||', '||return||', 'joyce:', 'i', 'can', 'get', 'you', 'a', 'spot', 'right', 'behind', 'him', '||period||', 'he', 'has', 'got', 'a', 'great', 'butt', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'butt', '||period||', 'butt', '||period||', 'great', 'butt', '||period||', 'john', '||dash||', "john's", 'butt', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'car]', '||return||', '||return||', 'marla:', "let's", 'slow', 'it', 'down', 'a', 'little', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'slow', 'it', 'down', '||quotemark||', '||questionmark||', '||return||', '||return||', 'marla:', 'well', '||comma||', '||leftparen||', 'reminding', 'him', 'of', 'her', 'virginity', '||rightparen||', 'you', 'know', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'yeah', '||period||', '||period||', 'i', 'know', '||period||', '||return||', '||return||', 'marla:', "you're", 'okay', 'with', 'that', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', 'of', 'course', '||period||', 'what', '||comma||', 'do', 'you', 'think', 'i', 'care', 'about', 'the', 'sex', '||questionmark||', 'what', 'kind', 'of', 'person', 'do', 'you', 'think', 'i', 'am', '||questionmark||', 'that', "doesn't", 'mean', 'anything', 'to', 'me', '||period||', '||leftparen||', 'faint', '||rightparen||', 'i', "don't", 'care', 'about', 'that', '||period||', '||return||', '||return||', 'marla:', 'so', '||comma||', "i'll", 'see', 'you', 'saturday', 'night', '||comma||', 'then', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', '||comma||', 'nodding', '||rightparen||', 'sure', '||comma||', 'saturday', 'night', '||period||', '||return||', '||return||', 'marla:', 'alright', '||comma||', 'then', '||period||', 'good', 'night', '||period||', '||return||', '||return||', 'jerry:', 'goodnight', '||period||', '||leftparen||', 'she', 'gets', 'out', '||period||', 'jerry', 'leans', 'forward', '||comma||', 'adding', '||rightparen||', 'not', 'just', 'a', 'good', 'night', '||dash||', 'a', 'great', 'night', '||period||', '||leftparen||', 'she', 'shuts', 'the', 'door', '||comma||', 'he', 'waves', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'bedroom]', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', '||leftparen||', 'singing', '||rightparen||', 'goood', 'moorrrnninng', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'out', 'of', 'it', '||rightparen||', 'yeah', '||comma||', 'good', 'morning', '||period||', '||return||', '||return||', 'kramer:', 'ha', '||comma||', 'ha', '||exclammark||', 'nothing', 'like', 'some', 'good', 'solid', 'sack', 'time', '||period||', '||leftparen||', 'turns', 'toward', "jerry's", 'window', '||rightparen||', '||return||', '||return||', 'jerry:', "she's", 'not', 'there', '||period||', "she's", "doin'", 'her', 'wash', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'turning', 'back', 'to', 'jerry', '||rightparen||', 'oh', '||period||', 'so', '||comma||', 'did', 'you', 'make', 'it', 'through', 'the', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'over', 'the', 'top', '||rightparen||', 'yes', '||comma||', "i'm", 'proud', 'to', 'say', 'i', 'did', '||exclammark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "you're", 'still', 'master', 'of', 'your', 'domain', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nodding', '||rightparen||', 'yes', '||period||', 'yes', 'i', 'am', '||period||', '||leftparen||', 'kramer', 'chuckles', '||rightparen||', 'master', 'of', 'my', 'domain', '||period||', 'but', 'i', 'will', 'tell', 'you', 'this', 'i', 'am', 'going', 'over', 'to', '||leftparen||', 'gestures', 'to', 'the', 'nudist', '||rightparen||', 'her', 'apartment', '||comma||', 'and', "i'm", "tellin'", 'her', 'to', 'put', 'those', 'shades', 'down', '||exclammark||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', 'woah', '||comma||', 'woah', '||period||', 'what', '||dash||', 'what', 'did', 'you', 'just', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'take', 'it', 'anymore', '||exclammark||', "she's", 'driving', 'me', 'crazy', '||exclammark||', 'i', "can't", 'sleep', '||comma||', 'i', "can't", 'leave', 'the', 'house', '||comma||', 'and', "i'", 'here', '||comma||', "i'm", "climbin'", 'the', 'walls', '||period||', 'meanwhile', '||comma||', "i'm", 'dating', 'a', 'virgin', '||comma||', "i'm", 'in', 'this', 'contest', '||dash||', "something's", 'gotta', 'give', '||exclammark||', '||return||', '||return||', 'kramer:', 'do', 'you', 'hear', 'what', "you're", 'saying', '||questionmark||', '||exclammark||', 'can', 'you', 'hear', 'it', '||questionmark||', '||exclammark||', '||leftparen||', 'jerry', 'puts', 'on', 'his', 'coat', '||rightparen||', 'this', 'is', 'a', 'beautiful', 'woman', 'walking', 'around', 'naked', '||comma||', 'and', 'you', 'want', 'to', 'tell', 'her', 'to', 'stop', '||questionmark||', '||exclammark||', "that's", 'the', 'dumbest', 'thing', 'i', 'ever', 'heard', '||exclammark||', 'i', 'mean', '||comma||', 'think', 'comprehens', '||dash||', "i'm", 'not', 'gonna', 'let', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'persistent', '||rightparen||', 'well', '||comma||', "i'm", "doin'", 'it', '||comma||', 'get', 'out', 'of', 'my', 'way', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stopping', 'him', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'you', "can't", '||exclammark||', 'you', "can't", '||exclammark||', 'this', 'is', 'something', 'that', 'comes', 'about', 'once', 'in', 'a', 'lifetime', '||exclammark||', 'when', 'we', 'were', 'boys', '||comma||', 'looking', 'through', 'our', 'bedroom', 'windows', '||comma||', 'we', 'would', 'think', '||quotemark||', 'why', "can't", 'there', 'be', 'a', 'woman', 'out', 'there', '||comma||', 'taking', 'her', 'clothes', 'off', '||questionmark||', '||quotemark||', 'and', 'now', 'that', "wish's", 'come', 'true', '||comma||', 'and', 'you', 'want', 'to', '||leftparen||', 'makes', 'a', 'noise', '||rightparen||', 'throw', 'it', 'away', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', "i'm", 'sorry', '||dash||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'm", 'not', 'gonna', 'let', 'you', 'do', 'it', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', '||leftparen||', 'trying', 'to', 'pass', 'him', '||rightparen||', 'get', 'outta', 'my', 'way', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'frantic', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "don't", 'do', 'it', '||period||', "don't", 'do', 'it', '||exclammark||', 'for', 'my', 'sake', '||exclammark||', 'god', 'knows', 'i', "don't", 'ask', 'you', 'for', 'much', '||exclammark||', '||leftparen||', 'pleading', '||rightparen||', 'now', '||comma||', 'come', 'on', '||period||', 'please', '||comma||', 'jerry', '||period||', 'please', '||exclammark||', "i'm", "beggin'", 'ya', '||exclammark||', 'please', '||exclammark||', '||leftparen||', 'claps', 'hands', '||rightparen||', 'come', 'on', '||exclammark||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||period||', '||leftparen||', 'takes', 'his', 'coat', 'off', '||rightparen||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'alright', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'moving', 'to', 'the', 'window', '||rightparen||', 'thank', 'you', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', '||period||', '||leftparen||', 'sits', 'in', "jerry's", 'chair', '||comma||', 'looking', 'out', 'the', 'window', '||rightparen||', '||return||', '||return||', 'jerry:', "she's", 'not', 'there', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'can', 'wait', '||period||', '||period||', '||return||', '||return||', '[setting:', "monk's", 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'so', 'the', 'nurse', 'was', 'giving', 'her', 'a', 'sponge', 'bath', '||questionmark||', '||return||', '||return||', 'george:', 'every', 'night', 'at', 'six', '||dash||', 'thirty', '||period||', 'the', 'nurse', 'was', 'gorgeous', '||period||', '||period||', 'then', 'i', 'got', 'a', 'look', 'at', 'the', 'patient', '||period||', '||period||', '||leftparen||', 'laughs', '||comma||', 'then', 'snorts', '||rightparen||', 'i', 'was', 'going', 'nuts', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||period||', 'well', '||comma||', 'i', 'guess', "you'll", 'be', 'going', 'back', 'to', 'that', 'hospital', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'fake', 'sympathy', '||rightparen||', 'well', '||comma||', 'my', 'mother', '||comma||', 'jerry', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', 'but', 'are', 'you', 'still', 'master', 'of', 'your', 'domain', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'arms', 'out', '||rightparen||', 'i', 'am', 'king', 'of', 'the', 'county', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'lord', 'of', 'the', 'manor', '||period||', '||return||', '||return||', 'elaine:', 'john', 'f', '||period||', 'kennedy', 'jun', '||dash||', 'ya', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||rightparen||', 'he', 'was', 'in', 'my', 'aerobics', 'class', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'did', 'you', 'talk', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'you', "don't", 'understand', '||dash||', 'he', 'was', 'working', 'out', 'right', 'in', 'front', 'of', 'me', '||period||', 'so', '||comma||', 'listen', '||comma||', 'after', 'the', 'class', 'was', 'over', '||comma||', 'i', 'timed', 'my', 'walk', 'to', 'the', 'door', 'so', "we'd", 'get', 'there', 'at', 'the', 'exact', 'same', 'moment', '||comma||', 'and', 'he', 'says', 'to', 'me', '||comma||', '||leftparen||', 'thinking', 'the', 'world', 'of', 'what', 'he', 'said', '||rightparen||', '||quotemark||', 'quite', 'a', 'workout', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'quite', 'a', 'workout', '||quotemark||', '||questionmark||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||comma||', 'proud', '||rightparen||', 'i', 'said', '||comma||', '||quotemark||', 'yeah', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'adding', '||comma||', 'fake', 'praise', '||rightparen||', 'good', 'one', '||period||', '||return||', '||return||', 'elaine:', 'so', 'then', '||comma||', 'listen', '||comma||', 'listen', '||period||', 'so', 'then', '||comma||', 'i', 'showered', 'and', 'i', 'dressed', '||comma||', 'and', 'i', 'saw', 'him', 'again', '||comma||', 'on', 'the', 'way', 'out', '||period||', '||leftparen||', 'giddy', 'and', 'nearly', 'out', 'of', 'breath', '||rightparen||', 'so', "we're", "walkin'", 'and', "talkin'", '||comma||', 'and', 'he', 'asked', 'me', 'my', 'name', '||dash||', 'and', 'i', 'think', 'i', 'said', 'elaine', '||dash||', 'but', '||comma||', 'i', 'mean', '||comma||', 'who', 'the', 'hell', 'knows', '||period||', '||period||', 'and', 'so', 'then', '||comma||', 'he', 'says', 'to', 'me', '||quotemark||', 'do', 'you', 'wanna', 'split', 'a', 'cab', 'uptown', '||questionmark||', '||quotemark||', 'and', 'i', 'said', '||comma||', '||quotemark||', 'sure', '||quotemark||', '||dash||', 'even', 'though', 'i', 'was', 'going', 'downtown', '||period||', 'so', '||comma||', 'we', 'get', 'in', 'the', 'cab', '||comma||', 'and', 'i', 'mean', '||comma||', 'i', 'have', 'no', 'idea', 'where', "i'm", "goin'", '||comma||', 'right', '||questionmark||', 'but', 'this', 'is', 'john', 'f', '||period||', 'kennedy', 'junior', "we're", "talkin'", 'about', '||exclammark||', '||leftparen||', 'deep', 'breath', '||rightparen||', 'so', '||comma||', 'then', '||comma||', 'he', 'says', 'to', 'me', '||comma||', '||quotemark||', 'where', 'do', 'you', 'live', '||questionmark||', '||quotemark||', 'and', 'i', '||dash||', 'and', 'i', '||dash||', 'and', 'i', 'was', 'close', 'to', 'your', 'block', '||comma||', 'so', 'i', 'said', 'your', 'building', '||period||', 'so', 'he', 'dropped', 'me', 'off', 'in', 'front', '||comma||', '||leftparen||', 'laughs', '||rightparen||', 'and', 'i', 'had', 'to', 'take', 'a', 'cab', 'all', 'the', 'way', 'back', 'downtown', 'to', 'my', 'house', '||period||', '||period||', '||leftparen||', 'picks', 'up', 'a', 'glass', 'of', 'cold', 'water', 'and', 'presses', 'it', 'up', 'to', 'her', 'forehead', 'to', 'cool', 'her', 'off', '||rightparen||', 'oh', '||comma||', 'god', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', 'the', 'question', 'is', '||comma||', 'are', 'you', 'still', 'master', 'of', 'your', 'domain', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sets', 'the', 'glass', 'down', '||rightparen||', "i'm", 'queen', 'of', 'the', 'castle', '||period||', '||leftparen||', 'pops', 'a', 'piece', 'of', 'food', 'into', 'her', 'mouth', '||rightparen||', '||return||', '||return||', '[setting:', "estelle's", 'hospital', 'room]', '||return||', '||return||', 'estelle:', "you're", 'back', '||period||', '||return||', '||return||', 'george:', 'of', 'course', "i'm", 'back', '||period||', 'why', "wouldn't", 'i', 'be', 'back', '||questionmark||', 'my', "mother's", 'in', 'the', 'hospital', '||comma||', "i'm", 'going', 'to', 'pay', 'her', 'a', 'visit', '||period||', '||return||', '||return||', 'estelle:', 'i', 'know', '||comma||', 'but', 'two', 'days', 'in', 'a', 'row', '||questionmark||', 'you', "didn't", 'have', 'to', 'do', 'this', '||period||', '||return||', '||return||', 'george:', "you're", 'my', 'mother', '||exclammark||', 'what', "wouldn't", 'i', 'do', 'for', 'you', '||questionmark||', '||return||', '||return||', 'estelle:', 'you', 'know', 'what', 'you', 'could', 'do', '||questionmark||', 'i', "haven't", 'eaten', 'lunch', 'or', 'dinner', '||period||', 'i', "can't", 'eat', 'this', 'hospital', 'food', '||period||', 'maybe', 'you', 'could', 'run', 'down', 'to', 'the', 'deli', 'and', 'get', 'me', 'a', 'sandwich', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'you', 'got', 'it', '||comma||', 'ma', '||period||', '||leftparen||', 'she', 'smiles', 'back', '||comma||', 'nodding', '||rightparen||', 'a', 'little', 'later', '||period||', '||leftparen||', 'george', 'sits', 'back', 'in', 'a', 'nearby', 'chair', '||comma||', 'looking', 'at', 'the', 'divider', 'in', 'anticipation', '||rightparen||', '||return||', '||return||', 'estelle:', '||leftparen||', 'let', 'down', '||rightparen||', 'could', 'you', 'go', 'now', '||comma||', 'george', '||questionmark||', "i'm", 'very', 'hungry', '||period||', "i'm", 'weak', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'wait', 'a', 'little', 'while', '||comma||', 'ma', '||period||', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', "don't", 'understand', 'why', 'you', "can't", 'do', 'this', 'for', 'me', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', 'up', '||rightparen||', 'i', 'just', 'got', 'here', '||comma||', 'ma', '||exclammark||', "i'd", 'like', 'to', 'spend', 'a', 'little', 'time', 'with', 'you', '||period||', '||return||', '||return||', 'estelle:', 'but', 'if', 'you', 'wait', '||comma||', 'they', "won't", 'let', 'you', 'back', 'in', '||exclammark||', 'visiting', 'hours', 'are', 'almost', 'over', '||exclammark||', '||return||', '||return||', 'george:', 'ten', 'minutes', '||exclammark||', 'here', '||comma||', 'here', '||comma||', '||leftparen||', 'fishes', 'a', 'box', 'of', 'tic', '||dash||', 'tacs', 'out', 'of', 'his', 'coat', 'pocket', 'and', 'tosses', 'them', 'to', 'her', '||rightparen||', 'have', 'some', 'tic', '||dash||', 'tacs', '||period||', '||return||', '||return||', 'estelle:', 'get', 'the', 'hell', 'outta', 'here', '||period||', '||leftparen||', 'angrily', 'sets', 'them', 'aside', '||rightparen||', "i'm", 'sorry', 'you', 'came', '||period||', '||return||', '||return||', 'nurse:', '||leftparen||', 'to', 'patient', '||rightparen||', 'six', '||dash||', 'thirty', '||period||', 'time', 'for', 'your', 'sponge', 'bath', '||period||', '||return||', '||return||', 'estelle:', 'george', '||period||', '||period||', "i'm", 'huuunnnggry', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', '||comma||', 'slow', '||rightparen||', 'hang', 'on', '||comma||', 'ma', '||period||', '||period||', 'hang', 'on', '||period||', '||period||', '||return||', '||return||', '[setting:', 'new', 'york', 'health', 'club]', '||return||', '||return||', 'joyce:', 'hi', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'joyce:', 'did', 'you', 'get', 'your', 'hair', 'done', 'today', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'just', '||comma||', 'uh', '||comma||', 'fixed', 'it', '||period||', '||period||', 'a', 'little', 'bit', '||period||', '||leftparen||', 'still', 'looking', 'around', '||comma||', 'she', 'quickly', 'checks', 'her', 'breath', '||rightparen||', '||return||', '||return||', 'joyce:', 'you', 'know', 'who', '||dash||', "isn't", 'here', '||period||', 'he', 'was', 'in', 'the', 'early', 'class', 'today', '||period||', '||leftparen||', 'elaine', 'looses', 'her', 'composure', '||rightparen||', 'but', 'i', 'think', 'you', 'made', 'quite', 'an', 'impression', 'on', 'him', 'yesterday', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'regarding', 'herself', '||rightparen||', 'what', '||questionmark||', 'what', '||questionmark||', 'who', '||questionmark||', 'me', '||dash||', 'me', '||dash||', 'me', '||questionmark||', 'i', 'made', 'an', 'impression', '||questionmark||', 'what', 'impression', '||questionmark||', '||return||', '||return||', 'joyce:', 'let', 'me', 'just', 'put', 'this', 'back', '||period||', '||leftparen||', 'turns', 'to', 'put', 'a', 'stack', 'of', 'shorts', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'no', '||exclammark||', 'now', '||exclammark||', 'tell', 'me', 'now', '||exclammark||', 'what', 'did', 'he', 'say', '||questionmark||', '||exclammark||', '||return||', '||return||', 'joyce:', '||leftparen||', 'uneasy', '||rightparen||', 'he', 'asked', 'about', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'ecstatic', '||rightparen||', 'he', 'asked', 'about', 'me', '||questionmark||', 'john', 'kennedy', 'asked', 'about', 'me', '||questionmark||', '||exclammark||', '||leftparen||', 'hangs', 'off', 'the', 'side', 'of', 'the', 'counter', '||comma||', 'both', 'feet', 'in', 'the', 'air', '||rightparen||', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'joyce:', 'he', 'wanted', 'to', 'know', 'your', 'situation', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quick', '||rightparen||', 'what', 'situation', '||questionmark||', 'i', 'have', 'a', 'situation', '||questionmark||', '||return||', '||return||', 'joyce:', 'i', '||dash||', 'i', 'told', 'him', 'you', 'were', 'single', '||period||', '||return||', '||return||', 'elaine:', 'that', 'was', 'good', '||period||', 'that', 'was', 'very', 'good', '||period||', '||return||', '||return||', 'joyce:', 'he', 'said', 'you', 'were', 'just', 'his', 'type', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'frank', '||rightparen||', 'okay', '||comma||', 'you', "tryin'", 'to', 'hurt', 'me', '||questionmark||', 'are', 'you', "tryin'", 'to', 'hurt', '||dash||', "you're", "tryin'", 'to', 'injure', 'me', '||comma||', 'right', '||questionmark||', "you're", 'trying', 'to', 'hurt', 'me', '||period||', '||return||', '||return||', 'joyce:', 'he', 'also', 'told', 'me', 'to', 'tell', 'you', 'that', "he'll", 'be', 'in', 'your', 'neighborhood', 'tomorrow', 'around', 'nine', "o'", 'clock', '||dash||', 'so', "he's", 'gonna', 'stop', 'in', 'front', 'of', 'your', 'building', 'if', 'you', 'want', 'to', 'come', 'down', 'and', 'say', 'hello', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'ma', '||comma||', "i'll", 'talk', 'to', 'you', 'later', '||period||', '||period||', 'nothing', '||comma||', "i'm", '||comma||', "i'm", 'watching', '||comma||', 'uh', '||comma||', 'tiny', 'toons', 'here', '||comma||', 'on', 'nickelodeon', '||period||', '||period||', "it's", '||comma||', 'i', '||dash||', 'i', 'like', 'kid', 'shows', '||period||', 'they', 'have', 'a', 'very', 'innocent', '||comma||', 'wholesome', 'quality', '||period||', 'okay', '||comma||', 'alright', '||comma||', "i'll", 'talk', 'to', 'you', 'later', '||period||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'obviously', 'watching', 'the', 'nudist', 'across', 'the', 'street', '||rightparen||', 'oh', '||comma||', "that's", 'good', '||period||', "that's", 'good', '||period||', "that's", 'very', '||comma||', 'very', 'good', '||period||', 'oh', '||comma||', "it's", 'hot', 'in', 'there', '||period||', '||period||', '||leftparen||', 'jerry', 'looks', 'back', 'at', 'kramer', 'in', 'envy', '||rightparen||', "it's", 'hot', 'in', 'there', '||period||', 'so', '||comma||', 'just', 'walk', 'around', 'a', 'little', 'bit', '||period||', "don't", 'be', 'ashamed', '||comma||', "don't", 'be', 'ashamed', '||period||', '||period||', "that's", 'good', '||comma||', "that's", 'good', '||period||', '||period||', 'yes', '||comma||', 'yes', '||comma||', 'yes', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'block', 'out', 'kramer', '||comma||', 'he', 'starts', 'to', 'sing', 'along', 'with', 'the', 'tv', '||rightparen||', 'the', 'wheels', 'on', 'the', 'bus', 'go', 'round', 'and', 'round', '||comma||', 'round', 'and', 'round', '||comma||', 'round', 'and', 'round', '||period||', 'the', 'wheels', 'on', 'the', 'bus', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'the', 'woman', 'across', 'the', 'street', 'has', 'nothing', 'on', '||comma||', 'nothing', 'on', '||comma||', 'nothing', 'on', '||period||', '||period||', '||return||', '||return||', '[setting:', "george's", 'room]', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'all', 'you', 'got', 'is', 'instant', 'coffee', '||questionmark||', 'why', "don't", 'you', 'get', 'some', 'real', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'keep', 'real', 'coffee', 'in', 'here', '||comma||', 'i', 'get', 'my', 'coffee', 'on', 'the', 'outside', '||exclammark||', '||leftparen||', 'intercom', 'buzzes', '||period||', 'he', 'answers', 'it', '||rightparen||', 'yeah', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'through', 'intercom', '||rightparen||', "it's", 'elaine', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shouting', '||rightparen||', 'come', 'on', 'up', '||exclammark||', '||leftparen||', 'opens', 'his', 'door', 'for', 'elaine', '||rightparen||', '||return||', '||return||', 'george:', 'where', 'did', 'you', 'get', 'those', 'socks', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'those', 'are', 'my', 'socks', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'are', 'these', 'your', 'socks', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'but', 'those', 'are', 'my', 'socks', '||exclammark||', 'i', 'had', 'a', 'pair', 'just', 'like', 'that', 'with', 'the', 'blue', 'stripe', '||comma||', 'and', 'now', 'i', "don't", 'have', 'them', 'anymore', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'yeah', '||comma||', "that's", 'right', '||comma||', 'well', '||comma||', 'you', 'fell', 'asleep', 'one', 'day', 'on', 'the', 'sofa', 'and', 'i', 'took', 'them', 'off', 'your', "stinkin'", 'feet', '||period||', 'they', 'looked', 'so', 'good', 'to', 'me', '||comma||', 'i', 'just', 'had', 'to', 'have', 'them', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', '||comma||', "they're", 'my', 'socks', '||exclammark||', '||return||', '||return||', 'jerry:', "they're", 'my', 'socks', '||exclammark||', '||return||', '||return||', 'george:', 'oh', 'boy', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'we', 'doing', 'here', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', 'oh', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'ridiculous', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'believe', 'this', '||questionmark||', "we're", 'fighting', '||period||', "we're", 'fighting', '||period||', '||return||', '||return||', 'jerry:', 'i', "haven't", 'been', 'myself', 'lately', '||period||', "i've", 'been', 'snapping', 'at', 'everybody', '||period||', '||return||', '||return||', 'george:', 'me', 'too', '||period||', "i've", 'been', 'yelling', 'at', 'strangers', 'on', 'the', 'street', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||period||', '||leftparen||', 'pulls', 'a', 'wad', 'of', 'bills', 'out', 'of', 'her', 'purse', '||comma||', 'and', 'starts', 'to', 'count', 'it', 'up', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'shocked', '||rightparen||', 'you', 'caved', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'over', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'ohh', '||dash||', 'my', '||dash||', 'god', '||period||', 'the', 'queen', 'is', 'dead', '||period||', '||return||', '||return||', 'george:', 'i', 'figured', "you'd", 'cruise', '||period||', 'at', 'least', 'through', 'the', 'spring', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'was', '||period||', '||period||', 'uh', '||period||', '||period||', 'john', '||dash||', 'john', '||period||', '||return||', '||return||', 'jerry', 'and', 'george:', 'ohhhhh', '||period||', '||period||', 'john', '||dash||', 'john', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'made', 'it', 'through', 'the', 'day', 'before', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'yesterday', '||comma||', 'he', 'told', 'joyce', '||comma||', 'the', 'aerobics', 'teacher', '||comma||', 'that', 'he', 'wants', 'to', 'meet', 'me', 'outside', 'here', 'at', 'nine', "o'", 'clock', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'why', 'outside', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'he', 'think', 'i', 'live', 'here', '||period||', 'remember', 'when', 'we', 'shared', 'a', 'cab', '||comma||', 'and', 'he', 'dropped', 'me', 'off', 'out', 'in', 'front', '||questionmark||', "he's", 'picking', 'me', 'up', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'costanza', '||dash||', "it's", 'just', 'you', 'and', 'me', '||period||', '||return||', '||return||', 'george:', 'and', 'then', '||comma||', '||leftparen||', 'smacks', 'the', 'money', '||rightparen||', 'there', 'were', 'two', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'slowly', '||rightparen||', 'elaine', 'benes', 'kennedy', 'junior', '||period||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'marla:', "let's", 'go', 'in', 'the', 'bedroom', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'marla:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'marla:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'you', 'really', 'want', 'to', '||questionmark||', '||return||', '||return||', 'marla:', 'i', 'do', '||period||', "i'm", 'ready', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||return||', '||return||', 'marla:', 'i', 'know', 'how', 'difficult', 'this', 'must', 'have', 'been', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'chuckles', '||rightparen||', 'you', "don't", 'know', 'the', 'half', 'of', 'it', '||period||', '||return||', '||return||', 'marla:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'kinda', 'silly', '||comma||', 'but', '||period||', '||period||', '||return||', '||return||', 'marla:', 'contest', '||questionmark||', '||exclammark||', 'a', 'contest', '||exclammark||', 'this', 'is', 'what', 'you', 'do', 'with', 'your', 'friends', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it', 'was', 'just', 'a', 'bet', '||period||', 'i', 'mean', '||comma||', 'it', 'actually', 'started', 'with', 'george', 'and', 'his', 'mother', '||dash||', '||return||', '||return||', 'marla:', 'i', "don't", 'want', 'to', 'hear', 'another', 'word', '||period||', 'and', 'to', 'think', 'how', 'close', 'i', 'came', 'to', 'you', 'being', 'the', 'one', '||exclammark||', 'i', 'must', 'have', 'been', 'out', 'of', 'my', 'mind', '||period||', '||return||', '||return||', 'elaine:', 'marla', '||questionmark||', 'hi', '||comma||', 'oh', '||comma||', "i'm", 'glad', 'i', 'ran', 'into', 'you', '||dash||', '||return||', '||return||', 'marla:', 'i', "don't", 'want', 'to', 'have', 'anything', 'to', 'do', 'with', 'you', 'or', 'your', 'perverted', 'friends', '||period||', '||leftparen||', 'confused', '||comma||', 'elaine', 'moves', 'closer', '||rightparen||', 'ooohh', '||comma||', 'get', 'away', 'from', 'me', '||exclammark||', "you're", 'horrible', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'her', 'about', 'the', 'contest', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||period||', 'boy', '||comma||', "she's", 'a', 'whack', '||dash||', 'o', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hey', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'thought', 'you', 'were', 'meeting', 'kennedy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'let', 'down', '||rightparen||', 'he', "didn't", 'show', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'he', 'did', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "he's", '||dash||', "he's", 'out', 'there', '||questionmark||', 'oh', '||comma||', 'my', 'god', '||period||', 'i', '||dash||', 'i', 'gotta', 'go', '||comma||', 'i', 'gotta', 'go', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'he', 'just', 'left', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'he', 'was', 'talking', 'to', 'marla', '||period||', '||return||', '||return||', 'jerry:', 'marla', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'think', '||comma||', 'you', 'know', '||comma||', 'she', 'was', '||comma||', 'like', '||comma||', 'crying', '||comma||', 'and', 'he', 'was', 'consoling', 'her', '||comma||', 'and', 'then', '||comma||', 'she', '||comma||', 'uh', '||comma||', 'just', 'got', 'into', 'his', 'car', '||comma||', 'and', 'they', 'just', 'drove', 'away', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'angered', '||rightparen||', 'he', 'left', 'with', 'marla', '||comma||', 'the', 'virgin', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'they', 'drove', 'away', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'drove', 'away', '||period||', '||period||', 'you', 'know', '||comma||', 'i', 'said', "'hello'", 'to', 'him', '||period||', 'you', 'know', '||comma||', "he's", '||dash||', "he's", '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'moving', 'to', 'the', 'window', '||comma||', 'shocked', '||rightparen||', 'oh', 'my', 'god', 'in', 'heaven', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'makes', 'a', 'sound', 'of', 'surprise', '||rightparen||', 'is', 'that', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', "he's", 'waving', '||period||', '||period||', '||return||', '||return||', '[setting:', "elaine's", 'bedroom]', '||return||', '||return||', 'marla:', 'ohh', '||comma||', 'john', '||period||', 'that', 'was', 'wonderful', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'bah', 'bah', 'baaah', '||comma||', 'boo', 'doo', 'bah', 'bah', 'bah', '||comma||', 'boo', 'doo', 'waaaah', '||comma||', 'waah', '||comma||', 'waaaah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'could', 'you', 'do', 'me', 'a', 'favour', '||questionmark||', '[pause]', 'could', 'you', 'shut', '||dash||', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', 'guess', 'what', '||questionmark||', 'this', 'window', "doesn't", 'work', '||period||', '||return||', '||return||', 'jerry:', 'i', 'hate', 'rental', 'cars', '||period||', "nothin'", 'ever', 'works', 'the', 'window', "doesn't", 'work', '||comma||', 'the', 'radio', "doesn't", 'work', '||period||', '||period||', '||period||', 'and', 'it', 'smells', 'like', 'a', 'cheap', 'hooker', '||period||', '||period||', '||period||', '[pause]', 'or', 'is', 'that', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'gimme', 'ten', 'bucks', 'and', 'find', 'out', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'this', 'worked', 'out', 'pretty', 'good', '||period||', 'them', "givin'", 'me', 'an', 'extra', 'ticket', '||comma||', "y'know", '||comma||', 'you', 'get', 'a', 'free', 'trip', 'to', 'st', '||period||', 'louis', '||comma||', 'i', 'did', 'my', 'gig', '||comma||', 'you', 'got', 'to', 'see', 'your', 'sister', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'worked', 'out', 'good', '||period||', '||return||', '||return||', 'jerry:', 'and', "here's", 'the', 'beauty', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'is', "pickin'", 'us', 'up', 'at', 'the', 'airport', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', 'of', 'here', '||exclammark||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'that', 'awning', 'outside', 'my', 'building', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "he's", 'always', 'bragging', 'about', 'his', 'vertical', 'leap', '||comma||', 'so', 'i', 'bet', 'him', 'fifty', 'bucks', 'that', 'he', "couldn't", 'touch', 'the', 'awning', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', "didn't", 'come', 'within', 'two', 'feet', 'of', 'the', 'thing', '||period||', "he's", 'wavin', 'at', 'it', '||period||', '||period||', '||period||', 'so', '||comma||', 'i', 'told', 'him', 'if', 'he', 'picks', 'us', 'up', 'at', 'the', 'airport', '||comma||', 'he', "wouldn't", 'have', 'to', 'pay', 'me', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'how', 'we', "doin'", 'on', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'timed', 'out', 'perfectly', '||period||', 'drop', 'off', 'the', 'car', '||comma||', 'pick', 'up', 'the', 'rental', 'car', 'shuttle', '||comma||', 'we', 'walk', 'right', 'on', 'the', 'plane', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'wait', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'wait', 'up', '||exclammark||', '||return||', '||return||', 'driver:', 'sorry', '||period||', 'heh', 'heh', 'heh', '||period||', '||period||', '||period||', '||return||', '||return||', 'skycap:', 'where', 'you', "goin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'jfk', '||period||', '[to', 'elaine]', 'i', 'need', 'some', 'small', 'bills', 'for', 'a', 'tip', '||period||', 'you', 'got', 'anything', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'want', 'five', '||questionmark||', '||return||', '||return||', 'jerry:', 'gimme', 'ten', '||period||', '||return||', '||return||', 'elaine:', "you're", 'giving', 'him', '*ten*', 'dollars', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'got', 'three', 'bags', '||period||', '||return||', '||return||', 'elaine:', "that's", 'a', 'pretty', 'big', 'tip', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "that's", 'what', 'they', 'get', '||exclammark||', '||return||', '||return||', 'elaine:', 'they', "don't", 'get', 'that', 'much', '||period||', '||return||', '||return||', 'jerry:', "let's", 'ask', 'him', '||period||', '||return||', '||return||', 'elaine:', 'we', "can't", 'ask', 'him', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "let's", 'see', 'what', 'he', 'says', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'we', "don't", 'have', 'time', 'for', 'this', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'two', 'seconds', '||period||', '[to', 'skycap]', 'excuse', 'me', '||comma||', 'my', 'friend', 'and', 'i', 'here', '||comma||', 'we', 'were', 'having', 'a', 'discussion', 'and', 'we', 'were', 'wondering', 'what', 'you', 'usually', 'get', 'for', 'a', 'tip', '||period||', '||return||', '||return||', 'skycap:', 'depends', 'on', 'the', 'person', '||comma||', 'depends', 'on', 'the', 'bag', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'how', 'about', 'a', 'couple', 'of', 'people', 'like', 'us', '||period||', '||return||', '||return||', 'skycap:', 'people', 'like', 'you', '||questionmark||', 'i', "wouldn't", 'expect', 'much', '||comma||', 'you', "don't", 'even', 'look', 'like', 'you', 'know', 'what', "you're", 'doing', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'seriously', '||period||', '||period||', '||period||', '||return||', '||return||', 'skycap:', 'well', '||comma||', 'since', 'you', 'asked', '||comma||', 'usually', '||comma||', 'i', 'get', 'five', 'dollars', 'a', 'bag', '||period||', '||return||', '||return||', 'elaine:', 'what', '||exclammark||', '||questionmark||', '||return||', '||return||', 'skycap:', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', '*five*', 'dollars', 'a', 'bag', '||questionmark||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'skycap:', 'look', '||comma||', 'you', 'asked', '||comma||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'some', 'nerve', 'trying', 'to', 'take', 'advantage', 'of', 'us', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'look', '||comma||', "we're", 'late', '||period||', 'thank', 'you', 'very', 'much', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "you're", 'lucky', 'i', "don't", 'report', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'skycap:', 'jfk', '||period||', '||period||', '||period||', '||return||', '||return||', 'skycap:', '||period||', '||period||', '||period||', 'honolulu', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'see', '||questionmark||', 'never', 'be', 'late', 'for', 'a', 'plane', 'with', 'a', 'girl', '||period||', "'cuz", 'a', 'girl', 'runs', 'like', 'a', 'girl', '||dash||', '||dash||', 'with', 'the', 'little', 'steps', 'and', 'the', 'arms', 'flailing', 'out', '||period||', '||period||', '||period||', 'you', 'wanna', 'make', 'this', 'plane', '||comma||', "you've", 'gotta', 'run', 'like', 'a', 'man', '||exclammark||', 'get', 'your', 'knees', 'up', '||exclammark||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'the', "flight's", 'been', 'canceled', '||questionmark||', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ticket', 'lady:', 'everything', 'into', "jfk's", 'booked', '||period||', '||period||', '||period||', 'no', '||comma||', 'wait', '||dash||', '||dash||', 'i', 'have', 'two', 'seats', 'into', 'laguardia', '||dash||', '||dash||', 'but', "they're", 'not', 'together', '||period||', "it's", 'boarding', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'take', "'em", '||exclammark||', '||return||', '||return||', 'elaine:', "we're", 'not', 'going', 'to', 'sit', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', 'what', '||questionmark||', "it's", 'not', 'that', 'long', '||dash||', '||dash||', "you'll", 'read', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'about', 'george', '||questionmark||', "he's", 'supposed', 'to', 'pick', 'us', 'up', 'at', 'kennedy', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'call', 'him', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "there's", 'no', 'time', '||period||', '||return||', '||return||', 'jerry:', 'no', 'time', '||questionmark||', '[to', 'ticket', 'lady]', 'is', 'there', 'time', '||questionmark||', '||return||', '||return||', 'ticket', 'lady:', "there's", 'no', 'time', '||period||', '||return||', '||return||', 'jerry:', "there's", 'no', 'time', '||period||', 'all', 'right', '||comma||', "we'll", 'call', 'him', 'from', 'the', 'plane', '||period||', '||return||', '||return||', 'ticket', 'lady:', 'i', 'have', 'one', 'seat', 'in', 'first', 'class', '||comma||', 'and', 'one', 'in', 'coach', '||period||', 'the', 'price', 'is', 'the', 'same', 'since', 'your', 'flight', 'was', 'canceled', '||period||', '||return||', '||return||', '||leftparen||', 'the', 'two', 'have', 'that', 'uncomfortable', 'politeness', 'that', 'only', 'comes', 'about', 'when', "you're", 'down', 'to', 'the', 'last', 'piece', 'of', 'pizza', '||period||', 'jerry', 'breaks', 'the', 'silence:', '||rightparen||', '||return||', '||return||', 'jerry:', "i'll", 'take', 'the', 'first', 'class', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'should', 'you', 'get', 'the', 'first', 'class', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'have', 'you', 'ever', 'flown', 'first', 'class', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'then', '||period||', 'see', '||questionmark||', 'you', "won't", 'know', 'what', "you're", 'missing', '||period||', "i've", 'flown', 'first', 'class', '||comma||', 'elaine', '||dash||', '||dash||', 'i', "can't", 'go', 'back', 'to', 'coach', '||period||', 'i', "can't", '||period||', '||period||', '||period||', 'i', "won't", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'flew', 'here', 'coach', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'a', 'point', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'fine', '||period||', 'i', "don't", 'care', '||period||', 'if', 'the', 'plane', 'crashes', '||comma||', 'everybody', 'in', 'first', 'class', 'is', 'going', 'to', 'die', '||comma||', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'sure', "you'll", 'live', '||period||', '||return||', '||return||', 'attendant', '#1:', 'third', 'row', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'attendant', '#1:', 'oh', '||comma||', "you're", 'in', 'here', '||comma||', 'sir', '||period||', 'welcome', 'aboard', '||period||', '||return||', '||return||', 'jerry:', 'bon', 'voyage', '||comma||', 'lainey', '||exclammark||', '||return||', '||return||', '||leftparen||', 'elaine', 'is', 'robbed', 'of', 'her', 'peek', 'into', 'the', 'first', 'class', 'section', 'by', 'a', 'drawn', 'curtain', 'and', 'she', 'goes', 'to', 'her', 'seat', '||period||', 'however', '||comma||', 'someone', 'comes', 'after', 'her', 'and:', '||rightparen||', '||return||', '||return||', 'passenger', '#1:', 'oh', '||comma||', 'excuse', 'me', '||period||', '||period||', '||period||', 'um', '||comma||', 'excuse', 'me', '||comma||', 'miss', '||comma||', 'i', 'think', "you're", 'sitting', 'in', 'my', 'seat', '||period||', '||period||', '||period||', '||return||', '||return||', 'passenger', '#1:', 'i', 'never', 'check', 'my', 'bags', '||dash||', '||dash||', 'i', "can't", 'stand', 'that', 'wait', 'in', 'the', 'baggage', 'area', '||period||', '||return||', '||return||', 'elaine:', 'great', '||period||', '||period||', '||period||', '[to', 'herself]', 'help', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', '||leftparen||', 'jerry', 'gets', 'to', 'his', 'seat', '||comma||', 'however', '||comma||', 'he', 'also', 'is', 'in', 'the', 'wrong', 'seat:', '||rightparen||', '||return||', '||return||', 'tia:', 'excuse', 'me', '||comma||', 'i', 'think', "you're", 'in', 'my', 'seat', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sorry', '||period||', '||period||', '||period||', 'my', 'mistake', '||period||', '||period||', '||period||', '[to', 'himself]', 'thank', '||period||', '||period||', '||period||', '*you*', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'thanks', 'for', 'coming', 'with', 'me', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'what', 'made', 'you', 'think', 'you', 'could', 'touch', 'that', 'awning', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'confused', 'it', 'with', 'another', 'awning', '||period||', '||return||', '||return||', 'kramer:', 'so', 'how', 'we', "doin'", 'on', 'time', '||questionmark||', '||return||', '||return||', 'george:', "we're", 'perfect', '||period||', 'i', 'timed', 'this', 'out', 'so', 'we', 'would', 'pull', 'up', 'at', 'the', 'terminal', '*exactly*', '17', 'minutes', 'after', 'their', 'flight', 'is', 'supposed', 'to', 'land', '||period||', 'that', 'gives', 'them', 'just', 'enough', 'time', 'to', 'get', 'off', 'the', 'plane', '||comma||', 'pick', 'up', 'their', 'bags', 'and', 'be', 'walking', '*out*', 'of', 'the', 'terminal', 'as', 'we', 'roll', 'up', '||period||', 'i', 'tell', 'you', '||comma||', "it's", 'a', 'thing', 'of', 'beauty', '||period||', 'i', 'can', 'not', 'express', 'to', 'you', 'the', 'feeling', 'i', 'get', 'from', 'a', 'perfect', 'airport', 'pickup', '||period||', '||leftparen||', 'starts', 'looking', 'around', '||rightparen||', "what's", 'going', 'on', '||questionmark||', 'what', 'are', 'you', 'doing', '||questionmark||', 'the', 'long', 'island', 'expressway', '||questionmark||', 'what', 'are', 'you', 'getting', 'on', 'the', 'long', 'island', 'expressway', 'for', '||questionmark||', 'do', 'you', 'know', 'what', 'the', 'traffic', 'will', 'be', 'like', '||questionmark||', 'this', 'is', 'a', 'suicide', 'mission', '||exclammark||', '||return||', '||return||', 'kramer:', 'will', 'you', 'relax', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'had', 'it', 'perfectly', 'timed', 'out', 'the', 'grand', 'central', '||comma||', 'the', 'van', 'wyck', '||exclammark||', 'you', 'destroyed', 'my', 'whole', 'timing', '||exclammark||', '||return||', '||return||', 'kramer:', 'this', 'is', 'the', 'best', 'way', 'to', 'go', '||exclammark||', '||return||', '||return||', 'george:', 'do', 'you', 'know', 'what', 'happens', 'if', 'i', 'miss', 'him', '||questionmark||', 'i', "don't", 'get', 'credit', 'for', 'the', 'pickup', 'and', 'i', 'lose', 'my', '50', 'bucks', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "there's", 'no', 'traffic', 'at', 'this', 'time', '||period||', 'now', '||comma||', 'come', 'on', '||comma||', 'man', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'if', 'anything', '||comma||', "we'll", 'probably', 'get', 'there', 'early', '||period||', "i'll", 'have', 'a', 'chance', 'to', 'go', 'to', 'the', 'duty', 'free', 'shop', '||period||', '||return||', '||return||', 'george:', 'the', 'duty', 'free', 'shop', '||questionmark||', 'duty', 'free', 'is', 'the', 'biggest', 'sucker', 'deal', 'in', 'retail', '||period||', 'do', 'you', 'know', 'how', 'much', 'duty', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', 'duty', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', '||quotemark||', 'duty', '||quotemark||', '||period||', 'do', 'you', 'know', 'how', 'much', 'duty', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'dunno', 'how', 'much', 'duty', 'is', '||period||', '||return||', '||return||', 'george:', 'duty', 'is', '*nothing*', '||period||', "it's", 'like', 'sales', 'tax', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'still', 'like', 'to', 'stop', 'at', 'the', 'duty', 'free', 'shop', '||period||', '||return||', '||return||', 'george:', 'i', 'like', 'to', 'stop', 'at', 'the', 'duty', 'free', 'shop', '||period||', '||return||', '||return||', '||leftparen||', 'they', 'start', 'to', '||quotemark||', 'sing', '||quotemark||', '||comma||', 'growing', 'more', 'excited', 'after', 'each', 'iteration:', '||rightparen||', '||return||', '||return||', 'george', '&', 'kramer:', 'i', 'like', 'to', 'stop', 'at', 'the', 'duty', 'free', 'shop', '||exclammark||', '||return||', '||return||', 'tia:', 'so', '||comma||', 'he', 'says', '||comma||', '``squeeze', 'your', 'breasts', "together''", '||comma||', 'and', 'i', 'say', '||comma||', '``i', 'thought', 'this', 'was', 'an', 'ad', 'for', "shoes''", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', '||period||', '||period||', '||period||', '||return||', '||return||', 'tia:', 'is', 'that', 'the', 'new', 'esquire', '||questionmark||', 'turn', 'to', 'page', '146', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', 'coming', 'out', 'of', 'the', 'shower', '||period||', '||period||', '||period||', "it's", 'a', 'good', 'thing', 'they', 'gave', 'you', 'that', 'washcloth', 'to', 'cover', 'yourself', 'up', '||period||', '||period||', '||period||', 'what', 'is', 'this', 'an', 'ad', 'for', '||questionmark||', '||return||', '||return||', 'tia:', 'see', 'those', 'wrinkled', 'jeans', 'slung', 'over', 'the', 'chair', '||questionmark||', 'way', 'in', 'the', 'background', '||comma||', 'out', 'of', 'focus', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'how', 'does', 'it', 'look', 'on', 'your', 'side', '||questionmark||', '[pause', 'while', 'george', 'just', 'stares', 'at', 'him]', "we'll", 'get', 'there', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'look', 'at', 'this', '||period||', '||period||', '||period||', "he's", 'sleeping', 'and', 'i', 'have', 'to', 'go', 'to', 'the', 'bathroom', '||period||', 'maybe', "he'll", 'wake', 'up', 'soon', '||period||', 'what', 'if', 'my', 'kidneys', 'burst', '||questionmark||', 'is', 'it', 'worth', 'it', 'not', 'to', 'wake', 'this', 'man', 'up', 'to', 'damage', 'a', 'major', 'organ', '||questionmark||', 'i', 'hope', 'this', 'disgusting', 'slob', 'appreciates', 'what', "i'm", 'doing', 'for', 'him', '||period||', '||period||', '||period||', '[to', 'passenger', 'on', 'the', 'other', 'side', 'of', 'her', '||comma||', 'but', 'still', 'to', 'herself]', 'yeah', '||comma||', 'make', 'a', 'little', 'more', 'noise', 'with', 'your', 'gum', '||dash||', '||dash||', "that's", 'helpful', '||period||', '||return||', '||return||', '[on', 'the', 'bright', 'side', '||comma||', 'kramer', 'and', 'george', 'arrive', 'at', 'the', 'airport', '||period||', "they're", 'running', 'to', 'the', 'terminal:', 'nan', '||return||', '||return||', 'george:', "they're", 'not', 'here', '||exclammark||', 'you', 'cost', 'me', 'fifty', 'bucks', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', 'at', 'you', '||exclammark||', 'you', 'run', 'like', 'a', 'girl', '||exclammark||', 'run', 'like', 'a', 'man', '||exclammark||', 'lift', 'your', 'knees', '||exclammark||', '||return||', '||return||', 'george:', 'look', '||comma||', "we're", 'wasting', 'our', 'time', 'here', '||exclammark||', "we're", 'a', 'half', '||dash||', 'hour', 'late', '||comma||', "they've", 'probably', 'took', 'it', 'off', 'the', 'board', 'already', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'there', 'it', 'is', '||comma||', 'right', 'there', '||dash||', '||dash||', '133', '||period||', '||period||', '||period||', 'and', "it's", 'canceled', '||period||', '||return||', '||return||', 'george:', 'canceled', '||questionmark||', 'do', 'i', 'still', 'get', 'credit', 'for', 'the', 'pick', 'up', '||questionmark||', 'i', 'was', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', "c'mon", '||period||', '||period||', '||period||', "let's", 'go', 'check', 'over', 'at', 'the', 'ticket', 'counter', '||period||', '||return||', '||return||', 'grossbard:', 'oh', '||comma||', 'there', 'it', 'is', 'honey', '||comma||', 'gate', '18a', '||comma||', '830', '||period||', '||period||', '||period||', '[he', 'leaves]', '||return||', '||return||', 'kramer:', 'did', 'you', 'see', 'that', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', '||period||', 'what', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'guy', '||period||', '||period||', 'he', 'was', 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'you', 'go', 'over', 'to', 'the', 'ticket', 'counter', '||comma||', "i'm", 'going', 'to', 'go', 'stop', 'in', 'the', 'gift', 'shop', 'and', 'pick', 'up', 'a', 'copy', 'of', 'time', 'magazine', '||period||', "there's", 'supposed', 'to', 'ba', 'blurb', 'about', 'jerry', 'in', 'it', 'and', 'i', 'think', 'he', 'mentioned', 'my', 'name', '||exclammark||', '||return||', '||return||', 'kramer:', '[still', 'lost]', 'i', 'know', 'that', 'guy', '||period||', '||period||', '||period||', '||return||', '||return||', 'prisoner:', 'gotta', 'get', 'my', 'time', 'magazine', '||period||', '||period||', '||period||', 'never', 'miss', 'my', 'time', 'magazine', '||period||', '||return||', '||return||', 'guard:', 'yeah', '||comma||', 'get', 'your', 'magazine', 'and', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'prisoner:', 'hey', '||comma||', 'i', 'was', 'gonna', 'take', 'that', '||exclammark||', '||return||', '||return||', 'george:', 'gee', '||comma||', "i'm", 'sorry', '||period||', '||period||', '||period||', 'i', 'got', 'here', 'first', '||period||', '||return||', '||return||', 'prisoner:', 'i', "don't", 'care', 'when', 'you', 'got', 'here', '||comma||', 'i', 'want', 'the', 'magazine', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'understand', '||comma||', "there's", 'a', '*blurb*', 'about', 'me', 'in', 'this', 'magazine', '||exclammark||', '||return||', '||return||', 'prisoner:', 'a', '*blurb*', '||questionmark||', '||exclammark||', '||questionmark||', "*you're*", 'a', 'blurb', '||exclammark||', 'check', 'out', 'the', 'cover', '||comma||', 'idiot', '||exclammark||', '||return||', '||return||', 'guard:', 'all', 'right', '||comma||', "let's", 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'prisoner:', 'i', 'want', 'the', 'magazine', '||exclammark||', '||return||', '||return||', 'george:', 'umm', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'prisoner:', 'you', 'know', 'what', 'i', 'would', 'do', 'to', 'you', '||comma||', 'if', 'i', "wasn't", 'in', 'these', 'shackles', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'but', 'you', 'are', 'blanche', '||period||', '||period||', '||period||', 'you', '*are*', 'in', 'the', 'shackles', '||period||', 'oh', '||comma||', 'i', "can't", 'wait', 'to', 'read', 'my', '*time*', 'magazine', '||exclammark||', 'laaaast', 'copy', '||comma||', 'too', '||period||', 'maybe', "i'll", 'read', 'it', 'tomorrow', '||dash||', '||dash||', 'in', 'the', 'park', '||exclammark||', "it's", 'supposed', 'to', 'be', 'a', 'beeyootiful', 'day', '||exclammark||', 'have', 'a', 'nice', 'life', '||period||', '||period||', '||period||', 'sentence', '||comma||', 'that', 'is', '||exclammark||', '||return||', '||return||', 'kramer:', "they're", 'on', 'a', 'different', 'flight', '||period||', "they're", 'scheduled', 'to', 'land', 'in', 'a', 'half', 'hour', '||comma||', 'only', 'at', 'laguardia', '||period||', '||return||', '||return||', 'george:', 'laguardia', '||questionmark||', 'all', 'right', '||comma||', "let's", 'go', '||period||', "c'mon", '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'where', 'do', 'i', 'know', 'that', 'guy', 'from', '||questionmark||', '||return||', '||return||', 'elaine:', '[to', 'herself', '||comma||', 'loudly]', 'wake', 'up', '||comma||', 'you', 'human', 'slug', '||exclammark||', 'wake', 'up', '||exclammark||', '*wake*', '*up*', '||exclammark||', '||exclammark||', 'i', "can't", 'hold', 'it', 'anymore', '||exclammark||', '[to', 'the', 'slug', 'out', 'loud]', 'excuse', 'me', '||comma||', "i've", 'gotta', 'go', 'to', 'the', 'bathroom', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', '||period||', '||period||', '||period||', 'that', '*is*', 'refreshing', '||period||', '||period||', '||period||', '||return||', '||return||', 'attendant:', 'would', 'you', 'care', 'for', 'some', 'slippers', '||questionmark||', '||return||', '||return||', 'jerry:', 'sounds', 'lovely', '||exclammark||', '[to', 'tia', '||comma||', 'motioning', 'to', 'put', 'them', 'on', 'her]', 'may', 'i', '||questionmark||', '||return||', '||return||', 'tia:', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', '||comma||', "it's", 'a', 'perfect', 'fit', '||period||', 'you', 'must', 'be', 'cinderella', '||period||', '||return||', '||return||', 'george:', 'my', 'name', 'is', 'not', 'mentioned', 'in', 'this', 'blurb', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "it's", 'grossbard', '||exclammark||', '||return||', '||return||', 'george:', "who's", 'grossbard', '||questionmark||', '||return||', '||return||', 'kramer:', 'when', 'i', 'lived', 'on', 'third', 'avenue', 'and', '18th', 'street', '20', 'years', 'ago', '||comma||', 'i', 'had', 'this', 'roommate', 'who', 'was', '*always*', 'behind', 'in', 'his', 'rent', '||period||', 'then', 'one', 'month', '||comma||', 'he', 'asks', 'me', 'to', 'loan', 'him', 'his', 'share', 'of', 'the', 'rent', '||dash||', '||dash||', '240', 'bucks', '||exclammark||', 'he', 'took', 'the', 'cash', 'and', '>pfffft<', 'disappears', '||period||', 'well', '||comma||', 'i', 'try', 'to', 'find', 'him', '||comma||', 'i', 'went', 'to', 'his', "girlfriend's", 'house', '||comma||', 'even', 'his', 'family', '||period||', 'uh', '||dash||', 'uh', '||period||', 'i', 'never', 'got', 'the', 'money', 'back', '||exclammark||', 'he', 'screwed', 'me', '||exclammark||', 'and', "that's", 'the', 'guy', '||dash||', '||dash||', 'john', 'grossbard', '||exclammark||', '||return||', '||return||', 'george:', 'hey', 'kramer', '||comma||', "c'mon", '||dash||', '||dash||', 'it', 'was', '240', 'bucks', 'twenty', 'years', 'ago', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'm", 'gonna', 'turn', 'around', '||period||', '||period||', '||period||', "i'm", 'gonna', 'get', 'that', 'guy', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||dash||', 'no', '||dash||', 'no', '||comma||', 'kramer', '||period||', 'kramer', '||exclammark||', 'kramer', '||exclammark||', 'you', '*cannot*', 'abandon', 'people', 'in', 'the', 'middle', 'of', 'an', 'airport', 'pickup', '||exclammark||', "it's", 'a', 'binding', 'social', 'contract', '||period||', 'we', '||period||', '||period||', '||period||', 'we', 'must', 'go', 'forward', '||period||', '||period||', '||period||', 'not', 'back', '||period||', '||return||', '||return||', '[elaine', 'is', 'still', 'waiting', 'to', 'get', 'into', 'the', 'bathroom', '||dash||', '||dash||', "there's", 'someone', 'in', 'there', '||period||', '*finally*', '||comma||', 'a', 'zz', 'top', 'reject', 'comes', 'out', 'of', 'the', 'bathroom', 'and', '||comma||', 'to', 'paraphrase', 'jerry', 'in', '||quotemark||', 'the', 'smelly', 'car', '||quotemark||', ':', '``i', 'open', 'the', 'door', '||comma||', 'like', 'a', '*punch*', 'in', 'the', '*face*', '||comma||', 'the', 'stench', 'hits', 'me', '||dash||', '||dash||', "''", '||period||', 'elaine', 'takes', 'in', 'a', 'lungful', 'of', 'air', 'and', 'goes', 'in', '||period||', 'brave', 'little', 'soldier', '||period||', ']', '||return||', '||return||', 'jerry:', 'tia', '||comma||', 'did', 'you', 'see', 'all', 'the', 'flowers', 'in', 'that', 'bathroom', '||questionmark||', "it's", 'like', 'an', 'english', 'garden', 'in', 'there', '||period||', '||return||', '||return||', 'attendant:', "they're", 'gardenias', '||comma||', 'mostly', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'i', 'smelled', 'lilac', '||period||', '||return||', '||return||', 'attendant:', 'yes', '||comma||', 'there', 'are', 'a', 'few', 'of', 'those', '||comma||', 'too', '||period||', '||period||', '||period||', '||return||', '||return||', 'tia:', "it's", 'almost', 'overwhelming', '||period||', '||period||', '||period||', '||return||', '||return||', 'captain:', 'ladies', 'and', 'gentlemen', '||comma||', 'this', 'is', 'your', 'captain', 'speaking', '||period||', 'due', 'to', 'equipment', 'problems', 'at', 'the', 'runway', 'at', 'laguardia', '||comma||', "we've", 'been', 'instructed', 'by', 'the', 'tower', 'to', 're', '||dash||', 'route', 'and', 'land', 'at', 'jfk', '||period||', 'we', 'apologize', 'for', 'any', 'inconvenience', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '[to', 'anyone', "who'll", 'listen]', "what'd", 'he', 'say', '||questionmark||', "what'd", 'he', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "you're", 'not', 'gonna', 'believe', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'the', "plane's", 'been', 're', '||dash||', 'routed', '*back*', 'to', 'kennedy', '||period||', "we've", 'got', '45', 'minutes', '||period||', '||return||', '||return||', 'kramer:', "let's", 'go', '||period||', 'listen', 'to', 'the', 'bell', '||comma||', 'grossbard', '||dash||', '||dash||', 'it', 'tolls', 'for', 'thee', '||period||', '||return||', '||return||', 'attendant:', 'we', 'have', 'some', '*delicious*', 'chateau', 'briande', '||comma||', 'my', 'personal', 'favourite', '||period||', 'or', '||comma||', 'if', 'you', 'prefer', 'something', 'lighter', '||comma||', 'a', 'poached', 'dover', 'sole', 'in', 'a', 'delicate', 'white', 'wine', 'sauce', 'with', 'just', 'a', '*hint*', 'of', 'saffron', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'saffron', '||exclammark||', 'that', 'sounds', 'good', '||period||', '||return||', '||return||', 'attendant:', 'and', 'today', "we're", 'featuring', 'wines', 'from', 'the', '*tuscany*', 'region', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', '&', 'tia:', 'tuscany', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'can', 'i', 'get', 'to', 'my', 'seat', '||questionmark||', '||return||', '||return||', 'attendant:', "you're", 'just', 'gonna', 'have', 'to', 'wait', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'but', 'you', 'just', 'passed', 'it', '||period||', "i'm", 'sitting', 'right', 'there', 'next', 'to', 'that', 'guy', '||period||', '||period||', '||period||', '||return||', '||return||', 'attendant:', "you're", 'not', 'supposed', 'to', 'get', 'up', 'during', 'the', 'food', 'service', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'nobody', '*told*', 'me', 'that', '||exclammark||', '||return||', '||return||', 'attendant:', 'look', '||period||', 'this', 'plane', 'is', '*full*', '||period||', 'i', 'got', 'a', 'lot', 'of', 'people', 'to', 'serve', '||period||', 'now', 'please', '||period||', '||period||', '||period||', "you're", 'just', 'gonna', 'have', 'to', 'wait', '||period||', '||return||', '||return||', 'george:', 'there', 'it', 'is', '||period||', 'gate', '46', '||period||', '||period||', '||period||', 'we', 'got', 'plenty', 'of', 'time', '||period||', '||return||', '||return||', 'kramer:', "grossbard's", 'plane', 'leaves', 'in', 'ten', 'minutes', '||period||', 'i', '*still*', 'got', 'time', 'to', 'catch', 'him', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'you', 'gonna', 'catch', 'him', '||questionmark||', "he's", 'probably', 'boarded', 'the', 'plane', 'already', '||period||', '||return||', '||return||', 'kramer:', 'gimme', 'your', 'credit', 'card', '||period||', '||return||', '||return||', 'george:', 'my', 'credit', 'card', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'gimme', 'the', 'card', '||comma||', "don't", 'ask', 'me', 'any', 'questions', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'gonna', 'give', 'you', 'my', 'card', 'unless', 'you', 'tell', 'me', 'what', "it's", 'for', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'gonna', 'buy', 'a', 'ticket', '||dash||', '||dash||', "i'm", 'gonna', 'get', 'on', 'that', 'flight', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'are', 'you', '||comma||', 'nuts', '||questionmark||', "you're", 'gonna', 'spend', 'more', 'on', 'the', 'ticket', 'than', "you're", 'gonna', 'get', 'back', 'from', 'grossbard', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'm", 'not', 'gonna', 'use', 'the', 'ticket', '||exclammark||', "i'm", 'gonna', 'get', 'my', 'money', '||comma||', "i'll", 'get', 'off', 'the', 'plane', 'and', 'turn', 'your', 'ticket', 'in', 'for', 'a', 'refund', '||period||', "it's", 'not', 'gonna', 'cost', 'you', 'a', 'dime', '||exclammark||', 'now', 'gimme', 'the', 'card', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'a', '*great*', 'idea', '||exclammark||', 'here', '||period||', '||period||', '||period||', 'use', 'this', 'one', '||period||', 'i', 'get', 'frequent', 'flyer', 'miles', 'with', 'every', 'purchase', '||period||', '||period||', '||period||', 'wait', '||exclammark||', 'get', 'two', 'tickets', '||period||', 'as', 'long', 'as', 'your', 'turning', 'it', 'in', 'for', 'a', 'refund', "what's", 'the', 'difference', '||questionmark||', "i'll", 'get', '*double*', 'the', 'bonus', 'miles', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', "i'm", 'sorry', 'to', 'make', 'you', 'do', 'this', '||comma||', 'but', 'i', 'got', 'stuck', 'in', 'the', 'aisle', 'and', 'the', 'flight', 'attendant', "wouldn't", 'let', 'me', 'get', 'through', '||period||', "there's", 'no', 'way', 'to', 'get', 'around', 'that', 'cart', '||period||', '||period||', '||period||', '||return||', '||return||', 'passenger', '#1:', "you're", 'not', 'supposed', 'to', 'get', 'up', 'during', 'the', 'food', 'service', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'try', 'and', 'remember', 'that', '||period||', '[pause]', "where's", 'my', 'meal', '||questionmark||', '||return||', '||return||', 'passenger', '#1:', 'he', 'asked', 'me', 'where', 'you', 'were', '||comma||', 'and', 'you', 'were', 'gone', 'so', 'long', 'i', 'thought', 'you', '||comma||', 'uh', '||comma||', 'switched', 'seats', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||questionmark||', 'excuse', 'me', '||comma||', 'but', 'i', "didn't", 'get', 'a', 'meal', '||period||', '||return||', '||return||', 'attendant:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "i'm", 'sure', '||exclammark||', 'i', 'would', 'know', 'if', 'a', 'tray', 'of', 'food', 'had', 'been', 'served', 'to', 'me', '||period||', '||return||', '||return||', 'attendant:', 'would', 'you', '||questionmark||', 'well', '||comma||', 'the', 'only', 'meal', 'left', 'is', 'a', 'kosher', 'meal', '||period||', '||return||', '||return||', 'elaine:', 'kosher', 'meal', '||questionmark||', 'i', "don't", 'want', 'a', 'kosher', 'meal', '||period||', 'i', "don't", 'even', 'know', 'what', 'a', 'kosher', 'meal', 'is', '||period||', '||return||', '||return||', 'passenger', '#1:', 'i', 'think', 'it', 'means', 'when', 'a', 'rabbi', 'has', 'inspected', 'it', '||comma||', 'or', 'something', '||period||', '||return||', '||return||', 'passenger', '#2:', 'no', '||comma||', 'no', '||period||', 'it', 'all', 'has', 'to', 'do', 'with', 'the', 'way', 'they', 'kill', 'the', 'pig', '||period||', '||return||', '||return||', 'passenger', '#1:', 'they', "don't", 'eat', 'pigs', '||exclammark||', '||return||', '||return||', 'passenger', '#2:', 'they', 'do', 'if', "it's", 'killed', 'right', '||dash||', '||dash||', 'under', 'a', "rabbi's", 'supervision', '||period||', '||return||', '||return||', 'passenger', '#3:', 'oh', '||comma||', 'you', 'know', 'what', '||questionmark||', '*i*', 'ordered', 'the', 'kosher', 'meal', '||period||', '||return||', '||return||', 'elaine:', 'then', 'why', "didn't", 'you', 'take', 'it', '||questionmark||', '||return||', '||return||', 'passenger', '#3:', 'i', 'ordered', 'it', 'six', 'weeks', 'ago', '||comma||', 'i', 'forgot', '||period||', '||return||', '||return||', 'elaine:', "you're", 'eating', 'my', 'food', '||exclammark||', '||return||', '||return||', 'attendant:', 'look', '||comma||', 'i', 'got', 'earplugs', 'to', 'collect', '||period||', 'do', 'you', 'want', 'it', '||comma||', 'or', 'not', '||period||', '||return||', '||return||', 'jerry', '&', 'tia:', 'mmmmmmmm', '||exclammark||', '||return||', '||return||', 'tia:', 'this', 'is', 'the', 'best', 'sundae', "i've", 'ever', 'had', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||period||', 'you', 'know', 'what', '||period||', '||period||', '||period||', 'they', 'got', 'the', 'fudge', 'on', 'the', 'bottom', '||dash||', '||dash||', "y'see", '||questionmark||', 'that', 'enables', 'you', 'to', 'control', 'your', 'fudge', 'distribution', 'as', "you're", "eatin'", 'your', 'ice', 'cream', '||period||', '||return||', '||return||', 'tia:', "i've", 'never', 'met', 'a', 'man', 'who', 'knew', 'so', 'much', 'about', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', '&', 'tia:', 'mmmmmm', '||exclammark||', '||return||', '||return||', 'attendant:', 'more', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'more', 'everything', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'i', 'got', 'super', 'savers', '||exclammark||', "c'mon", '||period||', '||return||', '||return||', 'george:', 'super', 'savers', '||questionmark||', 'are', 'they', 'refundable', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'bought', 'non', '||dash||', 'refundable', 'tickets', '||comma||', 'you', 'idiot', '||exclammark||', '||return||', '||return||', 'kramer:', 'she', 'talked', 'me', 'in', 'to', 'it', '||dash||', '||dash||', 'she', 'said', 'it', 'was', 'the', 'best', 'deal', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'know', 'how', 'much', 'this', 'is', 'going', 'to', 'cost', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', "i'll", 'tell', 'you', 'what', '||dash||', '||dash||', "i'll", 'split', 'it', 'with', 'you', '||return||', '||return||', 'george:', 'look', '||comma||', "i'm", 'gonna', 'go', 'to', 'the', 'bathroom', '||period||', '||period||', '||period||', '||return||', '||return||', 'attendant:', 'excuse', 'me', '||period||', '||period||', '||period||', 'excuuuse', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'oh', '||comma||', 'no', '||period||', '||period||', '||period||', 'nothing', 'for', 'me', 'thanks', '||period||', '||return||', '||return||', 'attendant:', 'what', 'is', 'your', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'elaine', 'benes', '||questionmark||', '||return||', '||return||', 'attendant:', '[checks', 'her', 'list]', "you're", 'going', 'to', 'have', 'to', 'go', 'back', 'to', 'coach', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', 'there', 'was', 'nobody', 'sitting', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'attendant:', 'yes', '||comma||', 'but', "you're", 'still', 'not', 'allowed', '||period||', 'these', 'seats', 'are', 'very', 'expensive', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', 'please', '||comma||', "don't", 'send', 'me', 'back', 'there', '||period||', 'please', '||comma||', "i'll", 'do', 'anything', '||period||', "it's", 'so', 'nice', 'up', 'here', '||period||', "it's", 'so', 'comfortable', 'up', 'here', '||period||', 'i', "don't", 'want', 'to', 'go', 'back', 'there', '||period||', 'please', "don't", 'send', 'me', 'back', 'there', '||period||', '||period||', '||period||', '[she', 'notices', 'another', 'attendant', 'offering', 'goods]', 'oh', '||comma||', 'you', 'got', '*cookies*', '||exclammark||', '||return||', '||return||', 'attendant:', "you're", 'going', 'to', 'have', 'to', 'go', 'back', 'to', 'your', 'seat', '||exclammark||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'fine', '||period||', "i'll", 'go', 'back', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'our', 'goal', 'should', 'be', 'a', 'society', '*without*', '*classes*', '||exclammark||', '[she', 'goes', 'through', 'the', 'curtain', 'to', '||comma||', 'ick', '||comma||', '*coach*]', 'do', 'you', 'realise', 'that', 'the', 'people', 'up', 'here', 'are', 'getting', '*cookies*', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'all', 'the', 'racket', 'back', 'there', '||questionmark||', 'you', 'know', '||comma||', "you're", 'trying', 'to', 'relax', 'on', 'the', 'plane', 'and', 'this', 'is', 'what', 'you', 'have', 'to', 'put', 'up', 'with', '||period||', '[to', 'attendant]', 'what', 'is', 'going', 'on', '||questionmark||', '||return||', '||return||', 'attendant:', 'sir', '||comma||', 'this', 'woman', 'tried', 'to', '*sneak*', 'into', 'first', 'class', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'see', '||comma||', "that's", 'terrible', '||period||', 'the', 'problem', 'is', '||comma||', 'that', 'curtain', 'is', 'no', 'security', '||dash||', '||dash||', 'there', 'really', 'should', 'be', 'a', 'locking', 'door', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'that', 'guy', 'owes', 'me', '240', 'bucks', '||exclammark||', '||return||', '||return||', 'jerry:', "couldn't", 'be', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'they', 'already', '||questionmark||', 'i', "don't", 'see', 'them', 'anywhere', '||period||', '||period||', '||period||', 'i', 'got', 'my', 'bags', '||comma||', "i'm", 'ready', 'to', 'go', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', '*you*', 'got', '*your*', 'bags', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'the', 'worst', 'flight', 'i', 'have', 'been', 'on', 'in', 'my', 'entire', 'life', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'me', 'too', '||period||', '||period||', '||period||', '||return||', '||return||', 'tia:', "i'll", 'call', 'you', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||period||', '[to', 'a', 'bamboozled', 'elaine]', "it's", 'a', 'business', 'thing', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'guys', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "where's", 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', "can't", 'be', 'heard', 'but', 'looks', 'like', '||rightparen||', 'kramer', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'loved', 'her', 'jerry', '||comma||', 'i', 'loved', 'her', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', "didn't", '||period||', '||return||', '||return||', 'george:', 'and', 'she', 'loved', 'me', '||period||', 'hoo', '||comma||', 'ho', '||comma||', 'she', 'really', 'did', '||period||', '||return||', '||return||', 'jerry:', 'no', 'she', "didn't", '||period||', '||return||', '||return||', 'george:', 'what', 'am', 'i', 'going', 'to', 'do', 'now', '||questionmark||', 'i', "can't", 'live', 'without', 'susan', '||period||', 'i', 'gotta', 'get', 'her', 'back', '||period||', 'how', '||questionmark||', 'how', '||comma||', 'am', 'i', 'gonna', 'get', 'her', 'back', '||questionmark||', '||return||', '||return||', 'elaine:', '[oc]', 'not', 'only', "didn't", 'you', 'love', 'her', '||comma||', 'you', "didn't", 'even', 'like', 'her', '||period||', '||return||', '||return||', 'george:', 'who', 'says', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'did', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', '||period||', '||period||', '||period||', 'a', 'beautiful', 'successful', 'intelligent', "woman's", 'in', 'love', 'with', 'me', 'and', 'i', 'throw', 'it', 'all', 'away', '||period||', 'uh', 'oh', 'boy', '||period||', 'now', "i'll", 'spend', 'the', 'rest', 'of', 'my', 'life', 'living', 'alone', '||period||', "i'll", 'sit', 'in', 'my', 'disgusting', 'little', 'apartment', 'watching', 'basketball', 'games', '||comma||', 'eating', 'chinese', 'take', 'out', '||period||', 'walking', 'around', 'with', 'no', 'underwear', '||period||', 'because', "i'm", 'too', 'lazy', 'to', 'do', 'a', 'laundry', '||period||', '||return||', '||return||', 'jerry:', 'you', 'walk', 'around', 'with', 'no', 'underwear', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'what', 'do', 'you', 'do', 'when', 'you', 'run', 'out', 'of', 'laundry', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'do', 'a', 'wash', '||period||', '||return||', '||return||', 'george:', 'who', 'am', 'i', 'going', 'to', 'meet', 'who', 'is', 'better', 'than', 'her', '||questionmark||', 'no', 'one', '||comma||', 'jerry', '||period||', 'no', "one's", 'better', 'than', 'her', '||period||', '||return||', '||return||', 'jerry:', 'when', 'you', 'were', 'with', 'her', 'you', 'said', 'you', "couldn't", 'stand', 'her', '||period||', '||return||', '||return||', 'george:', 'i', 'loved', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'said', 'goin', 'up', 'the', 'steps', 'of', 'her', 'apartment', 'was', 'like', 'being', 'taken', 'to', 'a', 'cell', '||period||', '||return||', '||return||', 'george:', 'i', 'would', 'give', 'anything', 'to', 'be', 'going', 'up', 'those', 'stairs', 'again', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'call', 'her', '||period||', 'should', 'i', 'call', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'i', "don't", 'know', 'if', 'that', 'is', 'such', 'a', 'good', 'idea', '||questionmark||', '||return||', '||return||', 'george:', 'whyie', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'need', 'some', 'professional', 'advice', '||period||', 'why', "don't", 'you', 'go', 'see', "elaine's", 'friend', '||questionmark||', "she's", 'a', 'therapist', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'going', 'to', 'see', 'that', 'nut', 'doctor', 'she', 'went', 'to', 'europe', 'with', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'no', '[elaine', 'enters', '||comma||', 'flossing', 'teeth]', 'elaine', "what's", 'the', 'name', 'of', 'that', 'friend', 'of', 'yours', '||period||', '||period||', '||period||', "that's", 'a', 'therapist', '||period||', '||period||', '||period||', 'the', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'dana', 'folley', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'dana', 'folley', '||period||', '||return||', '||return||', 'george:', 'she', 'any', 'good', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "she's", 'terrific', '||period||', 'why', '||questionmark||', 'you', 'thinking', 'of', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'wa', '||comma||', 'uh', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'tia', '||questionmark||', "who's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'the', 'model', 'i', 'met', 'on', 'the', 'plane', '||period||', '||return||', '||return||', 'elaine:', 'she', 'sent', 'you', 'a', 'christmas', 'card', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', 'uh', '||period||', 'and', "we're", 'going', 'out', 'saturday', 'night', '||period||', '||return||', '||return||', 'george:', 'my', 'darling', 'susan', '||exclammark||', 'my', 'darling', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'date', 'with', 'fred', '||period||', '||return||', '||return||', 'jerry:', 'the', 'religious', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'not', 'that', 'religious', '||period||', '||return||', '||return||', 'jerry:', 'let', 'us', 'pray', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'got', 'any', 'double', 'crunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'should', 'i', 'call', 'susan', '||questionmark||', '||return||', '||return||', 'kramer:', 'now', 'what', 'does', 'the', 'little', 'man', 'inside', 'you', 'say', '||questionmark||', 'see', 'you', 'gotta', 'listen', 'to', 'the', 'little', 'man', '||period||', '||return||', '||return||', 'george:', 'my', 'little', 'man', "doesn't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'the', 'little', 'man', 'knows', 'all', '||period||', '||return||', '||return||', 'george:', 'my', 'little', "man's", 'an', 'idiot', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'she', 'was', 'clever', '||period||', 'you', 'know', 'she', 'put', 'her', 'picture', 'on', 'a', 'card', '||period||', 'i', 'should', 'do', 'that', '||period||', 'i', 'never', 'do', 'anything', 'like', 'that', '||period||', '||return||', '||return||', 'kramer:', 'you', 'want', 'a', 'picture', 'like', 'that', 'on', 'a', 'christmas', 'card', '||questionmark||', 'i', 'can', 'do', 'that', 'for', 'you', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'she', 'kept', 'such', 'a', 'nice', 'clean', 'apartment', '||period||', 'she', 'was', 'so', 'sanitary', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'i', 'was', 'just', 'thinking', 'out', 'loud', 'i', "don't", 'want', 'my', 'picture', 'on', 'a', 'card', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', "i'll", 'take', 'your', 'picture', '||period||', "i'll", 'take', 'care', 'of', 'everything', '||period||', '||return||', '||return||', 'george:', 'she', 'made', 'a', 'big', 'breakfast', 'every', 'sunday', '||period||', 'i', "don't", 'know', 'what', 'she', 'put', 'in', 'those', 'eggs', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', '||period||', '||period||', '||period||', 'now', '||comma||', 'you', 'come', 'on', 'over', '||period||', "i'll", 'have', 'my', 'cereal', 'and', "i'll", 'take', 'your', 'picture', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'can', 'you', 'really', 'take', 'a', 'picture', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'good', '||period||', 'he', 'takes', 'good', 'pictures', '||period||', "he's", 'got', 'equipment', 'over', 'there', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'ha', 'ha', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', 'about', 'that', 'outfit', 'though', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', "what's", 'wrong', 'with', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "we'll", 'have', 'to', 'improvise', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', '||rightparen||', 'oh', 'hey', '||comma||', 'if', 'you', 'happen', 'to', 'see', 'the', 'most', 'beautiful', 'girl', 'who', 'walked', 'out', 'on', 'me', '||period||', 'tell', 'her', "i'm", 'sorry', '||period||', 'tell', 'her', 'i', 'need', 'my', 'baby', '||period||', '||period||', '||period||', 'oh', "won't", 'you', 'tell', 'her', '||period||', '||period||', '||period||', 'i', 'love', 'her', '||period||', 'oh', 'hey', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', "i'm", 'afraid', "i'm", 'going', 'to', 'have', 'to', 'ask', 'you', 'to', 'leave', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "i'm", 'thinking', 'of', 'putting', 'in', 'na', 'tropical', 'fish', 'tank', 'right', 'here', '||period||', '||return||', '||return||', 'tia:', 'are', 'you', 'sure', "you're", 'ready', 'for', 'that', 'kind', 'of', 'comitment', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'figure', 'if', 'it', "doesn't", 'work', 'out', 'i', 'can', 'always', 'flush', 'them', 'down', 'the', 'toilet', '||period||', '||return||', '||return||', 'tia:', "that's", 'horrible', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'that', 'perfume', "you're", 'wearing', '||questionmark||', '||return||', '||return||', 'tia:', 'oh', 'i', 'completely', 'forgot', 'i', 'want', 'you', 'to', 'see', 'this', '||period||', 'the', 'calvin', 'klein', 'ad', 'i', 'was', 'telling', 'you', 'about', 'came', 'out', 'today', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'smell', '||questionmark||', '||return||', '||return||', 'tia:', "it's", 'here', 'somewhere', '||period||', '||return||', '||return||', 'jerry:', 'it', 'smells', 'like', 'the', 'beach', '||period||', '||return||', '||return||', 'tia:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', 'is', 'that', 'the', 'new', 'perfume', '||questionmark||', '||return||', '||return||', 'tia:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'this', '||period||', 'my', 'next', 'door', 'neighbour', 'had', 'the', 'idea', 'for', 'this', 'exact', 'perfume', 'last', 'year', '||period||', 'he', 'even', 'met', 'with', 'an', 'executive', 'at', 'calvin', 'klein', '||period||', 'i', "can't", 'believe', 'they', 'stole', 'his', 'idea', '||period||', '||return||', '||return||', 'tia:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', "you're", 'the', 'model', 'for', 'this', 'perfume', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', "that's", 'him', '||period||', 'he', 'just', 'came', 'home', '||period||', '||period||', '||period||', '||period||', 'uh', '||comma||', 'the', 'door', '[jerry', 'pushes', 'his', 'door', 'against', "kramer's", 'entrance]', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', "ya'", 'doing', '||questionmark||', '[trying', 'to', 'enter]', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'uh', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', 'i', 'just', 'wanted', 'to', 'borrow', 'your', 'dust', 'buster', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'come', 'on', 'in', '||period||', '||period||', '||period||', '||period||', 'just', 'wait', 'over', 'here', '||exclammark||', 'just', 'wait', 'here', 'and', "i'll", 'get', 'it', 'for', 'you', '||period||', '||period||', '||period||', '||period||', 'kramer', 'this', 'is', 'tia', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'how', 'tall', 'are', 'you', '||questionmark||', '||return||', '||return||', 'tia:', 'five', 'ten', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'lets', 'see', '||dash||', 'back', 'to', 'back', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'i', 'just', 'wanted', 'to', 'see', 'how', 'tall', 'she', 'was', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you're", 'tall', '||dash||', "she's", 'tall', "i'm", 'tall', '||period||', "what's", 'the', 'difference', "who's", 'tall', '||period||', "we're", 'all', 'tall', '||period||', '||return||', '||return||', 'kramer:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'smell', '||period||', "what's", 'that', 'smell', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'starting', 'the', 'dust', 'buster', '||rightparen||', 'what', 'smell', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'very', 'familiar', '||period||', 'i', "can't", 'put', 'my', 'finger', 'on', 'it', '||period||', "it's", 'very', 'familiar', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "they're", 'all', 'the', 'same', '||period||', 'here', '||period||', '[gives', 'him', 'dust', 'buster]', 'now', 'if', "you'll", 'excuse', 'us', '||comma||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'okay', '||comma||', 'so', "i'll", 'see', 'you', 'tomorrow', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'tia:', 'nice', 'meeting', 'you', 'too', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'ooow', '||comma||', 'that', 'was', 'close', '||period||', '||return||', '||return||', 'kramer:', '[oc]', 'the', 'beach', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'smell', 'like', 'the', 'beach', '||period||', "what's", 'the', 'name', 'of', 'that', 'perfume', '||questionmark||', "you're", 'wearing', '||period||', '||return||', '||return||', 'tia:', "it's", 'ocean', 'by', 'calvin', 'klein', '||period||', '||return||', '||return||', 'kramer:', 'calvin', 'klein', '||questionmark||', 'no', '||comma||', 'no', '||period||', "that's", 'my', 'idea', '||period||', 'they', '||comma||', 'they', 'stole', 'my', 'idea', '||period||', "y'", 'see', 'i', 'had', 'the', 'idea', 'of', 'a', 'cologne', 'that', 'makes', 'you', 'smell', 'like', 'you', 'just', 'came', 'from', 'the', 'beach', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'look', 'at', 'this', '[shows', 'ad]', '||return||', '||return||', 'kramer:', 'whooo', '||comma||', '||period||', '||period||', '||period||', "that's", 'you', '||exclammark||', 'what', 'is', 'going', 'on', 'here', '||questionmark||', 'the', 'gyp', '||leftparen||', '||questionmark||', '||rightparen||', 'he', 'laughs', 'at', 'me', 'then', 'he', 'steals', 'my', 'idea', '||period||', 'i', 'could', 'have', 'been', 'a', 'millionaire', '||period||', 'i', 'could', 'have', 'been', 'a', 'fragrance', 'millionaire', '||comma||', 'jerry', '||period||', '||period||', '||period||', '||period||', "they're", 'not', 'going', 'to', 'get', 'away', 'with', 'this', '||period||', '||return||', '||return||', 'dana:', 'hello', '||period||', 'george', '||comma||', 'come', 'in', '||period||', 'come', 'in', "i've", 'heard', 'an', 'awful', 'lot', 'about', 'you', '||period||', 'please', 'sit', 'down', '||period||', '||return||', '||return||', 'george:', 'well', 'hello', '||period||', 'um', '||comma||', 'ah', '||comma||', 'specifically', 'the', 'reason', 'that', "i'm", 'here', '||comma||', 'uh', '||comma||', 'i', "don't", 'know', 'uh', 'what', 'elaine', 'told', 'you', 'but', 'uh', 'i', 'broke', 'up', 'with', 'my', 'girlfriend', 'a', 'couple', 'of', 'weeks', 'ago', '||period||', 'actually', 'she', 'broke', 'up', 'with', 'me', '[struggling', 'with', 'his', 'coat', 'zipper]', 'and', 'uh', '||comma||', 'well', '||comma||', 'i', 'was', 'the', 'cause', 'of', 'it', 'and', 'uh', '||comma||', 'i', 'just', 'wanted', 'to', 'find', 'out', 'from', 'you', '||period||', '||period||', '||period||', "what's", 'with', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'dana:', 'so', 'uh', '||comma||', 'she', 'broke', 'up', 'with', 'you', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'and', '||comma||', '||period||', '||period||', '||period||', 'why', "won't", 'this', 'go', 'down', '||questionmark||', '||return||', '||return||', 'dana:', "it's", 'all', 'right', "don't", 'worry', 'about', 'it', '||period||', 'so', '||comma||', 'why', 'did', 'she', 'break', 'up', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'is', 'with', 'this', 'damn', 'zipper', '||questionmark||', '||return||', '||return||', 'dana:', 'it', "doesn't", 'matter', '||period||', "you'll", 'fix', 'it', 'later', '||period||', 'tell', 'me', 'about', 'your', 'girlfriend', '||period||', '||return||', '||return||', 'george:', "it's", 'stuck', 'on', 'a', 'piece', 'of', 'cloth', 'here', '||period||', 'i', "can't", 'get', 'the', 'cloth', 'out', '||period||', '||return||', '||return||', 'dana:', 'it', "doesn't", 'matter', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'brand', 'new', 'jacket', '||period||', 'boy', 'this', 'really', 'burns', 'me', 'up', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'dana:', 'george', '||comma||', 'george', '||comma||', 'look', 'at', 'me', '||period||', 'okay', '||comma||', 'forget', 'about', 'the', 'zipper', '||period||', '||period||', '||period||', '||period||', "what's", 'your', "girlfriend's", 'name', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'susan', '||period||', '||return||', '||return||', 'dana:', 'okay', '||comma||', "we're", 'getting', 'somewhere', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'ha', 'ha', '||comma||', '||period||', '||period||', '||period||', "it's", 'just', 'so', 'frustrating', '||period||', "it's", 'a', 'brand', 'new', 'jacket', '||period||', '||return||', '||return||', 'elaine:', 'anyway', 'so', 'fred', 'and', 'i', 'are', 'going', 'to', 'do', 'some', 'volunteer', 'work', 'for', 'that', 'church', 'on', 'amsterdam', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'volunteer', 'work', '||exclammark||', '||period||', 'see', "that's", 'what', 'i', 'like', 'about', 'the', 'holiday', 'season', '||period||', "that's", 'the', 'true', 'spirit', 'of', 'christmas', '||period||', 'people', 'being', 'helped', 'by', 'people', 'other', 'than', 'me', '||period||', 'that', 'makes', 'me', 'feel', 'good', 'inside', '||period||', 'look', 'at', 'what', 'we', 'have', 'here', '||period||', '||leftparen||', 'mail', '||rightparen||', '||period||', 'a', 'christmas', 'card', 'from', 'laine', '||period||', 'you', "didn't", 'have', 'to', 'go', 'to', 'all', 'that', 'trouble', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'no', 'trouble', '||period||', 'my', 'assistant', 'did', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'even', 'see', 'the', 'picture', '||period||', 'how', 'did', 'it', 'come', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||period||', "it's", 'a', 'picture', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', 'look', 'at', 'that', '||period||', 'looks', 'good', '||period||', 'kramer', 'did', 'a', 'good', 'job', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', '||period||', 'how', 'hard', 'is', 'it', 'to', 'take', 'a', 'picture', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'look', 'at', 'look', 'at', 'this', 'picture', 'carefully', '||questionmark||', '||return||', '||return||', 'elaine:', 'carefully', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "i'm", 'not', 'sure', 'and', 'and', 'and', 'correct', 'me', 'if', "i'm", 'wrong', 'but', 'i', 'think', 'i', 'see', '||period||', '||period||', '||period||', 'a', 'nipple', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'here', '||period||', 'take', 'a', 'look', '||period||', 'what', '||comma||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasps', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', "that's", 'my', 'nipple', '||period||', '||return||', '||return||', 'jerry:', "that's", 'what', 'i', 'thought', '||period||', '||return||', '||return||', 'elaine:', "that's", 'my', 'nipple', '||period||', 'my', "nipple's", 'exposed', '||period||', 'i', 'sent', 'this', 'card', 'to', 'hundreds', 'of', 'people', '||exclammark||', 'my', 'parents', '||period||', 'my', 'boss', '||period||', 'uh', '||comma||', 'nana', 'and', 'papa', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'you', 'look', 'at', 'the', 'picture', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'god', 'i', "didn't", 'notice', '||period||', 'oh', '||comma||', 'what', 'am', 'i', 'going', 'to', 'do', '||questionmark||', 'you', 'know', 'your', 'whole', 'life', 'you', 'go', 'through', 'painstaking', 'efforts', 'to', 'hide', 'your', 'nipple', 'and', 'then', 'boom', '||comma||', 'suddenly', 'hundreds', 'of', 'people', 'get', 'their', 'own', 'personal', 'shot', 'of', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', 'have', 'you', 'seen', 'the', 'card', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'card', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'car', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'of', 'course', '||period||', 'i', 'took', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', 'did', 'you', 'notice', 'anything', 'unusual', 'about', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'well', 'come', 'here', 'and', 'take', 'a', 'look', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'a', 'nipple', '||period||', '||return||', '||return||', 'elaine:', 'right', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'ooo', '||exclammark||', '||return||', '||return||', 'elaine:', 'aw', '||comma||', 'great', '||exclammark||', '||questionmark||', "didn't", 'you', 'see', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', 'no', '||comma||', 'no', 'i', "didn't", 'notice', 'it', '||period||', 'no', '||comma||', 'uh', '||comma||', '||return||', '||return||', 'elaine:', "it's", 'because', 'you', 'made', 'me', 'wear', 'that', 'stupid', 'shirt', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'no', 'one', 'noticed', 'it', '||period||', 'you', "didn't", 'notice', 'it', '||period||', 'let', 'me', 'go', 'get', 'newman', '||period||', "we'll", 'see', 'if', 'he', 'sees', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'i', "don't", 'want', 'him', 'looking', '||period||', '||return||', '||return||', 'jerry:', 'oh', "what's", 'the', 'difference', '||period||', 'everybody', 'else', 'you', 'know', 'has', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', 'i', 'sent', 'one', 'to', 'the', 'super', 'in', 'my', 'building', '||period||', 'my', 'mailman', '||period||', 'my', 'ten', 'year', 'old', 'little', 'nephew', '||period||', 'sister', 'mary', 'catherine', '||period||', 'father', 'chelios', '||period||', 'oh', 'my', 'god', 'fred', '||exclammark||', 'i', 'sent', 'one', 'to', 'fred', '||period||', '||return||', '||return||', 'newman:', 'okay', '||period||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'take', 'a', 'look', 'at', 'this', 'card', '||period||', 'tell', 'me', 'if', 'you', 'notice', 'anything', 'unusual', 'about', 'it', '||period||', '||return||', '||return||', 'newman:', 'your', "nipple's", 'showing', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'thanks', '||period||', '||return||', '||return||', 'newman:', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||period||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'so', 'what', '||questionmark||', "it's", 'a', 'nipple', '||period||', 'a', 'little', 'round', 'circular', 'protuberance', '||period||', "what's", 'the', 'big', 'deal', '||questionmark||', 'see', "everybody's", 'got', 'them', '||period||', 'see', 'i', 'got', 'them', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'them', 'too', '||period||', '||return||', '||return||', 'jerry:', "everybody's", 'got', 'them', '||period||', '||return||', '||return||', 'dana:', 'you', 'see', "it's", 'kind', 'of', 'got', 'a', 'little', 'piece', 'of', 'cloth', "that's", 'slipped', 'underneath', 'and', "it's", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'pull', 'it', 'up', 'a', 'little', 'bit', '||period||', '||return||', '||return||', 'dana:', 'uhg', '||period||', 'well', 'you', 'hold', 'it', '||period||', 'wait', '||comma||', 'uh', '||comma||', 'damn', 'it', '||exclammark||', 'i', "can't", 'move', 'it', '||period||', 'god', '||comma||', "i've", 'never', 'seen', 'a', 'zipper', 'so', 'stubborn', '||period||', 'damn', 'it', '||exclammark||', 'i', 'almost', 'had', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'okey', '||comma||', 'wait', 'wait', '||period||', 'that', 'will', 'separate', '||period||', '||return||', '||return||', 'dana:', 'no', '||period||', 'let', 'me', 'try', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'take', 'it', 'right', 'off', 'the', 'chest', '||period||', '||period||', '||period||', '||return||', '||return||', 'dana:', 'ugh', '||comma||', '||period||', '||period||', '||return||', '||return||', 'george:', "you're", 'gonna', 'rip', 'it', '||period||', "you're", 'gonna', 'rip', 'it', '||period||', '||return||', '||return||', 'dana:', 'yeah', '||exclammark||', '||exclammark||', 'ugh', '||exclammark||', '||exclammark||', '||exclammark||', 'arg', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', 'i', 'am', 'afraid', "we're", 'going', 'to', 'have', 'to', 'stop', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', 'uh', '||comma||', 'my', 'mother', 'is', 'is', 'going', 'to', 'pay', 'for', 'the', 'sessions', '||period||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'dana:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'stares', 'at', 'card', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'well', 'every', 'day', 'for', 'the', 'past', 'four', 'days', 'she', "hasn't", 'returned', 'one', 'call', '||period||', '||return||', '||return||', 'george:', 'was', 'it', 'a', 'scratch', 'or', 'a', 'pick', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'scratch', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'think', 'i', 'know', 'the', 'difference', 'between', 'a', 'pick', 'and', 'a', 'scratch', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'oc', '||rightparen||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'george:', 'was', 'there', 'any', 'nostril', 'penetration', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'may', 'have', 'been', 'some', 'incidental', 'penetration', '||period||', 'but', 'from', 'her', 'angle', 'she', 'was', 'in', 'no', 'position', 'to', 'make', 'the', 'call', '||period||', '||return||', '||return||', 'george:', 'so', "let's", 'say', 'in', 'her', 'mind', 'she', 'witnessed', 'a', 'pick', '||period||', 'okay', '||comma||', 'so', 'then', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'so', 'unforgivable', '||questionmark||', 'is', 'that', 'like', 'breaking', 'a', 'commandment', '||questionmark||', 'did', 'god', 'say', 'to', 'moses', 'thou', 'shalt', 'not', 'pick', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'guarantee', 'you', 'that', 'moses', 'was', 'a', 'picker', '||period||', 'you', 'wander', 'throughh', 'the', 'desert', 'for', 'forty', 'years', 'with', 'that', 'dry', 'air', '||period||', '||period||', '||period||', '||period||', 'you', 'telling', 'me', "you're", 'not', 'going', 'to', 'have', 'occasion', 'to', 'clean', 'house', 'a', 'little', 'bit', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'ask', 'you', 'something', '||period||', 'if', 'you', 'were', 'going', 'out', 'with', 'somebody', 'and', 'if', 'she', 'did', 'that', 'what', 'would', '||comma||', 'would', 'you', 'do', '||questionmark||', 'would', 'you', 'continue', 'going', 'out', 'with', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', "that's", 'disgusting', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'cannot', 'believe', 'what', "i'm", 'going', 'through', '||period||', 'that', 'card', 'is', 'plastered', 'all', 'over', 'the', 'office', '||period||', 'everybody', 'is', 'calling', 'me', '||comma||', 'nip', '||exclammark||', '||period||', '||period||', '||period||', 'yeah', '||period||', "that's", 'my', 'new', 'nickname', 'at', 'the', 'office', '||period||', 'nip', '||exclammark||', 'these', 'guys', 'keep', 'asking', 'me', 'out', 'for', 'drinks', '||period||', 'not', 'only', 'that', '||comma||', 'fred', '||comma||', 'you', 'know', 'the', 'guy', 'i', 'told', 'you', 'about', '||questionmark||', 'he', "hasn't", 'called', 'me', 'in', 'three', 'days', '||period||', '||period||', '||period||', '||period||', '[sees', 'card]', 'oh', 'please', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', 'how', 'come', 'i', "didn't", 'get', 'a', 'christmas', 'card', '||questionmark||', 'everybody', 'else', 'got', 'one', '||period||', 'jerry', 'got', 'one', '||comma||', 'kramer', 'got', 'one', '||period||', 'i', 'thought', 'we', 'were', 'good', 'friends', '||period||', 'i', "don't", 'get', 'a', 'christmas', 'card', '||period||', 'i', "don't", 'get', 'it', '||period||', '||return||', '||return||', 'elaine:', 'you', 'want', 'a', 'christmas', 'card', '||questionmark||', 'you', 'want', 'a', 'christmas', 'card', '||questionmark||', 'all', 'right', 'here', '||period||', '[rubs', "george's", 'head', 'on', 'her', 'breasts]', "here's", 'your', 'christmas', 'card', '||period||', '||return||', '||return||', 'kramer:', 'got', 'any', 'double', 'crunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'think', 'i', 'do', '||period||', '||return||', '||return||', 'kramer:', "what's", 'that', 'perfume', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'ocean', '||period||', '||return||', '||return||', 'kramer:', "that's", 'mine', '||period||', "that's", 'my', 'smell', '||period||', 'jerry', "you've", 'got', 'to', 'get', 'that', 'model', 'to', 'get', 'me', 'an', 'appointment', 'with', 'calvin', 'klein', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'she', "won't", 'return', 'my', 'calls', 'because', 'she', 'caught', 'me', 'in', 'a', 'pick', 'at', 'a', 'light', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'you', 'said', 'it', 'was', 'a', 'scratch', '||period||', '||return||', '||return||', 'jerry:', 'but', "that's", 'not', 'what', 'she', 'thinks', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'call', 'her', 'agency', '||period||', 'maybe', "she's", 'been', 'out', 'of', 'town', 'and', 'she', "didn't", 'get', 'the', 'calls', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "i'll", 'call', 'the', 'agency', '||period||', '[elaine', 'grabs', 'card', 'from', 'george]', 'hello', '||period||', 'yes', '||comma||', "i'm", 'trying', 'to', 'get', 'in', 'touch', 'with', 'tia', 'van', 'camp', '||period||', 'do', 'you', 'know', 'if', "she's", 'been', 'in', 'town', '||questionmark||', "she's", 'been', 'in', 'town', '||period||', 'oh', 'really', '||period||', 'well', 'thank', 'you', 'very', 'much', '||period||', '[hangs', 'up]', 'she', 'has', 'been', 'in', 'town', '||period||', "she's", 'at', 'calvin', "klein's", 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', "let's", 'go', '||period||', '||return||', '||return||', 'george:', "it'll", 'be', 'different', 'this', 'time', '||period||', '||return||', '||return||', 'susan:', 'i', 'need', 'someone', 'a', 'little', 'more', 'stable', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'stable', '||questionmark||', "i'm", 'like', 'a', 'rock', '||period||', 'i', 'take', 'these', 'glasses', 'off', '||comma||', 'you', "can't", 'tell', 'the', 'difference', 'between', 'me', 'and', 'a', 'rock', '||period||', 'i', 'put', 'these', 'glasses', 'on', 'a', 'rock', '||period||', 'you', 'know', 'what', 'jumps', 'into', 'most', "people's", 'minds', '||questionmark||', 'costanza', '||exclammark||', '||return||', '||return||', 'susan:', 'people', "don't", 'change', '||period||', '||return||', '||return||', 'george:', 'i', 'change', 'i', 'change', '||period||', 'two', 'weeks', 'ago', 'i', 'tried', 'a', 'soft', 'boiled', 'egg', '||period||', 'never', 'liked', 'it', 'before', '||period||', 'now', "i'm", 'dunkin', 'a', 'piece', 'of', 'toast', 'in', 'there', 'and', "i'm", 'loving', 'it', '||period||', '||return||', '||return||', 'susan:', "i'm", 'not', 'a', 'soft', 'boiled', 'egg', '||period||', '||return||', '||return||', 'george:', 'and', 'i', 'am', 'not', 'a', 'piece', 'of', 'toast', '||period||', '||return||', '||return||', 'susan:', 'i', 'just', "don't", 'think', 'we', 'have', 'anything', 'in', 'common', '||period||', '||return||', '||return||', 'george:', "that's", 'okay', '||period||', "that's", 'good', '||period||', 'you', 'think', 'louie', 'pasteur', 'and', 'his', 'wife', 'had', 'anything', 'in', 'common', '||questionmark||', 'he', 'was', 'in', 'the', 'fields', 'all', 'day', 'with', 'the', 'cows', '||comma||', 'you', 'know', 'with', 'the', 'milk', '||comma||', 'examining', 'the', 'milk', '||comma||', 'delving', 'into', 'milk', '||comma||', 'consummed', 'with', 'milk', '||period||', 'pasteurization', '||comma||', 'homogenization', '||comma||', 'she', 'was', 'in', 'the', 'kitchen', 'killing', 'cockroaches', 'with', 'a', 'boot', 'on', 'each', 'hand', '||period||', '||return||', '||return||', 'susan:', 'why', 'were', 'there', 'so', 'many', 'cockroaches', '||questionmark||', '||return||', '||return||', 'george:', 'because', '||period||', 'there', 'was', 'a', 'lot', 'of', 'cake', 'lying', 'around', 'the', 'house', '||period||', 'just', 'sitting', 'there', 'going', 'with', 'all', 'the', 'excess', 'milk', 'from', 'all', 'the', 'experiments', '[grins]', '||return||', '||return||', 'susan:', 'and', 'they', 'got', 'along', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'yes', '||period||', 'you', 'know', '||period||', 'she', "didn't", 'know', 'about', 'pasteurization', '||period||', 'he', "didn't", 'know', 'anout', 'fumigation', '||period||', 'but', 'they', 'made', 'it', 'work', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'want', 'to', 'talk', 'to', 'calvin', '||period||', '||return||', '||return||', 'secretary:', 'you', "can't", 'go', 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'talk', 'to', 'calvin', '||period||', '||return||', '||return||', 'tia:', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'uh', '||period||', '||return||', '||return||', 'calvin', 'klein:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'here', 'to', 'talk', 'about', 'the', 'ocean', '||period||', '||return||', '||return||', 'calvin', 'klein:', 'oh', '||comma||', 'yes', 'kramer', '||period||', 'i', 'uh', '||comma||', 'think', 'i', 'know', 'something', 'about', 'this', '||period||', 'will', 'you', 'excuse', 'us', 'tia', '||questionmark||', '[tia', 'leaves]', '||return||', '||return||', 'kramer:', 'now', 'i', "don't", 'want', 'any', 'trouble', 'calvin', '||period||', '||return||', '||return||', 'calvin', 'klein:', 'neither', 'do', 'i', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'there', 'you', 'are', '||period||', '||return||', '||return||', 'tia:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'had', 'to', 'talk', 'to', 'you', '||dash||', 'i', 'noticed', 'you', "haven't", 'been', 'returning', 'my', 'calls', '||period||', '||return||', '||return||', 'tia:', 'well', '||comma||', "i've", 'been', 'busy', '||period||', '||return||', '||return||', 'jerry:', 'because', 'i', '||dash||', 'i', 'thought', 'we', 'had', 'a', 'good', 'time', 'the', 'other', 'night', '||comma||', "an'", 'the', 'only', 'explanation', 'i', 'can', 'come', 'up', 'with', 'is', 'that', 'you', 'think', 'that', 'you', 'caught', 'me', '||leftparen||', 'flustered', '||comma||', 'he', 'indicates', 'a', 'nose', 'pick', '||rightparen||', '||return||', '||return||', 'tia:', '||leftparen||', 'waving', 'him', 'off', '||rightparen||', "i'd", 'rather', 'not', 'talk', 'about', 'this', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'was', 'clearly', 'on', 'the', 'outer', 'edge', 'of', 'the', 'nostril', '||period||', '||return||', '||return||', 'tia:', 'i', 'know', 'what', 'i', 'saw', '||period||', '||leftparen||', 'turns', 'toward', 'the', 'elevators', '||rightparen||', '||return||', '||return||', 'jerry:', 'but', 'there', '||dash||', 'but', 'there', 'was', 'no', 'pick', '||exclammark||', 'i', '||dash||', 'i', 'did', 'not', 'pick', '||exclammark||', 'there', 'ws', 'no', 'piick', '||exclammark||', '||return||', '||return||', 'tia:', 'i', 'gotta', 'go', '||period||', '||leftparen||', 'quickly', 'walks', 'away', 'from', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'no', 'pick', '||exclammark||', '||return||', '||return||', '[setting:', 'calvin', "klein's", 'office]', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'now', "here's", 'the', 'scoop', '||comma||', 'jockey', '||period||', 'i', '||comma||', 'uh', '||comma||', 'i', 'came', 'in', 'here', 'last', 'january', 'to', 'talk', 'to', 'one', 'of', 'your', 'ffflunkies', '||period||', '||period||', '||return||', '||return||', 'klein:', '||leftparen||', 'reflecting', 'on', 'kramer', '||rightparen||', 'interesting', 'face', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', 'and', '||comma||', 'um', '||comma||', 'when', 'i', 'told', 'him', 'my', 'idea', 'about', 'the', 'beach', 'cologne', '||comma||', 'you', 'know', '||comma||', 'he', '||dash||', 'he', 'laughed', 'at', 'me', '||period||', '||return||', '||return||', 'klein:', "you're", 'very', 'lithe', '||comma||', "aren't", 'you', '||questionmark||', 'very', 'graceful', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'klein:', 'sit', 'down', '||comma||', 'eh', '||questionmark||', '||leftparen||', 'kramer', '||comma||', 'misjudging', 'one', 'side', 'of', 'the', 'couch', '||comma||', 'sits', 'down', 'uncomfortably', '||rightparen||', "you're", 'very', 'lean', '||comma||', 'but', 'muscular', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'try', 'to', 'take', 'care', 'of', 'myself', '||period||', 'i', '||dash||', 'i', 'watch', 'what', 'i', 'eat', '||period||', 'ah', '||comma||', 'just', 'recently', 'i', 'cut', 'out', 'fructose', '||period||', '||return||', '||return||', 'klein:', "you're", 'spectacular', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'flattered', '||rightparen||', 'oh', '||questionmark||', '||return||', '||return||', '[setting:', "elaine's", 'office]', '||return||', '||return||', 'elaine:', 'i', 'told', 'you', '||comma||', 'fred', '||dash||', 'my', "friend's", 'next', 'door', 'neighbor', 'took', 'it', '||period||', '||return||', '||return||', 'fred:', '||leftparen||', 'incredulous', '||rightparen||', 'soo', '||dash||', 'what', 'happened', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', '||dash||', 'i', '||dash||', 'i', 'must', 'a', 'missed', 'a', 'button', '||period||', 'i', 'forgot', 'to', 'button', 'it', '||period||', '||return||', '||return||', 'fred:', 'i', 'really', "don't", 'see', 'how', 'you', 'could', 'miss', 'a', 'button', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "you've", 'never', 'missed', 'a', 'button', '||questionmark||', '||exclammark||', '||leftparen||', 'phone', 'rings', '||comma||', 'she', 'puts', 'it', 'on', 'speakerphone', '||rightparen||', 'yeah', '||questionmark||', '||period||', '||period||', '||return||', '||return||', 'receptionist:', 'your', 'sister', '||comma||', 'gail', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||dash||', 'my', 'nephew', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', 'and', 'hits', 'the', 'button', '||rightparen||', 'hi', '||comma||', 'gail', '||exclammark||', '||period||', '||period||', 'yu', '||period||', '||period||', 'yu', '||period||', '||period||', '||period||', 'yes', '||comma||', 'gail', '||comma||', 'i', 'know', 'how', 'old', 'he', 'is', '||period||', '||return||', '||return||', 'co', '||dash||', 'worker:', '||leftparen||', 'pokes', 'his', 'head', 'into', 'the', 'doorway', '||rightparen||', 'hey', '||comma||', 'nip', '||comma||', 'ya', 'need', 'that', 'manuscript', 'or', 'can', 'i', 'take', 'it', 'home', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'take', 'it', '||exclammark||', 'take', 'it', '||exclammark||', '||period||', '||period||', "an'", 'stop', 'calling', 'me', '||quotemark||', 'nip', '||quotemark||', '||exclammark||', '||leftparen||', 'co', '||dash||', 'worker', 'takes', 'it', 'and', 'quickly', 'leaves', '||period||', 'elaine', 'goes', 'back', 'to', 'the', 'phone', '||rightparen||', 'it', 'was', 'an', 'accident', '||exclammark||', 'well', '||period||', '||period||', 'well', '||period||', '||period||', "it's", 'gotta', 'be', 'somewhere', '||period||', 'look', 'under', 'his', 'mattress', '||period||', '||return||', '||return||', '[setting:', "susan's", 'apartment', 'building]', '||return||', '||return||', '[setting:', 'calvin', "klein's", 'office]', '||return||', '||return||', 'woman:', 'about', 'the', 'focus', 'group', '||questionmark||', 'i', 'had', 'nothing', 'to', 'do', 'with', 'the', 'focus', 'group', '||period||', "what's", 'your', 'point', '||questionmark||', '||leftparen||', 'she', 'sees', 'kramer', 'emerge', 'from', 'another', 'room', '||period||', "he's", 'wearing', 'only', 'dress', 'shoes', '||comma||', 'socks', '||comma||', 'and', 'his', 'briefs', '||rightparen||', 'my', '||period||', '||period||', "he's", 'sexual', '||comma||', 'athletic', '||period||', '||period||', "an'", 'without', 'a', 'trace', 'of', 'self', '||dash||', 'consciousness', '||exclammark||', '||return||', '||return||', 'klein:', 'his', 'buttocks', 'are', 'sublime', '||exclammark||', '||return||', '||return||', 'man:', 'of', 'course', '||comma||', 'his', 'pectorals', 'could', 'use', 'a', 'little', 'work', '||dash||', 'i', 'suppose', 'we', 'could', 'get', 'him', 'into', 'the', 'weight', 'room', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'mesmerized', 'with', "kramer's", 'body', '||rightparen||', 'no', '||comma||', "let's", 'get', 'him', 'in', 'the', 'studio', 'today', '||period||', 'we', 'can', 'send', 'these', 'out', 'immediately', '||period||', '||return||', '||return||', 'man:', "you've", 'done', 'it', 'again', '||comma||', 'c', '||period||', 'k', '||period||', '||exclammark||', '||return||', '||return||', '[setting:', 'calvin', 'klein', 'office', 'building]', '||return||', '||return||', 'jerry:', "an'", 'what', 'if', 'i', 'did', 'do', 'it', '||questionmark||', 'even', 'though', 'i', 'admit', 'to', 'nothing', '||comma||', 'and', 'never', 'will', '||period||', 'what', 'does', 'that', 'make', 'me', '||questionmark||', 'and', "i'm", 'not', 'here', 'just', 'defending', 'myself', 'but', 'all', 'those', 'pickers', 'out', 'there', "who've", 'been', 'caught', '||period||', '||leftparen||', 'elevator', 'doors', 'open', '||rightparen||', 'each', "an'", 'every', 'one', 'of', 'them', '||comma||', 'who', 'has', 'to', 'suffer', 'the', 'shame', 'and', 'humiliation', 'because', 'of', 'people', 'like', 'you', '||period||', '||period||', '||leftparen||', 'everyone', 'but', 'jerry', 'is', 'now', 'in', 'the', 'elevator', '||period||', "jerry's", 'still', 'addressing', 'them', '||rightparen||', 'are', 'we', 'not', 'human', '||questionmark||', '||exclammark||', 'if', 'we', 'pick', '||comma||', 'do', 'we', 'not', 'bleed', '||questionmark||', '||exclammark||', '||leftparen||', 'elevator', 'doors', 'shut', '||period||', 'a', 'few', 'people', 'in', 'the', 'hallway', 'are', 'looking', 'at', 'him', '||comma||', 'he', 'turns', 'and', 'addresses', 'them', '||rightparen||', 'i', 'am', 'not', 'an', 'animal', '||exclammark||', '||return||', '||return||', '[setting:', "elaine's", 'office]', '||return||', '||return||', 'elaine:', 'i', 'did', 'not', 'bare', 'myself', 'deliberately', '||comma||', 'but', 'i', 'tell', 'you', '||comma||', 'i', 'wish', 'now', 'that', 'i', 'had', '||exclammark||', '||leftparen||', 'fred', '||comma||', 'shocked', 'by', 'her', 'speech', '||comma||', 'flees', '||period||', 'she', 'calls', 'after', 'him', '||comma||', 'still', 'standing', 'at', 'the', 'hallway', '||rightparen||', 'because', 'it', 'is', 'not', 'me', 'that', 'has', 'been', 'exposed', '||comma||', 'but', 'you', '||exclammark||', 'for', 'i', 'have', 'seen', 'the', 'nipple', 'on', 'your', 'soul', '||exclammark||', '||return||', '||return||', 'gx:', 'so', 'the', 'minute', 'i', 'started', 'up', 'the', 'steps', 'to', 'her', 'apartment', 'i', 'knew', 'i', 'made', 'a', 'terrible', 'mistake', '||period||', 'going', 'back', 'with', 'her', '||period||', 'so', "we're", 'in', 'her', 'apartment', 'she', 'goes', 'into', 'the', 'bathroom', '||period||', "i'm", 'cursing', 'myself', '||semicolon||', 'now', 'how', 'do', 'i', 'get', 'out', 'of', 'this', '||questionmark||', 'then', 'it', 'hits', 'me', 'like', 'a', 'bolt', 'of', 'lightening', '||period||', 'the', 'pick', '||period||', '||return||', '||return||', 'jerry:', 'the', 'pick', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'pick', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'comes', 'out', 'of', 'the', 'bathroom', '||comma||', "i'm", 'in', 'up', 'to', 'my', 'wrist', '||period||', 'you', 'should', 'have', 'seen', 'the', 'look', 'on', 'her', 'face', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "i've", 'seen', 'that', 'look', '||period||', '||return||', '||return||', 'kramer:', "i've", 'got', 'the', 'magazine', '||period||', 'the', 'underwear', 'ad', 'came', 'out', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'they', 'really', 'worked', 'on', 'your', 'pectorals', '||period||', '||return||', '||return||', 'george:', 'your', 'buttocks', 'are', 'spectacular', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'sure', 'but', '||period||', '||period||', '||period||', 'i', 'think', 'i', 'see', 'your', '||period||', '||period||', '||period||', '||return||', '||return||', '%', 'a', 'night', 'at', 'the', 'improv', '||period||', 'jerry', 'receives', 'some', 'disturbing', 'news', 'from', 'the', 'manager:', 'the', 'show', 'has', 'been', 'delayed', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||period||', 'i', 'got', 'this', 'all', 'timed', 'out', '||period||', 'i', 'got', 'another', 'spot', 'across', 'town', 'at', '950', '||comma||', "i'm", 'not', 'gonna', 'be', 'able', 'to', 'make', 'it', '||exclammark||', '||return||', '||return||', 'kernis:', 'i', 'hear', 'you', '||comma||', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'and', "i'm", "doin'", 'letterman', 'monday', '||period||', 'you', 'know', '||comma||', 'i', 'gotta', 'work', 'out', 'the', 'material', '||exclammark||', '||return||', '||return||', '%', 'in', 'the', 'background', 'is', 'the', 'plot', 'complication', 'of', 'the', 'week:', 'buckles', '||period||', 'the', 'manager', 'assures', 'jerry', 'that', 'buckles', "isn't", 'on', 'the', 'menu', '||period||', 'he', 'just', 'hangs', 'around', 'hoping', 'that', 'somebody', 'drops', 'out', '||period||', '||return||', '||return||', 'kernis:', 'why', "don't", 'you', 'come', 'back', 'and', 'do', 'the', '11', "o'clock", 'spot', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'supposed', 'to', 'meet', 'my', 'friends', 'to', 'see', 'this', 'movie', "``checkmate''", 'at', '1030', '||period||', '||return||', '||return||', 'buckles:', 'hey', '||comma||', 'jer', '||exclammark||', '||return||', '||return||', 'jerry:', '[not', 'losing', 'a', 'step]', 'heeeeyyyyyyyy', '||period||', '||period||', '||period||', '||period||', '||period||', '[and', 'out', 'the', 'door]', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'do', 'you', 'have', 'a', 'ticket', '||questionmark||', '||return||', '||return||', 'man:', 'no', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', 'good', '||period||', '||return||', '||return||', '%', 'misunderstanding', 'number', 'one:', 'when', 'jerry', 'shows', 'up', 'at', 'the', 'other', 'comedy', 'place', '||comma||', 'the', 'manager', 'tells', 'him', 'his', 'spot', 'was', 'for', '915', '||comma||', 'not', '950', '||period||', 'the', 'manager', 'had', 'no', 'choice', 'but', 'to', 'give', "jerry's", 'spot', 'to', '||period||', '||period||', '||period||', '||return||', '||return||', 'buckles:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', '<you>', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'buckles:', 'hey', '||comma||', 'do', 'you', 'think', 'this', 'is', 'funny', '||questionmark||', '``why', 'do', 'they', 'call', 'it', "athlete's", 'foot', '||questionmark||', 'you', "don't", 'have', 'to', 'be', 'an', 'athlete', 'to', 'get', 'it', '||period||', 'i', 'mean', '||comma||', 'my', 'father', 'gets', 'it', 'all', 'the', 'time', '||comma||', 'and', 'believe', 'me', '||comma||', "he's", 'no', 'athlete', '||exclammark||', "''", '||return||', '||return||', 'elaine:', "i've", 'been', '*dying*', 'to', 'see', "``checkmate''", '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', "it's", 'as', 'good', 'as', '``ponce', 'de', "leon''", '||comma||', "i'll", 'be', 'happy', '||period||', '||return||', '||return||', 'elaine:', '``ponce', 'de', "leon''", '||comma||', 'are', 'you', 'kidding', 'me', '||questionmark||', 'i', 'hated', 'that', 'movie', '||exclammark||', '||return||', '||return||', 'george:', '``ponce', 'de', "leon''", '||questionmark||', 'but', 'that', 'was', 'great', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', '<come', 'on>', '||period||', 'that', 'fountain', 'of', 'youth', 'scene', 'at', 'the', 'end', '||comma||', 'where', "they're", 'all', "splashin'", 'around', '||comma||', 'and', 'then', 'they', 'go', 'running', 'over', 'to', 'the', 'mirror', 'to', 'see', 'if', 'it', 'really', 'worked', '||questionmark||', 'i', 'mean', '||comma||', 'come', 'on', '||exclammark||', '[laughing', 'too', 'hard', 'to', 'continue]', "that's", 'stupid', '||exclammark||', '||return||', '||return||', 'george:', 'lemme', 'tell', 'you', "sum'in", '||period||', 'when', 'ponce', 'looked', 'in', 'that', 'mirror', 'and', 'saw', 'that', 'he', "hadn't", 'changed', '||comma||', 'and', 'that', 'tear', 'started', 'to', 'roll', 'down', 'his', 'cheek', '||questionmark||', '||period||', '||period||', '||period||', 'i', 'lost', 'it', '||period||', '||return||', '||return||', '%', 'apparently', '||comma||', 'a', 'movie', 'that', 'can', 'be', 'interpreted', 'on', 'two', 'levels', '||period||', 'misunderstanding', 'number', 'two:', 'kramer', 'joins', 'george', 'and', 'elaine', 'after', 'looking', 'for', 'them', 'at', 'the', 'paradise', 'twin', 'around', 'the', 'corner', '||period||', 'elaine', 'hates', 'the', 'paradise', 'because', "it's", 'a', 'multiplex', '||semicolon||', "she'd", 'rather', 'see', 'a', 'movie', 'on', 'a', 'big', 'screen', '||period||', 'something', 'catches', "kramer's", 'eye', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', "i'm", 'gonna', 'get', 'a', 'hot', 'dog', 'at', 'payapa', 'king', '||period||', '||return||', '||return||', 'george', '&', 'elaine:', 'no', '||comma||', 'wait', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'not', 'going', 'to', 'get', 'back', 'here', 'in', 'time', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", "starvin'", '||comma||', 'i', "haven't", 'had', 'any', 'dinner', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'can', 'get', 'a', 'hot', 'dog', 'in', 'the', 'theater', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'wanna', 'get', 'a', 'movie', 'hot', 'dog', '||exclammark||', '[in', 'tears]', 'i', 'want', 'a', 'papaya', 'king', 'hot', 'dog', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'jerry', 'is', 'going', 'to', 'be', 'here', 'any', 'second', '||comma||', 'and', 'then', 'this', 'line', 'is', 'going', 'to', 'start', 'moving', '||comma||', 'and', "we're", 'going', 'to', 'end', 'up', 'in', 'the', 'front', 'row', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'just', 'save', 'me', 'a', 'seat', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'i', "don't", 'want', 'to', 'save', 'seats', '||period||', "don't", 'put', 'me', 'through', 'that', '||exclammark||', 'i', 'once', 'had', 'the', 'fleece', 'just', 'ripped', 'out', 'of', 'my', 'winter', 'coat', 'in', 'a', 'seat', '||dash||', 'saving', 'incident', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'in', 'line', 'to', 'buy', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'george', '||comma||', 'this', 'is', 'the', 'ticket', '||dash||', '<holders>', 'line', '||period||', '||return||', '||return||', 'george:', 'no', "it's", 'not', '||comma||', "it's", 'the', 'ticket', '||dash||', '<buyers>', 'line', '||period||', '||return||', '||return||', 'elaine:', 'then', 'how', 'come', "we're", 'not', 'moving', '||questionmark||', '||return||', '||return||', 'kramer:', 'good', 'question', '||period||', '||return||', '||return||', 'george:', 'is', 'this', 'the', 'ticket', 'holders', 'line', '||comma||', 'or', 'the', 'buyers', '||questionmark||', '||return||', '||return||', 'man:', 'holders', '||period||', '||return||', '||return||', 'george:', 'but', 'i', 'asked', 'you', 'before', 'if', 'you', 'had', 'a', 'ticket', '||comma||', 'and', 'you', 'said', 'no', '||exclammark||', '||return||', '||return||', 'man:', 'i', "didn't", '||period||', 'my', 'friend', 'was', 'getting', 'it', '||period||', '||return||', '||return||', 'george:', '[furious]', 'good', '||period||', "it's", 'good', 'to', 'be', 'accurate', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'can', 'you', 'believe', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'spaced', 'out', '||period||', '||return||', '||return||', 'elaine:', 'how', 'long', 'would', '*you*', 'have', 'stood', 'in', 'the', 'ticket', '||dash||', 'holders', 'line', '||questionmark||', '||return||', '||return||', 'kramer:', '[thinks', 'for', 'a', 'while]', '||return||', '||return||', 'elaine:', '[gives', 'up]', 'yeah', '||comma||', 'exactly', '||period||', '||period||', '||period||', '||return||', '||return||', '%', 'the', 'movie', 'has', 'sold', 'out', '||period||', '``real', 'good', '||comma||', 'george', '||period||', 'real', 'good', '||period||', "''", "it's", 'now', '10:', '20', '||comma||', 'and', 'kramer', 'suggests', 'they', 'go', 'watch', 'the', '1045', 'showing', 'of', '||quotemark||', 'checkmate', '||quotemark||', 'at', 'the', 'paradise', '||period||', 'elaine', 'enters', 'whine', 'mode', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'wanna', 'go', 'to', 'a', '||period||', '||period||', '||period||', 'miniplex', 'multi', '||dash||', 'theater', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'the', 'same', 'movie', '||exclammark||', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'not', 'a', 'theater', '||comma||', "it's", 'like', 'a', 'room', 'where', 'they', 'bring', 'in', 'pows', 'to', 'show', 'them', 'propaganda', 'films', '||period||', '||return||', '||return||', 'jerry:', '[to', 'taxi', 'driver]', 'take', 'the', 'park', '||exclammark||', '||return||', '||return||', 'buckles:', 'no', 'no', 'no', '||comma||', 'take', '55th', '||period||', '||return||', '||return||', 'buckles:', 'jerry', '||comma||', 'i', 'want', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', 'no', 'more', 'fish', '||exclammark||', '||return||', '||return||', 'jerry:', '[rubbing', 'his', 'eyes', 'hoping', 'the', 'nightmare', 'will', 'end]', 'okay', '||comma||', 'i', 'get', 'your', 'point', '||exclammark||', '||return||', '||return||', 'buckles:', 'i', 'had', 'a', 'point', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'know', 'what', 'else', 'is', 'playing', 'here', '||questionmark||', '``rochelle', "rochelle''", '||period||', '||return||', '||return||', 'elaine:', 'sigh/ugh', '||period||', '||return||', '||return||', 'george:', 'i', "wouldn't", 'mind', "seein'", '<that>', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'you', 'know', '||comma||', 'men', 'can', 'sit', 'through', 'the', 'most', 'boring', 'movie', 'if', "there's", 'even', 'the', 'slightest', 'possibility', 'that', 'a', 'woman', 'will', 'take', 'her', 'top', 'off', '||period||', '||return||', '||return||', 'george:', 'so', "what's", 'your', 'point', '||questionmark||', '||return||', '||return||', 'george:', 'by', 'the', 'way', '||comma||', 'you', 'owe', 'me', 'seven', 'fifty', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'all', 'right', '||period||', 'can', 'you', 'break', 'a', 'twenty', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "don't", 'have', 'any', 'change', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'then', "i'll", 'pay', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'or', '||comma||', 'i', 'could', 'take', 'the', 'twenty', '||comma||', 'then', 'i', 'could', 'pay', '*you*', 'later', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', '*could*', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'might', 'be', 'easier', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'how', 'is', 'that', 'easier', '||questionmark||', 'i', 'mean', '||comma||', 'then', 'you', 'would', 'owe', 'me', 'twelve', 'fifty', 'instead', 'of', 'me', 'owing', 'you', 'seven', 'fifty', '||period||', '||return||', '||return||', 'george:', '[trying', 'to', 'act', 'as', 'if', 'he', "doesn't", 'care', 'one', 'way', 'or', 'the', 'other', '||comma||', 'but', 'we', 'know', 'better]', 'either', 'way', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', 'can', 'i', 'have', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'tell', 'you', 'what', '||comma||', "i'll", 'get', 'the', 'popcorn', 'and', 'the', 'soda', '||period||', '||return||', '||return||', 'george:', 'whaddya', 'mean', '||comma||', "you'll", "``get''", 'the', 'popcorn', 'and', 'the', 'soda', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'will', 'buy', 'your', 'popcorn', 'and', 'soda', '||period||', "we'll", 'call', 'it', 'even', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', 'what', '||comma||', 'you', 'give', 'me', 'the', 'twenty', '||comma||', 'and', 'i', 'will', 'buy', '*you*', 'a', 'popcorn', 'and', 'soda', '||comma||', 'and', "i'll", 'throw', 'in', 'a', 'bon', '||dash||', 'bons', '||period||', '||return||', '||return||', 'elaine:', '[exasperated]', 'george', '||comma||', "you're", "sappin'", 'my', 'strength', '||period||', '||return||', '||return||', 'george:', 'you', 'go', 'in', 'and', 'save', 'seats', '||period||', '||return||', '||return||', 'elaine:', '[in', 'a', 'panic]', 'me', '||exclammark||', '||questionmark||', 'but', "that's", 'three', 'seats', '||exclammark||', 'i', "can't", 'save', 'three', 'seats', '||exclammark||', 'i', 'told', 'you', 'about', 'that', 'guy', 'who', 'tore', 'up', 'my', 'winter', 'coat', '||exclammark||', '||return||', '||return||', 'buckles:', 'jerry', '||comma||', 'i', 'want', 'you', 'to', 'have', 'this', 'piece', 'of', 'material', '||period||', '||return||', '||return||', 'jerry:', "that's", 'very', 'nice', 'of', 'you', '||comma||', 'but', 'i', "can't", 'do', 'the', 'voices', '||period||', '||return||', '||return||', 'buckles:', 'jerry', '||exclammark||', "don't", 'start', 'up', 'with', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'get', 'out', 'of', 'this', 'cab', '||period||', '||period||', '||period||', '||return||', '||return||', 'buckles:', 'but', 'jerry', '||comma||', 'quit', 'riffing', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'not', 'riffing', '||period||', "i'm", 'ignoring', '||exclammark||', 'do', 'you', 'understand', 'the', 'difference', '||questionmark||', '||return||', '||return||', 'buckles:', '[pause]', 'can', 'you', 'help', 'me', 'get', 'on', 'the', 'tonight', 'show', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'these', 'are', 'saved', '||period||', '||return||', '||return||', 'man:', 'all', 'of', 'them', '||questionmark||', "c'mon", '||comma||', 'you', "can't", 'take', '*four*', 'seats', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'is', 'that', 'a', 'rule', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'why', "don't", '*you*', 'go', '||comma||', 'and', 'i', 'could', 'save', 'the', 'seats', '||period||', 'you', 'said', 'you', "didn't", 'like', 'saving', 'anyway', '||period||', '||return||', '||return||', 'elaine:', '[stopping', 'someone', 'from', 'sitting', 'in', 'the', 'seat', 'next', 'to', 'her]', 'no', '||comma||', '*taken*', '||comma||', 'taken', '||comma||', 'taken', '||period||', '[to', 'george]', '[shrugs]', "i'm", 'getting', 'the', 'hang', 'of', 'it', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'give', 'me', 'the', 'twenty', '||comma||', 'and', "i'll", 'stop', 'and', 'get', 'change', '||comma||', 'and', 'then', 'you', 'and', 'i', 'can', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'you', '||dash||', 'know', '||comma||', 'settle', '||period||', '||return||', '||return||', 'elaine:', 'can', 'we', 'do', 'this', 'later', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'psh', '||period||', "what's", 'the', 'point', 'of', 'even', 'discussing', 'it', '||questionmark||', '[condescendingly', 'takes', 'her', 'hand', 'and', 'pats', 'it]', "you'll", 'give', 'me', 'the', 'money', 'when', 'you', 'have', 'it', '||period||', '[takes', 'two', 'steps', '||comma||', 'then', 'reconsiders', '||comma||', 'then', 're', '||dash||', 'reconsiders]', 'i', '||comma||', 'i', 'trust', 'you', '||period||', '||return||', '||return||', 'kramer:', 'could', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', 'if', 'you', 'see', 'a', 'guy', "that's", 'five', 'foot', 'eleven', '||comma||', "he's", 'got', 'uh', 'a', 'big', 'head', 'and', 'flared', 'nostrils', '||comma||', 'tell', 'him', 'his', "friend's", 'going', 'to', 'be', 'right', 'back', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'm", 'sorry', '||comma||', 'these', 'are', 'taken', '||period||', '||period||', '||period||', '||period||', "they're", 'in', 'the', 'lobby', 'buying', 'popcorn', '||period||', '||period||', '||period||', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', 'these', 'are', 'taken', '||comma||', 'these', 'are', 'taken', '||exclammark||', '||return||', '||return||', 'woman:', 'which', 'one', '||questionmark||', '||return||', '||return||', 'elaine:', 'these', 'two', 'and', 'this', 'one', '||period||', '||period||', '||period||', '||period||', 'no', '||exclammark||', "don't", 'come', 'over', 'here', '||exclammark||', 'these', 'are', 'taken', '||period||', 'go', '||exclammark||', 'go', '||exclammark||', 'these', 'are', 'taken', '||exclammark||', "they're", 'taken', '||exclammark||', "they're", 'taken', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'take', "'em", '||period||', '||return||', '||return||', 'george:', 'um', '||comma||', 'excuse', 'me', '||comma||', 'have', 'you', 'see', 'a', 'guy', 'with', 'like', 'a', 'horse', 'face', '||comma||', 'big', 'teeth', '||comma||', 'and', 'a', '||comma||', 'and', 'a', 'pointed', 'nose', '||questionmark||', '||return||', '||return||', 'clerk:', '||period||', '||period||', '||period||', 'flared', 'nostrils', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'clerk:', 'nope', '||comma||', "haven't", 'seen', 'him', '||period||', '||return||', '||return||', 'buckles:', 'jerry', '||comma||', 'could', 'you', 'do', 'me', 'a', 'personal', 'favor', '||questionmark||', 'and', 'if', "i'm", 'out', 'of', 'line', '||comma||', '*please*', '||comma||', 'let', 'me', 'know', '||period||', 'could', 'i', 'keep', 'my', 'trench', 'coat', 'in', 'your', 'closet', 'for', 'a', 'few', 'months', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'trench', 'coat', 'in', 'my', 'closet', '||questionmark||', '||return||', '||return||', 'buckles:', 'jerry', '||comma||', 'my', 'closet', 'is', 'packed', 'to', 'the', 'gills', '||comma||', "i'm", 'afraid', 'to', 'open', 'the', 'door', '||period||', 'just', 'for', 'a', 'few', 'months', '||period||', "it'll", 'make', 'all', 'the', 'difference', 'in', 'the', 'world', '||period||', '||return||', '||return||', 'buckles:', 'we', 'should', 'see', '``rochelle', "rochelle''", '||period||', 'i', 'hear', "it's", 'really', 'hot', '||period||', '||return||', '||return||', 'jerry:', 'no', 'thanks', '||comma||', 'maybe', 'some', 'other', 'time', '||period||', '||return||', '||return||', 'buckles:', 'really', '||questionmark||', 'do', 'you', 'really', 'mean', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'buckles:', 'you', 'liked', 'the', "athlete's", 'foot', 'bit', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', '||period||', 'i', 'was', 'kidding', '||period||', "it's", 'terrible', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'i', 'got', 'some', 'friends', 'inside', '||comma||', 'i', 'gotta', 'get', 'a', 'message', 'to', "'em", '||period||', 'mind', 'if', 'i', 'walk', 'through', 'real', 'quick', '||questionmark||', '||return||', '||return||', 'usher:', '[indicates', "``okay'']", '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'did', 'that', 'guy', 'show', 'up', '||questionmark||', '||return||', '||return||', 'clerk:', 'the', 'guy', 'with', 'the', '||period||', '||period||', '||period||', 'horse', 'face', '||period||', '||period||', '||period||', 'and', 'the', 'big', 'teeth', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'the', 'guy', 'with', 'the', 'big', 'head', 'and', 'the', 'flared', 'nostrils', '||period||', '||return||', '||return||', 'clerk:', "haven't", 'seen', 'him', '||period||', 'there', 'was', 'a', 'short', 'guy', 'with', 'glasses', '||period||', '||period||', '||period||', 'looked', 'like', 'humpty', '||dash||', 'dumpty', 'with', 'a', 'melon', 'hat', '||period||', 'but', 'he', 'left', '||period||', '||return||', '||return||', 'woman:', 'so', 'i', 'got', 'home', '||comma||', 'and', 'he', 'was', 'vacuuming', '||exclammark||', 'i', 'mean', '||comma||', "he's", 'twelve', 'years', 'old', '||exclammark||', 'who', 'else', 'but', 'my', 'alan', 'would', 'do', 'something', 'like', 'that', '||questionmark||', '||return||', '||return||', 'woman:', 'and', 'then', 'last', 'night', '||comma||', 'he', 'put', 'on', 'my', 'high', 'heels', '||period||', 'oh', '||comma||', 'he', 'put', 'on', 'such', 'a', 'show', 'for', 'us', '||exclammark||', 'he', 'was', 'dancing', 'around', '||comma||', 'lip', '||dash||', "sync'ing", 'to', '``a', 'chorus', "line''", '||comma||', 'i', 'mean', 'you', 'can', 'see', "he's", 'got', 'talent', '||period||', '||return||', '||return||', 'elaine:', '[annoyed]', 'excuse', 'me', '||comma||', 'excuse', 'me', '||period||', '||return||', '||return||', 'woman:', "what's", 'the', 'problem', '||questionmark||', '||return||', '||return||', 'elaine:', '[momentarily', 'shocked', '||comma||', 'as', 'if', 'the', 'answer', 'were', 'self', '||dash||', 'evident]', "you're", 'talking', '||period||', '||return||', '||return||', 'woman:', "it's", 'the', '``coming', "attractions''", '||period||', '||return||', '||return||', 'woman:', 'so', 'anyway', '||comma||', 'he', 'sings', '||comma||', 'he', 'dances', '||period||', 'and', 'do', 'you', 'know', 'what', "he's", 'gotten', 'into', 'now', '||questionmark||', 'he', 'is', 'cooking', '||exclammark||', 'he', 'does', 'a', 'crepe', '||period||', '||period||', '||period||', '||return||', '||return||', 'usher:', 'ticket', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'i', 'just', 'went', 'out', '||comma||', 'i', 'went', 'to', 'look', 'for', 'my', 'friend', '||questionmark||', '||return||', '||return||', 'usher:', 'do', 'you', 'have', 'your', 'stub', '||questionmark||', '||return||', '||return||', 'george:', '[as', 'if', 'the', 'word', 'were', 'totally', 'foreign]', 'my', "`stub'", '||questionmark||', '||return||', '||return||', 'usher:', 'mm', 'hm', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'remember', 'me', '||questionmark||', '||return||', '||return||', 'usher:', "it's", 'a', 'big', 'city', '||comma||', 'sir', '||period||', '||return||', '||return||', 'george:', 'i', 'went', 'in', 'with', 'a', 'pretty', 'woman', '||questionmark||', 'you', 'know', '||comma||', 'kinda', 'short', '||comma||', 'big', 'wall', "o'", 'hair', '||comma||', 'face', 'like', 'a', 'frying', 'pan', '||questionmark||', '||return||', '||return||', 'george:', '[whispering]', 'elaine', '||questionmark||', '[loud', 'whisper]', 'elaine', '||exclammark||', '[louder', 'whisper]', 'elaine', '||exclammark||', '||return||', '||return||', 'george:', '[quite', 'out', 'loud', '||comma||', 'not', 'even', 'pretending', 'to', 'whisper]', 'elaine', '||exclammark||', '||return||', '||return||', 'narrator:', 'the', 'village', 'voice', 'calls', 'it', 'a', 'masterpiece', '||period||', 'a', 'young', "woman's", 'strange', '||comma||', 'erotic', 'journey', 'from', 'milan', 'to', 'minsk', '||period||', '||return||', '||return||', 'narrator:', "it's", 'a', 'story', 'about', 'life', '||period||', 'and', 'love', '||period||', 'and', 'becoming', 'a', 'woman', '||period||', '``rochelle', "rochelle''", '||comma||', 'now', 'playing', 'at', 'paradise', '2', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'could', 'i', 'have', 'a', 'medium', 'diet', 'coke', '||questionmark||', '||return||', '||return||', 'clerk:', 'do', 'you', 'want', 'the', 'medium', 'size', 'or', 'the', 'middle', 'size', '||questionmark||', '||return||', '||return||', 'elaine:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'clerk:', 'well', '||comma||', 'we', 'have', 'three', 'sizes', '||period||', 'medium', '||comma||', 'large', '||comma||', 'and', 'jumbo', '||period||', '||return||', '||return||', 'elaine:', '[momentarily', 'perplexed]', 'what', 'happened', 'to', 'the', 'small', '||questionmark||', '||return||', '||return||', 'clerk:', 'there', 'is', 'no', 'small', '||period||', 'small', 'is', 'medium', '||period||', '||return||', '||return||', 'elaine:', "what's", '||period||', '||period||', '||period||', 'medium', '||questionmark||', '||return||', '||return||', 'clerk:', 'medium', 'is', 'large', '||comma||', 'and', 'large', 'is', 'jumbo', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||dash||', 'kay', '||period||', 'gimme', 'the', 'large', '||period||', '||return||', '||return||', 'clerk:', "that's", 'medium', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', 'yeah', '||period||', '[fearing', 'the', 'answer]', 'could', 'i', 'have', 'a', 'small', 'popcorn', '||questionmark||', '||return||', '||return||', 'clerk:', 'there', 'is', 'no', 'small', '||period||', '[flash', 'of', 'perky', 'inspiration]', 'child', '||dash||', 'size', 'is', 'small', '||period||', '||return||', '||return||', 'elaine:', "what's", "`medium'", '||questionmark||', '||return||', '||return||', 'clerk:', 'adult', '||period||', '||return||', '||return||', 'elaine:', 'do', 'adults', 'ever', 'order', 'the', 'child', '||dash||', 'size', '||questionmark||', '||return||', '||return||', 'clerk:', '[chuckling]', 'not', 'usually', '||period||', '||return||', '||return||', 'elaine:', '[laughs', 'appreciably]', 'okay', '||comma||', 'gimme', 'the', "`adult'", '||period||', '||return||', '||return||', 'clerk:', 'do', 'you', 'want', 'butter', '||questionmark||', '||return||', '||return||', 'elaine:', 'is', 'it', '*real*', 'butter', '||questionmark||', '||return||', '||return||', 'clerk:', '[perkily]', "it's", 'butter', '||dash||', '*flavored*', '||exclammark||', '||return||', '||return||', 'elaine:', '[exasperated]', 'what', 'is', 'it', 'made', 'of', '||questionmark||', '||return||', '||return||', 'clerk:', '[perkily]', "it's", 'yellow', '||exclammark||', '||return||', '||return||', 'jerry:', '44th', 'and', '9th', '||period||', '||return||', '||return||', 'driver:', 'have', 'you', 'got', 'a', 'cigarette', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'usher:', 'ticket', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'george:', "we've", 'just', 'been', 'through', 'this', '||exclammark||', 'you', "don't", 'remember', '||questionmark||', 'we', 'just', 'had', 'this', 'exact', 'same', 'conversation', 'a', 'minute', 'ago', '||exclammark||', '||return||', '||return||', 'usher:', 'i', 'need', 'to', 'see', 'your', 'stub', '||period||', '||return||', '||return||', 'george:', '[realizing', 'the', 'only', 'way', 'out', 'is', 'to', 'show', 'the', 'stub]', "i've", 'got', 'the', 'stub', '||period||', '||return||', '||return||', 'george:', 'there', 'you', 'go', '||comma||', 'okay', '||questionmark||', "that's", 'my', '*other*', "friend's", 'ticket', '||period||', 'you', 'happy', 'now', '||questionmark||', 'you', 'got', 'two', 'tickets', '||period||', '||return||', '||return||', 'usher:', 'ticket', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', '||comma||', 'see', '||comma||', 'my', 'friend', 'already', 'bought', 'me', 'a', 'ticket', '||period||', "i'm", 'late', '||comma||', 'and', "she's", 'inside', '||period||', '||return||', '||return||', 'usher:', 'go', 'ahead', '||period||', '||return||', '||return||', 'kramer:', 'is', 'that', 'seat', 'taken', '||questionmark||', '||return||', '||return||', 'woman', 'behind', 'elaine:', "it's", 'all', 'yours', '||period||', '||return||', '||return||', 'driver:', "i'm", 'very', 'sorry', '||comma||', 'you', 'give', 'me', 'few', 'minutes', '||period||', 'i', 'have', 'to', 'stop', 'for', 'gasoline', '||period||', '||return||', '||return||', 'jerry:', 'gasoline', '||questionmark||', "can't", 'you', 'get', 'it', 'after', 'you', 'drop', 'me', 'off', '||questionmark||', '||return||', '||return||', 'driver:', '[taken', 'aback]', 'no', '||exclammark||', 'impossible', '||exclammark||', 'it', 'is', 'on', "`empty'", '||exclammark||', '||return||', '||return||', 'man:', "you're", 'soaking', 'wet', '||period||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'rochelle:', 'my', 'name', 'is', 'rochelle', '||comma||', "i'm", 'from', 'milan', '||period||', "i'm", 'supposed', 'to', 'visit', 'my', 'relatives', 'in', 'minsk', '||period||', '||return||', '||return||', 'man:', 'here', '||comma||', 'stand', 'by', 'the', 'fire', '||period||', 'take', 'off', 'those', 'wet', 'clothes', '||comma||', "you'll", 'catch', 'cold', '||period||', '||return||', '||return||', 'rochelle:', 'oh', '||comma||', 'my', "hand's", 'so', 'cold', '||comma||', 'i', 'can', 'barely', 'get', 'these', 'buttons', 'open', '||period||', '||return||', '||return||', 'rochelle:', 'oh', '||comma||', "that's", 'much', 'better', '||period||', 'much', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'went', 'to', 'get', 'popcorn', '||period||', '||period||', '||period||', 'ugh', '||period||', '||period||', '||period||', '[shakes', 'more', 'popcorn]', 'i', 'just', 'went', 'to', 'get', 'popcorn', '||comma||', 'okay', '||questionmark||', 'and', 'and', 'and', 'somebody', 'took', 'my', 'seat', '||comma||', 'and', 'my', 'coat', 'is', 'in', 'there', '||exclammark||', '||return||', '||return||', 'usher:', "there's", 'a', 'seat', 'in', 'the', 'front', 'row', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'i', "can't", 'sit', 'in', 'the', 'front', 'row', '||period||', '||return||', '||return||', 'usher:', 'well', '||comma||', "you're", 'going', 'to', 'have', 'to', 'wait', '||comma||', 'then', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'stand', 'around', 'here', 'for', '*two', 'hours*', '||exclammark||', '||return||', '||return||', 'usher:', 'i', 'could', 'let', 'you', 'see', '``rochelle', "rochelle''", '||period||', '||return||', '||return||', 'elaine:', '[heavy', 'sarcasm]', 'oh', '||period||', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hey', '||comma||', 'listen', '||comma||', 'by', 'the', 'way', '||comma||', 'have', 'you', 'seen', 'a', 'tall', '||period||', '||period||', '||period||', 'lanky', '||period||', '||period||', '||period||', 'doofus', '||comma||', 'with', 'a', '||comma||', 'with', 'a', 'bird', '||dash||', 'face', 'and', 'hair', 'like', 'the', 'bride', 'of', 'frankenstein', '||questionmark||', '||return||', '||return||', 'usher:', "haven't", 'seen', 'him', '||period||', '||return||', '||return||', '%', 'from', 'his', 'pocket', '||comma||', 'kramer', 'digs', 'into', 'his', 'treasured', 'papaya', 'king', 'hot', 'dog', '||period||', 'then', 'discovers', 'the', 'source', 'of', 'his', 'discomfort:', "he's", 'sitting', 'on', 'a', 'coat', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'did', 'i', 'make', 'it', '||questionmark||', '||return||', '||return||', 'kernis:', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'great', '||period||', "that's", 'great', '||period||', 'what', 'a', 'night', '||period||', '||return||', '||return||', 'announcer:', 'pat', 'buckles', '||comma||', 'ladies', 'and', 'gentlemen', '||period||', 'another', 'round', 'of', 'applause', 'for', 'pat', 'buckles', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'got', 'my', 'spot', '||questionmark||', '||return||', '||return||', 'buckles:', 'that', "athlete's", 'foot', 'bit', 'killed', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||period||', '||period||', '||return||', '||return||', 'buckles:', 'do', 'you', 'think', 'i', 'need', 'to', 'lose', 'some', 'weight', '||questionmark||', '||return||', '||return||', 'jerry:', 'weight', '||questionmark||', 'naw', '||period||', 'just', 'need', 'some', 'more', 'height', '||period||', '||return||', '||return||', 'jerry:', 'my', 'whole', "night's", 'ruined', '||period||', 'i', "didn't", 'do', 'any', 'sets', '||comma||', "didn't", 'do', 'any', 'movies', '||period||', '||period||', '||period||', '||return||', '||return||', 'buckles:', 'come', 'on', '||comma||', 'we', 'can', 'still', 'catch', 'most', 'of', '``rochelle', "rochelle''", '||period||', '||return||', '||return||', 'jerry:', '``rochelle', "rochelle''", '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'buckles:', 'a', 'young', "girl's", 'strange', '||comma||', 'erotic', 'journey', 'from', 'milan', 'to', 'minsk', '||period||', '||return||', '||return||', 'jerry:', '[his', 'interest', 'piqued]', 'minsk', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'gimme', 'a', 'break', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||exclammark||', '||return||', '||return||', 'voice:', '[whispered]', 'shut', 'up', '||period||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||exclammark||', '[waves', 'hi]', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'voice:', '[whispered]', 'will', 'you', 'shut', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'does', 'this', 'movie', 'stink', 'or', 'what', '||exclammark||', '||return||', '||return||', 'jerry:', "let's", 'get', 'outta', 'here', '||period||', '[to', 'buckles]', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'buckles:', "you're", 'leaving', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'buckles:', '[holding', 'out', 'his', 'coat]', 'jerry', '||comma||', 'take', 'the', 'coat', '||period||', 'please', '||period||', 'one', 'month', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'the', 'coat', '||period||', '||return||', '||return||', 'buckles:', 'jerry', '||exclammark||', 'call', 'me', 'when', 'you', 'get', 'home', 'so', 'i', 'know', "you're", 'okay', '||exclammark||', '||return||', '||return||', 'george:', '[studying', 'his', 'jacket]', 'oh', 'man', '||exclammark||', 'look', 'at', 'this', '||exclammark||', 'i', 'sat', 'in', 'gum', '||period||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'you', 'owe', 'me', 'seven', 'fifty', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'even', 'use', 'the', 'ticket', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'still', 'paid', 'for', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'only', 'have', 'a', 'twenty', '||period||', '||return||', '||return||', 'elaine:', "that's", 'my', 'coat', '||exclammark||', 'gimme', 'that', '||period||', 'where', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'on', 'the', 'seat', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '*you*', 'took', 'my', 'seat', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'uh', 'owe', 'me', 'for', 'the', 'ticket', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', 'stain', '[on', 'my', 'coat]', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'yellow', 'mustard', '||period||', '[to', 'george]', 'can', 'you', 'break', 'a', 'twenty', '||questionmark||', '||return||', '||return||', 'i', 'always', 'get', 'confused', 'in', 'the', 'movie', 'theater', 'by', 'the', '||comma||', 'by', 'the', 'plot', '||period||', "it's", 'embarrassing', '||period||', "it's", 'an', 'embarrassment', 'to', 'have', 'to', 'admit', '||comma||', 'but', "i'm", 'the', 'one', 'that', 'you', 'see', 'in', 'the', 'parking', 'lot', 'after', 'the', 'movie', 'talking', 'with', 'his', 'friends', '||comma||', 'going:', '``oh', '||comma||', 'you', 'mean', 'that', 'was', 'the', 'same', 'guy', 'from', 'the', '<beginning>', '||period||', '||period||', '||period||', 'ohhhhhhhhhh', '||period||', '||period||', '||period||', "''", 'nobody', 'will', 'explain', 'it', 'to', 'you', '||period||', 'when', "you're", 'in', 'the', 'theater', '||comma||', 'you', "can't", 'find', 'out', '||period||', '[whispering', 'to', 'imaginary', 'friends', 'seated', 'around', 'him]', '``why', 'did', 'they', 'kill', 'that', 'guy', '||questionmark||', '||period||', '||period||', '||period||', 'why', 'did', 'they', 'kill', 'him', '||questionmark||', '||period||', '||period||', '||period||', 'who', 'was', 'that', 'guy', '||questionmark||', 'what', 'was', 'the', '||period||', '||period||', '||period||', 'i', 'thought', 'he', 'was', 'with', 'them', '||questionmark||', "wasn't", 'he', 'with', 'them', '||questionmark||', 'why', 'would', 'they', 'kill', 'him', 'if', 'he', 'was', 'with', 'them', '||questionmark||', 'oh', '||comma||', 'he', "wasn't", '*really*', 'with', 'them', '||period||', '||period||', '||period||', '||period||', 'i', 'thought', 'he', 'was', 'with', 'them', '||period||', "it's", 'a', 'good', 'thing', 'they', 'killed', 'him', '||period||', "''", '||return||', '||return||', 'george:', 'so', "you're", 'a', 'lawyer', '||period||', 'what', 'kind', 'of', 'cases', 'do', 'you', 'handle', '||questionmark||', '||return||', '||return||', 'cheryl:', 'oh', '||comma||', 'everything', '||period||', 'divorce', '||comma||', 'patents', '||comma||', 'immigration', 'and', 'naturalization', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||comma||', 'immigrants', 'come', 'over', '||comma||', 'you', 'show', 'them', 'how', 'to', 'act', 'natural', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "they're", 'not', 'funny', 'at', 'all', '||period||', 'no', '||comma||', 'i', 'have', 'no', 'funny', 'friends', '||period||', "i'm", 'the', 'funny', 'one', '||period||', 'el', 'clowno', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'i', 'was', 'nice', 'enough', 'to', 'pick', 'it', 'up', 'for', 'you', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "i've", 'been', 'back', 'four', 'days', '||comma||', 'i', 'want', 'my', 'mail', '||period||', '||return||', '||return||', 'elaine:', "it's", 'mostly', 'bills', '||comma||', 'magazines', 'and', 'junk', 'mail', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "that's", 'what', 'mail', 'is', '||period||', 'without', 'bills', '||comma||', 'magazines', 'and', 'junk', 'mail', '||comma||', 'there', 'is', 'no', 'mail', '||period||', '||return||', '||return||', 'cheryl:', "here's", 'my', 'card', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'ok', '||period||', 'thank', 'you', '||period||', 'it', 'was', 'good', 'talking', 'to', 'you', '||period||', '||return||', '||return||', 'cheryl:', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'how', 'ya', 'doin', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'would', 'not', 'believe', 'what', 'just', 'happened', '||period||', 'i', 'was', 'waiting', 'for', 'you', 'and', 'this', 'woman', 'was', 'sitting', 'at', 'the', 'counter', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'the', 'one', 'who', 'just', 'left', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'and', 'we', 'started', 'talking', '||comma||', 'and', "she's", 'this', 'lawyer', "who's", 'incredible', '||exclammark||', 'everything', 'i', 'said', 'was', 'funny', '||exclammark||', 'you', 'know', '||comma||', 'she', 'laughed', 'at', 'everything', 'i', 'said', '||comma||', 'she', 'thinks', "i'm", 'hilarious', '||period||', 'you', 'know', 'in', 'a', 'way', '||comma||', 'it', 'was', 'almost', 'too', 'good', '||period||', 'i', 'started', 'so', 'good', '||comma||', 'i', "can't", 'go', 'any', 'place', 'but', 'down', 'now', '||comma||', 'ya', 'know', '||questionmark||', 'i', 'got', 'no', 'place', 'to', 'go', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'guess', "it's", 'all', 'over', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'behind', 'the', 'counter', '||rightparen||', 'hey', '||comma||', 'is', 'that', 'babu', '||questionmark||', 'it', 'is', '||exclammark||', '||leftparen||', 'walking', 'over', '||rightparen||', 'hey', '||comma||', 'babu', '||exclammark||', '||return||', '||return||', 'babu:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', 'at', 'you', '||comma||', 'you', 'got', 'the', 'job', '||period||', '||return||', '||return||', 'babu:', 'yes', '||comma||', 'yes', '||comma||', 'they', 'give', 'me', 'job', 'thanks', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'babu:', 'yes', '||comma||', 'you', 'do', 'everything', '||comma||', 'get', 'me', 'job', '||comma||', 'you', 'get', 'me', 'a', 'place', 'to', 'live', 'in', 'your', 'building', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||return||', '||return||', 'babu:', 'you', 'very', 'very', 'good', 'man', '||comma||', 'you', 'do', 'everything', 'for', 'me', '||period||', 'my', 'family', 'and', 'i', 'can', 'never', 'thank', 'you', 'enough', 'for', 'everything', 'you', 'do', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||comma||', 'this', 'is', 'what', 'i', 'do', 'with', 'women', '||period||', 'i', 'start', 'out', 'too', 'strong', '||comma||', 'now', 'i', 'have', 'to', 'become', 'real', '||comma||', "that's", 'when', 'it', 'all', 'falls', 'apart', '||period||', 'what', 'good', 'is', 'real', '||questionmark||', 'they', "don't", 'want', 'real', '||comma||', 'they', 'want', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'no', 'they', "don't", '||period||', '||return||', '||return||', 'george:', 'ooooh', '||comma||', 'yes', 'they', 'do', '||period||', '||return||', '||return||', 'elaine:', 'nooo', '||period||', '||return||', '||return||', 'george:', 'ya', 'gotta', 'put', 'on', 'a', 'show', '||comma||', 'ya', 'always', 'gotta', 'give', 'them', 'a', 'big', 'show', '||period||', 'you', 'always', 'have', 'to', 'be', "'on'", 'otherwise', 'why', 'would', 'they', 'like', 'me', '||questionmark||', "they'd", 'just', 'go', 'for', 'a', 'better', 'looking', 'guy', 'with', 'more', 'money', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', "that's", 'true', '||comma||', "i'm", 'right', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'great', '||comma||', 'well', '||comma||', "i'm", 'glad', 'everything', 'worked', 'out', '||comma||', 'babu', '||period||', '||return||', '||return||', 'babu:', 'oh', '||comma||', 'yes', '||comma||', 'yes', '||comma||', 'everything', 'wonderful', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', "i'll", 'see', 'you', 'around', 'the', 'building', '||period||', '||return||', '||return||', 'babu:', "i'll", 'see', 'you', '*in*', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'returning', 'to', 'the', 'table', '||rightparen||', 'remember', 'babu', 'bhatt', '||questionmark||', '||return||', '||return||', 'george:', "who's", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'remember', 'that', 'guy', 'who', 'opened', 'the', 'restaurant', 'across', 'the', 'street', 'from', 'the', 'building', 'last', 'year', 'and', 'he', "wasn't", 'doing', 'so', 'well', 'and', 'i', 'told', 'him', 'he', 'should', 'make', 'it', 'into', 'all', 'pakistani', 'and', 'that', 'drove', 'him', 'right', 'out', 'of', 'business', '||questionmark||', 'so', '||comma||', 'you', 'uh', '||comma||', 'going', 'with', 'me', 'to', 'the', 'auto', 'show', 'with', 'me', 'saturday', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'bring', 'my', 'mail', 'then', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'mail', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'picked', 'up', 'his', 'mail', 'while', 'he', 'was', 'on', 'the', 'road', '||return||', '||return||', 'george:', 'why', "didn't", 'kramer', 'pick', 'it', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'cause', "he's", 'at', 'that', 'baseball', 'fantasy', 'camp', 'in', 'florida', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'right', '||period||', "when's", 'he', 'coming', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'monday', '||comma||', 'i', 'think', '||period||', '||return||', '||return||', 'george:', 'kramer', 'goes', 'to', 'a', 'fantasy', 'camp', '||period||', 'his', 'whole', 'life', 'is', 'a', 'fantasy', 'camp', '||period||', 'people', 'should', 'plunk', 'down', 'two', '||dash||', 'thousand', 'dollars', 'to', 'live', 'like', 'him', 'for', 'a', 'week', '||period||', 'do', 'nothing', '||comma||', 'fall', 'ass', '||dash||', 'backwards', 'into', 'money', '||comma||', 'mooch', 'food', 'off', 'your', 'neighbors', 'and', 'have', 'sex', 'without', 'dating', '||semicolon||', "that's", 'a', 'fantasy', 'camp', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'listen', '||comma||', 'if', "you're", 'gonna', 'go', 'out', 'with', 'this', 'lawyer', '||comma||', 'why', "don't", 'you', 'have', 'dinner', 'with', 'us', 'and', 'then', 'maybe', 'you', 'can', 'go', 'to', 'the', 'auto', 'show', 'with', 'her', 'if', 'you', 'want', '||comma||', 'you', 'know', '||comma||', 'have', 'a', 'little', 'company', '||comma||', 'take', 'the', 'pressure', 'off', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'he', 'never', 'heard', 'of', 'corduroy', '||exclammark||', '||return||', '||return||', 'cheryl:', '||leftparen||', 'howling', 'with', 'laughter', '||rightparen||', 'stop', 'it', '||comma||', "you're", 'killing', 'me', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'he', 'never', 'heard', 'of', 'corduroy', '||exclammark||', 'true', 'story', '||comma||', 'true', 'story', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'think', "i'm", 'better', 'off', 'going', 'one', '||dash||', 'on', '||dash||', 'one', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'why', 'you', 'want', 'to', 'play', 'man', '||dash||', 'to', '||dash||', 'man', 'when', 'you', 'could', 'play', 'a', 'zone', '||period||', '||return||', '||return||', 'george:', 'she', 'might', 'not', 'be', 'comfortable', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', "we're", 'all', 'very', 'nice', '||comma||', "we're", 'very', 'friendly', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'be', 'funny', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'no', '||period||', "it's", 'not', 'good', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'well', 'if', 'you', 'change', 'your', 'mind', '||comma||', "we'll", 'wind', 'up', 'as', "isabella's", 'probably', 'around', 'seven', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', "isabella's", '||comma||', 'i', "don't", 'want', 'to', 'go', 'to', "isabella's", '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'too', 'trendy', '||comma||', 'no', "isabella's", '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'tasting', 'the', 'wine', '||rightparen||', 'excellent', '||period||', 'like', 'i', 'really', 'know', 'what', "i'm", 'talking', 'about', '||period||', '||return||', '||return||', 'george:', 'toasting', 'makes', 'me', 'uncomfortable', '||period||', 'but', 'toast', '||comma||', 'i', 'love', '||period||', 'never', 'start', 'the', 'day', 'without', 'a', 'good', 'piece', 'of', 'toast', '||period||', 'in', 'fact', '||comma||', "let's", 'toast', 'to', 'toast', '||period||', '||return||', '||return||', 'jerry:', 'look', "who's", 'here', '||exclammark||', 'georgie', '||dash||', 'boy', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', 'i', 'thought', 'you', 'said', 'you', 'hated', "isabella's", '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'talked', 'him', 'into', 'it', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'the', 'auto', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "we're", 'still', 'going', '||comma||', "we're", 'still', 'going', '||period||', 'elaine', '||comma||', 'do', 'the', 'spokes', 'model', '||period||', '||return||', '||return||', 'elaine:', 'the', 'turbo', 'quadramatic', 'transmission', 'offers', 'you', 'the', 'power', 'and', 'prestige', 'to', 'propel', 'you', 'well', 'into', 'the', '21st', 'century', '||period||', '||return||', '||return||', 'george:', 'cheryl', '||comma||', 'elaine', '||comma||', 'and', 'uh', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'cheryl:', 'would', 'you', 'like', 'to', 'join', 'us', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', 'no', 'no', '||comma||', 'they', "don't", 'want', 'to', 'join', 'us', '||period||', '||return||', '||return||', 'cheryl:', 'oh', 'no', '||comma||', "it's", 'ok', '||comma||', "don't", 'be', 'silly', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'well', 'why', "don't", 'we', 'just', 'put', 'these', 'two', 'tables', 'together', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'as', 'the', 'others', 'are', 'repositioning', 'the', 'tables', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'you', "can't", 'do', 'that', '||comma||', "they're", 'round', '||comma||', 'it', 'makes', 'an', "'eight'", 'and', '||comma||', 'yeah', '||comma||', 'well', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', 'jerry', '||comma||', 'tell', 'them', 'that', 'funny', 'story', 'you', 'were', 'telling', 'me', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'no', 'george', '||comma||', "it's", 'so', 'funny', '||period||', 'we', 'saw', 'this', 'cab', "driver's", 'picture', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupting', '||rightparen||', 'you', 'know', 'we', 'should', 'really', 'order', '||comma||', 'the', 'service', 'is', 'so', 'slow', 'here', '||comma||', 'by', 'the', 'time', 'you', 'get', 'anything', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'cheryl', '||comma||', 'can', 'i', 'ask', 'you', 'a', 'legal', 'question', '||questionmark||', 'um', '||comma||', "i'm", 'being', 'sued', '||period||', '||return||', '||return||', 'cheryl:', 'oh', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'ran', 'out', 'to', 'apologize', 'to', 'a', 'virgin', 'and', 'i', 'crossed', 'against', 'the', 'light', 'and', 'i', 'knocked', 'over', 'the', 'delivery', 'boy', '||period||', '||return||', '||return||', 'cheryl:', 'was', 'he', 'chinese', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'cheryl:', 'is', 'your', 'last', 'name', 'benes', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'cheryl:', 'ping', 'is', 'my', 'cousin', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'so', 'funny', '||exclammark||', '||return||', '||return||', 'cheryl:', "i'm", 'handling', 'his', 'case', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "you're", 'cheryl', 'fong', '||questionmark||', '||return||', '||return||', 'cheryl:', "that's", 'right', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||comma||', 'i', "can't", 'believe', 'it', '||exclammark||', 'that', 'is', 'such', 'a', 'coincidence', '||exclammark||', '||return||', '||return||', 'cheryl:', 'yeah', '||comma||', 'i', 'know', '||exclammark||', '||return||', '||return||', 'elaine:', 'wow', '||comma||', 'well', '||comma||', 'i', 'guess', 'you', "don't", 'have', 'any', 'advice', 'for', 'me', 'on', 'how', 'to', 'win', 'the', 'case', '||questionmark||', '||return||', '||return||', 'cheryl:', 'will', 'you', 'excuse', 'me', '||questionmark||', 'i', 'have', 'to', 'make', 'a', 'call', '||period||', '||return||', '||return||', 'elaine:', 'tell', 'ping', 'i', 'said', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'him', 'you', 'think', 'you', 'may', 'have', 'broken', 'the', 'case', 'wide', 'open', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'not', 'good', '||period||', 'this', 'is', 'not', 'good', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', "don't", 'think', "it's", 'such', 'a', 'great', 'idea', 'for', 'you', 'to', 'sit', 'here', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'thinks', 'that', 'if', "you're", 'too', 'funny', '||comma||', 'he', 'might', 'not', 'look', 'so', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'biff', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'not', 'worried', 'about', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'so', 'what', 'if', "i'm", 'funny', '||questionmark||', 'who', 'cares', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'thinks', 'that', 'if', 'a', 'woman', 'sees', 'a', 'guy', 'put', 'on', 'a', 'better', 'show', '||comma||', "she'll", 'walk', 'out', 'on', 'his', 'show', '||comma||', 'go', 'see', 'the', 'other', 'show', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'should', 'we', 'leave', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'you', "don't", 'have', 'to', 'be', 'so', 'funny', '||period||', 'i', 'mean', '||comma||', 'would', 'it', 'kill', 'you', 'not', 'to', 'be', 'so', 'funny', 'all', 'the', 'time', '||questionmark||', "that's", 'all', "i'm", 'asking', '||period||', 'this', 'woman', 'thinks', "i'm", 'very', 'funny', '||period||', 'now', "you're", 'gonna', 'be', 'funny', '||comma||', 'so', 'what', 'am', 'i', 'gonna', 'be', '||questionmark||', "i'm", 'gonna', 'be', 'a', 'short', 'bald', 'guy', 'with', 'glasses', 'who', 'suddenly', "doesn't", 'seem', 'so', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'so', 'ridiculous', '||period||', 'can', 'we', 'just', 'go', 'over', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'to', 'be', 'funny', '||comma||', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'george:', 'you', "don't", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'way', '||exclammark||', "it's", 'completely', 'under', 'my', 'control', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "it's", 'not', '||period||', 'you', 'cannot', 'not', 'be', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'i', 'can', '||comma||', 'am', 'i', 'being', 'funny', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'little', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'this', 'is', 'funny', '||questionmark||', "i'm", 'being', 'funny', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'is', 'this', 'funny', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'funny', '||exclammark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'and', 'it', "wouldn't", 'kill', 'you', 'to', 'not', 'be', 'so', 'funny', 'either', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'subdued', '||comma||', 'almost', 'somber', '||rightparen||', 'hello', '||period||', 'welcome', 'back', '||period||', '||return||', '||return||', 'cheryl:', 'sorry', '||comma||', 'it', 'was', 'my', "aunt's", 'birthday', 'and', 'she', 'makes', 'such', 'a', 'big', 'deal', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'nobody', 'likes', 'to', 'get', 'old', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'birthdays', 'are', 'merely', 'symbolic', 'of', 'how', 'another', 'year', 'has', 'gone', 'by', 'and', 'how', 'little', "we've", 'grown', '||period||', 'no', 'matter', 'how', 'desperate', 'we', 'are', 'that', 'someday', 'a', 'better', 'self', 'will', 'emerge', '||comma||', 'with', 'each', 'flicker', 'of', 'the', 'candles', 'on', 'the', 'cake', '||comma||', 'we', 'know', "it's", 'not', 'to', 'be', '||comma||', 'that', 'for', 'the', 'rest', 'of', 'our', 'sad', '||comma||', 'wretched', 'pathetic', 'lives', '||comma||', 'this', 'is', 'who', 'we', 'are', 'to', 'the', 'bitter', 'end', '||period||', 'inevitably', '||comma||', 'irrevocably', '||semicolon||', 'happy', 'birthday', '||questionmark||', 'no', 'such', 'thing', '||period||', '||return||', '||return||', 'george:', 'funny', 'guy', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'here', '||comma||', 'take', 'it', '||period||', 'i', 'was', 'glad', 'to', 'get', 'rid', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', 'thank', 'you', 'very', 'much', '||comma||', "it's", 'about', 'time', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'listen', '||comma||', 'guess', 'what', '||questionmark||', 'cheryl', 'convinced', 'ping', 'to', 'drop', 'the', 'case', 'against', 'me', '||period||', '||return||', '||return||', 'jerry:', 'drop', 'the', 'case', '||questionmark||', 'well', '||comma||', 'congratulations', '||comma||', "that'll", 'save', 'you', 'some', 'money', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'no', 'kidding', '||period||', 'that', 'lawyer', 'was', 'gonna', 'charge', 'me', 'a', 'fortune', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leafing', 'through', 'his', 'mail', '||rightparen||', 'oh', 'great', '||comma||', 'a', 'birth', 'announcement', 'from', 'arnie', 'and', 'joy', 'harris', '||period||', '||return||', '||return||', 'jerry:', 'hear', 'that', '||questionmark||', 'guess', "who's", 'back', '||period||', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', "weren't", 'coming', 'back', 'till', 'monday', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', 'camp', 'ended', 'a', 'few', 'days', 'early', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', 'there', 'was', 'an', 'incident', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'punched', 'mickey', 'mantle', 'in', 'the', 'mouth', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'punched', 'him', 'and', 'they', 'took', 'him', 'to', 'the', 'hospital', 'and', 'then', 'they', 'canceled', 'the', 'rest', 'of', 'the', 'week', '||period||', '||return||', '||return||', 'elaine:', 'you', 'punched', 'who', 'in', 'the', 'mouth', '||questionmark||', '||return||', '||return||', 'kramer:', 'mickey', 'mantle', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'we', 'were', 'playing', 'a', 'game', 'and', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'pitching', '||comma||', 'and', 'i', 'was', 'really', 'throwing', 'some', 'smoke', '||period||', 'and', 'joe', 'pepitone', '||comma||', 'he', 'was', 'up', '||comma||', 'and', 'man', 'that', 'guy', '||comma||', 'you', 'know', '||comma||', 'he', 'was', 'crowding', 'the', 'plate', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', 'joe', 'pepitone', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'joe', 'pepitone', 'or', 'not', '||comma||', 'i', 'own', 'the', 'inside', 'of', 'that', 'plate', '||period||', 'so', 'i', 'throw', 'one', '||comma||', 'you', 'know', '||comma||', 'inside', '||comma||', 'you', 'know', '||comma||', 'a', 'little', 'chin', 'music', '||comma||', 'put', 'him', 'right', 'on', 'his', 'pants', '||period||', 'cause', 'i', 'gotta', 'intimidate', 'when', "i'm", 'on', 'the', 'mound', '||period||', 'well', 'the', 'next', 'pitch', '||comma||', "he's", 'right', 'back', 'in', 'the', 'same', 'place', '||period||', 'so', '||comma||', 'i', 'had', 'to', 'plunk', 'him', '||period||', '||return||', '||return||', 'jerry:', 'you', 'plunked', 'him', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'well', '||comma||', 'he', 'throws', 'down', 'his', 'bat', '||comma||', 'he', 'comes', 'racing', 'up', 'to', 'the', 'mound', '||period||', 'next', 'thing', '||comma||', 'both', 'benches', 'are', 'cleared', '||comma||', 'you', 'know', '||questionmark||', 'a', 'brouhaha', 'breaks', 'out', 'between', 'the', 'guys', 'in', 'the', 'camp', '||comma||', 'you', 'know', '||comma||', 'and', 'the', 'old', 'yankee', 'players', '||comma||', 'and', 'as', "i'm", 'trying', 'to', 'get', 'moose', 'skowron', 'off', 'of', 'one', 'of', 'my', 'teammates', '||comma||', 'you', 'know', '||comma||', 'somebody', 'pulls', 'me', 'from', 'behind', '||comma||', 'you', 'know', '||comma||', 'and', 'i', 'turned', 'around', 'and', 'i', 'popped', 'him', '||period||', 'i', 'looked', 'down', '||comma||', 'and', 'woah', 'man', '||comma||', "it's", 'mickey', '||period||', 'i', 'punched', 'his', 'lights', 'out', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'this', 'is', 'incredible', '||exclammark||', '||return||', '||return||', 'babu:', 'leave', 'me', 'alone', '||exclammark||', 'you', "can't", 'do', 'this', 'to', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', 'out', 'there', '||questionmark||', '||return||', '||return||', 'babu:', 'what', 'are', 'you', 'doing', '||questionmark||', 'this', 'is', 'not', 'right', '||comma||', 'people', '||period||', "you're", 'making', 'a', 'very', 'bad', 'mistake', '||comma||', 'very', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'babu', '||questionmark||', '||leftparen||', 'leaving', '||rightparen||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'then', 'hank', 'bauer', '||comma||', 'you', 'know', '||comma||', "he's", 'screaming', '||comma||', '||quotemark||', 'mickey', '||exclammark||', 'mickey', '||exclammark||', 'what', 'have', 'you', 'done', 'with', 'mickey', '||questionmark||', 'you', 'killed', 'mickey', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'so', "what'd", 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'got', 'the', 'hell', 'out', 'of', 'there', '||period||', '||return||', '||return||', 'elaine:', 'they', 'took', 'babu', 'away', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'the', 'immigration', 'guy', 'said', 'his', 'visa', 'was', 'expired', '||period||', 'poor', 'babu', '||comma||', 'everything', 'was', 'going', 'so', 'well', 'for', 'him', '||period||', 'he', 'had', 'an', 'apartment', '||comma||', 'he', 'had', 'a', 'job', '||period||', 'what', 'a', 'shame', '||period||', '||return||', '||return||', 'jerry:', 'i', 'will', '||comma||', 'babu', '||exclammark||', 'i', 'will', 'help', 'you', '||comma||', 'babu', '||comma||', "don't", 'worry', '||exclammark||', '||return||', '||return||', 'kramer:', 'then', 'hank', 'bauer', '||comma||', 'you', 'know', '||comma||', "he's", 'chasing', 'me', 'around', '||comma||', 'he', 'trips', 'over', 'third', 'base', 'and', 'knocks', 'over', 'clete', 'boyer', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thumbing', 'through', 'his', 'mail', '||rightparen||', 'uh', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'this', 'is', 'interesting', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'letter', 'from', 'the', 'immigration', 'bureau', '||comma||', "it's", "babu's", 'visa', 'renewal', 'application', 'form', '||period||', 'they', 'must', 'have', 'put', 'it', 'in', 'my', 'mailbox', 'by', 'mistake', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "doesn't", 'he', 'need', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'you', 'had', 'given', 'me', 'my', 'mail', 'last', 'week', 'when', 'i', 'got', 'home', '||comma||', 'this', 'whole', 'thing', 'never', 'would', 'have', 'happened', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'should', 'have', 'come', 'to', 'my', 'house', 'to', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'am', 'i', 'being', 'funny', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'actually', '||comma||', "you're", 'not', 'being', 'funny', 'now', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'i', 'told', 'you', 'i', "wasn't", 'funny', 'all', 'the', 'time', '||period||', '||leftparen||', 'george', 'enters', '||rightparen||', 'hey', 'george', '||comma||', 'look', '||comma||', "i'm", 'not', 'funny', 'now', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'and', 'you', "weren't", 'funny', 'last', 'night', 'either', '||period||', 'in', 'fact', '||comma||', 'you', 'got', 'us', 'both', 'so', 'depressed', '||comma||', 'she', 'asked', 'me', 'to', 'drive', 'her', 'home', 'after', 'dinner', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'look', '||comma||', 'i', 'need', 'to', 'get', 'in', 'touch', 'with', 'cheryl', '||period||', 'babu', 'needs', 'a', 'lawyer', '||comma||', 'his', "visa's", 'expired', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'need', 'her', 'for', '||questionmark||', "there's", 'a', 'million', 'lawyers', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'you', 'said', 'this', 'is', 'one', 'of', 'the', 'things', 'that', 'her', 'firm', 'does', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||comma||', 'but', 'no', 'funny', 'business', '||comma||', 'same', 'deal', 'as', 'last', 'night', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'will', 'you', 'stop', 'it', 'already', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'long', 'is', 'this', 'gonna', 'go', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'till', "i'm", 'comfortable', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'when', 'is', 'that', 'gonna', 'be', '||questionmark||', '||return||', '||return||', 'george:', 'after', 'consummation', '||period||', '||return||', '||return||', 'jerry:', 'consummation', '||questionmark||', 'i', "don't", 'think', 'you', 'have', 'enough', 'material', '||period||', '||return||', '||return||', 'cheryl:', 'i', 'actually', 'have', 'a', 'friend', 'in', 'the', 'immigration', 'department', 'who', 'owes', 'me', 'a', 'big', 'favor', '||period||', "you're", 'very', 'lucky', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'somber', '||rightparen||', "that's", 'wonderful', 'news', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'cheryl:', "you're", 'a', 'very', 'serious', 'person', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'with', 'so', 'many', 'people', 'in', 'the', 'world', 'deprived', 'and', 'unhappy', '||comma||', 'it', "doesn't", 'seem', 'like', 'it', 'would', 'be', 'fair', 'to', 'be', 'cheerful', '||period||', '||return||', '||return||', 'cheryl:', 'i', 'understand', '||period||', '||return||', '||return||', 'cheryl:', 'i', 'think', "it's", 'curdled', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'cheryl:', 'do', 'you', 'ever', 'laugh', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'really', '||period||', 'sometimes', '||comma||', 'when', "i'm", 'in', 'the', 'tub', '||period||', '||return||', '||return||', 'cheryl:', "that's", 'so', 'sad', '||period||', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'a', 'comedian', '||period||', 'oh', '||comma||', 'let', 'me', 'get', 'that', '||period||', '||leftparen||', 'reaching', 'for', 'the', 'check', '||rightparen||', "you've", 'been', 'so', 'helpful', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'entering', 'as', 'jerry', 'heads', 'to', 'the', 'register', '||rightparen||', 'hey', '||comma||', "we're", 'gonna', 'go', 'see', 'babu', 'now', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'll", 'just', 'pay', 'for', 'this', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'just', 'gonna', 'go', 'say', 'hi', 'to', 'cheryl', '||period||', '||leftparen||', 'walking', 'over', 'to', 'the', 'booth', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'cheryl:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'gosh', '||comma||', 'i', 'wanted', 'to', 'thank', 'you', 'so', 'much', 'for', 'convincing', 'ping', 'to', 'drop', 'the', 'case', '||period||', '||return||', '||return||', 'cheryl:', 'well', '||comma||', 'after', 'we', 'met', '||comma||', 'you', 'were', 'all', 'so', 'nice', '||period||', 'i', 'just', "couldn't", 'go', 'through', 'with', 'it', '||period||', 'but', 'between', 'you', 'and', 'me', '||comma||', 'you', 'would', 'have', 'paid', 'through', 'the', 'nose', '||period||', '||return||', '||return||', 'jerry:', 'babu', '||exclammark||', '||return||', '||return||', 'babu:', 'jerry', '||exclammark||', 'jerry', '||comma||', 'hello', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'remember', 'elaine', '||period||', '||return||', '||return||', 'babu:', 'yes', '||comma||', 'yes', 'of', 'course', '||exclammark||', '||return||', '||return||', 'elaine:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'babu:', 'so', 'nice', 'of', 'you', 'both', 'to', 'come', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'babu', '||period||', '||return||', '||return||', 'babu:', 'no', 'no', '||comma||', "you're", 'both', 'very', 'kind', '||comma||', 'very', 'kind', '||period||', '||return||', '||return||', 'elaine:', 'we', 'try', '||period||', '||return||', '||return||', 'jerry:', 'we', 'do', 'what', 'we', 'can', '||period||', '||return||', '||return||', 'elaine:', 'we', 'do', 'what', 'we', 'can', '||period||', '||return||', '||return||', 'babu:', 'the', 'problem', 'is', 'i', 'never', 'got', 'my', 'visa', 'renewal', 'form', 'in', 'the', 'mail', '||period||', 'i', 'was', 'expecting', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'well', '||comma||', 'see', '||comma||', "here's", 'the', 'thing', '||comma||', 'babu', '||period||', 'um', '||comma||', 'what', 'happened', 'was', 'i', 'was', 'away', 'for', 'a', 'couple', 'of', 'weeks', 'doing', 'some', 'comedy', 'shows', '||period||', '||return||', '||return||', 'babu:', 'comedy', 'shows', '||exclammark||', "you're", 'a', 'very', 'funny', 'man', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'elaine', 'here', 'was', 'picking', 'up', 'my', 'mail', 'while', 'i', 'was', 'away', '||comma||', 'because', 'you', 'know', 'that', 'little', 'box', 'can', 'get', 'very', 'full', '||period||', '||return||', '||return||', 'babu:', 'oh', 'yes', '||comma||', 'of', 'course', '||period||', 'tv', 'guide', '||comma||', 'magazines', '||comma||', 'everything', '||period||', 'you', 'know', '||comma||', 'i', 'would', 'have', 'picked', 'up', 'your', 'mail', '||comma||', 'your', 'box', 'is', 'right', 'next', 'to', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "don't", 'want', 'to', 'bother', 'you', '||period||', '||return||', '||return||', 'babu:', 'no', 'bother', '||exclammark||', 'you', 'get', 'me', 'job', '||comma||', 'you', 'get', 'me', 'apartment', '||comma||', 'you', 'very', 'very', 'good', 'man', '||period||', '||return||', '||return||', 'jerry:', 'so', 'yesterday', '||comma||', 'after', 'they', 'took', 'you', 'away', '||comma||', 'i', 'looked', 'in', 'my', 'mail', 'and', 'i', 'noticed', 'that', 'the', 'mailman', 'accidentally', 'put', 'your', 'visa', 'renewal', 'in', 'my', 'mail', 'box', '||period||', '||return||', '||return||', 'babu:', 'come', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'see', '||comma||', "i've", 'been', 'home', 'for', 'a', 'week', 'and', 'elaine', "didn't", 'give', 'me', 'my', 'mail', 'until', 'yesterday', '||comma||', 'even', 'though', 'i', 'asked', 'her', 'repeatedly', 'for', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'babu', '||comma||', 'he', 'could', 'have', 'come', 'to', 'my', 'house', 'to', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'babu:', 'you', 'had', 'my', 'visa', 'application', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'not', 'technically', '||period||', '||return||', '||return||', 'babu:', '||leftparen||', 'extremely', 'and', 'suddenly', 'agitated', '||rightparen||', 'i', 'kill', 'you', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'what', 'about', 'her', '||questionmark||', '||return||', '||return||', 'babu:', 'i', 'kill', 'both', 'of', 'you', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'babu', '||questionmark||', '||exclammark||', '||return||', '||return||', 'babu:', 'no', 'babu', '||exclammark||', 'no', 'babu', '||exclammark||', 'you', 'bad', 'man', '||exclammark||', 'you', 'very', 'bad', 'man', '||exclammark||', 'you', 'very', 'lazy', 'bad', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', 'babu', '||comma||', "i'm", 'gonna', 'fix', 'everything', '||exclammark||', 'i', 'have', 'a', 'lawyer', 'who', 'knows', 'someone', 'in', 'the', 'immigration', 'department', '||comma||', "they're", 'gonna', 'straighten', 'the', 'whole', 'thing', 'out', '||comma||', 'the', 'wheels', 'are', 'in', 'motion', '||comma||', 'things', 'are', 'happening', 'even', 'as', 'we', 'speak', '||exclammark||', '||return||', '||return||', 'babu:', 'the', 'wheels', 'are', 'in', 'motion', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'wheels', 'are', 'in', 'motion', '||comma||', 'things', 'are', 'happening', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', '||return||', '||return||', 'cheryl:', "i'm", 'very', 'attracted', 'to', 'him', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'the', 'person', 'you', 'were', 'talking', 'to', 'is', 'him', '||questionmark||', "that's", 'not', 'even', 'close', 'to', 'him', '||period||', "he's", 'funny', '||comma||', "jerry's", 'funny', '||period||', '||return||', '||return||', 'cheryl:', 'he', 'never', 'said', 'anything', 'funny', '||period||', '||return||', '||return||', 'george:', 'he', "can't", 'not', 'be', 'funny', '||period||', '||return||', '||return||', 'cheryl:', 'no', 'no', 'no', '||comma||', "he's", 'dark', '||period||', 'and', 'disturbed', '||period||', '||return||', '||return||', 'george:', 'dark', 'and', 'disturbed', '||questionmark||', 'his', 'whole', 'life', 'revolves', 'around', 'superman', 'and', 'cereal', '||period||', 'i', 'convinced', 'him', 'to', 'act', 'like', 'that', 'so', 'that', 'you', 'would', 'think', 'i', 'was', 'funnier', '||period||', "that's", 'how', 'disturbed', 'i', 'am', '||exclammark||', 'if', 'you', 'want', 'disturbed', '||comma||', "that's", 'disturbed', '||period||', 'you', "can't", 'find', 'sickness', 'like', 'that', 'anywhere', '||comma||', 'you', 'think', 'sickness', 'like', 'that', 'grows', 'on', 'trees', '||questionmark||', 'nobody', 'is', 'sicker', 'than', 'me', '||comma||', 'nobody', '||period||', "he's", 'pretending', '||comma||', "i'm", 'the', 'genuine', 'article', '||period||', '||return||', '||return||', 'cheryl:', 'so', "you're", 'telling', 'me', "jerry's", 'whole', 'thing', 'was', 'an', 'act', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'and', 'i', 'put', 'him', 'up', 'to', 'it', '||comma||', 'because', "i'm", 'sick', '||exclammark||', "i'm", 'the', 'one', 'that', 'needs', 'help', '||period||', '||return||', '||return||', 'cheryl:', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'should', 'i', 'call', 'you', 'later', '||questionmark||', '||return||', '||return||', 'cheryl:', 'please', "don't", '||period||', '||return||', '||return||', 'george:', 'but', '||comma||', 'but', "i'm", 'disturbed', '||exclammark||', "i'm", 'depressed', '||exclammark||', "i'm", 'inadequate', '||exclammark||', 'i', 'got', 'it', 'all', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "what's", 'up', 'with', 'babu', '||questionmark||', 'how', 'come', "he's", 'not', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'i', "don't", 'understand', 'it', '||period||', 'cheryl', 'was', 'supposed', 'to', 'take', 'care', '||return||', '||return||', 'george:', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', "c'mon", 'up', '||period||', '||return||', '||return||', 'jerry:', 'babu', 'must', 'be', 'back', '||period||', '||return||', '||return||', "babu's", 'brother:', 'babu', '||comma||', 'my', 'goodness', '||comma||', 'what', 'has', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "where's", 'babu', '||questionmark||', '||return||', '||return||', "babu's", 'brother:', 'he', 'is', 'in', 'pakistan', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', "babu's", 'brother:', 'i', 'am', 'his', 'brother', '||period||', 'he', 'knew', 'a', 'lawyer', '||comma||', 'it', 'was', 'all', 'going', 'to', 'be', 'fixed', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sure', 'the', 'lawyer', 'did', 'everything', 'they', 'could', '||period||', '||return||', '||return||', "babu's", 'brother:', 'then', 'where', 'is', 'babu', '||questionmark||', 'what', 'happened', 'to', 'babu', '||questionmark||', 'show', 'me', 'babu', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'offering', 'a', 'drink', '||rightparen||', 'snapple', '||questionmark||', '||return||', '||return||', "babu's", 'brother:', 'no', '||comma||', 'too', 'fruity', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'happened', '||questionmark||', 'i', 'thought', 'cheryl', 'was', 'gonna', 'help', 'babu', 'get', 'his', 'visa', '||period||', '||return||', '||return||', 'george:', 'she', "didn't", 'help', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'where', 'is', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'in', 'pakistan', '||period||', '||return||', '||return||', 'george:', 'oh', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||comma||', 'oh', 'boy', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'last', 'night', 'she', 'told', 'me', 'that', 'she', 'liked', 'you', '||period||', 'not', 'you', '||comma||', 'the', 'disturbed', 'you', '||comma||', 'so', 'i', 'had', 'to', 'tell', 'her', 'the', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'told', 'her', 'the', 'truth', '||questionmark||', 'well', '||comma||', 'you', 'got', 'babu', 'deported', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||comma||', 'i', 'got', '||questionmark||', 'you', "didn't", 'give', 'him', 'his', 'visa', 'application', '||period||', '||return||', '||return||', 'jerry:', "that's", 'because', 'she', 'had', 'my', 'mail', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', 'i', "wouldn't", 'have', 'had', 'to', 'get', 'your', 'mail', 'if', 'he', "hadn't", 'gone', 'to', 'that', 'fantasy', 'camp', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'just', 'came', 'back', 'from', 'mickey', "mantle's", 'restaurant', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'go', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'had', 'to', '||period||', 'i', 'had', 'to', 'apologize', '||period||', 'i', 'mean', '||comma||', 'i', 'punched', 'mickey', 'mantle', '||comma||', 'my', 'idol', '||period||', 'it', 'was', 'eating', 'me', 'up', 'inside', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'down', 'in', 'my', 'knees', 'and', 'went', '||comma||', '||quotemark||', 'go', 'ahead', '||comma||', 'mickey', '||period||', 'hit', 'me', '||period||', "i'm", 'begging', 'you', '||comma||', 'mickey', '||comma||', 'please', 'hit', 'me', '||period||', "c'mon", '||comma||', 'hit', 'me', '||period||', 'i', 'love', 'you', '||comma||', 'mickey', '||comma||', 'i', 'love', 'you', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'what', 'did', 'he', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', 'four', 'of', 'them', '||comma||', 'they', 'picked', 'me', 'up', 'by', 'my', 'pants', 'and', 'they', 'threw', 'me', 'outside', '||comma||', 'right', 'into', 'a', 'horse', '||period||', '||return||', '||return||', 'voice:', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||questionmark||', "it's", 'my', 'chinese', 'food', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'ping', '||exclammark||', 'hi', '||exclammark||', 'listen', '||comma||', 'thank', 'you', 'so', 'much', 'for', 'dropping', 'that', 'lawsuit', 'against', 'me', '||period||', '||return||', '||return||', 'ping:', 'not', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'ping:', 'cheryl', 'call', 'me', 'last', 'night', '||comma||', 'lawsuit', 'back', 'on', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'ping:', 'she', 'call', 'you', 'and', 'your', 'friends', 'big', 'liars', '||period||', 'you', 'think', 'she', 'nice', 'girl', '||questionmark||', 'wait', 'till', 'you', 'see', 'her', 'in', 'court', '||period||', "she's", 'a', 'shark', '||exclammark||', 'they', 'call', 'her', 'the', 'terminator', '||period||', 'she', 'never', 'lose', 'a', 'case', '||period||', 'now', 'you', 'make', 'her', 'mad', '||period||', 'she', 'double', 'the', 'damages', '||period||', 'hasta', 'la', 'vista', '||comma||', 'baby', '||period||', '||return||', '||return||', 'babu:', 'so', 'his', 'friend', 'got', 'the', 'mail', 'but', 'she', 'did', 'not', 'give', 'it', 'to', 'him', '||period||', 'and', 'then', 'he', 'came', 'to', 'visit', 'me', '||period||', 'said', 'the', 'lawyer', 'was', 'called', 'to', 'help', '||comma||', 'he', 'said', 'the', 'wheels', 'were', 'in', 'motion', '||comma||', 'but', 'there', 'was', 'no', 'motion', '||period||', 'there', 'was', 'nothing', '||period||', 'and', 'so', 'they', 'sent', 'me', 'back', 'here', '||period||', '||return||', '||return||', "babu's", 'friend:', 'this', 'is', 'a', 'terrible', 'story', '||comma||', 'babu', '||period||', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'babu:', "i'm", 'going', 'to', 'save', 'up', 'every', 'rupee', '||period||', 'someday', '||comma||', 'i', 'will', 'get', 'back', 'to', 'america', '||comma||', 'and', 'when', 'i', 'do', 'i', 'will', 'exact', 'vengeance', 'on', 'this', 'man', '||period||', 'i', 'cannot', 'forget', 'him', '||period||', 'he', 'haunts', 'me', '||period||', 'he', 'is', 'a', 'very', 'bad', 'man', '||period||', 'he', 'is', 'a', 'very', 'very', 'bad', 'man', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'writing', 'on', 'a', 'notepad', '||rightparen||', ':', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'and', 'then', 'the', 'butler', 'says', '||comma||', '||quotemark||', "i'm", 'not', "cleanin'", 'it', 'up', '||exclammark||', "i'm", 'sick', 'of', 'cleaning', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry', '||leftparen||', 'copying', 'it', 'down', 'and', 'grinning', '||rightparen||', ':', "that's", 'funny', '||comma||', "that's", 'funny', '||exclammark||', '||quotemark||', "i'm", 'sick', 'of', 'cleaning', '||period||', '||quotemark||', "that's", 'very', 'funny', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'laughing', '||rightparen||', ':', "i'll", 'tell', 'you', 'something', '||comma||', "i've", 'never', 'seen', 'a', 'pilot', 'script', 'as', 'funny', 'as', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'funny', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'how', 'funny', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'low', 'voice', '||rightparen||', ':', "it's", 'funny', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', "we're", 'not', 'stupid', '||comma||', 'right', '||questionmark||', 'we', 'know', 'when', "something's", 'funny', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'cannot', 'not', 'be', 'funny', '||exclammark||', 'now', 'come', 'on', '||comma||', "let's", 'stay', 'with', 'it', '||comma||', 'we', 'gotta', 'finish', 'this', 'today', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', 'hey', '||comma||', 'you', 'know', 'what', '||comma||', 'maybe', 'i', 'should', 'give', 'it', 'to', 'my', 'therapist', 'to', 'read', '||period||', "she's", 'smart', '||comma||', 'i', 'trust', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'maybe', "i'll", 'give', 'it', 'to', 'elaine', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'know', '||comma||', 'we', "haven't", 'brought', 'the', 'elaine', 'character', 'into', 'the', 'show', 'yet', '||period||', 'umm', '||comma||', 'we', 'should', 'try', 'and', 'get', 'her', 'into', 'this', 'scene', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'right', '||period||', 'okay', '||period||', '||leftparen||', 'writing', '||rightparen||', 'elaine', 'enters', '||period||', '||return||', '||return||', 'george:', 'right', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinks', '||rightparen||', 'what', 'does', 'she', 'say', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'thinking', '||rightparen||', ':', 'i', "don't", 'know', '||comma||', 'what', 'do', 'women', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'know', 'what', 'they', 'think', '||period||', "that's", 'why', "i'm", 'in', 'therapy', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'we', 'bring', 'elaine', 'in', '||comma||', "it's", 'going', 'to', 'be', 'so', 'many', 'people', 'to', 'keep', 'track', 'of', '||period||', "it's", 'gonna', 'be', 'too', 'hard', '||comma||', "i'll", 'forget', 'where', "everybody's", 'standing', '||comma||', 'you', '||comma||', 'me', '||comma||', 'kramer', '||comma||', 'the', 'butler', '||comma||', "it's", 'too', 'much', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'forget', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||leftparen||', 'they', 'tear', 'the', 'pages', 'out', 'of', 'their', 'notepads', '||period||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'you', 'are', 'never', 'gonna', 'believe', 'who', 'i', 'just', 'ran', 'into', 'today', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'your', 'old', 'flame', '||period||', 'gail', 'cunningham', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'talk', 'to', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'on', 'my', 'way', 'to', 'the', 'y', '||comma||', 'and', 'i', 'saw', 'her', 'coming', 'towards', 'me', '||questionmark||', 'i', "didn't", 'know', 'what', 'to', 'do', '||exclammark||', 'because', 'i', 'remembered', 'you', 'had', 'three', 'dates', 'with', 'her', 'and', 'she', "wouldn't", 'kiss', 'you', 'goodnight', '||period||', 'so', 'now', "i'm", 'thinking', 'you', 'know', '||comma||', 'what', 'is', 'my', 'duty', 'to', 'my', 'friend', '||questionmark||', 'do', 'i', 'acknowledge', 'her', '||questionmark||', 'do', 'i', 'you', 'know', 'ignore', 'her', '||questionmark||', 'i', 'mean', '||comma||', 'what', 'is', 'my', 'responsibility', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'so', 'she', 'sees', 'me', 'and', 'she', 'goes', '||comma||', '||leftparen||', 'imitates', 'gail', '||rightparen||', '||quotemark||', 'oh', '||comma||', 'hi', '||exclammark||', 'kramer', '||exclammark||', '||quotemark||', 'you', 'know', '||questionmark||', 'like', 'nothing', 'happened', '||exclammark||', 'like', 'she', 'never', 'you', 'know', 'went', 'three', 'dates', 'with', 'you', 'and', 'refused', 'to', 'kiss', 'you', 'goodnight', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', 'about', 'the', 'three', 'dates', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'i', 'did', '||questionmark||', 'i', 'snubbed', 'her', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||comma||', 'you', 'snubbed', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'walked', 'right', 'by', 'her', '||dash||', 'bffffft', '||dash||', 'never', 'said', 'a', 'word', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'smiling', '||rightparen||', ':', 'right', 'by', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'by', 'her', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'george', '||comma||', 'hugs', 'kramer', 'happily', '||rightparen||', ':', 'what', 'you', 'do', 'say', 'about', 'a', 'guy', 'like', 'this', '||comma||', 'huh', '||exclammark||', '||leftparen||', 'george', 'applauds', '||period||', '||rightparen||', 'you', 'are', 'some', 'great', 'friend', '||comma||', 'i', 'tell', 'ya', '||comma||', 'snubbed', 'her', '||exclammark||', '||leftparen||', 'seriously', '||rightparen||', 'not', 'that', 'i', 'condone', 'it', '||period||', "i've", 'never', 'condoned', 'snubbing', 'in', 'my', 'administration', '||period||', 'but', 'your', 'loyalty', 'is', 'beyond', 'question', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'well', '||comma||', 'you', 'know', '||comma||', 'she', 'was', 'lucky', 'i', 'was', 'in', 'a', 'good', 'mood', '||dash||', 'coulda', 'been', 'a', 'lot', 'worse', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'throws', 'the', 'script', 'at', 'jerry', '||rightparen||', ':', "i'm", 'not', 'even', 'in', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'thought', 'there', 'was', 'going', 'to', 'be', 'a', 'character', 'named', 'elaine', 'benes', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'there', 'were', 'too', 'many', 'people', 'in', 'the', 'room', '||comma||', 'we', "couldn't", 'keep', 'track', 'of', 'everybody', '||period||', 'george', '||comma||', 'and', 'the', 'butler', '||comma||', 'and', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', "couldn't", '||quotemark||', 'keep', 'track', '||quotemark||', 'of', 'everybody', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'tried', '||period||', 'we', "couldn't", '||period||', 'we', "didn't", 'know', 'how', 'to', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'confessing', '||rightparen||', '||period||', '||period||', '||period||', 'we', "couldn't", 'write', 'for', 'a', 'woman', '||period||', 'we', "didn't", 'know', 'what', 'you', 'would', 'say', '||period||', 'even', 'right', 'now', '||comma||', "i'm", 'sitting', 'here', '||comma||', 'i', 'know', "you're", 'going', 'to', 'say', 'something', '||comma||', 'i', 'have', 'no', 'idea', 'what', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'you', 'have', 'no', 'idea', '||questionmark||', '||return||', '||return||', 'jerry:', 'something', 'derogatory', '||questionmark||', '||leftparen||', 'gail', 'enters', 'the', 'coffee', 'shop', 'and', 'walks', 'over', 'to', 'the', 'booth', '||period||', '||rightparen||', '||return||', '||return||', 'gail', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'i', 'thought', "i'd", 'find', 'you', 'here', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'gail', 'cunningham', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'gail', '||period||', '||return||', '||return||', 'gail:', 'hi', '||comma||', 'elaine', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'what', 'is', 'with', 'your', 'friend', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'gail:', 'he', 'snubbed', 'me', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'gail:', 'yeah', '||comma||', "i'm", 'sure', '||period||', 'what', 'did', 'you', 'tell', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||leftparen||', 'elaine', 'grabs', "jerry's", 'sandwich', 'and', 'is', 'about', 'to', 'take', 'a', 'bite', '||period||', '||rightparen||', 'hey', '||comma||', 'where', 'you', "goin'", 'with', 'that', '||questionmark||', 'gimme', 'that', '||period||', '||leftparen||', 'takes', 'back', 'the', 'sandwich', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'were', 'finished', '||period||', '||return||', '||return||', 'jerry:', 'i', 'took', 'two', 'bites', '||comma||', 'how', 'am', 'i', 'finished', '||questionmark||', '||leftparen||', 'elaine', 'coughs', '||period||', '||rightparen||', 'plus', "you're", 'coming', 'down', 'with', 'something', '||questionmark||', 'you', 'want', 'me', 'to', 'get', 'sick', '||questionmark||', '||leftparen||', 'offers', 'gail', 'the', 'sandwich', '||rightparen||', 'bite', '||questionmark||', '||return||', '||return||', 'gail:', 'so', '||comma||', 'how', 'come', '||questionmark||', 'why', 'did', 'kramer', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'once', 'he', 'leaves', 'the', 'building', '||comma||', "he's", 'out', 'of', 'my', 'jurisdiction', '||period||', '||return||', '||return||', 'gail:', 'well', '||comma||', 'tell', 'him', 'that', 'i', 'am', 'mad', 'at', 'him', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'so', '||comma||', 'where', 'ya', "cookin'", 'now', '||questionmark||', '||return||', '||return||', 'gail:', "pfeiffer's", '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'the', 'power', 'lunch', 'crowd', '||period||', '||return||', '||return||', 'gail', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'nice', 'shoes', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'gail:', "where'd", 'you', 'get', "'em", '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'modest', '||rightparen||', ':', "they're", 'um', '||comma||', "botticelli's", '||period||', '||return||', '||return||', 'gail', '||leftparen||', 'impressed', '||rightparen||', ':', 'ooh', '||comma||', "botticelli's", '||exclammark||', 'look', 'at', 'you', '||exclammark||', "i'm", 'afraid', 'to', 'go', 'in', 'there', '||period||', '||return||', '||return||', 'elaine:', 'really', '||period||', '||return||', '||return||', 'jerry:', 'would', 'you', 'care', 'to', 'join', 'us', '||questionmark||', '||return||', '||return||', 'gail:', 'no', '||comma||', 'no', '||comma||', 'i', 'gotta', 'get', 'to', 'the', 'restaurant', '||period||', '||leftparen||', 'looks', 'at', 'her', 'watch', '||period||', '||rightparen||', 'oh', '||exclammark||', 'see', 'ya', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'see', 'ya', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'irritated', '||comma||', 'imitates', 'gail', '||rightparen||', ':', '||quotemark||', 'oh', '||comma||', 'look', 'at', 'you', '||comma||', 'the', "botticelli's", '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'that', 'bothered', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'it', 'bothered', 'me', '||period||', 'so', 'i', 'bought', 'a', 'pair', 'of', 'shoes', 'at', "botticelli's", '||comma||', "i'm", 'not', 'allowed', 'to', 'shop', 'there', '||questionmark||', 'that', 'really', 'embarrassed', 'me', '||period||', '||return||', '||return||', 'jerry:', 'it', 'did', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', "couldn't", 'you', 'see', 'that', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'thinks', '||rightparen||', ':', 'no', '||period||', 'this', 'is', 'why', "you're", 'not', 'in', 'the', 'pilot', '||period||', '||return||', '||return||', 'dana:', 'well', '||comma||', 'george', '||comma||', 'i', 'think', "you're", 'beginning', 'to', 'get', 'some', 'perspective', 'on', 'things', '||period||', 'i', 'think', "we're", 'making', 'progress', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'feel', 'like', "i've", 'grown', '||period||', '||return||', '||return||', 'dana:', 'good', '||period||', 'so', '||comma||', "let's", 'pick', 'up', 'on', 'this', 'next', 'week', '||period||', '||return||', '||return||', 'george:', 'great', '||period||', '||leftparen||', 'they', 'both', 'stand', '||period||', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'did', 'you', 'get', 'a', 'chance', 'to', 'read', 'the', 'script', '||questionmark||', '||return||', '||return||', 'dana:', 'yes', '||comma||', 'yes', 'i', 'did', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'beaming', '||rightparen||', ':', 'well', '||comma||', "what'd", 'you', 'think', '||questionmark||', '||return||', '||return||', 'dana', '||leftparen||', 'unenthusiastic', '||rightparen||', ':', 'uh', '||period||', '||period||', '||period||', 'it', 'was', '||period||', '||period||', '||period||', 'good', '||period||', '||return||', '||return||', 'george:', 'you', "didn't", 'like', 'it', '||questionmark||', '||return||', '||return||', 'dana:', 'well', '||comma||', 'no', '||comma||', 'i', '||dash||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'this', '||exclammark||', 'what', 'was', 'wrong', 'with', 'it', '||questionmark||', 'what', "didn't", 'you', 'like', 'about', 'it', '||questionmark||', '||return||', '||return||', 'dana:', 'it', "wasn't", 'funny', '||period||', '||return||', '||return||', 'george:', 'it', "wasn't", 'funny', '||questionmark||', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', '||return||', '||return||', 'dana:', 'no', '||comma||', 'i', "didn't", 'find', 'it', 'funny', '||period||', '||return||', '||return||', 'george:', 'you', "didn't", 'find', 'it', 'funny', '||questionmark||', '||exclammark||', 'this', 'is', 'what', "i'm", 'paying', 'for', '||questionmark||', '||return||', '||return||', 'dana:', 'well', '||comma||', 'that', 'whole', 'storyline', 'about', 'a', 'guy', 'who', 'gets', 'into', 'a', 'car', 'accident', '||comma||', "doesn't", 'have', 'any', 'insurance', '||comma||', 'so', 'the', 'judge', 'sentences', 'him', 'to', 'be', 'a', 'butler', '||questionmark||', 'i', "didn't", 'really', 'buy', 'that', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'tell', 'you', 'who', 'did', '||comma||', 'uh', '||comma||', 'buy', 'it', '||period||', '||period||', '||period||', 'um', 'we', 'pitched', 'this', 'story', 'to', 'russell', 'dalrymple', '||comma||', 'the', 'president', 'of', 'nbc', '||comma||', 'and', 'he', 'ate', 'it', 'up', 'with', 'a', 'spoon', '||period||', '||return||', '||return||', 'dana:', 'george', '||comma||', 'if', "you're", 'going', 'to', 'be', 'in', 'a', 'creative', 'field', '||comma||', "you're", 'going', 'to', 'have', 'to', 'learn', 'how', 'to', 'deal', 'with', 'criticism', '||period||', '||return||', '||return||', 'george:', "how's", 'this', 'for', 'criticism', '||questionmark||', 'um', '||period||', '||period||', '||period||', 'you', 'stink', '||period||', 'how', 'do', 'like', 'that', 'criticism', '||questionmark||', 'you', 'know', "what's", 'funny', 'to', 'me', '||questionmark||', 'that', 'diploma', 'up', 'on', 'the', 'wall', '||period||', 'that', 'is', 'my', 'idea', 'of', '||quotemark||', 'com', '||dash||', 'med', '||dash||', 'dee', '||quotemark||', '||exclammark||', 'you', 'sitting', 'here', '||comma||', 'telling', 'people', 'what', 'to', 'do', '||period||', '||return||', '||return||', 'dana:', 'i', 'think', "you'd", 'better', 'go', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "i'm", "goin'", 'baby', '||period||', "i'm", 'goin', '||period||', "'", '||leftparen||', 'heads', 'for', 'the', 'door', '||comma||', 'then', 'stops', '||period||', '||rightparen||', "it's", "jerry's", 'fault', '||period||', 'he', 'took', 'out', 'all', 'my', 'good', 'lines', '||period||', "he's", 'such', 'a', 'control', 'freak', '||exclammark||', '||return||', '||return||', 'george', '||leftparen||', 'immediately', '||comma||', 'to', 'elaine', '||rightparen||', ':', 'so', '||comma||', 'you', 'send', 'me', 'to', 'this', 'therapist', 'to', 'help', 'me', 'with', 'my', 'emotional', 'disorders', '||comma||', 'and', 'she', 'criticizes', 'our', 'script', '||period||', '||leftparen||', 'tosses', 'the', 'script', 'to', 'jerry', '||period||', '||rightparen||', 'what', 'kind', 'of', 'a', 'therapist', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'guess', 'she', "didn't", 'think', 'it', 'was', 'funny', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'she', "didn't", 'think', 'it', 'was', 'funny', '||period||', 'what', 'is', 'she', '||comma||', 'rowan', '&', 'martin', '||questionmark||', "we're", 'supposed', 'to', 'meet', 'with', 'nbc', 'tomorrow', '||exclammark||', 'she', 'completely', 'shattered', 'my', 'confidence', '||period||', 'and', "i'm", 'paying', 'for', 'this', '||comma||', "she's", 'my', 'employee', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'your', "mother's", 'paying', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'and', 'she', 'slaves', 'to', 'earn', 'every', 'penny', '||period||', 'so', 'that', 'someday', '||comma||', 'i', 'might', 'be', 'able', 'to', 'walk', 'up', 'to', 'a', 'woman', 'and', 'say', '||comma||', '||quotemark||', 'yes', '||comma||', "i'm", 'bald', '||comma||', 'but', "i'm", 'still', 'a', 'good', 'person', '||period||', '||quotemark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'you', 'know', '||comma||', "he's", 'right', '||period||', "it's", 'not', 'her', 'place', 'to', 'criticize', 'the', 'script', '||comma||', 'which', 'reminds', 'me', '||dash||', 'what', 'did', 'you', 'think', 'of', 'it', '||questionmark||', 'you', 'never', 'told', 'me', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'i', 'think', 'of', 'it', '||questionmark||', '||leftparen||', 'manufactures', 'a', 'cough', 'instead', 'of', 'answering', '||period||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'hey', '||comma||', 'buddy', '||comma||', 'i', 'got', 'something', 'to', 'tell', 'ya', '||period||', '||leftparen||', 'elaine', 'runs', 'towards', 'to', 'the', 'bathroom', 'in', 'lieu', 'of', 'answering', "jerry's", 'question', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'catches', 'elaine', '||rightparen||', ':', 'hey', '||comma||', 'one', 'second', '||comma||', 'you', "don't", 'get', 'off', 'that', 'easy', '||period||', "c'mon", '||comma||', 'tell', 'me', 'what', 'you', 'thought', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'just', 'kissed', 'gail', 'cunningham', '||period||', '||leftparen||', 'jerry', 'turns', 'and', 'looks', 'at', 'kramer', '||comma||', 'shocked', '||period||', 'elaine', 'grins', 'and', 'heads', 'to', 'the', 'bathroom', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'kissed', 'her', '||period||', '||return||', '||return||', 'jerry:', 'you', 'kissed', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'on', 'the', 'mouth', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kinda', 'great', 'friend', 'are', 'you', '||questionmark||', 'how', 'do', 'you', 'go', 'from', 'snubbing', 'to', 'kissing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'saw', 'her', 'outside', 'the', 'y', '||comma||', 'you', 'know', '||comma||', 'she', 'came', 'up', 'to', 'me', '||comma||', 'she', 'started', 'yelling', 'because', 'i', 'snubbed', 'her', '||comma||', 'and', 'then', 'we', 'started', 'talking', 'a', 'little', 'bit', '||comma||', 'and', 'i', 'walked', 'her', 'to', 'her', 'building', '||period||', 'and', 'just', 'before', 'i', 'left', '||comma||', 'i', 'put', 'my', 'arm', 'around', 'her', 'waist', '||comma||', 'i', 'pulled', 'her', 'to', 'me', '||comma||', 'and', 'i', '||dash||', 'mmm', '||dash||', 'i', 'planted', 'one', '||exclammark||', '||leftparen||', 'laughs', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'and', 'what', 'did', 'she', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'she', 'kissed', 'me', 'back', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'get', 'this', '||period||', 'i', 'go', 'out', 'with', 'this', 'girl', 'three', 'times', '||comma||', 'she', "doesn't", 'want', 'to', 'shake', 'my', 'hand', '||dash||', "why's", 'she', 'kissing', 'you', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'realizing', '||rightparen||', ':', 'because', 'i', 'snubbed', 'her', '||period||', 'you', 'see', '||questionmark||', 'women', '||comma||', 'they', 'like', 'that', '||exclammark||', 'yes', '||exclammark||', 'i', 'understand', 'women', '||period||', 'the', 'snub', 'is', 'good', '||comma||', 'they', 'love', 'the', 'snub', '||exclammark||', '||return||', '||return||', 'george:', 'no', 'they', "don't", '||period||', 'i', 'tried', 'that', 'once', '||period||', 'i', 'snubbed', 'for', 'a', 'year', '||period||', 'nothing', '||period||', 'every', 'woman', 'i', 'saw', '||comma||', 'i', 'snubbed', '||period||', 'you', 'never', 'saw', 'people', 'so', 'pleased', '||period||', '||leftparen||', 'elaine', 'returns', 'from', 'the', 'bathroom', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'ooh', '||comma||', 'so', '||period||', '||period||', '||period||', 'i', 'understand', "you're", 'buying', 'your', 'shoes', 'now', 'at', "botticelli's", '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'who', 'told', 'you', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'gail', 'cunningham', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'understand', '||comma||', 'why', 'is', 'this', 'woman', 'talking', 'about', 'my', 'shoes', '||questionmark||', 'why', 'are', 'my', 'shoes', 'a', 'topic', 'of', 'conversation', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'we', 'were', 'just', 'talking', '||comma||', 'and', 'uh', 'she', 'mentioned', 'how', "you're", 'buying', 'your', 'shoes', 'now', 'at', "botticelli's", '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'angrily', '||rightparen||', ':', '||quotemark||', 'how', "i'm", 'buying', 'my', 'shoes', 'now', 'at', "botticelli's", '||exclammark||', '||quotemark||', 'did', 'you', 'hear', 'this', '||questionmark||', '||leftparen||', 'shoves', 'jerry', 'and', 'kramer', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||exclammark||', 'she', 'is', 'talking', 'about', 'my', 'shoes', '||exclammark||', 'she', 'is', 'discussing', 'my', 'shoes', '||exclammark||', 'it', 'is', "nobody's", 'business', 'where', 'i', 'buy', 'my', 'shoes', '||exclammark||', '||leftparen||', 'storms', 'over', 'to', 'the', 'couch', 'and', 'angrily', 'sits', 'down', '||period||', 'jerry', '||comma||', 'kramer', 'and', 'george', 'look', 'at', 'elaine', 'from', 'the', 'kitchen', '||comma||', 'comically', 'puzzled', 'by', 'her', 'outburst', '||period||', '||period||', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'gail', '||exclammark||', '||return||', '||return||', 'gail:', 'ya', '||period||', '||leftparen||', 'noticing', "it's", 'elaine', '||rightparen||', 'elaine', '||period||', '||period||', '||period||', '||exclammark||', '||return||', '||return||', 'elaine:', 'why', 'are', 'you', 'talking', 'about', 'my', 'shoes', '||questionmark||', '||return||', '||return||', 'gail:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', 'botticelli', 'shoes', '||period||', "you've", 'been', 'talking', 'about', 'my', 'botticelli', 'shoes', '||period||', '||return||', '||return||', 'gail:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'or', 'did', 'you', 'not', 'tell', 'kramer', 'that', 'i', 'got', 'my', 'shoes', 'at', "botticelli's", '||questionmark||', '||leftparen||', 'a', 'waiter', 'comes', 'over', 'and', 'puts', 'a', 'plate', 'of', 'food', 'on', "gail's", 'cutting', 'board', '||period||', '||rightparen||', '||return||', '||return||', 'waiter:', 'too', 'spicy', '||period||', 'he', 'wants', 'another', 'one', '||period||', 'you', 'got', 'that', 'pasta', 'primavera', '||questionmark||', '||return||', '||return||', 'gail:', 'look', 'elaine', '||comma||', 'i', 'am', 'very', 'busy', 'here', '||period||', '||return||', '||return||', 'elaine:', 'who', 'else', 'have', 'you', 'mentioned', 'my', 'shoes', 'to', '||comma||', 'huh', '||questionmark||', 'i', 'wanna', 'know', 'why', 'my', 'footwear', 'is', 'your', 'conversation', '||exclammark||', '||return||', '||return||', 'gail:', 'i', 'am', 'not', 'discussing', 'this', '||period||', 'this', 'is', 'insane', '||period||', '||return||', '||return||', 'waiter:', 'you', 'got', 'that', 'pasta', 'primavera', '||questionmark||', "let's", 'go', '||exclammark||', '||return||', '||return||', 'gail:', 'ya', 'ya', 'ya', '||comma||', 'here', '||period||', '||return||', '||return||', 'waiter:', 'here', 'you', 'are', '||comma||', 'mr', '||period||', 'dalrymple', '||period||', '||return||', '||return||', 'russell:', 'thank', 'you', '||period||', '||return||', '||return||', 'waiter:', 'sorry', 'for', 'the', 'delay', '||period||', 'enjoy', 'your', 'lunch', '||period||', '||return||', '||return||', 'russell', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', ':', 'well', '||comma||', 'come', 'in', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '&', 'george:', 'hi', '||period||', '||return||', '||return||', 'russell:', 'awfully', 'sorry', 'to', 'make', 'you', 'come', 'up', 'here', '||comma||', 'but', 'i', 'really', "wasn't", 'feeling', 'well', 'enough', 'to', 'go', 'back', 'to', 'the', 'office', '||comma||', 'and', 'well', '||comma||', "it's", 'the', 'only', 'chance', 'i', 'have', 'to', 'meet', 'with', 'you', 'this', 'week', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'alright', '||questionmark||', '||return||', '||return||', 'russell:', 'well', '||comma||', "it's", 'my', 'stomach', '||period||', 'i', 'think', 'there', 'must', 'have', 'been', 'something', 'in', 'the', 'pasta', 'primavera', 'i', 'had', 'for', 'lunch', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'where', 'did', 'you', 'eat', '||questionmark||', '||return||', '||return||', 'russell:', "pfeiffer's", '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', 'i', 'know', 'the', 'chef', 'there', '||period||', '||return||', '||return||', 'russell:', 'yeah', '||period||', 'the', "food's", 'usually', 'terrific', '||period||', '||return||', '||return||', 'george:', 'my', 'cousin', 'worked', 'for', "bouchard's", '||period||', 'they', 'used', 'to', 'use', 'the', 'bouilla', '||dash||', 'base', 'for', 'a', 'toilet', '||period||', '||leftparen||', 'jerry', 'and', 'russell', 'are', 'shocked', '||period||', '||rightparen||', '||return||', '||return||', 'russell:', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', "didn't", 'hear', 'it', 'from', 'me', '||comma||', 'but', 'needless', 'to', 'say', '||comma||', 'if', 'you', 'go', 'in', 'there', '||dash||', 'stick', 'with', 'the', 'consumee', '||period||', '||return||', '||return||', 'russell:', 'well', '||comma||', "we'd", 'better', 'get', 'started', '||comma||', 'my', "daughter's", 'going', 'to', 'be', 'here', 'soon', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'have', 'a', 'daughter', '||questionmark||', '||return||', '||return||', 'russell:', 'yeah', '||comma||', 'she', 'just', 'turned', 'fifteen', 'last', 'week', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', "that's", 'a', 'fun', 'age', '||period||', '||leftparen||', 'jerry', 'looks', 'at', 'george', 'distastefully', '||period||', '||rightparen||', '||return||', '||return||', 'russell:', 'alright', '||period||', 'the', 'script', '||period||', 'now', '||comma||', "i've", 'read', 'this', 'thing', 'three', 'times', '||period||', '||period||', '||period||', 'and', 'everytime', 'i', 'read', 'it', '||period||', '||period||', '||period||', '||leftparen||', 'looks', 'nauseous', '||comma||', 'struggles', 'not', 'to', 'vomit', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'russell:', 'excuse', 'me', 'for', 'a', 'second', '||period||', '||leftparen||', 'gets', 'up', 'and', 'runs', 'to', 'the', 'bathroom', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'would', 'you', 'like', 'a', 'pepto', '||dash||', 'bismol', '||questionmark||', 'i', 'keep', 'them', 'in', 'my', 'wallet', '||period||', '||period||', '||period||', '||exclammark||', '||leftparen||', 'russell', 'goes', 'into', 'the', 'bathroom', 'and', 'shuts', 'the', 'door', '||period||', '||rightparen||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'do', 'you', 'think', 'he', 'liked', 'it', '||questionmark||', '||leftparen||', 'from', 'the', 'bathroom', '||comma||', 'we', 'hear', 'russell', 'violently', 'heaving', 'his', 'guts', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'sure', '||period||', '||leftparen||', 'the', 'sounds', 'of', 'russell', 'vomiting', 'emanate', 'from', 'the', 'bathroom', '||period||', 'jerry', 'and', 'george', 'sit', 'there', 'uncomfortably', '||period||', '||rightparen||', 'what', 'was', 'that', 'dish', 'he', 'said', 'he', 'had', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'pasta', 'primavera', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', 'you', 'know', '||comma||', "'primavera'", 'is', 'italian', 'for', "'spring", '||period||', "'", '||return||', '||return||', 'george:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'russell', '||leftparen||', 'coming', 'out', 'of', 'the', 'bathroom', '||rightparen||', ':', 'really', '||comma||', "i'm", 'terribly', 'sorry', '||comma||', 'it', 'just', '||comma||', 'uh', '||period||', '||period||', '||period||', 'all', 'of', 'a', 'sudden', 'it', 'just', 'hit', 'me', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'were', 'saying', 'how', '||comma||', 'um', '||period||', '||period||', '||period||', 'about', 'the', 'script', '||period||', '||period||', '||period||', '||return||', '||return||', 'russell:', 'right', '||period||', 'the', 'script', '||period||', 'your', 'script', 'needs', 'some', '||period||', '||period||', '||period||', 'it', 'needs', '||comma||', 'um', '||period||', '||period||', '||period||', '||leftparen||', 'looks', 'nauseous', 'again', '||period||', 'gets', 'up', 'and', 'runs', 'to', 'the', 'bathroom', 'a', 'second', 'time', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'more', 'jokes', '||questionmark||', '||return||', '||return||', 'jerry:', 'another', 'ending', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'different', 'name', 'for', 'the', 'butler', '||questionmark||', '||leftparen||', 'russell', 'throws', 'up', 'again', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'maybe', 'we', 'should', 'go', '||period||', '||return||', '||return||', 'george:', 'we', "haven't", 'heard', 'his', 'notes', 'yet', '||comma||', 'we', "don't", 'know', 'how', 'he', 'feels', 'about', 'our', 'work', '||period||', '||leftparen||', 'russell', 'throws', 'up', 'yet', 'again', '||period||', '||rightparen||', '||return||', '||return||', 'russell', '||leftparen||', 'from', 'bathroom', '||rightparen||', ':', 'oh', 'god', '||period||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'listen', 'to', 'anymore', 'of', 'this', '||comma||', 'the', "guy's", 'losing', 'a', 'lung', 'in', 'there', '||period||', '||leftparen||', "russell's", 'daughter', 'molly', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'molly:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'molly:', "i'm", 'molly', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'jerry', '||period||', '||return||', '||return||', 'george:', 'george', '||period||', '||return||', '||return||', 'jerry:', "we're", 'here', 'discussing', 'our', 'script', 'with', 'your', 'father', '||period||', '||return||', '||return||', 'george:', 'he', 'just', 'read', 'it', '||period||', '||leftparen||', 'russell', 'vomits', 'again', '||period||', 'jerry', 'and', 'george', 'look', 'ashamed', '||period||', '||rightparen||', '||return||', '||return||', 'molly:', 'daddy', '||questionmark||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'russell', '||leftparen||', 'from', 'bathroom', '||rightparen||', ':', 'yeah', '||comma||', 'yeah', 'sweetie', '||period||', "i'm", 'fine', '||period||', '||leftparen||', 'molly', 'sits', 'on', 'the', 'back', 'of', 'the', 'chair', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'live', 'with', 'your', 'mother', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'molly:', 'uh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'divorce', 'is', 'very', 'difficult', '||period||', 'especially', 'on', 'a', 'kid', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||comma||', "i'm", 'the', 'result', 'of', 'my', 'parents', 'having', 'stayed', 'together', '||comma||', 'so', 'you', 'never', 'know', '||period||', '||leftparen||', 'russell', 'comes', 'out', 'of', 'the', 'bathroom', '||period||', '||rightparen||', '||return||', '||return||', 'molly:', 'daddy', '||comma||', 'are', 'you', 'alright', '||questionmark||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'russell:', "it's", 'just', 'a', 'stomach', 'thing', '||period||', '||return||', '||return||', 'molly:', 'yuck', '||period||', '||return||', '||return||', 'russell', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', ':', "we're", 'going', 'to', 'have', 'to', 'do', 'this', 'some', 'other', 'time', '||comma||', 'so', 'if', "you'll", 'give', 'me', 'your', 'number', '||comma||', "i'll", 'call', 'you', 'later', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'nod', '||period||', 'molly', 'takes', 'her', 'jacket', 'off', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'suddenly', "i'm", 'in', 'the', 'mood', 'for', 'pasta', 'primavera', 'myself', '||period||', '||leftparen||', 'jerry', 'nudges', 'george', 'to', 'sneak', 'a', 'peek', 'at', "molly's", 'cleavage', 'as', 'she', 'bends', 'over', 'and', 'looks', 'in', 'her', 'backpack', '||period||', 'jerry', 'has', 'a', 'quick', 'look', '||comma||', 'but', 'george', 'stares', '||comma||', 'hypnotized', '||period||', 'russell', 'comes', 'up', 'behind', 'george', '||period||', '||rightparen||', '||return||', '||return||', 'russell', '||leftparen||', 'angrily', '||rightparen||', ':', 'get', 'a', 'good', 'look', '||comma||', 'costanza', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'were', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'not', 'my', 'fault', '||period||', 'you', 'poked', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'supposed', 'to', 'just', 'take', 'a', 'peek', 'after', 'a', 'poke', '||period||', 'you', 'were', 'like', 'you', 'just', 'put', 'a', 'quarter', 'into', 'one', 'of', 'those', 'big', 'metal', 'things', 'on', 'top', 'of', 'the', 'empire', 'state', 'building', '||period||', '||return||', '||return||', 'george:', "it's", 'cleavage', '||period||', 'i', "couldn't", 'look', 'away', '||period||', 'what', 'am', 'i', '||comma||', 'waiting', 'to', 'win', 'an', 'oscar', 'here', '||questionmark||', 'this', 'is', 'all', 'i', 'have', 'in', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', 'looking', 'at', 'cleavage', 'is', 'like', 'looking', 'at', 'the', 'sun', '||comma||', 'you', "don't", 'stare', 'at', 'it', '||period||', "it's", 'too', 'risky', '||period||', 'you', 'get', 'a', 'sense', 'of', 'it', 'and', 'then', 'you', 'look', 'away', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'so', '||comma||', 'he', 'caught', 'me', 'in', 'a', 'cleavage', 'peek', '||comma||', 'so', 'big', 'deal', '||period||', 'who', "wouldn't", 'look', 'at', 'his', "daughter's", 'cleavage', '||questionmark||', "she's", 'got', 'nice', 'cleavage', '||period||', '||return||', '||return||', 'jerry:', "that's", 'why', 'i', 'poked', '||period||', '||return||', '||return||', 'george:', "that's", 'why', 'i', 'peeked', '||period||', '||leftparen||', 'jerry', 'opens', 'the', 'door', 'to', 'take', 'some', 'trash', 'out', '||comma||', 'and', 'meets', 'kramer', 'and', 'gail', 'in', 'the', 'hallway', '||period||', '||rightparen||', '||return||', '||return||', 'gail:', 'hey', '||exclammark||', 'what', 'is', 'with', 'your', 'friend', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'gail:', 'she', 'comes', 'to', 'my', 'restaurant', '||comma||', 'comes', 'right', 'in', 'my', 'kitchen', '||comma||', 'and', 'starts', 'complaining', 'that', "i'm", 'talking', 'about', 'her', 'shoes', '||period||', '||return||', '||return||', 'jerry:', 'she', 'did', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'in', 'the', 'kitchen', '||period||', 'disgraceful', '||period||', '||return||', '||return||', 'gail:', 'so', '||comma||', 'i', "don't", 'want', 'people', 'coming', 'into', 'my', 'kitchen', '||period||', 'i', 'think', 'she', 'might', 'have', 'sneezed', 'all', 'over', "someone's", 'pasta', 'primavera', '||period||', 'someone', 'might', 'have', 'gotten', 'sick', 'because', 'of', 'her', '||period||', '||leftparen||', 'kramer', 'and', 'gail', 'exit', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'pasta', 'primavera', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'what', 'she', 'said', '||questionmark||', '||leftparen||', 'kramer', 'pokes', 'his', 'head', 'back', 'in', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', "she's", "somethin'", '||comma||', 'huh', '||questionmark||', "she's", 'a', 'wild', 'one', '||period||', "she's", "wearin'", 'me', 'out', '||period||', '||return||', '||return||', 'jerry:', 'she', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', "she's", 'sensual', '||period||', 'you', 'know', '||comma||', 'with', 'the', '||period||', '||period||', '||period||', 'cooking', 'and', 'all', '||period||', '||leftparen||', 'kramer', 'grins', 'happily', 'at', 'jerry', 'and', 'leaves', '||period||', 'the', 'phone', 'rings', '||period||', 'jerry', 'tosses', 'the', 'trashbag', 'to', 'george', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'oh', '||comma||', 'hi', 'stu', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'lazily', 'swinging', 'the', 'garbage', 'bag', 'around', '||rightparen||', ':', 'from', 'nbc', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'yeah', '||period||', '||leftparen||', 'oh', 'the', 'phone', '||rightparen||', "what's", "goin'", 'on', '||questionmark||', 'what', '||questionmark||', 'really', '||questionmark||', 'oh', 'my', 'god', '||period||', '||period||', '||period||', '||period||', 'did', 'he', 'give', 'you', 'a', 'reason', '||questionmark||', '||period||', '||period||', '||period||', 'oh', 'boy', '||period||', 'okay', '||period||', 'alright', '||period||', 'thanks', '||period||', '||leftparen||', 'hangs', 'up', '||period||', '||rightparen||', 'dalrymple', 'just', 'cancelled', 'the', 'pilot', '||period||', '||leftparen||', 'george', 'drops', 'the', 'bag', '||comma||', 'shocked', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'if', 'you', "hadn't", 'gone', 'into', 'her', 'restaurant', '||comma||', 'this', 'never', 'would', 'have', 'happened', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'i', "don't", 'like', 'people', 'talking', 'about', 'my', 'shoes', 'behind', 'my', 'back', '||comma||', 'okay', '||questionmark||', 'my', 'shoes', 'are', 'my', 'business', '||period||', 'the', 'two', 'of', 'you', "shouldn't", 'have', 'been', 'looking', 'at', 'some', 'fifteen', 'year', '||dash||', "old's", 'cleavage', 'anyway', '||exclammark||', '||return||', '||return||', 'george:', 'he', 'poked', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'there', 'was', 'cleavage', 'in', 'the', 'area', '||period||', "that's", 'a', 'reflex', '||dash||', '||leftparen||', 'mimics', 'nudging', 'someone', 'with', 'an', 'elbow', '||rightparen||', '||dash||', 'cleavage', '||dash||', 'poke', '||comma||', 'cleavage', '||dash||', 'poke', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'but', 'she', 'was', 'fifteen', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'consider', 'age', 'in', 'the', 'face', 'of', 'cleavage', '||period||', 'this', 'occurs', 'on', 'a', 'molecular', 'level', '||comma||', 'you', "can't", 'control', 'it', '||exclammark||', "we're", 'like', 'some', 'kind', 'of', 'weird', 'fish', 'where', 'the', 'eyes', 'operate', 'independently', 'of', 'the', 'head', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "what's", 'the', 'difference', '||period||', 'what', 'are', 'we', 'gonna', 'do', 'now', '||questionmark||', 'he', "won't", 'take', 'our', 'calls', '||comma||', 'we', "can't", 'get', 'into', 'his', 'office', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', 'we', 'could', 'do', '||questionmark||', 'he', 'eats', 'at', 'that', 'restaurant', '||comma||', "pfeiffer's", '||questionmark||', 'we', 'could', 'have', 'gail', 'call', 'us', '||comma||', 'tell', 'us', 'the', 'next', 'time', "he's", 'there', '||comma||', 'go', 'there', 'and', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'now', "you're", 'onto', 'something', '||period||', '||return||', '||return||', 'jerry:', 'the', 'whole', 'thing', 'is', 'so', 'stupid', '||period||', 'like', 'he', "wouldn't", 'do', 'the', 'same', 'thing', 'if', 'elaine', 'walked', 'by', 'in', 'a', 'low', '||dash||', 'cut', 'dress', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'well', '||comma||', 'maybe', 'not', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'but', '||period||', '||period||', '||period||', 'somebody', 'like', 'gail', '||comma||', 'though', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'do', 'you', 'mean', '||comma||', 'gail', '||questionmark||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'yah', '||dash||', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'listen', '||comma||', 'i', 'want', 'you', 'to', 'ask', 'gail', 'to', 'do', 'me', 'a', 'favor', '||period||', 'the', 'next', 'time', 'russell', 'dalrymple', 'comes', 'in', 'the', 'restaurant', '||comma||', 'ask', 'her', 'if', 'she', 'would', 'call', 'me', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "i'll", 'call', 'her', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||leftparen||', 'kramer', 'goes', 'back', 'to', 'his', 'apartment', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'what', 'do', 'you', 'mean', '||comma||', 'gail', '||questionmark||', 'you', "don't", 'think', 'i', 'can', 'attract', 'attention', '||questionmark||', 'you', "don't", 'think', 'i', 'can', 'put', 'asses', 'in', 'the', 'seats', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'sweetheart', '||comma||', 'you', 'know', "you've", 'got', 'it', 'all', '||period||', 'but', "let's", 'face', 'it', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'comes', 'back', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'she', 'said', "she'll", 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', 'beautiful', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'points', 'at', "elaine's", 'feet', '||rightparen||', ':', 'but', 'she', 'wants', 'the', 'shoes', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'she', 'says', 'she', 'wants', 'those', 'shoes', '||period||', '||return||', '||return||', 'elaine:', 'she', 'wants', 'my', 'shoes', '||questionmark||', 'what', 'kind', 'of', 'person', 'is', 'this', '||questionmark||', 'alright', '||exclammark||', 'she', 'is', 'not', 'getting', "'em", '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'come', 'on', '||exclammark||', "i'll", 'buy', 'you', 'another', 'pair', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'these', 'were', 'the', 'last', 'pair', 'of', 'these', 'that', 'they', 'had', '||exclammark||', '||return||', '||return||', 'jerry:', "i'll", 'get', 'you', 'another', 'one', 'just', 'like', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', 'these', 'were', 'the', 'only', 'really', 'cool', 'ones', 'like', 'this', '||exclammark||', "don't", 'you', 'see', 'how', 'everybody', 'likes', "'em", 'and', 'how', 'everybody', 'talks', 'about', "'em", '||questionmark||', '||leftparen||', 'jerry', '||comma||', 'realizing', "elaine's", 'motivation', '||comma||', 'sits', 'at', 'the', 'counter', 'unbelievingly', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'elaine', '||comma||', 'in', 'a', 'somber', 'tone', '||rightparen||', ':', 'elaine', '||comma||', 'this', 'pilot', '||period||', '||period||', '||period||', 'it', "doesn't", 'matter', 'to', 'me', '||comma||', "it's", 'not', 'me', "i'm", 'concerned', 'about', '||period||', '||period||', '||period||', "it's", 'my', 'mother', '||period||', "i've", 'been', 'over', 'to', 'the', 'hospital', 'to', 'see', 'her', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'because', 'she', 'caught', 'you', 'jer', '||dash||', '||return||', '||return||', 'george:', 'never', 'mind', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||comma||', 'wait', 'a', 'second', '||comma||', 'this', 'whole', 'thing', 'is', 'ridiculous', '||period||', 'how', 'do', 'i', 'even', 'know', 'she', 'wears', 'the', 'same', 'size', '||questionmark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'what', 'size', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'seven', '||dash||', 'and', '||dash||', 'a', '||dash||', 'half', '||period||', '||return||', '||return||', 'kramer:', 'eh', '||exclammark||', 'bingo', '||period||', '||return||', '||return||', 'gail', '||leftparen||', 'hands', 'a', 'plate', 'to', 'another', 'chef', '||rightparen||', ':', 'sauce', 'this', '||period||', '||leftparen||', 'goes', 'to', 'the', 'telephone', 'and', 'dials', '||period||', '||rightparen||', 'yeah', '||comma||', "he's", 'here', '||period||', 'oh', '||comma||', 'and', 'one', 'more', 'thing', '||period||', '||period||', '||period||', 'bring', 'the', 'shoes', '||period||', '||leftparen||', 'hangs', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'whattaya', 'know', '||exclammark||', '||return||', '||return||', 'george:', 'look', "who's", 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'fancy', 'meeting', 'you', 'here', '||exclammark||', '||return||', '||return||', 'russell:', 'oh', '||period||', 'hello', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'notices', "russell's", 'lunch', '||rightparen||', ':', 'pasta', 'primavera', '||exclammark||', 'back', 'on', 'the', 'horse', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "it's", 'a', 'funny', 'thing', '||comma||', 'because', 'after', 'the', 'pilot', 'got', 'cancelled', '||comma||', 'we', "hadn't", 'heard', 'from', 'you', '||period||', '||return||', '||return||', 'george:', "didn't", 'hear', 'anything', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'know', '||period||', '||period||', '||period||', 'we', 'were', 'wondering', '||period||', '||period||', '||period||', 'what', 'happened', '||period||', '||return||', '||return||', 'russell:', 'well', '||comma||', 'it', 'just', "didn't", 'seem', 'to', 'be', 'the', 'right', 'project', 'for', 'us', 'right', 'now', '||period||', '||leftparen||', 'elaine', 'walks', 'by', 'in', 'a', 'low', '||dash||', 'cut', 'dress', '||period||', 'jerry', 'and', 'george', 'look', 'at', 'her', 'as', 'she', 'moves', 'to', 'the', 'table', 'opposite', 'russell', '||period||', '||rightparen||', 'so', '||comma||', 'what', 'were', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', 'uh', '||comma||', 'because', 'if', 'it', 'had', 'anything', 'at', 'all', 'to', 'do', 'with', 'what', 'you', 'perceived', 'as', 'me', 'leering', 'at', 'your', 'daughter', '||comma||', 'i', 'really', 'have', 'to', 'take', 'issue', 'with', 'that', '||period||', 'i', 'did', 'not', 'leer', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'did', 'i', 'leer', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'leer', '||period||', '||leftparen||', 'elaine', 'comes', 'over', 'to', "russell's", 'table', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'russell', '||rightparen||', ':', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'are', 'you', 'using', 'that', 'ketchup', '||questionmark||', '||return||', '||return||', 'russell', '||leftparen||', 'not', 'noticing', "elaine's", 'cleavage', '||rightparen||', ':', 'uh', '||comma||', 'no', '||period||', '||leftparen||', 'elaine', 'takes', 'the', 'ketchup', 'and', 'goes', 'back', 'to', 'her', 'table', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'because', '||comma||', 'if', "i'm", 'looking', 'straight', 'ahead', '||comma||', 'and', 'something', 'enters', 'my', 'field', 'of', 'vision', '||comma||', "that's", 'merely', 'a', 'happenstance', '||period||', '||leftparen||', 'elaine', 'loudly', 'snaps', 'and', 'unfolds', 'her', 'napkin', 'at', 'the', 'next', 'table', 'to', 'get', "russell's", 'attention', '||period||', '||rightparen||', '||return||', '||return||', 'russell:', 'under', 'the', 'circumstances', '||comma||', 'i', "don't", 'really', 'feel', 'that', 'we', 'should', 'be', 'in', 'business', 'together', '||period||', '||leftparen||', 'elaine', 'comes', 'back', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', "here's", 'your', 'ketchup', 'back', '||period||', 'you', 'know', '||comma||', 'i', 'had', 'the', 'hardest', 'time', 'trying', 'to', 'get', 'some', 'out', '||period||', 'i', 'mean', '||comma||', 'i', 'just', 'kept', 'pounding', 'and', 'pounding', 'on', 'the', 'bottom', 'of', 'it', '||period||', 'do', 'you', 'have', 'any', 'trouble', '||questionmark||', '||return||', '||return||', 'russell', '||leftparen||', 'still', 'not', 'noticing', "elaine's", 'cleavage', '||rightparen||', ':', 'no', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'leaning', 'forward', '||rightparen||', ':', 'do', 'you', 'have', 'a', '||period||', '||period||', '||period||', 'ketchup', 'secret', '||questionmark||', '||return||', '||return||', 'russell:', 'no', '||comma||', 'i', '||period||', '||period||', '||period||', '||leftparen||', 'finally', 'notices', 'elaine', '||rightparen||', '||period||', '||period||', '||period||', "don't", 'have', 'a', 'ketchup', 'secret', '||period||', '||leftparen||', 'smiles', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'flirtatiously', '||rightparen||', ':', 'because', 'if', 'you', 'do', 'have', 'a', 'ketchup', 'secret', '||comma||', 'i', 'would', 'really', '||comma||', 'really', 'like', 'to', 'know', 'what', 'it', 'is', '||period||', '||leftparen||', 'russell', 'is', 'pleased', '||comma||', 'and', 'smiles', 'at', 'elaine', '||period||', 'elaine', 'goes', 'back', 'to', 'her', 'table', '||comma||', 'sits', 'down', '||comma||', 'and', 'waves', 'at', 'russell', '||period||', '||rightparen||', '||return||', '||return||', 'russell', '||leftparen||', 'to', 'jerry', 'and', 'george', '||comma||', 'reconsidering', 'about', 'the', 'pilot', '||rightparen||', ':', 'field', 'of', 'vision', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'gail:', "how's", 'everything', '||questionmark||', '||return||', '||return||', 'elaine:', 'mmmm', '||period||', '||return||', '||return||', 'jerry:', 'really', 'good', '||period||', '||return||', '||return||', 'george:', 'this', 'pasta', 'primavera', 'is', 'fabulous', '||period||', '||return||', '||return||', 'jerry:', 'very', 'tasty', '||period||', '||return||', '||return||', 'gail:', "how'd", 'everything', 'go', 'with', 'that', 'nbc', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'great', '||period||', '||return||', '||return||', 'jerry:', 'the', "pilot's", 'back', 'on', '||period||', 'in', 'fact', '||comma||', "elaine's", 'going', 'out', 'with', 'him', 'tomorrow', 'night', '||period||', '||leftparen||', 'gail', 'nods', 'and', 'walks', 'away', '||period||', '||rightparen||', 'listen', '||comma||', 'elaine', '||comma||', 'you', 'know', 'if', 'russell', 'mentions', 'anything', 'about', 'the', 'pilot', '||comma||', "you'll", 'of', 'course', 'tell', 'him', 'how', 'much', 'you', 'liked', 'it', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'i', 'happen', 'to', 'have', 'the', 'script', 'right', 'here', 'with', 'me', 'and', '||comma||', 'uh', '||period||', '||period||', '||period||', 'on', 'page', '3', '||comma||', 'for', 'example', '||comma||', 'suppose', 'the', 'elaine', 'character', 'comes', 'in', 'wearing', 'a', '||period||', '||period||', '||period||', 'a', 'low', '||dash||', 'cut', 'dress', '||period||', 'and', 'the', 'butler', 'is', 'very', 'distracted', '||comma||', 'and', "can't", 'work', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||period||', '||period||', '||period||', 'that', 'kind', 'of', 'comedy', '||comma||', "that's", 'a', 'little', 'broad', 'for', 'us', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'sure', "it's", 'right', 'up', "russell's", 'alley', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'a', 'funny', 'idea', '||period||', '||return||', '||return||', 'jerry:', "it's", 'funny', '||exclammark||', '||return||', '||return||', 'george:', "c'mon", '||comma||', 'funny', 'is', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'funny', 'is', 'funny', '||comma||', "we're", 'here', 'to', 'entertain', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'well', '||comma||', 'maybe', "i'll", 'mention', 'it', 'to', 'russell', 'tomorrow', 'night', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'can', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', "where's", 'he', 'taking', 'you', '||comma||', 'by', 'the', 'way', '||questionmark||', '||return||', '||return||', 'elaine:', "bouchard's", '||comma||', 'on', '53rd', '||period||', '||leftparen||', 'george', 'starts', 'choking', 'on', 'his', 'wine', '||comma||', 'and', 'attempts', 'to', 'tell', 'elaine', 'something', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'think', 'what', "he's", 'trying', 'to', 'say', 'is', '||comma||', '||quotemark||', 'get', 'the', 'bouilla', '||dash||', 'base', '||period||', '||quotemark||', '||leftparen||', 'george', 'nods', "'yes'", 'and', 'continues', 'to', 'choke', '||period||', '||rightparen||', '||return||', '||return||', 'allison:', 'i', "don't", 'want', 'to', '*live*', '||exclammark||', 'i', "don't", 'want', 'to', '*live*', '||exclammark||', '||return||', '||return||', 'george:', 'because', 'of', 'me', '||questionmark||', 'you', 'must', 'be', 'joking', '||exclammark||', 'who', "wouldn't", 'want', 'to', 'live', 'because', 'of', 'me', '||questionmark||', "i'm", 'nothing', '||exclammark||', '||return||', '||return||', 'allison:', 'no', '||period||', '||period||', '||period||', "you're", '*something*', '||period||', '||return||', '||return||', 'george:', 'you', 'can', 'do', 'better', 'than', 'me', '||period||', 'you', 'could', 'throw', 'a', 'dart', 'out', 'the', 'window', 'and', 'hit', 'someone', 'better', 'than', 'me', '||period||', "i'm", 'no', 'good', '||exclammark||', '||return||', '||return||', 'allison:', "you're", 'good', '||period||', "you're", '*good*', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'bad', '||period||', "i'm", '*bad*', '||exclammark||', '||return||', '||return||', 'allison:', "you're", '*killing*', 'me', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'what', 'could', 'i', 'do', '||questionmark||', 'i', "couldn't", 'go', 'through', 'with', 'it', '||period||', 'she', 'threatened', 'to', 'kill', 'herself', '||period||', '||return||', '||return||', 'elaine:', 'over', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'why', '||comma||', 'is', 'that', 'so', 'inconceivable', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'two', 'tickets', 'to', 'see', '||quotemark||', 'guys', 'and', 'dolls', '||quotemark||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'got', 'him', 'a', 'two', '||dash||', 'line', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'unbelievable', '||exclammark||', "she's", 'not', 'there', '||period||', '||return||', '||return||', 'george:', 'what', 'paper', 'does', 'she', 'write', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'works', 'for', 'the', 'nyu', 'school', 'newspaper', '||period||', "she's", 'a', 'grad', 'student', 'in', 'journalism', '||period||', 'never', 'been', 'to', 'a', 'comedy', 'club', '||period||', 'never', 'even', 'seen', 'me', '||comma||', 'has', 'no', 'idea', 'who', 'i', 'am', '||period||', '||return||', '||return||', 'elaine:', 'never', 'even', 'seen', 'you', '||questionmark||', 'gotta', 'kinda', 'envy', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "y'know", '||comma||', "you've", 'been', 'developing', 'quite', 'the', 'acid', '||dash||', 'tongue', 'lately', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '[proudly]', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'who', 'do', 'you', 'think', 'is', 'the', 'most', 'unattractive', 'world', 'leader', '||questionmark||', '||return||', '||return||', 'jerry:', 'living', 'or', 'all', 'time', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'time', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', "it's", 'all', 'time', '||comma||', 'then', "there's", 'no', 'contest', '||period||', 'it', 'begins', 'and', 'ends', 'with', 'brezhnev', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dunno', '||period||', 'you', 'ever', 'get', 'a', 'good', 'look', 'at', 'degaulle', '||questionmark||', '||return||', '||return||', 'george:', 'lyndon', 'johnson', 'was', 'uglier', 'than', 'degaulle', '||period||', '||return||', '||return||', 'elaine:', 'i', 'got', 'news', 'for', 'you', '||period||', 'golda', 'meir', 'could', 'make', "'em", 'all', 'run', 'up', 'a', 'tree', '||period||', '||return||', '||return||', 'elaine:', "y'know", '||comma||', 'just', 'because', 'you', 'two', 'are', 'homosexuals', '||comma||', 'so', 'what', '||questionmark||', 'i', 'mean', 'you', 'should', 'just', 'come', 'out', 'of', 'the', 'closet', 'and', 'be', 'openly', 'gay', 'already', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'whaddya', 'say', '||questionmark||', 'you', 'know', "you'll", 'always', 'be', 'the', 'only', 'man', "i'll", 'ever', 'love', '||period||', '||return||', '||return||', 'jerry:', '[indignantly]', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', '[quietly]', "c'mon", '||comma||', 'go', 'along', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', "goin'", 'along', '||period||', 'i', 'can', 'just', 'see', 'you', 'in', 'berlin', 'in', '1939', 'goose', '||dash||', 'stepping', 'past', 'me', '||quotemark||', "c'mon", 'jerry', '||comma||', 'go', 'along', '||comma||', 'go', 'along', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', "y'know", 'i', 'hear', 'that', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', 'hear', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', "i'm", 'gay', '||period||', 'people', 'think', "i'm", 'gay', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'know', 'people', 'ask', 'me', 'that', 'about', 'you', '||comma||', 'too', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "'cuz", "i'm", 'single', '||comma||', "i'm", 'thin', 'and', "i'm", 'neat', '||period||', '||return||', '||return||', 'elaine:', 'and', 'you', 'get', 'along', 'well', 'with', 'women', '||period||', '||return||', '||return||', 'george:', 'i', 'guess', 'that', 'leaves', 'me', 'in', 'the', 'clear', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'thought', 'of', 'a', 'great', 'name', 'for', 'myself', '||comma||', 'if', 'i', 'ever', 'become', 'a', 'porno', 'actor', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'what', '||questionmark||', '||quotemark||', 'buck', 'naked', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'how', 'did', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'told', 'me', 'that', 'already', 'like', 'two', 'months', 'ago', '||period||', '||return||', '||return||', 'george:', 'allison', 'bought', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'how', 'you', 'gonna', 'get', 'out', 'of', '*that*', 'one', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dunno', '||period||', 'i', 'guess', 'i', 'have', 'to', 'wait', 'for', 'her', 'to', 'die', '||period||', '||return||', '||return||', 'jerry:', "he's", 'gonna', 'hang', 'around', 'if', "that's", 'alright', 'with', 'you', '||questionmark||', '||return||', '||return||', 'sharon:', 'sure', '||comma||', "i'd", 'like', 'to', 'talk', 'to', 'him', '||comma||', 'too', '||period||', '||return||', '||return||', 'george:', 'jerry', 'did', 'you', 'wash', 'this', 'pear', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'washed', 'it', '||period||', '||return||', '||return||', 'george:', 'it', 'looks', 'like', 'it', "hasn't", 'been', 'washed', '||period||', '||return||', '||return||', 'jerry:', 'so', '*wash*', '*it*', '||period||', '||return||', '||return||', 'george:', 'you', 'hear', 'the', 'way', 'he', 'talks', 'to', 'me', '||questionmark||', '||return||', '||return||', 'sharon:', 'you', 'should', 'hear', 'how', '*my*', 'boyfriend', 'talks', 'to', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'something', '||period||', 'what', 'do', 'you', 'think', 'of', 'this', 'shirt', '||questionmark||', '||return||', '||return||', 'sharon:', "it's", 'nice', '||period||', '||return||', '||return||', 'george:', 'jerry', 'said', 'he', "didn't", 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'say', 'i', "didn't", 'like', 'it', '||period||', 'i', 'said', 'it', 'was', 'o', '||period||', 'k', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'said', 'you', "didn't", 'like', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', 'what', 'if', 'i', "don't", 'like', 'it', '||period||', 'is', 'that', 'like', 'the', 'end', 'of', 'the', 'world', '||comma||', 'or', 'something', '||questionmark||', '||return||', '||return||', 'sharon:', 'so', 'how', 'did', 'you', 'two', 'meet', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'we', 'met', 'in', 'the', 'gym', 'locker', 'room', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'actually', 'it', 'was', 'in', 'gym', 'class', '||period||', 'i', 'was', 'trying', 'to', 'climb', 'the', 'ropes', 'and', 'jerry', 'was', 'spotting', 'me', '||period||', 'i', 'kept', 'slipping', 'and', 'burning', 'my', 'thighs', 'and', 'then', 'finally', 'i', 'slipped', 'and', 'fell', 'on', "jerry's", 'head', '||period||', "we've", 'been', 'close', 'ever', 'since', '||period||', '||return||', '||return||', '||leftparen||', 'george', 'takes', 'a', 'hold', 'of', "jerry's", 'leg', 'to', 'stress', 'the', 'point', 'and', 'sharon', '||comma||', 'who', 'obviously', 'thinks', 'she', 'has', 'a', 'real', 'story', 'here', 'now', '||comma||', 'asks', 'another', 'question:', '||rightparen||', '||return||', '||return||', 'sharon:', 'do', 'you', 'guys', 'live', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', '[quizzically]', 'live', 'together', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'got', 'my', 'own', 'place', '||period||', '||return||', '||return||', '||leftparen||', 'jerry', 'is', 'about', '*this*', 'close', '||leftparen||', 'picture', 'my', 'thumb', 'and', 'forefinger', '*really*', 'close', 'together', '||rightparen||', 'to', 'figuring', 'out', 'what', 'is', 'going', 'on', 'here', '||comma||', 'when', 'the', '||quotemark||', 'question', 'fatale', '||quotemark||', 'is', 'asked:', '||rightparen||', '||return||', '||return||', 'sharon:', 'and', 'do', 'your', 'parents', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'know', '*what*', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'parents', '||questionmark||', 'they', "don't", 'know', "*what's*", "goin'", 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'god', '||comma||', "you're", 'that', 'girl', 'in', 'the', 'coffee', 'shop', 'that', 'was', 'eavesdropping', 'on', 'us', '||period||', 'i', '*knew*', 'you', 'looked', 'familiar', '||exclammark||', '||return||', '||return||', 'jerry:', "there's", 'been', 'a', 'big', 'misunderstanding', 'here', '||exclammark||', 'we', 'did', 'that', 'whole', 'thing', 'for', 'your', 'benefit', '||period||', 'we', 'knew', 'you', 'were', 'eavesdropping', '||period||', "that's", 'why', 'my', 'friend', 'said', 'all', 'that', '||period||', 'it', 'was', 'on', 'purpose', '||exclammark||', "we're", 'not', 'gay', '||exclammark||', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'of', 'course', 'not', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', "that's", 'fine', 'if', "that's", 'who', 'you', 'are', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'absolutely', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'i', 'have', 'many', 'gay', 'friends', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'my', '*father*', 'is', 'gay', '||period||', '||period||', '||period||', '||return||', '||return||', 'sharon:', 'look', '||comma||', 'i', 'know', 'what', 'i', 'heard', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', '*joke*', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'you', 'wanna', 'have', 'sex', 'right', 'now', '||questionmark||', 'do', 'want', 'to', 'have', 'sex', 'with', 'me', 'right', 'now', '||questionmark||', "let's", 'go', '||exclammark||', "c'mon", '||comma||', "let's", 'go', 'baby', '||exclammark||', "c'mon", '||exclammark||', '||return||', '||return||', '||leftparen||', 'not', 'that', 'that', 'approach', 'was', 'going', 'to', 'work', '||comma||', 'or', 'anything', '||comma||', 'but', 'what', 'minute', 'chance', 'they', 'had', 'of', 'convincing', 'her', 'is', 'blown', 'away', 'as', 'the', 'door', 'bursts', 'open', 'and:', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "c'mon", '||exclammark||', "let's", 'go', '||exclammark||', 'i', 'thought', 'we', 'were', 'going', 'to', 'take', 'a', 'steam', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', 'steam', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'i', "don't", 'want', 'to', 'sit', 'there', 'naked', 'all', 'by', 'myself', '||exclammark||', '||return||', '||return||', 'kramer:', 'happy', 'birthday', 'paruba', '||exclammark||', '||return||', '||return||', 'jerry:', "today's", 'not', 'my', 'birthday', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'beg', 'to', 'differ', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', '||exclammark||', 'a', 'phone', '||exclammark||', 'a', 'two', '||dash||', 'line', 'phone', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'gotta', 'go', 'return', 'something', '||period||', '||period||', '||period||', '||return||', '||return||', 'sharon:', 'jerry', '||comma||', "it's", 'sharon', 'from', 'nyu', '||period||', "i'm", 'just', 'calling', 'to', 'tell', 'you', 'that', "i'm", 'not', 'going', 'to', 'play', 'up', 'that', 'angle', 'we', 'talked', 'about', 'and', "i'm", 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', 'very', 'much', '||comma||', "that's", 'great', '||dash||', '>click<', 'oh', '||exclammark||', 'hold', 'on', 'a', 'sec', '||comma||', 'i', 'got', 'a', 'call', 'on', 'the', 'other', 'line', '||period||', '>click', 'click<', 'hello', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'how', 'ya', "doin'", '||questionmark||', "y'know", 'i', 'got', 'that', 'reporter', 'from', 'the', 'newspaper', 'on', 'the', 'other', 'line', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'says', "she's", 'not', 'going', 'to', 'play', 'up', 'that', 'angle', 'of', 'the', 'story', '||period||', 'she', 'thinks', "we're", 'heterosexual', '||period||', '[sarcastically]', 'i', 'guess', 'we', '*fooled*', 'her', '||period||', "i'll", 'get', 'rid', 'of', 'her', '||comma||', 'hold', 'on', '||period||', '||period||', '||period||', '>click', 'click<', 'sharon', '||questionmark||', 'hello', '||questionmark||', 'sharon', '||comma||', 'are', 'you', 'there', '||questionmark||', '>click', 'click<', "i'm", 'back', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "y'know", '||period||', '||period||', '||period||', 'i', 'could', 'hear', 'you', 'on', 'the', 'other', 'line', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', "talkin'", 'about', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'heard', 'what', 'you', 'said', '||quotemark||', 'sharon', '||comma||', 'are', 'you', 'there', '||questionmark||', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'heard', 'me', "talkin'", 'on', 'the', 'other', 'line', '||comma||', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'heard', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'she', 'was', 'disconnected', '||period||', '||return||', '||return||', 'george:', 'maybe', 'she', "wasn't", '||exclammark||', 'maybe', 'she', 'heard', 'the', 'whole', 'conversation', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'hang', 'on', '||period||', 'let', 'me', 'call', 'kramer', 'and', 'see', 'if', 'you', 'can', 'hear', 'anything', '||comma||', 'hold', 'on', '||period||', '>click', 'click', 'click<', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yello', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'there', 'may', 'be', 'a', 'problem', 'with', 'the', 'phone', '||comma||', 'hold', 'on', '||period||', '>click', 'click<', '||return||', '||return||', 'george:', '||quotemark||', 'there', 'may', 'be', 'a', 'problem', 'with', 'the', 'phone', '||comma||', 'hold', 'on', '||quotemark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||exclammark||', '>click', 'click<', 'kramer', '||comma||', 'this', "phone's", 'a', 'piece', 'of', 'junk', '||comma||', 'goodbye', '||exclammark||', '||return||', '||return||', 'george:', '||quotemark||', 'the', "phone's", 'a', 'piece', 'of', 'junk', '||comma||', 'goodbye', '||quotemark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||exclammark||', 'now', "she's", 'heard', 'everything', '||exclammark||', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'now', 'she', 'thinks', "we're", 'gay', '||comma||', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'of', 'course', 'not', '||exclammark||', "people's", 'personal', 'sexual', 'preferences', 'are', "nobody's", 'business', 'but', 'their', 'own', '||exclammark||', '||return||', '||return||', 'sharon:', 'why', "don't", 'you', 'take', 'a', 'seat', '||questionmark||', '||return||', '||return||', 'elaine:', 'thank', '||dash||', 'you', '||period||', '||return||', '||return||', 'sharon:', 'why', "don't", 'you', 'take', 'your', 'coat', 'off', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'she', 'kept', 'insisting', 'i', 'take', 'off', 'my', 'coat', '||period||', 'i', 'refused', '||comma||', 'and', 'then', 'she', 'forcibly', 'tried', 'to', 'get', 'me', 'to', 'remove', 'it', '||period||', '||return||', '||return||', 'jerry:', 'she', "wouldn't", 'take', 'her', 'coat', 'off', 'at', 'my', 'house', '||comma||', 'either', '||period||', '||return||', '||return||', 'george:', "y'know", 'there', 'are', 'tribes', 'in', 'indonesia', 'where', 'if', 'you', 'keep', 'your', 'coat', 'on', 'in', "somebody's", 'house', '||comma||', 'the', 'families', 'go', 'to', 'war', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'you', "don't", 'take', 'your', 'coat', 'off', '||comma||', 'and', 'now', 'everyone', 'at', 'nyu', 'thinks', "i'm", 'gay', '||period||', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'george:', 'two', 'tickets', 'to', '||quotemark||', 'guys', 'and', 'dolls', '||quotemark||', '||exclammark||', "i'm", 'gonna', 'go', 'with', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'guys', 'and', 'dolls', '||quotemark||', '||questionmark||', "isn't", 'that', 'a', 'lavish', '||comma||', 'broadway', 'musical', '||questionmark||', '||return||', '||return||', 'george:', "it's", '||quotemark||', 'guys', 'and', '*dolls*', '||quotemark||', '||comma||', 'not', '||quotemark||', 'guys', 'and', '*guys*', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'the', 'collected', 'works', 'of', 'bette', 'midler', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'got', 'there', '||questionmark||', '||return||', '||return||', 'man', '#1:', '_the', 'new', 'york', 'post_', '||comma||', "they've", 'got', 'an', 'article', 'about', 'you', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'although', 'they', 'maintain', 'separate', 'residences', '||comma||', 'the', 'comedian', 'and', 'his', 'long', '||dash||', 'time', '*companion*', 'seem', 'to', 'be', 'inseparable', '||period||', '||period||', '||period||', '||quotemark||', 'oh', 'no', '||exclammark||', 'the', 'associated', 'press', 'picked', 'up', 'the', 'nyu', 'story', '||period||', "that's", 'going', 'to', 'be', 'in', 'every', 'paper', '||exclammark||', "i've", 'been', '||quotemark||', 'outed', '||quotemark||', '||exclammark||', 'i', "wasn't", 'even', '||quotemark||', 'in', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', 'now', "everyone's", 'going', 'to', 'think', "we're", 'gay', '||exclammark||', '||return||', '||return||', 'jerry:', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'at', 'all', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'within', 'the', 'confines', 'of', 'his', 'fastidious', 'bachelor', '*pad*', '||comma||', 'seinfeld', 'and', 'costanza', 'bicker', 'over', 'the', 'cleanliness', 'of', 'a', 'piece', 'of', '*fruit*', 'like', 'an', 'old', 'married', 'couple', '||dash||', '||dash||', '||quotemark||', '*i', 'told', 'you', 'that', 'pear', 'was', 'washed*', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'we', 'were', 'friends', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'here', 'we', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'mean', '||comma||', 'how', 'could', 'you', 'two', 'keep', 'this', 'a', 'secret', 'from', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'true', '||exclammark||', '||return||', '||return||', 'kramer:', 'aaaah', '||exclammark||', 'enough', 'lying', '||exclammark||', 'the', 'lying', 'is', 'through', '||exclammark||', "c'mon", '||comma||', 'jerry', '||comma||', 'the', 'masquerade', 'is', 'over', '||period||', "you're", 'thin', '||comma||', 'late', 'thirties', '||comma||', 'single', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', 'are', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 's:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'mrs', '||period||', 'seinfeld', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 's:', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'my', 'god', '||exclammark||', '[takes', 'the', 'phone]', 'ma', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 's:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'ma', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||exclammark||', 'my', '*mother*', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 's:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'ma', '||comma||', "it's", 'not', 'true', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 's:', "it's", 'those', 'damn', 'culottes', 'you', 'made', 'him', 'wear', 'when', 'he', 'was', 'five', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 's:', 'they', "weren't", 'culottes', '||comma||', 'they', 'were', 'shorts', '||period||', '||return||', '||return||', 'mr', '||period||', 's:', 'they', 'were', 'culottes', '||exclammark||', 'you', 'bought', 'them', 'in', 'the', "girl's", 'department', '||period||', '||return||', '||return||', 'mrs', '||period||', 's:', 'by', 'mistake', '||exclammark||', 'by', 'mistake', '||comma||', 'jerry', '||exclammark||', "i'm", 'sorry', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 's:', 'it', 'looked', 'like', 'he', 'was', 'wearing', 'a', 'skirt', '||comma||', 'for', 'crying', 'out', 'loud', '||exclammark||', '||return||', '||return||', 'jerry:', 'ma', '||comma||', 'it', 'has', 'nothing', 'to', 'do', 'with', 'the', 'culottes', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 's:', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'that', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'mrs', '||period||', 'c:', 'i', 'open', 'up', 'the', 'paper', '||comma||', 'and', '*this*', 'is', 'what', 'i', 'have', 'to', 'read', 'about', '||questionmark||', 'i', 'fell', 'right', 'off', 'the', 'toilet', '||period||', 'my', 'back', 'went', 'out', 'again', '||comma||', 'i', "couldn't", 'move', '||period||', '||period||', '||period||', 'the', 'super', 'had', 'to', 'come', 'and', 'get', 'help', 'me', 'up', '||period||', 'i', 'was', 'half', 'naked', '||exclammark||', '||return||', '||return||', 'george:', "it's", '*not*', '*true*', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'c:', 'every', '*day*', "it's", 'something', 'else', 'with', 'you', '||period||', 'i', "don't", 'know', 'anything', 'about', 'you', 'any', 'more', '||period||', 'who', 'are', 'you', '||questionmark||', 'what', 'kind', 'of', 'life', 'are', 'you', 'leading', '||questionmark||', 'who', 'knows', '*what*', "you're", 'doing', '||questionmark||', 'maybe', "you're", 'making', 'porno', 'films', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', "i'm", 'buck', 'naked', '||period||', '||return||', '||return||', 'mrs', '||period||', 'c:', 'jerry', '||comma||', 'i', 'can', 'see', '||period||', "he's", 'so', 'neat', 'and', 'thin', '||period||', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'not', '||period||', '||period||', '||period||', '||return||', '||return||', 'nurse:', '630', '||comma||', 'scott', '||period||', 'time', 'for', 'your', 'sponge', 'bath', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'now', 'the', 'play', 'is', 'tomorrow', 'night', '||period||', 'so', 'do', 'you', 'want', 'to', 'have', 'dinner', 'first', '||comma||', 'or', 'do', 'you', 'just', 'want', 'to', 'meet', 'at', 'the', 'theatre', '||questionmark||', '||return||', '||return||', 'sailor:', 'excuse', 'me', '||comma||', 'sir', '||questionmark||', 'i', "don't", 'mean', 'to', 'bother', 'you', '||period||', 'i', 'just', 'wanted', 'you', 'to', 'know', 'that', 'it', 'took', 'a', 'lot', 'of', 'guts', 'to', 'come', 'out', 'the', 'way', 'you', 'did', '||comma||', 'and', 'that', "you've", 'inspired', 'me', 'to', 'do', 'the', 'same', '||comma||', 'even', 'though', 'that', 'may', 'mean', 'a', 'discharge', 'from', 'the', 'service', '||period||', 'thanks', '||period||', '||return||', '||return||', 'jerry:', "y'know", '||comma||', 'i', 'think', "i'll", 'pass', 'on', 'the', '||quotemark||', 'guys', 'and', 'dolls', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'just', 'imagine', 'her', 'reaction', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', "hasn't", 'seen', 'the', 'article', '||exclammark||', 'when', 'she', 'sees', 'it', '||comma||', "she's", 'gonna', 'think', '||dash||', '||dash||', "*i'm", 'out', 'baby*', '||exclammark||', '||exclammark||', "i'm", 'out', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'allison:', 'yeah', '||questionmark||', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', 'so', '||questionmark||', '||questionmark||', '||return||', '||return||', 'allison:', 'well', 'this', 'is', 'nice', '||period||', 'they', 'mention', 'your', 'name', '||period||', '||return||', '||return||', 'george:', "don't", 'you', 'see', 'what', 'it', 'says', 'here', '||questionmark||', "don't", 'you', 'understand', 'what', "that's", 'implying', '||questionmark||', '||return||', '||return||', 'allison:', 'no', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'gay', '||exclammark||', "i'm", 'a', 'gay', 'man', '||exclammark||', "i'm", 'very', '||comma||', 'very', 'gay', '||period||', '||return||', '||return||', 'allison:', "you're", '*gay*', '||questionmark||', '||return||', '||return||', 'george:', 'extraordinarily', 'gay', '||period||', 'steeped', 'in', 'gayness', '||period||', '||return||', '||return||', 'allison:', '[matter', '||dash||', 'of', '||dash||', 'factly]', 'i', "don't", 'believe', 'it', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'believe', 'me', '||questionmark||', 'ask', 'jerry', '||period||', '||return||', '||return||', 'allison:', 'i', 'will', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', 'you', 'will', '||questionmark||', "that's", 'a', 'bad', 'idea', '||period||', 'jerry', 'is', 'a', 'very', 'private', 'person', '||period||', '||return||', '||return||', 'allison:', '[grabs', "george's", 'lapels]', 'i', 'want', 'to', 'hear', 'it', 'from', '*jerry*', '||period||', '||period||', '||period||', '||return||', '||return||', 'sharon:', 'oh', '||comma||', 'can', 'you', 'ever', 'forgive', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', '||period||', '||period||', '[they', 'kiss', 'again]', '*alright*', '||comma||', 'i', 'forgive', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'sharon:', "y'know", 'the', 'funny', 'thing', 'is', '||comma||', 'i', 'was', 'attracted', 'to', 'you', 'immediately', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'attracted', 'to', 'you', '||comma||', 'too', '||period||', 'you', 'remind', 'me', 'of', 'lois', 'lane', '||period||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'oh', '||comma||', 'my', 'god', '||exclammark||', 'what', 'are', 'you', 'doing', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'with', 'a', '*woman*', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||exclammark||', 'what', 'are', 'you', "doin'", 'here', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'leave', 'you', 'alone', 'for', 'two', 'seconds', '||comma||', 'and', 'this', 'is', 'what', 'you', 'do', '||exclammark||', 'i', 'trusted', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', '[forcibly', 'removing', 'g', '||period||', 'from', 'the', 'apt]', 'would', 'you', 'get', 'the', 'hell', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'sharon:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'allison:', 'yeah', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'tell', 'her', '||period||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'her', 'what', '||questionmark||', '||return||', '||return||', 'george:', "y'know", '||period||', 'about', '*us*', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "i'll", 'tell', 'you', 'the', 'truth', '||period||', "i'm", 'not', 'gay', '||period||', 'my', "name's", 'buck', 'naked', '||comma||', "i'm", 'a', 'porno', 'actor', '||period||', '||return||', '||return||', 'allison:', '*really*', '||questionmark||', '||return||', '||return||', 'kramer:', "we'll", 'see', 'you', 'later', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "he's", 'the', '*phone*', 'man', '||exclammark||', '||return||', '||return||', 'kramer:', 'not', 'that', "there's", 'anything', 'wrong', 'with', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'i', 'am', 'not', 'gay', '||period||', 'i', 'am', '||comma||', 'however', '||comma||', 'thin', '||comma||', 'single', 'and', 'neat', '||period||', 'sometimes', 'when', 'someone', 'is', 'thin', '||comma||', 'single', 'and', 'neat', 'people', 'assume', 'they', 'are', 'gay', 'because', 'that', 'is', 'a', 'stereotype', '||period||', 'they', 'normally', "don't", 'think', 'of', 'gay', 'people', 'as', 'fat', '||comma||', 'sloppy', 'and', 'married', '||period||', 'although', "i'm", 'sure', 'there', 'are', '||comma||', 'i', "don't", 'want', 'to', 'perpetuate', 'the', 'stereotype', '||period||', "i'm", 'sure', 'they', 'are', 'the', 'minority', 'though', 'within', 'the', 'gay', 'community', '||period||', "they're", 'probably', 'discriminated', 'against', 'because', 'of', 'that', '||comma||', 'people', 'say', 'to', 'them', '||quotemark||', "y'know", 'joe', '||comma||', 'i', 'enjoy', 'being', 'gay', 'with', 'you', 'but', 'i', 'think', 'think', "it's", 'about', 'time', '||comma||', "y'know", 'that', 'you', 'got', 'in', 'shape', '||comma||', 'tucked', 'the', 'shirt', 'in', 'and', 'lost', 'the', 'wife', '||quotemark||', '||period||', 'but', 'if', 'people', 'are', 'even', 'going', 'to', 'assume', 'that', 'people', 'that', 'are', 'neat', 'are', 'gay', '||comma||', 'maybe', 'instead', 'of', "doin'", 'this:', '||quotemark||', "y'know", 'i', 'think', 'joe', 'might', 'be', 'a', 'little', '||period||', '||period||', '||period||', '[waves', 'hand', 'back', 'and', 'forth]', '||quotemark||', '||comma||', 'they', 'should', 'vacuum', '||quotemark||', "y'know", 'i', 'think', 'joe', 'might', 'be', '>vroom<', '[makes', 'vacuuming', 'motion]', '||period||', 'yeah', '||comma||', 'i', 'got', 'a', 'feeling', "he's", 'a', 'little', '>vrooom<', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "what's", 'the', 'point', '||questionmark||', 'when', 'i', 'like', 'them', '||comma||', 'they', "don't", 'like', 'me', '||comma||', 'when', 'they', 'like', 'me', '||comma||', 'i', "don't", 'like', 'them', '||period||', 'why', "can't", 'i', 'act', 'with', 'the', 'ones', 'i', 'like', 'the', 'same', 'way', 'i', 'do', 'with', 'the', 'ones', 'i', "don't", 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "you've", 'only', 'got', 'another', 'fifty', 'years', 'or', 'so', 'to', 'go', 'before', "it'll", '*all*', 'be', 'over', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'maybe', 'i', 'need', 'someone', 'who', "doesn't", 'speak', 'english', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'how', 'about', 'a', 'mute', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'mute', 'would', 'be', 'good', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'where', 'you', 'gonna', 'meet', 'a', 'mute', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'what', 'my', 'life', 'has', 'come', 'to', '||period||', '||period||', '||period||', 'tryin', 'to', 'meet', 'a', 'mute', '||period||', '||return||', '||return||', 'george:', 'i', 'dunno', '||comma||', 'jerry', "somethin's", 'missing', '||period||', "there's", 'a', 'void', '||comma||', 'jerry', '||comma||', "there's", 'a', 'void', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'a', 'deep', '||comma||', 'yawning', 'chasm', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "there's", 'gotta', 'be', 'more', 'to', 'life', 'than', 'this', '||period||', 'what', 'gives', 'you', 'pleasure', '||questionmark||', '||return||', '||return||', 'jerry:', 'listening', 'to', 'you', '||period||', 'i', 'listen', 'to', 'this', 'for', 'fifteen', 'minutes', 'and', "i'm", 'on', 'top', 'of', 'the', 'world', '||period||', 'your', 'misery', 'is', 'my', 'pleasure', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'boys', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'elaine:', 'good', '||period||', 'okay', '||comma||', 'well', '||comma||', "it's", 'all', 'set', '||period||', 'i', 'start', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'start', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'signed', 'up', 'to', 'do', 'volunteer', 'work', 'with', 'senior', 'citizens', '||period||', '||return||', '||return||', 'george:', '*really*', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'god', '||comma||', 'i', "can't", 'tell', 'you', 'how', 'i', 'feel', '||exclammark||', 'i', 'mean', '||comma||', 'i', 'feel', '*so*', '*good*', '||exclammark||', 'i', '*really*', 'feel', 'good', '||period||', 'the', 'strange', 'thing', 'is', '||comma||', 'i', 'mean', '||comma||', 'i', "haven't", 'even', 'met', 'the', 'woman', 'yet', '||period||', '||return||', '||return||', 'george:', 'volunteer', 'work', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', "what're", 'you', 'gonna', 'do', 'down', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'they', 'say', 'all', 'it', 'is', 'is', 'that', 'you', 'go', 'over', 'to', 'their', 'apartment', 'and', '||comma||', 'i', 'dunno', '||comma||', 'you', 'take', 'them', 'for', 'a', 'walk', 'and', 'you', 'get', 'a', 'cup', 'of', 'coffee', 'and', "it's", 'supposed', 'to', 'make', 'them', 'feel', 'good', '||period||', '||return||', '||return||', 'jerry:', "that's", 'what', 'i', 'do', 'with', 'him', '[points', 'at', 'george]', '||return||', '||return||', 'george:', 'when', 'did', 'you', 'get', 'this', 'idea', '||questionmark||', '||return||', '||return||', 'elaine:', 'last', 'time', 'i', 'had', 'lunch', 'with', 'you', 'here', '||period||', 'you', 'were', 'going', '*on*', 'and', '*on*', 'and', '*on*', 'about', 'how', 'you', 'wanted', 'to', 'meet', 'somebody', 'who', "didn't", 'speak', 'english', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'do', 'you', 'break', 'it', 'in', 'with', 'her', '||comma||', 'then', 'you', 'try', 'it', 'out', 'on', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'and', '||period||', '||period||', '||period||', 'and', 'anybody', 'can', 'do', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'yup', '||period||', '||return||', '||return||', 'george:', 'helping', 'people', '||period||', '||period||', '||period||', 'of', 'course', '||period||', 'of', 'course', '||exclammark||', 'it', 'makes', 'perfect', 'sense', '||exclammark||', 'how', 'could', 'i', '*not*', 'be', 'doing', 'this', '||exclammark||', '||questionmark||', 'i', 'am', 'gonna', 'help', 'somebody', '||comma||', 'dammit', '||exclammark||', '||return||', '||return||', 'elaine:', '[to', 'jerry]', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "it's", 'not', 'for', 'me', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'if', 'anybody', 'should', 'be', 'doing', 'this', '||comma||', "it's", 'you', '||period||', '||return||', '||return||', 'george:', 'what', '*kind*', 'of', 'a', 'person', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "i'm", 'pretty', 'much', 'like', 'you', '||dash||', '||dash||', 'only', 'successful', '||period||', '||return||', '||return||', 'agency', 'rep:', 'this', 'is', 'a', 'wonderful', 'thing', "you're", 'doing', '||period||', "they're", 'so', 'grateful', 'just', 'to', 'have', 'someone', 'to', 'talk', 'to', '||period||', 'and', 'i', 'can', 'tell', 'you', 'that', 'everyone', 'who', 'participates', 'finds', 'the', 'experience', 'extremely', 'rewarding', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'feel', 'better', 'already', '||period||', "i'm", "feelin'", 'like', 'a', 'good', 'person', '||period||', '||return||', '||return||', 'agency', 'rep:', 'good', 'luck', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "what's", 'your', "guy's", 'name', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'fields', '||period||', 'sidney', 'fields', '||period||', '*87*', 'years', 'old', '||period||', '*87*', '||period||', 'how', 'about', 'your', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'ben', 'cantwell', '||period||', '85', '||period||', 'huh', '||period||', '||period||', '||period||', 'you', 'think', "we'll", 'make', 'it', 'to', 'that', 'age', '||questionmark||', '||return||', '||return||', 'jerry:', '*we*', '||questionmark||', 'no', '||period||', '||return||', '||return||', 'kramer:', 'so', "what's", 'up', '||comma||', 'diggity', 'dog', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'and', 'i', 'just', 'signed', 'up', 'with', 'the', 'senior', "citizen's", 'volunteer', 'agency', '||period||', 'same', 'thing', "elaine's", 'doing', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'too', 'bad', '||period||', 'now', "don't", 'say', 'i', "didn't", 'try', 'to', 'warn', 'you', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', "talkin'", 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'jerry', '||comma||', "i'm", '*surprised*', 'at', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', '*con*', '||period||', 'these', 'agencies', 'are', 'usually', 'a', 'front', 'for', 'some', 'money', 'laundering', 'scheme', '||period||', 'or', "they're", 'bunko', 'artists', '||semicolon||', "bilkin'", 'people', 'out', 'of', 'their', 'life', 'savings', '||comma||', 'oh', '*yeah*', '||period||', '||return||', '||return||', 'jerry:', 'where', 'do', 'you', '*get*', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'alternative', 'media', '||comma||', 'jerry', '||period||', "that's", 'where', 'you', 'hear', 'the', 'truth', '||period||', '||return||', '||return||', 'newman:', 'kramer', '||questionmark||', '||exclammark||', 'kramer', '||exclammark||', '||questionmark||', 'where', 'are', 'you', '||questionmark||', 'kramer', '||exclammark||', '||questionmark||', '||exclammark||', 'kramer', '||exclammark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'in', 'here', '||period||', "c'mon", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', '*newman*', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'jerry', '||comma||', 'george', '||period||', '[to', 'kramer]', 'so', '||comma||', 'did', 'you', 'ask', 'him', 'about', 'the', 'records', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'what', 'records', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'newman', 'and', 'i', 'are', 'going', 'partners', 'selling', 'used', 'records', '||period||', '||return||', '||return||', 'newman:', 'you', 'know', "ron's", 'records', 'down', 'on', 'bleeker', '||questionmark||', 'they', 'pay', 'big', 'cash', 'for', 'used', 'records', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'so', 'we', 'thought', 'if', 'you', 'had', 'any', 'of', 'those', 'big', '||comma||', "y'know", '||comma||', 'old', '||dash||', 'fashioned', 'useless', 'records', '||comma||', "y'know", '||comma||', 'just', '||period||', '||period||', '||period||', "lyin'", 'around', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', "y'know", '||comma||', "we'd", 'take', 'them', 'off', 'your', 'hands', '||comma||', 'free', 'of', 'charge', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'something', '||period||', 'what', 'do', 'you', 'do', 'for', 'a', 'living', '||comma||', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', "i'm", 'a', 'united', 'states', 'postal', 'worker', '||period||', '||return||', '||return||', 'george:', "aren't", 'those', 'the', 'guys', 'that', 'always', 'go', 'crazy', 'and', 'come', 'back', 'with', 'a', 'gun', 'and', 'shoot', 'everybody', '||questionmark||', '||return||', '||return||', 'newman:', 'sometimes', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'why', '*is*', 'that', '||questionmark||', '||return||', '||return||', 'newman:', 'because', 'the', 'mail', 'never', 'stops', '||period||', 'it', 'just', 'keeps', 'coming', 'and', 'coming', 'and', 'coming', '||comma||', "there's", 'never', 'a', 'let', '||dash||', 'up', '||period||', "it's", 'relentless', '||period||', 'every', 'day', 'it', 'piles', 'up', 'more', 'and', 'more', 'and', 'more', '||exclammark||', 'and', 'you', 'gotta', 'get', 'it', 'out', 'but', 'the', 'more', 'you', 'get', 'it', 'out', 'the', 'more', 'it', 'keeps', 'coming', 'in', '||period||', 'and', 'then', 'the', 'bar', 'code', 'reader', 'breaks', 'and', "it's", "*publisher's", 'clearing', 'house*', 'day', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ron:', "i'll", 'give', 'you', 'five', 'bucks', '||period||', '||return||', '||return||', 'kramer:', 'five', 'bucks', '||questionmark||', '||questionmark||', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'you', 'know', 'how', 'much', 'those', 'records', 'are', 'worth', '||exclammark||', '||questionmark||', '||return||', '||return||', 'ron:', 'yeah', '||comma||', 'i', 'do', '||period||', '||period||', '||period||', "fi'", 'dollars', '||period||', '||return||', '||return||', 'newman:', 'those', 'records', 'are', 'worth', 'more', 'than', 'five', 'dollars', '||exclammark||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', "he's", "gyppin'", 'us', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', "you're", "gyppin'", 'us', '||exclammark||', '||return||', '||return||', 'ron:', 'well', '||comma||', 'whattya', 'got', 'here', '||comma||', "y'know", '||comma||', 'you', 'got', '||quotemark||', 'don', 'ho', 'live', 'at', 'honolulu', '||quotemark||', '||comma||', 'you', 'got', '||quotemark||', 'jerry', 'vale', 'sings', 'italian', 'love', 'songs', '||quotemark||', 'you', 'got', 'sergio', 'mendes', '||comma||', 'now', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||period||', '||period||', '||period||', 'sergio', 'mendes', 'has', 'a', 'cult', 'following', '||period||', '||return||', '||return||', 'newman:', 'they', 'follow', 'him', 'like', 'a', 'cult', '||period||', '||return||', '||return||', 'kramer:', 'he', "can't", 'even', 'walk', 'down', 'the', 'street', 'in', 'south', 'america', '||period||', '||period||', '||period||', '||return||', '||return||', 'ron:', 'look', '||comma||', "that's", 'his', 'problem', '||comma||', 'alright', '||questionmark||', 'now', 'you', "don't", 'like', 'it', '||comma||', 'too', 'bad', '||period||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'i', "don't", 'like', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'like', 'it', '||period||', '||return||', '||return||', 'ron:', 'well', '||comma||', 'then', 'get', 'the', 'hell', 'out', 'of', 'my', 'store', '||comma||', 'alright', '||questionmark||', 'you', 'bring', 'me', 'something', 'decent', '||comma||', "i'll", 'give', 'you', 'some', 'money', '||period||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'alright', '||comma||', 'well', 'be', 'back', '||comma||', 'jack', '||period||', '||return||', '||return||', 'newman:', 'alright', '||comma||', 'well', 'be', 'back', '||period||', '||period||', '||period||', '*jack*', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', "i'm", 'jerry', 'seinfeld', '||comma||', 'the', 'agency', 'sent', 'me', '||period||', '||return||', '||return||', 'housekeeper:', 'agency', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'is', 'this', 'sid', "field's", 'residence', '||questionmark||', '||return||', '||return||', 'housekeeper:', 'sid', 'fields', '||period||', '||return||', '||return||', 'sid:', 'what', 'the', '*hell*', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'mr', '||period||', 'fields', '||questionmark||', '||return||', '||return||', 'sid:', 'what', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', "i'm", 'jerry', 'seinfeld', '||comma||', 'the', 'agency', 'sent', 'me', '||period||', '||return||', '||return||', 'sid:', 'agency', '||questionmark||', 'what', 'agency', '||questionmark||', 'the', '*cia*', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'the', '||dash||', '||dash||', '||return||', '||return||', 'sid:', 'who', 'let', 'you', 'in', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'woman', '||comma||', 'she', '||dash||', '||dash||', '||return||', '||return||', 'sid:', 'oh', '*her*', '||period||', 'she', '*steals*', 'from', 'me', '||period||', 'steals', 'my', 'money', '||period||', 'she', 'says', 'she', "doesn't", 'speak', 'english', '||period||', 'my', '*ass*', 'she', "doesn't", 'speak', 'english', '||period||', 'plays', 'that', "freakin'", '||quotemark||', 'voo', '||dash||', 'doo', '||quotemark||', 'music', '||comma||', 'tries', 'to', 'hypnotize', 'me', '||period||', 'she', 'thinks', "she's", 'gonna', 'turn', 'me', 'into', 'a', 'zombie', 'and', 'then', 'rob', 'me', 'blind', '||period||', 'well', '||comma||', 'i', "wasn't", 'born', 'yesterday', '||period||', 'i', 'may', 'drop', 'dead', 'today', '||comma||', 'but', 'i', 'sure', 'as', 'hell', "wasn't", 'born', 'yesterday', '||period||', 'now', 'get', 'the', 'hell', 'out', 'of', 'my', 'house', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'mr', '||period||', 'fields', '||comma||', "i'm", 'here', 'to', 'spend', 'some', 'time', 'with', 'you', '||period||', '||return||', '||return||', 'sid:', 'oh', '||comma||', 'really', '||period||', 'are', 'you', 'the', 'boyfriend', '||questionmark||', 'i', 'know', "she's", 'got', 'a', 'boyfriend', '||period||', 'are', 'you', 'going', 'to', '*kill*', 'me', '||questionmark||', "i'm", 'an', 'old', 'man', 'for', 'crying', 'out', 'loud', '||comma||', 'you', 'gonna', 'kill', 'an', 'old', 'man', '||comma||', 'you', 'coward', '||questionmark||', '||exclammark||', '||questionmark||', '[jerry', 'gets', 'out', 'card]', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'mr', '||period||', 'field', '||comma||', 'look', '||comma||', 'really', "i'm", '||dash||', '||dash||', '||return||', '||return||', 'sid:', 'i', "can't", 'read', 'that', 'you', 'fool', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what's", 'all', 'this', 'stuff', '||questionmark||', '||return||', '||return||', 'sid:', 'trash', '||period||', 'garbage', '||period||', '||return||', '||return||', 'jerry:', "you're", "throwin'", 'this', 'out', '||questionmark||', '||questionmark||', '||return||', '||return||', 'sid:', 'i', 'believe', "that's", 'what', 'you', 'do', 'with', 'garbage', '||comma||', 'you', 'idiot', '||period||', '||return||', '||return||', '||leftparen||', 'you', 'can', 'make', 'out', 'the', 'albums', 'pretty', 'clearly', '||period||', 'one', 'is', 'an', 'apparent', 'k', '||dash||', 'tel', '||quotemark||', 'classic', '||quotemark||', ':', '||quotemark||', '22', 'explosive', 'hits', '||quotemark||', '||comma||', 'i', "don't", 'know', 'the', 'other', 'one', '||period||', 'anyone', '||questionmark||', 'i', 'believe', '||quotemark||', 'the', 'beatles', '||quotemark||', '||leftparen||', 'the', 'white', 'album', '||rightparen||', 'is', 'there', 'also', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', "don't", 'want', 'any', 'of', 'this', '||questionmark||', '||return||', '||return||', 'sid:', 'well', 'if', 'i', 'wanted', 'it', 'i', "wouldn't", 'be', 'throwing', 'it', 'away', '||comma||', '*ein', '||dash||', 'stein*', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'have', 'some', 'friends', 'who', 'would', 'really', 'like', 'to', 'have', 'these', '||period||', '||return||', '||return||', 'sid:', 'well', '||comma||', 'take', 'it', '||period||', "i'm", 'sure', 'as', 'hell', 'not', 'going', 'to', 'give', 'it', 'to', 'my', 'family', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'do', 'you', 'want', 'to', 'go', 'out', 'for', 'a', 'walk', '||comma||', 'get', 'a', 'cup', 'of', 'coffee', '||period||', '||period||', '||period||', '||return||', '||return||', 'sid:', 'with', 'you', '||questionmark||', "i'd", 'rather', 'be', 'dead', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', "i'll", 'get', "goin'", 'then', '||period||', 'i', 'just', 'remembered', 'i', 'got', 'an', 'appointment', 'to', 'get', 'my', '||comma||', 'um', '||comma||', 'tonsils', 'out', '||period||', '||return||', '||return||', 'sid:', 'good', '||period||', 'thank', 'god', '||period||', 'good', 'riddance', '||period||', '[pause]', 'oh', 'listen', '||comma||', 'before', 'you', 'go', '||comma||', 'would', 'you', 'mind', 'changing', 'my', 'diaper', '||questionmark||', 'haa', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ben:', 'no', '||comma||', 'i', 'feel', 'great', 'for', '85', '||period||', '||return||', '||return||', 'george:', "y'know", 'the', 'average', 'life', 'span', 'for', 'an', 'american', 'male', 'is', 'like', '||comma||', '72', '||period||', "you're", 'really', '||period||', '||period||', '||period||', 'kinda', "pushin'", 'the', 'envelope', 'there', '||period||', '||return||', '||return||', 'ben:', "i'm", 'not', 'afraid', 'of', "dyin'", '||period||', 'i', 'never', 'think', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'you', "don't", '||questionmark||', 'boy', '||comma||', 'i', 'think', 'about', 'it', 'a', 'lot', '||period||', 'i', 'think', 'about', 'it', 'at', 'my', 'age', '||period||', 'imagine', 'how', 'much', "i'll", 'be', "thinkin'", 'about', 'it', 'at', 'your', 'age', '||period||', 'all', "i'll", 'do', 'is', 'keep', "thinkin'", 'about', 'it', 'until', 'it', 'drives', 'me', 'insane', '||period||', '||period||', '||period||', '||return||', '||return||', 'ben:', "i'm", 'grateful', 'for', 'every', 'moment', 'i', 'have', '||period||', '||return||', '||return||', 'george:', 'grateful', '||questionmark||', 'how', 'can', 'you', 'be', 'grateful', 'when', "you're", '*so*', 'close', 'to', 'the', 'end', '||questionmark||', 'when', 'you', 'know', 'that', 'any', 'second', '||dash||', '||dash||', 'poof', '||exclammark||', 'bamm', '||dash||', 'o', '||exclammark||', 'it', 'can', 'all', 'be', 'over', '||period||', 'i', 'mean', "you're", 'not', 'stupid', '||comma||', 'you', 'can', 'read', 'the', 'handwriting', 'on', 'the', 'wall', '||period||', "it's", 'a', 'matter', 'of', 'simple', 'arithmetic', '||comma||', 'for', 'gods', 'sake', '||period||', '||period||', '||period||', '||return||', '||return||', 'ben:', 'i', 'guess', 'i', 'just', "don't", 'care', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'how', 'can', 'you', 'sit', 'there', 'and', 'look', 'me', 'in', 'the', 'eye', 'and', 'tell', 'that', 'me', "you're", 'not', 'worried', '||questionmark||', '||exclammark||', "don't", 'you', 'have', 'any', '*sense*', '||questionmark||', '||exclammark||', '||exclammark||', "don't", 'you', 'have', 'a', 'brain', '||exclammark||', '||questionmark||', 'are', 'you', 'so', 'completely', 'senile', 'that', 'you', "don't", 'know', 'what', "you're", 'talkin', 'about', 'anymore', '||exclammark||', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'ben:', "life's", 'too', 'short', 'to', 'waste', 'on', 'you', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'please', '||dash||', '||dash||', '||return||', '||return||', 'ben:', 'get', 'out', 'of', 'my', 'way', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'but', 'mr', '||period||', 'cantwell', '||comma||', 'you', '||period||', '||period||', '||period||', 'you', 'owe', 'me', 'for', 'the', 'soup', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'mrs', '||period||', 'oliver', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'yes', 'my', 'dear', '||period||', '||return||', '||return||', 'elaine:', 'ooh', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'o:', "what's", 'the', 'trouble', '||questionmark||', 'are', 'you', 'alright', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'yeah', '||period||', 'yes', '||period||', 'yeah', '||period||', '||return||', '||return||', 'mrs', '||period||', 'o:', "it's", 'my', 'goiter', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'say', 'goiter', '||questionmark||', 'what', 'goiter', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'this', 'football', '||dash||', 'shaped', 'lump', 'jutting', 'out', 'the', 'side', 'of', 'my', 'neck', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', '*that*', 'goiter', '||period||', 'hey', '||period||', '||period||', '||period||', 'heh', 'heh', 'heh', '||period||', '||period||', '||period||', 'whaddya', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'does', 'it', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'bother', 'me', '||questionmark||', 'oh', '||comma||', 'phhbt', '||period||', '||period||', '||period||', 'why', 'would', 'a', 'little', 'goiter', 'like', 'that', 'bother', 'me', '||questionmark||', 'no', '||comma||', 'not', 'a', 'bit', '||period||', "it's", 'nothing', '||period||', "it's", "nothin'", '||comma||', "it's", 'um', '||comma||', 'in', 'fact', '||comma||', "it's", 'um', '||comma||', "it's", 'very', 'distinctive', '||comma||', "y'know", '||questionmark||', 'um', '||comma||', 'i', 'mean', 'you', 'want', 'to', 'know', 'something', '||questionmark||', 'i', '||comma||', 'i', 'wish', 'i', 'had', 'one', '||period||', '[pause]', 'really', '||period||', '||return||', '||return||', 'jerry:', "c'mon", 'elaine', '||comma||', "it's", 'just', 'a', 'goiter', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'what', "i'm", 'going', 'to', 'do', '||period||', 'i', "can't", 'look', 'the', 'woman', 'in', 'the', 'face', '||period||', 'i', 'mean', 'i', 'keep', "thinkin'", 'that', 'that', "goiter's", 'gonna', 'start', "talkin'", 'to', 'me', '||period||', '||period||', '||period||', "you'd", 'think', "they'd", 'mention', 'that', 'before', 'they', 'send', 'you', 'over', 'there', '||quotemark||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'this', 'woman', '*almost*', 'has', 'a', 'second', 'head', '||quotemark||', '||period||', 'but', 'no', '||comma||', 'no', '||comma||', 'i', "didn't", 'get', 'any', 'goiter', 'information', '||period||', '||return||', '||return||', 'jerry:', 'they', 'really', 'should', 'mention', 'that', 'in', 'the', 'breakdown', 'height', '||comma||', 'weight', '||comma||', 'goiter', '||period||', '||return||', '||return||', 'elaine:', "y'know", 'you', 'try', 'to', 'do', 'some', 'good', '||period||', 'you', 'want', 'to', 'be', 'a', 'good', 'person', 'but', 'this', 'is', 'too', 'much', 'to', 'ask', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', "i'll", 'tell', 'ya', '||comma||', "i'd", 'rather', 'talk', 'to', 'a', 'goiter', 'with', 'a', 'nice', 'disposition', 'than', 'the', 'nut', 'they', 'sent', 'me', 'to', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'georgie', '||comma||', 'what', 'happened', 'with', 'your', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'think', "it's", 'gonna', 'work', 'out', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'whattya', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'fired', 'me', '||period||', '||return||', '||return||', 'jerry:', 'he', 'fired', 'you', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'elaine:', '*how*', 'do', 'you', 'get', 'fired', 'from', 'a', 'volunteer', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dunno', '||period||', 'i', 'was', 'just', 'talking', 'to', 'the', 'man', 'and', 'he', 'walked', 'out', 'on', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'dunno', 'about', 'you', 'two', '||comma||', 'but', "i'm", 'quitting', '||period||', 'i', 'hate', 'my', 'guy', '||period||', "he's", 'a', 'mean', '||comma||', 'mean', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'i', 'wish', 'i', 'could', 'quit', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', 'quit', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "i'm", 'a', 'great', 'quitter', '||period||', "it's", 'one', 'of', 'the', 'few', 'things', 'i', 'do', 'well', '||period||', 'i', 'come', 'form', 'a', 'long', 'line', 'of', 'quitters', '||period||', 'my', 'father', 'was', 'a', 'quitter', '||comma||', 'my', 'grandfather', 'was', 'a', 'quitter', '||period||', '||period||', '||period||', 'i', 'was', 'raised', 'to', 'give', 'up', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "here's", 'your', '*albums*', '[journey', '||quotemark||', 'escape', '||quotemark||', 'is', 'on', 'top', '||comma||', 'btw', '||period||', '||period||', '||period||', ']', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'newman:', 'five', 'dollars', '||period||', 'he', 'offered', 'us', '*five*', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'what', 'kind', 'of', 'stuff', 'are', 'you', 'listening', 'to', '||questionmark||', 'you', '*embarrassed*', 'me', 'at', 'that', 'store', '||period||', '||return||', '||return||', 'newman:', 'that', 'guy', 'thought', 'we', 'were', 'a', 'couple', 'of', 'total', 'squares', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'you', 'and', 'your', '*sergio', 'mendes*', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'that', 'guy', "can't", 'even', 'go', 'to', 'the', 'bathroom', 'in', 'south', 'america', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'shoulda', 'seen', 'the', 'pile', 'of', 'albums', 'this', 'old', 'guy', 'i', 'was', 'visiting', 'today', 'was', 'throwing', 'away', 'sinatra', '||comma||', 'duke', 'ellington', '||comma||', 'al', 'jolson', '||comma||', 'benny', 'goodman', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'now', '||period||', '||period||', '||period||', "he's", 'throwin', 'them', 'out', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'then', 'i', 'asked', 'him', 'if', 'my', 'friend', 'could', 'have', 'them', 'and', 'he', 'said', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', '[in', "kramer's", 'ear]', 'the', 'old', "coot's", "sittin'", 'on', 'a', 'mountain', 'of', 'gold', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', "you're", 'going', 'to', 'have', 'to', 'go', 'get', 'em', '||period||', "i'm", 'not', "carryin'", 'them', 'all', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', "you've", 'gotta', 'come', 'with', 'us', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", "goin'", 'there', 'today', '||period||', 'in', 'fact', 'you', 'should', 'see', 'this', 'house', 'keeper', "he's", 'got', '||period||', "she's", 'from', 'senegal', '[and', '||comma||', 'ala', 'carson]', 'wild', '||comma||', 'wild', '||comma||', 'stuff', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'senegal', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'you', "don't", 'speak', '*any*', 'english', 'at', 'all', '||questionmark||', '||return||', '||return||', 'housekeeper:', 'english', '||questionmark||', 'no', '||period||', '||return||', '||return||', 'sid:', 'hey', '||comma||', 'what', 'are', 'those', 'bums', "doin'", 'back', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'said', 'they', 'could', 'come', 'and', 'take', 'the', 'records', '||period||', '||return||', '||return||', 'sid:', "it's", 'like', "watchin'", 'a', 'couple', 'of', 'hyenas', "goin'", 'through', 'the', 'garbage', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'speak', '*any*', 'english', '||questionmark||', '||return||', '||return||', 'housekeeper:', 'no', 'english', '||period||', '||return||', '||return||', 'george:', 'i', 'would', 'like', 'to', 'dip', 'my', 'bald', 'head', 'in', 'oil', 'and', 'rub', 'it', 'all', 'over', 'your', 'body', '||period||', '[no', 'reaction]', 'you', "don't", 'understand', '||exclammark||', "it's", 'a', 'miracle', '||exclammark||', 'you', "don't", 'understand', 'because', 'you', "don't", 'speak', 'english', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'mr', '||period||', 'fields', 'i', 'just', "don't", 'know', 'if', 'this', 'arrangement', 'is', '||dash||', '||dash||', '||return||', '||return||', 'sid:', 'hey', '||comma||', 'i', "don't", 'like', "what's", "goin'", 'on', 'around', 'here', '||period||', 'i', 'want', 'all', 'you', 'bums', 'outta', 'here', '||period||', '||return||', '||return||', 'kramer:', 'now', 'calm', 'down', '||comma||', 'mr', '||period||', 'fields', '||period||', '||period||', '||period||', '||return||', '||return||', 'sid:', 'now', "don't", 'tell', 'me', 'to', 'calm', 'down', '||period||', '||period||', '||period||', 'get', 'your', 'hands', 'off', 'of', 'me', '||exclammark||', 'why', 'you', 'little', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oooow', '||exclammark||', "he's", 'biting', 'me', '||exclammark||', '||return||', '||return||', 'sid:', 'my', 'teeth', '||exclammark||', 'my', 'teeth', '||exclammark||', '||return||', '||return||', 'jerry:', "where's", 'his', 'teeth', '||exclammark||', "where's", 'his', 'teeth', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'thought', 'i', 'saw', 'something', 'fly', 'over', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', 'turn', 'the', 'light', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'garbage', 'disposal', '||exclammark||', '||return||', '||return||', 'sid:', 'my', 'teeth', '||exclammark||', 'you', 'idiots', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'and', 'we', 'would', 'take', 'long', 'automobile', 'trips', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'that', 'sounds', 'like', 'a', 'lot', 'of', 'fun', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'staring', 'out', 'the', 'window', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'o:', "you'd", 'see', 'a', 'long', 'view', 'of', 'rolling', 'pastures', 'and', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "that'll", 'get', 'you', "goin'", 'right', 'there', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'big', '||comma||', 'roaming', 'cows', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'cows', '||comma||', 'well', "that's", 'fascinating', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'o:', "that's", 'when', 'i', 'began', 'my', 'affair', 'with', 'mohandas', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'mohandas', '||period||', '||return||', '||return||', 'elaine:', 'ghandhi', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'o:', 'oh', '||comma||', 'the', '*passion*', '||period||', 'the', '*forbidden', 'pleasure*', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'you', 'had', 'an', 'affair', 'with', 'ghandhi', '||questionmark||', 'mrs', '||period||', 'o', 'he', 'used', 'to', 'dip', 'his', 'bald', 'head', 'in', 'oil', 'and', 'rub', 'it', 'all', 'over', 'my', 'body', '||period||', 'here', '||comma||', 'look', '||period||', '||period||', '||period||', '[shows', 'elaine', 'a', 'picture', 'of', 'the', 'two', 'together]', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||period||', 'the', 'mohatma', '||questionmark||', '||return||', '||return||', 'ron:', 'twenty', 'bucks', '||period||', '||return||', '||return||', 'newman:', 'twenty', 'bucks', '||questionmark||', '||exclammark||', '||questionmark||', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'ron:', 'well', '||comma||', 'take', 'it', 'or', 'leave', 'it', '||period||', '||return||', '||return||', 'newman:', 'take', 'it', 'or', 'leave', 'it', '||exclammark||', '||questionmark||', 'we', 'got', '*al', 'jolson*', 'here', '||comma||', '*al', 'jolson*', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ron:', 'now', 'what', 'the', 'hell', 'do', 'i', 'care', 'about', 'al', 'jolson', '||period||', "i'd", 'just', 'assume', 'her', 'you', 'sing', '||quotemark||', 'mammy', '||quotemark||', '||period||', 'heh', 'heh', 'heh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'this', "guy's", "nothin'", 'but', 'a', 'piece', 'of', 'crap', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'you', 'are', 'nothing', 'but', 'a', 'piece', 'of', 'crap', '||period||', '||return||', '||return||', 'ron:', 'pardon', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'a', 'piece', 'of', 'crap', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'a', 'piece', 'of', 'crap', '||period||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'i', 'find', 'you', 'extremely', 'ugly', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'i', 'find', 'you', 'extremely', 'ugly', '||period||', '||return||', '||return||', 'ron:', '*do*', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'you', 'emit', 'a', 'foul', 'and', 'unpleasant', 'odour', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'you', 'emit', 'a', 'foul', 'and', 'unpleasant', 'odour', '||period||', '||return||', '||return||', 'ron:', 'oh', '||comma||', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'i', '*loathe*', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'i', '*loathe*', 'you', '||period||', '||return||', '||return||', 'ron:', "that's", 'it', '||period||', 'get', 'out', 'of', 'my', 'store', '||exclammark||', '||return||', '||return||', 'kramer:', '[in', "newman's", 'ear]', 'make', 'us', '||period||', '||return||', '||return||', 'newman:', 'make', 'us', '||exclammark||', '||return||', '||return||', 'ron:', 'oh', '||comma||', "i'll", 'make', 'you', '||exclammark||', '||return||', '||return||', 'agency', 'rep:', 'do', 'you', 'realize', 'how', 'irresponsible', 'this', 'is', '||questionmark||', 'our', "agency's", 'sole', 'purpose', 'is', 'to', 'care', 'for', 'senior', 'citizens', '||period||', 'and', 'in', 'one', 'fell', 'swoop', "you've", 'single', '||dash||', 'handedly', 'destroyed', 'our', 'reputation', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'but', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '[into', 'intercom]', 'yes', '||questionmark||', '||return||', '||return||', 'tim:', "it's", 'tim', 'fields', '||comma||', 'mr', '||period||', "fields'", 'son', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "c'mon", 'up', '||period||', '||return||', '||return||', 'jerry:', '[to', 'rep]', 'i', 'dunno', 'what', 'happened', '||comma||', 'we', 'were', 'just', 'trying', 'to', 'take', 'him', 'to', 'the', 'dentist', '||period||', '||return||', '||return||', 'agency', 'rep:', 'why', 'were', 'you', 'taking', 'him', 'to', 'the', 'dentist', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'well', '||comma||', 'his', 'false', 'teeth', 'got', 'mangled', 'up', 'in', 'the', 'garbage', 'disposal', '||dash||', '||dash||', '||return||', '||return||', 'agency', 'rep:', 'what', 'were', 'his', 'false', 'teeth', 'doing', 'in', 'the', 'garbage', 'disposal', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'after', 'he', 'bit', 'my', 'friend', '||dash||', '||dash||', '||return||', '||return||', 'agency', 'rep:', 'bit', 'your', 'friend', '||questionmark||', '||exclammark||', '||return||', '||return||', 'tim:', 'what', 'the', '*hell*', 'is', 'going', 'on', 'here', '||questionmark||', 'how', 'do', 'you', '*lose*', 'a', 'human', 'being', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'tim:', 'and', 'who', 'were', 'these', 'other', 'people', '||period||', 'what', 'were', 'they', 'doing', 'in', 'the', 'apartment', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'brought', 'them', 'up', 'there', 'to', 'take', 'his', 'records', '||dash||', '||dash||', '||return||', '||return||', 'tim:', 'take', 'his', '*records*', '||questionmark||', 'do', 'you', 'realize', 'how', 'valuable', 'that', 'record', 'collection', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'there', 'you', 'are', '||period||', 'did', 'you', 'find', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "y'know", 'we', 'took', 'the', 'old', "man's", 'records', 'over', 'to', "ron's", 'and', 'he', 'tried', 'to', '*screw*', 'us', 'so', 'we', 'got', 'in', 'a', 'fight', '||period||', '||return||', '||return||', 'newman:', 'it', 'was', 'a', 'real', 'melee', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'a', 'real', 'brouhaha', '||period||', '||period||', '||period||', '||return||', '||return||', 'sidra:', 'oh', '||comma||', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'sidra', '||period||', 'i', 'usually', 'last', 'about', 'ten', 'minutes', 'on', 'a', 'stairmaster', '||period||', 'unless', 'of', 'course', "there's", 'someone', 'stretching', 'in', 'front', 'of', 'me', 'in', 'a', 'leotard', '||comma||', 'then', 'i', 'can', 'go', 'an', 'hour', '||period||', '||return||', '||return||', 'sidra', '||leftparen||', 'amused', '||rightparen||', ':', 'really', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', "that's", 'why', 'they', 'call', 'it', 'a', 'stairmaster', '||period||', 'you', 'get', 'up', 'there', 'and', 'you', 'stare', '||period||', '||return||', '||return||', 'sidra', '||leftparen||', 'stepping', 'off', '||rightparen||', ':', 'well', '||comma||', "i'm", 'done', '||period||', 'i', 'think', "i'm", 'gonna', 'go', 'take', 'a', 'sauna', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'see', 'you', 'thursday', 'night', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'sidra:', 'thursday', 'night', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'good', 'workout', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'mimics', 'smoking', 'an', '||quotemark||', 'after', 'sex', 'cigarette', '||quotemark||', '||rightparen||', ':', 'tremendous', 'workout', '||period||', '||return||', '||return||', 'elaine:', "that's", 'a', 'pretty', 'girl', '||period||', '||return||', '||return||', 'jerry:', 'tremendous', 'girl', '||period||', '||return||', '||return||', 'elaine:', "she's", 'the', 'one', 'you', 'went', 'out', 'with', 'last', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'really', 'like', 'her', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'uh', '||period||', '||period||', '||period||', "they're", 'fake', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', "don't", 'say', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', 'nah', '||exclammark||', "they're", 'fake', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'can', 'tell', '||period||', 'you', 'know', 'how', "you're", 'always', 'bragging', 'how', 'you', 'can', 'spot', 'a', 'lesbian', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'bragging', '||comma||', 'i', 'happen', 'to', 'have', 'a', 'very', 'keen', 'lesbian', 'eye', '||period||', '||leftparen||', 'a', 'woman', 'walks', 'by', 'jerry', 'and', 'elaine', '||period||', '||rightparen||', 'hi', '||comma||', 'how', 'ya', 'doin', '||period||', "'", '||leftparen||', 'jerry', 'jerks', 'a', 'thumb', 'at', 'the', 'woman', 'to', 'confirm', 'his', 'talent', '||period||', 'elaine', 'is', 'skeptical', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'right', '||period||', "c'mon", '||comma||', "don't", 'you', 'think', 'they', 'seem', 'a', 'bit', 'too', 'perfect', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'they', 'do', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'never', 'knew', 'you', 'were', 'so', 'into', 'breasts', '||period||', 'i', 'thought', 'you', 'were', 'a', 'leg', 'man', '||period||', '||return||', '||return||', 'jerry:', 'a', 'leg', 'man', '||questionmark||', 'why', 'would', 'i', 'be', 'a', 'leg', 'man', '||questionmark||', 'i', "don't", 'need', 'legs', '||period||', 'i', 'have', 'legs', '||period||', 'have', 'you', 'ever', 'seen', 'her', 'naked', 'in', 'the', 'locker', 'room', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||comma||', 'then', 'i', "can't", 'accept', 'your', 'testimony', '||period||', 'maybe', 'if', 'you', 'had', 'seen', 'her', 'naked', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'want', 'to', 'see', 'her', 'naked', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'do', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "that's", 'your', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'you', 'made', 'the', 'allegation', '||period||', 'the', 'least', 'you', 'could', 'do', 'is', 'follow', 'up', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', "i'm", 'gonna', 'go', 'in', 'there', 'and', 'spy', 'on', 'her', 'in', 'the', 'sauna', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', 'go', 'in', 'there', '||exclammark||', 'do', 'a', 'little', 'investigative', 'journalism', '||period||', 'i', 'need', 'to', 'know', '||exclammark||', '||return||', '||return||', 'elaine:', 'but', 'a', 'few', 'more', 'dates', 'and', 'you', 'can', 'find', 'out', 'for', 'yourself', '||exclammark||', '||return||', '||return||', 'jerry:', "don't", 'be', 'so', 'sure', '||period||', 'look', 'at', 'george', '||dash||', "he's", 'on', 'his', 'ninth', 'date', 'with', 'betsy', '||comma||', 'he', 'still', "hasn't", 'gotten', 'anywhere', 'with', 'her', '||period||', '||return||', '||return||', 'elaine:', "what's", 'his', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'every', 'time', 'he', 'tries', 'to', 'make', 'a', 'move', '||comma||', 'something', 'screws', 'up', '||period||', 'like', 'on', 'their', 'last', 'date', '||comma||', 'they', 'were', 'on', 'the', 'couch', '||comma||', 'but', 'she', 'was', 'sitting', 'on', 'his', 'wrong', 'side', '||period||', '||return||', '||return||', 'elaine:', 'wrong', 'side', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'she', 'was', 'on', 'his', 'right', 'side', '||period||', 'he', "can't", 'make', 'a', 'move', 'with', 'his', 'left', 'hand', '||period||', "can't", 'go', 'left', '||period||', '||return||', '||return||', 'elaine:', 'he', "can't", 'go', 'left', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', "i'm", 'lefty', '||comma||', "can't", 'go', 'right', '||period||', 'what', 'about', 'women', '||questionmark||', 'do', 'they', 'go', 'left', 'or', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'nah', '||comma||', 'we', 'just', 'play', 'defense', '||period||', '||return||', '||return||', 'george:', 'can', 'i', 'ask', 'you', 'a', 'question', '||questionmark||', 'would', 'you', 'mind', 'switching', 'seats', '||questionmark||', '||return||', '||return||', 'betsy:', 'oh', '||comma||', 'actually', '||comma||', 'i', 'really', 'prefer', 'to', 'sit', 'here', '||period||', 'i', "don't", 'hear', 'very', 'well', 'out', 'of', 'this', 'ear', '||leftparen||', 'points', 'to', 'her', 'right', 'ear', '||rightparen||', 'so', '||comma||', 'i', 'always', 'try', 'to', 'sit', 'to', 'the', 'right', 'of', 'people', '||period||', '||return||', '||return||', 'george:', "i'll", 'shout', '||period||', '||return||', '||return||', 'betsy:', 'well', '||comma||', 'i', 'really', 'think', 'i', 'feel', 'more', 'comfortable', 'here', '||period||', '||return||', '||return||', 'george:', "c'mon", '||comma||', "c'mon", '||period||', '||period||', '||period||', '||leftparen||', 'stands', 'up', 'and', 'physically', 'rolls', 'betsy', 'to', 'the', 'left', 'side', 'of', 'the', 'couch', '||period||', '||rightparen||', 'see', '||comma||', 'now', '||comma||', 'is', 'that', 'so', 'bad', '||questionmark||', '||return||', '||return||', 'betsy:', 'what', '||questionmark||', '||leftparen||', 'the', 'phone', 'rings', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'attempting', 'to', 'make', 'a', 'move', '||rightparen||', ':', 'no', '||comma||', 'no', '||comma||', 'the', "machine'll", 'get', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'betsy:', 'no', '||comma||', 'no', '||comma||', "it's", 'not', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "they'll", 'call', 'back', '||period||', '||return||', '||return||', 'betsy:', 'but', 'george', '||comma||', 'what', 'if', "it's", 'an', 'emergency', '||questionmark||', '||return||', '||return||', 'george:', 'in', 'the', 'whole', 'world', 'right', 'now', '||comma||', "there's", 'maybe', 'three', 'emergencies', '||period||', 'why', 'would', 'you', 'think', '||comma||', 'on', 'this', 'entire', 'planet', '||comma||', 'that', "you're", 'one', 'of', 'those', 'three', '||questionmark||', '||return||', '||return||', 'betsy:', 'george', '||comma||', 'please', '||period||', '||leftparen||', 'gets', 'up', 'and', 'answers', 'the', 'phone', '||period||', '||rightparen||', 'hello', '||questionmark||', 'what', '||questionmark||', '||leftparen||', 'shocked', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'maybe', 'four', '||period||', '||return||', '||return||', "elaine's", 'brain:', 'boy', '||comma||', "i'm", 'really', 'sweatin', '||period||', "'", 'good', 'sweat', '||comma||', 'beads', 'of', 'sweat', '||period||', '||period||', '||period||', "sweatin'", 'bullets', '||period||', '||leftparen||', 'notices', 'sidra', '||period||', '||rightparen||', 'look', 'at', 'her', '||period||', 'i', "don't", 'need', 'to', 'see', 'her', 'naked', 'to', 'know', 'those', "aren't", 'real', '||period||', 'why', 'does', 'she', 'need', 'to', 'tie', 'the', 'towel', 'around', 'her', '||questionmark||', "she's", 'got', 'a', 'rack', 'on', 'her', 'chest', '||period||', '||leftparen||', 'sidra', 'takes', 'her', 'towel', 'off', 'and', 'lies', 'down', '||period||', '||rightparen||', 'oh', 'god', '||exclammark||', "sidra's", "takin'", 'the', 'towel', 'off', '||exclammark||', '||leftparen||', 'looks', 'at', "sidra's", 'chest', '||period||', '||rightparen||', 'whoa', '||comma||', 'doctor', '||exclammark||', "that's", 'it', '||comma||', 'i', 'knew', 'it', '||exclammark||', 'i', 'knew', 'it', '||comma||', "they're", 'definitely', 'fake', '||period||', '||return||', '||return||', 'betsy:', 'so', '||comma||', "when's", 'the', 'funeral', '||questionmark||', 'well', '||comma||', 'aunt', 'clarice', 'was', 'so', 'ill', '||comma||', 'i', 'guess', 'it', 'was', 'really', 'a', 'blessing', '||period||', '||leftparen||', 'george', '||comma||', 'on', 'the', 'couch', 'behind', 'betsy', '||comma||', 'is', 'impatiently', 'waiting', 'for', 'her', 'to', 'get', 'off', 'the', 'phone', 'so', 'he', 'can', 'continue', 'putting', 'the', 'moves', 'on', 'her', '||period||', 'he', 'shrugs', '||comma||', 'and', 'crosses', 'himself', '||period||', '||rightparen||', 'yeah', '||comma||', "i'll", 'fly', 'home', 'as', 'soon', 'as', 'i', 'can', '||period||', '||leftparen||', 'george', 'waves', 'goodbye', '||comma||', 'and', 'mimics', 'a', 'plane', 'flying', 'through', 'the', 'air', 'with', 'his', 'hand', '||period||', '||rightparen||', 'o', '||period||', 'k', '||period||', 'you', '||comma||', 'too', '||period||', 'get', 'some', 'sleep', '||period||', '||leftparen||', 'betsy', 'looks', 'at', 'george', '||comma||', 'and', 'he', 'manufactures', 'a', 'completely', 'phony', 'look', 'of', 'sorrow', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "you're", 'sure', '||questionmark||', '||return||', '||return||', 'elaine:', 'positive', '||exclammark||', 'this', "chick's", "playin'", 'with', 'confederate', 'money', '||period||', '||return||', '||return||', 'jerry:', 'well', 'then', '||comma||', "that's", 'it', '||period||', "that's", 'the', 'end', 'of', 'that', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'just', "'cause", 'of', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', "'cause", 'of', 'that', '||questionmark||', "it's", 'like', 'finding', 'out', 'mickey', 'mantle', 'corked', 'his', 'bat', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||exclammark||', "you've", 'dated', 'women', 'with', 'nosejobs', '||comma||', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'touch', 'the', 'nose', '||exclammark||', 'you', "don't", 'aspire', 'to', 'reach', 'the', 'nose', '||period||', 'you', "don't", 'unhook', 'anything', 'to', 'get', 'to', 'a', 'nose', '||comma||', 'and', 'no', 'man', 'has', 'ever', 'tried', 'to', 'look', 'up', 'a', "woman's", 'nostril', '||period||', '||return||', '||return||', 'elaine:', "you've", 'put', 'a', 'lot', 'of', 'thought', 'into', 'this', '||comma||', "haven't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'take', 'it', 'very', 'seriously', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'sometimes', 'when', 'i', 'think', "you're", 'the', 'shallowest', 'man', "i've", 'ever', 'met', '||comma||', 'you', 'somehow', 'manage', 'to', 'drain', 'a', 'little', 'more', 'out', 'of', 'the', 'pool', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'you', 'know', '||comma||', 'i', 'do', 'kinda', 'wonder', 'what', 'fake', 'breast', 'feel', 'like', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'know', 'what', 'they', 'feel', 'like', '||period||', '||return||', '||return||', 'jerry:', 'you', '||questionmark||', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'lived', 'in', 'los', 'angeles', 'for', 'three', 'months', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'laughs', '||rightparen||', ':', 'i', 'thought', 'you', 'hated', 'los', 'angeles', '||period||', '||return||', '||return||', 'kramer:', 'i', 'do', '||exclammark||', 'i', 'just', 'miss', 'the', 'warm', 'weather', '||comma||', "y'know", '||questionmark||', 'jeez', '||period||', 'oh', 'man', '||comma||', 'i', 'wish', 'i', 'could', 'get', 'away', '||period||', '||return||', '||return||', 'jerry:', 'real', 'busy', 'now', 'down', 'at', 'the', 'office', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'huh', '||questionmark||', 'you', 'know', 'who', 'i', 'saw', 'at', 'the', 'health', 'club', '||questionmark||', 'salman', 'rushdie', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'laughing', '||rightparen||', ':', 'yeah', 'right', '||comma||', 'salman', 'rushdie', '||period||', 'yeah', 'well', '||comma||', 'i', 'can', 'see', 'that', '||dash||', 'you', 'got', 'five', 'millions', 'moslems', 'after', 'you', '||comma||', 'you', 'wanna', 'stay', 'in', 'pretty', 'good', 'shape', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'what', 'the', 'problem', 'is', '||dash||', 'i', 'like', 'her', 'too', 'much', '||period||', "that's", 'why', 'i', "can't", 'make', 'a', 'move', '||period||', '||return||', '||return||', 'jerry:', 'you', 'put', 'her', 'on', 'a', 'pedestal', '||period||', '||return||', '||return||', 'kramer:', 'i', 'put', 'them', 'on', 'a', 'dental', 'chair', '||period||', '||return||', '||return||', 'jerry:', 'he', 'puts', "'em", 'on', 'a', 'dental', 'chair', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'her', 'boyfriend', '||period||', 'i', 'want', 'to', 'be', 'her', 'boyfriend', '||period||', '||return||', '||return||', 'kramer:', 'whoo', '||period||', "it's", 'like', 'a', 'sauna', 'in', 'here', '||period||', '||return||', '||return||', 'george:', "that's", 'funny', '||period||', "you're", 'a', 'funny', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'funny', '||period||', 'yeah', '||comma||', 'i', 'never', 'heard', 'that', 'before', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'so', '||comma||', 'you', "goin'", 'to', 'the', 'funeral', '||questionmark||', '||return||', '||return||', 'george:', 'why', '||comma||', 'you', 'think', 'i', 'should', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', "it's", 'a', 'golden', 'opportunity', 'to', 'advance', 'the', 'relationship', '||period||', "she's", 'crying', '||comma||', 'you', 'put', 'your', 'arm', 'around', 'her', 'and', 'console', 'her', '||period||', '||period||', '||period||', "you're", 'the', 'consolation', 'guy', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'the', 'consolation', 'guy', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'consolation', 'guy', 'is', 'big', '||period||', '||return||', '||return||', 'jerry:', 'her', 'aunt', 'dying', 'is', 'the', 'best', 'thing', 'that', 'ever', 'happened', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', "it's", 'like', 'ten', 'dates', 'in', 'one', 'shot', '||period||', '||return||', '||return||', 'jerry:', 'this', 'confers', 'upon', 'you', 'instant', 'boyfriend', 'status', '||period||', 'the', "family's", 'there', '||period||', '||period||', '||period||', "you're", 'taking', 'care', 'of', 'things', '||period||', '||period||', '||period||', "you're", "gettin'", 'the', 'sandwiches', '||period||', '||period||', '||period||', "you're", 'the', 'rock', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'in', 'detroit', 'though', '||comma||', "it's", 'an', 'expensive', 'flight', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'get', 'a', '||quotemark||', 'death', 'in', 'the', 'family', '||quotemark||', 'fare', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'go', 'to', 'the', 'airlines', '||comma||', 'you', 'tell', 'them', 'you', 'got', 'a', 'death', 'in', 'the', 'family', '||questionmark||', 'they', 'give', 'you', '50%', 'off', 'the', 'fare', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'in', 'fact', '||comma||', 'listen', '||period||', '||period||', '||period||', "i'll", 'go', 'down', 'there', 'with', 'ya', '||period||', 'you', 'know', '||comma||', "we'll", 'tell', 'them', "there's", 'a', 'death', 'in', 'my', 'family', '||comma||', 'you', 'buy', 'the', 'ticket', '||comma||', "i'll", 'split', 'it', '||period||', '||period||', '||period||', 'then', "i'll", 'get', 'the', 'bonus', 'miles', 'and', "you'll", 'get', 'to', 'detroit', 'for', 'a', 'quarter', 'of', 'the', 'price', '||exclammark||', '||return||', '||return||', "elaine's", 'brain:', 'boy', '||comma||', "i'm", "gettin'", 'a', 'good', 'sweat', 'here', '||period||', 'great', 'sweat', '||comma||', 'good', 'beads', '||period||', 'nice', 'beads', '||period||', '||return||', '||return||', "elaine's", 'brain:', 'ah', '||comma||', 'look', "who's", 'here', '||period||', '||quotemark||', 'silicon', 'valley', '||period||', '||quotemark||', '||return||', '||return||', 'sidra', '||leftparen||', 'to', 'her', 'friend', '||rightparen||', ':', 'so', 'anyway', '||comma||', 'we', 'go', 'out', 'on', 'one', 'date', '||comma||', 'he', 'asks', 'me', 'out', 'for', 'a', 'second', '||comma||', 'then', 'out', 'of', 'nowhere', 'he', 'cancels', 'the', 'date', 'and', 'says', 'he', "doesn't", 'want', 'to', 'see', 'me', 'again', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||period||', '||period||', '||period||', 'sorry', '||comma||', 'i', "couldn't", 'help', 'overhearing', '||period||', '||return||', '||return||', 'sidra:', 'oh', '||comma||', "that's", 'o', '||period||', 'k', '||period||', '||return||', '||return||', 'elaine:', 'did', 'he', 'give', 'you', 'a', 'reason', '||questionmark||', '||return||', '||return||', 'sidra:', 'yeah', '||period||', "he's", 'going', 'back', 'to', 'his', 'old', 'girlfriend', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'sidra:', 'he', 'said', "she's", 'mentally', 'ill', '||period||', "he's", 'one', 'of', 'those', 'guys', 'who', 'is', 'obsessed', 'with', 'neatness', 'and', 'order', '||questionmark||', 'everything', 'has', 'gotta', 'be', 'just', 'so', '||period||', 'he', 'would', 'have', 'made', 'a', 'great', 'nazi', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'does', 'he', 'ever', 'talk', 'about', 'superman', '||questionmark||', '||return||', '||return||', 'sidra:', 'yes', '||exclammark||', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'know', 'the', 'type', '||period||', '||return||', '||return||', 'sidra:', 'so', 'you', 'can', 'relate', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'sidra', '||leftparen||', 'sits', 'across', 'from', 'elaine', 'and', 'takes', 'her', 'towel', 'off', '||rightparen||', ':', 'you', 'know', '||comma||', "i've", 'seen', 'you', 'around', 'the', 'club', '||period||', 'my', "name's", 'sidra', '||period||', 'this', 'is', 'marcy', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||period||', "i'm", 'elaine', '||period||', '||leftparen||', 'gets', 'up', 'to', 'shake', "sidra's", 'hand', '||comma||', 'but', 'stumbles', 'and', 'falls', '||quotemark||', 'right', 'into', 'them', '||period||', '||quotemark||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'anyway', '||comma||', 'i', 'stood', 'up', 'to', 'shake', 'her', 'hand', '||comma||', 'then', 'suddenly', 'i', 'lost', 'my', 'balance', 'and', 'i', 'fell', 'right', 'into', 'her', '||period||', '||return||', '||return||', 'jerry:', 'you', 'fell', 'on', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'touched', "'em", '||period||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', '||period||', '||period||', '||period||', 'touched', '||period||', '||period||', '||period||', "'em", '||period||', '||return||', '||return||', 'jerry:', 'you', 'touched', "'em", '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'needed', 'them', 'to', 'help', 'me', 'break', 'my', 'fall', '||exclammark||', 'if', 'it', "hadn't", 'been', 'for', 'them', '||comma||', 'i', 'could', 'have', 'really', 'injured', 'myself', '||exclammark||', '||return||', '||return||', 'jerry:', 'wow', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||period||', '||period||', '||period||', "they're", 'real', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'they', 'might', 'be', 'real', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'what', 'do', 'you', 'know', '||comma||', 'you', 'have', 'no', 'breast', 'touching', 'experience', '||period||', '||return||', '||return||', 'elaine:', "i've", 'touched', 'mine', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'have', 'i', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'right', '||period||', '||period||', '||period||', 'i', 'forgot', '||period||', '||leftparen||', 'smiles', '||rightparen||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'touching', 'two', 'breasts', "doesn't", 'make', 'you', 'an', 'expert', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'well', 'anyway', '||comma||', 'i', 'think', "they're", 'real', '||period||', 'and', 'if', 'they', 'are', '||comma||', 'i', 'must', 'say', 'they', 'are', '||period||', '||period||', '||period||', 'spectacular', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'what', 'are', 'you', "doin'", 'to', 'me', '||questionmark||', '||leftparen||', 'puts', 'his', 'head', 'down', 'on', 'the', 'counter', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'clerk', '||rightparen||', ':', 'you', 'see', '||comma||', 'my', 'friend', 'here', '||comma||', 'his', 'aunt', 'passed', 'away', 'last', 'night', '||period||', '||return||', '||return||', 'clerk', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'oh', '||comma||', "i'm", 'very', 'sorry', '||period||', '||return||', '||return||', 'kramer:', 'i', 'saw', 'her', 'last', 'week', '||comma||', 'she', 'looked', 'healthy', 'and', 'peaceful', '||comma||', 'but', '||period||', '||period||', '||period||', 'she', 'knew', '||period||', '||period||', '||period||', '||return||', '||return||', 'clerk:', 'you', 'poor', 'thing', '||exclammark||', '||return||', '||return||', 'kramer', '||leftparen||', 'breaking', 'into', 'tears', '||rightparen||', ':', 'i', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'think', 'you', 'can', 'buy', 'the', 'ticket', 'yourself', '||period||', '||period||', '||period||', '||questionmark||', 'no', '||comma||', 'there', '||comma||', 'there', '||period||', '||period||', '||period||', 'you', 'sit', '||comma||', 'and', "i'll", 'purchase', 'the', 'ticket', 'for', 'you', '||period||', '||return||', '||return||', 'clerk:', "you're", 'a', 'good', 'friend', '||period||', '||return||', '||return||', 'george:', 'i', 'understand', 'you', 'offer', 'a', '50%', '||dash||', 'off', "'bereavement'", 'fare', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'clerk:', 'yes', '||comma||', 'all', 'you', 'have', 'to', 'do', 'is', 'pay', 'the', 'full', 'fare', 'now', '||comma||', 'then', 'return', 'to', 'any', 'one', 'of', 'our', 'counters', 'with', 'a', 'copy', 'of', 'the', 'death', 'certificate', '||comma||', 'and', "we'll", 'refund', 'half', 'your', 'fare', '||period||', '||return||', '||return||', 'george:', 'the', 'death', 'certificate', '||questionmark||', '||return||', '||return||', 'clerk:', 'yes', '||comma||', 'yes', '||comma||', 'we', 'do', 'need', 'documentation', 'or', 'you', 'know', '||comma||', 'people', 'could', 'take', 'advantage', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'a', 'sick', 'person', 'would', 'do', 'a', 'thing', 'like', 'that', '||questionmark||', '||return||', '||return||', 'clerk:', 'i', 'know', '||exclammark||', 'but', 'it', 'happens', '||period||', '||return||', '||return||', 'george:', 'you', 'want', 'my', 'friend', 'to', 'ask', 'his', 'uncle', '||comma||', 'a', 'man', 'who', 'just', 'lost', 'his', 'wife', 'of', '44', 'years', '||comma||', 'for', 'a', 'death', 'certificate', 'so', 'that', 'he', 'can', 'save', 'a', 'few', 'bucks', 'on', 'a', 'flight', '||questionmark||', '||return||', '||return||', 'clerk:', 'that', 'would', 'be', '$387', 'round', '||dash||', 'trip', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'in', 'a', 'perfectly', 'normal', 'tone', 'of', 'voice', '||rightparen||', ':', 'alright', '||comma||', 'so', "you'll", 'need', 'my', 'frequent', 'flyer', 'number', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'clerk:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'one', 'minute', 'you', 'say', "they're", 'fake', '||comma||', 'the', 'next', 'minute', 'you', 'think', "they're", 'real', '||period||', '||period||', '||period||', 'i', "don't", 'know', 'what', 'to', 'believe', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'of', 'the', 'two', 'of', 'us', '||comma||', "i'm", 'the', 'only', 'one', "who's", 'touched', "'em", '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'were', 'just', 'grabbing', 'on', 'to', 'them', 'to', 'save', 'your', 'life', '||period||', 'if', 'you', 'were', 'drowning', 'and', 'i', 'threw', 'you', 'a', 'life', 'preserver', '||comma||', 'you', 'think', 'you', 'could', 'tell', 'me', 'if', 'it', 'was', 'an', 'inflatable', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "wouldn't", 'have', 'said', 'anything', 'if', 'i', 'knew', 'you', 'were', 'going', 'to', 'stop', 'seeing', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'mind', 'someone', 'with', 'a', 'phony', 'personality', '||comma||', 'but', 'i', 'gotta', 'draw', 'the', 'line', 'somewhere', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'george', 'off', 'to', 'detroit', '||questionmark||', '||return||', '||return||', 'kramer:', 'yep', '||exclammark||', 'and', '||comma||', 'in', 'two', 'days', '||comma||', "i'm", 'off', 'to', 'puerto', 'rico', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'kramer', '||comma||', 'by', 'the', 'way', '||comma||', 'i', 'saw', 'that', 'guy', 'at', 'the', 'health', 'club', '||period||', '||period||', '||period||', 'that', 'is', 'not', 'salman', 'rushdie', '||period||', '||return||', '||return||', 'kramer:', 'pffft', '||dash||', 'wrong', '||period||', '||return||', '||return||', 'jerry:', "there's", 'sidra', '||period||', '||return||', '||return||', 'kramer:', "there's", 'salman', '||period||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'kramer:', "talkin'", 'to', 'that', 'woman', '||period||', '||return||', '||return||', 'jerry:', "talkin'", 'to', 'sidra', '||questionmark||', '||return||', '||return||', 'kramer:', 'if', "that's", 'sidra', '||comma||', "she's", "talkin'", 'to', 'salman', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', "that's", 'salman', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'think', "they're", 'real', '||period||', '||return||', '||return||', 'jerry:', 'if', "that's", 'rushdie', '||comma||', "they're", 'real', '||period||', '||return||', '||return||', 'kramer:', 'if', "they're", 'real', '||comma||', "that's", 'rushdie', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'gotta', 'know', '||dash||', "i'm", "talkin'", 'to', 'sidra', '||period||', '||return||', '||return||', 'kramer:', 'i', 'gotta', 'know', '||comma||', "i'm", "talkin'", 'to', 'salman', '||period||', '||return||', '||return||', 'kramer:', "it's", 'like', 'a', 'sauna', 'in', 'here', '||comma||', 'huh', '||questionmark||', 'i', 'feel', 'like', "i'm", '||period||', '||period||', '||period||', 'back', 'at', 'the', 'desert', '||period||', '||return||', '||return||', '||quotemark||', 'salman', '||quotemark||', ':', "you've", 'lived', 'in', 'the', 'desert', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'yeah', '||comma||', "i've", 'uh', '||period||', '||period||', '||period||', "i've", 'spent', 'a', 'little', 'time', 'in', 'the', 'mideast', '||period||', 'you', 'ever', 'been', 'to', 'the', 'mideast', '||questionmark||', '||return||', '||return||', '||quotemark||', 'salman', '||quotemark||', ':', 'yes', '||comma||', "i've", 'been', 'there', '||period||', '||return||', '||return||', 'kramer:', 'my', "name's", 'kramer', '||period||', '||return||', '||return||', '||quotemark||', 'salman', '||quotemark||', '||leftparen||', 'shakes', "kramer's", 'hand', '||rightparen||', ':', 'sal', 'bass', '||period||', 'pleased', 'to', 'meet', 'you', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'uh', '||period||', '||period||', '||period||', 'what', 'kind', 'of', 'work', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', '||quotemark||', 'salman', '||quotemark||', ':', "i'm", 'a', 'writer', '||period||', '||return||', '||return||', 'betsy', '||leftparen||', 'to', 'aunt', 'may', '||rightparen||', ':', 'have', 'you', 'met', 'my', 'boyfriend', 'george', '||questionmark||', '||return||', '||return||', 'aunt', 'may:', 'no', '||exclammark||', '||leftparen||', 'shakes', "george's", 'hand', '||period||', '||rightparen||', '||return||', '||return||', 'betsy:', 'george', '||comma||', 'this', 'is', 'aunt', 'may', '||comma||', 'and', 'father', 'jessup', '||period||', 'oh', '||comma||', 'and', "that's", 'my', 'brother', '||comma||', 'timmy', '||period||', '||leftparen||', 'timmy', 'smiles', 'thinly', '||period||', '||rightparen||', 'this', 'is', 'my', 'boyfriend', '||comma||', 'george', '||period||', '||return||', '||return||', 'aunt', 'may:', 'oh', 'george', '||comma||', 'how', 'nice', 'of', 'you', 'to', 'come', 'all', 'this', 'way', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'the', 'boyfriend', '||period||', 'otherwise', '||comma||', "what's", 'the', 'point', 'of', 'being', 'the', 'boyfriend', '||questionmark||', 'this', 'is', 'where', 'you', 'have', 'to', 'be', 'when', "you're", 'the', 'boyfriend', '||period||', '||return||', '||return||', 'aunt', 'may:', 'betsy', '||comma||', 'dear', '||comma||', 'have', 'you', 'had', 'anything', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'betsy:', "i'm", 'not', 'very', 'hungry', '||period||', '||return||', '||return||', 'aunt', 'may:', 'they', 'have', 'some', 'very', 'nice', 'snacks', '||period||', '||return||', '||return||', 'father', 'jessup:', "i'm", 'about', 'to', 'get', 'myself', 'a', 'snack', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'you', 'sit', 'right', 'here', '||period||', '||period||', '||period||', 'i', 'will', 'get', 'you', 'a', 'nice', 'snack', '||period||', '||return||', '||return||', 'father', 'jessup:', 'this', 'is', 'my', 'third', 'wake', 'this', 'month', '||period||', 'it', 'never', 'gets', 'any', 'easier', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'loading', 'up', 'his', 'plate', 'with', 'sandwiches', '||rightparen||', ':', 'well', '||comma||', 'losing', 'a', 'loved', 'is', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'mean', '||comma||', 'forget', 'about', 'it', '||period||', '||leftparen||', 'starts', 'wolfing', 'down', 'the', 'sandwiches', '||period||', '||rightparen||', '||return||', '||return||', 'father', 'jessup:', 'you', 'seem', 'to', 'be', 'of', 'great', 'comfort', 'to', 'betsy', '||comma||', "we're", 'very', 'appreciative', '||period||', '||return||', '||return||', 'george:', 'oh', '||dash||', 'comfort', '||comma||', 'schmomfort', '||period||', 'listen', '||comma||', 'father', '||comma||', 'can', 'i', 'ask', 'you', 'a', 'question', '||questionmark||', 'in', 'a', 'terrible', 'time', 'like', 'this', '||period||', '||period||', '||period||', 'who', 'would', 'i', 'get', 'the', 'death', 'certificate', 'from', '||questionmark||', '||return||', '||return||', 'kramer:', "c'mon", 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'how', 'can', 'you', 'be', 'so', 'sure', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'are', 'you', 'blind', '||questionmark||', "he's", 'a', 'writer', '||period||', 'he', 'said', 'his', 'name', 'was', 'sal', 'bass', '||period||', 'bass', '||comma||', 'jerry', '||exclammark||', 'instead', 'of', 'salmon', '||comma||', 'he', 'went', 'with', 'bass', '||exclammark||', 'he', 'just', 'substituted', 'one', 'fish', 'for', 'another', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'you', 'idiot', '||comma||', 'first', 'of', 'all', '||comma||', "it's", 'salman', '||comma||', 'not', 'salmon', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'jerry', '||comma||', "you're", 'missing', 'the', 'big', 'picture', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'maybe', 'it', 'is', '||comma||', 'but', 'listen', '||comma||', 'i', 'gotta', 'get', 'ready', '||dash||', "sidra's", 'coming', 'over', 'in', 'a', 'few', 'minutes', '||comma||', 'so', 'if', 'you', "don't", 'mind', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'did', 'you', 'ask', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'find', 'out', 'tonight', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'nods', '||rightparen||', ':', 'oh', '||comma||', 'yes', 'indeed', '||period||', '||period||', '||period||', '||return||', '||return||', 'dr', '||period||', 'allenwood:', 'why', 'do', 'you', 'need', 'a', 'death', 'certificate', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'dr', '||comma||', 'allenwood', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'was', 'hoping', 'to', 'compile', 'an', '||dash||', 'admittedly', '||comma||', 'rudimentary', '||dash||', 'scrapbook', 'of', 'her', 'life', '||period||', 'something', 'that', 'betsy', 'could', 'have', '||comma||', 'and', 'hold', 'onto', '||period||', '||return||', '||return||', 'dr', '||period||', 'allenwood:', 'well', '||comma||', 'i', 'suppose', 'i', 'could', 'make', 'a', 'copy', 'of', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'that', 'would', 'be', 'wonderful', '||period||', '||return||', '||return||', 'dr', '||period||', 'allenwood:', 'it', 'was', 'very', 'nice', 'meeting', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'likewise', '||period||', '||return||', '||return||', 'timmy:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'timmy:', 'did', '||period||', '||period||', '||period||', 'did', 'you', 'just', 'double', '||dash||', 'dip', 'that', 'chip', '||questionmark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'timmy:', 'you', 'double', '||dash||', 'dipped', 'the', 'chip', '||exclammark||', '||return||', '||return||', 'george:', '||quotemark||', 'double', '||dash||', 'dipped', '||quotemark||', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'timmy:', 'you', 'dipped', 'the', 'chip', '||period||', 'you', 'took', 'a', 'bite', '||period||', '||leftparen||', 'points', 'at', 'the', 'dip', '||rightparen||', 'and', 'you', 'dipped', 'again', '||period||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'timmy:', "that's", 'like', 'putting', 'your', 'whole', 'mouth', 'right', 'in', 'the', 'dip', '||exclammark||', 'from', 'now', 'on', '||comma||', 'when', 'you', 'take', 'a', 'chip', '||dash||', 'just', 'take', 'one', 'dip', 'and', 'end', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'sorry', '||comma||', 'timmy', '||period||', '||period||', '||period||', 'but', 'i', "don't", 'dip', 'that', 'way', '||period||', '||leftparen||', 'takes', 'a', 'chip', '||period||', '||rightparen||', '||return||', '||return||', 'timmy:', 'oh', '||comma||', 'you', "don't", '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||leftparen||', 'dips', 'the', 'chip', '||rightparen||', 'you', 'dip', 'the', 'way', 'you', 'want', 'to', 'dip', '||period||', '||period||', '||period||', '||leftparen||', 'bites', 'the', 'chip', '||rightparen||', "i'll", 'dip', 'the', 'way', 'i', 'want', 'to', 'dip', '||period||', '||leftparen||', 'dips', 'the', 'chip', 'again', '||period||', '||rightparen||', '||return||', '||return||', 'timmy:', 'gimme', 'the', 'chip', '||exclammark||', '||leftparen||', 'grabs', 'george', 'and', 'the', 'chip', 'goes', 'flying', '||period||', '||rightparen||', 'gimme', 'the', 'chip', '||exclammark||', '||leftparen||', 'they', 'struggle', 'in', 'front', 'of', 'the', 'snack', 'table', '||period||', '||rightparen||', '||return||', '||return||', 'sidra:', 'i', "don't", 'know', 'what', "i'm", 'doing', 'here', '||comma||', 'i', 'must', 'be', 'crazy', '||period||', '||leftparen||', 'moves', 'to', 'the', 'couch', 'and', 'sits', 'on', 'the', 'left', 'side', '||period||', 'jerry', 'tries', 'to', 'run', 'over', 'and', 'beat', 'her', 'to', 'it', '||comma||', 'but', "doesn't", 'make', 'it', '||period||', 'he', 'sits', 'down', 'on', 'the', 'right', 'side', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'would', 'you', 'mind', 'switching', 'seats', '||questionmark||', '||return||', '||return||', 'sidra:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'i', 'just', 'like', 'sitting', 'to', 'the', 'left', 'of', 'people', '||comma||', 'makes', 'me', 'feel', 'like', "i'm", 'driving', '||period||', '||return||', '||return||', 'sidra:', 'o', '||period||', 'k', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'they', 'switch', 'places', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'sidra:', 'good', '||period||', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'feel', 'good', '||period||', '||period||', '||period||', 'you', 'know', 'that', 'jayne', 'mansfield', 'had', 'some', 'big', 'breasts', '||period||', 'really', 'big', '||comma||', 'huge', '||period||', '||period||', '||period||', 'just', 'coming', 'out', 'the', 'top', 'of', 'her', 'dress', '||comma||', 'they', 'were', 'like', '||comma||', "chokin'", 'her', '||period||', '||return||', '||return||', 'sidra:', 'i', 'hear', "that's", 'how', 'she', 'died', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'noticed', 'that', 'women', 'today', 'are', '||comma||', 'you', 'know', '||comma||', 'they', 'seem', '||period||', '||period||', '||period||', 'bigger', '||period||', '||return||', '||return||', 'sidra:', 'well', '||comma||', 'a', 'lot', 'of', 'women', 'are', 'having', 'them', 'done', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'sidra:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'like', 'that', '||period||', '||return||', '||return||', 'sidra:', 'a', 'lot', 'of', 'people', 'ask', 'me', 'if', "i've", 'had', 'mine', 'done', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'you', 'know', 'people', '||period||', '||return||', '||return||', 'sidra:', 'it', 'gets', 'a', 'little', 'tiring', '||comma||', "it's", 'really', 'none', 'of', 'their', 'business', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'nerve', '||period||', 'you', 'know', '||comma||', 'some', 'people', 'have', 'asked', 'me', 'if', "you've", 'uh', '||comma||', 'done', 'that', '||period||', '||return||', '||return||', 'sidra:', 'what', 'do', 'you', 'tell', 'them', '||questionmark||', '||return||', '||return||', 'jerry:', 'whatever', 'you', 'want', 'me', 'to', 'tell', 'them', '||period||', '||return||', '||return||', 'sidra:', 'well', '||comma||', 'i', 'think', "you'll", 'find', 'out', 'soon', 'enough', '||period||', '||leftparen||', 'they', 'prepare', 'to', 'kiss', '||period||', "there's", 'a', 'loud', 'bang', 'on', 'the', 'door', '||period||', '||rightparen||', "aren't", 'you', 'going', 'to', 'get', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'sidra:', 'what', 'if', "it's", 'an', 'emergency', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "there's", 'no', 'emergency', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'in', 'hallway', '||rightparen||', ':', 'jerry', '||exclammark||', "c'mon", '||comma||', "it's", 'an', 'emergency', '||exclammark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||period||', '||leftparen||', 'gets', 'up', 'and', 'answers', 'the', 'door', '||period||', '||rightparen||', 'alright', '||comma||', 'what', 'is', 'it', '||questionmark||', "you're", 'interrupting', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', "i'm", 'packing', 'for', 'puerto', 'rico', '||comma||', 'i', 'need', 'to', 'borrow', 'your', 'bathing', 'suit', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'an', 'emergency', '||questionmark||', 'you', 'need', 'a', 'bathing', 'suit', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'like', 'yours', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'my', 'bathing', 'suit', '||questionmark||', "that's", 'a', 'little', 'familiar', '||comma||', 'i', "don't", 'want', 'your', '||period||', '||period||', '||period||', 'your', 'boys', 'down', 'there', '||period||', '||return||', '||return||', 'kramer:', "c'mon", '||comma||', "what's", 'wrong', 'with', 'my', 'boys', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'boys', 'should', 'stay', 'in', 'their', 'neighborhood', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "c'mon", '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||period||', "it's", 'in', 'the', 'top', 'drawer', '||period||', 'hurry', 'up', '||period||', '||leftparen||', 'kramer', 'goes', 'to', 'get', 'the', 'suit', '||period||', 'elaine', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'jer', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', 'hi', '||comma||', 'sidra', '||dash||', '||return||', '||return||', 'sidra:', 'hi', '||period||', '||period||', '||period||', 'elaine', '||questionmark||', '||leftparen||', 'kramer', 'comes', 'back', 'into', 'the', 'living', 'room', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'looking', 'for', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'she', 'was', 'just', 'showing', 'me', 'pictures', 'of', 'places', 'i', 'can', 'visit', 'when', 'i', 'go', 'to', 'puerto', 'rico', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'when', 'you', 'two', 'went', 'down', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'yeah', '||period||', 'alright', '||period||', '||leftparen||', 'pushes', 'kramer', 'and', 'elaine', 'out', 'the', 'door', '||comma||', 'then', 'sits', 'next', 'to', 'sidra', 'on', 'the', 'couch', '||period||', '||rightparen||', 'so', '||comma||', 'where', 'were', 'we', '||questionmark||', '||return||', '||return||', 'sidra:', 'i', 'was', 'just', 'leaving', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'you', 'were', 'leaving', '||period||', '||return||', '||return||', 'sidra:', 'i', "can't", 'believe', 'you', 'sent', 'a', 'woman', 'into', 'the', 'sauna', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'an', 'accident', '||exclammark||', '||return||', '||return||', 'sidra:', 'i', 'think', "you're", 'both', 'mentally', 'ill', '||period||', '||leftparen||', 'leaves', '||comma||', 'then', 'opens', 'the', 'door', 'again', '||period||', '||rightparen||', 'and', 'by', 'the', 'way', '||period||', '||period||', '||period||', "they're", 'real', '||comma||', 'and', "they're", 'spectacular', '||period||', '||leftparen||', 'sidra', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'betsy:', 'stop', 'it', '||comma||', 'george', '||exclammark||', 'get', 'out', '||exclammark||', 'get', 'out', '||exclammark||', 'i', 'never', 'want', 'to', 'see', 'you', 'again', '||exclammark||', '||return||', '||return||', 'dr', '||period||', 'allenwood:', 'go', 'back', 'to', 'new', 'york', '||exclammark||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'clerk', '2:', 'alright', 'sir', '||comma||', 'now', 'all', 'i', 'need', 'is', 'a', 'death', 'certificate', 'and', "you'll", 'be', 'on', 'your', 'way', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'see', '||comma||', 'what', 'happened', 'was', '||period||', '||period||', '||period||', 'the', 'doctor', '||dash||', 'the', 'very', 'same', 'doctor', 'that', 'was', 'attending', 'to', 'my', 'late', 'aunt', '||dash||', 'suffered', 'an', 'untimely', 'stroke', '||comma||', 'and', 'lost', 'the', 'use', 'of', 'his', 'right', 'hand', '||comma||', 'so', '||period||', '||period||', '||period||', 'obviously', 'i', 'was', 'unable', 'to', 'get', 'the', 'death', 'certificate', '||period||', 'however', '||comma||', 'i', 'do', 'have', 'this', '||period||', '||leftparen||', 'reaches', 'inside', 'his', 'coat', 'and', 'takes', 'out', 'a', 'polaroid', 'photo', '||period||', '||rightparen||', '||return||', '||return||', 'clerk', '2:', "what's", 'this', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'a', 'picture', 'of', 'me', 'next', 'to', 'the', 'coffin', '||period||', '||return||', '||return||', 'clerk', '2:', 'nice', 'try', '||period||', '||return||', '||return||', 'george:', 'not', 'even', 'close', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'just', '*have*', 'an', 'adultery', '||dash||', '||dash||', 'you', '*commit*', 'adultery', '||period||', 'and', 'you', "can't", 'even', '*commit*', 'adultery', 'unless', 'you', 'already', '*have*', 'a', 'commitment', '||period||', 'so', 'you', 'have', 'to', 'make', 'the', 'commitment', 'before', 'you', 'can', 'even', 'think', 'about', 'committing', 'it', '||period||', "there's", 'no', 'commit', 'without', 'the', 'commit', '||period||', 'then', '||comma||', 'once', 'you', 'commit', '||comma||', 'then', 'you', 'can', 'commit', 'the', 'adultery', '||period||', 'then', 'you', 'can', 'get', 'caught', '||comma||', 'get', 'divorced', '||comma||', 'lose', 'your', 'mind', 'and', 'they', 'have', 'you', 'committed', '||period||', 'but', "y'know", 'some', 'people', 'actually', '*cheat*', 'on', 'the', 'people', 'that', "they're", 'cheating', 'with', '||period||', 'which', 'is', 'like', '||comma||', "y'know", '||comma||', 'being', 'in', 'a', 'hold', 'up', 'and', 'then', 'turning', 'to', 'the', 'robber', 'next', 'to', 'you', 'and', "goin'", 'alright', '||comma||', 'gimme', 'everything', 'you', 'have', '||comma||', "too''", '||period||', '||return||', '||return||', 'george:', 'you', 'met', 'her', 'at', 'the', 'supermarket', '||questionmark||', 'how', 'did', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'flips', 'a', 'roll', 'of', 'paper', 'towels', 'in', 'the', 'air', '||rightparen||', 'produce', 'section', '||period||', '*very*', 'provocative', 'area', '||period||', 'a', 'lot', 'of', 'melons', 'and', 'shapes', '||period||', "everyone's", 'squeezing', 'and', 'smelling', '||period||', '||period||', '||period||', 'it', 'just', 'happened', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||dash||', 'hu', '||rightparen||', 'so', "when're", 'you', 'gonna', 'see', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'tonight', '||period||', '||return||', '||return||', 'george:', "what's", 'her', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', '||period||', '||period||', '||period||', "don't", '||period||', '||period||', '||period||', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'you', 'not', 'know', 'her', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'a', 'little', 'nervous', '||comma||', 'i', 'got', 'distracted', '||period||', 'it', 'has', 'something', 'to', 'do', 'with', 'a', 'car', '||comma||', 'or', 'a', 'fish', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'that', '||period||', 'why', 'do', 'i', 'get', 'bananas', '||questionmark||', "they're", 'good', 'for', '*one*', 'day', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||comma||', 'i', 'forgot', 'to', 'tell', 'you', '||period||', 'i', 'got', 'a', 'letter', 'today', 'from', 'the', 'state', "controller's", 'office', '||period||', "y'know", 'when', 'i', 'was', 'going', 'to', 'public', 'school', 'back', 'in', 'brooklyn', '||comma||', 'every', 'week', 'i', 'used', 'to', 'put', 'fifty', 'cents', 'in', 'the', 'lincoln', 'savings', 'bank', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'did', 'that', 'too', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'you', 'remember', 'the', '||comma||', 'the', 'little', 'eh', '||comma||', 'bank', 'book', '||comma||', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'so', 'i', "haven't", 'put', 'anything', 'in', 'it', 'since', 'sixth', 'grade', '||comma||', 'i', 'completely', 'forgot', 'about', 'it', '||period||', 'the', 'state', "controller's", 'office', 'tracks', 'me', 'down', '||period||', 'the', 'interest', 'has', 'accumulated', 'to', '1', '||comma||', '900', 'dollars', '||period||', '1', '||comma||', '900', 'dollars', '||exclammark||', "they're", 'sending', 'me', 'a', 'cheque', '||exclammark||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', '||return||', '||return||', 'george:', 'hu', '||dash||', 'yeah', '||comma||', 'interest', '||period||', "it's", 'an', 'amazing', 'thing', '||period||', 'you', 'make', 'money', 'without', 'doing', 'anything', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "y'know", 'i', 'have', 'some', 'friends', 'who', 'try', 'and', 'base', 'their', 'whole', 'life', 'on', 'that', 'principle', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'nobody', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'maybe', "i'll", 'go', 'down', 'to', 'the', 'track', '||period||', 'put', 'it', 'all', 'on', 'a', 'horse', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'put', 'it', 'in', 'the', '*bank*', '||questionmark||', '||return||', '||return||', 'george:', 'the', '*bank*', '||questionmark||', 'this', 'is', '*found*', 'money', '||period||', 'i', 'want', 'to', '*parlay*', 'it', '||period||', 'i', 'wanna', 'make', 'a', 'big', 'score', '||exclammark||', '||return||', '||return||', 'jerry:', '*oh*', '||comma||', 'you', 'mean', 'you', 'wanna', '*lose*', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', 'all', 'right', '||period||', '||period||', '||period||', '||period||', 'ya', 'got', 'it', '||comma||', 'eh', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'did', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||period||', '||return||', '||return||', 'george:', "what's", 'with', 'the', 'gloves', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'staining', 'my', 'floors', '||comma||', "y'know", '||comma||', 'i', "don't", 'want', 'to', 'get', 'my', 'hands', 'dirty', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'huh', '||period||', 'what', '||comma||', 'the', 'whole', 'apartment', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'whole', 'apartment', '||period||', 'and', "i'm", 'buying', 'that', 'fake', 'wood', 'wallpaper', '||period||', "i'm", 'gonna', 'surround', 'myself', 'in', 'wood', '||period||', "it's", 'gonna', 'be', 'like', 'a', 'log', 'cabin', '||period||', "'cuz", 'i', '*need*', 'wood', 'around', 'me', '||period||', 'wood', '||comma||', 'jerry', '[snaps', 'fingers]', '||period||', '||period||', '||period||', 'wood', '||period||', '||return||', '||return||', 'jerry:', 'wood', 'is', 'good', '||period||', '||return||', '||return||', 'kramer:', 'definitely', '||period||', '||return||', '||return||', 'jerry:', 'so', "we're", 'still', 'going', 'to', 'the', 'health', 'club', 'to', 'play', 'racquetball', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'whenever', "you're", 'ready', '||period||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', '||comma||', 'soon', 'as', 'elaine', 'gets', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yep', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'you', 'rented', '||quotemark||', 'home', 'alone', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'saw', 'that', 'already', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'saw', '||quotemark||', 'home', 'alone', 'ii', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||period||', '||period||', '||period||', 'but', 'you', '*hated*', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'well', 'i', 'was', 'lost', '||comma||', 'i', 'never', 'saw', 'the', 'first', 'one', '||period||', 'by', 'the', 'way', '||comma||', 'you', 'mind', 'if', 'i', 'watch', 'it', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'if', 'i', 'watch', 'it', 'at', 'my', 'apartment', 'i', 'feel', 'like', "i'm", 'not', 'doing', 'anything', '||period||', 'if', 'i', 'watch', 'it', 'here', '||comma||', "i'm", 'out', 'of', 'the', 'house', '||semicolon||', "i'm", 'doing', 'something', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||period||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'the', 'intercom', '||rightparen||', "it's", 'me', '||comma||', 'are', 'you', 'ready', 'to', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'i', "can't", 'work', 'with', 'these', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'bought', 'me', 'dishwashing', 'gloves', '||period||', "there's", 'no', '*fine', 'touch*', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'said', '||quotemark||', 'gloves', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'these', 'are', 'too', 'thick', '||period||', '||leftparen||', 'removes', 'the', 'gloves/tosses', 'them', 'on', 'the', 'kitchen', 'counter', '||rightparen||', '||return||', '||return||', 'kramer:', 'oooh', '||comma||', 'is', 'that', '||quotemark||', 'home', 'alone', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'the', '*original*', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'boys', '||dash||', 'o', '||exclammark||', '||return||', '||return||', 'everyone:', '||leftparen||', 'in', 'unison', '||rightparen||', 'heyyyyyyyy', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "how's", 'it', "goin'", '||questionmark||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||leftparen||', 'snaps', 'fingers', '||rightparen||', 'get', 'your', 'stuff', '||comma||', "let's", 'get', 'going', '||period||', '||return||', '||return||', 'elaine:', 'well', 'wait', 'a', 'minute', '||comma||', "there's", 'a', 'slight', 'change', 'of', 'plans', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'eh', '||comma||', 'remember', 'roy', '||comma||', 'the', 'artist', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', '||quotemark||', 'triangle', '||quotemark||', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'exactly', '||comma||', 'the', '||quotemark||', 'triangle', '||quotemark||', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'liked', 'him', '||period||', 'what', 'happened', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', 'i', 'did', '||period||', 'he', 'was', 'very', 'talented', '||period||', 'he', 'was', '||comma||', 'ah', 'just', '||comma||', 'i', "don't", 'know', 'a', 'little', 'too', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'artsy', '||questionmark||', '||return||', '||return||', 'elaine:', 'fat', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'unh', '||dash||', 'very', 'quiet', 'sigh', '||rightparen||', '||return||', '||return||', 'elaine:', 'he', 'was', 'a', 'fat', '||comma||', 'starving', 'artist', '||comma||', "y'know", '||period||', "that's", 'very', 'rare', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', "he's", 'in', 'the', 'hospital', '||comma||', "he's", 'having', 'surgery', 'and', 'i', 'feel', 'like', 'should', 'go', 'visit', 'him', '||period||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'unh', '||comma||', 'something', 'with', 'his', 'spleen', '||period||', 'anyway', "it'll", 'just', 'take', 'five', 'minutes', '||comma||', 'o', '||period||', 'k', '||period||', '||comma||', 'and', 'then', '||comma||', 'the', 'hospital', 'is', 'right', 'on', 'the', 'way', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'putting', 'hand', 'to', 'his', 'mouth', '||comma||', 'hatching', 'a', 'thought', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', "we'll", 'wait', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'maybe', 'i', 'can', 'get', 'some', 'rubber', 'gloves', 'there', 'huh', '||comma||', 'yea', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'jerry', 'can', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', '||leftparen||', 'clears', 'throat', '||rightparen||', 'could', 'you', '||comma||', 'go', 'into', 'the', 'room', 'with', 'me', 'to', 'visit', 'him', 'because', 'ah', '||comma||', 'i', "don't", 'want', 'him', 'to', 'think', 'that', "i'm", '||comma||', "y'know", '||period||', '||period||', '||period||', 'interested', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'want', 'me', 'to', 'pretend', 'to', 'be', 'your', 'boyfriend', '||period||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'think', 'i', 'can', 'do', 'that', '||period||', 'i', 'believe', "i've", 'played', 'that', 'role', 'before', 'to', 'some', 'critical', 'acclaim', '||period||', '||return||', '||return||', 'elaine:', 'aha', 'ha', 'ha', '||leftparen||', 'laugh', '||rightparen||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'lets', 'go', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||leftparen||', 'picks', 'up', 'his', 'sports', 'bag', '||rightparen||', '||return||', '||return||', 'kramer:', 'yep', 'yep', 'yep', '||period||', '||return||', '||return||', 'elaine:', "what's", 'with', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', "y'know", 'a', 'lot', 'of', 'people', 'have', 'asked', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'roy', '||exclammark||', '||return||', '||return||', 'roy:', '*elaine*', '||exclammark||', 'what', 'a', '*surprise*', '||period||', '||leftparen||', 'sitting', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasp', '||rightparen||', 'oh', '||comma||', 'my', '*god*', '||exclammark||', 'i', 'hardly', 'recognize', 'you', '||exclammark||', 'you', 'look', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'roy:', 'yeah', '||comma||', 'ya', 'know', '||comma||', "i've", 'lost', 'some', 'weight', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'a', '*lot*', 'of', 'weight', '||period||', '||leftparen||', 'enthusiastically', '||rightparen||', '||return||', '||return||', 'roy:', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', 'aha', 'hu', '||comma||', 'you', 'look', '*terrific*', '||period||', '||return||', '||return||', 'roy:', 'thank', 'you', '||period||', 'so', 'do', 'you', '||period||', '||return||', '||return||', 'elaine:', 'ah', 'hahaha', 'hhuu', 'ha', '||leftparen||', 'flirty', 'laughing', '||rightparen||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'this', 'is', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'you', '*really*', 'lost', 'weight', '||period||', '||return||', '||return||', 'roy:', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'jerry', '||comma||', 'uh', '||comma||', "i'm", 'the', 'boyfriend', '||period||', '||leftparen||', 'puts', 'his', 'arm', 'around', "elaine's", 'shoulder', '||comma||', 'but', 'she', 'shrugs', 'it', 'off', 'twice', '||rightparen||', '||return||', '||return||', 'hospital', 'voiceover:', 'doctor', 'wittenberg', '||comma||', 'outside', 'call', '||period||', 'doctor', 'wittenberg', '||comma||', 'outside', 'call', '||period||', '||return||', '||return||', 'woman:', 'ahaaaaaaaaaa', '||exclammark||', '||leftparen||', 'scream', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'a', 'bit', 'startled', '||rightparen||', 'ahh', '||period||', '||return||', '||return||', 'hospital', 'voiceover:', 'doctor', 'wittenberg', '||comma||', 'outside', 'call', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'the', 'mother', 'lode', '||exclammark||', '||leftparen||', 'the', 'door', 'squeaks', 'a', 'bit', 'as', 'he', 'pushes', 'it', 'open', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'it', '||exclammark||', 'you', 'were', '*huge*', '||exclammark||', 'like', 'blubber', '||exclammark||', 'i', "couldn't", 'even', 'get', 'my', 'arms', 'around', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'roy:', 'yesss', '||comma||', 'i', 'remember', '||period||', '||return||', '||return||', 'elaine:', 'ahahaha', '||period||', 'well', "that's", 'the', 'positive', 'thing', 'about', 'getting', 'sick', '||comma||', 'you', 'get', 'to', 'lose', 'weight', '||period||', '||return||', '||return||', 'roy:', 'elaine', '||comma||', 'it', "wasn't", 'the', 'illness', '||period||', 'it', 'was', 'you', '||period||', '||return||', '||return||', 'elaine:', 'me', '||questionmark||', '||return||', '||return||', 'roy:', '||leftparen||', 'quietly', '||dash||', 'yeah', '||rightparen||', 'after', 'you', 'stopped', 'seeing', 'me', '||comma||', 'i', 'was', 'devastated', '||period||', 'i', "couldn't", 'eat', 'for', 'weeks', '||period||', '||return||', '||return||', 'elaine:', '*get*', '*out*', '||exclammark||', '||return||', '||return||', 'roy:', 'really', '||comma||', "it's", 'the', 'truth', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'did', 'you', 'hear', 'this', '||questionmark||', 'he', "couldn't", 'eat', 'for', 'weeks', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "that's", 'terrible', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', 'no', 'idea', 'i', 'had', 'that', 'kind', 'of', 'effect', 'on', 'you', '||period||', '||return||', '||return||', 'roy:', 'you', 'did', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', "can't", 'get', 'this', '*damn', 'thing*', 'to', 'sleep', '||period||', '||leftparen||', 'about', 'the', 'yo', '||dash||', 'yo', '||rightparen||', '||return||', '||return||', 'elaine:', 'now', 'listen', 'roy', '||comma||', 'tell', 'me', 'something', '||period||', 'when', '||comma||', 'are', 'you', "gettin'", 'out', 'of', 'here', '||questionmark||', '||return||', '||return||', 'roy:', 'next', 'thursday', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', "i'll", 'tell', 'you', 'what', '||period||', 'how', 'about', 'on', 'friday', 'i', 'take', 'you', 'out', 'for', 'a', '*big*', 'meal', 'because', '*you*', 'are', 'getting', '*too*', 'thin', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'honey', '||period||', '||period||', '||period||', "aren't", 'we', 'going', 'to', 'the', 'poconos', 'next', 'friday', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', "that's", 'the', 'week', 'after', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'believe', "it's", 'next', 'week', '||period||', '||return||', '||return||', 'elaine:', "you're", 'wrong', '||period||', '||return||', '||return||', 'jerry:', 'no', "i'm", 'not', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'shut', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'pay', 'dirt', '||exclammark||', '||leftparen||', 'holding', 'up', 'the', 'hand', 'full', 'of', 'gloves', '||period||', 'he', 'looks', 'behind', 'himself', 'as', 'the', 'door', 'closes', '||rightparen||', '||return||', '||return||', 'elaine:', 'uh', 'roy', '||comma||', 'this', 'is', 'uh', 'kramer', '||dash||', '||dash||', "he's", 'one', 'of', 'our', 'friends', '||period||', '||return||', '||return||', 'roy:', 'oh', '||comma||', 'how', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', 'i', 'do', 'great', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'doctor:', 'hi', 'roy', '||period||', '||return||', '||return||', 'roy:', 'oh', '||comma||', 'hey', 'dr', '||period||', 'siegel', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'doc', '||comma||', 'check', 'this', 'out', '||period||', '[does', 'an', 'around', '||dash||', 'the', '||dash||', 'world', 'with', 'the', 'yo', '||dash||', 'yo]', '||return||', '||return||', 'kramer:', 'heey', '||period||', '||return||', '||return||', 'jerry:', 'i', '*just*', 'learned', 'that', '||period||', '||leftparen||', 'proudly', 'holding', 'the', 'yo', '||dash||', 'yo', '||rightparen||', '||return||', '||return||', 'doctor:', 'a', '||dash||', 'hu', '||period||', '||leftparen||', 'the', 'doctor', 'is', 'at', 'a', 'loss', '||rightparen||', '||return||', '||return||', 'doctor:', 'i', 'just', 'wanted', 'to', 'stop', 'by', '||dash||', '||dash||', 'see', 'if', 'you', 'had', 'any', 'questions', 'about', "tomorrow's", 'operation', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'yeah', 'yeah', '||comma||', 'i', 'have', 'a', '||dash||', 'i', 'have', 'a', 'question', '||comma||', 'um', '||dash||', '||dash||', 'what', 'do', 'you', 'know', 'about', 'inter', '||dash||', 'abdominal', 'retractors', '||questionmark||', '||return||', '||return||', 'doctor:', 'are', 'you', 'asking', 'because', 'you', 'saw', '||quotemark||', '20/20', '||quotemark||', 'last', 'night', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'sure', 'am', '||period||', '||return||', '||return||', 'doctor:', 'well', 'that', 'report', 'was', 'about', '*one*', 'very', 'specific', 'type', 'of', 'retractor', 'and', 'i', 'can', 'assure', 'you', 'we', 'do', 'not', 'use', 'that', 'retractor', 'in', 'your', "friend's", 'procedure', '||period||', '||return||', '||return||', 'kramer:', 'but', 'you', '*will*', 'use', '||period||', '||period||', '||period||', 'a', 'retractor', '||period||', '||return||', '||return||', 'doctor:', 'we', 'have', 'to', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||dash||', 'hmm', '||period||', '||period||', '||period||', '||leftparen||', 'turns', 'and', 'walks', 'away', '||comma||', 'makes', 'a', 'face', '||comma||', 'raises', 'his', 'eyebrows', '||comma||', 'nodding', 'his', 'head', '||comma||', 'then', 'turns', 'back', 'to', 'the', 'group', '||period||', '||rightparen||', '||return||', '||return||', 'doctor:', 'tell', 'you', 'what', '||period||', "you're", 'obviously', 'concerned', 'about', 'your', "friend's", 'welfare', '||period||', 'a', 'few', 'of', 'my', 'students', 'will', 'be', 'observing', "tomorrow's", 'operation', 'from', 'the', 'viewing', 'gallery', '||period||', 'how', 'would', 'you', 'like', 'to', 'watch', 'it', 'with', 'them', '||questionmark||', '||return||', '||return||', 'kramer:', "i'd", 'love', 'to', 'watch', 'the', 'operation', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', 'jerry', '||period||', 'you', 'gotta', 'see', 'the', 'operation', '||period||', "they're", 'gonna', 'cut', 'him', 'open', '||dash||', '||dash||', 'his', "guts'll", 'be', 'all', 'over', 'the', 'place', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'true', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', "they'll", 'saw', 'through', 'bone', '||period||', 'uuuuuuuing', 'yutyutyutyutn', 'naannnaaa', '[makes', 'saw', 'noises', 'while', 'gesturing', 'over', "roy's", 'chest]', "you'll", 'see', "what's", '*inside*', 'bone', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'ttu', '||leftparen||', 'wipes', 'nose', 'and', 'sniffs', '||rightparen||', 'ttu', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'doing', '||comma||', 'you', 'crying', '||questionmark||', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', '||period||', '||leftparen||', 'takes', 'off', 'his', 'glasses', 'and', 'wipes', 'his', 'eyes', 'with', 'his', 'sleeve', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'crying', 'from', '||quotemark||', 'home', 'alone', '||quotemark||', '||questionmark||', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'old', 'man', 'got', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'just', 'get', 'yourself', 'together', '||period||', '||period||', '||period||', 'i', 'dunno', 'if', 'i', 'can', 'be', 'friends', 'with', 'you', 'anymore', 'after', 'this', 'display', '||period||', '||return||', '||return||', 'george:', 'oh', 'shut', 'up', '||exclammark||', 'what', 'are', 'you', 'doing', 'back', 'so', 'soon', '||comma||', 'anyway', '||questionmark||', '||leftparen||', 'puts', 'the', 'tape', 'back', 'in', "it's", 'case', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'never', 'even', 'got', 'to', 'the', 'gym', '||period||', 'kramer', 'got', 'the', 'gloves', '||comma||', 'wanted', 'to', 'come', 'home', 'and', 'start', 'working', 'on', 'his', 'floor', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', "how's", 'the', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "he's", 'okay', '||period||', 'in', 'fact', 'him', 'and', 'elaine', 'are', 'getting', 'ah', '||comma||', 'pretty', 'chummy', '||period||', 'now', 'elaine', 'wants', 'me', 'to', 'buy', 'some', 'of', 'his', 'art', '||period||', '||leftparen||', 'opens', 'the', 'fridge', 'and', 'gets', 'a', 'bottle', 'of', 'water', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'hnh', '||period||', "that's", 'nerve', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'she', 'and', '||quotemark||', 'triangle', 'boy', '||quotemark||', 'can', 'go', 'out', 'to', 'fancy', 'restaurants', '||period||', '||leftparen||', 'takes', 'a', 'sip', 'of', 'water', '||rightparen||', '||return||', '||return||', 'george:', "y'know", 'what', 'it', 'is', '||questionmark||', "it's", '||quotemark||', 'clara', 'nightingale', 'syndrome', '||period||', '||quotemark||', 'he', 'falls', 'ill', '||semicolon||', 'she', 'falls', 'in', 'love', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'florence', 'nightingale', '||period||', '**', '||return||', '||return||', '||leftparen||', '**', 'footnote:', 'see', 'short', 'bio', 'at', 'end', 'of', 'script', '**', '||rightparen||', '||return||', '||return||', 'george:', "what'd", 'i', 'say', '||questionmark||', 'clara', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'must', 'have', 'meant', 'clara', 'barton', '||period||', '**', '||return||', '||return||', '||leftparen||', '**', 'footnote:', 'see', 'short', 'bio', 'at', 'end', 'of', 'script', '**', '||rightparen||', '||return||', '||return||', 'george:', 'clara', 'barton', '||questionmark||', 'what', 'did', 'she', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'sure', '||comma||', 'but', 'i', 'think', 'she', 'was', 'nice', '||period||', '||leftparen||', 'takes', 'a', 'sip', 'of', 'water', '||rightparen||', '||return||', '||return||', 'george:', 'susan', 'b', '||period||', 'anthony**', 'i', 'think', "i'd", 'have', 'a', 'problem', 'with', '||period||', '||return||', '||return||', '||leftparen||', '**', 'footnote:', 'see', 'short', 'bio', 'at', 'end', 'of', 'script', '**', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'think', 'you', 'would', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'gonna', 'buy', 'his', 'art', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'why', "don't", 'you', 'buy', 'it', '||questionmark||', 'you', 'got', '1', '||comma||', '900', 'dollars', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "that's", 'what', 'i', 'want', '||dash||', '||dash||', 'triangles', '||period||', 'alright', '||comma||', "i'm", 'outta', 'here', '||period||', 'have', 'fun', 'with', "what's", '||dash||', 'her', '||dash||', 'name', '||period||', '||return||', '||return||', 'jerry:', 'i', 'will', '||period||', '||return||', '||return||', 'george:', "y'know", '||comma||', 'now', 'you', 'gotta', 'ask', 'her', 'her', 'name', '||period||', "it's", 'so', 'embarrassing', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it', "isn't", '||period||', 'i', 'can', 'find', 'out', '||period||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', 'how', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'are', 'ways', '||period||', '||return||', '||return||', 'jerry:', "y'know", 'i', 'remember', 'when', 'i', 'was', 'a', 'kid', 'growin', 'up', '||comma||', 'kids', 'would', 'make', 'fun', 'of', 'my', 'name', 'like', 'you', "wouldn't", 'believe', '||dash||', '||dash||', '||quotemark||', 'jerry', 'jerry', 'dingleberry', '||quotemark||', '||comma||', 'and', '||dash||', 'hu', '||quotemark||', 'seinsmelled', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', '||quotemark||', 'seinsmelled', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'a', '||dash||', 'hu', '||period||', 'what', 'about', 'you', '||questionmark||', 'did', 'people', 'make', 'fun', 'of', 'your', 'name', '||questionmark||', '||return||', '||return||', 'woman:', 'are', 'you', 'kidding', '||questionmark||', 'they', 'were', 'merciless', '||exclammark||', 'what', 'do', 'you', 'expect', 'when', 'your', 'name', 'rhymes', 'with', 'a', 'part', 'of', 'the', 'female', 'anatomy', '||questionmark||', '||return||', '||return||', 'woman:', '||leftparen||', "con't", '||rightparen||', 'of', 'course', '||comma||', 'not', 'everybody', 'can', 'be', 'as', 'sweet', 'as', 'you', 'are', '||period||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'oh', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', '*you*', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'now', "let's", 'try', '||quotemark||', 'breast', '||quotemark||', '||period||', '||period||', '||period||', 'celeste', '||period||', '||period||', '||period||', 'kest', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'rest', '||period||', '||period||', '||period||', 'sest', '||period||', '||period||', '||period||', 'hest', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'hest', '||quotemark||', '||questionmark||', "that's", 'not', 'a', 'name', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "should've", 'just', 'asked', 'her', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', "should've", 'asked', 'her', '||period||', '||return||', '||return||', 'george:', "what're", 'you', 'gonna', 'do', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', 'i', "can't", 'ask', 'her', 'now', '||semicolon||', "i've", 'already', 'made', 'out', 'with', 'her', '||period||', 'once', 'you', 'make', 'out', 'with', 'a', 'woman', '||comma||', 'you', "can't", 'ask', 'her', 'her', 'name', '||period||', '||return||', '||return||', 'george:', 'aretha', '||exclammark||', '||leftparen||', 'points', 'finger', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'bovary', '||exclammark||', '||leftparen||', 'points', 'finger', 'again', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "that's", 'enough', '||period||', '||leftparen||', 'sips', 'coffee', '||rightparen||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'well', 'you', 'know', "what'cha", 'gotta', 'do', '||comma||', 'you', 'gotta', 'go', 'through', 'her', 'purse', '||period||', "y'know", '||comma||', 'the', '||dash||', 'the', 'credit', 'cards', '||comma||', "driver's", 'license', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'how', 'am', 'i', 'gonna', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'she', 'goes', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', '||leftparen||', 'smacks', 'hands', '||rightparen||', 'there', 'you', 'are', '||period||', 'my', 'date', 'stood', 'me', 'up', '||period||', 'listen', '||comma||', 'will', 'you', 'guys', 'go', 'to', 'the', 'operation', 'with', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'asked', 'a', 'date', 'to', 'go', 'to', 'the', 'operation', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', 'so', "c'mon", '||comma||', '||leftparen||', 'smacks', 'hands', 'and', 'rubs', 'them', 'together', '||rightparen||', 'what', "d'you", 'say', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'operation', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'spleenectomy', '||period||', '||return||', '||return||', 'george:', "isn't", 'that', 'where', 'they', 'remove', 'the', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'no', 'no', '||comma||', "don't", 'ruin', 'it', 'for', 'me', '||comma||', 'i', "haven't", 'seen', 'it', 'yet', '||exclammark||', 'ah', '||dash||', "c'mon", '||comma||', 'what', "d'you", 'say', '||questionmark||', '||return||', '||return||', 'george:', 'mulva', '||exclammark||', '||leftparen||', 'again', 'pointing', 'finger', 'at', 'jerry', '||dash||', '||dash||', 'kramer', 'watches', 'the', 'exchange', 'back', 'and', 'forth', '||rightparen||', '||return||', '||return||', 'jerry:', 'mulva', '||questionmark||', '||leftparen||', 'waves', 'off', 'george', 'with', 'his', 'hand', '||rightparen||', '||return||', '||return||', 'kramer:', "c'mon", '||comma||', "c'mon", '||period||', 'you', 'wanna', 'go', '||questionmark||', '||leftparen||', 'pats', 'jerry', 'a', 'couple', 'times', 'on', 'the', 'shoulder', 'quietly', '||rightparen||', "c'mon", '||period||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||period||', 'just', 'let', 'me', 'finish', 'my', 'coffee', '||period||', '||period||', '||period||', 'then', "we'll", 'watch', "'em", 'go', 'slice', 'this', 'fat', 'bastard', 'up', '||period||', '||leftparen||', 'sips', 'coffee', '||rightparen||', '||return||', '||return||', 'doctor:', 'now', "we'll", 'open', 'the', 'peritoneal', 'cavity', '||comma||', 'exposing', 'the', "body's", 'internal', 'organs', '||period||', 'nurse', '||dash||', '||dash||', 'retractor', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'eating', '||questionmark||', '||return||', '||return||', 'kramer:', 'junior', 'mints', '||period||', 'do', 'you', 'want', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'i', "can't", 'see', '||period||', '||period||', '||period||', '||period||', '||period||', 'psst', '||period||', '||period||', '||period||', '||period||', 'psst', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'cou', '||comma||', 'ye', '||comma||', 'ge', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'y', '||dash||', 'ea', '||leftparen||', 'pours', 'a', 'few', 'more', 'junior', 'mints', 'into', 'his', 'hand', 'and', 'eats', 'them', '||rightparen||', '||return||', '||return||', 'jerry:', "where'd", 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'machine', '||period||', 'you', 'want', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'here', '||comma||', 'take', 'one', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'one', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "they're", 'good', '||exclammark||', 'take', 'one', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'any', '||exclammark||', '||return||', '||return||', 'kramer:', 'just', 'take', 'one', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'stop', 'it', '||exclammark||', 'kramer', '||comma||', 'stop', 'it', '||exclammark||', '||return||', '||return||', '[as', 'they', 'struggle', 'to', 'force', 'the', 'junior', 'mint', 'on', 'each', 'other', '||comma||', 'jerry', 'pushes', "kramers'", 'hand', 'away', 'and', '||dash||', '||dash||', 'in', 'slow', 'motion', 'with', 'the', 'sound', 'of', 'a', 'beating', 'heart', 'to', 'emphasize', 'the', 'event', '||dash||', '||dash||', 'the', 'junior', 'mint', 'is', 'launched', 'into', 'the', 'air', 'towards', 'the', 'operating', 'table', 'and', '||comma||', 'well', '||comma||', 'in', 'a', 'word:', '||quotemark||', 'bingo', '||quotemark||', '||dash||', '||dash||', 'with', 'a', 'small', '||quotemark||', 'splat', '||quotemark||', 'sound', '||dash||', '||dash||', 'falls', 'into', 'roy', '||comma||', 'the', 'patient', '||period||', 'the', 'surgical', 'team', 'looks', 'around', 'puzzled', 'as', 'to', 'what', 'just', 'happened', '||dash||', '||dash||', 'but', 'they', 'continue', 'on', 'with', 'the', 'operation', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'at', 'the', 'operation', 'he', 'mouths', 'the', 'words', '||rightparen||', 'did', 'it', 'go', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'ge', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'over', 'the', 'balcony', '||comma||', 'bounced', 'off', 'some', 'respirator', 'thing', '*into*', 'the', 'patient', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||quotemark||', 'into', 'the', 'patient', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'into', 'the', 'patient', '||comma||', '*literally*', '||exclammark||', '||return||', '||return||', 'george:', 'into', 'the', 'hole', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'the', 'hole', '||exclammark||', '||return||', '||return||', 'george:', "didn't", 'they', 'notice', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'could', 'they', 'not', 'notice', 'it', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "it's", 'a', 'little', 'mint', '||period||', "it's", 'a', '*junior*', 'mint', '||period||', '||return||', '||return||', 'george:', 'w', '||dash||', 'ca', '||dash||', 'what', 'did', 'they', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'sealed', 'him', 'up', 'with', 'the', 'mint', 'inside', '||period||', '||return||', '||return||', 'george:', 'they', '*left*', 'the', 'junior', 'mint', '*in*', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', 'guess', 'it', "can't", 'hurt', 'him', '||period||', '||period||', '||period||', 'people', 'eat', '*pounds*', 'of', 'those', 'things', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'they', '*eat*', 'them', '||period||', 'they', "don't", 'put', 'them', 'next', 'to', 'vital', 'organs', 'in', 'their', 'abdominal', 'cavity', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'this', 'wallpaper', 'is', '*very*', 'good', '||period||', 'my', 'place', 'looks', 'like', 'a', 'ski', 'lodge', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'did', 'you', 'force', 'that', 'mint', 'on', 'me', '||questionmark||', 'i', 'told', 'ya', 'i', "didn't", 'want', 'the', 'mint', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "didn't", 'believe', 'you', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'not', 'believe', 'me', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "who's", 'gonna', 'turn', 'down', 'a', 'junior', 'mint', '||questionmark||', "it's", 'chocolate', '||comma||', "it's", 'peppermint', '||dash||', '||dash||', "it's", '*delicious*', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'true', '||period||', '||return||', '||return||', 'kramer:', "it's", 'very', 'refreshing', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'just', "don't", 'say', 'anything', 'about', 'this', 'to', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'prognosis', '||period||', '||period||', '||period||', 'negative', '||period||', '||return||', '||return||', 'jerry:', 'prognosis', '*negative*', '||exclammark||', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'not', 'doing', 'well', '||comma||', 'the', 'doctors', "don't", 'know', 'what', 'it', 'is', '||period||', "they're", 'baffled', '||period||', '||return||', '||return||', 'jerry', 'and', 'kramer:', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'just', 'my', 'luck', '||comma||', "y'know", '||period||', '||period||', '||period||', 'just', 'when', "he's", 'getting', 'thin', 'and', 'attractive', '||period||', "y'know", 'jerry', '||comma||', 'you', 'should', 'buy', 'some', 'of', 'his', 'art', '||period||', 'that', 'would', 'really', 'lift', 'his', 'spirits', '||period||', '||return||', '||return||', 'george:', "it's", 'that', 'bleak', '||questionmark||', '||leftparen||', 'pours', 'a', 'glass', 'of', 'milk', '||rightparen||', '||return||', '||return||', 'elaine:', 'mmm', '||period||', '||period||', '||period||', '||leftparen||', 'elaine', 'goes', 'to', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'george:', "y'know", 'if', 'the', 'guy', 'dies', '||comma||', 'the', 'art', 'could', 'really', 'be', 'worth', 'something', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'we', 'gotta', 'confess', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', '||return||', '||return||', 'kramer:', 'we', 'could', 'be', 'tried', 'for', 'murder', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'have', 'this', 'on', 'my', 'conscience', '||period||', "we're", 'like', 'leopold', 'and', 'loeb', '||exclammark||', '**', '||return||', '||return||', '||leftparen||', '**', 'footnote:', 'see', 'short', 'bio', 'at', 'end', 'of', 'script', '**', '||rightparen||', '||return||', '||return||', 'kramer:', "you're", 'not', 'gonna', 'say', 'anything', '||comma||', 'you', 'got', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'and', 'you', "can't", 'stop', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", '*not*', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'hey', 'elaine', '||questionmark||', 'put', 'me', 'down', 'for', 'some', 'of', 'that', 'art', '||period||', '1', '||comma||', '900', 'dollars', 'worth', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', "that's", 'the', 'spot', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', "what're", 'you', 'so', 'tense', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'nothing', 'really', '||comma||', 'just', 'a', 'homicide', '||period||', '[she', 'finds', 'the', 'right', 'spot', 'on', 'his', 'back]', 'oh', "that's", 'terrific', '||period||', '||period||', '||period||', 'mulva', '||period||', '||return||', '||return||', 'woman:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'mulva', '||questionmark||', '||return||', '||return||', 'woman:', 'mulva', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'eh', '||comma||', 'my', "aunt's", 'name', 'is', 'mulva', '||period||', "she's", '||dash||', "she's", 'a', 'masseuse', '||period||', '||return||', '||return||', 'woman:', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'woman:', 'um', '||comma||', "i'm", 'going', 'to', 'the', 'bathroom', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'good', 'idea', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'was', 'just', 'looking', 'for', 'er', '||comma||', 'some', '||period||', '||period||', '||period||', 'gum', 'or', '||period||', '||period||', '||period||', 'mint', '||period||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'i', 'have', 'junior', 'mints', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', '[throws', 'her', 'purse', 'back', 'at', 'her]', 'no', '||comma||', 'i', 'mean', '||comma||', 'no', 'thank', 'you', '||comma||', 'nah', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'any', 'news', '||questionmark||', '||return||', '||return||', 'jerry:', '[whispering]', 'no', '||comma||', 'no', 'news', '||period||', 'you', 'better', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'i', '||dash||', 'i', "don't", 'know', 'the', 'name', 'of', 'this', 'woman', 'in', 'the', 'bathroom', '||comma||', 'so', 'when', 'she', 'comes', 'out', '||comma||', 'you', 'introduce', 'yourself', 'and', 'then', "she'll", 'be', 'forced', 'to', 'say', 'her', 'name', '||period||', '||return||', '||return||', 'kramer:', '10', '||dash||', '4', '||period||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', '||leftparen||', 'closes', 'the', 'apartment', 'door', '||rightparen||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||comma||', "i'm", 'kramer', '||period||', '||return||', '||return||', 'woman:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'kramer:', 'see', 'you', 'later', '||period||', '||leftparen||', 'he', 'promptly', 'turns', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'woman:', 'well', '||comma||', 'i', 'better', 'get', 'going', '||period||', 'i', "don't", 'want', 'to', 'be', 'late', 'for', 'the', 'play', '||period||', '||leftparen||', 'grabs', 'her', 'coat', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'okay', '||period||', '||return||', '||return||', 'woman:', "y'know", 'my', 'cousin', 'knows', 'the', 'producer', '||period||', 'i', 'may', 'get', 'to', 'go', 'backstage', 'and', 'meet', 'olympia', 'dukakis', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hey', '||comma||', "there's", 'a', 'name', 'you', "don't", 'forget', '||period||', '||return||', '||return||', 'woman:', 'mm', '||period||', 'bye', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hi', '||comma||', "i'm", 'george', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||rightparen||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'nice', 'to', 'meet', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'yeahaha', '||comma||', 'i', 'gave', 'it', 'a', 'shot', '||leftparen||', 'pats', 'jerry', 'on', 'the', 'arm', '||rightparen||', '||period||', '||period||', '||period||', 'so', '||comma||', 'any', 'word', 'on', 'the', '||quotemark||', 'artiste', '||quotemark||', '||questionmark||', '||leftparen||', 'puts', 'a', 'video', 'in', 'the', 'vcr', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "haven't", 'heard', 'anything', '||period||', '||return||', '||return||', 'george:', 'hehe', '||period||', 'well', '||comma||', 'i', 'got', 'my', 'triangles', '||period||', '||leftparen||', 'sitting', 'on', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yup', '||comma||', "y'know", '||comma||', 'they', 'really', 'spruce', 'up', 'the', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'sure', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', '||dash||', 'i', 'gotta', 'call', 'the', 'hospital', '||period||', 'i', 'gotta', 'tell', "'em", 'what', 'happened', '||period||', '||return||', '||return||', 'george:', 'no', '||dash||', 'no', 'jerry', '||period||', 'i', "wouldn't", 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'ehh', '||comma||', 'you', 'could', 'get', 'in', 'trouble', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'i', 'gotta', 'try', 'and', 'help', 'the', 'guy', '||period||', '||return||', '||return||', 'george:', 'who', 'are', 'you', 'to', 'play', 'god', '||exclammark||', '||questionmark||', 'every', "man's", 'time', 'comes', '||exclammark||', 'if', 'his', 'number', 'is', 'up', '||comma||', 'who', 'are', 'you', 'to', 'interfere', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', "i'd", 'like', 'to', 'speak', 'with', 'dr', '||period||', 'siegel', '||period||', '||period||', '||period||', "it's", 'about', 'roy', "kordic's", 'condition', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'w', '||dash||', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", '*fantastic*', '||exclammark||', '||return||', '||return||', 'george:', 'he', "didn't", 'get', 'better', '||comma||', 'did', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'thank', 'you', 'very', 'much', '||period||', 'o', '||period||', 'k', '||period||', 'bye', '||dash||', 'bye', '||period||', "he's", 'gonna', 'be', 'okay', '||exclammark||', '||return||', '||return||', 'george:', "where's", 'the', 'luck', '||questionmark||', "there's", 'no', 'luck', '||period||', '1', '||comma||', '900', 'dollars', 'down', 'the', 'drain', '||period||', '||return||', '||return||', 'roy:', 'you', 'saved', 'my', 'life', '||comma||', 'george', '||period||', 'you', 'buying', 'my', 'art', 'is', 'what', 'inspired', 'me', 'to', 'get', 'better', '||period||', "i'll", 'never', 'forget', "what'cha", 'did', 'for', 'me', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', 'th', '||dash||', "that's", 'great', '||period||', "it's", 'really', 'great', '||period||', 'hm', 'hm', 'mm', '||period||', '||return||', '||return||', 'kramer:', "y'know", '||comma||', "art's", 'a', 'great', 'investment', '||period||', '||return||', '||return||', 'elaine:', 'and', "they're", 'gonna', 'look', 'great', 'in', 'your', 'apartment', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'yes', 'i', 'look', 'forward', 'to', 'many', 'years', 'of', '||period||', '||period||', '||period||', 'looking', 'at', 'the', 'triangles', '||period||', 'well', '||comma||', "i'll", 'ah', '||comma||', "i'll", 'wait', 'for', 'you', 'outside', '||period||', '||return||', '||return||', 'roy:', 'hey', '||comma||', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'awe', '||comma||', 'alright', '||return||', '||return||', 'jerry:', "that's", 'nice', '||period||', '||return||', '||return||', 'george:', 'thanks', 'roy', '||period||', '||return||', '||return||', 'roy:', 'heeyy', '||dash||', "there's", 'the', 'guy', 'who', 'saved', 'my', 'life', '||period||', '||leftparen||', 'points', 'at', 'the', 'doctor', '||period||', '||rightparen||', '||return||', '||return||', 'doctor:', "y'know", '||period||', '||period||', '||period||', 'i', "don't", 'want', 'to', 'totally', 'discount', 'the', 'emotional', 'element', 'in', 'your', 'recovery', 'but', '||comma||', 'i', 'think', 'there', 'were', 'other', 'factors', 'at', 'play', 'here', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'doctor:', 'i', 'have', 'no', 'medical', 'evidence', 'to', 'back', 'me', 'up', 'but', '||comma||', 'something', 'happened', 'during', 'the', 'operation', 'that', 'staved', 'off', 'that', 'infection', '||period||', 'something', 'beyond', 'science', '||period||', 'something', 'perhaps', '||comma||', 'from', 'above', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'mint', '||questionmark||', '||return||', '||return||', 'doctor:', 'those', 'can', 'be', 'very', 'refreshing', '||period||', '||return||', '||return||', 'roy:', 'so', 'elaine', '||period||', '||period||', '||period||', 'where', 'are', 'we', 'going', 'for', 'our', 'big', 'dinner', 'on', 'friday', '||questionmark||', '||leftparen||', 'takes', 'a', 'big', 'mouthful', 'of', 'spaghetti', '||rightparen||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'm', '||comma||', 'uh', "i'm", 'so', 'sorry', 'roy', '||comma||', 'but', 'actually', '||comma||', 'we', 'are', 'going', 'to', 'the', '||comma||', 'poconos', 'on', 'friday', '||comma||', 'right', 'honey', '||questionmark||', '||leftparen||', 'pointing', 'to', 'jerrythe', 'boyfriend', '||questionmark||', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'we', 'are', '||period||', '||period||', '||period||', 'that', 'means', 'that', 'we', 'ah', '||comma||', 'we', 'are', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'believe', "we're", 'not', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'catching', 'another', 'glimpse', 'of', 'roy', 'eating', '||rightparen||', 'hunh', '||comma||', 'please', 'can', 'we', 'go', 'to', 'the', 'poconos', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'll", 'think', 'about', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'great', 'seats', '||period||', 'you', 'could', 'see', 'the', 'actors', 'spitting', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'uh', '||dash||', 'huh', '||period||', 'and', 'afterwards', 'we', 'went', 'backstage', 'and', 'olympia', 'dukakis', 'autographed', 'my', 'playbill', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'wait', 'a', 'second', '||comma||', 'you', 'got', 'her', 'autograph', '||questionmark||', '||return||', '||return||', 'woman:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'have', 'it', 'with', 'you', '||questionmark||', '||return||', '||return||', 'woman:', 'yeah', '||comma||', "it's", 'in', 'my', 'purse', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "le'me", 'see', '||period||', '||leftparen||', 'hands', 'jerry', 'the', 'playbill', '||rightparen||', '||return||', '||return||', 'woman:', "y'know", 'i', 'really', 'think', "i'm", 'falling', 'for', 'you', '||comma||', 'jerry', 'seinfeld', '||period||', '||leftparen||', 'stands', 'up', '||comma||', 'a', 'quick', 'kiss', 'on', 'the', 'cheek', 'and', 'hugs', 'him', '||period||', '||rightparen||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'well', '||comma||', 'i', 'really', 'think', "i'm", 'falling', 'for', 'you', '||period||', '||period||', '||period||', '[opens', 'the', 'playbill', 'and', 'flips', 'five', 'pages', 'till', 'he', 'finds', 'and', 'reads', 'autograph]', '||period||', '||period||', '||period||', '||period||', '||period||', 'joseph', 'puglia', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', 'i', 'had', 'it', 'autographed', 'for', 'my', 'uncle', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', '||dash||', 'i', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'licks', 'he', 'lips', '||rightparen||', 'you', "don't", 'know', 'my', 'name', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'do', '||period||', '||return||', '||return||', 'woman:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', '||dash||', 'it', 'rhymes', 'with', 'a', 'female', 'body', 'part', '||period||', '||return||', '||return||', 'woman:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'mulva', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'aub', '||comma||', 'ah', '||comma||', 'gipple', '||questionmark||', '||return||', '||return||', 'jerry:', 'loleola', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'oh', '||exclammark||', '*delores*', '||exclammark||', '||return||', '||return||', 'jerry:', 'ages', 'zero', 'through', 'ten', '||comma||', 'candy', 'is', 'your', 'life', '||period||', "there's", 'nothing', 'else', '||period||', 'family', '||comma||', 'friends', '||comma||', 'school', '||dash||', '||dash||', "they're", 'only', 'obstacles', 'in', 'the', 'way', 'of', 'getting', 'more', 'candy', '||period||', 'and', 'you', 'have', 'your', 'favorite', 'candies', 'that', 'you', 'love', '||period||', 'you', 'know', 'the', 'ones', 'i', 'love', 'those', '||period||', '||period||', '||period||', 'i', 'hate', 'those', '||period||', '||period||', '||period||', "''", '||period||', '``i', 'hate', 'those', '||period||', '||period||', '||period||', 'i', 'love', 'those', '||period||', '||period||', '||period||', "''", '||period||', 'and', 'only', 'a', 'seven', 'year', 'old', 'kid', 'could', 'actually', 'taste', 'the', 'difference', 'between', 'like', 'a', 'red', 'm&m', 'and', 'a', 'light', 'brown', '||comma||', 'm&m', '||period||', "that's", 'two', 'totally', 'different', 'things', 'when', "you're", 'seven', 'years', 'old', '||period||', '||quotemark||', 'well', '||comma||', 'your', 'red', 'is', 'more', 'of', 'a', 'main', 'course', 'm&m', '||comma||', 'but', 'the', 'brown', "it's", 'more', 'of', 'a', 'mellower', 'flavor', '||semicolon||', "it's", 'an', 'after', 'dinner', 'm&m', '||comma||', "really''", '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'and', 'it', '*is*', 'embarrassing', '||comma||', 'because', 'a', 'doggie', 'bag', 'means', 'either', 'you', 'are', 'out', 'at', 'a', 'restaurant', 'when', 'you', "aren't", 'hungry', '||comma||', 'or', "you've", 'chosen', 'the', 'stupidest', 'possible', 'way', 'to', 'get', 'dog', 'food', 'that', 'there', 'is', '||period||', 'how', 'about', 'the', 'doggie', 'bag', 'on', 'a', 'date', '||questionmark||', "that's", 'a', 'good', 'move', 'for', 'a', 'guy', '||comma||', 'huh', '||questionmark||', 'lemme', 'tell', 'you', 'something', 'if', "you're", 'a', 'guy', 'and', 'you', 'ask', 'for', 'the', 'doggie', 'bag', 'on', 'a', 'date', '||comma||', 'you', 'might', 'as', 'well', 'have', 'them', 'just', 'wrap', 'up', 'your', 'genitals', 'too', '||period||', "you're", 'not', 'going', 'to', 'be', 'needing', 'those', 'for', 'awhile', '||comma||', 'either', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'bothering', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'not', 'at', 'all', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'could', 'you', 'please', 'hurry', '||questionmark||', '||return||', '||return||', 'jerry:', '[mockingly]', '||quotemark||', 'please', 'hurry', '||quotemark||', '||period||', 'look', 'at', 'you', '||period||', 'look', 'at', 'what', "you've", 'become', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'have', 'i', 'become', '||questionmark||', 'i', "haven't", '||quotemark||', 'become', '||quotemark||', 'anything', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', '*carl*', "can't", 'wait', 'a', 'few', 'more', 'minutes', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'want', 'to', 'keep', 'him', 'waiting', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "he'll", 'like', 'you', 'more', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "that's", 'impossible', '||period||', '||period||', '||period||', '||return||', '||return||', 'wife:', 'andrew', '||comma||', 'why', 'do', 'you', 'have', 'to', 'pick', 'your', 'teeth', 'at', 'the', 'table', '||questionmark||', '||return||', '||return||', 'husband:', 'leave', 'me', 'alone', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'wanting', 'to', 'get', 'married', '*real*', 'soon', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'where', 'am', 'i', 'dropping', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'his', 'place', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'this', "guy's", 'got', 'quite', 'a', 'racket', '||period||', 'i', 'take', 'you', 'to', 'dinner', 'and', 'then', 'drop', 'you', 'off', 'at', 'his', 'apartment', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '*and*', 'he', 'gets', 'the', 'rest', 'of', 'my', 'chicken', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'is', 'tonight', '||quotemark||', 'the', 'night', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'never', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oooh', '||exclammark||', 'bay', '||dash||', 'bee', '*doll*', '||exclammark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'do', 'you', 'smell', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'i', 'smell', 'something', '||questionmark||', 'what', 'am', 'i', '||comma||', 'hard', 'of', 'smelling', '||questionmark||', 'of', '*course*', 'i', 'smell', 'something', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', "it's", 'b', '||period||', 'o', '||period||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'b', '||period||', 'o', '||period||', 'the', '*valet*', 'must', 'have', 'had', 'b', '||period||', 'o', '||period||', '||return||', '||return||', 'jerry:', 'it', "*can't*", 'be', '||period||', 'nobody', 'has', 'b', '||period||', 'o', '||period||', 'like', 'this', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', "it's", '*b*', '||period||', '*o*', '||period||', '||return||', '||return||', 'jerry:', 'but', 'the', 'whole', 'car', 'smells', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'when', 'somebody', 'has', 'b', '||period||', 'o', '||period||', '||comma||', 'the', '||quotemark||', 'o', '||quotemark||', 'usually', 'stays', 'with', 'the', '||quotemark||', 'b', '||quotemark||', '||period||', 'once', 'the', '||quotemark||', 'b', '||quotemark||', 'leaves', '||comma||', 'the', '||quotemark||', 'o', '||quotemark||', 'goes', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'you', 'ski', '||exclammark||', '||return||', '||return||', 'carl:', "i'm", 'a', 'great', 'skier', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'what', 'else', '||questionmark||', '||return||', '||return||', 'carl:', "let's", 'see', '||period||', '||period||', '||period||', 'i', 'ski', '||comma||', 'i', 'fish', '||comma||', 'i', 'pillage', '||comma||', 'i', 'plunder', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '[delightedly]', 'oh', '||exclammark||', 'you', '||quotemark||', 'pillage', 'and', 'plunder', '||quotemark||', '||questionmark||', '||return||', '||return||', 'carl:', '||period||', '||period||', '||period||', 'when', 'i', 'travel', '||period||', '||return||', '||return||', 'elaine:', 'see', '||questionmark||', 'finally', '||comma||', '*finally*', 'i', 'get', 'to', 'meet', 'a', 'man', 'who', 'pillages', 'and', 'plunders', '||exclammark||', "i'm", 'so', 'lucky', '||period||', '||return||', '||return||', 'george:', "this'll", 'only', 'take', 'a', 'second', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'going', 'to', 'poke', 'around', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '[to', 'himself]', 'hey', '||comma||', "whatd'ya", 'know', '||questionmark||', 'look', 'at', 'that', '||exclammark||', 'a', '*lesbian*', 'sighting', '||period||', 'oh', '||dash||', 'ho', '||exclammark||', 'my', 'lucky', 'day', '||period||', "they're", '*so*', 'fascinating', '||period||', 'why', 'is', 'that', '||questionmark||', 'because', 'they', "don't", 'want', 'us', '||period||', 'you', 'gotta', 'respect', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '[to', 'himself]', 'oh', '||comma||', 'my', 'god', '||exclammark||', "it's", 'susan', '||exclammark||', 'what', 'do', 'i', 'do', '||questionmark||', '||return||', '||return||', 'susan:', 'george', '||questionmark||', '||return||', '||return||', 'george:', '[to', 'himself]', 'argh', '||exclammark||', '[to', 'susan]', 'susan', '||exclammark||', 'hi', '||exclammark||', 'oh', '||comma||', 'boy', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||exclammark||', '||return||', '||return||', 'susan:', 'renting', 'a', 'video', '||exclammark||', 'what', 'do', 'you', 'got', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', '||period||', '||period||', '||period||', 'some', 'stupid', 'movie', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'this', 'is', 'mona', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hi', '||period||', '||period||', '||period||', '||return||', '||return||', 'mona:', 'pleasure', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'mona:', 'well', '||comma||', "i'll", 'let', 'you', 'two', '||comma||', 'uh', '||period||', '||period||', '||period||', 'catch', 'up', '||period||', '||return||', '||return||', 'susan:', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'yes', '||exclammark||', 'i', 'just', "haven't", 'seen', 'you', 'in', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'susan:', 'and', 'you', "didn't", 'expect', 'me', 'to', 'be', 'holding', 'hands', 'with', 'a', 'woman', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', '*please*', '||exclammark||', 'me', '||questionmark||', "c'mon", '||exclammark||', "that's", '*great*', '||exclammark||', 'are', 'you', 'kidding', '||questionmark||', 'i', 'think', 'thats', 'fan*tastic*', '||exclammark||', "i've", 'always', 'encouraged', 'experimentation', '||exclammark||', "i'm", 'the', 'first', 'guy', 'in', 'the', 'pool', '||exclammark||', 'who', 'do', 'you', 'think', "you're", 'talking', 'to', '||questionmark||', '||return||', '||return||', 'susan:', 'i', '*know*', 'who', "i'm", 'talking', 'to', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'you', 'do', '||period||', '||period||', '||period||', "it's", 'just', '||comma||', 'uh', '||comma||', "y'know", '||comma||', 'i', '||dash||', 'i', 'never', '*knew*', '||comma||', 'uh', '||comma||', 'that', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'i', 'liked', 'women', '||questionmark||', '||return||', '||return||', 'george:', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'uh', '||comma||', 'how', 'long', 'has', 'this', 'been', 'going', 'on', '||questionmark||', '||return||', '||return||', 'susan:', 'since', 'you', 'and', 'i', 'broke', 'up', '||period||', '||return||', '||return||', 'george:', 'ssssso', '||comma||', 'after', 'me', '||comma||', 'you', '||period||', '||period||', '||period||', 'went', 'that', 'way', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'think', "that's", 'fantastic', '||period||', 'good', 'for', 'you', '||period||', 'nice', '||period||', "that's", 'very', 'nice', '||period||', '||return||', '||return||', 'susan:', 'so', '||comma||', 'what', 'have', 'you', 'got', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', '||comma||', 'uh', '||dash||', '||dash||', '||return||', '||return||', 'susan:', 'oh', '||comma||', '``rochelle', '||comma||', "rochelle''", '||return||', '||return||', 'george:', "it's", 'a', 'foreign', 'movie', '||period||', '||period||', '||period||', 'a', '*film*', '||comma||', 'is', 'what', 'it', 'is', '||comma||', 'actually', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||period||', '||period||', 'a', 'lot', 'of', 'nudity', 'in', 'that', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'just', 'a', '*tiny*', 'bit', '||period||', '||period||', '||period||', "it's", 'not', 'even', '*frontal*', 'nudity', '||period||', "it's", '||period||', '||period||', '||period||', '*sidal*', 'nudity', '||period||', '||period||', '||period||', '||return||', '||return||', 'clerk:', 'next', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'me', '||period||', '||return||', '||return||', 'susan:', 'alright', '||comma||', 'well', '||period||', '||period||', '||period||', 'good', 'seeing', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'good', 'to', 'see', 'you', '||comma||', 'too', '||period||', 'and', 'good', 'luck', 'with', '||comma||', 'uh', '||period||', '||period||', '||period||', 'with', 'the', 'whole', 'thing', '||comma||', 'there', '||period||', '||return||', '||return||', 'clerk:', 'uh', '||comma||', 'what', 'are', 'you', 'returning', '||questionmark||', '||return||', '||return||', 'george:', '[embarrassed', 'pause]', '``rochelle', '||comma||', "rochelle''", '||period||', '||return||', '||return||', 'clerk:', 'ah', '||comma||', '``rochelle', '||comma||', "rochelle''", '||period||', '||period||', '||period||', '||quotemark||', 'a', 'young', "girl's", 'strange', '||comma||', 'erotic', 'journey', 'from', 'milan', 'to', 'minsk', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'clerk:', 'uh', '||comma||', "that'll", 'be', '||comma||', 'uh', '||period||', '||period||', '||period||', '$3', '||period||', '49', '||period||', '||return||', '||return||', 'george:', '$3', '||period||', '49', '||questionmark||', 'it', 'says', '$1', '||period||', '49', '||period||', '||return||', '||return||', 'clerk:', 'well', '||comma||', 'you', "didn't", 'rewind', 'it', '||period||', "there's", 'a', '$2', '||period||', '00', 'charge', 'for', 'not', 'rewinding', '||period||', '||return||', '||return||', 'george:', 'what', '||exclammark||', "there's", 'no', 'signs', 'here', '||exclammark||', 'this', 'is', 'an', 'outrage', '||exclammark||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "don't", 'give', 'him', 'any', 'money', 'for', 'that', '||period||', "it'll", 'cost', 'you', 'less', 'to', 'keep', 'it', 'another', 'day', '||comma||', 'rewind', 'it', 'and', 'bring', 'it', 'back', 'tomorrow', '||period||', "don't", 'give', 'him', 'the', 'satisfaction', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'giving', 'you', 'the', 'satisfaction', '||period||', "i'm", 'gonna', 'watch', 'it', 'again', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'this', 'morning', 'i', 'go', 'down', 'to', 'the', 'garage', 'to', 'check', 'the', 'car', 'out', '||period||', 'i', 'figure', 'by', 'this', 'time', '||comma||', 'the', 'odour', 'molecules', 'have', 'had', 'at', 'least', 'twelve', 'hours', 'to', 'de', '||dash||', 'smellify', '||period||', 'i', 'open', 'the', 'car', 'door', '||comma||', 'like', 'a', '*punch*', 'in', 'the', '*face*', '||comma||', 'the', 'stench', 'hits', 'me', '||dash||', '||dash||', "it's", 'almost', 'as', 'if', 'it', 'had', '*gained*', 'strength', 'throughout', 'the', 'night', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "y'know", 'i', 'can', 'think', 'of', 'at', '*least*', 'six', 'known', 'offensive', 'odours', 'that', 'i', 'would', '*rather*', 'smell', 'than', "what's", "livin'", 'in', 'your', 'car', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'skunk', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'mind', 'skunk', '||period||', '||return||', '||return||', 'jerry:', 'horse', 'manure', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', '*loooove*', 'horse', 'manure', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i've", 'never', 'seen', 'anything', 'like', 'this', 'in', 'my', 'life', '||period||', 'in', 'fact', '||comma||', 'i', 'went', 'to', 'the', 'car', 'wash', '||comma||', 'they', 'want', '250', 'dollars', 'to', 'detail', 'it', '||comma||', 'and', 'get', 'the', 'smell', 'out', '||period||', "i'm", 'not', "payin'", 'for', 'that', '||period||', "that's", 'not', 'my', 'responsibility', '||period||', 'in', 'fact', '||comma||', "i'm", "drivin'", 'up', 'to', 'that', 'restaurant', 'now', '||comma||', 'and', '*demand*', 'they', 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'elaine:', 'absolutely', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'lemme', 'ask', 'you', 'something', '||period||', 'when', "you're", 'with', 'a', 'guy', '||comma||', 'and', 'he', 'tells', 'you', 'he', 'has', 'to', 'get', 'up', 'early', '||comma||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'means', "he's", 'lying', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', 'is', 'that', 'what', 'he', 'told', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'last', 'night', '||period||', 'oh', '||comma||', 'come', 'on', '||period||', '||period||', '||period||', 'men', '*have*', 'to', 'get', 'up', 'early', 'some', 'time', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'never', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', "i'm", '*sure*', "i've", 'seen', 'men', 'on', 'the', 'street', 'early', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'sometimes', 'we', 'do', 'actually', 'have', 'to', 'get', 'up', 'early', '||comma||', 'but', 'a', 'man', 'will', '*always*', 'trade', 'sleep', 'for', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'is', 'it', 'possible', "i'm", 'not', 'as', 'attractive', 'as', 'i', 'think', 'i', 'am', '||questionmark||', '||return||', '||return||', 'jerry:', "anything's", '*possible*', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'steinbrenner', '||exclammark||', "he's", "ruinin'", 'my', 'life', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'steinbrenner', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'think', 'i', 'can', 'take', 'another', 'season', 'with', 'him', '||comma||', 'jerry', '||period||', "he'll", 'just', 'trade', 'away', 'their', 'best', 'young', 'prospects', '||comma||', 'just', 'like', 'he', 'did', 'with', 'beuner', '||comma||', 'mcgee', '||comma||', 'drabek', '||period||', '||period||', '||period||', 'mcgriff', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'the', 'list', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "what's", 'that', 'smell', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'smell', '||questionmark||', '||return||', '||return||', 'kramer:', 'ooooh', '||period||', '||period||', '||period||', 'you', 'stink', '||period||', '||return||', '||return||', 'jerry:', "whatd'ya", 'mean', 'i', 'stink', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', '*stink*', '||period||', 'why', "don't", 'you', 'go', 'take', 'a', 'shower', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'showered', '||exclammark||', 'oh', '||comma||', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'since', 'i', 'showered', '||comma||', "i've", 'been', 'in', 'the', 'car', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'you', 'see', "what's", 'happening', 'here', '||questionmark||', "it's", 'attached', 'itself', 'to', 'me', '||exclammark||', "it's", 'alive', '||exclammark||', '||return||', '||return||', 'elaine:', 'if', 'it', 'attached', 'itself', 'to', 'you', '||comma||', 'then', '||period||', '||period||', '||period||', 'oh', '||comma||', 'my', 'god', '||exclammark||', "that's", 'why', 'carl', 'said', 'he', 'had', 'to', 'get', 'up', 'early', '||exclammark||', 'because', 'i', 'stink', '||exclammark||', 'jerry', '||comma||', 'he', 'thinks', 'i', 'have', 'b', '||period||', 'o', '||period||', '||exclammark||', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', 'my', 'car', '*stinks*', 'is', 'what', 'happened', '||period||', 'and', "it's", 'destroying', 'the', 'lives', 'of', 'everyone', 'in', "it's", 'path', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||questionmark||', 'b', '||period||', 'o', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'this', 'is', '*unbelievable*', 'b', '||period||', 'o', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||period||', '||period||', 'i', 'was', 'at', 'the', 'car', 'wash', 'this', 'morning', 'and', 'the', 'guy', 'told', 'me', 'in', 'his', '38', 'years', 'in', 'the', 'business', '||comma||', "he's", 'never', 'smelled', 'anything', 'like', 'it', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'let', 'me', 'ask', 'you', '||period||', 'do', 'you', 'think', 'i', 'could', 'have', 'done', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', "it's", 'the', 'valet', 'guy', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'i', 'mean', '||comma||', 'driving', 'susan', 'to', 'lesbianism', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'no', '||comma||', "that's", 'ridiculous', '||period||', '||return||', '||return||', 'george:', 'what', 'if', 'her', 'experience', 'with', 'me', '*drove*', 'her', 'to', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'suicide', '||comma||', 'maybe', '||comma||', 'not', 'lesbianism', '||period||', '||return||', '||return||', 'george:', 'the', 'woman', "she's", '||quotemark||', 'lesbianing', '||quotemark||', 'with', '||questionmark||', 'susan', 'told', 'me', "she's", '*never*', 'been', 'with', 'a', 'guy', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', "isn't", 'even', 'b', '||period||', 'o', '||period||', '||exclammark||', 'this', 'is', '*beyond*', 'b', '||period||', 'o', '||period||', '||exclammark||', "it's", '*b*', '||period||', 'b', '||period||', 'o', '||period||', '||exclammark||', '||return||', '||return||', 'jerry:', 'there', 'should', 'be', 'a', 'b', '||period||', 'o', '||period||', 'squad', 'that', 'patrols', 'the', 'city', 'like', 'a', '||quotemark||', 'smell', 'gestapo', '||quotemark||', '||period||', 'to', 'sniff', "'em", 'out', '||comma||', 'strip', "'em", 'down', '||comma||', 'and', 'wash', 'them', 'with', 'a', 'big', '||comma||', 'soapy', 'brush', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "y'know", '||comma||', 'the', 'funny', 'thing', 'is', '||comma||', 'somehow', 'i', 'find', 'her', 'more', 'appealing', 'now', '||period||', '||period||', '||period||', "it's", 'like', 'if', 'i', 'knew', 'she', 'was', 'a', 'lesbian', 'when', 'we', 'went', 'out', '||comma||', 'i', 'never', "would've", 'broken', 'up', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'lemme', 'see', 'if', 'i', 'understand', 'this', '||period||', '||period||', '||period||', 'on', 'second', 'thought', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'here', 'he', 'is', '||period||', '||period||', '||period||', "that's", 'the', 'guy', '||exclammark||', '||leftparen||', 'rolls', 'up', 'window', '||rightparen||', 'no', '||comma||', 'thank', 'you', '||comma||', 'go', 'back', '||period||', '||period||', '||period||', 'go', 'back', '||period||', '||period||', '||period||', "i'll", 'park', 'it', '||exclammark||', 'you', 'go', 'back', '||exclammark||', '||return||', '||return||', 'restaurateur:', 'what', 'do', 'you', 'mean', '||dash||', '||dash||', '||quotemark||', 'stunk', 'up', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'the', 'car', '*stinks*', '||exclammark||', 'george', '||comma||', 'does', 'the', 'car', 'stink', '||questionmark||', '||return||', '||return||', 'george:', 'stinks', '||period||', '||return||', '||return||', 'jerry:', 'stinks', '||exclammark||', '||return||', '||return||', 'restaurateur:', 'well', '||comma||', 'perhaps', "*you're*", 'the', 'one', 'who', 'has', 'the', 'odour', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "i've", 'never', 'smelled', 'in', 'my', '*life*', '||comma||', 'buddy', '||exclammark||', '||return||', '||return||', 'restaurateur:', 'really', '||questionmark||', 'well', '||comma||', 'i', 'smell', 'you', 'now', '||period||', '||return||', '||return||', 'jerry:', "that's", 'from', 'the', 'car', '||exclammark||', '||return||', '||return||', 'restaurateur:', 'well', '||comma||', 'maybe', "*you're*", 'the', 'one', 'who', 'stunk', 'up', 'the', 'car', '||comma||', 'rather', 'than', 'the', 'car', 'stinking', 'up', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'the', 'chicken', 'and', 'the', 'egg', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', 'very', 'much', '||period||', '||period||', '||period||', 'well', '||comma||', 'then', 'go', 'out', 'and', 'smell', 'the', 'car', '||semicolon||', 'see', 'which', 'smells', 'worse', '||period||', '||return||', '||return||', 'restaurateur:', 'i', "don't", 'have', 'time', 'to', 'smell', 'cars', '||period||', '||return||', '||return||', 'george:', 'forget', 'about', 'smelling', 'the', 'car', '||period||', 'smell', 'the', 'valet', '||period||', 'go', 'to', 'the', 'source', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "you've", 'gotta', 'smell', 'the', 'car', '||return||', '||return||', 'restaurateur:', "i'm", 'a', 'busy', 'man', '||return||', '||return||', 'jerry:', "c'mon", '||exclammark||', 'one', 'whiff', '||exclammark||', '||return||', '||return||', 'restaurateur:', 'alright', '||comma||', 'one', 'whiff', '||period||', '||period||', '||period||', '||return||', '||return||', 'restaurateur:', 'alright', '||exclammark||', 'i', 'give', 'up', '||exclammark||', 'i', 'admit', 'it', '||exclammark||', 'it', 'stinks', '||exclammark||', 'now', 'will', 'you', 'let', 'me', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'will', 'you', 'pay', 'for', 'the', 'cleaning', '||questionmark||', '||return||', '||return||', 'restaurateur:', 'yes', '||exclammark||', '50', 'dollars', '||exclammark||', "i'll", 'give', 'you', '50', 'dollars', '||exclammark||', '||return||', '||return||', 'restaurateur:', "i'm", 'not', 'paying', 'for', '*that*', '||period||', "they've", 'already', 'got', 'my', 'seven', 'dollars', '||period||', '||period||', '||period||', '[sarcastically]', '||quotemark||', '||period||', '||period||', '||period||', 'erotic', 'journey', 'from', 'milan', 'to', 'minsk', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'carl:', 'the', 'valet', 'had', 'such', 'bad', 'b', '||period||', 'o', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'man', '||comma||', 'just', '*rampant*', '||comma||', '**mutant**', 'b', '||period||', 'o', '||period||', 'the', '||quotemark||', 'o', '||quotemark||', 'went', 'from', 'the', "valet's", '||quotemark||', 'b', '||quotemark||', '||comma||', 'to', 'the', 'car', '||comma||', 'to', 'me', '||period||', 'it', 'clings', 'to', 'everything', '||period||', 'jerry', 'thinks', "it's", 'an', 'entity', '||period||', 'but', 'i', 'showered', 'and', 'i', "shampoo'ed", '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'carl:', "that's", 'a', 'relief', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'carl:', "it's", 'still', 'there', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||exclammark||', 'it', "*can't*", 'be', '||exclammark||', 'i', "shampoo'ed", '||exclammark||', 'i', 'rinsed', '||exclammark||', 'i', 'repeated', '||exclammark||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'i', 'gotta', 'ask', 'you', 'i', 'was', 'a', 'little', 'concerned', 'that', 'perhaps', 'i', 'was', 'responsible', 'in', 'some', 'way', 'for', 'your', '||comma||', 'uh', '||period||', '||period||', '||period||', 'metamorphosis', '||period||', '||return||', '||return||', 'clerk:', "that'll", 'be', '$98', '||period||', '00', '||period||', '||return||', '||return||', 'george:', 'what', '$98', '||period||', '00', '||questionmark||', '||return||', '||return||', 'clerk:', "that's", 'what', 'i', 'said', '||period||', '$98', '||period||', '00', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'that', 'piece', 'of', '*crap*', 'cost', '$98', '||period||', '00', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'was', 'it', 'me', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', "don't", 'be', 'ridiculous', '||exclammark||', 'is', 'that', 'what', 'you', 'wanted', 'to', 'talk', 'to', 'me', 'about', '||questionmark||', '[gives', 'him', 'the', '$35]', 'here', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'thanks', '||period||', 'thanks', 'a', 'lot', '||period||', "i'll", 'pay', 'you', 'back', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', '*sure*', '||period||', '||period||', '||period||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'george:', 'listen', '||period||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'if', 'you', 'and', 'mona', 'were', 'ever', 'to', '||period||', '||period||', '||period||', 'dance', '||comma||', 'how', 'do', 'you', 'decide', 'who', 'leads', '||questionmark||', 'i', 'mean', '||period||', '||period||', '||period||', 'do', 'you', 'take', 'turns', '||questionmark||', 'do', 'you', 'discuss', 'it', 'beforehand', '||questionmark||', 'how', 'does', 'that', 'work', '||questionmark||', '||return||', '||return||', 'susan:', "you're", 'an', 'idiot', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', "that's", 'a', '*legitimate*', 'sociological', 'question', '||period||', '||return||', '||return||', 'susan:', "i'll", 'see', 'ya', '||period||', 'and', 'george', '||comma||', 'by', 'the', 'way', '||period||', '||period||', '||period||', 'you', 'stink', '||period||', '||period||', '||period||', 'real', 'bad', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'me', '||exclammark||', "it's", 'the', 'car', '||exclammark||', '||return||', '||return||', 'mona:', 'i', "didn't", 'think', "i'd", 'come', '||period||', '||return||', '||return||', 'kramer:', 'i', 'knew', 'you', 'would', '||period||', '||return||', '||return||', 'mona:', 'oh', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'car', 'washer:', 'we', 'spray', 'everything', 'with', 'ozium', '||dash||', 'd', '||comma||', 'let', 'it', 'de', '||dash||', 'ionise', '||comma||', 'vacuum', 'the', 'spray', 'out', 'with', 'a', 'de', '||dash||', 'ionising', 'machine', '||period||', 'hit', 'it', 'with', 'high', '||dash||', 'pressure', 'compressed', 'air', '||comma||', 'and', 'wet', '||dash||', 'dry', 'vac', 'it', 'to', 'extract', 'the', 'remaining', 'liquids', '||period||', 'we', 'top', 'it', 'off', 'with', 'one', 'of', 'our', 'seven', 'air', '||dash||', 'fresheners', '||comma||', 'in', 'your', 'case', '||comma||', 'i', 'would', 'recommend', 'the', 'jasmine', '||comma||', 'or', 'the', 'potpourri', '||period||', '||return||', '||return||', 'jerry:', "let's", 'do', 'it', '||period||', '||return||', '||return||', 'hairdresser:', 'the', 'first', 'thing', "we're", 'gonna', 'do', 'is', 'flush', 'the', 'follicles', 'with', 'the', 'five', 'essential', 'oils', '||period||', 'then', '||comma||', 'we', 'put', 'you', 'under', 'a', 'vapour', 'machine', '||comma||', 'and', 'then', 'a', 'heated', 'cap', '||period||', 'then', '||comma||', 'we', 'shampoo', 'and', 'shampoo', 'and', 'condition', 'and', 'condition', '||period||', 'then', '||comma||', 'we', 'saturate', 'the', 'hair', 'in', 'diluted', 'vinegar', '||dash||', '||dash||', 'two', 'parts', 'vinegar', '||comma||', '10', 'parts', 'water', '||period||', 'now', '||comma||', 'if', 'that', "doesn't", 'work', '||comma||', 'we', 'have', 'one', 'last', 'resort', '||period||', 'tomato', 'sauce', '||period||', '||return||', '||return||', 'elaine:', 'tomato', 'sauce', '||questionmark||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'minute', '||exclammark||', 'it', 'still', 'smells', '||exclammark||', 'it', 'still', 'smells', '||exclammark||', '||return||', '||return||', 'carl:', 'it', 'still', 'smells', '||period||', '||return||', '||return||', 'jerry:', 'it', 'still', 'smells', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'could', 'it', 'still', 'smell', 'after', 'all', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'what', "i'm", 'gonna', 'do', '||comma||', "i'm", 'selling', 'that', 'car', '||exclammark||', '||return||', '||return||', 'george:', "you're", '*selling*', 'the', 'car', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', 'what', "i'm", 'up', 'against', '||period||', 'this', 'is', 'a', 'force', 'more', 'powerful', 'than', 'anything', 'you', 'can', 'imagine', '||period||', 'even', '*superman*', 'would', 'be', 'helpless', 'against', 'this', 'kind', 'of', 'stench', '||period||', 'and', "i'll", 'take', 'anything', 'i', 'can', 'get', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'maybe', "i'll", 'buy', 'it', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'crazy', '||questionmark||', "don't", 'you', 'understand', 'what', "i'm", 'saying', 'to', 'you', '||questionmark||', 'this', 'is', 'not', 'just', 'an', 'odour', '||dash||', '||dash||', 'you', 'need', 'a', '*priest*', 'to', 'get', 'rid', 'of', 'this', 'thing', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'still', 'smell', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'see', '||exclammark||', 'you', 'see', 'what', "i'm", 'saying', 'to', 'you', '||questionmark||', "it's", 'a', 'presence', '||exclammark||', "it's", 'the', 'beast', '||exclammark||', '||return||', '||return||', 'susan:', 'kramer', '||exclammark||', 'kramer', '||exclammark||', 'kramer', '||comma||', 'open', 'up', '||comma||', 'i', 'know', "you're", 'in', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', 'susan', '||exclammark||', '||return||', '||return||', 'susan:', 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'going', 'on', '||questionmark||', '||return||', '||return||', 'susan:', 'you', 'know', "what's", 'going', 'on', '||questionmark||', 'first', '||comma||', 'he', 'vomits', 'on', 'me', '||period||', 'then', '||comma||', 'he', 'burns', 'down', 'my', "father's", 'cabin', '||period||', 'and', 'now', '||comma||', "he's", 'taken', 'mona', 'away', 'from', 'me', '||period||', '||return||', '||return||', 'george:', 'he', 'stole', 'your', 'girlfriend', '||questionmark||', '||return||', '||return||', 'susan:', 'yes', '||period||', "she's", 'in', '*love*', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'amazing', '||period||', 'i', 'drive', 'them', 'to', 'lesbianism', '||comma||', 'he', 'brings', "'em", 'back', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', '*least*', 'of', 'what', "you've", 'accomplished', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', 'kramer', '||comma||', 'kramer', '||period||', '||period||', '||period||', 'hold', 'on', 'a', 'second', '||period||', 'i', "don't", 'get', 'this', '||period||', 'this', 'woman', 'has', '*never*', 'been', 'with', 'a', 'man', 'her', '*entire*', 'life', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', "i'm", 'kramer', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'what', "you're", 'going', 'through', '||period||', 'women', '||period||', 'who', 'knows', 'what', 'they', 'want', '||questionmark||', '||return||', '||return||', 'susan:', 'i', 'just', "don't", 'know', 'what', 'she', 'sees', 'in', '*kramer*', '||period||', '||return||', '||return||', 'george:', 'listen', '||period||', "you're", 'beautiful', '||period||', "you're", 'intelligent', '||period||', "you'll", 'meet', 'other', 'girls', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'you', 'think', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'know', 'so', '||period||', 'you', 'happen', 'to', 'be', 'a', 'very', 'eligible', 'lesbian', '||period||', '||return||', '||return||', 'susan:', "you're", 'very', 'sweet', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'know', 'what', "i'm", 'talking', 'about', '||period||', 'i', 'gotta', 'be', 'honest', 'with', 'you', '||comma||', 'i', 'gotta', 'tell', 'ya', '||period||', '||period||', '||period||', 'ever', 'since', 'i', 'saw', 'you', 'holding', 'hands', 'with', 'that', 'woman', '||comma||', 'i', "can't", 'get', 'you', 'out', 'of', 'my', 'mind', '||period||', '||return||', '||return||', 'susan:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "you're", 'just', 'so', '||period||', '||period||', '||period||', 'hip', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'allison', '||period||', 'i', 'dated', 'her', 'right', 'after', 'you', '||period||', "she's", 'obsessed', 'with', 'me', '||period||', '||return||', '||return||', 'allison:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'allison', '||exclammark||', 'hi', '||exclammark||', 'oh', '||comma||', 'my', 'god', '||exclammark||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'allison:', 'good', '||period||', 'you', 'know', '||comma||', 'you', 'owe', 'me', '$50', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', 'i', "don't", 'have', 'it', 'on', 'me', '||period||', 'allison', '||comma||', 'this', 'is', 'susan', '||period||', 'susan', '||comma||', 'allison', '||period||', '||return||', '||return||', 'allison:', 'nice', 'to', 'meet', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'nice', 'to', 'meet', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'allison:', "that's", 'a', 'beautiful', 'vest', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'thank', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'understand', 'it', '||period||', 'i', 'was', 'with', 'her', 'last', 'night', 'in', 'my', 'apartment', '||semicolon||', 'it', 'was', 'very', 'romantic', '||period||', "y'know", 'with', 'that', 'fake', 'wood', 'wallpaper', '||comma||', 'the', 'atmosphere', 'is', '*fabulous*', 'in', 'there', '||comma||', 'now', '||period||', "it's", 'like', 'a', 'ski', 'lodge', '||period||', '||return||', '||return||', 'salesman:', 'what', 'year', 'did', 'you', 'say', 'this', 'was', '||questionmark||', '||return||', '||return||', 'jerry:', "'90", '||period||', '||return||', '||return||', 'kramer:', 'anyway', '||comma||', 'we', 'were', 'on', 'the', 'couch', '||comma||', 'i', 'move', 'to', 'hug', 'her', '||comma||', 'next', 'thing', 'she', 'tells', 'me', "she's", 'leaving', '||semicolon||', "she's", 'got', 'to', 'get', 'up', 'early', '||period||', '||return||', '||return||', 'jerry:', "that's", 'strange', '||period||', '||period||', '||period||', '||return||', '||return||', 'salesman:', 'how', 'many', 'miles', 'you', 'got', 'on', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'jerry:', '23', '000', '||period||', '||return||', '||return||', 'kramer:', 'and', 'i', 'was', 'looking', 'good', '||comma||', 'too', '||period||', 'i', 'had', 'a', 'nice', '||comma||', 'new', 'shirt', 'on', '||comma||', "i'm", 'wearing', '*your*', 'jacket', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'my', 'jacket', '||exclammark||', 'i', 'wore', 'that', 'in', 'the', 'car', '||exclammark||', 'the', 'beast', '||exclammark||', '||return||', '||return||', 'salesman:', 'i', "can't", 'sell', 'this', 'car', '||period||', '||return||', '||return||', 'jerry:', 'this', '||period||', '||period||', '||period||', '**thing**', '||period||', '||period||', '||period||', 'has', 'got', 'to', 'be', 'stopped', '||exclammark||', '||return||', '||return||', 'hairdresser:', 'so', '||comma||', 'what', 'do', 'you', 'want', 'to', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'sauce', 'me', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'a', 'friend', 'who', 'is', 'about', 'to', 'get', 'married', '||comma||', "they're", 'having', 'the', 'bachelor', 'party', 'and', 'the', 'bridal', 'shower', 'on', 'the', 'same', 'day', '||period||', '||period||', '||period||', 'so', "it's", 'conceivable', 'that', 'while', "she's", 'getting', 'the', 'lingerie', '||comma||', "he'd", 'be', 'at', 'a', 'nude', 'bar', 'watching', 'a', 'table', 'dancer', 'wearing', 'the', 'same', 'outfit', '||period||', 'that', 'is', 'possible', '||period||', 'but', 'to', 'me', '||comma||', 'the', 'difference', 'between', 'being', 'single', 'and', 'being', 'married', '||comma||', 'is', 'the', 'form', 'of', 'government', '||period||', 'you', 'see', '||comma||', 'when', "you're", 'single', '||comma||', 'you', 'are', 'the', 'dictator', 'of', 'your', 'own', 'life', '||period||', 'i', 'have', 'complete', 'power', '||period||', 'i', 'can', 'give', 'the', 'order', 'to', 'fall', 'asleep', 'on', 'the', 'sofa', 'with', 'the', 'tv', 'on', 'in', 'the', 'middle', 'of', 'the', 'day', '||comma||', 'no', '||dash||', 'one', 'can', 'overrule', 'me', '||exclammark||', 'when', "you're", 'married', '||comma||', "you're", 'part', 'of', 'a', 'vast', 'decision', '||dash||', 'making', 'body', '||period||', 'before', 'anything', 'gets', 'done', 'there', 'are', 'meetings', '||period||', 'committees', 'have', 'to', 'study', 'the', 'situation', '||period||', 'and', 'this', 'is', 'if', 'the', 'marriage', 'works', '||period||', "that's", "what's", 'so', 'painful', 'about', 'divorce', 'you', 'get', 'impeached', 'and', "you're", 'not', 'even', 'the', 'president', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'is', 'it', 'my', 'imagination', '||comma||', 'or', 'do', 'really', 'good', 'looking', 'women', 'walk', 'a', 'lot', 'faster', 'than', 'everybody', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', "don't", 'walk', 'that', 'fast', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', 'seriously', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'seriously', '||comma||', 'we', "don't", '||period||', '||return||', '||return||', 'george:', 'the', 'better', 'looking', 'they', 'are', '||comma||', 'the', 'faster', 'they', 'go', '||exclammark||', 'i', 'mean', '||comma||', 'i', 'see', 'they', 'out', 'there', 'on', 'the', 'street', '||comma||', "they're", 'zooming', 'around', '||comma||', 'like', 'a', 'blur', '||period||', 'like', 'they', 'have', 'a', 'motor', 'on', 'their', 'ass', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'yelling', 'to', 'jerry', 'in', 'the', 'bedroom', '||rightparen||', 'hey', 'jerry', '||comma||', 'come', 'on', '||comma||', "let's", 'go', '||period||', "we're", 'gonna', 'miss', 'the', 'previews', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'how', 'are', 'we', "gettin'", 'to', 'scott', "drake's", 'party', 'on', 'saturday', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "drake's", 'party', '||comma||', 'i', 'forgot', 'to', 'buy', 'a', 'present', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'buy', 'a', 'present', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'of', 'course', 'you', 'do', '||comma||', "it's", 'an', 'engagement', 'party', '||period||', '||return||', '||return||', 'george:', 'it', 'never', 'ends', '||comma||', 'this', 'present', 'stuff', '||exclammark||', 'engagement', 'present', '||exclammark||', 'then', 'they', 'get', 'married', '||comma||', 'you', 'gonna', 'have', 'to', 'get', 'them', 'something', 'for', 'that', '||exclammark||', 'then', 'the', 'baby', '||comma||', "there's", 'another', 'present', '||period||', 'then', 'the', 'baby', 'starts', 'getting', 'their', 'presents', '||period||', 'i', "don't", 'even', 'like', 'drake', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'like', 'the', 'drake', '||questionmark||', '||return||', '||return||', 'george:', 'hate', 'the', 'drake', '||period||', '||return||', '||return||', 'elaine:', 'i', '*love*', 'the', 'drake', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'not', 'like', 'the', 'drake', '||questionmark||', '||return||', '||return||', 'george:', "who's", 'the', 'drake', '||questionmark||', '||return||', '||return||', 'elaine:', '||quotemark||', "who's", 'the', 'drake', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'drake', 'is', 'good', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'listen', '||comma||', 'what', 'are', 'you', 'gonna', 'get', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'i', "haven't", 'even', 'met', 'the', 'fiancee', '||exclammark||', 'whatever', '||exclammark||', '||leftparen||', 'leaves', 'for', 'washroom', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'look', '||period||', 'i', 'drew', 'this', 'triangle', 'free', '||dash||', 'hand', '||period||', "it's", 'a', 'doodle', '||period||', "it's", 'perfect', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', "that's", 'easy', '||period||', '||return||', '||return||', 'jerry:', 'easy', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', 'hey', '||comma||', 'have', 'you', 'gotten', 'your', 'present', 'yet', 'for', 'the', 'drake', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'not', 'yet', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'like', 'the', 'drake', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', '*love*', 'the', 'drake', '||exclammark||', "i'm", 'looking', 'forward', 'to', 'meeting', 'the', 'drakette', '||exclammark||', '||return||', '||return||', 'elaine:', "i'm", 'lukewarm', 'about', 'the', 'drakette', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', "jerry's", 'doodle', '||rightparen||', "that's", 'a', 'nice', 'triangle', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "it's", 'isosceles', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', 'isosceles', '||period||', 'i', 'love', 'the', 'name', 'isosceles', '||period||', 'if', 'i', 'had', 'a', 'kid', '||comma||', 'i', 'would', 'name', 'him', 'isosceles', '||period||', 'isosceles', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'you', 'know', 'what', '||comma||', 'maybe', 'we', 'should', 'all', 'chip', 'in', 'for', 'the', 'gift', '||period||', '||return||', '||return||', 'jerry:', 'the', 'chip', '||dash||', 'in', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'a', 'pretty', 'good', 'idea', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'the', 'chip', '||dash||', 'in', '||comma||', 'defenitely', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||comma||', "let's", 'go', 'to', 'that', 'mall', 'in', 'liberal', '||leftparen||', 'sp', '||questionmark||', '||rightparen||', 'before', 'we', 'go', 'to', 'the', 'party', '||period||', "we'll", 'have', 'to', 'take', 'your', 'car', '||comma||', "it's", 'got', 'the', 'most', 'room', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||exclammark||', 'my', "car's", 'not', 'running', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'your', "father's", 'car', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'out', 'of', 'the', 'question', '||period||', 'i', 'was', 'over', 'there', 'today', '||period||', "he's", 'got', 'the', 'good', 'spot', 'in', 'front', 'of', 'the', 'good', 'building', 'in', 'the', 'good', 'neighbourhood', '||period||', 'i', 'know', "he's", 'not', 'gonna', 'wanna', 'move', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'serious', '||questionmark||', '||return||', '||return||', 'george:', 'you', "don't", 'know', 'what', 'that', 'spot', 'means', 'to', 'him', '||period||', 'once', 'he', 'gets', 'it', '||comma||', 'he', "doesn't", 'go', 'out', 'for', 'weeks', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', 'this', '||comma||', 'you', 'put', 'your', 'car', 'in', 'the', 'good', 'spot', '||comma||', "that'll", 'hold', 'the', 'good', 'spot', 'in', 'front', 'of', 'the', 'good', 'building', '||comma||', 'and', 'we', 'can', 'get', 'the', 'good', 'car', '||exclammark||', '||return||', '||return||', 'george:', 'good', 'thinking', '||exclammark||', '||return||', '||return||', 'jerry:', 'good', 'to', 'meet', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'what', 'are', 'we', 'gonna', 'get', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'could', 'get', 'him', 'anything', 'we', 'wanted', '||comma||', "we're", "chippin'", 'in', '||period||', '||return||', '||return||', 'george:', 'i', 'like', 'this', 'area', '||period||', 'i', 'could', 'live', 'out', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'we', 'ought', 'to', 'all', 'get', 'a', 'house', 'and', 'live', 'together', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'a', 'good', 'idea', '||period||', "i'll", 'tell', 'you', 'what', 'chuckles', '||comma||', 'i', 'give', 'you', 'permission', 'to', 'sublet', 'my', 'room', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'look', 'at', 'this', '||period||', "there's", 'no', 'spaces', 'here', '||period||', '||leftparen||', 'to', 'another', 'car', '||rightparen||', 'excuse', 'me', '||comma||', 'are', 'you', "gettin'", 'out', '||questionmark||', '||return||', '||return||', 'man', 'in', 'car:', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'take', 'a', 'handicap', 'spot', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||exclammark||', "we'll", 'find', 'a', 'space', '||period||', "there's", 'spaces', 'in', 'the', 'other', 'lot', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'to', 'walk', 'that', 'far', '||period||', '||return||', '||return||', 'elaine:', 'what', 'if', 'a', 'handicapped', 'person', 'needs', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||comma||', 'they', "don't", 'drive', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'they', 'do', '||exclammark||', '||return||', '||return||', 'kramer:', 'have', 'you', 'ever', 'seen', 'a', 'handicapped', 'person', 'pull', 'into', 'a', 'space', 'and', 'park', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "there's", 'spaces', 'there', '||comma||', 'they', 'must', 'drive', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'they', "don't", '||period||', 'if', 'they', 'could', 'drive', '||comma||', 'they', "wouldn't", 'be', 'handicapped', '||period||', '||return||', '||return||', 'elaine:', 'so', 'if', 'you', 'can', 'drive', '||comma||', "you're", 'not', 'handicapped', '||questionmark||', '||return||', '||return||', 'george:', 'look', '||comma||', "we're", 'not', 'gonna', 'be', 'that', 'long', 'anyway', '||period||', '||period||', '||period||', 'we', 'have', 'to', 'get', 'to', 'the', '||quotemark||', 'party', '||quotemark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'news', 'for', 'you', 'handicapped', 'people', '||comma||', 'they', "don't", 'even', 'want', 'to', 'park', 'there', '||exclammark||', 'they', 'wanna', 'be', 'treated', 'just', 'like', 'anybody', 'else', '||exclammark||', "that's", 'why', '||comma||', 'those', 'spaces', 'are', 'always', 'empty', '||period||', '||return||', '||return||', 'george:', "he's", 'right', '||exclammark||', "it's", 'the', 'same', 'thing', 'with', 'the', 'femenists', '||period||', 'you', 'know', '||comma||', 'they', 'want', 'everything', 'to', 'be', 'equal', '||comma||', 'everything', '||exclammark||', 'but', 'when', 'the', 'check', 'comes', '||comma||', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'alright', '||comma||', "i'm", 'pulling', 'in', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'elaine:', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'come', 'on', '||comma||', "it's", 'five', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'make', 'sure', 'we', "don't", 'forget', 'where', 'the', "car's", 'parked', '||period||', '||return||', '||return||', 'jerry', '||comma||', 'george', '||comma||', 'elaine:', "don't", 'worry', '||period||', 'we', "won't", 'forget', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'believe', 'the', 'deal', 'we', 'got', 'on', 'this', '||questionmark||', 'a', 'big', 'screen', 'tv', '||questionmark||', 'at', 'that', 'price', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'a', 'sale', '||comma||', 'huh', '||questionmark||', 'and', 'how', 'about', 'that', 'store', '||comma||', 'delivering', 'it', 'tonight', '||questionmark||', "we're", 'gonna', 'be', 'swimming', 'in', "'thank", "you's", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'i', 'get', 'the', 'veggie', 'burger', 'for', '||questionmark||', 'you', 'got', 'a', 'veggie', 'burger', '||comma||', 'so', 'i', 'had', 'to', 'get', 'the', 'veggie', 'burger', '||comma||', "i'm", 'allover', 'crums', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||dash||', "one's", 'gonna', 'have', 'a', 'better', 'gift', 'than', 'this', 'big', 'screen', 'tv', '||exclammark||', 'good', 'for', 'them', '||comma||', 'love', 'the', 'drake', '||exclammark||', '||return||', '||return||', 'elaine:', 'got', 'to', '*love*', 'the', 'drake', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "what's", 'going', 'on', 'over', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'must', 'have', 'been', 'an', 'accident', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'a', 'woman', '||rightparen||', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'woman:', 'some', 'jerk', 'parked', 'in', 'a', 'handicap', 'spot', '||comma||', 'so', 'this', 'woman', 'in', 'a', 'wheelchair', 'had', 'to', 'wheel', 'up', 'this', 'incline', '||comma||', 'and', 'half', 'way', 'up', 'her', 'batteries', 'gave', 'up', '||comma||', 'and', 'she', 'rolled', 'backwards', 'into', 'the', 'wall', '||period||', 'taken', 'her', 'to', 'st', '||period||', "elizabeth's", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'is', 'she', 'ok', '||questionmark||', '||return||', '||return||', 'woman:', 'i', "don't", 'know', '||period||', "we're", 'just', 'waiting', 'here', 'for', 'the', 'owner', 'of', 'this', 'car', 'to', 'show', 'up', '||period||', 'may', 'not', 'get', 'out', 'alive', '||exclammark||', 'thug', '||exclammark||', 'taking', 'up', 'a', 'handicap', 'spot', '||questionmark||', "he's", 'gonna', 'pay', '||exclammark||', '||return||', '||return||', 'jerry:', "son's", 'of', 'bitches', '||exclammark||', 'good', 'luck', 'finding', 'them', '||period||', '||period||', '||period||', 'him', '||period||', '||period||', '||period||', 'whatever', '||period||', "i'd", 'like', 'to', 'stick', 'around', 'and', 'get', 'my', 'hands', 'on', 'him', 'myself', '||comma||', 'but', 'i', 'gotta', 'take', 'off', '||period||', '||return||', '||return||', 'george:', 'how', 'are', 'we', 'gonna', 'get', 'out', 'of', 'here', '||questionmark||', "they'll", 'kill', 'us', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', 'are', 'you', 'happy', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'who', 'would', 'think', 'these', 'people', "we're", 'gonna', 'be', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'the', 'party', '||questionmark||', 'what', 'about', 'the', 'drake', '||questionmark||', '||return||', '||return||', 'george:', 'screw', 'the', 'drake', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'love', 'the', 'drake', '||exclammark||', '||return||', '||return||', 'kramer:', "let's", 'just', 'take', 'a', 'bus', 'back', 'to', 'the', 'city', '||period||', '||return||', '||return||', 'george:', "can't", 'leave', 'the', 'car', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'my', "father's", 'car', '||exclammark||', '||return||', '||return||', 'man:', "let's", 'smash', 'it', '||exclammark||', '||return||', '||return||', 'everybody:', 'yeah', '||exclammark||', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', 'how', 'are', 'we', 'gonna', 'get', 'out', 'of', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'thing', 'is', '||comma||', 'even', 'if', 'we', 'go', 'back', 'by', 'the', 'car', '||comma||', 'and', "there's", 'nobody', 'there', '||comma||', 'how', 'do', 'we', 'know', "they're", 'not', 'all', 'hiding', '||comma||', 'waiting', 'for', 'us', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'they', 'have', 'to', 'give', 'up', 'some', 'time', '||comma||', 'they', "can't", 'stay', 'out', 'there', 'all', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'we', '||comma||', 'john', 'dillinger', '||questionmark||', 'how', 'did', 'this', 'get', 'to', 'be', 'the', 'crime', 'of', 'the', 'century', '||questionmark||', "it's", 'not', 'like', 'we', 'stuck', 'a', 'broomstick', 'in', 'her', 'spokes', 'and', 'she', 'went', 'flying', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', 'i', "don't", 'get', 'is', '||comma||', 'just', 'because', 'the', 'battery', 'is', 'dead', '||comma||', 'you', 'think', "she'd", 'be', 'able', 'to', 'roll', 'up', 'the', 'hill', 'with', 'her', 'hands', '||exclammark||', '||return||', '||return||', 'kramer:', "you'd", 'think', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'batteries', 'have', 'gone', 'dead', 'before', '||comma||', "aren't", 'they', 'prepared', 'for', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'most', 'of', 'them', "don't", 'even', 'have', 'batteries', '||period||', '||return||', '||return||', 'george:', 'must', 'be', 'one', 'of', 'those', 'rich', '||comma||', 'spoiled', 'handicapped', 'people', '||comma||', 'who', "didn't", 'want', 'to', 'do', 'any', 'work', '||comma||', 'and', 'just', 'wanted', 'to', 'sit', 'in', 'her', 'wheelchair', 'and', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'sorry', '||exclammark||', '||return||', '||return||', 'elaine:', 'our', 'big', 'screen', 'tv', 'is', 'probably', 'arriving', 'right', 'now', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'how', 'are', 'we', 'gonna', 'get', 'out', 'of', 'here', '||questionmark||', 'we', 'need', 'a', 'plan', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'it', '||exclammark||', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', 'we', 'give', 'the', 'keys', 'to', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', "you're", 'a', 'woman', '||exclammark||', 'men', "don't", 'hit', 'a', 'woman', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'they', "won't", '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'if', 'they', "don't", 'know', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'going', 'for', 'this', '||comma||', 'kramer', 'should', 'go', '||exclammark||', 'it', 'was', 'all', 'his', 'idea', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', 'chance', 'in', 'hell', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'if', 'we', 'created', 'some', 'sort', 'of', 'diversion', '||questionmark||', 'what', 'if', 'we', 'all', 'went', 'by', 'the', 'car', 'and', 'started', 'screaming', '||quotemark||', 'there', 'he', 'is', '||comma||', "there's", 'the', 'guy', 'that', 'took', 'the', 'handicap', 'spot', '||exclammark||', '||quotemark||', 'and', 'then', '||comma||', 'when', 'they', 'all', 'run', 'into', 'the', 'other', 'direction', '||comma||', "we'll", 'jump', 'in', 'the', 'car', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'good', '||comma||', "we'll", 'give', 'it', 'a', 'try', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "that's", 'good', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'that', "doesn't", 'work', '||comma||', "we'll", 'give', "'em", 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'george', 'picks', 'up', 'a', 'broken', 'piece', 'of', 'his', 'car', '||rightparen||', 'you', 'know', '||comma||', 'a', 'lot', 'of', 'these', 'scratches', 'will', 'buff', 'right', 'out', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'eight', 'years', 'have', 'i', 'had', 'this', 'car', '||period||', 'not', 'a', 'scratch', 'on', 'it', '||exclammark||', 'eight', 'years', '||exclammark||', '||return||', '||return||', 'frank:', 'a', 'beautiful', 'mercury', '||exclammark||', 'i', 'special', '||dash||', 'ordered', 'that', 'bench', 'seat', '||exclammark||', '||return||', '||return||', 'george:', 'dad', '||comma||', 'that', 'other', 'car', 'cut', 'us', 'off', '||exclammark||', 'they', 'had', 'swastikas', 'all', 'over', 'it', '||period||', '||period||', '||period||', 'they', 'were', 'hurling', 'racial', 'epiphates', 'at', 'us', '||period||', '||period||', '||period||', 'i', 'could', 'have', 'been', 'killed', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'to', 'frank', '||rightparen||', 'i', 'told', 'you', 'not', 'to', 'give', 'it', 'to', 'him', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'to', 'george', '||rightparen||', 'you', 'know', '||comma||', 'my', 'insurance', "doesn't", 'cover', 'this', '||questionmark||', 'the', 'whole', 'thing', 'is', 'a', 'total', 'loss', '||exclammark||', '||return||', '||return||', 'mahjong', 'lady:', 'frank', '||comma||', 'the', 'important', 'thing', 'is', '||comma||', 'he', "didn't", 'get', 'hurt', '||exclammark||', '||return||', '||return||', 'frank:', 'no', 'it', "isn't", '||exclammark||', '||return||', '||return||', 'mahjong', 'lady:', 'so', 'what', 'are', 'you', 'doing', 'now', '||comma||', 'georgie', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'uh', '||period||', '||period||', '||period||', 'writing', 'a', 'pilot', 'for', 'nbc', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'where', 'the', 'hell', 'is', 'my', 'paper', '||questionmark||', '||return||', '||return||', 'mahjong', 'lady:', "you're", 'writing', 'a', 'pilot', '||questionmark||', '||return||', '||return||', 'estelle:', 'with', 'his', 'friend', '||comma||', 'jerry', 'seinfeld', '||period||', '||period||', '||period||', 'the', 'comedian', '||period||', '||period||', '||period||', '||return||', '||return||', 'mahjong', 'lady:', 'so', "what's", 'it', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "jerry's", 'car', 'gets', 'hit', 'and', 'the', 'other', 'driver', "doesn't", 'have', 'any', 'insurance', '||comma||', 'so', 'the', 'judge', '||return||', '||return||', 'mahjong', 'lady:', 'this', 'is', 'the', 'same', 'situation', '||exclammark||', 'frank', '||comma||', 'maybe', 'you', 'ought', 'to', 'make', 'him', 'your', 'butler', '||exclammark||', '||return||', '||return||', 'estelle:', 'every', 'time', "you're", 'with', 'that', 'kramer', '||comma||', 'something', 'happens', '||period||', '||period||', '||period||', "he's", 'a', 'real', 'trouble', 'maker', '||exclammark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'he', "didn't", 'have', 'anything', 'to', 'do', 'with', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'estelle:', "he's", 'all', 'together', 'crazy', '||comma||', 'that', 'one', '||exclammark||', 'jerry', '||questionmark||', 'i', 'used', 'to', 'think', 'was', 'nice', '||period||', '||period||', '||period||', 'i', "don't", 'know', 'what', 'happened', 'to', 'him', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'drake', '||rightparen||', 'so', 'it', 'was', 'a', 'good', 'party', '||comma||', 'huh', '||questionmark||', 'oh', '||period||', '||period||', '||period||', "you're", 'welcome', '||comma||', "you're", 'welcome', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'they', 'loved', 'the', 'tv', '||comma||', '*loved*', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'drake', '||rightparen||', 'oh', '||comma||', 'wait', 'a', 'second', '||comma||', "i'll", 'ask', 'her', '||period||', '||period||', "that's", 'a', 'great', 'idea', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'drake', 'wants', 'to', 'know', 'if', 'we', 'want', 'to', 'come', 'out', 'to', 'minneolis', 'this', 'afternoon', '||comma||', 'since', 'we', 'missed', 'the', 'partly', 'last', 'night', '||comma||', 'to', 'maybe', 'get', 'something', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'elaine:', 'sure', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'drake', '||rightparen||', 'sure', '||exclammark||', '||period||', '||period||', '||period||', 'okay', '||period||', '||period||', '||period||', "don't", 'worry', '||comma||', "i'm", 'taking', 'my', 'car', '||exclammark||', '||period||', '||period||', '||period||', 'okay', '||period||', '||period||', '||period||', 'okay', '||comma||', 'see', 'you', 'later', '||period||', '||period||', '||period||', 'bye', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'the', 'drake', 'is', 'great', '||exclammark||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||period||', "he's", 'so', 'nice', '||exclammark||', "i'm", 'really', 'happy', 'for', 'them', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'well', '||comma||', 'i', "don't", 'know', 'if', "i'm", 'happy', 'for', 'them', '||comma||', 'i', 'mean', "i'm", 'glad', "they're", 'happy', '||comma||', 'but', '||comma||', 'frankly', '||comma||', 'that', "doesn't", 'do', 'anything', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'i', 'just', 'came', 'from', 'st', '||period||', "elizabeth's", '||period||', '||return||', '||return||', 'jerry:', 'st', '||period||', "elizabeth's", 'hospital', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', 'handicapped', 'woman', '||questionmark||', 'i', 'went', 'to', 'see', 'her', '||period||', '||return||', '||return||', 'elaine:', 'you', 'went', 'to', 'see', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'in', 'love', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'she', 'is', 'the', 'most', 'beautiful', 'woman', 'i', 'have', 'ever', 'seen', '||period||', 'i', 'love', 'her', 'jerry', '||comma||', 'i', 'really', 'love', 'her', '||period||', "i'm", 'gonna', 'ask', 'her', 'to', 'marry', 'me', '||period||', "she's", 'got', 'everything', "i've", 'always', 'wanted', 'in', 'another', 'human', 'being', '||period||', 'except', 'for', 'the', 'walking', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "what's", 'the', 'difference', '||comma||', 'you', "don't", 'go', 'out', 'that', 'much', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', "i'm", 'glad', "you're", 'here', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'now', '||comma||', 'we', 'gotta', 'go', 'out', '||period||', 'we', 'gotta', 'buy', 'a', 'wheelchair', '||period||', '||return||', '||return||', 'george:', 'a', 'wheelchair', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', 'i', 'went', 'to', 'the', 'hospital', 'today', '||comma||', 'and', 'i', 'saw', 'the', 'woman', '||comma||', 'you', 'know', '||comma||', 'and', 'the', 'wheelchair', 'is', 'totalled', '||comma||', 'we', 'gotta', 'get', 'her', 'another', 'one', '||exclammark||', '||return||', '||return||', 'george:', "doesn't", 'she', 'have', 'collision', '||questionmark||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "i'm", 'in', 'love', 'with', 'her', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'my', 'father', 'works', 'for', 'the', 'united', 'volunteers', '||comma||', 'maybe', 'he', 'can', 'get', 'her', 'one', '||period||', '||return||', '||return||', 'kramer:', 'no', '||exclammark||', 'she', 'needs', 'it', 'now', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'about', 'these', 'two', '||questionmark||', "aren't", 'they', 'gonna', 'chip', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'we', 'told', 'you', 'not', 'to', 'park', 'there', '||exclammark||', '||return||', '||return||', 'george:', "can't", 'we', 'just', 'fix', 'the', 'old', 'one', '||questionmark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'alright', '||period||', 'fine', 'george', '||exclammark||', "don't", 'chip', 'in', '||exclammark||', 'but', 'some', 'day', '||comma||', "we're", 'gonna', 'be', 'driving', 'along', '||comma||', "we're", 'gonna', 'look', 'out', 'the', 'window', '||comma||', 'and', 'see', 'her', 'crawling', 'along', '5th', 'avenue', '||exclammark||', 'is', 'that', 'what', 'you', 'want', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||exclammark||', "we'll", 'buy', 'her', 'a', 'wheelchair', '||exclammark||', 'wheelchairs', '||comma||', 'engagement', 'presents', '||period||', '||period||', 'it', 'never', 'ends', '||exclammark||', '||return||', '||return||', 'salesman:', 'this', 'is', 'out', 'best', 'model', '||period||', 'the', 'cougar', '9000', '||period||', "it's", 'the', 'rolls', 'royce', 'of', 'wheelchairs', '||period||', 'this', 'is', 'like', '||period||', '||period||', '||period||', "you're", 'almost', 'glad', 'to', 'be', 'handicapped', '||period||', '||return||', '||return||', 'kramer:', 'so', 'now', '||comma||', "what's", 'this', 'got', '||questionmark||', '||return||', '||return||', 'salesman:', 'inductive', 'joystick', '||comma||', 'dynamic', 'braking', '||comma||', 'flip', '||dash||', 'up', 'arms', '||comma||', "it's", 'fully', 'loaded', '||period||', 'i', 'put', 'stephen', 'hawking', 'in', 'one', 'of', 'these', 'two', 'months', 'ago', '||comma||', "he's", "lovin'", 'it', '||exclammark||', "it's", 'rated', 'number', 'one', 'by', 'hospital', 'supply', 'and', 'prosthetic', 'magazine', '||period||', '||return||', '||return||', 'george:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'salesman:', '6200', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'have', 'something', 'a', 'little', 'more', '||period||', '||period||', '||period||', 'less', 'expensive', '||questionmark||', '||return||', '||return||', 'jerry', 'and', 'elaine:', 'hey', 'drake', '||exclammark||', 'hi', 'drake', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', 'alison', '||exclammark||', 'hey', '||comma||', "there's", 'the', 'tv', '||comma||', 'elaine', '||comma||', 'look', 'at', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', 'my', 'god', 'this', 'is', 'fantastic', '||exclammark||', 'tell', 'me', '||comma||', 'were', 'you', 'guys', 'just', 'blown', 'away', 'or', 'what', '||questionmark||', '||return||', '||return||', 'the', 'drake:', 'oh', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', "it's", 'fantastic', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'gonna', 'make', 'good', 'use', 'of', 'this', '||exclammark||', "i'm", 'watching', 'every', 'superbowl', 'here', '||comma||', 'every', 'big', 'fight', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'man', '||comma||', 'there', 'is', 'nothing', 'like', 'a', 'really', 'big', 'tv', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', "where're", 'we', "eatin'", '||questionmark||', '||return||', '||return||', 'the', 'drake:', 'well', '||comma||', 'actually', '||period||', '||period||', '||period||', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "i'm", '*really*', 'hungry', '||exclammark||', '||return||', '||return||', 'the', 'drake:', '||period||', '||period||', '||period||', 'we', 'just', 'broke', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'when', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'the', 'drake:', 'about', '20', 'minutes', 'ago', '||period||', '||period||', '||period||', 'hey', '||comma||', 'i', 'am', 'really', 'sorry', 'about', 'this', 'guys', '||period||', '||period||', '||period||', 'whew', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'the', 'tv', '||rightparen||', 'look', 'at', 'the', 'picture', 'on', 'this', 'thing', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'cristal', 'clear', '||exclammark||', '||return||', '||return||', 'jerry:', 'they', 'know', 'how', 'to', 'make', "'em", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'are', 'there', 'any', 'good', 'italian', 'restaurants', 'around', 'here', '||questionmark||', '||return||', '||return||', 'the', 'drake:', '||leftparen||', 'through', 'his', 'sobbing', '||rightparen||', "gagliano's", '||period||', '||period||', '||period||', "that's", 'pretty', 'good', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', 'we', 'should', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'get', "movin'", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', 'hey', '||comma||', 'drake', '||comma||', 'what', 'ever', 'happens', '||comma||', 'i', 'am', 'sure', "it'll", 'be', 'for', 'the', 'best', '||period||', '||return||', '||return||', 'elaine:', 'take', 'it', 'easy', '||period||', 'bye', '||dash||', 'bye', 'alison', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'the', 'remote', '||exclammark||', 'okay', '||comma||', "i'm", 'just', 'gonna', 'put', 'it', 'on', 'top', 'of', 'the', 'television', '||period||', '||period||', '||period||', '||return||', '||return||', 'salesman:', 'alright', '||comma||', 'this', 'one', 'is', 'about', '8', 'years', 'old', '||period||', 'not', 'a', 'scratch', 'on', 'it', '||comma||', 'it', 'was', 'owned', 'by', 'some', 'lady', 'who', 'only', 'used', 'it', 'to', 'go', 'from', 'the', 'bathroom', 'to', 'the', 'kitchen', 'and', 'to', 'feed', 'her', 'cat', '||period||', '||return||', '||return||', 'kramer:', 'but', "this'll", 'get', 'you', 'around', '||questionmark||', '||return||', '||return||', 'salesman:', 'oh', 'sure', '||comma||', 'it', 'just', "doesn't", 'have', 'any', 'of', 'the', 'thrills', 'of', 'the', 'cougar', '||period||', '||return||', '||return||', 'george:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'salesman:', 'for', 'example', '||comma||', 'your', 'tremor', '||dash||', 'damping', '||period||', '||return||', '||return||', 'kramer:', 'now', "what's", 'that', '||questionmark||', '||return||', '||return||', 'salesman:', 'it', 'helps', 'to', 'control', 'the', 'direction', 'regardless', 'of', 'the', "operator's", 'tremors', 'or', 'spasticity', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'is', 'it', 'alright', 'if', 'i', 'try', 'it', '||questionmark||', '||return||', '||return||', 'salesman:', 'hop', 'in', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', '||return||', '||return||', 'salesman:', 'i', 'tell', 'ya', '||period||', '||period||', '||period||', '||return||', '||return||', 'salesman:', 'when', 'i', 'see', 'someone', 'enjoying', 'themselves', 'like', 'that', '||comma||', 'it', 'reminds', 'me', 'why', 'i', 'got', 'into', 'this', 'business', 'in', 'the', 'first', 'place', '||period||', '||return||', '||return||', 'george:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'salesman:', 'how', 'about', '$240', '||questionmark||', '||return||', '||return||', 'george', '&', 'kramer:', "we'll", 'take', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'drake', 'gave', 'her', 'the', 'tv', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'gave', 'her', 'all', 'the', 'gifts', '||semicolon||', 'he', 'felt', 'guilty', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'she', "can't", 'keep', 'it', '||comma||', "it's", 'not', 'fair', '||comma||', "that's", '*our*', 'tv', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'it', 'is', '||exclammark||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', 'i', 'am', 'really', 'starting', 'to', 'dislike', 'the', 'drake', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'hate', 'the', 'drake', '||exclammark||', 'maybe', 'the', 'whole', 'thing', 'was', 'a', 'scam', '||period||', 'anybody', 'can', 'just', 'get', 'engaged', 'and', 'get', 'presents', 'and', 'just', 'keep', 'them', 'all', '||period||', 'maybe', "they're", 'on', 'their', 'way', 'to', 'chicago', 'tomorrow', 'and', 'do', 'the', 'whole', 'thing', 'all', 'over', 'again', '||period||', '||return||', '||return||', 'elaine:', 'they', "don't", 'know', 'anybody', 'in', 'chicago', '||period||', '||return||', '||return||', 'jerry:', "don't", 'worry', '||comma||', "they'll", 'make', 'friends', 'fast', 'with', 'that', 'nice', 'tv', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'guess', 'what', '||questionmark||', 'the', 'drake', 'broke', 'up', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'about', 'defraying', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'not', "gettin'", 'that', 'tv', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', 'the', 'engagement', 'is', 'off', '||comma||', 'we', 'get', 'the', 'tv', 'back', '||period||', "that's", 'business', '||period||', '||return||', '||return||', 'elaine:', 'the', 'drakette', 'took', 'it', '||period||', '||return||', '||return||', 'george:', 'she', "can't", 'take', 'it', '||period||', "it's", 'not', 'hers', '||comma||', "it's", 'theirs', '||period||', 'once', "there's", 'no', 'theirs', "there's", 'no', 'hers', '||comma||', 'it', 'should', 'be', 'ours', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'she', 'has', 'it', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'upset', '||rightparen||', 'i', '*told*', 'you', 'the', 'drake', 'was', 'bad', '||exclammark||', 'i', 'hate', 'the', 'drake', '||exclammark||', '||return||', '||return||', 'george:', 'maybe', 'we', 'should', 'call', 'her', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "who's", 'gonna', 'call', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'are', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'why', 'is', 'it', 'me', 'who', 'always', 'has', 'to', 'do', 'these', 'things', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "that's", 'your', 'thing', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'calling', 'people', 'i', 'hardly', 'know', '||comma||', 'and', 'demanding', 'they', 'return', 'expensive', 'gifts', '||comma||', "that's", 'my', '||quotemark||', 'thing', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'your', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'gimme', 'the', 'phone', '||period||', '||period||', '||period||', "it's", 'my', '||quotemark||', 'thing', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'you', 'know', '||comma||', "i'm", 'thinking', 'about', 'getting', 'a', 'yo', '||dash||', 'yo', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'i', 'could', 'see', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', '||leftparen||', 'alison', 'through', 'phone', '||rightparen||', ':', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'alison', '||exclammark||', 'hi', '||comma||', 'this', 'is', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', '||leftparen||', 'alison', 'through', 'phone', '||rightparen||', ':', 'i', 'gave', 'all', 'the', 'gifts', 'to', 'charity', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'okay', '||period||', '||period||', '||period||', 'well', 'thanks', 'a', 'lot', '||period||', '||period||', '||period||', 'sorry', 'again', 'about', 'you', 'and', 'the', 'drake', '||period||', '||period||', '||period||', '||return||', '||return||', '||leftparen||', 'alison', 'though', 'phone', '||rightparen||', ':', 'i', 'hate', 'the', 'drake', '||period||', '||return||', '||return||', 'elaine:', 'everybody', 'does', '||period||', 'bye', '||dash||', 'bye', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'she', 'gave', 'it', 'to', 'charity', '||period||', '||return||', '||return||', 'jerry:', 'charity', '||questionmark||', '||exclammark||', '||questionmark||', "that's", 'apalling', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'anybody', 'be', 'so', 'selfish', 'and', 'inconsiderate', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'gave', 'her', 'the', 'wheelchair', '||exclammark||', 'you', 'should', 'have', 'seen', 'the', 'look', 'on', 'her', 'face', '||period||', 'and', 'then', 'she', 'told', 'me', '||comma||', 'that', 'the', 'old', 'wheelchair', '||comma||', 'that', "wasn't", 'any', 'good', 'anyway', '||exclammark||', 'so', 'you', 'see', 'george', '||comma||', 'the', 'whole', 'incident', 'was', 'a', 'god', 'blessing', '||exclammark||', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'mean', 'a', 'blessing', 'in', 'disguise', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'lady:', 'and', 'i', 'would', 'also', 'like', 'to', 'personally', 'thank', 'our', 'gracious', 'host', 'frank', 'costanza', '||comma||', 'who', 'has', 'earned', 'the', 'silver', 'circle', 'award', 'and', 'is', 'our', 'unanimous', 'choice', 'for', 'the', 'united', 'volunteer', 'representative', 'of', 'the', 'month', '||exclammark||', '||return||', '||return||', 'lady:', 'due', 'to', 'his', 'tireless', 'effort', '||comma||', 'he', 'personally', 'raised', 'over', '$22', '||comma||', '000', '||period||', "that's", 'a', 'lot', 'of', 'wheelchairs', '||exclammark||', '||return||', '||return||', 'lady:', 'on', 'behalf', 'of', 'the', 'united', 'volunteers', 'of', 'greater', 'new', 'york', '||comma||', 'we', 'thank', 'you', '||exclammark||', '||return||', '||return||', 'frank:', 'well', '||period||', '||period||', '||period||', 'thank', 'you', 'very', 'much', '||exclammark||', '||return||', '||return||', 'cop:', 'mr', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'frank:', 'yes', '||questionmark||', '||return||', '||return||', 'cop:', "you're", 'under', 'arrest', '||period||', '||return||', '||return||', 'frank:', 'under', 'arrest', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'cop:', 'reckless', 'endangerment', 'of', 'public', 'safety', '||comma||', 'and', 'violation', 'of', 'traffic', 'code', '342', '||dash||', 'a', '||period||', '||return||', '||return||', 'frank:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'cop:', 'parking', 'in', 'a', 'handicap', 'spot', '||period||', "let's", 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'george', '||exclammark||', 'george', '||exclammark||', '||return||', '||return||', 'jerry:', 'your', 'father', 'got', 'arrested', '||questionmark||', 'for', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'parking', 'in', 'a', 'handicap', 'spot', '||period||', 'right', 'in', 'the', 'middle', 'of', 'his', 'united', 'volunteers', 'meeting', '||period||', 'when', 'he', 'got', 'back', '||comma||', 'he', 'chased', 'after', 'me', 'with', 'a', 'baseball', 'bat', '||period||', '||return||', '||return||', 'jerry:', 'ho', '||dash||', 'ly', '||exclammark||', '||return||', '||return||', 'george:', 'between', 'the', 'car', 'getting', 'totalled', '||comma||', 'the', 'towing', 'charge', 'and', 'the', 'fine', '||comma||', "there's", 'no', 'way', 'i', 'can', 'ever', 'pay', 'him', 'back', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'agreed', 'to', 'become', 'his', 'butler', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'over', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'over', '||questionmark||', '||return||', '||return||', 'kramer:', 'me', 'and', 'lola', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'the', 'woman', 'we', 'bought', 'the', 'wheelchair', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'she', 'dumped', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'dumped', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'she', 'dumped', 'me', '||exclammark||', 'she', 'rolled', 'right', 'over', 'me', '||exclammark||', 'said', 'i', 'was', 'a', 'hipster', 'dufus', '||period||', 'am', 'i', 'a', 'hipster', 'dufus', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'george:', '||leftparen||', 'hesitatingly', '||rightparen||', '||period||', '||period||', '||period||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'said', "i'm", 'not', 'good', 'looking', 'enough', 'for', 'her', '||period||', 'not', 'good', 'looking', '||exclammark||', 'jerry', '||comma||', 'look', 'at', 'me', '||comma||', 'look', 'at', 'my', 'face', '||comma||', 'huh', '||comma||', 'am', 'i', 'beautiful', '||questionmark||', 'george', '||comma||', 'am', 'i', 'beautiful', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', "you're", 'very', 'attractive', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', 'she', 'says', 'she', "doesn't", 'wanna', 'see', 'me', 'again', '||period||', 'told', 'me', 'to', 'drop', 'dead', '||exclammark||', '||return||', '||return||', 'jerry:', 'drop', 'dead', '||questionmark||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'even', 'i', 'never', 'heard', 'that', 'one', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "she's", 'pretty', 'rough', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeesh', '||dash||', 'jip', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'we', 'just', 'blew', '240', 'bucks', 'on', 'a', 'wheelchair', '||period||', '||return||', '||return||', 'jerry:', '240', 'bucks', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'was', 'slightly', 'used', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'used', '||questionmark||', '||return||', '||return||', 'frank', '||leftparen||', 'picking', 'up', 'his', 'shoes', '||rightparen||', ':', 'i', "don't", 'think', 'you', 'did', 'such', 'a', 'good', 'job', 'on', 'these', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', '||exclammark||', '||questionmark||', '||return||', '||return||', 'frank:', "you're", 'supposed', 'to', 'your', 'face', 'there', '||exclammark||', 'do', 'you', 'see', 'your', 'face', 'in', 'there', '||questionmark||', '||return||', '||return||', 'frank:', 'yeah', '||questionmark||', '||period||', '||period||', '||period||', 'oh', 'really', '||questionmark||', '||period||', '||period||', '||period||', 'oh', '||period||', '||period||', '||period||', 'how', 'about', 'that', '||questionmark||', '||period||', '||period||', '||period||', 'right', 'down', 'a', 'hill', 'huh', '||questionmark||', 'okay', '||exclammark||', 'alight', '||exclammark||', 'bye', '||exclammark||', '||return||', '||return||', 'frank:', 'george', '||comma||', 'forget', 'about', 'the', 'shoes', '||period||', 'want', 'you', 'to', 'do', 'something', 'for', 'me', '||leftparen||', 'scribbles', 'something', 'on', 'a', 'piece', 'of', 'paper', '||rightparen||', '||period||', 'this', 'handicapped', 'woman', 'had', 'an', 'accident', '||period||', 'somebody', 'gave', 'her', 'a', 'used', 'wheelchair', 'with', 'defective', 'brakes', '||period||', '||return||', '||return||', 'george:', 'sons', 'of', 'bitches', '||exclammark||', '||return||', '||return||', 'frank:', 'anyway', '||comma||', 'i', 'want', 'you', 'to', 'pick', 'up', 'this', 'big', 'screen', 'tv', '||comma||', 'and', 'deliver', 'it', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'big', 'screen', 'tv', '||questionmark||', '||return||', '||return||', 'frank:', 'do', 'you', 'think', 'you', 'can', 'handle', 'it', '||questionmark||', '||return||', '||return||', 'allison:', 'yes', '||questionmark||', '||return||', '||return||', 'george:', 'hi', '||comma||', "we're", 'from', 'the', 'united', 'volunteers', '||comma||', "we've", 'come', 'to', 'pick', 'up', 'the', 'tv', '||period||', '||return||', '||return||', 'allison:', 'oh', 'great', '||comma||', "it's", 'right', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', "it's", 'a', 'big', 'one', '||exclammark||', '||return||', '||return||', 'george:', "who's", 'got', 'the', 'receipt', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'do', '||period||', '||return||', '||return||', 'george:', 'will', 'they', 'give', 'us', 'cash', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'their', 'policy', '||period||', '||return||', '||return||', 'george:', 'i', 'hate', 'this', 'mall', '||comma||', 'there', 'are', 'never', 'any', 'spaces', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'park', 'in', 'front', 'of', 'the', 'hydrant', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'if', 'there', 'is', 'a', 'fire', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'are', 'the', 'chances', 'of', 'that', '||questionmark||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'to', 'me', '||comma||', 'the', 'whole', 'concept', 'of', 'fear', 'of', 'success', 'is', 'proof', 'that', 'we', 'are', 'definitely', 'scraping', 'the', 'bottom', 'of', 'the', 'fear', 'barrel', '||period||', 'are', 'we', 'gonna', 'have', 'to', 'have', 'aa', '||dash||', 'type', 'meetings', 'for', 'these', 'people', '||questionmark||', "they'll", 'go', '||quotemark||', 'hi', '||comma||', 'my', 'name', 'is', 'bill', '||comma||', 'and', 'the', 'one', 'thing', "i'm", 'worried', 'about', 'is', 'to', 'have', 'a', 'stereo', 'and', 'a', 'cream', '||dash||', 'colored', 'couch', '||period||', '||quotemark||', 'according', 'to', 'most', 'studies', '||comma||', "people's", 'number', '||dash||', 'one', 'fear', 'is', 'public', 'speaking', '||period||', 'number', 'two', 'is', 'death', '||period||', '*death*', 'is', 'number', 'two', '||exclammark||', 'now', '||comma||', 'this', 'means', 'to', 'the', 'average', 'person', '||comma||', 'if', 'you', 'have', 'to', 'go', 'to', 'a', 'funeral', '||comma||', "you're", 'better', 'off', 'in', 'the', 'casket', 'than', 'doing', 'the', 'eulogy', '||period||', '||return||', '||return||', '[setting:', "jerry's]", '||return||', '||return||', 'kramer:', 'why', "can't", 'i', 'play', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', "we've", 'been', 'through', 'this', 'already', '||period||', "you're", 'not', 'an', 'actor', '||exclammark||', '||return||', '||return||', 'kramer:', 'neither', 'are', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'so', 'why', 'do', 'we', 'need', 'two', 'people', 'in', 'the', 'show', 'that', "can't", 'act', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'come', 'on', 'jerry', '||period||', 'how', 'hard', 'is', 'it', 'to', 'act', '||period||', 'you', 'say', 'something', '||comma||', "i'll", 'pretend', "it's", 'funny', '||period||', '||return||', '||return||', 'jerry:', 'my', "grandmother's", 'in', 'the', 'hospital', '||period||', '||return||', '||return||', 'kramer:', 'ha', 'ha', 'ha', '||period||', 'your', "grandmother's", 'in', 'the', 'hospital', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'real', 'believable', '||period||', '||return||', '||return||', 'kramer:', 'what', 'you', "didn't", 'think', 'i', 'was', 'really', 'laughing', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'stinks', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'see', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'say', 'something', 'funny', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||period||', "i've", 'never', 'been', 'to', 'mars', 'but', 'i', 'imagine', "it's", 'quite', 'lovely', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'mine', 'was', 'better', 'than', 'that', '||exclammark||', 'come', 'on', 'look', '||period||', '||leftparen||', 'starts', 'to', 'laugh', 'again', '||comma||', 'jerry', 'too', '||rightparen||', '||return||', '||return||', 'george:', 'why', 'are', 'two', 'pretending', 'to', 'be', 'laughing', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'acting', '||period||', '||leftparen||', 'they', 'stop', 'laughing', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'real', 'good', '||period||', '||leftparen||', 'george', 'makes', 'a', 'face', 'like', 'you', 'stink', '||rightparen||', 'any', 'word', 'from', 'nbc', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'understand', '||period||', "they're", 'supposed', 'to', 'be', 'casting', 'this', 'week', '||period||', "something's", 'wrong', '||period||', 'maybe', "they're", 'not', 'doing', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'well', 'at', 'least', 'let', 'me', 'audition', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'he', 'wants', 'to', 'play', 'kramer', 'in', 'the', 'pilot', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'kramer:', 'oughh', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'how', 'could', 'we', 'not', 'hear', 'anything', '||questionmark||', "what's", 'with', 'this', 'russel', '||questionmark||', "what's", 'he', 'doing', '||questionmark||', '||leftparen||', 'jerry', 'raises', 'his', 'arms', 'and', 'shoulders', 'like', 'he', "doesn't", 'know', '||rightparen||', '||return||', '||return||', '[setting:', 'peter', 'mcmanus', 'cafe', '||comma||', 'an', 'italian', 'restaurant]', '||return||', '||return||', 'russell:', 'i', 'really', 'appreciate', 'you', 'coming', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "that's", 'o', '||period||', 'k', '||period||', 'i', "don't", 'have', 'much', 'time', 'though', '||period||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'russell:', 'all', 'right', '||comma||', 'first', 'of', 'all', '||comma||', 'i', 'want', 'to', 'apologize', 'for', 'all', 'the', 'phone', 'calls', '||period||', "it's", 'just', '||dash||', '||dash||', "it's", 'just', '||dash||', '||dash||', '||leftparen||', 'awkward', 'pause', '||rightparen||', 'i', "don't", 'understand', '||comma||', 'we', 'went', 'out', 'once', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'that', 'was', 'two', 'months', 'ago', '||period||', '||return||', '||return||', 'russell:', 'yes', 'i', 'know', '||period||', 'i', 'just', '||dash||', '||dash||', 'i', "can't", 'get', 'you', 'out', 'of', 'my', 'mind', '||period||', 'ever', 'since', 'that', '||dash||', '||dash||', 'that', 'day', 'in', 'the', 'restaurant', 'when', 'we', 'met', '||period||', '||period||', '||period||', '||leftparen||', 'we', 'see', 'a', 'flashback', 'from', "'the", "shoes'", 'of', 'elaine', 'showing', 'her', 'cleavage', 'and', 'asking', 'russell', 'for', 'his', 'ketchup', 'secret', '||rightparen||', '||return||', '||return||', 'elaine:', 'russell', '||comma||', 'you', 'are', 'the', 'president', 'of', 'nbc', '||period||', 'you', 'can', 'have', 'any', 'woman', 'you', 'want', '||period||', '||leftparen||', 'picks', 'up', 'the', 'bowl', 'of', 'munchies', 'on', 'the', 'table', '||rightparen||', '||return||', '||return||', 'russell:', 'but', 'i', 'want', 'you', '||period||', '||return||', '||return||', 'elaine:', 'god', 'i', 'hate', 'these', 'mixtures', '||period||', 'why', "don't", 'they', 'just', 'put', 'pretzels', 'on', 'the', 'table', '||period||', 'even', 'peanuts', 'would', 'be', 'good', '||comma||', 'but', 'i', "don't", 'know', 'how', 'eats', 'these', 'cheesy', 'things', '||leftparen||', 'she', 'does', '||rightparen||', '||period||', '||return||', '||return||', 'russell:', 'is', 'it', 'something', 'i', 'said', '||period||', '||period||', '||period||', 'or', 'did', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||period||', '||period||', '||period||', 'look', 'russell', '||period||', '||period||', '||period||', "you're", 'a', 'very', 'sweet', 'guy', '||period||', 'but', 'i', 'got', 'to', 'be', 'honest', 'with', 'you', '||period||', 'i', "don't", 'like', 'television', '||period||', '||period||', '||period||', 'and', "that's", 'your', 'world', '||period||', "that's", 'your', 'life', '||period||', 'i', 'mean', 'maybe', 'if', 'you', 'were', 'in', '||period||', '||period||', '||period||', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'greenpeace', 'or', 'something', '||comma||', 'that', 'would', 'be', 'different', '||comma||', 'but', 'network', 'television', '||period||', '||period||', '||period||', 'i', 'mean', '||comma||', 'come', 'on', '||comma||', 'russell', '||comma||', "you're", 'part', 'of', 'the', 'problem', '||period||', '||return||', '||return||', 'russell:', 'oh', 'elaine', '||comma||', "we're", 'doing', 'some', 'really', 'very', 'interesting', 'things', 'right', 'now', '||period||', "we've", 'got', 'some', 'very', 'exciting', 'pilots', 'for', 'next', 'season', '||period||', 'we', 'have', 'one', 'with', 'a', 'bright', 'young', 'comedian', '||comma||', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'oh', 'yeah', '||period||', "i've", 'heard', 'of', 'him', '||period||', "he's", 'that', '||quotemark||', 'did', 'you', 'ever', 'notice', 'this', '||questionmark||', 'did', 'you', 'ever', 'notice', 'that', '||questionmark||', '||quotemark||', 'guy', '||period||', '||return||', '||return||', 'russell:', 'yeah', '||period||', 'anyway', "it's", 'a', 'ground', 'breaking', 'show', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'what', 'is', 'it', 'about', '||questionmark||', '||return||', '||return||', 'russell:', '||leftparen||', 'a', 'little', 'more', 'enthusiast', '||rightparen||', 'well', '||comma||', 'really', '||comma||', "it's", 'very', 'unusual', '||period||', "it's", 'about', 'nothing', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'surprised', '||rightparen||', 'what', 'do', 'you', 'mean', "it's", 'about', 'nothing', '||questionmark||', '||return||', '||return||', 'russell:', '||leftparen||', 'starts', 'doing', 'george', 'at', 'the', 'first', 'meeting', 'with', 'nbc', 'in', "'the", "pitch'", '||rightparen||', 'for', 'example', '||comma||', 'what', 'did', 'you', 'do', 'today', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'i', 'got', 'up', '||period||', 'um', '||comma||', 'i', 'went', 'to', 'work', '||period||', 'then', 'i', 'came', 'here', '||period||', '||return||', '||return||', 'russell:', "there's", 'a', 'show', '||period||', "that's", 'a', 'show', '||period||', '||return||', '||return||', 'elaine:', 'russell', '||comma||', 'see', '||comma||', "i'm", 'really', 'not', 'interested', 'in', 'this', 'stuff', 'and', 'i', 'do', 'have', 'to', 'go', 'to', 'work', '||leftparen||', 'she', 'gets', 'up', '||rightparen||', '||period||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'russell:', '||leftparen||', 'stops', 'doing', 'george', '||comma||', "he's", 'down', 'again', '||rightparen||', 'elaine', '||comma||', 'when', '||dash||', '||dash||', 'when', '||dash||', '||dash||', 'when', 'are', 'we', 'gonna', 'see', 'each', 'other', 'again', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', 'russell', '||period||', "i'm", 'sorry', 'o', '||period||', 'k', '||period||', '||questionmark||', 'bye', '||dash||', 'bye', '||period||', '||leftparen||', 'russell', '||comma||', 'still', 'sitting', 'watches', 'her', 'leaving', '||rightparen||', '||period||', '||return||', '||return||', '[setting:', "jerry's]", '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'yeah', "he's", 'here', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||exclammark||', "it's", 'for', 'you', '||period||', '||return||', '||return||', 'george:', "he's", 'getting', 'phone', 'calls', 'here', 'now', '||questionmark||', '||leftparen||', "he's", 'standing', 'near', 'the', 'counter', 'and', 'eating', 'chips', 'out', 'of', 'a', 'big', 'bag', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'again', 'with', 'the', 'sweat', 'pants', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', "i'm", 'comfortable', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'the', 'message', "you're", 'sending', 'out', 'to', 'the', 'world', 'with', 'these', 'sweat', 'pants', '||questionmark||', "you're", 'telling', 'the', 'world', '||quotemark||', 'i', 'give', 'up', '||period||', 'i', "can't", 'compete', 'in', 'normal', 'society', '||period||', "i'm", 'miserable', '||comma||', 'so', 'i', 'might', 'as', 'well', 'be', 'comfortable', '||period||', '||quotemark||', '||leftparen||', 'george', 'is', 'baffled', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hold', 'on', 'a', 'second', 'i', 'got', 'another', 'call', '||period||', 'hello', '||questionmark||', 'yeah', '||comma||', "he'll", 'call', 'you', 'back', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'look', 'at', 'each', 'other', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'nbc', '||period||', '||return||', '||return||', 'jerry:', 'nbc', '||exclammark||', '||questionmark||', '||exclammark||', 'give', 'me', 'the', 'phone', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'in', 'the', 'middle', 'of', 'a', 'conversation', 'here', '||period||', '||return||', '||return||', 'jerry:', 'get', 'off', 'the', 'phone', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'look', '||comma||', "i'll", 'call', 'you', 'back', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'know', "i'm", 'waiting', 'to', 'hear', 'from', 'them', '||period||', 'who', 'was', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'russell', "dalrimple's", 'secretary', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'now', "you're", 'doing', 'something', 'to', 'help', 'me', '||period||', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hello', 'yeah', "it's", 'jerry', 'seinfeld', 'returning', 'the', 'call', '||period||', 'uh', '||dash||', 'huh', '||period||', '||period||', 'o', '||period||', 'k', '||period||', 'great', 'thanks', 'a', 'lot', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||leftparen||', 'to', 'george', '||rightparen||', 'casting', 'tomorrow', 'at', 'nbc', '||period||', '400', '||period||', "we're", 'in', 'business', 'baby', '||comma||', 'the', "pilot's", 'on', '||period||', "you're", 'gonna', 'successful', '||period||', '||leftparen||', 'george', 'looks', 'disappointed', '||rightparen||', '||return||', '||return||', '[setting:', "dana's", 'office]', '||return||', '||return||', 'george:', 'what', 'if', 'the', 'pilot', 'gets', 'picked', 'up', 'and', 'it', 'becomes', 'a', 'series', '||questionmark||', '||return||', '||return||', 'dana:', "that'd", 'be', 'wonderful', 'george', '||comma||', "you'll", 'be', 'rich', 'and', 'successful', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "that's", 'exactly', 'what', "i'm", 'worried', 'about', '||period||', 'god', 'would', 'never', 'let', 'me', 'be', 'successful', '||period||', "he'd", 'kill', 'me', 'first', '||period||', "he'd", 'never', 'let', 'me', 'be', 'happy', '||period||', '||return||', '||return||', 'dana:', 'i', 'thought', 'you', "didn't", 'believe', 'in', 'god', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'do', 'for', 'the', 'bad', 'things', '||period||', '||return||', '||return||', 'dana:', 'do', 'you', 'hear', 'what', "you're", 'saying', '||questionmark||', 'god', "isn't", 'out', 'to', 'get', 'you', 'george', '||period||', 'what', '||period||', '||period||', '||period||', 'what', 'is', 'that', 'on', 'your', 'lip', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'dana:', "it's", 'like', 'a', 'discoloration', '||period||', "it's", 'white', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gets', 'up', 'and', 'picks', 'a', 'mirror', '||rightparen||', 'yes', '||period||', 'yes', '||comma||', "it's", 'white', '||period||', 'why', "it's", 'white', '||period||', '||return||', '||return||', 'dana:', "you'd", 'better', 'get', 'that', 'checked', 'out', '||period||', '||return||', '||return||', 'george:', 'better', 'get', 'that', 'checked', 'out', '||questionmark||', '||return||', '||return||', 'dana:', 'i', 'would', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'a', 'therapist', 'are', 'you', '||questionmark||', "i'm", 'telling', "i'm", 'scared', 'that', 'something', 'terrible', 'is', 'gonna', 'happen', 'to', 'me', '||comma||', 'right', 'away', 'you', 'start', 'looking', 'for', 'tumors', '||questionmark||', '||return||', '||return||', 'dana:', "i'm", 'trying', 'to', 'help', 'you', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'like', 'a', 'sadist', '||questionmark||', 'no', 'matter', 'how', 'bad', 'somebody', 'feels', '||comma||', 'you', 'can', 'make', "'em", 'feel', 'worse', '||period||', 'i', 'bet', "you're", 'rooting', 'for', 'a', 'tumor', '||period||', '||leftparen||', 'pointing', 'to', 'her', '||rightparen||', '||return||', '||return||', 'dana:', 'i', 'think', "you'd", 'better', 'go', '||period||', '||return||', '||return||', 'george:', 'oh', "i'm", 'going', 'baby', '||exclammark||', "i'm", 'going', '||exclammark||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'jerry', 'and', 'george', 'in', 'a', 'cab', 'at', 'a', 'light]', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'george:', 'right', 'here', '||period||', '||leftparen||', 'showing', 'his', 'lip', '||rightparen||', '||return||', '||return||', 'jerry:', 'get', 'out', 'of', 'here', '||comma||', "it's", 'nothing', '||period||', '||leftparen||', 'jerry', 'knows', 'george', 'is', 'hypochondriac', '||period||', 'see', "'the", 'heart', "attack'", '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'cab', 'driver', '||rightparen||', 'excuse', 'me', '||comma||', 'do', 'you', 'see', 'anything', 'on', 'my', 'lip', 'here', '||questionmark||', '||return||', '||return||', 'cabbie:', 'yeah', '||comma||', "it's", 'like', 'a', 'discoloration', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'cabbie:', 'yeah', '||comma||', "it's", 'all', 'white', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', "it's", 'all', 'white', 'jerry', '||exclammark||', "it's", 'all', 'white', '||exclammark||', '||return||', '||return||', 'jerry:', 'would', 'you', 'stop', '||questionmark||', '||return||', '||return||', 'cabbie:', 'i', 'would', 'get', 'that', 'checked', 'out', 'if', 'i', 'were', 'you', '||period||', '||return||', '||return||', 'george:', 'again', 'with', 'the', 'checked', 'out', '||period||', "i'm", 'not', 'going', 'to', 'the', 'doctor', '||period||', 'if', 'i', "don't", 'to', 'the', 'doctor', '||comma||', 'then', 'nothing', 'will', 'happen', 'to', 'me', '||period||', 'if', 'i', 'go', 'he', 'might', 'find', 'something', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'go', '||comma||', 'maybe', "they'll", 'catch', 'it', 'in', 'time', '||period||', '||return||', '||return||', 'george:', 'catch', 'what', 'in', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'whatever', 'it', 'is', '||period||', '||return||', '||return||', 'george:', 'you', 'think', "it's", 'something', '||questionmark||', '||return||', '||return||', 'cabbie:', 'ah', '||exclammark||', 'i', 'hate', 'these', 'bums', 'with', 'their', 'filthy', 'rags', '||period||', 'no', 'no', 'no', '||comma||', 'i', "don't", 'want', 'it', '||comma||', 'get', 'away', '||comma||', 'get', 'away', 'from', 'my', 'car', '||leftparen||', 'he', 'starts', 'his', 'wipers', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'you', 'know', 'these', 'squeegee', '||dash||', '||dash||', 'oh', 'my', 'god', '||exclammark||', "it's", 'crazy', 'joe', 'devola', '||period||', '||return||', '||return||', 'joe', 'devola:', '||leftparen||', 'through', 'the', 'opened', "window's", 'cab', '||rightparen||', 'good', 'luck', 'on', 'the', 'pilot', 'jerry', '||period||', '||leftparen||', 'the', 'cab', 'pulls', 'away', '||rightparen||', '||return||', '||return||', '[setting:', 'nbc]', '||return||', '||return||', 'stu:', '||leftparen||', 'to', 'george', '||rightparen||', 'yeah', 'i', 'think', 'i', 'see', 'it', '||period||', "it's", 'like', 'a', 'white', 'discoloration', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jay', '||rightparen||', 'what', 'do', 'you', 'think', 'it', 'is', '||questionmark||', '||return||', '||return||', 'jay:', "it's", 'like', 'a', '||period||', '||period||', '||period||', 'white', 'discoloration', '||period||', '||leftparen||', 'we', 'understand', 'now', 'why', 'a', 'sitcom', 'needs', 'so', 'many', 'producers', '||rightparen||', '||return||', '||return||', 'casting', 'director:', 'o', '||period||', 'k', '||period||', 'guys', '||comma||', 'are', 'we', 'ready', 'to', 'start', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'where', 'is', 'russell', '||questionmark||', 'i', 'thought', 'he', 'was', 'gonna', 'be', 'here', '||period||', '||return||', '||return||', 'stu:', 'oh', 'you', 'know', 'i', "don't", 'know', '||period||', 'i', 'saw', 'him', 'in', 'the', 'hall', 'this', 'morning', '||comma||', 'i', 'said', 'hello', 'to', 'him', '||period||', 'he', 'walked', 'right', 'past', 'me', '||period||', '||return||', '||return||', 'jay:', 'he', 'must', 'be', 'worried', 'about', 'the', 'fall', 'schedule', '||period||', '||return||', '||return||', 'stu:', 'ah', '||comma||', "it's", 'a', 'real', 'bear', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'so', "what's", 'going', 'on', '||questionmark||', "we're", 'gonna', 'shoot', 'the', 'pilot', 'and', 'then', "it's", 'gonna', 'be', 'on', 'tv', 'the', 'following', 'week', '||questionmark||', '||return||', '||return||', 'stu:', 'yeah', '||period||', 'right', '||period||', '||return||', '||return||', 'casting', 'director:', 'this', 'is', 'mark', 'matts', '||period||', "he'll", 'be', 'auditioning', 'for', 'the', 'role', 'of', 'george', '||period||', '||leftparen||', 'the', 'guy', 'looks', 'very', 'cool', 'and', 'casual', '||comma||', 'and', 'has', 'a', 'lot', 'of', 'hair', '||rightparen||', '||return||', '||return||', 'mark:', 'hey', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', "they've", 'gotta', 'be', 'kidding', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thinking', '||rightparen||', 'this', "guy's", 'perfect', '||period||', '||return||', '||return||', 'casting', 'director:', 'o', '||period||', 'k', '||period||', "let's", 'read', 'this', '||period||', "i'll", 'be', 'reading', "jerry's", 'part', '||period||', '||return||', '||return||', 'mark:', 'anyone', 'call', 'for', 'vandelay', 'industries', '||questionmark||', '||leftparen||', 'george', 'is', 'the', 'only', 'one', 'in', 'the', 'room', 'to', 'find', 'mark', 'funny', '||rightparen||', '||return||', '||return||', 'casting', 'director:', 'no', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'mark:', 'listen', 'to', 'me', '||period||', 'i', 'told', 'the', 'unemployment', 'office', 'i', 'was', 'close', 'to', 'a', 'job', 'with', 'vandelay', 'industries', 'and', 'i', 'gave', 'them', 'your', 'phone', 'number', '||period||', 'so', '||comma||', 'when', 'you', 'answer', 'the', 'phone', 'now', '||comma||', "you've", 'got', 'to', 'say', '||quotemark||', 'vandelay', 'industries', '||quotemark||', '||period||', '||return||', '||return||', 'casting', 'director:', "i'm", 'vandelay', 'industries', '||questionmark||', '||return||', '||return||', 'mark:', 'right', '||period||', '||return||', '||return||', 'casting', 'director:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'mark:', "you're", 'in', 'latex', '||period||', '||return||', '||return||', 'casting', 'director:', 'what', 'do', 'i', 'do', 'with', 'latex', '||questionmark||', '||return||', '||return||', 'mark:', 'i', "don't", 'know', '||comma||', 'you', 'manufacture', 'it', '||period||', '||return||', '||return||', 'casting', 'director:', 'this', 'is', 'michael', 'barth', '||period||', 'another', 'george', '||period||', '||leftparen||', "he's", 'in', 'sweat', 'pants', '||comma||', 'bald', '||comma||', 'with', 'glasses', '||rightparen||', '||return||', '||return||', 'all:', 'hi', 'michael', '||period||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'everything', 'all', 'right', '||questionmark||', '||return||', '||return||', 'michael:', 'i', 'just', 'came', 'from', 'the', 'podiatrist', '||period||', 'i', 'have', 'a', 'mole', 'on', 'my', 'foot', '||period||', "i've", 'got', 'a', 'little', 'gangrene', '||comma||', "they're", 'probably', 'gonna', 'have', 'to', 'amputate', '||period||', '||leftparen||', 'everyone', 'laugh', 'except', 'george', '||rightparen||', '||return||', '||return||', 'casting', 'director:', 'any', 'questions', '||questionmark||', '||return||', '||return||', 'michael:', 'yeah', '||period||', 'what', 'are', 'we', 'looking', 'at', 'here', '||questionmark||', 'is', 'this', 'guy', 'like', 'a', 'real', 'loser', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'a', 'loser', '||exclammark||', '||return||', '||return||', 'casting', 'director:', "let's", 'start', 'with', 'the', 'second', 'scene', '||period||', 'you', 'have', 'it', 'here', '||questionmark||', '||return||', '||return||', 'michael:', 'a', 'man', 'gave', 'me', 'a', '||comma||', 'you', 'know', '||comma||', 'massage', '||period||', '||leftparen||', 'everyone', 'laugh', 'except', 'george', '||rightparen||', '||return||', '||return||', 'casting', 'director:', 'so', '||questionmark||', '||return||', '||return||', 'michael:', 'well', '||comma||', 'he', '||dash||', '||dash||', 'he', 'had', 'his', 'hands', '||comma||', 'you', 'know', '||comma||', 'and', 'uh', '||comma||', 'he', 'was', '||comma||', 'huh', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'casting', 'director:', 'he', 'was', 'what', '||questionmark||', '||return||', '||return||', 'michael:', 'he', 'was', 'you', 'know', '||period||', '||period||', '||period||', 'he', 'was', 'touching', 'and', 'rubbing', '||period||', '||leftparen||', 'loud', 'laughter', '||rightparen||', '||return||', '||return||', 'casting', 'director:', "that's", 'a', 'massage', '||period||', '||return||', '||return||', 'michael:', 'i', 'think', 'it', 'moved', '||period||', '||return||', '||return||', 'casting', 'director:', 'this', 'is', 'melissa', 'shannon', '||period||', '||return||', '||return||', 'melissa:', 'hi', '||period||', '||return||', '||return||', 'all:', 'hi', '||period||', 'how', 'you', 'doing', '||period||', '||return||', '||return||', 'casting', 'director:', 'melissa', 'is', 'reading', 'for', 'elaine', '||period||', '||return||', '||return||', 'melissa:', "it's", 'like', 'a', 'bald', 'convention', 'out', 'there', '||exclammark||', '||leftparen||', 'she', 'saw', 'george', '||rightparen||', 'sorry', '||period||', 'i', '||comma||', 'uh', '||comma||', 'made', 'a', 'faux', 'pas', '||period||', '||return||', '||return||', 'jerry:', 'no', 'you', "didn't", '||period||', 'he', 'knows', "he's", 'bald', '||period||', '||return||', '||return||', 'melissa:', 'so', 'how', 'about', 'that', 'guy', 'wearing', 'sweat', 'pants', '||questionmark||', 'i', 'mean', 'did', 'he', 'do', 'that', 'for', 'the', 'part', 'or', 'does', 'he', 'walk', 'around', 'like', 'that', '||questionmark||', '||leftparen||', 'jerry', 'approves', 'with', 'a', 'nod', '||comma||', 'george', 'drops', 'his', 'notepad', 'on', 'the', 'coffee', 'table', '||rightparen||', '||return||', '||return||', 'casting', 'director:', 'o', '||period||', 'k', '||period||', 'shall', 'we', 'start', '||questionmark||', '||leftparen||', 'melissa', 'and', 'the', 'casting', 'director', 'sit', 'down', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'up', '||rightparen||', 'uh', '||comma||', 'you', 'know', 'what', '||questionmark||', "i'll", 'read', 'with', 'her', '||period||', '||return||', '||return||', 'melissa:', 'oh', '||comma||', 'great', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'want', 'to', 'start', '||questionmark||', '||return||', '||return||', 'melissa:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', '||return||', '||return||', 'melissa:', 'ahem', '||period||', 'what', 'was', 'that', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'look', '||questionmark||', '||return||', '||return||', 'melissa:', 'that', 'look', 'you', 'just', 'gave', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'gave', 'a', 'look', '||questionmark||', '||return||', '||return||', 'melissa:', 'yes', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', '||exclammark||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'jerry', 'and', 'melissa', 'stop', 'and', 'look', 'at', 'george', '||rightparen||', '||return||', '||return||', 'casting', 'director:', "let's", 'see', 'some', 'more', 'kramers', '||period||', '||return||', '||return||', 'all:', 'hi', '||period||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'tom:', '||leftparen||', 'to', 'jerry', 'and', 'very', 'seriously', '||rightparen||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', 'and', 'surprised', 'at', 'the', 'way', 'tom', 'is', 'talking', '||rightparen||', 'good', '||period||', '||return||', '||return||', 'casting', 'director:', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', 'tom:', '||leftparen||', 'standing', '||rightparen||', 'levels', '||period||', '||return||', '||return||', 'casting', 'director:', 'levels', '||questionmark||', '||return||', '||return||', 'tom:', 'yeah', '||period||', "i'm", 'getting', 'rid', 'of', 'all', '||comma||', 'all', 'my', 'furniture', '||period||', 'all', 'of', 'it', '||exclammark||', "i'm", 'building', '||period||', '||period||', '||period||', 'levels', '||period||', '||period||', '||period||', 'with', 'steps', '||period||', '||period||', '||period||', 'completely', 'carpeted', '||period||', '||period||', '||period||', '||leftparen||', 'making', 'the', 'gesture', 'of', 'carpeting', 'steps', '||rightparen||', 'with', 'pillows', '||period||', '||leftparen||', 'everyone', 'laugh', '||period||', 'he', 'sits', 'down', '||rightparen||', 'like', 'ancient', 'egypt', '||period||', '||return||', '||return||', 'casting', 'director:', 'i', "don't", 'know', 'how', "you're", 'gonna', 'be', 'comfortable', 'like', 'that', '||questionmark||', '||return||', '||return||', 'tom:', 'oh', '||exclammark||', "i'll", 'be', 'comfortable', '||period||', '||leftparen||', 'laughter', '||comma||', 'applause', '||period||', 'he', 'gets', 'up', '||comma||', 'goes', 'to', 'the', 'coffee', 'table', '||rightparen||', '||return||', '||return||', 'george:', 'very', 'nice', '||return||', '||return||', 'jerry:', 'very', 'good', '||return||', '||return||', 'george:', 'very', 'nice', 'tom', '||comma||', 'that', 'was', 'terrific', '||period||', '||return||', '||return||', 'tom:', 'may', 'i', '||questionmark||', '||leftparen||', 'pointing', 'the', 'box', 'of', 'raisins', '||rightparen||', '||return||', '||return||', 'george:', 'sure', '||period||', 'thank', 'you', 'for', 'coming', 'in', '||period||', '||leftparen||', 'tom', 'eats', 'some', 'raisins', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'it', 'was', 'a', 'wonderful', 'reading', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'really', '||period||', '||return||', '||return||', 'tom:', 'well', '||comma||', 'bye', '||period||', '||return||', '||return||', 'george:', 'take', 'care', '||period||', 'take', 'it', 'easy', '||period||', '||leftparen||', 'tom', 'leaves', 'with', 'the', 'casting', 'director', '||rightparen||', '||return||', '||return||', 'stu:', 'now', '||comma||', 'i', 'thought', 'he', 'was', 'really', 'good', '||comma||', 'very', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'liked', 'him', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'the', 'raisins', '||questionmark||', '||return||', '||return||', 'jay:', 'yeah', '||comma||', 'there', 'was', 'a', 'box', 'of', 'raisins', 'there', '||exclammark||', '||return||', '||return||', 'george:', 'did', 'he', 'just', 'steal', 'the', 'raisins', '||questionmark||', '||return||', '||return||', 'stu:', 'you', 'think', 'he', 'stole', 'them', '||questionmark||', '||return||', '||return||', 'casting', 'director:', '||leftparen||', 'enters', 'with', 'the', 'real', 'kramer', '||rightparen||', 'this', 'is', 'martin', 'van', 'nostrand', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'casting', 'director:', 'you', 'two', 'know', 'each', 'other', '||questionmark||', '||return||', '||return||', 'stu:', 'wait', 'a', 'minute', '||comma||', 'i', 'know', 'you', '||period||', "you're", 'the', 'guy', 'from', 'the', 'calvin', 'klein', 'underwear', 'ads', '||period||', '||return||', '||return||', 'kramer:', "that's", 'true', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'acting', 'very', 'bad', '||rightparen||', 'i', 'saw', 'joe', 'dimaggio', 'in', 'dinky', 'doughnuts', 'again', '||comma||', 'but', 'this', 'time', '||comma||', 'i', 'went', 'in', '||period||', '||leftparen||', 'pause', '||comma||', 'stops', 'acting', '||rightparen||', 'oh', '||exclammark||', 'uh', '||comma||', "where's", 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'stu:', 'i', 'think', 'if', 'you', 'go', 'down', 'the', 'hall', '||comma||', "it's", 'on', 'the', 'right', 'at', 'the', 'very', 'end', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'be', 'right', 'back', '||period||', '||leftparen||', 'kramer', 'leaves', '||rightparen||', '||return||', '||return||', '||leftparen||', 'we', 'see', 'kramer', '||comma||', 'groaning', 'and', 'holding', 'his', 'stomach', '||comma||', 'running', 'down', 'the', 'hall', '||comma||', 'and', 'opening', 'the', "bathroom's", 'door', '||period||', 'someone', 'in', 'there', 'says:', '||quotemark||', 'sorry', 'buddy', '||comma||', 'full', 'house', '||period||', '||quotemark||', 'we', 'then', 'see', 'kramer', 'outside', 'leaving', 'the', 'building', 'and', 'running', 'across', 'the', 'street', 'to', 'a', 'restaurant', '||quotemark||', 'sorry', '||comma||', 'customers', 'only', '||quotemark||', '||period||', '||period||', '||period||', 'running', 'into', 'a', 'movie', 'theater', '||quotemark||', 'hey', 'you', 'need', 'a', 'ticket', '||exclammark||', '||quotemark||', '||period||', '||period||', '||period||', 'running', 'through', 'the', 'park', '||period||', '||period||', '||period||', '||rightparen||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'elaine:', 'so', "who's", 'playing', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "don't", 'worry', 'about', 'it', '||period||', 'very', 'talented', '||comma||', 'very', 'takented', 'young', 'actress', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'an', 'eskimo', '||comma||', 'actually', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'my', 'god', '||leftparen||', 'not', 'in', 'the', 'mood', 'to', 'be', 'kidding', '||rightparen||', '||return||', '||return||', 'jerry:', 'she', 'came', 'down', 'from', 'juno', 'by', 'sleigh', '||comma||', 'she', 'was', 'in', 'the', 'iditarod', '||period||', 'got', 'to', 'the', 'finish', 'line', '||comma||', 'just', 'kept', 'going', '||period||', "she's", 'got', 'the', 'dogs', 'with', 'her', 'in', 'the', 'hotel', 'room', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'was', 'russell', 'at', 'the', 'casting', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'he', "didn't", 'show', 'up', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', "i'm", 'a', 'little', 'bit', 'worried', 'about', 'him', '||period||', 'i', "don't", 'understand', '||period||', 'we', 'had', 'one', 'date', 'two', 'months', 'ago', '||period||', 'am', 'i', 'that', 'charming', 'and', 'beautiful', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', "you're", 'not', '||period||', '||return||', '||return||', 'elaine:', 'why', 'do', 'i', 'keep', 'setting', 'you', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'waitress', '||rightparen||', 'could', 'we', 'get', 'a', 'little', 'more', '||questionmark||', '||leftparen||', 'she', "doesn't", 'listen', 'and', 'walks', 'away', '||rightparen||', 'aghh', '||period||', '||period||', '||period||', 'you', 'know', 'ever', 'since', 'this', 'new', 'owner', 'took', 'over', '||comma||', 'the', 'service', 'here', 'is', '*really*', 'slow', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'have', 'you', 'noticed', 'anything', 'else', "that's", 'different', 'since', 'the', 'new', 'management', '||questionmark||', '||return||', '||return||', 'elaine:', 'mmm', '||period||', "they're", 'putting', 'a', 'little', 'lemon', 'in', 'the', 'tuna', '||period||', 'i', 'love', 'that', '||period||', '||return||', '||return||', 'jerry:', 'beside', 'that', '||period||', 'look', 'at', 'the', 'waitresses', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', '||leftparen||', 'we', 'see', 'that', 'all', 'the', 'waitresses', 'have', 'big', 'breasts', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'physical', 'characteristic', 'would', 'you', 'say', 'is', 'common', 'to', 'all', 'of', 'them', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'look', 'at', 'this', '||period||', 'every', 'waitress', 'working', 'here', 'has', 'the', 'same', 'proportions', '||period||', "wouldn't", 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'i', 'would', 'say', '||period||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', 'here', '||period||', 'how', 'is', 'that', 'possible', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'think', "it's", 'a', 'coincidence', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', "haven't", 'seen', 'four', 'women', 'like', 'this', 'together', 'outside', 'of', 'a', 'russ', 'meyer', 'film', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'waitress', '||rightparen||', 'hi', '||period||', 'excuse', 'me', '||period||', 'who', 'does', 'all', 'the', 'hiring', 'waitresses', 'here', '||questionmark||', '||return||', '||return||', 'waitress:', 'he', 'does', '||period||', '||leftparen||', 'pointing', 'to', 'the', 'manager', '||comma||', 'mr', '||period||', 'visaki', '||rightparen||', 'in', 'fact', "we're", 'looking', 'for', 'another', 'girl', 'if', 'you', 'know', 'anyone', '||period||', '||leftparen||', 'she', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||questionmark||', "that's", 'discriminatory', '||period||', 'that', 'is', 'unfair', '||period||', 'why', 'should', 'these', 'women', 'have', 'all', 'the', 'advantages', '||questionmark||', "it's", 'not', 'enough', 'they', 'get', 'all', 'the', 'attention', 'from', 'men', '||comma||', 'they', 'have', 'to', 'get', 'all', 'the', 'waitress', 'jobs', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', "that's", 'life', '||period||', 'good', '||dash||', 'looking', 'men', 'have', 'the', 'same', 'advantages', '||period||', 'you', "don't", 'see', 'any', 'handsome', 'homeless', '||period||', '||return||', '||return||', '[setting:', "doctor's", 'clinic]', '||return||', '||return||', 'george:', 'you', 'see', '||comma||', "it's", 'right', 'here', '||period||', "it's", 'all', 'white', '||period||', '||period||', '||period||', '||return||', '||return||', 'doctor:', 'oh', 'yeah', '||period||', 'yeah', '||period||', "i've", 'never', 'seen', 'this', 'before', '||period||', '||return||', '||return||', 'george:', "you've", 'never', 'seen', 'this', 'before', '||questionmark||', '||return||', '||return||', 'doctor:', "i'm", 'gonna', 'have', 'to', 'take', 'a', 'biopsy', 'on', 'that', '||period||', '||leftparen||', 'george', 'grabs', 'the', "doctor's", 'arm', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'dramatically', '||rightparen||', 'a', 'what', '||questionmark||', '||return||', '||return||', 'doctor:', 'a', 'biopsy', '||period||', '||return||', '||return||', 'george:', 'a', 'biopsy', '||questionmark||', '||return||', '||return||', 'doctor:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'cancer', '||questionmark||', 'is', 'it', 'cancer', '||questionmark||', 'do', 'i', 'have', 'cancer', '||questionmark||', '||return||', '||return||', 'doctor:', 'well', 'i', "don't", 'know', 'what', 'it', 'is', '||period||', '||return||', '||return||', '[setting:', "jerry's]", '||return||', '||return||', 'george:', 'a', 'biopsy', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'said', 'he', "didn't", 'know', 'what', 'it', 'was', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'i', 'asked', 'him', 'if', 'it', 'was', 'cancer', '||comma||', 'he', "didn't", 'give', 'me', 'a', '||quotemark||', 'get', 'outta', 'here', '||quotemark||', '||period||', "that's", 'what', 'i', 'wanted', 'to', 'hear', '||quotemark||', 'cancer', '||questionmark||', 'get', 'outta', 'here', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'he', "doesn't", 'have', 'a', '||quotemark||', 'get', 'outta', 'here', '||quotemark||', 'kind', 'of', 'personality', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'you', 'be', 'a', 'doctor', 'and', 'not', 'say', '||quotemark||', 'get', 'outta', 'here', '||quotemark||', '||questionmark||', 'it', 'should', 'be', 'part', 'of', 'the', 'training', 'at', 'medical', 'school', '||quotemark||', 'cancer', '||questionmark||', 'get', 'outta', 'here', '||exclammark||', '||quotemark||', '||quotemark||', 'go', 'home', '||exclammark||', 'what', 'are', 'you', 'crazy', '||questionmark||', "it's", 'a', 'little', 'test', '||period||', "it's", 'nothing', '||period||', "you're", 'a', 'real', 'nut', '||period||', 'you', 'know', 'that', '||questionmark||', '||quotemark||', '||leftparen||', 'jerry', 'gives', 'him', 'half', 'of', 'his', 'sandwich', 'to', 'hopefully', 'shut', 'him', 'up', '||rightparen||', 'i', 'told', 'you', 'that', 'god', 'would', 'never', 'let', 'me', 'be', 'successful', '||period||', 'i', 'never', "should've", 'written', 'that', 'pilot', '||period||', 'now', 'the', 'show', 'will', 'be', 'a', 'big', 'hit', '||comma||', "we'll", 'make', 'millions', 'of', 'dollars', '||comma||', 'and', "i'll", 'be', 'dead', '||period||', 'dead', 'jerry', '||period||', 'because', 'of', 'this', '||period||', '||leftparen||', 'showing', 'his', 'lip', '||rightparen||', '||return||', '||return||', 'jerry:', "can't", 'you', 'at', 'least', 'die', 'with', 'a', 'little', 'dignity', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'i', "can't", '||period||', 'i', "can't", 'die', 'with', 'dignity', '||period||', 'i', 'have', 'no', 'dignity', '||period||', 'i', 'want', 'to', 'be', 'the', 'one', 'person', 'who', "doesn't", 'die', 'with', 'dignity', '||period||', 'i', 'live', 'my', 'whole', 'life', 'in', 'shame', '||period||', 'why', 'should', 'i', 'die', 'with', 'dignity', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'what', 'happened', 'to', 'you', 'yesterday', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'mugged', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'mugged', '||questionmark||', '||return||', '||return||', 'jerry:', 'mugged', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "wouldn't", 'have', 'minded', 'it', 'so', 'much', 'but', 'i', 'was', 'running', 'home', 'to', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'use', 'the', 'bathroom', 'in', 'the', 'building', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'full', '||period||', 'i', 'tried', 'a', 'few', 'other', 'places', '||comma||', 'you', 'know', '||comma||', 'but', 'that', "didn't", 'work', '||period||', 'i', 'mean', 'it', 'was', 'an', 'emergency', 'jerrry', '||period||', 'i', 'was', 'really', 'percolating', '||period||', '||period||', '||period||', 'so', 'i', 'decided', 'to', 'run', 'home', 'through', 'the', 'park', 'and', 'then', 'these', 'two', 'guys', 'they', 'stopped', 'me', 'and', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'but', 'now', 'i', 'have', 'a', 'big', 'problem', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'waited', 'so', 'long', 'i', '||dash||', '||dash||', 'i', 'missed', 'my', 'chance', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'and', 'now', 'i', "can't", 'get', 'it', 'back', '||period||', '||return||', '||return||', 'jerry:', 'the', '%', 'thing', 'to', 'do', 'is', 'just', 'not', 'think', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'how', 'could', 'you', 'not', 'think', 'about', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'mumbles', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', "what's", 'the', 'matter', 'with', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'little', 'backed', 'up', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'so', 'i', 'spoke', 'to', 'some', 'of', 'my', 'sisters', 'about', 'that', 'coffee', 'shop', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'sisters', '||leftparen||', 'he', 'sits', 'at', 'the', 'table', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'have', 'you', 'seen', 'the', 'waitresses', 'in', 'there', 'lately', '||questionmark||', 'i', 'never', 'had', 'so', 'much', 'coffee', 'in', 'my', 'life', '||period||', '||return||', '||return||', 'elaine:', 'so', 'we', 'decided', 'i', 'should', 'go', 'over', 'there', 'and', 'apply', 'for', 'a', 'job', 'myself', '||period||', '||return||', '||return||', 'george:', 'apply', 'for', 'a', 'job', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', '||comma||', "it's", 'discriminatory', '||leftparen||', 'she', 'comes', 'back', 'wearing', 'one', 'of', "jerry's", 'shirts', '||comma||', 'untucked', '||rightparen||', '||return||', '||return||', 'george:', "it's", 'a', 'coincidence', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'what', 'you', 'gonna', 'wear', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'gonna', 'get', 'the', 'job', '||period||', '||return||', '||return||', 'elaine:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hello', '||period||', 'oh', '||comma||', 'hi', '||period||', 'yeah', 'i', 'guess', 'we', 'could', 'do', 'that', '||period||', 'at', 'what', 'time', '||questionmark||', 'all', 'right', '||period||', "i'll", 'see', 'you', 'there', '||period||', 'o', '||period||', 'k', '||period||', '||comma||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', 'who', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'tv', 'elaine', '||period||', 'she', 'wants', 'to', 'get', 'together', 'and', 'talk', 'about', 'the', 'part', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'the', 'dogs', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'having', 'sex', 'in', 'the', 'hotel', 'room', '||period||', '||return||', '||return||', '[setting:', 'peter', 'mcmanus', 'cafe', '||comma||', 'same', 'table', 'as', 'earlier]', '||return||', '||return||', '||leftparen||', 'jerry', 'and', 'tv', 'elaine:', 'sandi', 'robbins', '||rightparen||', '||return||', '||return||', 'sandi:', 'so', '||comma||', 'the', 'elaine', 'character', 'is', 'based', 'on', 'someone', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'sandi:', 'and', "she's", 'really', 'your', 'ex', '||dash||', 'girlfriend', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'huh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'sandi:', 'i', 'want', 'to', 'get', 'to', 'know', 'her', 'from', 'the', 'inside', '||period||', 'what', 'is', 'she', 'like', '||questionmark||', 'tell', 'me', 'about', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "she's", 'fascinated', 'with', 'greenland', '||period||', 'she', 'enjoys', 'teasing', 'animals', '||comma||', 'banlon', '||comma||', 'and', 'seeing', 'people', 'running', 'for', 'their', 'lives', '||period||', 'she', 'loves', 'throwing', 'garbage', 'out', 'the', 'window', '||comma||', 'yet', "she's", 'extremely', 'dainty', '||period||', '||return||', '||return||', 'sandi:', 'how', 'would', 'she', 'eat', 'a', 'hamburger', '||questionmark||', '||return||', '||return||', 'jerry:', 'with', 'her', 'hands', '||period||', '||return||', '||return||', 'sandi:', 'what', 'about', 'pasta', '||questionmark||', '||return||', '||return||', 'jerry:', 'also', 'with', 'her', 'hands', '||period||', '||return||', '||return||', 'sandi:', 'seriously', '||period||', '||period||', '||period||', 'i', 'want', 'to', 'experience', 'everything', "she's", 'experienced', '||period||', '||return||', '||return||', 'jerry:', 'everything', '||questionmark||', '||return||', '||return||', 'sandi:', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'she', 'cuts', 'her', 'pasta', 'with', 'a', 'knife', '||period||', '||return||', '||return||', 'sandi:', "that's", 'good', '||period||', "what's", 'her', 'favorite', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'shaft', '||period||', '||return||', '||return||', 'sandi:', 'you', 'got', 'to', 'get', 'me', 'a', 'picture', '||period||', 'what', 'about', 'sex', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'likes', 'talking', 'during', 'sex', '||period||', '||return||', '||return||', 'sandi:', 'oh', '||period||', '||period||', '||period||', 'dirty', 'talking', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'just', 'chitchat', '||comma||', 'movies', '||comma||', 'current', 'events', '||comma||', 'regular', 'stuff', '||period||', 'you', 'know', 'sandi', '||dash||', '||dash||', '||leftparen||', 'looking', 'at', 'his', 'watch', '||rightparen||', '||return||', '||return||', 'sandi:', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'sandi:', 'call', 'me', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'elaine', '||period||', '||return||', '||return||', 'sandi:', 'how', 'does', 'elaine', 'kiss', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||dash||', '||dash||', '||return||', '||return||', 'sandi:', 'does', 'she', 'kiss', '||period||', '||period||', '||period||', 'like', 'this', '||questionmark||', '||leftparen||', 'she', 'kisses', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'actually', 'she', 'has', 'a', 'thing', 'where', 'she', 'spirals', 'her', 'tongue', 'around', '||comma||', "it's", 'like', '||dash||', '||dash||', '||return||', '||return||', 'sandi:', 'like', 'this', '||questionmark||', '||leftparen||', 'kisses', 'again', 'but', 'with', 'the', 'spiral', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'think', 'you', 'got', 'it', '||period||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'kramer:', 'i', 'like', 'to', 'eat', 'spaghetti', 'with', 'just', 'a', 'fork', '||period||', 'because', 'i', 'can', 'keep', 'the', 'strands', 'long', '||comma||', 'and', 'i', 'can', 'slurp', 'it', 'out', 'to', 'my', 'mouth', '||period||', 'like', 'this', 'look', '||period||', '||leftparen||', 'faking', 'to', 'slurp', 'spaghetti', '||rightparen||', 'now', 'sex', '||comma||', 'i', 'like', 'the', 'bottom', '||period||', 'let', 'them', 'do', 'all', 'the', 'work', '||period||', 'you', 'should', 'be', 'writing', 'this', 'stuff', 'down', '||period||', '||period||', '||period||', '||leftparen||', 'waitress', 'comes', 'to', 'take', 'the', 'order', '||rightparen||', 'bran', 'lakes', '||period||', '||period||', '||period||', '100%', '||period||', 'i', 'got', 'a', 'big', 'problem', '||period||', '||return||', '||return||', 'tom:', "i'll", 'have', 'a', 'hamburger', '||period||', "that's", 'it', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "that's", 'good', '||period||', 'oh', '||comma||', 'now', 'i', 'like', 'to', 'play', 'golf', '||period||', '||return||', '||return||', 'tom:', 'this', 'stuff', "doesn't", 'matter', 'to', 'me', '||period||', 'see', '||comma||', "i'm", 'gonna', 'do', 'the', 'character', 'like', 'me', '||comma||', 'not', 'like', 'you', '||period||', '||return||', '||return||', 'kramer:', 'you', 'gotta', 'play', 'him', 'like', 'me', '||period||', "i'm", 'kramer', '||period||', '||return||', '||return||', 'tom:', "i'm", 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', "i'm", 'kramer', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', '||leftparen||', 'foreign', 'accent', '||rightparen||', 'what', 'can', 'i', 'do', 'for', 'you', '||questionmark||', 'would', 'you', 'like', 'a', 'table', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'd", 'like', 'to', 'apply', 'for', 'a', 'waitress', 'job', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', '||leftparen||', 'looks', 'elaine', 'up', 'and', 'down', '||rightparen||', 'have', 'you', 'ever', 'waited', 'on', 'tables', 'before', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||period||', "i've", 'been', 'a', 'professional', 'waitress', 'for', 'the', 'last', '10', 'years', '||period||', "i've", 'worked', 'all', 'over', 'the', 'city', '||period||', 'these', '||comma||', 'uh', '||comma||', 'are', 'my', 'references', '||period||', "i'm", 'sure', "you'll", 'find', 'that', "i'm", 'more', 'than', 'qualified', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'i', "don't", 'think', 'i', 'need', 'anyone', 'else', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', "you're", 'in', 'big', 'trouble', 'mister', '||period||', 'and', 'i', 'mean', 'trouble', 'with', 'a', 'capital', "'t'", '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'what', '||questionmark||', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', '[setting:', 'the', 'equal', 'employment', 'opportunity', 'commission', 'office]', '||return||', '||return||', 'elaine:', 'anyway', "there's", 'at', 'least', 'four', 'of', 'them', '||comma||', 'and', "they're", 'all', 'huge', '||period||', 'and', 'one', 'is', 'bigger', 'than', 'the', 'next', '||period||', "it's", 'like', 'a', 'russ', 'meyer', 'movie', '||period||', '||return||', '||return||', 'fred:', "who's", 'russ', 'meyer', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'this', 'guy', 'who', 'made', 'these', 'terrible', 'movies', 'in', 'the', "70's", 'with', 'these', 'kinds', 'of', 'women', '||period||', "he's", 'obsessed', '||period||', "he's", 'obsessed', 'with', 'breasts', '||period||', "that's", 'hard', 'to', 'say', '||period||', '||return||', '||return||', 'fred:', 'anyway', '||comma||', 'go', 'on', '||period||', '||return||', '||return||', 'elaine:', 'um', '||period||', '||period||', '||period||', 'well', '||comma||', "there's", 'not', 'really', 'much', 'more', 'to', 'tell', '||period||', 'he', 'was', 'looking', 'for', 'waitresses', '||comma||', 'and', 'i', 'went', 'in', 'to', 'apply', 'for', 'the', 'job', '||period||', 'and', '||comma||', 'he', 'looked', 'me', 'up', 'and', 'down', 'and', 'he', 'rejected', 'me', '||period||', '||return||', '||return||', 'fred:', '||leftparen||', 'to', 'a', 'guy', 'in', 'the', 'hall', 'at', 'the', 'water', 'cooler', 'machine', '||rightparen||', 'paul', '||period||', 'come', 'in', 'for', 'a', 'second', '||period||', 'i', 'want', 'you', 'to', 'listen', 'to', 'this', '||period||', '||return||', '||return||', 'paul:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'fred:', 'paul', '||comma||', 'woman', 'here', 'claims', "there's", 'a', 'restaurant', 'on', 'the', 'west', 'side', "that's", 'only', 'hiring', 'large', '||dash||', 'breasted', 'women', '||period||', '||return||', '||return||', 'paul:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', '[setting:', 'nbc', '||comma||', "pilot's", 'set]', '||return||', '||return||', 'tom:', 'what', 'do', 'you', 'mean', 'made', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'made', 'up', '||period||', 'haagen', '||dash||', 'dazs', 'is', 'made', 'up', '||period||', "it's", 'not', 'danish', '||period||', '||return||', '||return||', 'tom:', "you're", 'crazy', '||period||', '||return||', '||return||', 'jerry:', 'no', "i'm", 'not', '||period||', '||leftparen||', 'to', 'michael', '||rightparen||', 'george', '||period||', 'is', 'haagen', '||dash||', 'dazs', 'danish', '||questionmark||', '||return||', '||return||', 'michael:', 'what', 'do', 'you', 'mean', 'danish', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'guy', 'next', 'to', 'him', '||rightparen||', 'this', 'guy', 'stinks', '||period||', '||leftparen||', 'speaking', 'of', 'michael', '||rightparen||', '||return||', '||return||', 'jerry:', 'danish', '||period||', 'is', 'it', 'from', 'denmark', '||questionmark||', '||return||', '||return||', 'michael:', 'no', '||comma||', 'they', 'make', 'it', 'in', 'new', 'jersey', '||period||', "it's", 'just', 'a', 'danishy', 'name', '||period||', '||return||', '||return||', 'tom:', 'i', "can't", 'believe', 'that', '||period||', 'they', 'fooled', '*me*', 'jerry', '||period||', '||return||', '||return||', 'rita:', '||leftparen||', 'to', 'jay', '||rightparen||', 'boy', '||comma||', 'talk', 'about', 'a', 'show', 'about', 'nothing', '||period||', '||leftparen||', 'jay', '||comma||', 'the', 'integral', 'producer', '||comma||', 'smiles', 'stupidly', '||rightparen||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'excuse', 'me', '||period||', '||leftparen||', 'stopping', 'them', 'from', 'rehearsing', '||rightparen||', 'excuse', 'me', '||period||', '||leftparen||', 'he', 'walks', 'to', 'the', "guy's", 'in', 'charge', 'of', 'yelling', '||quotemark||', 'take', '#', '||exclammark||', '||quotemark||', '||rightparen||', 'this', '||dash||', '||dash||', 'this', 'is', 'not', 'right', '||period||', 'may', 'i', '||questionmark||', '||leftparen||', 'the', 'guy', 'looks', 'at', 'george', 'with', 'a', 'bothered', 'face', '||period||', 'george', 'then', 'walks', 'up', 'to', 'tom', 'and', 'takes', 'him', 'away', 'from', 'jerry', 'and', 'michael', 'to', 'talk', 'to', 'him', 'in', 'private', '||rightparen||', '||leftparen||', 'to', 'tom', '||rightparen||', 'you', 'see', '||comma||', "you're", 'going', '||quotemark||', 'they', 'fooled', '*me*', 'jerry', '||exclammark||', '||quotemark||', '||leftparen||', 'george', 'shakes', 'his', 'head', 'with', 'disapproval', '||rightparen||', 'you', 'wanna', 'hit', "'fooled'", 'more', '||quotemark||', 'they', '*fooled*', 'me', 'jerry', '||exclammark||', '||quotemark||', '||period||', 'you', 'see', 'the', 'difference', '||questionmark||', '||return||', '||return||', 'tom:', "i'm", 'not', 'gonna', 'say', 'it', 'like', 'that', '||period||', '||return||', '||return||', 'george:', 'just', 'a', 'suggestion', '||period||', '||leftparen||', 'chuckles', 'and', 'walks', 'back', 'to', 'the', 'yelling', 'guy', '||rightparen||', '||return||', '||return||', 'yelling', 'guy:', '||leftparen||', 'with', 'the', 'same', 'bothered', 'face', 'and', 'while', "he's", 'looking', 'at', 'george', '||rightparen||', 'all', 'right', 'everybody', '||comma||', 'take', 'a', 'five', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'very', 'casual', 'and', 'raising', 'his', 'hand', 'in', 'the', 'air', '||rightparen||', 'yep', '||period||', "that's", 'five', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||leftparen||', 'walks', 'away', 'to', 'talk', 'privately', '||period||', 'george', '||comma||', 'still', 'casual', '||comma||', 'taps', 'on', "jerry's", 'shoulder', '||rightparen||', 'i', "don't", 'have', 'a', 'lot', 'of', 'experience', 'with', 'this', 'acting', 'stuff', '||period||', 'but', 'from', 'what', 'i', 'can', 'gather', '||comma||', "they're", 'a', 'little', 'touchy', 'about', 'being', 'told', 'how', 'to', 'say', 'the', 'lines', '||period||', '||return||', '||return||', 'george:', 'why', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'but', 'they', "don't", 'seem', 'to', 'like', 'it', '||period||', 'by', 'the', 'way', 'how', 'am', 'i', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "you're", 'fine', '||period||', '||period||', '||period||', "you're", 'fine', '||period||', '||leftparen||', 'looking', 'at', 'tom', 'in', 'the', 'back', 'and', 'then', 'quieter', 'to', 'jerry', '||rightparen||', 'so', 'you', 'think', 'this', 'guy', 'playing', 'kramer', 'took', 'the', 'raisins', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'would', 'he', 'steal', 'a', 'box', 'of', 'raisins', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "it's", 'bizarre', '||period||', '||leftparen||', 'they', 'both', 'look', 'around', 'them', 'suspiciously', '||rightparen||', '||return||', '||return||', 'rita:', '||leftparen||', 'to', 'jay', 'about', 'russell', '||rightparen||', "what's", 'with', 'him', '||questionmark||', '||leftparen||', 'to', 'russell', '||rightparen||', 'russell', '||questionmark||', '||leftparen||', 'louder', '||rightparen||', 'russell', '||questionmark||', '||return||', '||return||', 'russell:', 'what', '||questionmark||', '||return||', '||return||', 'rita:', 'you', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'russell:', 'yeah', '||period||', 'no', '||comma||', 'uh', '||comma||', 'i', 'was', 'just', 'thinking', 'of', 'something', '||period||', "i'll", 'be', 'back', 'in', 'a', 'second', '||period||', '||leftparen||', 'he', 'gets', 'up', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'sandi:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'sandi:', "you're", 'acting', 'weird', '||period||', 'is', 'anything', 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'sandi:', 'are', 'you', 'breaking', 'up', 'with', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'we', 'going', 'out', '||questionmark||', '||return||', '||return||', 'sandi:', "you're", 'breaking', 'up', 'with', 'me', '||comma||', "aren't", 'you', '||questionmark||', '||leftparen||', 'almost', 'crying', '||rightparen||', '||return||', '||return||', 'jerry:', 'do', 'you', 'want', 'me', 'to', 'break', 'up', 'with', 'you', '||questionmark||', '||return||', '||return||', 'sandi:', 'if', "that's", 'what', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'know', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'sandi:', 'fine', '||period||', 'break', 'up', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "we're", 'broken', 'up', '||period||', '||return||', '||return||', 'sandi:', '||leftparen||', 'little', 'pause', '||rightparen||', 'can', 'we', 'still', 'be', 'friends', '||questionmark||', '||leftparen||', 'jerry', 'raises', 'his', 'head', '||comma||', 'staring', 'ahead', 'and', 'wondering', "what's", 'going', 'on', '||rightparen||', '||return||', '||return||', 'george:', 'remember', 'when', 'you', 'came', 'to', 'audition', 'for', 'us', '||questionmark||', '||return||', '||return||', 'tom:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'there', 'was', 'a', 'box', 'of', 'raisins', 'on', 'the', 'coffee', 'table', '||period||', 'did', 'you', '||comma||', 'by', 'any', 'chance', '||comma||', 'take', 'them', 'with', 'you', 'when', 'left', '||questionmark||', '||return||', '||return||', 'tom:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'we', 'were', 'all', 'eating', 'the', 'raisins', '||period||', 'and', 'i', 'remember', 'you', '||dash||', '||dash||', 'you', 'were', 'eating', 'some', 'of', 'the', 'raisins', '||period||', 'and', 'then', 'you', 'left', '||comma||', 'and', 'the', 'raisins', 'were', 'gone', '||period||', 'and', 'i', 'was', 'just', 'wondering', 'if', '||comma||', 'you', 'know', '||leftparen||', 'chuckles', '||rightparen||', '||comma||', 'maybe', 'you', 'took', 'them', 'with', 'you', '||period||', '||return||', '||return||', 'tom:', 'are', 'you', 'accusing', 'me', 'of', 'stealing', 'the', 'raisins', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'no', '||dash||', '||dash||', '||return||', '||return||', 'tom:', '||leftparen||', 'angry', '||rightparen||', 'why', 'would', 'i', 'steal', 'a', 'box', 'of', 'raisins', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'you', "wouldn't", '||period||', 'nobody', 'would', '||period||', "it's", 'just', 'that', '||period||', '||period||', '||period||', 'they', 'were', 'missing', '||comma||', 'and', '||period||', '||period||', '||period||', 'well', "i'm", 'just', 'inquiring', '||period||', '||leftparen||', 'chuckles', 'nervously', '||rightparen||', '||return||', '||return||', 'tom:', 'let', 'me', 'give', 'you', 'a', 'word', 'of', 'advice', '||period||', 'o', '||period||', 'k', '||period||', '||questionmark||', 'i', 'want', 'you', 'to', 'stay', 'away', 'from', 'me', '||period||', 'i', "don't", 'wanna', 'talk', 'to', 'you', '||comma||', 'and', 'i', "don't", 'wanna', 'hear', 'anymore', 'of', 'your', 'stupid', 'little', 'notes', 'and', 'suggestions', '||period||', 'i', "don't", 'like', 'you', '||period||', 'so', 'if', 'you', 'got', 'any', 'other', 'problems', 'whether', "it's", 'raisins', '||comma||', 'prunes', '||comma||', 'figs', '||comma||', 'or', 'any', 'other', 'dried', 'fruit', '||comma||', 'just', 'keep', 'it', 'to', 'yourself', 'and', 'stay', 'out', 'of', 'my', 'way', '||comma||', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'mm', '||dash||', 'hmm', '||period||', 'mm', '||dash||', 'hmm', '||period||', 'all', 'right', '||period||', 'i', "don't", 'think', "we're", 'gonna', 'have', 'any', 'problem', 'with', 'that', '||period||', '||leftparen||', 'chuckles', 'nervously', '||rightparen||', 'good', 'talking', 'to', 'you', 'tom', '||period||', 'really', '||period||', '||return||', '||return||', 'russell:', '||leftparen||', 'nervously', '||comma||', 'almost', 'desperately', '||rightparen||', 'elaine', '||period||', 'elaine', '||period||', 'what', 'do', 'you', 'want', '||questionmark||', 'what', 'can', 'i', 'do', '||questionmark||', 'is', 'it', 'my', 'job', '||questionmark||', 'is', 'that', 'what', 'it', 'is', '||questionmark||', 'elaine', 'i', "can't", 'go', 'on', 'like', 'this', '||period||', 'will', 'you', 'call', 'me', '||questionmark||', 'would', 'you', 'call', 'me', '||questionmark||', 'well', '||comma||', 'why', '||questionmark||', 'all', 'right', '||period||', 'may', 'i', 'call', 'you', '||questionmark||', 'elaine', '||questionmark||', 'elaine', '||questionmark||', '||leftparen||', 'she', 'hung', 'up', '||period||', 'an', 'employee', 'walks', 'by', '||comma||', 'bumps', 'into', 'russell', 'and', 'spills', 'coffee', 'accidentally', 'on', 'him', '||rightparen||', '||return||', '||return||', 'david:', 'excuse', 'me', 'mr', '||period||', 'dalrimple', '||period||', 'i', 'am', 'so', 'sorry', '||period||', '||return||', '||return||', 'russell:', 'all', 'right', '||period||', 'all', 'right', '||period||', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'david:', 'david', 'richardson', '||period||', '||return||', '||return||', 'russell:', 'get', 'out', '||exclammark||', "you're", 'fired', '||exclammark||', '||return||', '||return||', 'david:', 'but', 'mr', '||period||', 'dalrimple', '||dash||', '||dash||', '||return||', '||return||', 'russell:', "don't", 'talk', 'back', 'to', 'me', '||period||', "didn't", 'you', 'hear', 'what', 'i', 'say', '||questionmark||', 'get', 'out', '||exclammark||', 'you', 'want', 'me', 'to', 'call', 'the', 'cops', '||questionmark||', 'i', 'make', 'and', 'break', 'little', 'worms', 'like', 'you', 'every', 'day', '||period||', 'do', 'you', 'know', 'how', 'much', 'money', 'i', 'make', '||questionmark||', 'do', 'you', 'have', 'any', 'idea', '||exclammark||', 'do', 'you', 'know', 'where', 'i', 'live', '||questionmark||', 'i', 'can', 'have', 'any', 'woman', 'in', 'this', 'city', 'that', 'i', 'want', '||period||', 'any', 'one', '||period||', 'now', '||comma||', 'get', 'out', '||exclammark||', '||leftparen||', 'david', 'leaves', '||period||', 'everyone', 'on', 'the', 'set', 'is', 'looking', 'at', 'russell', '||rightparen||', 'what', 'are', 'you', 'all', 'looking', 'at', '||questionmark||', 'go', 'back', 'to', 'work', '||exclammark||', 'back', '||exclammark||', 'now', '||exclammark||', '||leftparen||', 'they', 'do', '||comma||', 'russell', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's]", '||return||', '||return||', 'george:', 'the', 'doc', 'called', 'and', 'said', 'the', "lab's", 'backed', 'up', 'and', 'now', "i'm", 'not', 'gonna', 'get', 'the', 'results', 'for', 'another', 'two', 'days', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||exclammark||', "you're", 'fine', '||period||', "there's", 'nothing', 'wrong', 'with', 'you', '||period||', "i'm", 'the', 'one', "who's", 'dying', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', "can't", 'act', '||exclammark||', 'i', 'stink', '||exclammark||', 'i', "don't", 'what', "i'm", 'doing', '||exclammark||', '||return||', '||return||', 'george:', 'come', 'on', "you're", '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', "you're", 'fine', '||period||', '||return||', '||return||', 'jerry:', 'this', "show's", 'gonna', 'ruin', 'my', 'entire', 'career', '||period||', 'i', "don't", 'know', 'how', 'i', 'got', 'involved', 'in', 'this', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'me', '||questionmark||', 'i', 'was', 'a', 'total', 'failure', '||period||', 'everything', 'was', 'fine', '||period||', 'now', 'this', "thing's", 'gonna', 'be', 'a', 'success', 'and', "god's", 'gonna', 'give', 'me', 'a', 'terminal', 'disease', '||period||', '||return||', '||return||', 'jerry:', 'this', 'actress', 'playing', 'elaine', '||comma||', "she's", 'out', 'of', 'her', 'mind', '||period||', '||return||', '||return||', 'george:', 'the', 'guy', 'playing', 'kramer', 'threatened', 'me', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', "'cause", 'i', 'asked', 'him', 'about', 'the', 'raisins', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mentioned', 'the', 'raisins', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'did', 'he', 'take', "'em", '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'well', 'if', 'he', "didn't", 'take', "'em", '||comma||', 'what', 'happened', 'to', "'em", '||questionmark||', '||return||', '||return||', 'george:', "that's", 'what', "i'm", 'trying', 'to', 'find', 'out', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'any', 'luck', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', '||comma||', 'nothing', '||period||', 'i', 'got', 'no', '||period||', '||period||', '||period||', 'peristalsis', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'bran', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'tried', 'bran', '||dash||', '||dash||', '40%', '||comma||', '50%', '100%', '||period||', 'the', 'bran', "isn't", 'working', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', 'my', 'friend', '||comma||', '||leftparen||', 'jerry', 'puts', 'his', 'hand', 'on', "kramer's", 'shoulder', '||rightparen||', 'it', 'may', 'be', 'time', 'to', 'consider', 'the', 'dreaded', 'apparatus', '||period||', '||return||', '||return||', 'kramer:', 'pfft', '||exclammark||', 'hold', 'it', 'right', 'there', '||period||', 'if', "you're", 'suggesting', 'what', 'i', 'think', "you're", 'suggesting', '||comma||', "you're", 'wasting', 'your', 'time', '||period||', 'i', 'am', 'not', 'jerry', '||comma||', 'under', 'any', 'circumstances', '||comma||', 'doing', 'any', 'inserting', 'in', 'that', 'area', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'not', 'that', 'bad', '||exclammark||', '||return||', '||return||', 'george:', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'well', "it's", 'all', 'taken', 'care', 'of', '||period||', 'i', 'filed', 'a', 'report', '||period||', 'an', 'investigation', 'is', 'underway', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'so', '||comma||', 'you', 'going', 'to', 'the', 'taping', 'tomorrow', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'i', "don't", 'think', 'i', 'should', 'go', '||period||', 'i', 'really', "don't", 'wanna', 'bump', 'into', 'russell', '||period||', 'he', 'called', 'me', 'the', 'other', 'day', '||period||', 'he', "won't", 'quit', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', 'you', 'gotta', 'go', '||exclammark||', "he's", 'harmless', '||period||', "he's", 'got', 'a', 'little', 'crush', 'on', 'you', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'this', 'is', 'not', 'a', 'crush', '||period||', 'this', 'is', 'a', 'complete', 'fixation', '||period||', 'he', 'makes', 'me', 'very', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'we', 'need', 'you', 'there', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', 'are', 'you', 'gonna', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', '||period||', "i'm", 'gonna', 'stay', 'home', '||period||', 'i', 'want', 'to', 'be', 'close', 'to', 'my', 'home', 'base', 'in', 'case', "there's", 'any', 'news', 'from', 'the', 'front', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'nbc', '||comma||', "pilot's", 'set', '||comma||', 'the', 'taping]', '||return||', '||return||', 'sandi:', '||leftparen||', 'to', 'her', 'hairdresser', '||rightparen||', 'no', '||exclammark||', 'pick', 'it', 'up', 'more', 'in', 'the', 'front', '||exclammark||', "it's", 'got', 'to', 'be', 'higher', '||exclammark||', 'higher', '||exclammark||', 'make', 'a', 'wall', '||exclammark||', 'a', 'wall', '||exclammark||', '||return||', '||return||', 'assistant', 'dresser:', 'sandi', '||comma||', 'are', 'you', 'in', 'wardrobe', '||questionmark||', 'sandi', '||questionmark||', '||return||', '||return||', 'jerry:', 'try', 'elaine', '||period||', '||return||', '||return||', 'assistant', 'dresser:', 'elaine', '||questionmark||', '||return||', '||return||', 'sandi:', 'yes', '||questionmark||', '||return||', '||return||', 'wilton:', 'elaine', '||questionmark||', "it's", 'me', '||dash||', '||dash||', 'wilton', 'marshall', '||period||', 'remember', '||questionmark||', 'camp', 'tioga', '||dash||', '||dash||', '1978', '||questionmark||', 'remember', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'right', '||period||', '||return||', '||return||', 'wilton:', 'wow', '||exclammark||', 'you', 'know', 'you', "haven't", 'changed', 'a', 'bit', '||period||', '||return||', '||return||', 'michael:', 'i', "can't", 'remember', 'my', 'lines', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'just', 'relax', '||comma||', "you'll", 'be', 'fine', '||period||', '||return||', '||return||', 'michael:', 'i', "can't", 'relax', '||period||', 'i', "don't", 'know', 'what', 'line', '||exclammark||', 'i', "don't", 'know', 'any', 'of', "'em", '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'just', 'like', 'george', '||period||', "george'd", 'do', 'the', 'same', 'thing', '||period||', "you're", 'just', 'like', 'him', '||period||', "it's", 'amazing', '||exclammark||', '||return||', '||return||', 'michael:', 'help', 'me', 'jerry', '||exclammark||', 'help', 'me', '||exclammark||', '||return||', '||return||', 'rita:', '||leftparen||', 'to', 'stu', '||rightparen||', 'where', 'is', 'russell', '||questionmark||', '||return||', '||return||', 'stu:', 'you', 'know', 'i', "don't", 'know', '||period||', 'i', 'thought', 'he', 'was', 'coming', '||period||', 'i', 'assumed', 'he', "wouldn't", 'miss', 'it', '||period||', '||return||', '||return||', 'jay:', 'he', "hasn't", 'been', 'well', '||period||', '||return||', '||return||', 'stu:', '||leftparen||', 'to', 'rita', '||rightparen||', 'can', 'i', 'tell', 'you', 'something', 'in', 'confidence', '||questionmark||', 'i', 'think', "it's", 'a', 'woman', '||period||', '||return||', '||return||', 'rita:', 'how', 'pathetic', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'george', 'costanza', '||comma||', "i'm", 'calling', 'for', 'my', 'test', 'results', '||period||', 'negative', '||questionmark||', 'oh', '||comma||', 'my', 'god', '||period||', 'why', '||exclammark||', 'why', '||exclammark||', 'why', '||questionmark||', 'what', '||questionmark||', 'what', '||questionmark||', 'negative', 'is', 'good', '||questionmark||', 'oh', '||comma||', 'yes', 'of', 'course', '||exclammark||', 'how', 'stupid', 'of', 'me', '||period||', 'thank', 'you', '||period||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'he', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'he', 'walks', 'casually', 'to', 'tom', '||comma||', 'and', 'taps', 'his', 'arm', '||rightparen||', 'listen', '||period||', 'i', 'know', "we've", 'had', 'our', 'problems', 'in', 'the', 'past', '||comma||', 'but', 'we', 'got', 'a', 'show', 'to', 'do', 'tonight', '||period||', 'time', 'to', 'pull', 'together', 'as', 'a', 'team', '||period||', "life's", 'too', 'short', '||period||', 'i', 'say', '||comma||', "let's", 'let', 'bygones', 'be', 'bygones', '||period||', 'if', 'you', 'took', 'the', 'raisins', '||comma||', 'if', 'you', "didn't", 'take', 'the', 'raisins', '||dash||', '||dash||', 'they', "weren't", 'even', 'my', 'raisins', '||period||', 'i', 'was', 'just', 'curious', 'because', 'it', 'seems', 'like', 'a', 'strange', 'to', 'do', 'to', 'walk', 'into', 'a', 'room', '||comma||', 'audition', '||comma||', 'and', 'to', 'walk', 'out', 'with', 'a', 'box', 'of', 'raisins', '||period||', 'anyway', '||comma||', 'whatever', '||period||', 'if', 'you', 'ever', 'want', 'to', 'tell', 'me', 'about', 'it', '||comma||', 'the', 'door', 'to', 'my', 'office', 'is', 'always', 'opened', '||period||', 'in', 'the', 'event', 'that', 'i', 'get', 'an', 'office', '||period||', "you'll", 'come', 'in', '||comma||', "we'll", 'talk', 'about', 'the', 'raisins', '||period||', "we'll", 'have', 'a', 'nice', 'laugh', '||period||', '||return||', '||return||', 'tom:', 'how', 'would', 'you', 'like', 'it', 'if', 'i', 'just', 'pulled', 'your', 'heart', 'out', 'of', 'your', 'chest', 'right', 'now', '||comma||', 'and', 'shoved', 'it', 'down', 'your', 'throat', '||questionmark||', '||return||', '||return||', 'pat', 'hazell:', 'are', 'you', 'ready', 'to', 'meet', 'our', 'cast', '||questionmark||', '||leftparen||', 'crowd', 'applause', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'good', 'evening', '||comma||', 'folks', '||period||', 'how', 'you', 'doing', '||questionmark||', '||leftparen||', 'small', 'reaction', 'from', 'the', 'crowd', '||rightparen||', 'well', '||comma||', 'you', 'sound', 'like', 'a', 'great', 'crowd', '||period||', 'we', 'have', 'a', 'show', "we're", 'gonna', 'put', 'on', 'for', 'you', 'tonight', '||period||', "it's", 'a', 'new', 'tv', 'show', '||period||', "it's", 'what', 'they', 'call', 'a', 'pilot', '||period||', 'and', 'we', 'hope', 'it', 'becomes', 'a', 'series', '||period||', "it's", 'called', "'jerry'", '||comma||', 'and', "i'm", 'playing', 'jerry', '||dash||', '||dash||', '||return||', '||return||', 'joe', 'devola:', '||leftparen||', 'getting', 'up', 'then', 'shouting', '||rightparen||', 'sic', 'semper', 'tyrannis', '||exclammark||', '||leftparen||', 'he', 'jumps', 'over', 'a', 'balcony', 'and', 'on', 'the', 'stage', '||period||', 'the', 'crowd', 'is', 'yelling', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's]", '||return||', '||return||', 'george:', 'sic', 'semper', 'tyrannis', '||questionmark||', 'what', 'is', 'that', '||comma||', 'latin', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'what', 'john', 'wilkes', 'booth', 'yelled', 'out', 'when', 'he', 'shot', 'lincoln', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'what', 'does', 'it', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'means', '||quotemark||', 'death', 'to', 'tyrants', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 'i', 'can', 'see', 'that', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'now', 'this', 'is', 'exciting', '||exclammark||', 'this', 'is', 'exciting', '||exclammark||', 'did', 'i', 'miss', 'anything', 'already', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it', 'starts', 'in', 'five', 'minutes', '||period||', 'you', 'were', 'there', 'at', 'the', 'taping', '||comma||', "what's", 'the', 'big', 'deal', '||questionmark||', '||return||', '||return||', 'elaine:', 'nah', '||comma||', 'now', "it's", 'on', 'tv', '||period||', "it's", 'different', '||period||', 'i', 'told', 'everybody', 'i', 'know', 'to', 'watch', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'about', 'russell', '||questionmark||', 'did', 'you', 'hear', 'from', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'strange', '||period||', 'even', 'not', 'showing', 'up', 'at', 'the', 'taping', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'pistol', '||dash||', 'packin', 'mama', '||comma||', 'you', 'swing', 'that', 'gal', 'around', '||comma||', 'allemande', 'left', 'with', 'the', 'old', 'gray', 'hag', '||comma||', 'around', 'and', 'around', 'you', 'go', '||period||', 'yee', '||dash||', 'ha', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'well', '||comma||', 'well', '||period||', '||return||', '||return||', 'elaine:', 'congratulations', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'you', 'went', 'for', 'the', 'big', '||quotemark||', 'e', '||quotemark||', '||period||', '||return||', '||return||', 'kramer:', 'wet', 'and', 'wild', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'come', 'on', 'sit', 'down', '||period||', "it's", 'about', 'to', 'start', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "what's", 'this', '||questionmark||', 'look', '||period||', 'a', 'wallet', '||period||', '||return||', '||return||', 'jerry:', 'a', 'wallet', '||questionmark||', 'let', 'me', 'see', 'that', '||period||', '||return||', '||return||', 'elaine:', 'here', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'man', '||exclammark||', "it's", 'my', "father's", 'wallet', '||exclammark||', 'the', 'one', 'he', 'thought', 'they', 'stole', 'at', 'the', "doctor's", 'office', 'that', 'time', '||period||', '||return||', '||return||', 'george:', 'shh', '||exclammark||', 'this', 'is', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'like', 'that', '||questionmark||', '||return||', '||return||', '||leftparen||', 'the', 'show', 'begins', '||period||', 'there', 'are', 'three', 'different', 'settings', 'while', 'the', 'show', 'is', 'on', 'tv', '||period||', 'each', 'line', 'or', 'description', 'will', 'be', 'preceded', 'by', 'the', 'right', 'setting:', 'nan', '||return||', '||return||', '||leftparen||', "jerry's", 'doing', 'his', 'stand', '||dash||', 'up', 'routine', 'at', 'a', 'comedy', 'club', '||period||', "there's", 'the', 'music', 'theme', 'and', 'we', "don't", 'hear', 'what', 'he', 'is', 'saying', '||comma||', 'but', 'the', 'closed', 'captions', 'put', 'that:', 'nan', '||return||', '||return||', 'we', 'see', 'the', 'title', "'jerry'", '||comma||', 'then', '||comma||', 'sitting', 'at', 'the', 'comedy', 'club', '||comma||', 'we', 'see:', 'nan', '||return||', '||return||', 'micheal', '||comma||', 'sandi', '||comma||', 'and', 'tom', '||comma||', 'and', 'finally', 'jerry', '||comma||', 'and', 'the', 'four', 'of', 'them', 'make', 'a', 'toast', 'while', "it's", 'written:', '||quotemark||', 'created', 'by', 'jerry', 'seinfeld', 'and', 'george', 'costanza', '||quotemark||', '||period||', '||return||', '||return||', 'elaine:', 'bravo', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'hurt', 'me', '||period||', '||return||', '||return||', 'michael:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'george', '||period||', '||return||', '||return||', 'michael:', 'new', 'sneakers', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'michael:', 'what', 'do', 'you', 'need', 'new', 'sneakers', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'like', 'sneakers', '||period||', '||return||', '||return||', 'michael:', 'how', 'do', 'you', 'make', 'a', 'decision', 'which', 'one', 'to', 'wear', '||questionmark||', "i'd", 'go', 'crazy', 'if', 'i', 'have', 'to', 'decide', 'which', 'sneakers', 'to', 'wear', 'every', 'day', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "you're", 'crazy', 'anyway', '||period||', '||return||', '||return||', 'susan', 'and', 'allsion:', '||leftparen||', 'to', 'each', 'other', 'while', 'they', 'recognize', 'one', 'of', "george's", 'behaviors', 'in', 'michael', '||rightparen||', 'george', '||exclammark||', '||return||', '||return||', 'sid:', 'what', 'kind', 'of', 'stupid', 'show', 'is', 'this', '||questionmark||', 'hey', '||exclammark||', "it's", 'that', 'idiot', 'that', 'took', 'all', 'my', 'records', '||exclammark||', '||leftparen||', 'the', 'houskeeper', 'starts', 'laughing', '||rightparen||', '||return||', '||return||', 'marla:', 'john', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'come', 'back', 'to', 'bed', '||period||', '||return||', '||return||', 'john:', '||leftparen||', 'with', 'a', 'boston', 'accent', '||rightparen||', 'this', 'show', 'looks', 'interesting', '||period||', "isn't", 'he', 'that', 'seinfeld', 'fellow', 'you', 'went', 'out', 'with', '||questionmark||', '||return||', '||return||', 'marla:', 'ooh', '||comma||', "he's", 'horrible', '||exclammark||', 'horrible', '||exclammark||', '||return||', '||return||', 'john:', 'nevertheless', '||period||', '||period||', '||period||', '||return||', '||return||', 'the', 'drake:', 'ah', '||comma||', 'that', "jerry's", 'a', 'funny', 'guy', '||period||', 'huh', '||questionmark||', 'got', 'to', 'love', 'the', 'sein', '||exclammark||', '||return||', '||return||', 'allsion:', 'hate', 'the', 'sein', '||exclammark||', '||leftparen||', 'while', 'she', 'adjusts', 'the', 'tiny', 'antenna', '||rightparen||', '||return||', '||return||', 'ping:', 'i', "can't", 'believe', 'you', 'liked', 'him', '||period||', '||return||', '||return||', 'cheryl:', 'i', 'thought', 'he', 'was', 'dark', 'and', 'disturbed', '||period||', '||return||', '||return||', 'ping:', 'real', 'perceptive', '||period||', '||return||', '||return||', 'donald:', 'this', 'is', 'a', 'piece', 'of', 'crap', '||exclammark||', '||return||', '||return||', 'mother:', 'donald', '||comma||', 'you', 'used', 'to', 'like', 'him', '||period||', '||return||', '||return||', 'donald:', 'what', 'a', 'sellout', '||exclammark||', 'give', 'me', 'that', 'remote', '||exclammark||', '||return||', '||return||', 'mel:', 'no', '||comma||', 'donald', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'jerry', '||comma||', 'the', 'commercials', 'almost', 'over', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'jerry', 'i', 'really', 'like', 'this', 'guy', "who's", 'playing', 'the', 'butler', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', "he's", 'good', '||period||', 'you', 'know', "he's", 'john', "ritter's", 'cousin', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'charles', '||period||', '||return||', '||return||', 'charles:', 'hello', '||period||', 'so', '||comma||', 'where', 'do', 'you', 'want', 'me', 'to', 'start', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'start', 'in', 'the', 'bedroom', '||questionmark||', '||return||', '||return||', 'charles:', '||leftparen||', 'to', 'himself', '||comma||', 'upset', '||rightparen||', 'start', 'in', 'the', 'bedroom', '||period||', '||period||', '||period||', '||return||', '||return||', 'tom:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'the', "butler's", 'here', '||period||', '||return||', '||return||', 'tom:', 'he', 'is', '||questionmark||', 'listen', '||period||', 'when', "he's", 'finished', '||comma||', 'send', 'him', 'over', 'to', 'my', 'house', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'sending', 'him', 'to', 'your', 'house', '||period||', '||return||', '||return||', 'tom:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'the', 'judge', 'decreed', "he'd", 'become', 'my', 'butler', '||comma||', 'not', 'my', "friend's", 'butler', '||period||', '||return||', '||return||', 'tom:', 'jerry', '||comma||', 'he', 'is', 'your', 'butler', '||period||', 'you', 'can', 'give', 'him', 'any', 'order', 'you', 'want', '||period||', "that's", 'what', 'butlers', 'do', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'my', 'house', 'is', 'a', 'pigsty', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'sandi:', '||leftparen||', 'from', 'the', "buzzer's", 'speaker', '||rightparen||', "it's", 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'charles:', 'i', 'need', 'more', 'pledge', '||period||', '||return||', '||return||', 'jerry:', 'more', 'pledge', '||exclammark||', 'i', 'just', 'bought', 'two', 'cans', 'last', 'week', 'and', 'i', "don't", 'even', 'have', 'any', 'wood', 'in', 'the', 'house', '||exclammark||', '||return||', '||return||', 'charles:', 'well', '||comma||', 'it', 'goes', 'fast', '||period||', '||return||', '||return||', 'sandi:', '||leftparen||', 'to', 'charles', '||comma||', 'very', 'friendly', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'charles:', 'hello', '||period||', '||leftparen||', 'he', 'goes', 'back', 'in', 'the', 'bedroom', '||rightparen||', '||return||', '||return||', 'jerry:', "what's", 'all', 'this', 'about', '||questionmark||', '||return||', '||return||', 'sandi:', 'we', 'had', 'a', 'date', '||period||', '||return||', '||return||', 'jerry:', 'you', 'had', 'a', 'date', '||questionmark||', 'you', 'went', 'out', 'with', 'my', 'butler', '||questionmark||', 'who', 'said', 'you', 'could', 'go', 'out', 'with', 'my', 'butler', '||questionmark||', '||return||', '||return||', 'sandi:', 'why', 'do', 'i', 'need', 'your', 'permission', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "he's", 'my', 'butler', '||exclammark||', '||return||', '||return||', 'morty:', "that's", 'terrific', '||exclammark||', '||return||', '||return||', 'helen:', 'how', 'could', 'anyone', 'not', 'like', 'him', '||questionmark||', '||return||', '||return||', 'c', '||period||', 'k', '||period||', ':', 'i', 'like', 'his', 'style', '||period||', 'he', 'has', 'a', 'sort', 'of', 'casual', 'elegance', '||period||', '||return||', '||return||', 'tia:', 'but', 'he', 'picks', 'his', 'nose', '||period||', '||return||', '||return||', 'c', '||period||', 'k', '||period||', ':', 'nevertheless', '||period||', '||period||', '||period||', '||return||', '||return||', 'sal', 'bass:', "he's", 'a', 'member', 'of', 'our', 'health', 'club', '||period||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'sidra:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'sal', 'bass:', 'you', 'know', 'that', 'kim', 'novak', 'has', 'some', 'big', 'breasts', '||questionmark||', '||return||', '||return||', 'jerry:', 'ever', 'notice', 'a', 'lot', 'of', 'butlers', 'are', 'named', 'jeeves', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'think', 'when', 'you', 'name', 'a', 'baby', 'jeeves', '||comma||', "you've", 'pretty', 'much', 'mapped', 'out', 'his', 'future', '||comma||', "wouldn't", 'you', 'say', '||questionmark||', 'not', 'much', 'chance', 'is', 'gonna', 'be', 'a', 'hitman', 'i', 'think', 'after', 'that', '||period||', '||leftparen||', 'with', 'a', 'british', 'accent', '||rightparen||', '||quotemark||', 'terribly', 'sorry', 'sir', '||comma||', 'but', "i'm", 'going', 'to', 'have', 'to', 'whack', 'you', '||quotemark||', '||period||', '||return||', '||return||', '[setting:', 'back', 'to', "jerry's]", '||return||', '||return||', 'all:', '||leftparen||', 'applauding', 'and', 'shaking', 'hands', '||rightparen||', 'wooh', '||exclammark||', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', 'that', 'was', 'great', '||exclammark||', 'that', 'show', 'was', 'so', 'funny', '||period||', 'it', 'was', 'really', 'funny', '||period||', "i'm", 'not', 'just', 'saying', 'that', 'cause', 'i', 'know', 'you', '||period||', 'honestly', '||period||', '||return||', '||return||', 'jerry:', "let's", 'go', 'out', 'and', 'celebrate', '||exclammark||', '||leftparen||', 'they', 'all', 'get', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', 'that', 'was', 'so', 'good', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', "let's", 'eat', 'something', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', 'i', 'think', 'this', 'thing', 'is', 'gonna', 'get', 'picked', 'up', 'george', '||period||', 'you', 'guys', 'are', 'gonna', 'be', 'rich', '||exclammark||', '||return||', '||return||', 'george:', 'do', 'you', 'really', 'think', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'george:', 'and', 'god', "didn't", 'kill', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'rita:', 'hi', 'jerry', '||comma||', 'this', 'is', 'rita', 'kierson', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'rita', '||period||', '||return||', '||return||', 'rita:', "i'm", 'calling', 'to', 'let', 'you', 'know', 'that', 'russell', 'dalrimple', 'is', 'no', 'longer', 'with', 'this', 'network', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'my', 'god', '||period||', 'did', 'he', 'get', 'fired', '||questionmark||', '||return||', '||return||', 'rita:', 'to', 'be', 'honest', 'with', 'you', '||period||', 'nobody', 'really', 'knows', '||period||', 'he', 'seems', 'to', 'have', 'disappeared', '||period||', '||return||', '||return||', 'jerry:', "russell's", 'disappeared', '||questionmark||', '||return||', '||return||', 'rita:', 'in', 'any', 'event', '||comma||', "i've", 'been', 'made', 'the', 'new', 'president', 'of', 'nbc', '||period||', 'as', 'you', 'may', 'or', 'may', 'not', 'know', '||comma||', 'russell', 'and', 'i', 'did', 'not', 'see', 'eye', 'to', 'eye', 'on', 'many', '||comma||', 'many', 'projects', '||period||', 'and', 'as', 'my', 'first', 'order', 'of', 'business', '||comma||', "i'm", '||comma||', 'uh', '||comma||', 'passing', 'on', 'your', 'show', '||period||', '||return||', '||return||', 'jerry:', "you're", 'passing', 'already', '||questionmark||', 'but', 'the', 'show', 'just', 'ended', 'two', 'minutes', 'ago', '||exclammark||', '||return||', '||return||', 'rita:', 'well', '||comma||', 'i', 'just', 'got', 'the', 'job', '||period||', 'goodbye', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'see', 'ya', '||period||', '||leftparen||', 'he', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||dash||', '||dash||', 'what', 'are', 'you', 'looking', 'at', 'me', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'was', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'realize', 'his', 'obsession', 'with', 'you', 'cost', 'us', 'a', 'tv', 'series', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'know', 'that', "he'd", 'fall', 'for', 'me', 'and', "i'd", 'drive', 'him', 'insane', '||period||', 'i', 'mean', '||comma||', 'you', 'know', '||comma||', "that's", 'not', 'my', 'fault', '||period||', '||return||', '||return||', 'george:', 'yes', 'it', 'is', '||exclammark||', "you're", 'very', 'charming', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'this', '||questionmark||', 'what', 'happened', 'to', 'him', '||questionmark||', 'where', 'the', 'hell', 'is', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'one', 'knows', '||period||', '||return||', '||return||', '[setting:', 'greenpeace', 'raft', 'on', 'the', 'ocean', '||comma||', 'following', 'a', 'whaler]', '||return||', '||return||', 'russell:', 'she', 'works', 'for', 'pendant', 'publishing', '||period||', "she's", 'the', 'most', 'beautiful', 'woman', "i've", 'ever', 'seen', '||period||', 'you', 'know', '||comma||', 'i', 'used', 'to', 'work', 'for', 'nbc', '||comma||', 'but', 'when', 'i', 'go', 'back', 'to', 'her', 'this', 'time', '||comma||', "she'll", 'respect', 'me', '||period||', '||return||', '||return||', 'man', 'on', 'raft:', "you'd", 'better', 'get', 'down', '||period||', 'they', 'might', 'start', 'firing', 'soon', '||period||', '||leftparen||', 'harpoon', 'fires', '||rightparen||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'jerry:', 'hey', 'look', 'at', 'this', '||period||', 'what', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'well', '||comma||', 'well', '||period||', '||return||', '||return||', 'elaine:', 'nothing', 'has', 'changed', '||period||', 'how', 'did', 'this', 'happen', '||questionmark||', '||leftparen||', 'she', 'sees', 'the', 'two', 'guys', 'of', 'the', 'equal', 'employment', 'opportunity', 'commission', 'at', 'a', 'table', '||rightparen||', 'ah', '||comma||', 'these', 'are', 'the', 'two', 'guys', 'i', 'talked', 'to', 'at', 'the', 'equal', 'employment', 'opportunity', 'commission', '||period||', 'hey', '||exclammark||', 'what', 'are', 'you', 'two', 'guys', 'doing', 'here', '||questionmark||', 'i', 'thought', 'you', 'were', 'gonna', 'do', 'something', 'about', 'this', '||period||', 'now', "you're", 'eating', 'here', '||questionmark||', '||return||', '||return||', 'fred:', 'oh', 'no', '||period||', "that's", 'why', "we're", 'here', '||period||', "we're", 'checking', 'things', 'out', '||period||', '||return||', '||return||', 'paul:', 'yeah', '||comma||', "we're", 'checking', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'paul', '||rightparen||', "you're", 'checking', 'it', 'out', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'to', 'fred', 'and', 'paul', '||rightparen||', 'see', 'you', 'back', 'at', 'the', 'office', '||comma||', 'guys', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'fred', '||comma||', 'paul', '||comma||', 'lunch', 'and', 'dinner', '||questionmark||', 'boy', '||comma||', 'you', 'guys', 'ought', 'to', 'move', 'in', '||period||', 'how', 'about', 'a', 'piece', 'of', 'pie', 'on', 'me', '||questionmark||', 'sophia', '||exclammark||', 'take', 'care', 'of', 'these', 'fellows', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'manager', '||rightparen||', 'hey', '||exclammark||', 'come', 'here', 'a', 'second', '||period||', 'i', 'want', 'you', 'to', 'know', 'something', '||period||', 'you', 'are', 'not', 'gonna', 'get', 'away', 'with', 'this', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'get', 'away', 'with', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', '||quotemark||', 'with', 'what', '||questionmark||', '||quotemark||', 'you', 'know', 'what', '||period||', 'with', 'the', 'waitresses', '||period||', 'how', "they're", 'all', '||period||', '||period||', '||period||', 'alike', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'of', 'course', "they're", 'alike', '||period||', "they're", 'my', 'daughters', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'embarrassed', '||comma||', 'but', 'smiling', '||rightparen||', 'oh', '||comma||', 'your', 'daughters', '||period||', '||return||', '||return||', 'george:', 'you', 'must', 'be', 'very', 'proud', 'mr', '||period||', 'visaki', '||period||', '||leftparen||', 'shaking', 'his', 'hand', '||rightparen||', 'and', 'may', 'i', 'say', 'sir', "they're", 'lovely', 'girls', '||comma||', 'absolutely', 'lovely', 'girls', '||period||', "it's", 'nice', 'to', 'see', 'such', 'fine', 'upstanding', 'women', 'in', 'gainful', 'employment', '||comma||', 'mr', '||period||', 'visaki', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'oh', '||comma||', "here's", 'a', 'table', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'a', 'table', 'right', 'here', '||period||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'peggy', '||exclammark||', '||return||', '||return||', 'george:', 'peggy', '||exclammark||', '||leftparen||', 'they', 'all', 'sit', '||rightparen||', 'his', 'daughter', 'peggy', '||period||', "peggy's", 'coming', 'over', 'to', 'serve', '||period||', '||return||', '||return||', 'jerry:', 'what', 'a', 'family', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'visaki:', 'my', 'daughter', 'peggy', '||period||', '||return||', '||return||', 'george:', 'ah', '||exclammark||', 'peggy', '||period||', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'peggy', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'peggy', 'leaves', 'the', 'menus', 'and', 'walks', 'away', '||rightparen||', 'so', 'guess', 'what', 'i', 'got', 'do', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'start', 'looking', 'for', 'a', 'job', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'you', 'ought', 'to', 'do', 'george', '||questionmark||', 'you', 'should', 'work', 'for', 'greenpeace', '||period||', 'you', 'those', 'people', 'they', 'attack', 'the', 'whalers', 'out', 'on', 'the', 'open', 'sea', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'crazy', '||questionmark||', 'you', 'take', 'your', 'life', 'in', 'your', 'hands', 'with', 'those', 'nuts', '||period||', '||return||', '||return||', '[setting:', 'greenpeace', 'raft]', '||return||', '||return||', 'man:', 'keep', 'fighting', 'matey', '||exclammark||', 'get', 'your', 'head', 'above', 'the', 'water', '||exclammark||', "i've", 'got', 'you', 'matey', '||exclammark||', "i've", 'got', 'you', '||exclammark||', 'matey', '||exclammark||', '||leftparen||', 'he', 'loses', 'the', 'rope', '||rightparen||', "i'll", 'remember', 'her', 'name', '||exclammark||', 'elaine', 'benes', '||exclammark||', "i'll", 'write', 'to', 'her', '||period||', "i'll", 'tell', 'her', 'all', 'about', 'you', 'and', 'what', 'you', 'did', 'out', 'here', '||exclammark||', 'goodbye', '||comma||', 'matey', '||exclammark||', 'goddbye', '||exclammark||', '||return||', '||return||', '[location:', "monk's]", '||return||', '||return||', 'jerry:', 'so', '||comma||', "what's", 'her', 'name', '||questionmark||', '||return||', '||return||', 'george:', 'karen', '||period||', '||return||', '||return||', 'jerry:', 'is', 'she', 'nice', '||questionmark||', '||return||', '||return||', 'george:', 'great', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'like', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'tell', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'well', 'do', 'you', 'feel', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'feel', '||questionmark||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'let', 'me', 'ask', 'you', 'this', 'when', 'she', 'comes', 'over', '||comma||', "you're", 'cleaning', 'up', 'a', 'lot', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "you're", 'just', 'straightening', 'up', 'or', "you're", 'cleaning', '||questionmark||', '||return||', '||return||', 'george:', 'cleaning', '||return||', '||return||', 'jerry:', 'you', 'do', 'the', 'tub', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'on', 'your', 'knees', '||comma||', 'ajax', '||comma||', 'hands', "scrubbin'", '||comma||', 'the', 'whole', 'deal', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'i', 'think', "you're", 'in', 'love', '||exclammark||', '||return||', '||return||', 'george:', 'tub', 'is', 'love', '||questionmark||', '||return||', '||return||', 'jerry:', 'tub', 'is', 'love', '||period||', '||return||', '||return||', 'george:', 'hah', '||period||', '||return||', '||return||', 'jerry:', 'so', 'there', 'you', 'are', '||period||', "you've", 'got', 'a', 'nice', 'girl', 'and', 'a', 'clean', 'apartment', '||period||', '||return||', '||return||', 'george:', 'yep', '||period||', "there's", 'one', 'liiiittle', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'sexual', '||questionmark||', '||return||', '||return||', 'george:', 'yeeeaaah', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'lean', 'in', 'to', 'make', 'their', 'conversation', 'a', 'little', 'more', 'private', '||rightparen||', 'well', '||period||', '||period||', '||period||', '||period||', '||period||', "i've", 'never', 'really', 'felt', 'confident', 'in', 'uh', '||period||', '||period||', '||period||', '||period||', '||period||', 'one', 'particular', 'aspect', '||period||', '||return||', '||return||', 'jerry:', 'below', 'the', 'equator', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'nobody', 'does', '||period||', 'you', 'know', '||comma||', 'nobody', 'knows', 'what', 'to', 'do', '||period||', 'you', 'just', 'close', 'your', 'eyes', 'and', 'you', 'hope', 'for', 'the', 'best', '||period||', 'i', 'really', 'think', "they're", 'happy', 'if', 'you', 'just', 'make', 'an', 'effort', '||period||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', "don't", 'know', '||period||', 'last', 'time', 'i', 'got', 'the', 'tap', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'the', 'tap', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "you're", 'going', 'along', '||comma||', 'you', 'think', "everything's", 'all', 'right', 'and', 'all', 'of', 'a', 'sudden', 'you', 'get', 'that', 'tap', '||period||', '||leftparen||', 'george', 'taps', 'his', 'own', 'shoulder', '||rightparen||', '||period||', 'you', 'know', "it's", 'like', 'pfffff', '||leftparen||', 'whistling', 'sound', '||rightparen||', '||comma||', 'all', 'right', "that's", 'enough', '||comma||', "you're", 'through', '||period||', '||return||', '||return||', 'jerry:', 'the', 'tap', 'is', 'tough', '||period||', '||return||', '||return||', 'george:', "it's", 'like', 'the', 'manager', 'coming', 'out', 'and', 'asking', 'you', 'for', 'the', 'ball', '||period||', '||return||', '||return||', 'jerry:', 'well', 'maybe', 'she', 'just', 'wanted', 'to', 'move', 'on', 'to', 'other', 'business', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'this', "wasn't", 'moving', 'on', '||period||', 'i', 'got', 'the', 'hook', '||period||', 'i', 'wish', 'i', 'could', 'get', 'a', 'lesson', 'in', 'that', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'very', 'complicated', 'area', '||period||', '||return||', '||return||', 'george:', 'you', 'can', 'go', 'crazy', 'trying', 'to', 'figure', 'that', 'place', 'out', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'haaazy', 'mystery', '||period||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'i', 'think', 'everything', 'else', 'is', 'okay', '||period||', 'unless', 'of', 'course', "she's", 'faking', '||period||', '||return||', '||return||', 'elaine:', "who's", 'faking', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'faking', 'what', '||questionmark||', '||return||', '||return||', 'george:', "nobody's", 'faking', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', 'orgasm', '||questionmark||', '||return||', '||return||', 'george:', "she's", 'not', 'faking', '||exclammark||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'i', 'can', 'tell', '||period||', "it's", 'one', 'of', 'my', 'powers', '||period||', 'why', '||comma||', 'did', 'you', 'ever', 'fake', '||questionmark||', '||return||', '||return||', 'elaine:', 'of', 'course', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'faked', '||questionmark||', '||return||', '||return||', 'elaine:', 'on', 'occasion', '||period||', '||return||', '||return||', 'jerry:', 'and', 'the', 'guy', 'never', 'knows', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'how', 'can', 'he', 'not', 'know', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'i', 'was', 'gooood', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'after', 'that', 'many', 'beers', "he's", 'probably', 'a', 'little', 'groggy', 'anyway', '||period||', '||return||', '||return||', 'elaine:', 'you', "didn't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "didn't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'saying', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "i'll", 'have', 'a', 'piece', 'of', 'cake', '||period||', '||return||', '||return||', 'jerry:', 'with', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'faked', 'with', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'ye', '||period||', '||return||', '||return||', 'jerry:', 'you', 'faked', 'with', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeass', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'yeass', '||period||', '||return||', '||return||', 'jerry:', 'you', 'faked', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'faked', 'it', '||period||', '||return||', '||return||', 'jerry:', 'that', 'whole', 'thing', '||comma||', 'the', 'whole', 'production', '||comma||', 'it', 'was', 'all', 'an', 'act', '||questionmark||', '||return||', '||return||', 'elaine:', 'not', 'bad', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'the', 'breathing', '||comma||', 'the', 'panting', '||comma||', 'the', 'moaning', '||comma||', 'the', 'screaming', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'points', 'in', 'the', 'air', 'as', 'is', 'to', 'point', 'out', 'each', 'things', 'jerry', 'asked', '||rightparen||', 'fake', '||comma||', 'fake', '||comma||', 'fake', '||comma||', 'fake', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'stunned', '||comma||', "i'm", 'shocked', '||exclammark||', 'how', 'many', 'times', 'did', 'you', 'do', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'uuuhm', '||comma||', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'all', 'the', 'time', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'we', 'got', 'a', 'chocolate', 'malt', 'in', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', "i'm", 'so', 'good', '||period||', '||return||', '||return||', 'george:', "i'm", 'sure', 'you', 'are', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'listen', '||comma||', 'it', "wasn't", 'you', '||period||', 'i', 'just', "didn't", 'have', "'em", 'back', 'then', '||period||', '||return||', '||return||', 'jerry:', 'she', 'faked', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "they've", 'all', 'been', 'faking', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sure', "they're", 'not', '||period||', '||return||', '||return||', 'george:', 'maybe', 'karen', 'is', 'faking', '||period||', '||return||', '||return||', '[location:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', 'she', 'was', 'probably', 'joking', '||period||', '||return||', '||return||', 'jerry:', 'no', 'no', '||comma||', 'it', 'was', 'no', 'joke', '||period||', '||return||', '||return||', 'kramer:', 'she', "didn't", 'have', 'any', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'none', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'raising', 'hand', '||rightparen||', 'she', 'faked', "'em", 'all', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'raising', 'hand', '||rightparen||', 'faked', "'em", 'all', '||period||', '||return||', '||return||', 'kramer:', 'well', 'so', 'she', 'faked', "'em", '||comma||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'woman', 'had', 'an', 'orgasm', 'under', 'false', 'pretences', '||period||', "that's", 'sexual', 'perjury', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', 'heard', 'her', 'screaming', 'from', 'my', 'apartment', '||questionmark||', 'she', 'woke', 'me', 'up', 'a', 'few', 'times', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'she', 'do', 'it', '||questionmark||', "she's", 'like', 'meryl', 'streep', 'this', 'woman', '||period||', 'and', 'i', 'had', 'to', 'work', 'the', 'equipment', '||period||', "i'm", 'not', 'unskilled', '||comma||', "i'm", 'in', 'the', 'union', '||period||', 'if', "she'd", 'at', 'least', 'told', 'me', '||comma||', 'maybe', 'i', 'could', 'have', 'done', 'something', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'i', 'could', 'have', 'helped', 'you', 'out', '||period||', '||return||', '||return||', 'jerry:', 'what', 'could', 'you', 'have', 'done', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'could', 'have', 'given', 'you', 'some', 'pointers', '||period||', 'i', 'know', 'how', 'to', 'press', 'those', 'buttons', 'buddy', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'feeling', 'very', 'inadequate', 'about', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'aaaaah', '||period||', '||return||', '||return||', 'jerry:', "don't", 'aaaaah', '||exclammark||', "i'm", 'supposed', 'to', 'do', 'something', 'with', 'her', 'later', '||questionmark||', 'i', "don't", 'even', 'think', 'i', 'wanna', 'see', 'her', '||period||', '||return||', '||return||', 'kramer:', 'giddy', '||dash||', 'up', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', '||period||', 'oh', 'hello', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'so', "we're", 'having', 'dinner', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', "i'm", 'not', 'really', 'in', 'the', 'mood', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', "what's", 'wrong', '||questionmark||', "you're", 'not', 'still', 'thinking', 'about', 'this', 'afternoon', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'the', 'grilled', 'cheese', '||questionmark||', 'naaah', '||comma||', 'they', 'always', 'burn', 'the', 'toast', '||period||', '||return||', '||return||', 'elaine:', 'nooo', '||comma||', 'the', 'other', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'oooh', 'that', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'come', 'on', '||comma||', 'jerry', '||period||', 'making', 'to', 'much', 'of', 'a', 'big', 'deal', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'i', 'guess', '||period||', 'so', 'you', 'wanna', 'meet', 'at', 'that', 'place', 'at', 'seven', 'thirty', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', '[location:', "elaine's", 'office]', '||return||', '||return||', 'elaine:', 'rene', '||comma||', 'can', 'you', 'come', 'here', 'a', 'second', '||questionmark||', 'let', 'me', 'ask', 'you', 'something', 'ummm', '||comma||', 'have', 'you', 'ever', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', 'faked', 'it', '||questionmark||', '||return||', '||return||', 'rene:', 'yeah', '||comma||', 'sometimes', '||period||', '||return||', '||return||', 'elaine:', 'really', '||comma||', 'like', 'when', '||questionmark||', '||return||', '||return||', 'rene:', 'like', 'if', 'we', 'went', 'to', 'a', 'broadway', 'show', '||comma||', 'if', 'we', 'had', 'really', 'good', 'seats', '||period||', '||leftparen||', 'elaine', 'is', 'sitting', 'there', '||comma||', 'jaw', 'opened', 'shaking', 'her', 'head', 'yes', '||rightparen||', 'well', 'you', 'know', '||comma||', 'if', "it's", 'enough', 'all', 'ready', 'and', 'i', 'just', 'wanna', 'get', 'some', 'sleep', '||period||', '||return||', '||return||', '[location:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'i', 'really', "don't", 'feel', 'like', 'seeing', 'her', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'faked', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'faked', 'it', '||questionmark||', 'why', 'would', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'know', '||comma||', 'if', "it's", 'enough', 'already', 'and', 'i', 'just', 'wanna', 'get', 'some', 'sleep', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'why', 'would', 'you', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'is', 'eating', 'a', 'peach', 'then', 'disgusted', 'he', 'spits', 'it', 'out', '||rightparen||', 'bad', 'peach', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'terrible', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'get', 'that', 'at', "joe's", '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'of', 'course', 'i', 'got', 'it', 'at', "joe's", '||period||', '||return||', '||return||', 'jerry:', "that's", 'surprising', '||comma||', 'his', 'fruit', 'is', 'usually', 'the', 'best', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', "i'm", 'gonna', 'do', '||questionmark||', '||leftparen||', 'heading', 'for', 'the', 'door', '||rightparen||', "i'm", 'gonna', 'return', 'this', '||period||', '||return||', '||return||', 'jerry:', "you're", 'returning', 'used', 'fruit', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', 'this', 'peach', 'is', 'sub', 'par', '||period||', '||return||', '||return||', '[location:', "joe's]", '||return||', '||return||', 'joe:', 'so', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'want', 'restitution', '||period||', '||return||', '||return||', 'joe:', 'restitution', '||questionmark||', 'you', 'want', 'restitution', '||questionmark||', 'why', 'should', 'i', 'give', 'you', 'restitution', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "it's", 'no', 'good', '||period||', '||return||', '||return||', 'joe:', 'when', 'you', 'put', 'that', 'fruit', 'out', '||comma||', "that's", 'where', 'it', 'ends', 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', "it's", 'still', 'your', 'fruit', '||comma||', 'you', 'gotta', 'stand', 'behind', 'your', 'fruit', '||period||', '||return||', '||return||', 'joe:', 'i', 'stand', 'behind', 'my', 'fruit', '||period||', '||return||', '||return||', 'kramer:', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'joe:', 'hey', '||comma||', 'you', 'got', 'a', 'bad', 'peach', '||questionmark||', "that's", 'an', 'act', 'of', 'god', '||period||', 'he', 'makes', 'the', 'peaches', '||period||', 'i', "don't", 'make', 'the', 'peaches', '||comma||', 'i', 'sell', 'the', 'peaches', '||period||', 'you', 'have', 'a', 'problem', '||questionmark||', 'you', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'this', 'whole', 'place', 'is', 'going', 'vrrrrrrrrrrrrt', '||comma||', 'downhill', '||period||', 'i', 'could', 'have', 'come', 'in', 'here', 'last', 'week', 'with', 'a', 'bad', 'plum', 'but', 'i', 'let', 'it', 'go', '||period||', '||return||', '||return||', 'joe:', 'well', 'let', 'me', 'put', 'a', 'solution', 'for', 'ya', 'do', 'your', 'business', 'elsewhere', '||comma||', 'i', "don't", 'want', 'your', 'business', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'now', 'you', "don't", 'want', 'my', 'business', '||period||', '||return||', '||return||', 'joe:', 'no', '||comma||', 'i', "don't", 'want', 'your', 'business', 'and', 'from', 'this', 'moment', "you're", 'banned', 'from', 'the', 'store', '||comma||', "you're", 'banned', '||exclammark||', '||return||', '||return||', 'kramer:', 'but', 'what', 'am', 'i', 'gonna', 'do', 'for', 'fruit', '||questionmark||', '||return||', '||return||', '[location:', 'restaurant]', '||return||', '||return||', 'karen:', '||leftparen||', 'moaning', '||rightparen||', 'mmmmm', '||comma||', 'mmmm', '||comma||', 'hmmhmmhmmm', '||leftparen||', 'lights', 'a', 'cigarette', '||rightparen||', 'mmmm', '||leftparen||', 'takes', 'a', 'puff', '||rightparen||', 'woo', '||return||', '||return||', 'george:', '||leftparen||', 'thinking', 'of', 'the', 'moans', '||rightparen||', 'heh', '||period||', '||leftparen||', 'karen', 'takes', 'another', 'puff', 'of', 'her', 'cigarette', '||rightparen||', 'you', 'seem', 'like', 'you', 'really', 'enjoyed', 'your', 'risotto', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'you', 'have', 'a', 'very', 'contented', 'air', 'over', 'there', '||period||', '||leftparen||', 'chuckles', 'again', '||rightparen||', 'you', 'look', 'very', 'contented', '||comma||', 'very', 'satisfied', '||period||', '||leftparen||', 'pauses', '||rightparen||', 'are', 'you', 'satisfied', '||questionmark||', '||return||', '||return||', 'karen:', "i'm", 'very', 'satisfied', '||period||', '||return||', '||return||', 'george:', 'i', '||dash||', "i'm", 'sure', 'if', 'you', "weren't", 'satisfied', 'you', 'would', 'probably', 'say', 'something', "wouldn't", 'you', '||questionmark||', '||return||', '||return||', 'karen:', 'i', 'probably', 'would', '||period||', 'but', 'then', 'again', "i'm", 'an', 'enigma', '||period||', '||return||', '||return||', 'george:', 'hey', 'listen', '||period||', '||period||', '||period||', 'umm', '||comma||', 'instead', 'of', 'the', 'movie', '||period||', '||period||', '||period||', 'uh', '||comma||', 'maybe', "we'll", 'go', 'back', 'and', 'uh', 'you', 'know', '||period||', '||period||', '||period||', '||leftparen||', 'nudges', 'her', 'head', 'with', 'his', 'head', '||rightparen||', '||return||', '||return||', 'karen:', 'maybe', '||period||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', 'uh', 'you', 'feel', 'okay', 'about', 'that', 'whole', 'thing', '||period||', '||period||', '||period||', 'what', 'we', 'do', 'in', 'there', '||period||', '||period||', '||period||', "you're", 'generally', 'okay', 'with', 'everything', 'in', 'there', '||questionmark||', '||return||', '||return||', 'karen:', 'generally', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'uh', 'feel', 'the', 'way', 'you', 'feel', 'after', 'the', 'risotto', '||questionmark||', '||return||', '||return||', 'karen:', 'well', 'no', '||comma||', 'i', 'feel', 'full', 'after', 'the', 'risotto', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', '||period||', '||leftparen||', 'scratching', 'his', 'head', '||rightparen||', 'full', '||period||', '||return||', '||return||', '[location:', '||leftparen||', 'another', '||rightparen||', 'restaurant]', '||return||', '||return||', 'elaine:', 'oh', 'god', '||comma||', 'mmmm', '||comma||', 'mmm', '||comma||', 'mmm', '||comma||', 'mmmmm', '||comma||', 'mmm', '||comma||', 'ah', '||comma||', 'woo', '||return||', '||return||', 'jerry:', 'satisfied', '||questionmark||', '||return||', '||return||', 'elaine:', 'mmm', '||comma||', 'hey', '||comma||', 'you', 'know', 'what', '||questionmark||', 'you', 'wanna', 'go', 'see', 'that', 'new', 'meryl', 'streep', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'meryl', 'streep', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "don't", 'like', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "she's", 'okay', '||period||', '||return||', '||return||', 'elaine:', 'i', 'love', 'her', 'jerry', '||comma||', "she's", 'so', 'authentic', '||period||', 'i', 'really', 'believe', 'everything', 'is', 'actually', 'happening', 'to', 'her', '||period||', "there's", 'no', 'acting', 'there', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'you', "don't", 'want', 'coffee', 'or', 'anything', 'do', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'really', 'admire', 'actors', '||comma||', 'you', 'know', '||period||', "it's", 'just', 'such', 'an', 'incredible', 'skill', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'can', 'we', 'get', 'off', 'of', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'elaine:', "you're", 'not', 'still', 'thinking', 'about', 'that', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'nooo', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'good', '||period||', '||return||', '||return||', 'jerry:', 'give', 'me', 'another', 'shot', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shocked', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'another', 'shot', '||comma||', 'i', 'want', 'another', 'shot', '||period||', '||return||', '||return||', 'elaine:', 'you', 'mean', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', '||return||', '||return||', 'elaine:', 'oooh', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||exclammark||', 'one', 'shot', '||comma||', 'i', 'can', 'do', 'it', '||comma||', 'i', 'know', 'i', 'can', 'do', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "we're", 'friends', '||exclammark||', 'we', "can't", 'do', 'that', '||comma||', 'it', 'would', 'ruin', 'our', 'friendship', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'friendship', '||period||', '||period||', '||period||', 'friendship', '||comma||', 'shmanship', '||period||', '||return||', '||return||', 'elaine:', 'jerry', 'no', '||comma||', "that's", 'important', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'we', "won't", 'ruin', 'the', 'friendship', '||period||', '||return||', '||return||', 'elaine:', 'ya', '||comma||', 'yes', 'we', 'will', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', 'jerry', '||comma||', 'it', 'is', 'out', 'of', 'the', 'question', '||period||', 'you', 'know', 'what', 'sex', 'does', 'to', 'a', 'friendship', '||comma||', 'it', 'kills', 'it', '||period||', '||return||', '||return||', 'jerry:', 'a', 'half', 'hour', '||comma||', 'give', 'me', 'a', 'half', 'our', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'fifteen', 'minutes', '||period||', 'i', 'guarantee', 'you', 'fifteen', 'minutes', '||comma||', 'i', 'can', 'make', 'it', 'happen', '||exclammark||', '||return||', '||return||', 'elaine:', 'noo', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'worried', "i'll", 'be', 'able', 'to', 'do', 'it', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'no', '||comma||', 'it', "doesn't", 'matter', '||period||', 'jerry', '||comma||', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||comma||', "that's", 'it', '||period||', 'you', 'like', 'having', 'this', 'over', 'me', '||comma||', 'you', "don't", 'want', 'me', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'that', 'is', 'so', 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', '||return||', '||return||', '[location:', "karen's", 'bedroom]', '||return||', '||return||', 'george:', "it's", "jerry's", 'fault', '||period||', '||return||', '||return||', 'karen:', 'jerry', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', 'and', 'elaine', '||period||', 'they', 'made', 'me', 'nuts', '||period||', '||return||', '||return||', 'karen:', 'oh', 'i', "don't", 'care', '||comma||', 'george', '||comma||', 'really', "it's", 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'so', 'you', 'feel', 'okay', '||questionmark||', '||return||', '||return||', 'karen:', 'well', '||comma||', "it's", 'not', 'like', 'after', 'the', 'risotto', '||period||', '||return||', '||return||', '[location:', "jerry's", 'car]', '||return||', '||return||', 'jerry:', 'well', 'good', 'night', '||period||', '||return||', '||return||', 'elaine:', 'i', 'still', "don't", 'understand', 'why', 'we', 'had', 'to', 'walk', 'out', 'on', 'that', 'movie', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'that', 'meryl', 'streep', '||comma||', "she's", 'such', 'a', 'phony', 'baloney', '||period||', '||return||', '||return||', 'elaine:', 'goodnight', '||period||', 'thanks', 'for', 'a', 'really', 'fabulous', 'evening', '||leftparen||', 'sarcastic', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'what', '||comma||', "you're", 'upset', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', "i'm", 'upset', '||comma||', "can't", 'you', 'tell', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "can't", '||comma||', 'maybe', "you're", 'faking', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'really', '||comma||', 'really', 'sorry', 'i', 'told', 'you', 'that', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', 'too', '||period||', '||return||', '||return||', 'elaine:', 'well', 'stop', 'being', 'such', 'a', 'baby', '||period||', '||return||', '||return||', 'jerry:', "you're", 'a', 'baby', '||exclammark||', '||return||', '||return||', 'elaine:', "you're", 'a', 'baby', '||exclammark||', '||return||', '||return||', '[location:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', "it's", 'all', 'your', 'fault', '||exclammark||', 'you', 'and', 'elaine', '||exclammark||', 'all', 'that', 'orgasm', 'talk', '||period||', 'she', 'did', 'have', 'an', 'orgasm', '||comma||', 'she', "didn't", 'have', 'an', 'orgasm', '||period||', 'orgasm', 'this', '||comma||', 'orgasm', 'that', '||period||', 'i', 'got', 'so', 'focused', 'on', 'it', '||period||', 'i', 'started', 'to', 'panic', 'and', 'boom', '||comma||', 'i', 'lost', 'it', '||period||', 'i', 'tried', 'everything', '||comma||', 'i', 'was', 'talking', 'to', 'him', "'please", 'wake', 'up', '||comma||', 'do', 'something', '||period||', "'", '||return||', '||return||', 'jerry:', "they're", 'mysterious', 'little', 'fellows', "aren't", 'they', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'hate', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'it', 'happens', 'to', 'everybody', '||period||', 'it', 'happened', 'to', 'houdini', '||period||', 'and', 'he', 'could', 'get', 'out', 'of', 'a', 'trunk', 'under', 'water', 'with', 'his', 'hands', 'in', 'chains', '||exclammark||', 'but', 'he', 'had', 'a', 'problem', 'with', 'that', '||period||', 'the', 'miracle', 'is', 'that', 'it', 'ever', 'happens', '||period||', '||return||', '||return||', 'george:', "it's", 'like', 'a', 'magic', 'trick', '||period||', 'sometimes', 'i', 'think', 'it', 'would', 'be', 'easier', 'to', 'bend', 'a', 'spoon', 'mentally', 'than', 'to', 'make', 'that', 'transformation', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'listen', '||comma||', 'if', 'i', 'give', 'you', 'money', 'would', 'you', 'go', 'out', 'and', 'get', 'me', 'some', 'fruit', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "can't", 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'got', 'banned', 'from', 'the', 'store', 'i', "can't", 'go', 'back', 'in', 'there', 'now', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'know', '||comma||', 'we', 'had', 'a', 'fight', 'over', 'the', 'peach', 'and', 'uh', 'well', 'joe', "doesn't", 'want', 'my', 'business', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'was', 'that', 'a', 'joke', 'about', 'houdini', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'no', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'told', 'you', 'not', 'to', 'say', 'anything', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'what', 'am', 'i', 'gonna', 'do', 'for', 'fruit', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "you'll", 'have', 'to', 'go', 'to', 'the', 'supermarket', '||period||', '||return||', '||return||', 'kramer:', 'the', 'supermarket', '||questionmark||', "that's", 'impossible', '||exclammark||', 'they', "don't", 'have', 'a', 'decent', 'piece', 'of', 'fruit', 'at', 'the', 'supermarket', '||period||', 'the', 'apples', 'are', 'mealy', '||comma||', 'the', 'oranges', 'are', 'dry', '||period||', 'i', "don't", 'know', "what's", 'going', 'on', 'with', 'the', 'papayas', '||exclammark||', 'jerry', 'you', 'gotta', 'go', 'to', "joe's", '||comma||', 'you', 'gotta', 'get', 'me', 'some', 'fruit', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'so', 'what', "i'm", 'going', 'to', 'buy', 'all', 'your', 'fruit', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'if', 'houdini', "couldn't", 'do', 'it', '||comma||', 'what', 'chance', 'do', 'i', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', '||period||', 'oh', 'hi', 'patty', '||comma||', 'thanks', 'for', 'calling', 'me', 'back', '||period||', 'i', '||dash||', 'i', 'just', 'wanted', 'to', 'ask', 'you', 'a', 'question', 'when', 'we', "we're", 'going', 'out', 'did', 'you', 'have', 'orgasms', '||questionmark||', '||period||', '||period||', '||period||', 'okay', '||comma||', 'thanks', '||period||', '||period||', '||period||', 'no', "that's", 'it', '||period||', '||period||', '||period||', 'ya', '||comma||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'patty', 'lawrence', 'had', "'em", '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', 'look', "i'm", 'gonna', 'make', 'you', 'a', 'fruit', 'list', '||comma||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'elaine', '||questionmark||', 'patty', 'lawrence', 'had', 'orgasms', 'what', 'do', 'you', 'think', 'about', 'that', '||questionmark||', 'and', 'i', 'got', 'calls', 'in', 'to', 'six', 'other', 'women', 'and', 'i', 'bet', 'you', 'they', 'confirm', 'an', 'orgasm', 'too', '||period||', 'so', 'what', 'do', 'you', 'have', 'to', 'say', 'now', 'elaine', '||questionmark||', '||period||', '||period||', '||period||', 'hello', '||questionmark||', '||return||', '||return||', '[location:', 'outside', "joe's]", '||return||', '||return||', 'jerry:', 'why', 'do', 'i', 'feel', 'like', "i'm", 'doing', 'something', 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', 'now', "here's", 'the', 'list', '||period||', '||leftparen||', 'hands', 'jerry', 'the', 'list', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'this', '||questionmark||', "it's", 'too', 'much', '||period||', 'what', 'do', 'you', 'need', 'five', 'mangos', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'like', 'mangos', '||period||', '||return||', '||return||', 'jerry:', 'avocado', '||questionmark||', 'i', "don't", 'know', 'how', 'to', 'pick', 'out', 'an', 'avocado', '||period||', '||return||', '||return||', 'kramer:', 'well', 'they', 'gotta', 'be', 'soft', '||period||', '||return||', '||return||', 'jerry:', 'how', 'soft', '||questionmark||', '||return||', '||return||', 'kramer:', 'not', 'too', 'soft', '||period||', 'better', 'too', 'hard', 'than', 'too', 'soft', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'over', 'the', 'list', '||rightparen||', 'hmm', 'ah', '||period||', "i'm", 'not', 'going', 'through', 'this', 'every', 'week', '||comma||', 'i', 'tell', 'you', 'that', 'right', 'now', '||period||', 'and', 'what', 'are', 'these', '||questionmark||', 'plums', '||questionmark||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'now', 'get', 'the', 'ones', 'that', 'are', 'red', 'on', 'the', 'inside', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', 'well', 'how', 'do', 'i', 'know', 'what', 'they', 'look', 'like', 'on', 'the', 'inside', '||questionmark||', 'what', 'do', 'they', 'look', 'like', 'on', 'the', 'outside', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'and', 'get', 'some', 'plantains', '||period||', '||leftparen||', 'grabs', 'the', 'list', 'to', 'write', 'them', 'down', '||rightparen||', '||return||', '||return||', 'jerry:', 'plantains', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'a', 'plantain', '||period||', '||return||', '||return||', 'kramer:', "it's", 'part', 'of', 'the', 'banana', 'family', '||period||', "it's", 'a', 'delicacy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grabbing', 'the', 'list', 'from', 'kramer', '||rightparen||', "you're", 'not', 'getting', 'any', 'plantains', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'joe', '||period||', '||return||', '||return||', 'joe:', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'just', 'getting', 'some', 'fruit', 'for', 'myself', '||period||', 'uh', '||comma||', 'gotta', 'have', 'fruit', 'in', 'the', 'house', '||period||', 'i', 'like', 'it', 'as', 'a', 'snack', '||period||', 'wholesome', '||comma||', 'natural', '||comma||', 'chock', '||dash||', 'full', 'of', 'vitamins', '||period||', 'alright', "let's", 'see', '||period||', '||period||', '||period||', 'mangos', '||period||', '||period||', '||period||', 'four', 'plums', 'with', 'red', 'on', 'the', 'inside', '||period||', '||period||', '||period||', 'avocado', '||period||', '||period||', '||period||', '||leftparen||', 'looks', 'at', 'joe', '||semicolon||', 'joe', 'gives', 'him', 'a', 'weird', 'look', '||rightparen||', 'ooo', '||comma||', 'just', 'right', '||period||', '||period||', '||period||', 'and', 'three', 'plantains', 'uh', 'ought', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'joe:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'just', 'hold', 'it', 'right', 'there', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'joe:', 'this', 'fruit', "isn't", 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', '||rightparen||', 'wha', '||comma||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'joe:', 'you', 'think', 'i', "don't", 'know', 'huh', '||questionmark||', 'mangos', '||comma||', 'plantains', '||comma||', 'plums', 'with', 'the', 'red', 'on', 'the', 'inside', '||comma||', "that's", 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'buy', 'mangos', 'and', 'plantains', '||questionmark||', '||return||', '||return||', 'joe:', 'all', 'right', '||comma||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'making', 'a', 'big', 'mistake', '||comma||', 'joe', '||exclammark||', '||return||', '||return||', 'joe:', "i'll", 'tell', 'you', 'something', 'else', 'i', "don't", 'what', 'your', 'business', 'anymore', 'either', '||period||', '||return||', '||return||', 'jerry:', 'are', 'saying', "you're", 'banning', 'me', 'from', 'the', 'store', '||questionmark||', '||return||', '||return||', 'joe:', "that's", 'exactly', 'what', "i'm", 'saying', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'banned', '||questionmark||', '||exclammark||', '||return||', '||return||', 'joe:', "you're", 'banned', '||period||', '||return||', '||return||', '[location:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'where', 'do', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'put', 'it', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', 'oh', 'look', 'at', 'this', '||comma||', 'these', 'mangos', 'are', 'beautiful', '||exclammark||', 'oh', 'these', 'are', 'beautiful', '||comma||', '||leftparen||', 'smells', 'them', '||rightparen||', 'you', 'did', 'good', 'george', '||period||', '||return||', '||return||', 'george:', 'all', 'right', 'i', 'gotta', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'date', 'with', 'karen', '||period||', 'i', "don't", 'know', 'what', "i'm", 'gonna', 'do', '||period||', 'nothing', 'happening', 'down', 'there', '||period||', '||return||', '||return||', 'jerry:', "you're", 'thinking', 'about', 'it', 'too', 'much', '||period||', "you're", 'putting', 'too', 'much', 'emphasis', 'on', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'knew', 'this', 'was', 'gonna', 'happen', 'some', 'day', '||period||', 'it', 'was', 'inevitable', '||period||', "i've", 'known', 'it', 'ever', 'since', 'i', 'was', 'a', 'little', 'kid', '||period||', "i've", 'been', 'waiting', 'for', 'it', '||period||', '||return||', '||return||', 'kramer:', 'this', 'mango', 'is', 'delicious', '||exclammark||', '||return||', '||return||', 'george:', 'that', 'reminds', 'me', '||comma||', "i'm", 'not', 'getting', 'you', 'guys', 'any', 'more', 'fruit', '||period||', 'that', 'guy', 'was', 'eyeballing', 'me', 'the', 'whole', 'time', '||period||', 'he', 'gave', 'me', 'the', 'creeps', '||period||', 'all', 'right', '||comma||', 'you', 'owe', 'me', 'twenty', '||dash||', 'eight', 'sixty', '||period||', '||return||', '||return||', 'jerry:', 'sorry', '||comma||', 'i', "don't", 'have', 'any', 'cash', '||period||', '||return||', '||return||', 'kramer:', 'i', 'only', 'got', 'hundreds', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||period||', '||period||', '||period||', 'all', 'right', 'i', 'knew', 'it', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'come', 'on', '||comma||', "we're", 'gonna', 'pay', 'you', '||exclammark||', 'here', 'have', 'some', 'mango', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'any', 'mango', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'take', 'some', '||period||', "it's", 'good', '||period||', '||return||', '||return||', 'george:', 'very', 'good', '||period||', 'juicy', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||period||', '||return||', '||return||', 'george:', 'ripe', '||period||', 'boy', '||comma||', 'this', "joe's", 'got', 'some', 'terrific', 'fruit', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'feel', 'like', 'i', 'got', 'a', 'b12', 'shot', '||period||', 'this', 'is', 'like', 'a', 'taste', 'explosion', '||exclammark||', '||return||', '||return||', 'kramer:', 'ya', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'it', 'moved', '||period||', 'oh', 'my', 'god', '||comma||', 'i', 'think', 'it', 'moved', '||period||', 'yeah', '||comma||', 'give', 'me', 'the', 'big', 'piece', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'george', '||period||', '||return||', '||return||', 'george:', "i'm", 'back', '||comma||', 'baby', '||comma||', "i'm", 'back', '||exclammark||', '||return||', '||return||', 'kramer:', 'want', 'some', 'mango', '||questionmark||', '||return||', '||return||', 'elaine:', 'noo', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'well', 'well', '||comma||', 'if', 'it', "isn't", 'the', 'first', 'lady', 'of', 'the', 'american', 'theatre', '||period||', '||leftparen||', 'elaine', 'smiles', 'and', 'rolls', 'her', 'eyes', 'at', 'him', '||rightparen||', 'what', 'brings', 'you', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'gonna', 'return', 'some', 'of', 'your', 'things', 'that', 'were', 'in', 'my', 'house', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'and', "i've", 'got', 'some', 'things', 'of', 'yours', 'here', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'well', "i'll", 'get', 'them', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'waiting', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||leftparen||', 'goes', 'into', 'his', 'hallway', 'and', 'comes', 'back', '||rightparen||', 'you', 'got', 'my', 'fins', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', 'i', 'got', 'your', 'fins', '||period||', 'you', 'got', 'my', 'poker', 'chips', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'your', 'poker', 'chips', '||period||', 'you', 'got', 'my', 'goggles', '||questionmark||', '||return||', '||return||', 'elaine:', "they're", 'next', 'to', 'the', 'fins', '||period||', 'you', 'got', 'my', 'cards', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'next', 'to', 'the', 'poker', 'chips', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', 'and', 'that', 'just', 'about', '||period||', '||period||', '||period||', 'does', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'welp', '||period||', '||period||', '||period||', 'see', 'you', 'around', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "let's", 'go', '||comma||', 'i', 'give', 'you', 'half', 'an', 'hour', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'serious', '||questionmark||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'jerry', '||comma||', 'we', 'have', 'to', 'have', 'sex', 'to', 'save', 'the', 'friendship', '||period||', '||return||', '||return||', 'jerry:', 'sex', '||period||', '||period||', '||period||', 'to', 'save', 'the', 'friendship', '||period||', '||leftparen||', 'elaine', 'drops', 'her', 'bag', '||comma||', 'takes', 'off', 'her', 'jacket', 'and', 'walks', 'into', "jerry's", 'bedroom', '||rightparen||', 'well', '||comma||', 'if', 'we', 'have', 'to', '||leftparen||', 'un', '||dash||', 'tucks', 'his', 'shirt', '||rightparen||', 'we', 'have', 'to', '||period||', '||return||', '||return||', '[location:', "karen's", 'bedroom]', '||return||', '||return||', 'karen:', 'mmmm', '||comma||', 'oh', 'george', '||comma||', 'oooh', '||period||', '||return||', '||return||', 'george:', 'please', '||comma||', "it's", 'not', 'necessary', '||period||', '||return||', '||return||', 'karen:', 'mmm', "what's", 'not', 'necessary', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'little', 'extra', 'moan', 'you', 'threw', 'in', 'there', '||period||', 'laying', 'it', 'on', 'a', 'bit', 'thick', '||comma||', "don't", 'you', 'think', '||questionmark||', '||return||', '||return||', 'karen:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'am', 'i', 'talking', 'about', '||questionmark||', 'come', 'on', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'you', "don't", 'think', 'i', 'bought', 'all', 'that', '||questionmark||', '||leftparen||', 'does', 'a', 'little', 'move', '||rightparen||', '||return||', '||return||', 'karen:', 'what', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'george:', "you're", 'very', 'good', '||period||', 'very', 'good', 'with', 'the', 'moanings', 'and', 'the', 'gyrations', '||period||', 'y', '||dash||', 'you', 'really', 'had', 'me', 'going', 'there', 'for', 'a', 'minute', '||period||', '||return||', '||return||', 'karen:', 'you', 'think', 'i', 'was', 'faking', '||questionmark||', '||return||', '||return||', 'george:', 'come', 'on', "'oh", 'george', '||comma||', 'oh', 'geeeooorge', '||exclammark||', "'", 'come', 'on', '||exclammark||', 'not', 'that', 'i', "don't", 'appreciate', 'the', 'effort', 'that', 'was', 'put', 'into', 'it', '||period||', '||return||', '||return||', 'karen:', "i'd", 'like', 'you', 'to', 'leave', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'karen:', 'i', 'said', '||comma||', 'i', 'would', 'like', 'you', 'to', 'leave', '||period||', 'come', 'on', '||comma||', 'just', 'get', 'your', 'clothes', 'on', 'and', 'get', 'out', '||period||', '||return||', '||return||', 'george:', 'but', 'why', '||questionmark||', '||return||', '||return||', 'karen:', 'because', 'i', 'said', 'so', '||period||', '||leftparen||', 'pushes', 'george', 'off', 'the', 'bed', '||rightparen||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', '||dash||', 'i', "can't", 'find', 'my', 'glasses', '||period||', '||return||', '||return||', 'karen:', 'well', 'hurry', 'up', '||period||', '||return||', '||return||', 'george:', 'i', 'need', 'to', 'look', 'for', 'my', 'glasses', '||period||', '||return||', '||return||', 'karen:', '||leftparen||', 'seen', 'through', 'george', 'eyes', 'all', 'blurry', '||rightparen||', 'get', 'out', '||exclammark||', 'get', 'out', '||exclammark||', '||exclammark||', 'get', 'out', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', '[location:', "jerry's", 'bedroom]', '||return||', '||return||', 'jerry:', "it's", 'all', "george's", 'fault', '||period||', 'all', 'that', 'talk', 'about', 'impotence', '||period||', 'it', 'got', 'to', 'me', '||period||', 'and', 'that', 'orgasm', 'stuff', 'orgasm', 'this', 'and', 'orgasm', 'that', '||period||', "it's", 'a', 'lot', 'of', 'pressure', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'know', "i'm", 'a', 'little', 'hungry', '||period||', 'you', "wouldn't", 'happen', 'to', 'have', 'any', 'of', 'that', 'mango', 'left', '||questionmark||', '||return||', '||return||', 'the', 'female', 'orgasm', 'is', 'kinda', 'like', 'the', 'bat', 'cave', '||comma||', 'very', 'few', 'people', 'know', 'where', 'it', 'is', 'and', 'if', "you're", 'lucky', 'enough', 'to', 'see', 'it', 'you', 'probably', "don't", 'know', 'how', 'you', 'got', 'there', 'and', 'you', "can't", 'find', 'you', 'way', 'back', 'after', 'you', 'left', '||period||', 'there', 'are', 'two', 'types', 'of', 'female', 'orgasms:', 'the', 'real', 'and', 'the', 'fake', '||period||', 'and', 'uh', "i'll", 'tell', 'you', 'right', 'now', '||comma||', 'as', 'a', 'man', '||comma||', 'we', "don't", 'know', '||period||', 'we', 'do', 'not', 'know', '||comma||', 'because', 'to', 'a', 'man', 'sex', 'is', 'like', 'a', 'car', 'accident', 'and', 'determining', 'the', 'female', 'orgasm', 'is', 'like', 'being', 'asked', "'what", 'did', 'you', 'see', 'after', 'the', 'car', 'went', 'out', 'of', 'control', '||questionmark||', "'", '||period||', "'uh", 'i', 'heard', 'a', 'lot', 'of', 'screeching', 'sounds', '||comma||', 'uh', 'i', 'remember', 'i', 'was', 'facing', 'the', 'wrong', 'way', 'at', 'one', 'point', '||period||', 'and', 'in', 'the', 'end', 'my', 'body', 'was', 'thrown', 'clear', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'this', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', "won't", 'be', 'for', 'that', 'long', '||period||', '||return||', '||return||', 'george:', 'how', 'can', 'i', 'do', 'this', '||questionmark||', 'how', 'can', 'i', 'move', 'back', 'in', 'with', 'those', 'people', '||questionmark||', 'please', '||comma||', 'tell', 'me', '||period||', "they're", 'insane', '||period||', 'you', 'know', 'that', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'my', 'parents', 'are', 'just', 'as', 'crazy', 'as', 'your', 'parents', '||period||', '||return||', '||return||', 'george:', 'how', 'can', 'you', 'compare', 'you', 'parents', 'to', 'my', 'parents', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'my', 'father', 'has', 'never', 'thrown', 'anything', 'out', '||period||', 'ever', '||exclammark||', '||return||', '||return||', 'george:', 'my', 'father', 'wears', 'his', 'sneakers', 'in', 'the', 'pool', '||exclammark||', 'sneakers', '||exclammark||', '||return||', '||return||', 'jerry:', 'my', 'mother', 'has', 'never', 'set', 'foot', 'in', 'a', 'natural', 'body', 'of', 'water', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'showing', 'jerry', 'up', '||rightparen||', 'listen', 'carefully', '||period||', 'my', 'mother', 'has', 'never', 'laughed', '||period||', 'ever', '||period||', 'not', 'a', 'giggle', '||comma||', 'not', 'a', 'chuckle', '||comma||', 'not', 'a', 'tee', '||dash||', 'hee', '||period||', '||period||', 'never', 'went', "'ha", '||exclammark||', "'", '||return||', '||return||', 'jerry:', 'a', 'smirk', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', '||exclammark||', '||period||', '||period||', 'and', "i'm", 'moving', 'back', 'in', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', "i'd", 'lend', 'you', 'the', 'money', 'for', 'the', 'rent', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'borrowing', 'money', 'from', 'a', 'friend', 'is', 'like', 'having', 'sex', '||period||', 'it', 'just', 'completely', 'changes', 'the', 'relationship', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||period||', "i'm", 'ready', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'you', 'know', '||comma||', 'i', 'still', "don't", 'understand', '||dash||', 'why', 'do', 'you', 'want', 'to', 'move', 'back', 'in', 'with', 'your', 'parents', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'to', '||exclammark||', "i'm", 'outta', 'money', '||exclammark||', 'i', 'got', '714', 'dollars', 'left', 'in', 'the', 'bank', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'move', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stopping', 'the', 'notion', '||rightparen||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', "doesn't", 'he', 'just', 'move', 'in', 'here', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', "i'm", 'gonna', 'move', 'in', 'with', 'him', '||period||', 'he', "doesn't", 'even', 'let', 'you', 'use', 'the', 'toilet', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'can', 'move', 'in', 'with', 'me', '||comma||', 'if', 'you', 'want', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sincerely', '||rightparen||', 'thank', 'you', '||period||', '||period||', 'i', '||comma||', 'uh', '||period||', '||period||', 'that', 'might', 'not', 'work', 'out', '||period||', '||return||', '||return||', '[setting:', 'the', "costanza's", 'house]', '||return||', '||return||', 'estelle:', 'careful', '||exclammark||', 'careful', 'with', 'the', 'suitcases', '||exclammark||', 'we', 'just', 'painted', '||exclammark||', '||return||', '||return||', 'kramer:', 'hello', '||comma||', 'mrs', '||period||', 'costanza', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', '||rightparen||', 'hello', '||comma||', 'mrs', '||period||', 'costanza', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'not', 'really', 'noticing', 'jerry', 'said', 'hello', '||rightparen||', 'hello', '||comma||', 'kramer', '||period||', 'close', 'the', 'door', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'gotta', 'bring', 'in', 'more', 'stuff', '||period||', '||leftparen||', 'heads', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'estelle:', 'more', 'stuff', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'estelle:', '||leftparen||', 'to', 'george', '||rightparen||', 'how', 'much', 'is', 'there', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', "there's", 'more', '||period||', '||return||', '||return||', 'estelle:', 'so', '||comma||', 'how', 'are', 'ya', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'fine', '||comma||', 'mrs', '||period||', 'costanza', '||period||', '||leftparen||', 'attempts', 'to', 'get', 'estelle', 'to', 'laugh', '||rightparen||', 'hey', '||comma||', 'i', 'got', 'a', 'terrific', 'joke', 'for', 'you', '||period||', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'sits', 'down', 'on', 'the', 'couch', '||rightparen||', 'nah', '||comma||', 'not', 'interested', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', 'it', '||dash||', "it's", 'really', 'funny', '||period||', "there's", 'these', 'two', 'guys', '||dash||', '||return||', '||return||', 'estelle:', '||leftparen||', 'interrupting', '||rightparen||', 'tell', 'it', 'to', 'the', 'audience', '||period||', '||leftparen||', 'george', 'gives', 'jerry', 'an', "'i", 'told', 'you', "so'", 'look', '||rightparen||', 'here', '||comma||', '||leftparen||', 'picks', 'up', 'a', 'plate', 'full', 'of', 'sandwiches', '||rightparen||', 'i', 'made', 'some', 'bologna', 'sandwiches', '||period||', '||return||', '||return||', 'george:', 'bologna', '||questionmark||', '||exclammark||', 'no', 'one', 'eats', 'bologna', 'anymore', '||exclammark||', '||return||', '||return||', 'estelle:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||exclammark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'have', 'a', 'sandwich', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'setting', 'down', 'a', 'box', '||rightparen||', 'no', 'thanks', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'stop', 'it', '||exclammark||', 'you', "don't", 'want', 'one', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'uhh', '||period||', '||period||', 'no', 'thanks', '||period||', '||leftparen||', 'goes', 'back', 'out', 'the', 'door', '||rightparen||', '||return||', '||return||', 'estelle:', 'i', 'think', "you're", 'all', 'a', 'little', 'touched', 'in', 'the', 'head', '||period||', '||leftparen||', 'puts', 'the', 'plate', 'down', '||rightparen||', "you're", 'so', 'worried', 'about', 'your', 'health', '||period||', '||period||', "you're", 'young', 'men', '||period||', '||return||', '||return||', 'jerry:', 'i', 'really', "don't", 'eat', 'it', '||period||', '||return||', '||return||', 'estelle:', 'what', 'am', 'i', 'gonna', 'do', 'with', 'all', 'these', 'sandwiches', '||questionmark||', '||exclammark||', 'will', 'you', 'take', 'them', 'home', '||questionmark||', 'give', 'them', 'to', 'someone', 'in', 'your', 'building', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'if', "i'd", 'feel', 'comfortable', 'handing', 'out', 'bologna', 'sandwiches', 'in', 'the', 'building', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', 'with', 'a', 'box', '||rightparen||', 'alright', '||comma||', "that's", 'it', '||period||', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', '||rightparen||', 'no', '||comma||', "that's", 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'gotta', 'go', 'move', 'the', 'car', '||period||', 'alright', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'guess', "we'll", 'be', 'going', '||period||', '||period||', '||leftparen||', 'heads', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'runs', 'over', 'to', 'him', '||comma||', 'not', 'wanting', 'him', 'to', 'leave', '||rightparen||', 'what', '||questionmark||', "you're", 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'wha', '||dash||', 'what', 'are', 'you', 'doing', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'elaine', 'and', 'i', 'are', 'going', 'out', 'to', 'dinner', 'with', 'kramer', 'and', 'his', 'new', 'girlfriend', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', "can't", 'believe', 'this', 'woman', '||period||', "she's", 'one', 'of', 'those', 'low', '||dash||', 'talkers', '||period||', 'you', "can't", 'hear', 'a', 'word', "she's", 'saying', '||exclammark||', "you're", 'always', 'going', "'excuse", 'me', '||questionmark||', "'", '||comma||', "'what", 'was', 'that', '||questionmark||', "'", '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', 'may', '||dash||', 'maybe', "i'll", 'meet', 'ya', '||questionmark||', '||return||', '||return||', 'estelle:', 'no', '||comma||', 'george', '||period||', "we're", 'going', 'out', 'to', 'eat', 'tonight', 'with', 'your', 'father', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'mutters', '||rightparen||', 'oh', '||period||', '||period||', 'okay', '||period||', '||period||', 'talk', 'to', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'take', 'it', 'easy', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||period||', '||period||', '||leftparen||', 'buries', 'his', 'face', 'into', 'his', 'hands', '||rightparen||', '||return||', '||return||', '[setting:', 'a', 'restaurant]', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'well', '||comma||', 'he', 'had', 'this', 'idea', 'of', 'a', 'pizza', 'place', 'where', 'you', 'make', 'your', 'own', 'pie', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'eliane:', 'you', 'remember', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'that', 'was', 'a', 'good', 'one', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||return||', '||return||', 'elaine:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'yep', '||period||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'that', '||comma||', 'uh', '||comma||', 'leslie', '||leftparen||', 'points', 'to', 'her', '||rightparen||', 'is', 'in', 'the', 'clothing', 'business', '||questionmark||', "she's", 'a', 'designer', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'interested', '||rightparen||', 'oh', '||questionmark||', '||return||', '||return||', 'kramer:', 'in', 'fact', '||comma||', "she's", 'come', 'up', 'with', 'a', 'new', 'one', 'that', 'is', 'going', 'to', 'be', 'the', 'big', 'new', 'look', 'in', "men's", 'fashion', '||period||', '||period||', "it's", 'a', '||comma||', 'a', 'puffy', 'shirt', '||period||', '||leftparen||', 'leslie', 'mumbles', 'to', 'kramer', '||rightparen||', 'well', '||comma||', 'yeah', '||comma||', 'it', '||dash||', "it's", 'all', 'puffy', '||period||', 'like', 'the', 'pirates', 'used', 'to', 'wear', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'a', 'puffy', 'shirt', '||period||', '||return||', '||return||', 'jerry:', 'puffy', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'see', '||comma||', 'i', 'think', 'people', 'want', 'to', 'look', 'like', 'pirates', '||period||', 'you', 'know', '||comma||', "it's", 'the', 'right', 'time', 'for', 'it', '||period||', '||period||', 'to', 'be', 'all', 'puffy', '||comma||', 'and', 'devil', '||dash||', 'may', '||dash||', 'care', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'laughing', '||rightparen||', "that's", 'true', '||period||', '||period||', '||leftparen||', 'gets', 'up', '||rightparen||', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'walks', 'off', 'laughing', '||period||', 'jerry', 'and', 'elaine', 'are', 'left', 'with', 'the', 'low', '||dash||', 'talker', '||period||', 'a', 'moment', 'passes', '||rightparen||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'o', '||period||', '||period||', '||period||', '||leftparen||', 'remembers', 'something', 'they', 'could', 'talk', 'about', '||rightparen||', "jerry's", 'going', 'to', 'be', 'on', 'the', '||quotemark||', 'today', '||quotemark||', 'show', 'on', 'friday', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'right', '||exclammark||', '||return||', '||return||', 'elaine:', 'yep', '||period||', '||period||', 'yep', '||period||', 'um', '||comma||', "he's", 'promoting', 'a', '||leftparen||', 'pauses', '||rightparen||', 'benefit', 'for', 'goodwill', '||comma||', 'you', 'know', '||comma||', 'they', '||comma||', 'uh', '||comma||', 'they', 'clothe', 'the', '||leftparen||', 'clears', 'her', 'throat', '||rightparen||', 'poor', '||comma||', 'and', 'the', 'homeless', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'points', 'at', 'elaine', '||rightparen||', 'and', 'the', 'indigent', '||period||', '||return||', '||return||', 'elaine:', 'and', 'the', 'indigent', '||comma||', 'yeah', '||period||', '||period||', 'i', '||comma||', 'i', 'do', 'volunteer', 'work', 'for', 'them', '||period||', 'i', '||dash||', 'i', 'set', 'the', 'whole', 'thing', 'up', '||comma||', 'and', 'i', 'got', 'jerry', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||comma||', 'yeah', '||period||', 'yeah', '||period||', '||period||', 'yep', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'yep', '||period||', '||return||', '||return||', 'jerry:', 'yep', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||return||', '||return||', '[setting:', 'a', 'restaurant]', '||return||', '||return||', 'estelle:', 'maybe', 'you', 'should', 'take', 'a', 'civil', 'service', 'test', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'studying', 'the', 'salt', 'shaker', '||rightparen||', "i'm", 'not', 'taking', 'a', 'civil', 'service', 'test', '||period||', '||return||', '||return||', 'frank:', 'look', 'at', 'this', '||comma||', 'george', '||period||', '||leftparen||', 'takes', 'a', 'coin', 'out', 'of', 'his', 'pocket', '||rightparen||', 'you', 'ever', 'seen', 'a', 'silver', 'dollar', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', "i've", 'seen', 'a', 'silver', 'dollar', '||period||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'want', 'to', 'take', 'a', 'civil', 'service', 'test', '||questionmark||', '||return||', '||return||', 'george:', 'to', 'do', 'what', '||questionmark||', '||exclammark||', 'work', 'in', 'a', 'post', 'office', '||questionmark||', 'is', 'that', 'what', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'frank:', 'would', 'you', 'believe', 'when', 'i', 'was', '18', '||comma||', 'i', 'had', 'a', 'ssssilver', 'dollar', 'collection', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', "don't", 'understand', '||period||', 'you', 'get', 'job', 'security', '||dash||', 'you', 'get', 'a', 'pay', 'check', 'every', 'week', '||period||', '||period||', '||return||', '||return||', 'george:', "i'm", 'a', 'college', 'graduate', '||period||', 'you', 'want', 'me', 'to', 'be', 'a', 'mailman', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'still', 'looking', 'at', 'his', 'coin', '||rightparen||', 'you', 'know', '||comma||', 'i', "couldn't", 'bring', 'myself', 'to', 'spend', 'one', 'of', 'these', '||period||', 'i', 'got', 'some', 'kind', 'of', 'a', '||dash||', 'a', '||dash||', 'a', '||dash||', 'a', '||dash||', 'a', 'phobia', '||period||', '||return||', '||return||', 'estelle:', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'i', 'do', 'know', 'that', 'i', 'have', 'some', 'kind', 'of', 'a', 'talent', '||dash||', 'something', 'to', 'offer', '||period||', 'i', 'just', "don't", 'know', 'what', 'it', 'is', 'yet', '||exclammark||', '||return||', '||return||', 'frank:', 'i', 'bet', 'that', 'collection', 'would', 'be', 'worth', 'a', 'lot', 'of', 'money', 'today', '||period||', '||leftparen||', 'does', 'a', 'form', 'of', 'magic', 'trick', 'making', 'the', 'coin', 'disappear', 'as', 'he', 'shows', 'george', 'an', 'empty', 'hand', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'looks', 'fed', 'up', 'with', 'his', 'parents', '||rightparen||', 'oh', 'my', 'god', '||period||', '||period||', '||return||', '||return||', 'frank:', 'i', "don't", 'like', 'this', 'waiter', '||period||', '||leftparen||', 'holds', 'up', 'his', 'hand', 'to', 'get', 'the', 'waiters', 'attention', '||dash||', 'starts', 'snapping', '||rightparen||', 'look', 'at', 'him', '||period||', '||period||', 'he', 'sees', 'us', '||period||', '||period||', 'he', "doesn't", 'want', 'to', 'come', 'over', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'needing', 'to', 'get', 'away', 'from', 'his', 'parents', '||comma||', 'he', 'gets', 'up', '||rightparen||', 'i', 'need', 'some', 'air', '||period||', '||period||', '||return||', '||return||', 'estelle:', 'george', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'walks', 'off', '||rightparen||', 'i', 'got', 'a', 'lot', 'of', 'thinking', 'to', 'do', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "i'm", 'sorry', '||period||', "i'm", 'terribly', 'sorry', '||period||', '||period||', '||leftparen||', 'bends', 'down', '||comma||', 'and', 'starts', 'picking', 'up', 'her', 'things', '||rightparen||', '||return||', '||return||', 'woman:', 'look', 'at', 'what', "you've", 'done', '||exclammark||', 'you', 'spilled', 'my', 'bag', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'stuttering', '||rightparen||', 'i', '||comma||', 'i', '||comma||', 'i', '||comma||', '||period||', '||period||', 'here', '||comma||', 'let', 'me', '||dash||', 'let', 'me', 'help', 'you', '||period||', '||period||', '||return||', '||return||', 'woman:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "it's", 'all', 'right', '||period||', '||leftparen||', 'begins', 'helping', 'him', 'pick', 'her', 'things', 'up', '||rightparen||', '||return||', '||return||', 'george:', 'it', '||dash||', "it's", 'just', 'that', "i'm", 'here', 'with', 'my', 'parents', '||comma||', 'and', 'my', 'mother', 'wants', 'me', 'to', 'take', 'a', 'civil', 'service', 'test', '||dash||', 'and', 'to', 'tell', 'you', 'the', 'truth', '||comma||', 'i', "don't", 'even', 'think', "i'd", 'pass', 'it', '||period||', '||period||', 'so', '||period||', '||period||', '||return||', '||return||', 'woman:', 'hmm', '||period||', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'woman:', '||leftparen||', 'looking', 'at', 'both', 'his', 'hands', 'intensely', '||rightparen||', 'your', 'hands', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'them', '||questionmark||', '||return||', '||return||', 'woman:', "they're", 'quite', 'exquisite', '||exclammark||', '||return||', '||return||', 'george:', 'they', 'are', '||questionmark||', '||return||', '||return||', 'woman:', '||leftparen||', 'mesmerized', '||rightparen||', 'extraordinary', '||exclammark||', 'have', 'you', 'ever', 'done', 'any', 'hand', 'modeling', '||questionmark||', '||return||', '||return||', 'george:', 'hand', 'modeling', '||questionmark||', '||leftparen||', 'shakes', 'his', 'head', "'no'", '||rightparen||', '||return||', '||return||', 'woman:', '||leftparen||', 'fishes', 'a', 'card', 'out', 'of', 'her', 'purse', '||comma||', 'then', 'hands', 'it', 'to', 'george', '||rightparen||', "here's", 'my', 'card', '||period||', 'why', "don't", 'you', '||comma||', 'uh', '||comma||', 'give', 'me', 'a', 'call', '||questionmark||', '||leftparen||', 'walks', 'off', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'shrugs', '||rightparen||', 'i', '||dash||', 'i', "don't", 'get', 'it', '||period||', '||return||', '||return||', 'george:', 'me', 'neither', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', "they're", 'hands', '||exclammark||', '||return||', '||return||', 'george:', 'this', 'woman', 'just', 'set', 'me', 'up', 'for', 'a', 'job', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gets', 'up', '||comma||', 'and', 'displays', 'his', 'own', 'hands', '||rightparen||', 'well', '||comma||', 'what', 'about', 'my', 'hands', '||questionmark||', 'i', "don't", 'see', 'how', 'your', 'hands', 'are', 'any', 'better', 'than', 'my', 'hands', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', '||leftparen||', 'points', 'at', 'the', 'flaws', 'of', "jerry's", 'hands', '||rightparen||', 'the', 'knuckles', 'are', 'all', 'out', 'of', 'proportion', '||period||', 'you', 'got', 'hair', 'over', 'there', '||dash||', 'where', 'do', 'you', 'get', 'off', 'comparing', 'your', 'hands', 'to', 'my', 'hands', '||questionmark||', '||exclammark||', 'this', 'is', 'a', 'one', '||dash||', 'in', '||dash||', 'a', '||dash||', 'million', 'hand', '||period||', '||leftparen||', 'points', 'to', 'his', 'own', 'hand', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'what', 'comes', 'from', 'avoiding', 'manual', 'labor', 'your', 'whole', 'life', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'it', '||exclammark||', 'it', 'happened', 'to', 'me', '||comma||', 'jerry', '||exclammark||', 'i', 'was', 'sitting', 'in', 'the', 'restaurant', '||comma||', 'the', 'two', 'nut', 'jobs', 'were', 'talking', '||dash||', 'i', "couldn't", 'take', 'it', 'any', 'more', '||period||', 'i', 'got', 'up', '||comma||', 'and', '||leftparen||', 'makes', 'a', 'noise', '||rightparen||', 'i', 'bop', 'into', 'this', 'woman', '||period||', '||period||', '||return||', '||return||', 'jerry:', "it's", 'just', 'like', 'in', 'the', 'movies', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||leftparen||', "he's", 'carrying', 'a', 'suit', 'cover', '||period||', 'he', 'hangs', 'it', 'on', "jerry's", 'coat', 'hooks', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'george', '||exclammark||', '||leftparen||', 'holds', 'out', 'his', 'hand', '||period||', 'george', 'shakes', 'it', '||dash||', 'a', 'hand', 'buzzer', 'goes', 'off', '||period||', 'george', 'starts', 'freaking', 'out', '||period||', 'kramer', 'laughs', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', 'what', 'are', 'you', '||comma||', 'crazy', '||questionmark||', '||exclammark||', 'are', 'you', '||comma||', 'crazy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'coulda', 'damaged', 'my', 'hand', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', '||rightparen||', 'but', '||comma||', "it's", 'only', 'a', 'toy', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'explaining', '||rightparen||', 'george', 'has', 'become', 'a', 'hand', 'model', '||period||', '||return||', '||return||', 'kramer:', 'a', 'hand', 'model', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'really', '||questionmark||', 'let', 'me', 'see', 'your', 'hands', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'defensively', '||rightparen||', 'you', 'can', 'look', 'at', 'them', '||comma||', 'but', 'do', 'not', 'touch', 'them', '||period||', '||leftparen||', 'holds', 'them', 'out', '||rightparen||', '||return||', '||return||', 'kramer:', "let's", 'see', '||period||', '||period||', '||leftparen||', 'studies', 'them', '||rightparen||', 'oh', '||comma||', 'those', 'are', 'nice', '||period||', 'you', 'know', '||comma||', "i've", 'never', 'noticed', 'this', 'before', '||questionmark||', "they're", 'smooth', '||period||', '||period||', 'creamy', '||period||', '||period||', 'delicate', '||comma||', 'yet', '||leftparen||', 'turns', 'to', 'jerry', '||rightparen||', 'masculine', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'takes', 'two', 'oven', 'mitts', 'from', 'his', 'back', 'pack', '||rightparen||', 'alright', '||comma||', '||leftparen||', 'puts', 'them', 'on', '||rightparen||', 'i', 'gotta', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'oven', 'mitts', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'embarrassed', '||rightparen||', "that's", 'all', 'i', 'could', 'find', '||period||', '||leftparen||', 'a', 'moment', 'passes', '||rightparen||', 'would', 'you', 'mind', 'getting', 'the', 'door', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||leftparen||', 'jerry', 'opens', 'the', 'door', 'for', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'walks', 'out', '||rightparen||', '||return||', '||return||', 'kramer:', "you're", 'not', 'going', 'to', 'believe', 'what', 'happening', 'with', 'leslie', '||period||', 'you', 'know', '||comma||', 'ever', 'since', 'you', 'agreed', 'to', 'wear', 'the', 'puffy', 'shirt', 'on', 'the', 'today', 'show', '||comma||', "she's", 'been', 'getting', 'all', 'these', 'orders', 'from', 'boutiques', 'and', 'department', 'stores', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||period||', '||leftparen||', 'finally', 'realizes', 'what', 'kramer', 'said', '||comma||', 'he', 'looks', 'up', '||rightparen||', 'since', 'i', 'said', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'agreed', 'to', 'wear', 'the', 'puffy', 'shirt', '||period||', '||leftparen||', 'starts', 'unzipping', 'the', 'suit', 'cover', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'when', 'you', 'said', 'that', "you'd", 'agree', 'to', 'wear', 'the', 'puffy', 'shirt', 'on', 'the', 'today', 'show', '||period||', '||leftparen||', 'takes', 'the', 'ridiculous', 'puffy', 'shirt', 'out', 'of', 'the', 'cover', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'goes', 'up', 'to', 'it', '||rightparen||', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'yea', '||period||', '||return||', '||return||', 'jerry:', 'i', 'agreed', 'to', 'wear', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'but', '||comma||', 'when', 'did', 'i', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'when', 'we', 'went', 'to', 'dinner', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', '||comma||', 'crazy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'were', 'you', 'talking', 'about', 'when', 'i', 'went', 'to', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||exclammark||', 'i', "couldn't", 'understand', 'a', 'word', 'she', 'was', 'saying', '||exclammark||', 'i', 'was', 'just', 'nodding', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'makes', 'his', 'pop', 'sound', '||rightparen||', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'where', 'i', 'go', '||questionmark||', 'you', 'mean', 'she', 'was', 'asking', 'me', 'to', 'wear', 'this', 'ridiculous', 'shirt', 'on', 'national', 'tv', '||comma||', 'and', 'i', 'said', "'yes'", '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||exclammark||', 'you', 'said', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', '||comma||', 'i', '||dash||', 'i', "didn't", 'know', 'what', 'she', 'was', 'talking', 'about', '||period||', 'i', "couldn't", 'hear', 'her', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'takes', 'it', 'off', 'the', 'hook', '||comma||', 'and', 'starts', 'walking', 'toward', 'jerry', 'with', 'it', '||period||', 'he', 'backs', 'defensively', 'backs', 'away', 'from', 'it', '||rightparen||', 'well', '||comma||', 'she', 'asked', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', '||dash||', 'i', "can't", 'wear', 'this', 'puffy', 'shirt', 'on', 'tv', '||exclammark||', 'i', 'mean', '||comma||', 'look', 'at', 'it', '||exclammark||', 'it', 'looks', 'ridiculous', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'gotta', 'wear', 'it', 'now', '||exclammark||', 'all', 'those', 'stores', 'are', 'stocking', 'it', 'based', 'on', 'the', 'condition', 'that', "you're", 'gonna', 'wear', 'this', 'on', 'the', 'tv', 'show', '||exclammark||', 'the', 'factory', 'in', 'new', 'jersey', 'is', 'already', "makin'", 'em', '||period||', '||return||', '||return||', 'jerry:', "they're", 'making', 'these', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||period||', 'this', 'pirate', 'trend', 'that', "she's", 'come', 'up', 'with', '||comma||', 'jerry', '||comma||', 'this', '||dash||', 'this', 'is', 'gonna', 'be', 'the', 'new', 'look', 'for', 'the', "90's", '||period||', "you're", 'gonna', 'be', 'the', 'first', 'pirate', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'like', 'a', 'little', 'kid', '||rightparen||', 'but', '||comma||', 'i', "don't", 'want', 'to', 'be', 'a', 'pirate', '||exclammark||', '||return||', '||return||', '[setting:', 'the', 'costanza', 'house]', '||return||', '||return||', 'estelle:', 'i', 'knew', 'it', '||period||', 'i', 'knew', 'it', '||period||', '||period||', 'i', 'always', 'knew', 'you', 'always', 'had', 'beautiful', 'hands', '||period||', 'i', 'used', 'to', 'tell', 'people', '||period||', 'frank', '||comma||', "didn't", 'i', 'use', 'to', 'talk', 'about', 'his', 'hands', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'looking', 'up', 'from', 'his', 'paper', '||rightparen||', 'who', 'the', 'hell', "did'ya", 'ever', 'mention', 'his', 'hands', 'to', '||questionmark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'getting', 'annoyed', '||rightparen||', 'i', 'mentioned', 'his', 'hands', 'to', 'plenty', 'of', 'people', '||exclammark||', '||return||', '||return||', 'frank:', 'you', 'never', 'mentioned', 'them', 'to', 'me', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'snaps', '||comma||', 'then', 'points', 'to', 'the', 'coffee', 'table', '||rightparen||', 'hand', 'me', 'an', 'emory', 'board', '||period||', '||return||', '||return||', 'estelle:', 'i', 'always', 'talk', 'about', 'your', 'hands', '||dash||', 'how', "they're", 'so', 'soft', 'and', 'milky', 'white', '||period||', '||period||', '||return||', '||return||', 'frank:', 'no', '||exclammark||', 'you', 'never', 'said', 'milky', 'white', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'getting', 'angry', '||rightparen||', 'i', 'said', 'milky', 'white', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'estelle', '||rightparen||', 'scissor', '||period||', '||leftparen||', 'she', 'gets', 'the', 'scissors', 'from', 'the', 'coffee', 'table', 'and', 'hands', 'them', 'to', 'george', 'with', 'the', 'point', 'facing', 'him', '||rightparen||', "don't", 'hand', 'them', 'to', 'me', 'with', 'the', 'point', 'facing', 'out', '||exclammark||', '||return||', '||return||', 'estelle:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', "you're", 'sorry', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'apologizing', '||rightparen||', "i'll", 'try', 'to', 'be', 'more', 'careful', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'stern', '||comma||', 'angered', '||rightparen||', 'i', 'hope', 'so', '||period||', '||leftparen||', 'takes', 'the', 'scissors', '||rightparen||', '||return||', '||return||', 'estelle:', 'georgie', '||period||', '||period||', '||leftparen||', 'nudges', "george's", 'arm', '||comma||', 'disrupting', 'his', 'work', 'with', 'the', 'scissors', '||rightparen||', 'oh', '||comma||', 'georgie', '||comma||', 'would', 'you', 'like', 'some', 'jell', '||dash||', 'o', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'to', 'estelle', '||comma||', 'referring', 'to', 'the', 'jell', '||dash||', 'o', '||rightparen||', "why'd", 'you', 'put', 'the', 'bananas', 'in', 'there', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'yelling', '||rightparen||', 'george', 'likes', 'the', 'bananas', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'trying', 'to', 'match', 'her', 'tone', '||rightparen||', 'so', 'let', 'him', 'have', 'bananas', 'on', 'the', 'side', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||exclammark||', 'please', '||comma||', 'please', '||exclammark||', 'i', 'cannot', 'have', 'this', 'constant', 'bickering', '||exclammark||', '||period||', '||period||', 'stress', 'is', 'very', 'damaging', 'to', 'the', 'epidermis', '||exclammark||', 'now', '||comma||', 'i', 'have', 'an', 'important', 'photo', 'session', 'in', 'the', 'morning', '||dash||', 'my', 'hands', 'have', 'got', 'to', 'be', 'in', 'tip', '||dash||', 'top', 'shape', '||comma||', 'so', 'please', '||dash||', 'keep', 'the', 'television', 'down', '||comma||', 'and', 'the', 'conversation', 'to', 'a', 'minimum', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'meek', '||rightparen||', 'but', 'georgie', '||period||', '||period||', 'what', 'about', 'the', 'jell', '||dash||', 'o', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'definite', '||rightparen||', "i'll", 'take', 'it', 'in', 'my', 'room', '||period||', '||leftparen||', 'walks', 'off', '||rightparen||', '||return||', '||return||', '[setting:', 'a', 'today', 'show', 'dressing', 'room]', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'stagehand:', 'i', 'just', 'wanted', 'to', 'let', 'you', 'know', "he's", 'got', 'about', 'five', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'giddy', '||dash||', 'up', '||period||', '||leftparen||', 'stagehand', 'leaves', '||rightparen||', 'jerry', '||exclammark||', 'five', 'minutes', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', "that's", 'a', 'great', 'looking', 'shirt', '||exclammark||', '||leftparen||', 'gets', 'up', '||comma||', 'admiring', 'the', 'shirt', '||rightparen||', 'aye', 'captain', '||exclammark||', '||leftparen||', 'growls', 'like', 'a', 'pirate', '||rightparen||', 'yeah', '||exclammark||', "i'm", 'glad', 'i', 'ironed', 'it', '||period||', "it's", 'perfect', '||period||', '||leftparen||', 'walks', 'around', 'jerry', '||comma||', 'inspecting', 'the', 'shirt', '||rightparen||', 'look', 'at', 'it', '||exclammark||', "it's", 'fantastic', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'resisting', '||rightparen||', 'kramer', '||comma||', 'how', 'am', 'i', 'gonna', 'wear', 'this', '||questionmark||', '||exclammark||', 'i', '||dash||', 'i', "can't", 'wear', 'this', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reassuring', '||rightparen||', 'hey', '||comma||', 'this', "look's", 'better', 'than', 'anything', 'you', 'own', '||period||', 'you', 'know', '||comma||', 'in', 'two', 'months', 'time', '||comma||', "everybody's", 'gonna', 'be', 'wearing', 'the', '||leftparen||', 'imitates', 'a', 'pirate', '||rightparen||', 'pirate', 'look', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'kramer', '||period||', 'guess', 'what', '||dash||', 'i', 'just', 'saw', 'bryant', 'gumbel', '||comma||', 'he', 'said', 'he', 'might', 'help', 'out', 'at', 'the', 'benefit', '||exclammark||', '||return||', '||return||', 'kramer:', 'great', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'between', 'laughs', '||rightparen||', 'what', 'is', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'the', 'puffy', 'shirt', '||period||', 'look', 'at', 'it', '||comma||', 'eh', '||questionmark||', "whatd'ya", 'think', '||questionmark||', 'is', 'it', 'cool', 'or', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', "why're", 'you', 'wearing', 'that', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'obviously', 'mad', 'at', 'the', 'situation', "he's", 'in', '||rightparen||', "'why", 'am', 'i', 'wearing', 'is', 'now', '||questionmark||', '||questionmark||', "i'll", 'tell', 'you', 'why', "i'm", 'wearing', 'it', 'now', '||dash||', 'because', 'the', 'lowtalker', 'asked', 'me', 'to', '||comma||', "that's", 'why', '||exclammark||', 'and', 'i', 'said', "'yes'", '||period||', 'do', 'you', 'know', 'why', '||questionmark||', 'because', 'i', "couldn't", 'hear', 'her', '||exclammark||', '||return||', '||return||', 'elaine:', 'when', 'did', 'she', '||comma||', '||leftparen||', 'snickers', '||rightparen||', 'when', 'did', 'she', 'ask', 'you', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'we', 'were', 'at', 'dinner', '||comma||', 'when', 'kramer', 'went', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'hear', 'anything', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'yelling', 'out', '||rightparen||', 'of', 'course', 'not', '||exclammark||', 'nobody', 'hears', 'anything', 'when', 'this', 'woman', 'speaks', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'just', 'now', 'making', 'the', 'matter', 'serious', '||rightparen||', 'well', '||comma||', 'you', "can't", 'wear', 'that', 'on', 'the', 'show', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'elaine', '||comma||', 'muffled', '||comma||', 'low', '||comma||', 'and', 'threatening', '||rightparen||', 'elaine', '||comma||', 'you', 'want', 'to', 'stop', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'turning', 'around', 'to', 'kramer', '||rightparen||', 'wha', '||dash||', 'what', '||questionmark||', 'no', '||period||', '||leftparen||', 'back', 'to', 'jerry', '||rightparen||', 'jerry', '||comma||', 'you', 'are', 'promoting', 'a', 'benefit', 'to', 'clothe', 'homeless', 'people', '||period||', 'you', "can't", 'come', 'out', 'dressed', 'like', 'that', '||exclammark||', "you're", 'all', 'puffed', 'up', '||exclammark||', '||period||', '||period||', 'you', 'look', 'like', 'the', 'count', 'of', 'monte', 'cristo', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'arms', 'out', '||comma||', 'complaining', '||rightparen||', 'i', 'have', 'to', 'wear', 'it', '||exclammark||', 'the', 'woman', 'has', 'orders', 'for', 'this', 'shirt', 'based', 'on', 'me', 'wearing', 'it', 'on', 'tv', '||period||', '||period||', "they're", 'producing', 'them', 'as', 'we', 'speak', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'arguing', '||rightparen||', 'yeah', '||comma||', 'but', "you're", 'supposed', 'to', 'be', 'a', 'compassionate', 'person', '||exclammark||', 'that', 'cares', 'about', 'poor', 'people', '||exclammark||', 'you', 'look', 'like', "you're", 'gonna', '||period||', '||period||', 'swing', 'in', 'on', 'a', 'chandelier', '||exclammark||', '||return||', '||return||', 'stagehand:', '||leftparen||', 'looking', 'down', 'at', 'a', 'clipboard', '||comma||', 'enters', '||rightparen||', 'okay', '||comma||', "let's", 'go', '||period||', '||leftparen||', 'looks', 'up', '||comma||', 'points', 'at', "jerry's", 'puffy', 'shirt', '||rightparen||', 'is', 'that', 'what', "you're", 'wearing', '||questionmark||', '||return||', '||return||', '[setting:', 'a', "photographer's", 'studio]', '||return||', '||return||', 'man:', "i've", 'never', 'seen', 'hands', 'like', 'these', 'before', '||period||', '||period||', '||return||', '||return||', 'woman:', "they're", 'so', 'soft', 'and', 'milky', 'white', '||period||', '||return||', '||return||', 'photographer:', 'you', 'know', "who's", 'hands', 'they', 'remind', 'me', 'of', '||questionmark||', '||leftparen||', 'pauses', 'for', 'effect', '||rightparen||', 'ray', 'mckigney', '||period||', '||return||', '||return||', 'man:', 'ugh', '||period||', '||period||', 'ray', '||period||', '||return||', '||return||', 'photographer:', 'he', 'was', 'it', '||period||', '||return||', '||return||', 'george:', 'who', 'was', 'he', '||questionmark||', '||return||', '||return||', 'photographer:', 'the', 'most', 'exquisite', 'hands', "you've", 'ever', 'seen', '||period||', '||period||', 'oh', '||comma||', 'he', 'had', 'it', 'all', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hands', 'still', 'out', '||comma||', 'even', 'though', "they've", 'stopped', 'looking', 'at', 'them', '||rightparen||', 'what', 'happened', 'to', 'him', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'clears', 'throat', '||rightparen||', 'tragic', 'story', '||comma||', "i'm", 'afraid', '||period||', 'he', "could've", 'had', 'any', 'woman', 'in', 'the', 'world', '||period||', '||period||', 'but', 'none', 'could', 'match', 'the', 'beauty', 'of', 'his', 'own', 'hand', '||period||', '||period||', 'and', 'that', 'became', 'his', 'one', 'true', 'love', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', '||comma||', 'uh', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'man:', 'yes', '||period||', 'he', 'was', 'not', '||period||', '||period||', 'master', 'of', 'his', 'domain', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'makes', 'a', 'gesture', 'saying', 'he', 'understands', '||period||', 'the', 'man', 'nods', '||rightparen||', 'but', 'how', '||period||', '||period||', 'uh', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'quick', '||comma||', 'to', 'the', 'point', '||rightparen||', 'the', 'muscles', '||period||', '||period||', 'became', 'so', 'strained', 'with', '||period||', '||period||', 'overuse', '||comma||', 'that', 'eventually', 'the', 'hand', 'locked', 'into', 'a', 'deformed', 'position', '||comma||', 'and', 'he', 'was', 'left', 'with', 'nothing', 'but', 'a', 'claw', '||period||', '||leftparen||', 'holds', 'hand', 'up', '||comma||', 'displaying', 'a', 'claw', '||dash||', 'like', 'shape', '||rightparen||', 'he', 'traveled', 'the', 'world', 'seeking', 'a', 'cure', '||period||', '||period||', 'acupuncturists', '||period||', '||period||', 'herbalists', '||period||', '||period||', 'swamis', '||period||', '||period||', 'nothing', 'helped', '||period||', 'towards', 'the', 'end', '||comma||', 'his', 'hands', 'became', 'so', 'frozen', 'the', 'was', 'unable', 'to', 'manipulate', 'utensils', '||comma||', '||leftparen||', 'visibly', 'disgusted', 'by', 'this', 'last', 'part', '||rightparen||', 'and', 'was', 'dependent', 'on', 'cub', 'scouts', 'to', 'feed', 'him', '||period||', 'i', "hadn't", 'seen', 'another', 'pair', 'of', 'hands', 'like', 'ray', "mckigney's", 'until', 'today', '||period||', 'you', 'are', 'his', 'successor', '||period||', '||leftparen||', 'george', 'looks', 'down', 'at', 'his', 'hands', '||rightparen||', 'i', 'uh', 'only', 'hope', 'you', 'have', 'a', 'little', 'more', 'self', '||dash||', 'control', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', 'to', 'himself', '||rightparen||', 'you', "don't", 'have', 'to', 'worry', 'about', 'me', '||period||', '||leftparen||', 'nodding', '||comma||', 'gloating', '||rightparen||', 'i', 'won', 'a', 'contest', '||period||', '||return||', '||return||', 'photographer:', 'ok', '||comma||', "let's", 'get', 'to', 'work', '||period||', '||return||', '||return||', '[setting:', 'the', 'today', 'show]', '||return||', '||return||', 'bryant:', '||leftparen||', 'talking', 'directly', 'to', 'the', 'camera', '||rightparen||', 'back', 'now', '||comma||', '746', '||period||', 'on', 'tuesday', 'the', '19th', 'here', 'in', 'new', 'york', 'there', 'will', 'be', 'a', 'benefit', 'for', 'the', 'goodwill', 'industries', '||dash||', 'a', 'used', 'clothing', 'organization', 'that', 'provides', 'services', 'to', 'the', 'needy', '||period||', 'one', 'of', 'the', 'performers', 'will', 'be', 'comedian', 'jerry', 'seinfeld', '||period||', '||leftparen||', 'turns', 'to', 'face', 'jerry', '||rightparen||', 'jerry', '||comma||', 'good', 'morning', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'mumbling', 'out', '||rightparen||', 'thank', 'you', '||comma||', 'bryant', '||period||', '||return||', '||return||', 'bryant:', '||leftparen||', 'pointing', 'out', '||rightparen||', 'and', 'speaking', 'of', 'clothing', '||comma||', 'that', 'is', 'a', 'very', '||comma||', 'very', 'unusual', 'shirt', 'you', 'have', 'on', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'down', 'at', 'the', 'shirt', '||semicolon||', 'mumbling', '||rightparen||', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'bryant:', "you're", 'all', 'kinda', '||comma||', '||leftparen||', 'waves', 'his', 'hands', 'around', '||rightparen||', 'kinda', '||quotemark||', 'puffed', 'up', '||quotemark||', '||period||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'a', 'puffy', 'shirt', '||period||', '||return||', '||return||', 'bryant:', '||leftparen||', 'laughing', '||rightparen||', 'you', 'look', 'kinda', 'like', 'a', 'pirate', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nervous', 'laughter', '||rightparen||', 'yeah', '||period||', '||period||', 'like', 'a', 'pirate', '||period||', '||period||', '||leftparen||', 'attempting', 'to', 'get', 'on', 'another', 'subject', '||rightparen||', 'anyway', '||comma||', 'ah', '||comma||', 'you', 'know', '||comma||', "we're", 'hoping', 'to', '||comma||', 'um', '||comma||', 'raise', 'enough', 'money', '||period||', '||period||', 'with', 'this', '||period||', '||period||', 'uh', '||period||', '||period||', '||return||', '||return||', 'bryant:', '||leftparen||', 'rudely', 'interrupting', '||comma||', 'still', 'snickering', 'at', 'the', 'shirt', '||rightparen||', 'you', '||period||', '||period||', 'ah', '||comma||', 'look', '||comma||', "i'm", 'sorry', '||comma||', 'it', 'is', 'just', 'a', 'very', 'unusual', 'shirt', '||period||', 'it', 'could', 'be', 'kind', 'of', 'a', 'whole', 'new', 'look', 'for', 'you', '||period||', '||period||', 'you', 'know', '||comma||', 'you', 'could', 'put', 'a', 'patch', 'over', 'an', 'eye', '||comma||', 'you', 'could', 'be', 'kind', 'of', 'like', 'the', 'pirate', '||dash||', 'comedian', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||comma||', 'yeah', '||period||', '||leftparen||', 'smiling', '||comma||', 'nodding', '||comma||', 'clearly', 'wanting', 'bryant', 'to', 'shut', 'up', '||rightparen||', '||return||', '||return||', 'bryant:', 'are', 'you', 'going', 'to', 'be', 'wearing', 'the', 'shirt', 'at', 'the', 'concert', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'losing', 'it', '||comma||', 'mad', '||rightparen||', 'look', '||comma||', "it's", 'not', 'my', 'shirt', '||period||', '||return||', '||return||', 'bryant:', '||leftparen||', 'confused', '||rightparen||', 'whose', 'shirt', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'difference', '||questionmark||', 'i', 'agreed', 'to', 'wear', 'it', '||period||', "it's", '||dash||', "it's", 'a', 'puffy', 'shirt', '||period||', 'i', 'feel', 'ridiculous', 'in', 'it', '||comma||', 'and', 'i', 'think', "it's", 'the', 'stupidest', 'shirt', "i've", 'ever', 'seen', '||comma||', 'to', 'be', 'perfectly', 'honest', 'with', 'you', '||period||', '||leftparen||', 'nodding', '||rightparen||', '||return||', '||return||', 'leslie:', '||leftparen||', 'off', 'camera', '||comma||', 'shrill', '||comma||', 'high', 'pitched', 'yelling', '||rightparen||', 'you', 'bastard', '||exclammark||', '||return||', '||return||', 'bryant:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'did', 'you', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'off', 'screen', '||comma||', 'nodding', '||rightparen||', 'that', 'i', 'heard', '||period||', '||return||', '||return||', '[setting:', "photographer's", 'studio]', '||return||', '||return||', 'photographer:', '||leftparen||', 'instructing', 'george', '||rightparen||', 'alright', '||comma||', 'a', 'little', 'to', 'the', 'left', '||period||', '||period||', 'little', 'higher', '||comma||', 'little', 'higher', '||period||', 'good', '||period||', 'perfect', '||exclammark||', 'perfect', '||period||', '||return||', '||return||', 'george:', 'like', 'that', '||questionmark||', '||return||', '||return||', 'photographer:', 'just', 'like', 'that', '||period||', 'hold', 'it', '||period||', '||leftparen||', 'takes', 'picture', '||rightparen||', 'good', '||comma||', 'ok', '||comma||', 'let', 'me', 'get', 'just', 'one', 'more', '||comma||', 'one', 'more', '||period||', '||leftparen||', 'takes', 'another', 'picture', '||rightparen||', 'good', '||comma||', "that's", 'it', '||period||', "you're", 'done', '||period||', '||return||', '||return||', 'george:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'photographer:', '||leftparen||', 'smiling', '||rightparen||', "that's", 'it', '||period||', '||return||', '||return||', 'man:', '||leftparen||', 'pulling', 'a', 'slip', 'of', 'paper', 'out', 'of', 'his', 'coat', 'pocket', '||rightparen||', 'and', "here's", 'your', 'check', '||period||', '||leftparen||', 'george', 'accepts', '||rightparen||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'pats', 'him', 'on', 'the', 'back', '||rightparen||', 'it', 'was', 'an', 'honor', '||period||', '||return||', '||return||', 'woman:', 'it', 'was', 'great', 'working', 'with', 'you', '||period||', '||leftparen||', 'somewhat', 'coy', '||rightparen||', 'your', 'hands', 'are', 'beautiful', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'modest', '||rightparen||', 'oh', '||comma||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'woman:', 'you', 'know', '||comma||', 'i', 'was', 'wondering', '||dash||', 'if', "you're", 'not', 'doing', 'anything', 'later', '||comma||', 'maybe', "you'd", 'like', 'to', 'get', 'together', '||period||', '||period||', '||questionmark||', '||return||', '||return||', '[setting:', 'park]', '||return||', '||return||', '[setting:', 'today', 'show', 'dressing', 'room]', '||return||', '||return||', 'leslie:', 'you', 'ruined', 'me', '||exclammark||', 'you', 'ruined', 'my', 'career', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'just', 'keep', 'your', 'voice', 'down', '||period||', 'everyone', 'can', 'hear', 'you', '||period||', '||return||', '||return||', 'leslie:', '||leftparen||', 'shouting', 'out', '||rightparen||', 'oh', '||comma||', 'i', "don't", 'give', 'a', 'damn', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reasoning', '||rightparen||', 'you', 'know', '||comma||', 'if', 'you', 'talked', 'this', 'loud', 'to', 'begin', 'with', '||comma||', 'i', "wouldn't", 'be', 'in', 'this', 'costume', 'in', 'the', 'first', 'place', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'quick', '||comma||', 'excited', 'talking', '||rightparen||', 'hey', '||comma||', 'hey', '||exclammark||', 'you', "can't", 'believe', 'this', '||period||', 'look', 'at', 'this', 'check', '||exclammark||', '||leftparen||', 'hands', 'it', 'to', 'jerry', '||rightparen||', 'they', 'told', 'me', 'i', 'had', 'the', 'most', 'beautiful', 'hands', "they'd", 'ever', 'seen', 'in', 'their', 'lives', '||dash||', 'except', 'for', 'this', 'mckigney', 'guy', '||dash||', 'this', 'great', 'looking', 'girl', 'gave', 'me', 'her', 'phone', 'number', '||period||', '||period||', 'i', 'got', 'it', '||exclammark||', 'i', 'got', 'it', 'all', '||exclammark||', "i'm", 'busting', '||period||', 'jerry', '||comma||', "i'm", 'busting', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "i've", 'never', 'noticed', 'your', 'hands', 'before', '||period||', 'let', 'me', 'see', '||period||', '||return||', '||return||', 'george:', 'alright', '||period||', '||leftparen||', 'holds', 'them', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'obviously', 'not', 'impressed', '||comma||', 'dull', '||rightparen||', 'yeah', '||comma||', 'real', 'nice', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'turning', 'back', 'to', 'jerry', '||comma||', 'he', 'takes', 'the', 'check', 'back', '||period||', 'he', 'just', 'now', 'notices', 'the', 'shirt', "jerry's", 'wearing', '||comma||', 'and', 'snickers', '||comma||', 'pointing', '||rightparen||', 'nice', 'shirt', '||period||', '||period||', '||leftparen||', 'laughs', '||comma||', 'jerry', 'shrugs', '||rightparen||', 'what', 'is', 'this', '||questionmark||', 'is', 'this', 'what', 'you', 'wore', 'on', 'the', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'have', 'you', 'completely', 'lost', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'faint', '||comma||', 'trying', 'to', 'shut', 'george', 'up', '||rightparen||', 'hey', '||period||', '||period||', '||return||', '||return||', 'george:', "who's", 'dressing', 'you', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', 'you', 'look', 'like', 'a', 'complete', 'idiot', '||exclammark||', 'you', 'know', '||comma||', 'i', "wouldn't", 'wipe', 'my', '||dash||', '||leftparen||', 'unable', 'to', 'take', 'anymore', '||comma||', 'leslie', 'gets', 'up', 'and', 'shoves', 'george', 'violently', '||period||', 'his', 'hands', 'go', 'straight', 'for', 'the', 'hot', 'iron', 'sitting', 'on', 'the', 'dressing', 'room', 'table', '||period||', 'george', 'screams', 'out', 'in', 'agony', '||rightparen||', 'aahhhh', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||leftparen||', 'his', 'voice', 'is', 'heard', 'outside', 'the', 'building', '||comma||', 'on', 'the', 'street', '||comma||', 'and', 'in', 'the', 'park', 'were', 'a', 'bunch', 'of', 'pigeons', 'are', 'scared', 'by', 'the', 'yelling', '||rightparen||', '||return||', '||return||', '[setting:', 'a', 'restaurant]', '||return||', '||return||', 'elaine:', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'george:', 'ow', '||exclammark||', 'hot', '||exclammark||', 'hot', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sincere', '||rightparen||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'reflecting', 'on', 'his', 'life', 'gone', 'wrong', '||rightparen||', 'this', 'mckigney', 'guy', 'had', 'a', 'few', 'good', 'years', '||period||', '||period||', '||leftparen||', 'to', 'kramer', '||comma||', 'bitter', '||rightparen||', 'how', 'could', 'you', 'forget', 'to', 'turn', 'off', 'an', 'iron', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'excited', 'because', 'jerry', 'was', 'putting', 'on', 'the', 'puffy', 'shirt', '||period||', '||return||', '||return||', 'george:', 'my', 'whole', 'life', 'is', 'ruined', 'because', 'of', 'the', '||leftparen||', 'mocking', '||comma||', 'bitter', 'tone', '||rightparen||', '||quotemark||', 'puffy', 'shirt', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'out', '||rightparen||', 'it', "didn't", 'do', 'me', 'any', 'good', 'either', '||exclammark||', 'that', 'benefit', 'was', 'the', 'worst', 'show', 'i', 'ever', 'did', '||period||', 'some', 'of', 'those', 'heckles', 'were', 'really', 'uncalled', 'for', '||quotemark||', 'avast', 'ye', 'matey', '||quotemark||', '||dash||', 'what', 'the', 'hell', 'does', 'that', 'mean', '||questionmark||', '||exclammark||', '||quotemark||', '20', 'degrees', 'off', 'the', 'starboard', 'side', '||dash||', 'the', 'spanish', 'galleon', '||exclammark||', '||quotemark||', '||dash||', "there's", 'no', 'comeback', 'for', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reflecting', '||rightparen||', 'well', '||comma||', 'it', 'got', 'me', 'fired', 'from', 'the', 'benefit', 'committee', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'all', 'those', 'stores', 'canceled', 'out', 'on', 'her', '||questionmark||', "she's", 'finished', '||period||', '||leftparen||', 'concluding', '||rightparen||', "we're", '||leftparen||', 'leslie', 'and', 'him', '||rightparen||', 'finished', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'showing', 'pure', 'irony', '||rightparen||', 'i', 'just', "can't", 'be', 'with', 'someone', "who's", 'life', 'is', 'in', 'complete', 'disarray', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'with', 'all', 'the', 'shirts', '||questionmark||', '||return||', '||return||', 'kramer:', 'they', 'gave', 'them', 'all', 'to', 'goodwill', '||period||', '||return||', '||return||', 'homeless', 'man:', 'ahh', '||comma||', 'can', 'you', 'spare', 'a', 'little', 'change', 'for', 'an', 'old', 'buccaneer', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'while', 'digging', 'in', 'his', 'pocket', 'for', 'some', 'money', '||comma||', 'he', 'looks', 'over', 'the', 'shirts', 'one', 'last', 'time', '||rightparen||', 'you', 'know', '||comma||', "it's", 'really', 'not', 'a', 'bad', 'looking', 'shirt', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'ever', 'spit', 'on', 'anybody', 'from', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'do', 'you', 'ever', 'think', 'about', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'me', 'too', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'got', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'got', 'me', 'the', 'air', 'conditioner', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'beautiful', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'air', 'conditioner', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'my', 'buddy', 'works', 'in', 'an', 'appliance', 'store', 'and', 'he', 'got', 'us', 'thirty', 'percent', 'off', '||period||', '||return||', '||return||', 'jerry:', 'is', 'it', 'a', 'good', 'one', '||questionmark||', '||return||', '||return||', 'kramer:', 'good', 'one', '||questionmark||', "it's", 'the', 'commando', '8', '||period||', '||return||', '||return||', 'jerry:', 'commando', '8', '||questionmark||', '||return||', '||return||', 'kramer:', '12', '||comma||', '000', "btu's", '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'hated', 'air', 'conditioning', '||period||', "you've", 'never', 'had', 'an', 'air', 'conditioner', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'amy', 'likes', 'air', 'conditioning', '||period||', '||return||', '||return||', 'elaine:', 'oooh', '||comma||', "you're", 'getting', 'an', 'air', 'conditioner', 'for', 'amy', '||period||', '||leftparen||', 'in', 'a', 'wining', 'voice', '||rightparen||', 'amy', "doesn't", 'like', 'the', 'temperature', 'up', 'here', '||period||', "she's", 'a', 'little', 'hoooot', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'so', '||comma||', "i'm", 'gonna', 'measure', 'the', 'window', 'up', '||comma||', 'okay', 'buddy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'george', 'enters', 'the', 'apartment', 'wearing', 'goggles', '||rightparen||', 'yeah', '||comma||', 'rock', 'on', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'gotta', 'get', 'out', 'of', 'this', 'city', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'tunneling', 'to', 'the', 'center', 'of', 'the', 'earth', '||questionmark||', '||leftparen||', 'elaine', 'laughs', 'silently', '||rightparen||', '||return||', '||return||', 'george:', "i'm", 'at', 'the', 'health', 'club', 'and', 'while', "i'm", 'in', 'the', 'pool', '||comma||', 'some', 'guy', 'walks', 'off', 'with', 'my', 'glasses', '||period||', 'who', 'steals', 'prescription', 'glasses', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "don't", 'have', 'an', 'old', 'pair', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'broke', "'em", 'playing', 'basketball', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'running', 'from', 'a', 'bee', '||period||', '||leftparen||', 'elaine', 'laughs', '||rightparen||', '||return||', '||return||', 'george:', 'now', 'if', 'i', 'wanna', 'see', 'anything', 'i', 'gotta', 'wear', 'these', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'those', 'are', 'prescription', 'goggles', '||questionmark||', 'what', 'is', 'there', 'to', 'see', 'in', 'a', 'health', 'club', 'pool', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'a', 'lot', 'of', 'change', 'down', 'there', '||period||', '||return||', '||return||', 'george:', 'when', 'i', 'find', 'that', 'guy', '||comma||', 'this', 'much', 'i', 'vow', 'those', 'glasses', 'will', 'be', 'returned', 'to', 'their', 'rightful', 'owner', '||period||', '||return||', '||return||', 'jerry:', "we're", 'behind', 'you', '||comma||', 'aquaboy', '||period||', 'godspeed', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'a', 'sick', '||comma||', 'demented', 'person', 'wants', 'another', "person's", 'glasses', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'especially', 'those', 'frames', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'you', 'ought', 'to', 'do', '||questionmark||', 'go', 'see', 'my', 'friend', 'dwayne', 'at', 'j', '&', 't', 'optical', 'on', 'columbus', 'avenue', '||period||', "he'll", 'give', 'you', 'thirty', 'percent', 'off', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'he', 'just', 'got', 'me', 'thirty', 'percent', 'off', 'on', 'an', 'air', 'conditioner', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'retail', 'is', 'for', 'suckers', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', 'uh', '||comma||', 'what', 'do', 'i', 'have', 'to', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'just', 'gotta', 'mention', 'my', 'name', '||period||', '||return||', '||return||', 'george:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'it', '||period||', '||leftparen||', 'smacks', 'george', 'on', 'the', 'forehead', 'with', 'a', 'ruler', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'about', 'these', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'look', 'good', '||period||', 'i', 'liked', 'the', 'other', 'one', 'too', '||period||', "i've", 'liked', 'about', 'five', 'of', 'them', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'a', 'tough', 'decision', '||period||', 'i', 'have', 'to', 'wear', 'these', 'every', 'day', '||period||', "i'm", 'deciding', 'on', 'a', 'new', 'face', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bored', '||rightparen||', 'come', 'on', '||comma||', 'george', '||period||', 'pick', 'a', 'face', 'and', 'go', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', 'now', 'those', 'look', 'good', '||comma||', "they're", 'very', 'bold', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'they', 'are', 'bold', '||period||', 'jerry', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'while', 'looking', 'at', 'posters', 'of', 'women', 'wearing', 'glasses', '||rightparen||', 'i', 'think', 'these', 'women', 'would', 'be', 'pretty', 'good', 'looking', 'if', 'they', "weren't", 'wearing', 'glasses', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'there', '||comma||', 'little', 'doggy', '||period||', '||leftparen||', 'to', 'owner', '||rightparen||', 'do', 'you', 'mind', 'if', 'i', 'pet', 'your', 'dog', '||questionmark||', '||return||', '||return||', 'dog', 'owner:', "it's", 'okay', 'with', 'me', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'little', 'doggy', '||period||', '||leftparen||', 'elaine', 'pets', 'the', 'dog', 'and', 'he', 'bites', 'her', '||rightparen||', 'aaah', '||exclammark||', '||return||', '||return||', 'dwayne:', 'hey', '||comma||', 'you', "can't", 'have', 'that', 'dog', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'okay', '||questionmark||', 'did', 'he', 'bite', 'ya', '||questionmark||', '||return||', '||return||', 'george:', 'can', 'you', 'believe', 'that', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'okay', '||comma||', "it's", 'just', 'a', 'nip', '||period||', '||return||', '||return||', 'george:', 'he', 'just', 'walked', 'away', '||exclammark||', 'and', 'once', 'again', "i'm", 'standing', 'here', 'like', 'a', 'little', 'man', '||period||', 'well', 'not', 'this', 'time', '||exclammark||', '||leftparen||', 'george', 'leaves', 'the', 'store', 'and', 'follows', 'the', 'dog', 'owner', '||rightparen||', 'you', '||exclammark||', 'dog', 'man', '||exclammark||', '||return||', '||return||', 'elaine:', 'my', 'leg', 'looks', 'pretty', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'oh', "i'm", 'gonna', 'take', 'you', 'over', 'to', 'the', 'emergency', 'room', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', '||comma||', 'any', 'luck', '||questionmark||', 'did', 'you', 'catch', "'em", '||questionmark||', '||return||', '||return||', 'george:', 'uuh', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'm", 'gonna', 'take', 'elaine', 'over', 'to', 'the', 'hospital', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'in', 'a', 'really', 'strange', 'way', '||rightparen||', 'good', '||comma||', 'good', '||comma||', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'tell', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pulling', 'on', "jerry's", 'pants', 'from', 'the', 'ground', '||rightparen||', 'jerry', '||comma||', 'can', 'we', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'in', 'a', 'second', '||comma||', 'in', 'a', 'second', '||period||', '||leftparen||', 'and', 'to', 'george', '||rightparen||', 'what', 'do', 'you', 'mean', 'you', "can't", 'tell', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'tell', 'you', '||comma||', "don't", 'ask', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'asking', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'my', 'leg', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'take', 'care', 'of', 'it', '||period||', '||leftparen||', 'jerry', 'throws', 'her', 'some', 'toilet', 'paper', '||rightparen||', 'come', 'on', '||comma||', 'george', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'saw', 'amy', 'making', 'out', 'with', 'your', 'cousin', 'jeffrey', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'were', 'right', 'outside', '||exclammark||', '||return||', '||return||', 'jerry:', 'amy', 'and', 'jeffrey', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'positive', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', "can't", 'see', '||comma||', "there's", 'no', 'lenses', 'in', 'those', 'frames', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||exclammark||', 'i', 'was', 'squinting', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'listen', '||comma||', 'jerry', '||comma||', 'you', 'just', 'catch', 'up', 'with', 'me', 'okay', '||questionmark||', 'you', 'can', 'just', 'follow', 'the', 'trail', 'of', 'blood', '||period||', '||return||', '||return||', 'jerry:', "we're", 'gonna', 'have', 'to', 'talk', 'about', 'this', 'later', '||period||', '||leftparen||', 'elaine', 'holds', 'the', 'door', 'open', 'for', 'jerry', 'while', 'holding', 'her', 'leg', '||rightparen||', 'thank', 'you', '||period||', 'taxi', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'store', 'owner', '||rightparen||', 'excuse', 'me', '||comma||', 'what', 'do', 'you', 'think', 'of', 'these', '||questionmark||', '||return||', '||return||', 'dwayne:', 'oh', '||comma||', 'we', 'just', 'got', 'those', 'in', '||period||', "it's", 'a', 'very', 'exciting', 'new', 'frame', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'it', 'is', 'exciting', '||exclammark||', 'all', 'right', '||comma||', 'this', 'is', 'gonna', 'be', 'my', 'new', 'face', '||period||', '||return||', '||return||', 'dwayne:', 'all', 'right', '||comma||', 'do', 'you', 'have', 'a', 'prescription', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'george', 'hands', 'over', 'the', 'prescription', '||rightparen||', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'dwayne:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'dwayne:', 'what', 'about', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'do', 'know', 'kramer', '||questionmark||', '||return||', '||return||', 'dwayne:', 'yes', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'mentioning', 'his', 'name', '||period||', '||return||', '||return||', 'dwayne:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'dwayne:', 'no', '||comma||', 'i', "don't", 'know', '||period||', 'look', '||comma||', "i'm", 'gonna', 'need', 'a', 'deposit', 'on', 'these', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||period||', 'cousin', 'jeffrey', '||questionmark||', "it's", 'not', 'possible', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', 'they', 'could', 'have', 'met', '||period||', 'she', 'loves', 'the', 'park', '||comma||', 'he', 'works', 'for', 'the', 'parks', 'department', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'that', 'is', 'so', 'ridiculous', '||period||', 'but', '||comma||', 'george', "didn't", 'even', 'have', 'his', 'glasses', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'he', 'was', 'squinting', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', 'squinting', "doesn't", 'make', 'that', 'much', 'of', 'a', 'difference', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'kidding', '||questionmark||', "i've", 'seen', "'em", 'squint', '||period||', 'he', 'can', 'squint', 'his', 'way', 'down', 'to', 'like', 'twenty', '||comma||', 'thirty', 'vision', '||period||', 'once', 'we', 'were', 'driving', 'down', 'from', 'the', 'catskills', 'and', 'he', 'lost', 'his', 'glasses', '||period||', 'he', 'squinted', 'his', 'way', 'from', 'wortsborough', 'down', 'to', 'the', 'tappan', 'zee', 'bridge', '||exclammark||', 'he', 'was', 'spotting', 'raccoons', '||comma||', 'on', 'the', 'road', '||exclammark||', '||return||', '||return||', 'docter:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||questionmark||', "that's", 'it', '||questionmark||', 'i', "don't", 'need', 'a', 'shot', '||questionmark||', '||return||', '||return||', 'docter:', 'not', 'shot', '||comma||', 'dog', 'bite', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'know', 'i', "wasn't", 'shot', '||period||', 'do', 'i', 'need', 'a', 'shot', '||questionmark||', '||return||', '||return||', 'docter:', 'not', 'shot', '||comma||', 'dog', 'bite', '||period||', 'woof', 'woof', '||comma||', 'not', 'bang', 'bang', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'look', 'at', 'this', '||period||', "cable's", 'out', '||period||', '||return||', '||return||', 'amy:', 'oh', "that's", 'okay', '||comma||', 'we', "don't", 'have', 'to', 'watch', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'no', 'trouble', 'at', 'all', '||comma||', "it's", 'a', 'principal', 'the', 'thing', '||period||', '||leftparen||', 'jerry', 'picks', 'up', 'the', 'phone', 'and', 'dials', 'the', 'number', '||rightparen||', 'i', 'like', 'them', 'to', 'know', 'that', 'i', 'know', "what's", 'going', 'on', '||period||', 'that', "they're", 'not', '||period||', '||period||', '||period||', 'getting', 'away', 'with', 'anything', '||period||', 'oh', '||comma||', "i'm", 'on', 'hold', '||period||', 'so', '||comma||', 'what', 'did', 'you', 'do', 'yesterday', '||questionmark||', '||return||', '||return||', 'amy:', 'yesterday', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'remember', 'yesterday', '||questionmark||', 'beautiful', 'day', '||period||', '||period||', '||period||', 'good', 'day', 'to', 'be', '||period||', '||period||', '||period||', 'out', '||period||', '||return||', '||return||', 'amy:', 'i', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'laughing', '||rightparen||', 'oh', 'you', 'must', 'have', 'done', 'something', '||period||', '||return||', '||return||', 'amy:', 'no', '||comma||', 'nothing', 'really', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'go', 'out', 'of', 'the', 'house', '||questionmark||', "didn't", 'take', 'a', 'walk', '||period||', '||period||', '||period||', 'on', 'columbus', 'avenue', '||questionmark||', '||return||', '||return||', 'amy:', 'well', '||comma||', 'i', 'did', 'go', 'out', 'for', 'a', 'little', 'while', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'your', "day's", 'getting', 'more', 'interesting', 'already', '||period||', '||leftparen||', 'jerry', 'shows', 'the', 'phone', '||rightparen||', 'ah', '||comma||', 'see', '||comma||', 'told', 'me', "they'd", 'be', 'back', 'in', 'a', 'minute', 'and', 'they', 'lied', '||period||', '||return||', '||return||', 'amy:', 'you', "can't", 'thrust', 'anyone', '||period||', '||return||', '||return||', 'jerry:', 'no', 'you', "can't", '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'now', "let's", 'cut', 'the', 'ball', '||comma||', 'sister', '||exclammark||', 'you', 'think', 'i', "don't", 'know', 'about', 'you', 'swapping', 'spit', 'with', 'somebody', 'yesterday', 'on', 'columbus', 'avenue', '||questionmark||', '||return||', '||return||', 'amy:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'my', 'friend', 'saw', 'you', '||period||', '||return||', '||return||', 'amy:', 'saw', 'me', '||questionmark||', 'with', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'tell', 'me', '||period||', '||return||', '||return||', 'amy:', "there's", 'nothing', 'to', 'tell', '||period||', '||return||', '||return||', 'jerry:', 'there', "isn't", '||questionmark||', '||return||', '||return||', 'amy:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'all', 'right', '||period||', '||period||', '||period||', 'wanna', 'get', 'some', 'pizza', '||questionmark||', '||return||', '||return||', 'amy:', 'i', 'had', 'a', 'feeling', 'this', 'was', 'to', 'good', 'to', 'be', 'true', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'amy:', 'i', 'knew', 'there', 'had', 'to', 'be', 'another', 'side', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', "there's", 'no', 'side', '||exclammark||', '||return||', '||return||', 'amy:', 'there', 'is', 'a', 'side', '||comma||', 'an', 'ugly', 'side', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', 'ugly', 'side', '||period||', '||return||', '||return||', 'amy:', 'look', '||comma||', 'i', 'think', "i'm", 'gonna', 'go', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'amy:', "it's", 'really', 'hot', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'uuh', '||comma||', 'so', 'we', 'can', 'still', 'go', 'out', 'on', 'friday', 'though', '||questionmark||', '||return||', '||return||', 'amy:', 'yeah', '||period||', 'when', 'you', 'getting', 'an', 'air', 'conditioner', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'coming', '||exclammark||', "it's", 'a', 'commando', '8', '||exclammark||', '12', '||period||', '000', "btu's", '||exclammark||', "it's", 'gonna', 'be', 'like', 'a', 'meat', 'locker', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'an', 'idiot', 'for', 'listening', 'to', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'saw', 'what', 'i', 'saw', '||period||', '||return||', '||return||', 'jerry:', 'ooh', '||comma||', 'everything', 'was', 'going', 'so', 'well', '||period||', 'she', "hadn't", 'seen', 'any', 'flaws', 'in', 'me', '||period||', 'now', 'she', 'sees', 'a', 'side', '||period||', '||return||', '||return||', 'george:', 'what', 'side', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'bad', 'side', '||comma||', 'an', 'ugly', 'side', '||period||', '||return||', '||return||', 'george:', 'ooh', '||comma||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', 'i', "wasn't", 'planning', 'on', 'showing', 'that', 'side', 'for', 'another', 'six', 'months', '||period||', 'now', 'you', 'make', 'me', 'throw', 'off', 'the', 'whole', 'learning', 'curve', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'just', 'ask', 'jeffrey', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "he'd", 'just', 'deny', 'it', '||period||', '||return||', '||return||', 'george:', 'there', 'must', 'be', 'some', 'way', 'to', 'find', 'out', '||period||', '||return||', '||return||', 'jerry:', 'amy', 'said', 'nothing', 'happened', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', "you're", 'gonna', 'take', 'her', 'word', 'over', 'mine', '||questionmark||', "i'm", 'your', 'best', 'friend', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', "you're", 'blind', 'as', 'a', 'bat', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'was', 'squinting', '||exclammark||', 'remember', 'that', 'drive', 'from', 'wortsborough', '||questionmark||', '||leftparen||', 'snapping', 'his', 'fingers', '||rightparen||', 'i', 'was', 'spotting', 'those', 'raccoons', '||period||', '||return||', '||return||', 'jerry:', 'they', 'were', 'mailboxes', '||comma||', 'you', 'idiot', '||period||', 'i', "didn't", 'have', 'the', 'heart', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'noticing', 'something', '||rightparen||', 'hey', 'look', '||comma||', 'a', 'dime', '||period||', '||return||', '||return||', 'george:', 'heh', '||comma||', 'mercury', 'head', '||period||', 'you', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stunned', '||rightparen||', 'no', '||comma||', 'keep', 'it', '||period||', '||leftparen||', 'elaine', 'enters', 'the', 'apartment', '||rightparen||', 'hey', 'what', 'happened', 'to', 'you', '||questionmark||', 'you', 'buzzed', 'five', 'minutes', 'ago', '||period||', '||return||', '||return||', 'elaine:', 'there', 'was', 'a', 'dog', 'in', 'front', 'of', 'the', 'building', 'and', 'it', 'spooked', 'me', '||period||', 'i', "couldn't", 'come', 'in', 'until', 'he', 'left', '||period||', '||return||', '||return||', 'jerry:', 'a', 'little', 'white', 'dog', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'snowball', '||questionmark||', 'you', 'were', 'afraid', 'of', 'snowball', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'afraid', 'of', 'dogs', 'now', '||period||', '||return||', '||return||', 'jerry:', "he's", 'like', 'a', 'squirrel', '||period||', '||return||', '||return||', 'elaine:', 'well', 'he', 'frightened', 'me', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'get', 'the', 'shot', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'he', 'said', 'i', "didn't", 'need', 'a', 'shot', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'bit', 'by', 'a', 'strange', 'dog', 'and', 'you', "didn't", 'get', 'a', 'rabies', 'shot', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'you', 'think', 'i', 'should', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'you', 'should', 'just', 'go', 'back', 'to', 'the', 'optical', 'store', 'and', 'ask', 'dwayne', 'if', 'he', 'knows', 'the', 'name', 'of', 'the', 'owner', 'of', 'the', 'dog', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "that's", 'a', 'good', 'idea', '||period||', "i'm", 'gonna', 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', 'the', 'ac', 'is', 'on', "it's", 'way', '||period||', '||return||', '||return||', 'george:', 'pardon', 'me', '||comma||', 'i', 'went', 'to', 'see', 'your', 'friend', 'dwayne', '||period||', '||period||', '||period||', 'there', 'was', 'no', 'discount', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||comma||', 'no', 'discount', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'did', 'you', 'mention', 'my', 'name', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'mentioned', 'your', 'name', '||period||', '||return||', '||return||', 'kramer:', 'and', '||questionmark||', '||return||', '||return||', 'george:', 'pbbbs', '||comma||', 'bubkis', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', 'i', "don't", 'believe', 'this', '||period||', 'that', 'guy', 'owes', 'me', 'big', 'time', '||period||', 'i', 'got', 'him', 'off', 'sugar', '||exclammark||', 'look', '||comma||', "i'm", 'gonna', 'go', 'down', 'there', 'with', 'you', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'let', 'me', 'just', '||period||', '||period||', '||period||', "i'm", 'gonna', 'grap', 'an', 'apple', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'kramer', '||comma||', "elaine's", 'afraid', 'of', 'snowball', '||exclammark||', '||return||', '||return||', 'kramer:', 'little', 'snowball', '||questionmark||', 'he', 'runs', 'on', 'batteries', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'george', '||comma||', "that's", 'an', 'onion', '||period||', '||return||', '||return||', 'george:', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'he', "couldn't", 'tell', 'an', 'apple', 'from', 'an', 'union', 'and', "he's", 'your', 'eye', 'witness', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'saw', 'them', 'making', 'out', '||comma||', 'you', 'can', 'believe', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'to', 'believe', '||exclammark||', "you're", 'eating', 'unions', '||comma||', "you're", 'spotting', 'dimes', '||comma||', 'i', "don't", 'know', 'what', 'the', 'hell', 'is', 'going', 'on', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'all', 'you', 'gotta', 'to', 'do', '||comma||', 'is', 'get', 'amy', 'and', 'jeffrey', 'together', 'somewhere', '||comma||', "that's", 'it', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||period||', "i'm", 'going', 'over', 'to', "jeffrey's", 'apartment', 'tomorrow', 'night', 'to', 'pick', 'up', 'these', 'paul', 'simon', 'tickets', '||period||', "i'm", 'gonna', 'surprise', 'amy', '||period||', 'all', 'i', 'gotta', 'do', 'is', 'bring', 'her', 'with', 'me', '||period||', 'and', 'then', 'when', 'jeffrey', 'opens', 'the', 'door', '||comma||', "it's", 'howdy', 'doody', 'time', '||period||', '||return||', '||return||', 'kramer:', 'right', 'this', 'way', '||comma||', 'mister', 'doody', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'crying', 'from', 'the', 'onion', '||rightparen||', "you'll", 'see', "i'm", 'right', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'dwayny', '||period||', '||return||', '||return||', 'dwayne:', 'oh', 'hello', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'dwayne:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'talking', 'about', 'the', 'thirty', 'percent', 'discount', '||period||', '||return||', '||return||', 'elaine:', 'uhm', 'excuse', 'me', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'a', 'man', 'came', 'in', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', "don't", 'interrupt', '||comma||', "they're", 'discounting', 'something', '||period||', '||return||', '||return||', 'dwayne:', 'who', 'said', 'anything', 'about', 'a', 'discount', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', 'how', 'quickly', 'we', 'forget', '||period||', 'you', 'owe', 'me', 'buddy', '||period||', '||return||', '||return||', 'dwayne:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'remember', 'this', '||questionmark||', '||return||', '||return||', 'dwayne:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'six', 'months', 'ago', 'you', 'were', 'eating', 'four', 'of', 'those', 'for', 'breakfast', 'and', 'chasing', 'it', 'with', 'a', 'ring', 'ding', '||period||', 'and', 'two', 'butter', 'fingers', 'on', 'the', 'train', '||period||', 'sounds', 'familiar', '||questionmark||', '||return||', '||return||', 'dwayne:', 'put', 'that', 'away', '||exclammark||', '||return||', '||return||', 'kramer:', 'remember', 'that', 'night', 'i', 'found', 'you', 'at', 'dinky', 'donuts', '||questionmark||', 'you', 'were', 'all', '*hopped*', 'up', 'on', 'cinnamon', 'swirls', '||exclammark||', 'they', "wouldn't", 'serve', 'you', 'anymore', '||exclammark||', 'you', "wouldn't", 'even', 'have', 'any', 'teeth', 'if', 'it', "wasn't", 'for', 'me', 'taking', 'you', 'over', 'to', "joe's", 'fruit', 'stand', 'and', "stuffin'", 'cantaloupe', 'down', 'your', 'throat', '||exclammark||', 'so', 'much', 'for', 'gratitude', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'dwayne:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'all', 'right', '||exclammark||', "i'll", 'give', 'him', 'the', 'discount', '||comma||', 'just', 'put', 'that', 'thing', 'away', '||exclammark||', 'this', 'squares', 'us', '||period||', '||return||', '||return||', 'elaine:', 'can', 'i', 'just', 'have', 'the', 'name', '||period||', '||period||', '||period||', '||return||', '||return||', 'dwayne:', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', "we'll", 'see', 'you', 'dwayne', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'to', 'tell', 'you', '||comma||', 'elton', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'while', 'reading', 'a', 'book', '||rightparen||', 'oh', 'oh', '||comma||', 'listen', 'to', 'this', '||comma||', 'this', 'is', 'not', 'good', '||comma||', 'listen', 'to', 'these', 'symptoms', 'for', 'rabies', 'anxiety', '||comma||', 'irritability', '||period||', 'i', 'got', 'those', '||comma||', "i'm", 'irritable', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'who', 'picked', 'these', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'did', '||exclammark||', '||return||', '||return||', 'jerry:', "they're", "ladies'", 'glasses', '||exclammark||', 'you', 'know', 'all', 'you', 'need', 'is', 'that', 'little', 'chain', 'around', 'your', 'neck', 'so', 'you', 'can', 'wear', "'em", 'while', "you're", 'playing', 'canasta', '||period||', '||return||', '||return||', 'george:', 'well', 'elaine', 'was', 'supposed', 'to', 'help', 'me', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'i', 'got', 'bit', 'by', 'a', 'dog', '||exclammark||', 'i', 'had', 'to', 'go', 'to', 'the', 'hospital', '||exclammark||', 'i', 'was', 'bleeding', 'to', 'death', '||exclammark||', 'i', "can't", 'solve', 'every', 'little', 'problem', 'you', 'have', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||period||', '||period||', '||period||', 'sorry', '||period||', '||return||', '||return||', 'kramer:', 'commando', '8', 'has', 'arrived', '||exclammark||', '||return||', '||return||', 'jerry:', 'take', 'it', 'to', 'the', 'window', '||period||', '||return||', '||return||', 'kramer:', '12', '||period||', '000', "btu's", 'of', 'raw', 'cooling', 'power', '||period||', '||leftparen||', 'kramer', 'places', 'the', 'air', 'conditioner', 'in', 'the', 'window', '||rightparen||', 'installed', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'it', '||questionmark||', 'you', "don't", 'have', 'to', 'screw', 'it', 'in', 'or', 'anything', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'just', 'plug', 'it', 'in', 'and', 'the', 'commando', '8', 'does', 'the', 'rest', '||period||', '||leftparen||', 'and', 'to', 'jerry', '||rightparen||', "i'll", 'seal', 'that', 'up', 'later', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'in', 'time', 'for', 'amy', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'when', 'are', 'you', 'gonna', 'execute', 'that', 'plan', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'got', 'such', 'a', 'headache', '||period||', 'oh', '||comma||', "that's", 'another', 'symptom', '||exclammark||', '||return||', '||return||', 'kramer:', 'of', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'rabies', '||period||', '||return||', '||return||', 'kramer:', 'oh', "that's", 'fatal', '||comma||', 'you', "don't", 'want', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'know', 'i', "don't", 'want', 'it', '||exclammark||', 'i', "don't", 'need', 'you', 'to', 'tell', 'me', 'what', 'i', "don't", 'want', '||comma||', 'you', 'stupid', 'hipster', 'dufus', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||comma||', 'what', 'is', 'this', '||questionmark||', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'kramer', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', "it's", 'all', 'right', '||period||', 'i', 'had', 'a', 'friend', 'who', 'had', 'rabies', 'once', '||period||', '||leftparen||', "george's", 'eating', 'chips', '||rightparen||', 'may', 'i', 'have', 'one', 'of', 'those', '||comma||', 'madam', '||questionmark||', '||return||', '||return||', 'george:', 'madam', '||questionmark||', 'what', 'are', 'you', 'calling', 'me', 'madam', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', "they're", "ladies'", 'glasses', '||period||', '||return||', '||return||', 'kramer:', 'now', 'look', 'here', '||comma||', 'see', "it's", 'right', 'here', 'gloria', 'vanderbilt', 'collection', '||period||', '||return||', '||return||', 'george:', 'he', 'sold', 'me', "ladies'", 'glasses', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', '||period||', '||period||', '||period||', 'i', 'think', "i'm", '||period||', '||period||', '||period||', "i'm", 'having', 'trouble', 'swallowing', '||period||', 'i', "can't", '||period||', '||period||', '||period||', 'i', "can't", 'swallow', '||period||', '||return||', '||return||', 'kramer:', "she's", 'got', 'rabies', '||comma||', 'just', 'like', 'my', 'friend', 'bob', 'sacamano', '||period||', "she's", 'delirious', '||period||', '||leftparen||', 'elaine', 'drinks', 'some', 'water', 'and', 'drools', '||rightparen||', "she's", 'foaming', 'at', 'the', 'mouth', '||exclammark||', '||return||', '||return||', 'elaine:', 'is', 'this', 'gonna', 'hurt', '||questionmark||', '||return||', '||return||', 'docter:', 'yes', '||comma||', 'very', 'much', '||period||', '||return||', '||return||', 'elaine:', 'what', 'if', "jeffrey's", 'not', 'home', '||period||', 'did', 'you', 'ever', 'think', 'of', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', "he'll", 'be', 'home', '||comma||', "it's", 'friday', 'night', '||period||', "that's", 'the', 'big', 'night', 'on', 'the', 'nature', 'channel', '||period||', '||return||', '||return||', 'elaine:', 'let', 'me', 'tell', 'you', 'this', 'there', 'is', 'no', 'way', 'cousin', 'jeffrey', 'is', 'dating', 'amy', '||period||', 'he', 'looks', 'like', 'a', 'horse', '||exclammark||', '||return||', '||return||', 'jerry:', 'he', 'does', 'look', 'like', 'a', 'horse', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "he's", 'got', 'a', 'real', 'horse', 'face', '||period||', '||leftparen||', 'elaine', '||comma||', 'while', 'looking', 'out', 'the', 'window', '||rightparen||', 'here', '||comma||', 'look', 'at', 'this', '||exclammark||', "it's", 'the', 'guy', 'with', 'the', 'dog', '||exclammark||', '||leftparen||', 'she', 'opens', 'the', 'window', 'and', 'screams', '||rightparen||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'you', 'down', 'there', '||exclammark||', 'remember', 'me', '||questionmark||', 'i', 'had', 'to', 'get', 'shot', 'because', 'of', 'your', 'stupid', 'dog', '||exclammark||', '||return||', '||return||', 'dog', 'owner:', 'hey', 'who', 'are', 'you', 'calling', 'stupid', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'shall', 'we', 'spit', 'on', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', '||comma||', 'come', 'on', '||comma||', "let's", 'go', 'downstairs', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'singing', '||rightparen||', 'oh', 'myyyy', 'papayaaaa', '||period||', '||leftparen||', 'the', 'air', 'conditioner', 'wobbles', '||rightparen||', 'the', 'air', 'conditioner', '||exclammark||', '||leftparen||', 'kramer', 'tries', 'to', 'keep', 'it', 'from', 'falling', 'by', 'holding', "it's", 'cord', '||comma||', 'but', 'it', 'snaps', '||rightparen||', 'i', 'think', 'it', 'got', 'the', 'dog', '||exclammark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'oh', 'boy', '||period||', '||return||', '||return||', 'blind', 'man:', 'excuse', 'me', '||comma||', 'uh', "i'm", 'new', 'here', '||comma||', 'would', 'you', 'mind', 'walking', 'me', 'back', 'to', 'my', 'locker', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'uuh', '||comma||', 'sure', '||comma||', 'why', 'not', '||period||', '||leftparen||', 'the', 'blind', 'man', 'hangs', 'on', 'to', "george's", 'arm', '||rightparen||', 'hey', '||comma||', "that's", 'the', 'guy', '||period||', '||return||', '||return||', 'blind', 'man:', 'what', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'guy', 'that', 'stole', 'my', 'glasses', '||period||', 'this', 'time', 'i', 'got', "'em", '||exclammark||', '||leftparen||', 'george', 'follows', 'the', 'man', 'onto', 'the', 'street', '||comma||', 'dragging', 'the', 'blind', 'man', 'with', 'him', '||rightparen||', 'would', 'you', 'pick', 'it', 'up', 'a', 'little', '||questionmark||', '||return||', '||return||', 'blind', 'man:', 'where', 'the', 'hell', 'are', 'we', 'going', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'getting', 'on', 'a', 'bus', '||comma||', 'damn', '||exclammark||', '||leftparen||', 'to', 'the', 'blind', 'man', '||rightparen||', 'those', 'are', 'nice', 'glasses', '||period||', '||return||', '||return||', 'blind', 'man:', 'i', "don't", 'like', "'em", '||comma||', 'they', 'pinch', 'my', 'nose', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'dwayne', '||comma||', 'my', 'friend', 'and', 'i', 'would', 'like', 'to', 'exchange', 'frames', '||period||', 'could', 'you', 'put', 'his', 'lenses', 'in', 'my', 'frames', 'and', 'mine', 'in', 'his', '||questionmark||', '||return||', '||return||', 'dwayne:', '||leftparen||', 'while', 'eating', 'a', 'candy', 'bar', '||rightparen||', 'yeah', '||comma||', 'we', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'and', "i'd", 'like', 'a', 'discount', '||period||', '||return||', '||return||', 'dwayne:', 'why', 'should', 'i', 'give', 'you', 'a', 'discount', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', "you're", 'lucking', "i'm", 'not', 'asking', 'for', 'a', 'whole', 'refund', '||period||', '||leftparen||', 'trying', 'to', 'speak', 'quietly', '||rightparen||', 'you', 'gave', 'me', "ladies'", 'frames', '||exclammark||', '||return||', '||return||', 'blind', 'man:', "what's", 'that', 'about', "ladies'", 'frames', '||questionmark||', '||return||', '||return||', 'dog', 'owner:', "i'm", 'trying', 'to', 'track', 'down', 'that', 'lady', 'that', 'was', 'in', 'here', 'the', 'other', 'day', '||comma||', 'the', 'one', 'that', 'was', 'messing', 'with', 'my', 'dog', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', '||comma||', "she's", 'trying', 'to', 'track', 'you', 'down', '||period||', '||return||', '||return||', 'dog', 'owner:', 'well', 'i', 'would', 'love', 'to', 'talk', 'with', 'her', '||period||', '||leftparen||', 'george', 'chuckles', '||rightparen||', 'she', 'lives', 'on', '81st', 'street', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'jerry', '||period||', '||return||', '||return||', 'dog', 'owner:', 'really', '||questionmark||', 'you', "wouldn't", 'happen', 'to', 'know', 'what', 'apartment', "he's", 'in', '||comma||', 'would', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', '5a', '||exclammark||', '||return||', '||return||', 'dog', 'owner:', 'thanks', 'a', 'lot', '||exclammark||', '||return||', '||return||', 'amy:', 'so', 'what', 'are', 'we', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you'll", 'find', 'out', '||period||', '||return||', '||return||', 'amy:', 'i', "don't", 'know', '||comma||', "you're", 'acting', 'very', 'mysteriously', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'very', 'mysterious', 'by', 'nature', '||period||', '||leftparen||', 'jerry', 'knocks', 'on', 'the', 'door', '||rightparen||', 'a', 'lot', 'of', 'women', 'find', 'that', 'attractive', '||period||', '||return||', '||return||', 'amy:', 'i', 'find', 'it', 'annoying', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'helloooo', '||exclammark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||questionmark||', '||exclammark||', '||return||', '||return||', 'uncle', 'leo:', 'come', 'on', 'in', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'amy', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'hello', 'amy', '||period||', '||return||', '||return||', 'jerry:', 'unlce', 'leo', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'jeffrey', 'went', 'out', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'ooh', '||exclammark||', 'very', 'convenient', '||period||', '||return||', '||return||', 'uncle', 'leo:', "i'm", 'supposed', 'to', 'tape', 'this', 'nature', 'show', 'for', 'him', '||comma||', 'he', 'loves', 'nature', '||period||', 'botany', '||comma||', 'zoology', '||period||', 'you', 'know', 'his', 'botany', 'teacher', 'from', 'college', 'stays', 'in', 'close', 'touch', 'with', 'him', '||questionmark||', 'they', 'became', 'friends', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'really', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', "that's", 'pretty', 'rare', '||exclammark||', 'i', 'mean', '||comma||', 'actual', 'friends', '||exclammark||', 'like', 'equals', '||exclammark||', 'they', 'have', 'dinner', 'together', '||comma||', 'they', 'have', 'discussions', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||exclammark||', 'did', 'he', 'leave', 'any', 'tickets', 'here', 'for', 'me', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'oh', 'yeah', 'yeah', '||comma||', "i'll", 'get', "'em", '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'amy:', 'what', 'tickets', '||questionmark||', '||return||', '||return||', 'jerry:', 'to', 'the', 'paul', 'simon', 'concert', 'in', 'the', 'park', '||exclammark||', '||return||', '||return||', 'amy:', "we're", 'going', 'to', 'the', 'paul', 'simon', 'concert', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'lady', '||exclammark||', '||return||', '||return||', 'amy:', 'oh', 'what', 'a', 'great', 'surprise', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'thought', "you'd", 'like', 'that', '||period||', '||return||', '||return||', 'amy:', 'oooh', '||comma||', 'so', "that's", 'why', "you've", 'been', 'acting', 'so', 'mysteriously', '||period||', '||return||', '||return||', 'jerry:', 'now', 'you', 'know', '||period||', 'that', '||comma||', 'and', 'that', 'alone', '||comma||', 'is', 'the', 'reason', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'you', 'know', "jeffrey's", 'favorite', 'animal', 'the', 'leopard', '||period||', '||return||', '||return||', 'amy:', 'why', 'is', 'that', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'he', 'likes', 'the', 'spots', '||period||', 'oh', 'uh', '||comma||', "here's", 'the', 'tickets', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'oh', 'uh', '||comma||', 'he', 'asked', 'me', 'to', 'give', 'you', 'a', 'message', '||period||', 'he', 'said', 'that', 'uh', "he's", 'very', 'sorry', 'and', 'uh', 'he', 'hopes', "you'll", 'forgive', "'em", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'amy', '||rightparen||', 'aha', '||exclammark||', 'so', "it's", 'true', '||exclammark||', 'you', 'were', 'making', 'out', 'with', 'him', '||exclammark||', '||return||', '||return||', 'amy:', 'what', 'are', 'you', 'talking', 'about', '||comma||', 'i', "don't", 'know', 'jeffrey', '||period||', 'oh', 'so', 'this', 'is', 'why', 'you', 'brought', 'me', 'up', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'very', 'convincing', '||comma||', 'but', "it's", 'not', 'gonna', 'work', 'this', 'time', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'all', 'he', 'meant', 'was', 'that', 'he', 'was', 'sorry', 'that', 'the', 'seats', "aren't", 'very', 'good', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'oh', '||period||', '||period||', '||period||', 'wanna', 'get', 'some', 'pizza', '||questionmark||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'these', 'really', 'do', 'pinch', 'the', 'nose', '||period||', '||return||', '||return||', 'blind', 'man:', 'tough', 'luck', '||exclammark||', 'a', "deal's", 'a', 'deal', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', 'it', 'is', 'them', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "don't", 'know', 'how', 'you', 'spotted', 'that', 'dime', '||period||', 'i', 'think', 'you', 'planted', 'it', '||period||', 'plus', 'i', 'had', 'to', 'pay', 'that', 'vet', 'bill', 'for', 'the', 'stupid', 'dog', '||period||', 'i', "don't", 'know', 'how', 'that', 'guy', 'got', 'my', 'name', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hmm', '||period||', 'boy', 'these', 'really', 'do', 'pinch', '||period||', 'i', 'tell', 'you', '||comma||', 'if', 'i', 'ever', 'find', 'the', 'son', 'of', 'a', 'bitch', 'that', 'stole', 'my', 'glasses', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'does', 'he', 'like', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'like', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', 'like', 'him', '||comma||', 'definitely', 'like', 'him', '||period||', 'i', 'like', 'him', 'a', 'lot', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "what's", 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||comma||', 'and', "i've", 'looked', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'sure', "you'll", 'find', 'something', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'how', 'did', 'you', 'meet', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'in', 'the', 'office', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "he's", 'a', 'writer', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'big', 'surprise', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'i', 'was', 'sitting', 'at', 'the', 'reception', 'desk', '||comma||', 'i', 'was', 'looking', 'pretty', 'hot', '||period||', 'i', 'was', 'wearing', 'my', 'sling', 'back', 'pumps', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'those', '||questionmark||', '||return||', '||return||', 'elaine:', 'ask', 'your', 'mother', '||comma||', '||leftparen||', 'making', 'fun', 'of', "george's", 'living', 'situation', '||rightparen||', 'you', 'live', 'with', 'her', 'now', '||comma||', "don't", 'you', '||questionmark||', 'anyway', '||comma||', 'so', 'then', 'this', 'guy', 'comes', 'up', 'to', 'me', 'and', 'starts', 'feeling', 'my', 'jacket', 'through', 'his', 'thumb', 'and', 'his', 'forefinger', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'said', '||quotemark||', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||quotemark||', '||period||', 'and', 'he', 'said', '||comma||', '||quotemark||', 'gabardine', '||questionmark||', '||quotemark||', '||period||', 'and', 'i', 'said', '||comma||', '||quotemark||', 'yeah', '||period||', '||quotemark||', 'that', 'was', 'it', '||period||', '||return||', '||return||', 'george:', 'wow', '||comma||', 'just', 'felt', 'your', 'material', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', '||period||', 'jake', 'jarmel', '||period||', '||return||', '||return||', 'george:', 'sounds', 'like', 'a', 'cool', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'sounds', 'like', 'a', 'jerk', '||period||', 'felt', 'your', 'material', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'where', 'did', 'you', 'get', 'that', 'sweater', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', 'i', 'found', 'it', 'at', 'the', 'back', 'of', 'my', 'closet', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "that's", 'what', 'the', 'back', 'of', 'closets', 'are', 'for', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "that's", 'barry', '||period||', 'look', "it's", 'barry', '||period||', '||leftparen||', 'taps', 'on', 'the', 'window', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taps', 'on', 'the', 'window', '||rightparen||', 'hey', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'george:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'barry', 'prophet', '||comma||', "he's", 'our', 'accountant', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'how', 'you', 'can', 'let', 'this', 'guy', 'handle', 'all', 'your', 'money', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'he', "doesn't", 'handle', 'my', 'money', '||comma||', 'he', 'handles', "jerry's", 'money', '||period||', 'he', 'just', 'does', 'my', 'taxes', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'barry', '||comma||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'barry:', 'hey', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'my', 'friend', 'george', '||period||', '||return||', '||return||', 'barry:', 'hi', 'george', '||period||', '||leftparen||', 'shakes', "george's", 'hand', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'what', 'are', 'you', 'doing', 'on', 'this', 'neighborhood', '||questionmark||', '||return||', '||return||', 'barry:', 'nothing', 'really', '||period||', '||leftparen||', 'sniffs', '||semicolon||', 'looks', 'around', '||rightparen||', 'you', '||comma||', 'eh', '||comma||', 'you', 'eat', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', "how's", 'my', 'money', '||questionmark||', '||return||', '||return||', 'barry:', 'well', "it's", 'still', 'green', '||period||', '||leftparen||', 'sniffs', 'twice', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'you', 'got', 'a', 'cold', '||questionmark||', '||return||', '||return||', 'barry:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||comma||', 'look', 'at', 'that', 'ring', '||period||', '||return||', '||return||', 'barry:', '||leftparen||', 'showing', 'off', 'the', 'ring', 'to', 'elaine', '||rightparen||', 'oh', '||comma||', 'uh', 'you', 'like', 'that', '||questionmark||', '||leftparen||', 'elaine', 'not', 'amused', 'gives', 'barry', 'a', 'polite', 'laugh', '||semicolon||', 'barry', 'sniffs', '||rightparen||', 'say', 'uh', '||comma||', "where's", 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'jerry:', 'bathroom', 'uh', '||comma||', "bathroom's", 'uh', 'right', 'over', 'there', '||period||', '||return||', '||return||', 'barry:', '||leftparen||', 'turns', 'looking', 'in', 'the', 'direction', 'jerry', 'mentioned', '||rightparen||', 'oh', '||comma||', 'great', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'see', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'see', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'saw', 'that', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'was', 'all', 'that', 'sniffing', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'think', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||exclammark||', 'come', 'on', 'jerry', '||period||', '||return||', '||return||', 'george:', 'he', 'was', 'definitely', 'sniffing', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'what', 'if', '||comma||', 'what', 'if', '||comma||', 'this', 'this', 'guy', 'has', 'got', 'all', 'my', 'money', '||period||', 'plus', 'he', 'has', 'got', 'some', "kramer's", 'money', 'with', 'him', '||period||', 'this', 'guy', 'could', 'write', 'checks', 'to', 'himself', 'right', 'out', 'of', 'my', 'account', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'have', 'known', 'this', 'guy', 'since', 'college', '||period||', 'he', "doesn't", 'do', 'drugs', '||period||', '||return||', '||return||', 'jerry:', 'then', '||comma||', 'what', 'was', 'all', 'that', 'sniffing', '||questionmark||', '||return||', '||return||', 'elaine:', 'maybe', "it's", 'the', 'cold', 'weather', '||period||', '||return||', '||return||', 'jerry:', "today's", 'not', 'cold', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'i', 'gotta', 'get', 'going', '||period||', 'my', 'parents', 'are', 'expecting', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'making', 'fun', 'of', 'george', 'as', 'he', 'leaves', '||rightparen||', "don't", 'forget', 'to', 'wash', 'your', 'hands', 'before', 'supper', '||period||', '||return||', '||return||', 'frank:', 'why', 'do', 'you', 'need', 'all', 'that', 'ketchup', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'my', 'ketchup', '||period||', 'i', 'bought', 'this', 'ketchup', 'just', 'so', 'i', 'could', 'have', 'as', 'much', 'as', 'i', 'want', '||period||', '||return||', '||return||', 'frank:', 'so', 'i', '||comma||', 'i', 'talked', 'to', 'phil', 'casacof', 'today', '||period||', '||return||', '||return||', 'estelle:', 'phil', 'casacof', '||questionmark||', '||return||', '||return||', 'frank:', 'yeah', '||comma||', 'you', 'know', 'my', 'friend', '||comma||', 'the', 'bra', 'salesman', '||period||', 'he', 'says', 'they', 'are', 'looking', 'maybe', 'to', 'put', 'somebody', 'on', 'so', 'i', 'got', 'you', 'an', 'interview', 'next', 'friday', 'with', 'his', 'boss', '||period||', '||return||', '||return||', 'george:', 'next', 'friday', '||comma||', 'what', 'time', '||questionmark||', '||return||', '||return||', 'frank:', '2', "o'clock", '||period||', '||return||', '||return||', 'george:', "that's", 'my', 'whole', 'afternoon', '||exclammark||', 'i', 'was', 'going', 'to', 'look', 'for', 'sneakers', '||period||', '||return||', '||return||', 'frank:', 'you', 'can', 'look', 'for', 'sneakers', 'the', 'next', 'day', '||exclammark||', '||return||', '||return||', 'estelle:', 'he', "doesn't", 'know', 'anything', 'about', 'bras', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'a', 'little', '||period||', 'besides', '||comma||', 'what', 'do', 'you', 'have', 'to', 'know', '||questionmark||', '||return||', '||return||', 'frank:', 'well', '||comma||', 'it', "wouldn't", 'hurt', 'to', 'go', 'in', 'the', 'and', 'be', 'able', 'to', 'discuss', 'it', 'intelligently', '||period||', 'maybe', 'you', 'should', 'take', 'a', 'look', 'at', 'a', 'few', 'bras', '||questionmark||', '||leftparen||', 'to', 'estelle', '||rightparen||', 'where', 'is', 'you', 'bra', '||questionmark||', 'give', 'him', 'a', 'bra', 'to', 'look', '||period||', '||return||', '||return||', 'estelle:', 'i', 'am', 'not', 'giving', 'him', 'a', 'bra', '||period||', '||return||', '||return||', 'frank:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'estelle:', 'because', 'i', "don't", 'need', 'him', 'looking', 'at', 'my', 'bra', '||period||', '||return||', '||return||', 'frank:', 'why', '||comma||', 'so', "he'll", 'go', 'to', 'the', 'interview', 'and', 'he', "wouldn't", 'know', 'what', "he's", 'talking', 'about', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'do', 'we', 'have', 'to', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'frank:', 'you', "don't", 'even', 'know', 'what', "they're", 'made', 'from', '||period||', '||return||', '||return||', 'george:', 'they', 'are', 'made', 'from', 'lycra', '||dash||', 'spandex', '||period||', '||return||', '||return||', 'frank:', 'get', 'out', 'of', 'here', '||exclammark||', 'lycra', '||dash||', 'spandex', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', 'think', 'they', 'are', 'made', 'from', 'lycra', '||dash||', 'spandex', '||period||', '||return||', '||return||', 'frank:', 'wanna', 'bet', '||questionmark||', 'how', 'much', 'you', 'wanna', 'bet', '||questionmark||', '||return||', '||return||', 'estelle:', "i'm", 'not', 'betting', '||exclammark||', '||return||', '||return||', 'frank:', 'take', 'a', 'look', '||period||', '||return||', '||return||', 'estelle:', 'all', 'right', '||comma||', "i'll", 'get', 'a', 'bra', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'yelling', 'to', 'estelle', 'as', 'she', 'leaves', '||rightparen||', 'i', "don't", 'know', 'what', 'the', 'big', 'problem', 'is', 'getting', 'a', 'bra', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'she', "doesn't", 'want', 'to', 'get', 'a', 'bra', '||period||', '||return||', '||return||', 'frank:', "i'm", 'not', 'saying', 'go', 'to', 'the', 'library', 'and', 'read', 'the', 'whole', 'history', '||comma||', 'but', 'it', "wouldn't", 'kill', 'you', 'to', 'know', 'a', 'little', 'bit', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'it', "wouldn't", 'kill', 'me', '||period||', '||return||', '||return||', 'frank:', 'how', 'long', 'it', 'takes', 'to', 'find', 'a', 'bra', '||questionmark||', "what's", 'going', 'on', 'in', 'there', '||questionmark||', 'you', 'ask', 'me', 'to', 'get', 'a', 'pair', 'of', 'underwear', '||comma||', "i'm", 'back', 'in', 'two', 'seconds', '||period||', '||period||', '||period||', 'you', 'know', 'about', 'the', 'uh', 'cup', 'sizes', 'and', 'all', '||questionmark||', 'they', 'have', 'different', 'cups', '||period||', '||return||', '||return||', 'george:', 'yea', 'i', '||dash||', 'i', 'know', 'about', 'the', 'cups', '||period||', '||return||', '||return||', 'frank:', 'you', 'got', 'the', 'a', '||comma||', 'the', 'b', '||comma||', 'the', 'c', 'and', 'the', 'd', '||period||', "that's", 'the', 'biggest', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'the', 'd', 'is', 'the', 'biggest', '||period||', "i've", 'based', 'my', 'whole', 'life', 'on', 'knowing', 'that', 'the', 'd', 'is', 'the', 'biggest', '||period||', '||return||', '||return||', 'estelle:', 'here', '||comma||', "here's", 'the', 'bra', '||period||', '||return||', '||return||', 'frank:', 'let', 'me', 'see', 'it', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'reading', 'the', 'bra', '||rightparen||', '100%', 'lycra', '||dash||', 'spandex', '||period||', '||return||', '||return||', 'frank:', 'let', 'me', 'see', 'it', '||period||', '||return||', '||return||', 'estelle:', 'i', 'told', 'you', '||period||', 'here', '||comma||', 'think', 'you', 'know', 'everything', '||questionmark||', '||return||', '||return||', 'frank:', 'hmm', '||comma||', "that's", 'surprising', '||period||', 'all', 'right', '||comma||', 'what', 'else', '||questionmark||', 'you', 'got', 'the', 'cups', 'in', 'the', 'front', '||comma||', 'two', 'loops', 'in', 'the', 'back', '||period||', 'all', 'right', '||comma||', 'a', 'guess', "that's", 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'it', '||period||', 'cups', 'in', 'the', 'front', '||comma||', 'loops', 'in', 'the', 'back', '||period||', '||leftparen||', 'puts', 'the', 'bra', 'on', 'the', 'table', '||rightparen||', '||return||', '||return||', 'estelle:', 'you', 'got', 'ketchup', 'on', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'sniffing', '||comma||', 'what', 'do', 'you', 'mean', 'sniffing', '||questionmark||', '||return||', '||return||', 'jerry:', 'sniffing', '||comma||', 'with', 'his', 'nose', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'he', 'probably', 'had', 'a', 'cold', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'asked', 'him', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'you', 'know', '||comma||', 'what', 'if', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'drugs', '||questionmark||', 'you', 'think', "he's", 'on', 'drugs', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||return||', '||return||', 'jerry:', 'all', 'i', 'know', 'he', 'was', 'sniffing', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'we', 'went', 'in', 'on', 'a', 'cd', 'together', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', 'and', 'newman', 'gave', 'you', 'money', 'too', '||period||', 'so', '||comma||', 'i', "didn't", 'even', 'meet', 'this', 'guy', '||period||', 'you', 'know', '||comma||', 'we', 'trusted', 'you', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'it', "doesn't", 'necessarily', 'mean', 'anything', 'yet', '||comma||', 'it', 'just', 'means', 'he', 'was', 'sniffing', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'else', '||questionmark||', 'was', 'he', 'nervous', '||questionmark||', 'did', 'he', 'use', 'a', 'lot', 'of', 'slang', '||questionmark||', 'did', 'he', 'use', 'the', 'word', "'man'", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'he', "didn't", 'use', "'man'", '||period||', '||return||', '||return||', 'kramer:', 'i', 'mean', 'when', 'he', 'was', 'leaving', 'did', 'he', 'say', '||quotemark||', "i'm", "splittin'", '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'in', 'one', 'point', 'he', 'did', 'use', 'the', 'bathroom', '||period||', '||return||', '||return||', 'kramer:', 'whoh', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'think', "that's", 'a', 'bad', 'sign', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', '||exclammark||', 'yes', '||comma||', "that's", 'what', 'they', 'do', '||exclammark||', 'they', 'live', 'in', 'the', 'bathroom', '||exclammark||', 'all', 'right', '||comma||', 'what', 'are', 'we', 'going', 'to', 'do', '||questionmark||', 'we', 'are', 'going', 'to', 'get', 'our', 'money', 'back', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||leftparen||', 'takes', 'off', 'his', 'sweater', '||rightparen||', 'this', 'sweater', 'really', 'itches', 'me', '||period||', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'grabbing', 'the', 'sweater', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||period||', '||period||', '||period||', 'hello', '||comma||', 'oh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'well', '||comma||', 'you', 'notice', 'anything', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'have', 'cleaned', 'out', 'the', 'whole', 'apartment', 'and', "you're", 'making', 'dinner', '||period||', "you're", 'perfect', '||comma||', "you're", 'a', 'perfect', 'man', '||period||', '||return||', '||return||', 'jake:', 'ooh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'did', 'anyone', 'call', '||questionmark||', '||return||', '||return||', 'jake:', 'you', 'got', 'a', 'few', 'messages', '||comma||', 'i', 'wrote', 'them', 'down', '||period||', '||return||', '||return||', 'elaine:', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'jake:', 'lets', 'see', '||comma||', 'they', 'are', '||leftparen||', 'looking', 'for', 'the', 'paper', '||semicolon||', 'finds', 'it', '||semicolon||', 'hands', 'it', 'to', 'elaine', '||rightparen||', 'here', 'they', 'are', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||period||', '||leftparen||', 'looking', 'at', 'the', 'messages', '||rightparen||', 'oh', 'ya', '||comma||', 'heh', '||comma||', "i'll", 'call', 'you', 'back', '||period||', 'ooh', '||comma||', 'myra', 'had', 'the', 'baby', '||exclammark||', 'oh', '||comma||', 'my', 'god', "that's", 'wonderful', '||exclammark||', 'who', 'called', '||questionmark||', '||return||', '||return||', 'jake:', 'she', 'did', '||period||', '||return||', '||return||', 'elaine:', 'she', 'did', '||questionmark||', 'oh', '||comma||', "that's", 'so', 'great', '||exclammark||', '||return||', '||return||', 'jake:', 'where', 'do', 'you', 'keep', 'the', 'corkscrew', '||questionmark||', '||return||', '||return||', 'elaine:', 'in', 'the', 'drawer', 'on', 'the', 'right', '||period||', 'hmm', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'nah', "it's", 'nothing', '||period||', '||return||', '||return||', 'jake:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'nothing', '||period||', '||return||', '||return||', 'jake:', 'tell', 'me', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'was', 'just', 'curious', 'why', 'you', "didn't", 'use', 'an', 'exclamation', 'point', '||questionmark||', '||return||', '||return||', 'jake:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'right', 'here', 'you', 'wrote', '||quotemark||', 'myra', 'had', 'the', 'baby', '||quotemark||', '||comma||', 'but', 'you', "didn't", 'use', 'an', 'exclamation', 'point', '||period||', '||return||', '||return||', 'jake:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "it's", 'ya', 'nothing', '||period||', 'forget', 'it', '||comma||', 'forget', 'it', '||comma||', 'i', 'just', 'find', 'it', 'curious', '||period||', '||return||', '||return||', 'jake:', "what's", 'so', 'curious', 'about', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'mean', 'if', 'one', 'of', 'your', 'close', 'friends', 'had', 'a', 'baby', 'and', 'i', 'left', 'you', 'a', 'message', 'about', 'it', '||comma||', 'i', 'would', 'use', 'an', 'exclamation', 'point', '||period||', '||return||', '||return||', 'jake:', 'well', '||comma||', 'maybe', 'i', "don't", 'use', 'my', 'exclamation', 'points', 'as', 'haphazardly', 'as', 'you', 'do', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'think', 'that', 'someone', 'having', 'a', 'baby', 'warrants', 'an', 'exclamation', 'point', '||period||', '||return||', '||return||', 'jake:', 'hey', 'look', '||comma||', 'i', 'just', 'chalked', 'down', 'the', 'message', '||period||', 'i', "didn't", 'know', 'i', 'was', 'required', 'to', 'capture', 'the', 'mood', 'of', 'each', 'caller', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'thought', 'you', 'would', 'be', 'a', 'little', 'more', 'excited', 'about', 'a', 'friend', 'of', 'mine', 'having', 'a', 'baby', '||period||', '||return||', '||return||', 'jake:', 'ok', '||comma||', "i'm", 'excited', '||period||', 'i', 'just', "don't", 'happen', 'to', 'like', 'exclamation', 'points', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', 'jake', '||comma||', 'you', 'should', 'learn', 'to', 'use', 'them', '||period||', 'like', 'the', 'way', "i'm", 'talking', 'right', 'now', '||comma||', 'i', 'would', 'put', 'an', 'exclamation', 'points', 'at', 'the', 'end', 'of', 'all', 'these', 'sentences', '||exclammark||', 'on', 'this', 'one', '||exclammark||', 'and', 'on', 'that', 'one', '||exclammark||', '||return||', '||return||', 'jake:', 'well', '||comma||', 'you', 'can', 'put', 'one', 'on', 'this', 'one', "i'm", 'leaving', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'out', 'of', 'your', 'mind', 'you', 'know', 'that', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'an', 'exclamation', 'point', '||exclammark||', "it's", 'a', 'line', 'with', 'a', 'dot', 'under', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'felt', 'a', 'call', 'for', 'one', '||period||', '||return||', '||return||', 'jerry:', 'a', 'call', 'for', 'one', '||comma||', 'you', 'know', 'i', 'thought', "i've", 'heard', 'everything', '||period||', "i've", 'never', 'heard', 'a', 'relationship', 'being', 'affected', 'by', 'a', 'punctuation', '||period||', '||return||', '||return||', 'elaine:', 'i', 'found', 'it', 'very', 'troubling', 'that', 'he', "didn't", 'use', 'one', '||period||', '||return||', '||return||', 'jerry:', 'george', 'was', 'right', '||period||', "didn't", 'take', 'you', 'long', '||period||', '||return||', '||return||', 'kramer:', 'anything', 'new', 'with', 'that', 'guy', 'on', 'drugs', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'not', 'on', 'drugs', '||period||', '||return||', '||return||', 'kramer:', 'then', 'why', 'the', 'sniffing', '||questionmark||', 'who', 'walks', 'around', '||leftparen||', 'sniff', '||comma||', 'sniff', '||rightparen||', 'sniffing', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'here', '||comma||', 'you', 'call', 'him', 'right', 'now', '||period||', 'see', 'if', "he's", 'sniffing', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'good', 'idea', '||period||', '||leftparen||', 'jerry', 'calls', "barry's", 'office', '||rightparen||', '||return||', '||return||', 'voice', 'on', 'the', 'phone:', 'prophet', 'and', 'goldstein', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', "i'd", 'like', 'to', 'speak', 'to', 'barry', 'prophet', '||comma||', 'please', '||period||', '||return||', '||return||', 'voice:', "i'm", 'sorry', "he's", 'out', 'of', 'town', 'this', 'week', '||period||', '||return||', '||return||', 'jerry:', 'out', 'of', 'town', '||questionmark||', '||return||', '||return||', 'voice:', 'yes', '||comma||', 'he', 'went', 'to', 'south', 'america', '||period||', '||return||', '||return||', 'jerry:', 'south', 'america', '||questionmark||', '||return||', '||return||', 'kramer:', 'south', 'america', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'call', 'back', '||comma||', 'thank', 'you', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'he', 'went', 'to', 'south', 'america', '||exclammark||', '||return||', '||return||', 'kramer:', 'yyyeeaaah', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'goes', 'to', 'south', 'america', '||questionmark||', '||return||', '||return||', 'elaine:', 'people', 'go', 'to', 'south', 'america', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'they', 'come', 'back', 'with', 'things', 'taped', 'to', "they're", 'large', 'intestine', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'because', 'of', 'a', 'few', 'bad', 'apples', "you're", 'gonna', 'impugn', 'an', 'entire', 'continent', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', "i'm", 'impugning', 'a', 'continent', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'say', "we're", 'going', 'to', 'take', 'our', 'money', 'right', 'now', '||exclammark||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'hey', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'so', '||comma||', 'any', 'news', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'he', 'skipped', 'out', 'and', '*ptruut*', 'went', 'to', 'south', 'america', '||exclammark||', '||return||', '||return||', 'newman:', 'south', 'america', '||questionmark||', '||exclammark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', 'kind', 'of', 'snow', 'blower', 'you', 'get', 'us', 'mixed', 'up', 'with', '||questionmark||', '||return||', '||return||', 'elaine:', 'look', 'it', '||comma||', 'gentlemen', '||period||', 'the', 'fact', 'remains', 'you', 'still', 'have', 'no', 'proof', '||period||', 'this', 'is', 'all', 'speculation', 'and', 'hearsay', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'there', 'is', 'one', 'way', 'to', 'find', 'out', '||period||', 'we', 'set', 'up', 'a', 'sting', '||period||', 'you', 'know', 'like', 'abscam', '||period||', 'like', 'abscam', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||comma||', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', 'you', 'gonna', 'put', 'on', 'phony', 'beards', 'and', 'dress', '||dash||', 'up', 'like', 'arab', 'sheiks', 'and', 'sit', 'around', 'in', 'some', 'hotel', 'room', '||period||', 'i', 'mean', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', 'maybe', 'there', 'is', 'someway', 'we', 'can', 'tempt', 'him', 'and', 'find', 'out', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'if', 'we', 'put', 'our', 'three', 'heads', 'together', 'we', 'should', 'come', 'up', 'with', 'something', '||period||', '||return||', '||return||', 'kramer:', "what's", 'today', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'thursday', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', 'feels', 'like', 'tuesday', '||period||', '||return||', '||return||', 'newman:', 'tuesday', 'has', 'no', 'feel', '||period||', 'monday', 'has', 'a', 'feel', '||comma||', 'friday', 'has', 'a', 'feel', '||comma||', 'sunday', 'has', 'a', 'feel', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'feel', 'tuesday', 'and', 'wednesday', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'shut', 'up', 'the', 'both', 'of', 'you', '||exclammark||', "you're", 'making', 'me', 'nervous', '||period||', 'where', 'is', 'he', 'already', '||questionmark||', 'he', "should've", 'been', 'out', 'of', 'work', 'by', 'now', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'you', 'know', 'this', 'is', 'kind', 'of', 'fun', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'maybe', 'we', 'oughta', 'become', 'private', 'detectives', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'maybe', 'you', 'should', '||period||', '||return||', '||return||', 'kramer:', 'maybe', 'i', 'will', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'what', 'are', 'you', 'gonna', 'say', 'to', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'gonna', 'find', 'out', 'if', "he's", 'interested', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'hey', 'maybe', 'i', 'should', 'go', 'with', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', 'stay', 'here', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'newman:', 'who', 'made', 'you', 'the', 'leader', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', 'newman', '||comma||', 'one', 'more', 'peep', 'outta', 'you', '||comma||', "you're", 'out', 'of', 'the', 'whole', 'operation', '||exclammark||', '||return||', '||return||', 'newman:', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'there', 'he', 'is', '||period||', "he's", 'going', 'into', 'that', 'bar', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'm", 'going', 'in', '||period||', '||return||', '||return||', 'jerry:', 'be', 'careful', 'kramer', '||period||', '||return||', '||return||', 'newman:', 'i', 'shoulda', 'gone', 'in', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', 'stay', 'here', 'in', 'the', 'car', '||period||', 'i', 'may', 'need', 'you', '||period||', '||return||', '||return||', 'newman:', 'what', 'you', 'need', 'me', 'in', 'the', 'car', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'might', 'need', 'you', 'to', 'get', 'me', 'a', 'soda', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'have', 'a', 'brewsky', '||comma||', 'charlie', '||period||', '||return||', '||return||', 'bartender:', 'the', "name's", 'mitch', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "there's", 'nothing', 'like', 'a', 'cold', 'one', 'after', 'a', 'long', 'day', '||comma||', 'eh', '||questionmark||', '||return||', '||return||', 'barry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "i've", 'been', 'known', 'to', 'drink', 'a', 'beer', 'or', 'two', '||period||', 'but', 'then', 'again', '||comma||', "i've", 'been', 'known', 'to', 'do', 'a', 'lot', 'of', 'things', '||period||', '||leftparen||', 'waiter', 'opens', 'the', 'counter', 'which', 'hits', 'kramer', 'on', 'the', 'head', '||rightparen||', 'cigarette', '||questionmark||', '||return||', '||return||', 'barry:', '||leftparen||', 'sniffs', '||rightparen||', 'no', '||comma||', 'i', 'never', 'touch', 'them', '||period||', '||return||', '||return||', 'kramer:', 'i', "suck'em", 'down', 'like', 'coca', '||dash||', 'cola', '||period||', 'well', "here's", 'to', 'feeling', 'good', 'all', 'the', 'time', '||period||', '||leftparen||', 'kramer', 'drinks', 'the', 'beer', 'and', 'smokes', 'the', 'cigarette', 'at', 'the', 'same', 'time', '||period||', 'barry', 'sniffs', '||rightparen||', 'looks', 'like', "you've", 'got', 'yourself', 'a', 'little', 'cold', 'there', '||comma||', 'eh', 'fella', '||questionmark||', '||return||', '||return||', 'barry:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'me', 'neither', '||period||', '||return||', '||return||', 'jerry:', 'you', 'should', 'try', 'this', 'new', 'dental', 'floss', 'glide', '||comma||', "it's", 'fantastic', '||period||', '||return||', '||return||', 'newman:', 'i', 'use', 'dental', 'tape', '||period||', '||return||', '||return||', 'jerry:', 'you', 'should', 'try', 'this', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'wanna', '||period||', '||return||', '||return||', 'jerry:', 'not', 'even', 'once', '||questionmark||', '||return||', '||return||', 'newman:', 'no', '||period||', '||return||', '||return||', 'jerry:', "you're", 'an', 'idiot', '||period||', '||return||', '||return||', 'newman:', 'why', '||comma||', 'because', 'i', 'use', 'dental', 'tape', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'anyone', 'who', 'uses', 'dental', 'tape', 'is', 'an', 'idiot', '||period||', '||return||', '||return||', 'kramer:', 'south', 'america', '||questionmark||', '||return||', '||return||', 'barry:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'well', "that's", 'a', 'burgeoning', 'continent', '||period||', '||return||', '||return||', 'barry:', 'well', '||comma||', 'they', 'are', 'expanding', 'their', 'economic', 'base', '||period||', '||return||', '||return||', 'kramer:', 'tell', 'me', 'about', 'it', '||period||', '||return||', '||return||', 'barry:', '||leftparen||', 'sniffs', '||rightparen||', 'excuse', 'me', '||comma||', 'i', 'gotta', 'goto', 'the', 'bathroom', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'hip', '||period||', '||return||', '||return||', 'barry:', 'hip', 'to', 'the', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'to', 'the', 'whole', 'scene', '||period||', '||leftparen||', 'sniff', '||rightparen||', '||return||', '||return||', 'barry:', 'what', 'scene', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'bathroom', 'scene', '||period||', '||leftparen||', 'moves', 'his', 'knows', 'as', 'you', 'would', 'if', 'you', 'sniffed', '||rightparen||', '||return||', '||return||', 'barry:', 'listen', '||comma||', "don't", 'take', 'this', 'personally', '||comma||', 'but', 'when', "i'm", 'coming', 'back', "i'm", 'sitting', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'what', 'ever', 'turns', 'you', 'on', '||period||', '||return||', '||return||', 'newman:', 'no', '||comma||', 'no', 'i', "don't", 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'you', "don't", 'like', 'it', '||questionmark||', 'how', 'could', 'you', 'not', 'like', 'it', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'like', 'the', 'thick', 'tape', '||period||', '||return||', '||return||', 'barry:', 'heeyy', '||exclammark||', '||exclammark||', 'what', 'kind', 'of', 'a', 'nut', 'are', 'you', '||questionmark||', '||return||', '||return||', 'farkus:', 'so', '||comma||', 'basically', 'george', 'the', 'job', 'here', 'is', 'quite', 'simple', '||period||', 'selling', 'bras', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'that', 'interests', 'me', 'very', 'much', 'mr', '||period||', 'farkus', '||period||', 'very', 'much', 'indeed', '||comma||', 'sir', '||period||', '||return||', '||return||', 'farkus:', 'have', 'you', 'ever', 'sold', 'a', "woman's", 'line', 'before', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'but', 'um', 'i', 'have', 'very', 'good', 'report', 'with', 'women', '||comma||', 'very', 'good', '||comma||', 'comfortable', '||period||', 'and', 'from', 'the', 'first', 'time', 'i', 'laid', 'eyes', 'on', 'a', 'brassieres', '||comma||', 'i', 'was', 'enthralled', '||period||', '||return||', '||return||', 'farkus:', 'hum', '||period||', 'tell', 'me', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'was', '14', 'years', 'old', '||period||', 'i', 'was', 'in', 'my', 'friends', 'bathroom', '||period||', 'his', "mother's", 'brassieres', 'were', 'hanging', 'on', 'the', 'shower', 'rod', 'and', 'i', 'picked', 'it', 'up', '||comma||', 'studied', 'it', '||period||', 'i', 'thought', '||comma||', 'i', 'like', 'this', '||period||', 'i', "didn't", 'know', 'what', 'way', 'or', 'what', 'level', '||comma||', 'but', 'i', 'knew', 'i', 'wanted', 'to', 'be', 'around', 'brassieres', '||period||', '||return||', '||return||', 'farkus:', "that's", 'an', 'incredible', 'story', '||period||', 'you', 'have', 'a', 'remarkable', 'passion', 'for', 'brassieres', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "they're", 'more', 'than', 'an', 'underwear', 'to', 'me', 'mr', '||period||', 'farkus', '||period||', 'two', 'cups', 'in', 'the', 'front', '||comma||', 'two', 'loops', 'in', 'the', 'back', '||period||', 'how', 'do', 'they', 'do', 'it', '||questionmark||', '||return||', '||return||', 'farkus:', 'well', '||comma||', 'i', 'think', 'i', 'can', 'say', '||comma||', 'barring', 'some', 'unforeseen', 'incident', '||comma||', 'that', 'you', 'will', 'have', 'a', 'very', 'bright', 'future', 'here', 'at', 'e', '||period||', 'd', '||period||', 'granmont', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', 'mr', '||period||', 'farkus', '||comma||', 'thank', 'you', 'very', 'much', 'indeed', 'sir', '||period||', '||return||', '||return||', 'farkus:', 'see', 'you', 'monday', '9', "o'clock", '||period||', '||return||', '||return||', 'george:', 'if', 'you', "don't", 'mind', '||comma||', 'sir', '||period||', "i'll", 'be', 'here', 'at', '8', '||period||', '||return||', '||return||', 'farkus:', 'excellent', '||period||', '||return||', '||return||', 'george:', 'so', 'long', '||comma||', 'mr', '||period||', 'farkus', '||period||', '||return||', '||return||', 'ms', '||period||', 'de', 'granmont:', 'what', "you're", 'think', "you're", 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'nothing', '||period||', '||period||', '||period||', '||return||', '||return||', 'ms', '||period||', 'de', 'granmont:', 'farkus', '||comma||', 'get', 'out', 'here', '||exclammark||', '||return||', '||return||', 'farkus:', 'yes', '||comma||', 'ms', '||period||', 'de', 'granmont', '||questionmark||', '||return||', '||return||', 'ms', '||period||', 'de', 'granmont:', 'farkus', '||comma||', 'who', 'is', 'this', 'pervert', 'little', 'weasel', '||questionmark||', '||return||', '||return||', 'farkus:', 'uh', '||comma||', 'this', 'is', 'costanza', '||comma||', "he's", 'our', 'new', 'bra', 'salesman', '||period||', '||leftparen||', "george's", 'offers', 'his', 'hand', 'to', 'shake', '||rightparen||', "he's", 'supposed', 'to', 'start', 'on', 'monday', '||period||', '||return||', '||return||', 'ms', '||period||', 'de', 'granmont:', 'if', "he's", 'here', 'on', 'monday', '||comma||', "you're", 'not', '||period||', 'take', 'a', 'pick', '||period||', '||return||', '||return||', 'farkus:', '||leftparen||', 'to', 'george', '||rightparen||', 'get', 'out', '||exclammark||', '||leftparen||', 'to', 'ms', '||period||', 'de', 'granmont', '||rightparen||', "i'm", 'terribly', 'sorry', 'ms', '||period||', 'de', 'granmont', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'mr', '||period||', 'lippman', '||questionmark||', '||return||', '||return||', 'lippman:', 'i', 'was', 'just', 'uh', 'going', 'over', 'the', 'jake', 'jarmel', 'book', 'and', 'i', 'understand', 'you', 'worked', 'with', 'him', 'very', 'closely', 'on', 'this', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||leftparen||', 'clears', 'her', 'throat', '||rightparen||', 'yes', 'i', 'did', '||period||', '||return||', '||return||', 'lippman:', 'and', 'uh', '||comma||', 'anyway', 'i', 'was', 'just', 'reading', 'your', 'final', 'edit', 'and', 'um', '||comma||', 'there', 'seems', 'to', 'be', 'an', 'inordinate', 'number', 'of', 'exclamation', 'points', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'well', 'um', '||comma||', 'i', 'felt', 'that', 'the', 'writing', 'lacked', 'certain', 'emotion', 'and', 'intensity', '||period||', '||return||', '||return||', 'lippman:', 'ah', '||comma||', '||leftparen||', 'reads', 'an', 'excerpt', '||rightparen||', '||quotemark||', 'it', 'was', 'damp', 'and', 'chilly', 'afternoon', '||comma||', 'so', 'i', 'decided', 'to', 'put', 'on', 'my', 'sweatshirt', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', 'you', 'put', 'exclamation', 'point', 'after', 'sweatshirt', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", "that's", 'correct', '||comma||', 'i', '||dash||', 'i', 'felt', 'that', 'the', 'character', "doesn't", 'like', 'to', 'be', 'ch', '||dash||', 'ch', '||dash||', 'chilly', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', 'i', 'see', '||comma||', '||leftparen||', 'reads', 'another', 'excerpt', '||rightparen||', '||quotemark||', 'i', 'pulled', 'the', 'lever', 'on', 'the', 'machine', '||comma||', 'but', 'the', 'clark', 'bar', "didn't", 'come', 'out', '||exclammark||', '||quotemark||', 'exclamation', 'point', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'yeah', '||comma||', 'you', 'know', 'how', 'frustrating', 'that', 'can', 'be', 'when', 'you', 'keep', 'putting', 'quarters', 'and', 'quarters', 'in', 'to', 'machine', 'and', 'then', '||leftparen||', 'prrt', '||rightparen||', 'nothing', 'comes', 'out', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', 'get', 'rid', 'of', 'the', 'exclamation', 'points', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'ok', 'ok', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', 'i', 'hate', 'exclamation', 'points', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'ok', "i'll", 'just', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "'dear", 'barry', '||period||', 'consider', 'this', 'letter', 'to', 'be', 'official', 'termination', 'of', 'our', 'relationship', 'effective', 'immediately', '||period||', "'", '||return||', '||return||', 'kramer:', 'exclamation', 'point', '||period||', '||return||', '||return||', 'elaine:', 'you', 'still', 'have', 'no', 'proof', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'he', 'was', 'sniffing', 'like', 'crazy', 'around', 'me', '||period||', '||return||', '||return||', 'jerry:', "'i", 'will', 'expect', 'all', 'funds', 'in', 'form', 'of', 'cashier', 'checks', 'no', 'later', 'than', 'the', "18th'", '||period||', '||return||', '||return||', 'kramer:', 'double', 'exclamation', 'point', '||exclammark||', '||return||', '||return||', 'newman:', 'will', 'that', 'take', 'care', 'of', 'ours', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'll", 'give', 'you', 'yours', 'as', 'soon', 'as', 'i', 'get', 'my', 'money', 'back', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'you', 'want', 'me', 'to', 'mail', 'it', '||questionmark||', "i'm", 'on', 'my', 'way', 'out', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'newman:', "it'll", 'be', 'my', 'pleasure', '||period||', '||return||', '||return||', 'newman:', "see'ya", 'later', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'this', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'ralph', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'ralph', '||period||', '||return||', '||return||', 'ralph:', "what's", 'up', 'fellas', '||questionmark||', "that'll", 'be', '14', '||period||', '30', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'mushrooms', '||comma||', 'you', 'got', 'mushrooms', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', "what's", 'the', 'matter', '||questionmark||', "you've", 'got', 'a', 'cold', '||questionmark||', '||return||', '||return||', 'ralph:', 'no', 'man', '||leftparen||', 'sniffs', 'again', '||rightparen||', 'kramer', '||comma||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', 'sweater', '||period||', '||return||', '||return||', 'ralph:', 'what', 'is', 'it', 'made', 'out', 'of', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||comma||', 'jerry', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'mohair', '||comma||', 'i', 'think', '||period||', '||return||', '||return||', 'ralph:', 'mohair', '||comma||', 'that', 'figures', '||comma||', "i'm", 'allergic', 'to', 'mohair', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'you', 'just', 'started', 'sniffing', '||questionmark||', '||return||', '||return||', 'ralph:', 'yeah', '||comma||', 'mohair', 'does', 'it', 'to', 'me', 'every', 'time', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'wearing', 'that', 'sweater', 'in', 'the', 'coffee', 'shop', 'when', 'barry', 'came', 'in', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'was', 'wearing', 'it', 'in', 'the', 'bar', '||period||', '||return||', '||return||', 'elaine:', 'the', 'sweater', '||exclammark||', 'the', 'sweater', 'made', 'him', 'sniff', '||exclammark||', 'see', '||comma||', 'i', 'told', 'you', 'he', "wasn't", 'a', 'drug', 'addict', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||exclammark||', 'the', 'letter', '||comma||', 'newman', '||comma||', "it's", 'got', 'exclamation', 'points', 'all', 'over', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'not', 'to', 'mention', 'the', 'picture', 'of', 'him', 'on', 'the', 'toilet', '||period||', '||return||', '||return||', 'jerry:', 'the', 'what', '||questionmark||', '||questionmark||', '||return||', '||return||', 'newman:', 'after', 'you', '||period||', '||return||', '||return||', 'woman:', 'thank', 'you', '||period||', '||return||', '||return||', 'woman:', 'get', 'your', 'hands', 'off', 'of', 'me', '||exclammark||', 'johnny', '||exclammark||', '||exclammark||', '||exclammark||', 'johnny', '||exclammark||', '||return||', '||return||', 'frank:', 'what', 'do', 'you', 'mean', 'you', 'felt', 'the', 'material', '||questionmark||', 'what', '||comma||', 'with', 'your', 'fingers', 'like', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'what', '||comma||', 'what', 'is', 'so', 'bad', 'about', 'that', '||questionmark||', '||return||', '||return||', 'estelle:', 'who', 'goes', 'around', 'feeling', "people's", 'material', '||questionmark||', 'what', 'can', 'be', 'gained', 'by', 'feeling', 'a', "person's", 'material', '||questionmark||', "it's", 'insanity', '||exclammark||', '||return||', '||return||', 'frank:', 'what', 'ever', 'happened', 'to', '||quotemark||', 'why', '||comma||', "that's", 'a', 'lovely', 'dress', 'you', 'have', 'on', '||period||', 'may', 'i', 'have', 'this', 'dance', '||questionmark||', '||quotemark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'are', 'really', 'lucky', 'newman', 'never', 'mailed', 'that', 'letter', '||period||', '||return||', '||return||', 'jerry:', 'sorry', "i'm", 'late', '||comma||', 'i', 'just', 'came', 'from', 'a', 'meeting', 'with', 'my', 'lawyer', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'letter', 'from', 'your', 'friend', 'barry', "prophet's", 'lawyer', '||period||', '||return||', '||return||', 'elaine:', 'he', 'is', 'filing', 'a', 'chapter', 'eleven', '||period||', 'why', '||comma||', "what's", 'going', 'on', '||comma||', 'why', 'is', 'he', 'filing', 'a', 'chapter', 'eleven', '||questionmark||', '||return||', '||return||', 'jerry:', 'bankruptcy', '||comma||', 'bankruptcy', '||period||', '||period||', '||period||', 'as', 'in', "i've", 'taken', 'your', 'money', 'and', 'spent', 'it', 'on', 'drugs', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', '||comma||', 'i', 'thought', 'it', 'was', 'the', 'sweater', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'what', 'about', 'the', 'money', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'the', 'money', '||questionmark||', 'apparently', 'if', 'i', 'had', 'dissolved', 'my', 'relationship', 'with', 'him', 'prior', 'to', 'his', 'filing', 'chapter', 'eleven', '||comma||', "i've", "could've", 'got', 'the', 'money', 'back', '||period||', 'which', 'i', "would've", 'done', '||comma||', 'if', 'a', 'certain', 'imbecile', 'had', 'been', 'able', 'to', 'get', 'to', 'a', 'mailbox', 'and', 'mail', 'a', 'letter', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'pair', 'of', 'bear', 'claws', '||comma||', 'please', '||period||', '||return||', '||return||', 'woman:', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'think', 'so', '||questionmark||', '||return||', '||return||', 'woman:', 'yeah', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'half', 'silk', '||comma||', 'half', 'cotton', '||comma||', 'half', 'linen', '||period||', 'how', 'can', 'you', 'go', 'wrong', '||questionmark||', '||return||', '||return||', 'stan:', '||period||', '||period||', '||period||', 'and', 'then', "baby's", 'head', 'comes', 'out', '||comma||', 'and', "i'm", 'screaming', 'and', 'my', 'brother', "who's", 'been', 'videotaping', 'the', 'whole', 'thing', 'turns', 'green', '||comma||', 'his', 'eyes', 'roll', 'up', 'in', 'his', 'head', 'and', 'he', 'blacks', 'out', '||comma||', 'he', 'drops', 'the', 'camera', '||comma||', 'the', 'camera', 'breaks', '||comma||', 'and', 'then', '||comma||', 'the', 'placenta', 'comes', 'flying', 'out', '||period||', '||return||', '||return||', 'elaine:', 'whoa', '||period||', '||return||', '||return||', 'stan:', 'and', 'then', 'doctor', 'says', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupting', '||rightparen||', 'thanks', '||comma||', "that's", 'enough', '||period||', '||return||', '||return||', 'stan:', 'will', 'you', 'look', 'at', 'that', 'kid', '||period||', 'sucking', 'away', '||period||', 'sucking', 'like', "there's", 'no', 'tomorrow', '||period||', 'suck', '||comma||', 'suck', '||comma||', 'suck', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'away', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'stan:', 'look', 'at', 'that', 'jerry', '||comma||', 'look', 'at', 'that', '||period||', 'sucking', '||comma||', 'sucking', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'looked', '||period||', 'i', 'saw', '||period||', '||return||', '||return||', 'stan:', 'this', "doesn't", 'make', 'you', 'uncomfortable', '||comma||', 'does', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'uncomfortable', '||questionmark||', 'not', 'at', 'all', '||period||', '||leftparen||', 'aside', 'to', 'elaine', '||rightparen||', 'my', "friend's", "wife's", 'breast', 'sticking', 'out', '||dash||', 'why', 'would', 'that', 'make', 'me', 'uncomfortable', '||questionmark||', '||return||', '||return||', 'stan:', 'look', 'at', 'him', '||period||', '||return||', '||return||', 'jerry:', 'so', 'how', 'long', 'do', 'they', 'do', 'this', '||questionmark||', '||return||', '||return||', 'stan:', 'jus', '||comma||', 'a', 'year', 'or', 'two', '||period||', '||return||', '||return||', 'jerry:', 'no', 'break', '||questionmark||', '||return||', '||return||', 'stan:', 'after', 'that', 'comes', 'the', 'weaning', '||period||', '||return||', '||return||', 'jerry:', 'so', 'after', 'the', 'sucking', '||comma||', 'comes', 'the', 'weaning', '||period||', '||return||', '||return||', 'elaine:', 'first', 'the', 'sucking', 'then', 'the', 'weaning', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'gotta', 'wean', '||period||', '||return||', '||return||', 'stan:', 'gotta', 'wean', '||period||', '||return||', '||return||', 'elaine:', 'must', 'wean', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'that', 'spot', 'i', 'got', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'saw', 'the', 'spot', '||period||', '||return||', '||return||', 'george:', 'you', 'open', 'the', 'door', 'to', 'the', 'car', '||comma||', 'boom', '||comma||', 'you', 'walk', 'right', 'into', 'the', 'hospital', '||period||', 'eh', '||comma||', 'you', "can't", 'beat', 'that', 'spot', '||period||', '||leftparen||', 'starts', 'doing', 'a', 'little', 'dance', '||rightparen||', 'i', 'am', 'on', 'a', 'roll', '||period||', "i'm", 'just', 'willing', 'these', 'great', 'parking', 'spots', '||period||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'maybe', 'the', 'baby', 'would', 'like', 'to', 'see', 'my', 'spot', '||period||', 'a', 'positive', '||comma||', 'uplifting', 'message', 'to', 'start', 'his', 'life', 'out', 'with', '||period||', 'huh', '||comma||', 'you', 'can', 'still', 'get', 'a', 'great', 'space', 'in', 'this', 'city', '||dash||', 'if', 'you', 'apply', 'yourself', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', "where's", 'kramer', '||questionmark||', "shouldn't", 'he', 'be', 'here', 'by', 'now', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'give', 'him', 'the', 'room', 'number', '||questionmark||', '||return||', '||return||', 'jerry:', 'ya', '||comma||', '1397', '||period||', '||return||', '||return||', 'kramer:', '1937', '||comma||', '1937', '||comma||', '1937', '||period||', '||period||', '||period||', '||return||', '||return||', 'patient:', 'excuse', 'me', '||period||', 'do', 'you', 'know', 'where', 'the', 'elevator', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', 'ya', '||comma||', "it's", 'right', 'around', 'the', 'corner', 'there', '||period||', '||return||', '||return||', 'kramer:', '1937', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'god', '||comma||', "it's", 'a', 'pig', 'man', '||exclammark||', 'a', 'pig', 'man', '||exclammark||', '||return||', '||return||', 'stan:', '||period||', '||period||', 'so', 'anyway', '||comma||', 'jerry', '||comma||', 'elaine', '||comma||', 'we', 'have', 'something', 'we', 'want', 'to', 'ask', 'you', '||period||', '||return||', '||return||', 'george:', 'you', 'gotta', 'look', 'at', 'this', '||period||', 'i', 'pulled', 'it', 'in', 'perfectly', 'equidistant', 'from', 'the', 'car', 'in', 'front', 'of', 'me', 'and', 'the', 'car', 'behind', 'me', '||period||', '||return||', '||return||', 'jerry:', 'will', 'you', 'shut', 'up', 'george', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'taking', 'a', 'cab', 'home', '||period||', 'i', "can't", 'this', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'you', 'were', 'saying', 'stan', '||questionmark||', 'i', '||dash||', "i'm", 'sorry', 'about', 'that', '||period||', '||return||', '||return||', 'stan:', 'myra', 'and', 'i', 'would', 'like', 'you', 'and', 'elaine', 'to', 'be', 'the', 'godparents', 'of', 'steven', '||period||', '||return||', '||return||', 'elaine:', 'huuh', '||comma||', 'wow', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', 'godfather', '||questionmark||', '||return||', '||return||', 'stan:', 'yes', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'a', 'la', '||quotemark||', 'don', 'corleone', '||quotemark||', '||rightparen||', 'never', 'go', 'against', 'the', 'family', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'just', 'saw', 'a', 'pig', 'man', '||exclammark||', 'a', 'pig', 'man', '||exclammark||', 'ya', 'know', 'he', 'was', 'sleeping', 'and', 'then', 'he', 'woke', 'up', 'and', 'he', 'looked', 'up', 'at', 'me', 'an', '||dash||', 'and', 'he', 'made', 'this', 'horrible', 'sound', '||comma||', 'this', '||leftparen||', 'quells', 'like', 'a', 'pig', '||rightparen||', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'what', 'the', 'hell', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'talking', 'about', 'the', 'pig', 'man', '||period||', 'i', 'went', 'into', 'the', 'wrong', 'room', 'and', 'there', 'he', 'was', '||period||', '||return||', '||return||', 'george:', 'a', 'pig', '||dash||', 'man', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'pig', '||dash||', 'man', '||period||', 'half', 'pig', '||comma||', 'half', 'man', '||exclammark||', '||return||', '||return||', 'elaine:', "that's", 'great', 'kramer', '||period||', '||period||', '||period||', 'so', '||dash||', 'so', '||comma||', 'anyway', '||comma||', 'tell', 'us', "what's", 'involved', 'in', 'being', 'a', 'godparent', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'a', 'la', '||quotemark||', 'don', 'corleione', '||quotemark||', '||rightparen||', 'elaine', '||comma||', 'never', 'ask', 'me', 'about', 'my', 'business', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'sheepish', '||rightparen||', '||quotemark||', 'godfather', '||period||', '||quotemark||', '||return||', '||return||', 'stan:', 'the', 'most', 'important', 'thing', 'is', 'you', 'help', 'with', 'the', 'bris', '||period||', '||return||', '||return||', 'jerry:', 'the', 'bris', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'bris', '||questionmark||', 'you', 'mean', 'circumcision', '||questionmark||', '||return||', '||return||', 'stan:', 'ya', '||period||', '||return||', '||return||', 'kramer:', 'i', 'would', 'advise', 'against', 'that', '||period||', '||return||', '||return||', 'elaine:', 'wha', '||comma||', 'kramer', '||period||', "it's", 'a', 'tradition', '||period||', '||return||', '||return||', 'kramer:', 'ya', 'well', '||comma||', 'so', 'was', 'uh', 'sacrificing', 'virgins', 'to', 'appease', 'the', 'gods', '||comma||', 'but', 'we', "don't", 'do', 'that', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'we', 'should', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'knocks', 'on', 'the', 'window', '||rightparen||', 'hey', '||comma||', 'why', 'are', 'all', 'those', 'people', 'milling', 'around', 'my', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "they're", 'admiring', 'your', 'spot', '||period||', '||return||', '||return||', 'kramer:', "they're", 'all', 'looking', 'up', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "there's", 'a', 'guy', 'up', 'the', 'roof', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||period||', "that's", 'the', 'guy', 'that', 'i', 'told', 'where', 'the', 'elevator', 'was', '||period||', '||return||', '||return||', 'george:', 'oh', 'well', '||comma||', 'i', 'hope', 'he', "doesn't", 'jum', '||period||', '||period||', '||period||', '||return||', '||return||', 'george', '||comma||', 'elaine', '||comma||', 'kramer', '||comma||', 'jerry', '||comma||', '&', 'stan:', 'oh', 'my', '||exclammark||', '||return||', '||return||', 'george:', 'my', 'car', '||exclammark||', 'my', 'caaaaarrrr', '||exclammark||', '||return||', '||return||', 'elaine:', 'a', 'mohel', '||exclammark||', 'what', 'the', 'hell', 'is', 'a', 'mohel', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'mohel', 'is', 'the', 'person', 'that', 'performs', 'the', 'circumcision', '||period||', '||return||', '||return||', 'elaine:', 'where', 'am', 'i', 'going', 'to', 'find', 'a', 'mohel', '||questionmark||', '||leftparen||', 'looking', 'through', 'the', 'yellow', 'pages', '||comma||', 'muttering', '||rightparen||', 'motels', '||comma||', 'models', '||period||', '||period||', '||period||', 'how', 'do', 'you', 'find', 'a', 'mohel', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'finding', 'a', 'mohel', 'is', 'a', 'piece', 'of', 'cake', '||period||', 'any', 'idiot', 'can', 'find', 'a', 'mohel', '||period||', 'i', 'have', 'to', 'hold', 'the', 'baby', 'while', 'they', 'do', 'it', '||period||', "that's", 'a', 'tough', 'job', '||period||', 'how', 'would', 'you', 'like', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', 'jerry', '||comma||', 'you', 'ever', 'seen', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'that', "wasn't", 'uh', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'ya', '||period||', '||return||', '||return||', 'jerry:', "what'd", 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shakes', 'her', 'head', '||rightparen||', 'no', '||comma||', 'had', 'no', 'face', '||comma||', 'no', 'personality', '||period||', 'it', 'was', 'like', 'a', 'martian', '||period||', 'but', 'hey', '||comma||', 'you', 'know', "that's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'just', 'got', 'the', 'estimate', '||period||', "it's", 'going', 'to', 'cost', 'more', 'to', 'fix', 'that', 'roof', 'than', 'the', "car's", 'worth', '||comma||', 'so', "i'm", 'going', 'over', 'to', 'see', 'that', 'hospital', 'administrator', 'today', '||period||', 'someone', 'is', 'gonna', 'pay', 'for', 'this', 'damage', 'and', "it's", 'not', 'gonna', 'be', 'me', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "you're", 'screwed', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'swan', 'dives', 'from', 'twenty', 'floors', 'up', '||comma||', 'lands', 'right', 'on', 'top', '||period||', 'what', 'do', 'i', 'got', 'a', 'bulls', 'eye', 'up', 'there', '||questionmark||', 'he', "couldn't", 'move', 'over', 'two', 'feet', '||questionmark||', 'land', 'on', 'the', 'sidewalk', '||period||', "it's", 'city', 'property', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', 'have', 'to', 'interview', 'a', 'mohel', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', 'our', 'little', 'elaine', 'huh', '||questionmark||', 'attended', 'the', 'finest', 'finishing', 'schools', 'on', 'the', 'eastern', 'seaboard', '||period||', 'equestrian', 'competitions', '||period||', 'debutante', 'balls', '||period||', 'look', 'at', 'her', 'now', '||period||', 'interviewing', 'mohels', '||period||', '||return||', '||return||', 'kramer:', 'yea', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'are', 'you', 'alright', '||questionmark||', '||return||', '||return||', 'kramer:', "don't", 'even', 'question', 'my', 'instincts', '||comma||', 'because', 'my', 'instincts', 'are', 'honed', '||period||', '||leftparen||', 'repaper', '||rightparen||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', 'what', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', 'look', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'kramer', 'shows', 'jerry', 'and', 'elaine', 'the', 'paper', '||rightparen||', '||quotemark||', 'hospital', 'receives', 'grant', 'to', 'conduct', 'dna', 'research', '||quotemark||', '||period||', '||period||', '||quotemark||', 'government', 'funds', 'genetic', 'research', 'at', 'area', 'hospital', '||quotemark||', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'pig', '||dash||', 'man', '||comma||', 'baby', '||period||', 'pig', '||dash||', 'man', '||period||', '||return||', '||return||', 'elaine:', 'if', 'i', 'hear', 'about', 'this', 'pig', '||dash||', 'man', 'one', 'more', 'time', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'm", 'tellin', 'ya', 'the', 'pig', '||dash||', 'man', 'is', 'alive', '||period||', 'the', 'government', 'has', 'been', 'experimenting', 'with', 'pig', '||dash||', 'men', 'since', 'the', 'fifties', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'will', 'you', 'stop', 'it', '||period||', 'just', 'because', 'a', 'hospital', 'studying', 'dna', 'research', "doesn't", 'mean', "they're", 'creating', 'a', 'race', 'of', 'mutant', 'pig', '||dash||', 'men', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', 'wake', 'up', 'to', 'reality', '||period||', "it's", 'a', 'military', 'thing', '||period||', "they're", 'probably', 'creating', 'a', 'whole', 'army', 'of', 'pig', 'warriors', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', 'something', '||period||', 'i', 'wish', 'there', 'were', 'pig', '||dash||', 'men', '||period||', 'you', 'get', 'a', 'few', 'of', 'these', 'pig', '||dash||', 'men', 'walking', 'around', 'suddenly', "i'm", 'looking', 'a', 'whole', 'lot', 'better', '||period||', 'then', 'if', 'somebody', 'wants', 'to', 'fix', 'me', 'up', 'at', 'least', 'they', 'could', 'say', '||comma||', '||quotemark||', 'hey', "he's", 'no', 'pig', '||dash||', 'man', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'believe', 'me', '||comma||', "there'd", 'be', 'plenty', 'of', 'women', 'going', 'for', 'these', 'pig', '||dash||', 'men', '||period||', 'whatever', 'the', 'deformity', 'is', "there's", 'always', 'some', 'group', 'of', 'perverts', "that's", 'attracted', 'to', 'it', '||period||', '||quotemark||', 'oo', 'that', 'little', 'tail', 'really', 'turns', 'me', 'on', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mumbles', '||rightparen||', "that's", 'just', 'about', 'enough', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "what's", 'the', 'matter', 'this', "doesn't", 'interest', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', "it's", 'fascinating', '||comma||', 'but', 'could', 'you', 'do', 'me', 'a', 'favor', '||comma||', 'could', 'ya', 'tape', 'the', 'rest', 'of', 'the', 'pig', '||dash||', 'men', 'and', 'the', 'women', 'who', 'love', 'them', 'discussion', 'and', "i'll", 'listen', 'to', 'it', 'the', 'next', 'time', "i'm", 'here', '||period||', "i've", 'gotta', 'go', 'find', 'a', 'mohel', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'you', 'should', 'call', 'this', 'off', '||comma||', 'elaine', '||period||', "it's", 'a', 'barbaric', 'ritual', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'perhaps', 'one', 'day', 'when', 'the', 'pig', '||dash||', 'men', 'roam', 'free', 'it', 'will', 'be', 'stopped', 'kramer', '||period||', 'until', 'then', '||comma||', 'off', 'with', 'their', 'heads', '||period||', '||return||', '||return||', 'george:', 'but', 'kramer', '||comma||', "isn't", 'it', 'a', 'question', 'of', 'hygiene', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', 'myth', '||period||', 'besides', '||comma||', 'it', 'makes', 'sex', 'more', 'pleasurable', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'so', 'how', 'does', 'that', 'help', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', 'george', '||comma||', 'you', 'ever', 'see', 'one', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'my', 'roommate', 'in', 'college', '||period||', '||return||', '||return||', 'jerry:', 'so', "what'd", 'you', 'think', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'thinks', 'for', 'a', 'second', '||rightparen||', 'i', 'got', 'used', 'to', 'it', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'm", 'waiting', '||period||', 'i', '||dash||', 'i', 'want', 'to', 'see', 'the', 'pig', '||dash||', 'man', '||period||', 'show', 'me', 'the', 'pig', '||dash||', 'man', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "don't", 'worry', '||period||', "i'm", 'gonna', 'show', 'you', '||comma||', 'and', "you'll", 'never', 'be', 'the', 'same', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "he's", 'just', 'a', 'guy', 'with', 'a', 'nose', 'like', 'this', '||period||', '||leftparen||', 'holds', 'his', 'nose', 'up', 'like', 'a', 'pig', '||rightparen||', 'you', 'know', 'a', 'lot', 'of', 'people', 'have', 'a', 'nose', 'like', 'this', '||comma||', "they're", 'not', 'necessarily', 'pig', '||dash||', 'men', '||period||', '||return||', '||return||', 'kramer:', 'believe', 'me', '||comma||', 'jerry', '||comma||', 'somewhere', 'in', 'this', 'hospital', 'the', 'anguished', '||quotemark||', 'oink', '||quotemark||', 'of', 'pig', '||dash||', 'man', 'cries', 'out', 'for', 'help', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'i', 'hear', 'an', 'anguished', '||quotemark||', 'oink', '||quotemark||', '||comma||', "i'm", 'outta', 'here', '||period||', 'i', '||dash||', 'i', "don't", 'see', 'any', 'pig', '||dash||', 'men', '||period||', 'look', '||leftparen||', 'he', 'points', 'at', 'passerby', '||rightparen||', 'human', '||comma||', 'human', '||comma||', 'human', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'looks', 'down', 'corridor', '||comma||', 'with', 'alarm', '||period||', '||rightparen||', '||leftparen||', 'with', 'mock', 'alarm', '||rightparen||', 'wait', 'a', 'second', '||exclammark||', '||leftparen||', 'grabs', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'george', '||period||', '||return||', '||return||', 'george:', 'alright', 'the', "administrator's", 'on', 'the', 'third', 'floor', '||period||', "i'll", 'meet', 'you', 'guys', 'back', 'at', 'the', 'car', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'wait', 'george', '||period||', 'you', 'got', 'room', 'in', 'the', 'car', 'for', 'the', 'pig', '||dash||', 'man', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'pig', '||dash||', 'man', 'can', 'take', 'the', 'bus', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'if', 'the', 'pig', '||dash||', 'man', 'had', 'a', 'car', '||comma||', 'he', 'would', 'give', 'you', 'a', 'ride', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', '||questionmark||', 'what', 'if', 'pig', '||dash||', 'man', 'had', 'a', 'two', '||dash||', 'seater', '||questionmark||', '||return||', '||return||', 'kramer:', 'be', 'realistic', 'george', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'what', '||comma||', 'if', 'pig', '||dash||', 'man', 'shows', 'up', '||comma||', "we'll", 'squeeze', 'him', 'in', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', 'yea', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'mr', '||period||', 'costanza', '||comma||', 'come', 'in', '||comma||', 'come', 'in', '||period||', "it's", 'been', 'a', 'very', 'trying', 'couple', 'of', 'days', 'around', 'the', 'hospital', '||period||', 'doctors', '||comma||', 'patients', '||comma||', 'everyone', '||comma||', 'just', 'grief', 'stricken', 'over', 'this', 'unfortunate', 'occurrence', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'join', 'them', 'in', 'their', 'grief', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'horrible', 'thing', '||period||', 'flew', 'right', 'past', 'the', "children's", 'wing', '||period||', 'all', 'the', 'sick', 'children', '||comma||', 'in', 'the', 'playroom', '||comma||', 'looking', 'out', 'the', 'window', '||comma||', 'just', 'traumatized', 'by', 'the', 'incident', '||period||', 'apparently', '||comma||', 'they', 'thought', 'he', 'was', 'flying', '||period||', 'you', 'know', 'how', 'children', 'are', '||comma||', '||quotemark||', 'oh', 'look', '||period||', 'a', 'man', 'is', 'flying', '||period||', 'a', 'man', 'is', 'flying', '||quotemark||', 'and', 'then', '||comma||', 'splat', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "that's", 'where', 'i', 'come', 'in', '||period||', 'umm', '||comma||', 'on', 'splat', '||period||', 'uh', '||comma||', 'you', 'see', '||comma||', 'mrs', '||period||', 'sweedler', '||comma||', 'or', 'is', 'it', 'hospital', 'administrator', 'sweedler', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'mrs', '||period||', "sweedler's", 'fine', '||period||', '||return||', '||return||', 'george:', 'mrs', '||period||', 'sweedler', 'thank', 'you', '||period||', 'y', '||dash||', 'you', 'see', '||comma||', 'this', 'tragedy', 'affected', 'me', 'in', 'a', 'very', '||comma||', 'very', 'personal', 'way', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'how', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'well', 'you', 'see', '||comma||', 'the', 'deceased', 'landed', 'on', 'my', 'car', '||period||', 'the', 'uh', 'splat', '||comma||', 'as', 'it', 'were', '||comma||', 'actually', 'occurred', 'on', 'the', 'roof', 'of', 'my', 'car', '||period||', 'now', 'of', 'course', 'i', "can't", 'help', 'but', 'feel', 'that', 'had', 'it', 'been', 'a', 'convertible', 'this', 'whole', 'tragedy', 'might', 'have', 'been', 'averted', 'but', "i've", 'never', 'been', 'the', 'kind', 'of', 'guy', 'to', 'buy', 'a', 'convertible', '||comma||', 'what', 'with', 'the', 'baldness', 'and', 'everything', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'well', 'i', 'have', 'known', 'bald', 'men', 'who', 'owned', 'convertibles', '||period||', 'they', 'wore', 'a', 'hat', '||period||', '||return||', '||return||', 'george:', 'yes', 'but', 'then', 'everything', 'is', 'all', 'pulled', 'down', 'and', "it's", 'jus', '||period||', '||period||', 'anyway', '||period||', 'the', 'damage', '||comma||', 'unfortunately', '||comma||', 'has', 'marred', 'an', 'otherwise', 'fine', 'automobile', '||comma||', 'rendering', 'it', 'virtually', 'undriveable', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', '||leftparen||', 'stiffening', '||rightparen||', 'yes', '||comma||', 'well', '||comma||', 'that', 'is', 'a', 'shame', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'a', 'shame', '||period||', 'that', 'is', 'exactly', 'how', 'i', 'would', 'put', 'it', '||period||', 'now', 'mrs', '||period||', 'sweedler', '||comma||', 'with', 'all', 'due', 'discretion', 'and', 'sensitivity', '||comma||', 'and', 'taking', 'in', 'the', 'whole', 'scope', 'of', 'the', 'situation', '||comma||', 'i', 'just', "can't", 'help', 'but', 'think', 'that', '||comma||', 'the', 'hospital', 'is', 'somehow', 'responsible', 'for', 'compensating', 'the', 'other', '||comma||', 'still', 'living', "'victim'", 'of', 'horrendous', '||comma||', 'horrendous', 'tragedy', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'mr', '||period||', 'constanza', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'a', 'man', 'plummeted', 'tragically', 'to', 'his', 'ultimate', 'demise', '||dash||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', '||period||', '||period||', '||period||', 'and', 'you', 'greedily', '||comma||', 'callously', 'want', 'to', 'profit', 'from', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pulling', 'out', 'estimate', 'out', 'of', 'his', 'pocket', '||rightparen||', 'well', '||comma||', 'profit', '||period||', 'i', 'think', "you'll", 'see', 'from', 'the', 'estimate', 'that', "i'm", 'not', 'really', 'profiting', 'that', 'much', '||period||', 'they', 'might', 'be', 'a', 'little', 'high', '||comma||', 'but', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'get', 'out', '||exclammark||', 'get', 'out', '||comma||', 'now', '||exclammark||', 'get', 'out', 'of', 'my', 'office', '||period||', '||return||', '||return||', 'george:', 'should', 'i', 'leave', 'this', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'sweedler:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'excuse', 'me', '||period||', 'what', 'happened', 'to', 'the', 'man', '||comma||', 'that', 'was', 'in', 'this', 'room', 'before', '||questionmark||', '||return||', '||return||', 'resident:', 'i', "don't", 'know', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||period||', '||leftparen||', 'he', 'pushes', 'his', 'nose', 'up', 'with', 'his', 'thumb', '||rightparen||', '||period||', '||return||', '||return||', 'resident:', 'no', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'holding', 'his', 'nose', 'up', '||rightparen||', 'this', "doesn't", 'look', 'familiar', 'to', 'you', '||questionmark||', '||return||', '||return||', 'resident:', 'uh', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'i', 'know', "what's", 'going', 'on', '||period||', 'the', 'oink', '||comma||', 'oink', '||period||', '||return||', '||return||', 'resident:', 'yes', 'well', 'if', "you'll", 'excuse', 'me', '||period||', 'i', 'really', 'have', 'some', 'patients', 'i', 'have', 'to', 'attend', 'to', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'tough', 'talking', '||rightparen||', 'now', 'listen', 'to', 'me', 'you', 'little', 'quack', '||comma||', 'there', 'was', 'a', 'half', 'man', '||comma||', 'half', 'pig', 'in', 'that', 'room', 'over', 'there', '||period||', 'now', 'where', 'is', 'he', '||questionmark||', '||exclammark||', 'where', 'is', 'he', '||questionmark||', '||exclammark||', '||return||', '||return||', 'resident:', 'half', '||dash||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'i', 'mean', '||dash||', 'pork', '||comma||', 'sausage', '||comma||', '||leftparen||', 'a', 'la', 'porky', 'pig', '||rightparen||', 'a', '||dash||', 'deek', '||dash||', 'a', '||dash||', 'deek', '||dash||', 'a', '||dash||', 'deek', 'th', '||dash||', 'th', '||dash||', 'th', '||dash||', "that's", 'all', 'folks', '||period||', '||return||', '||return||', 'resident:', 'i', 'think', "he's", 'been', 'released', '||period||', '||return||', '||return||', 'kramer:', "he's", 'lying', '||period||', '||return||', '||return||', 'jerry:', 'alright', 'kramer', '||comma||', 'enough', 'of', 'this', '||period||', "let's", 'go', 'find', 'george', '||period||', '||return||', '||return||', 'kramer:', 'alright', 'you', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||return||', '||return||', 'jerry:', "where's", 'the', 'mohel', '||questionmark||', '||return||', '||return||', 'elaine:', "he'll", 'be', 'here', '||period||', '||return||', '||return||', 'jerry:', "he's", 'late', 'already', '||period||', '||return||', '||return||', 'elaine:', 'relax', '||period||', "you'd", 'think', 'you', 'were', 'getting', 'whacked', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'why', 'he', 'asked', 'me', 'to', 'be', 'the', 'godfather', '||period||', "we're", 'not', 'even', 'that', 'close', 'of', 'friends', '||period||', 'just', 'cause', "we're", 'on', 'the', 'softball', 'team', '||comma||', "i'm", 'the', 'pitcher', '||comma||', "he's", 'the', 'catcher', 'he', 'thinks', 'we', 'have', 'a', 'special', 'relationship', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'pitchers', 'and', 'catchers', 'did', 'have', 'a', 'special', 'rapport', '||period||', '||return||', '||return||', 'jerry:', 'well', 'maybe', 'in', 'hardball', 'with', 'all', 'the', 'signals', 'and', 'everything', 'but', "i'm", 'just', 'lobbing', 'it', 'in', '||period||', 'we', "don't", 'have', 'any', 'conferences', '||period||', 'he', "doesn't", 'come', 'out', 'to', 'the', 'mound', 'and', 'encourage', 'me', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'me', '||questionmark||', 'i', 'mean', 'i', 'just', 'watched', 'a', 'few', 'games', 'with', 'her', 'sitting', 'in', 'the', 'stands', '||period||', '||return||', '||return||', 'jerry:', "don't", 'they', 'have', 'any', 'closer', 'friends', '||period||', "they're", 'level', 'jumping', 'on', 'our', 'friendship', '||period||', '||return||', '||return||', 'elaine:', 'yes', 'it', 'is', 'level', 'jumping', '||period||', '||return||', '||return||', 'george:', 'so', 'uh', '||period||', '||period||', '||period||', 'been', 'to', 'a', 'bris', 'before', '||questionmark||', '||return||', '||return||', 'woman:', 'no', '||period||', '||return||', '||return||', 'george:', "i've", 'been', 'to', 'a', 'few', 'of', 'em', '||period||', 'if', 'you', 'uh', 'start', 'to', 'get', 'woozy', 'later', '||comma||', 'which', 'is', 'quite', 'common', '||comma||', 'stay', 'close', 'to', 'me', '||period||', "i'll", 'get', 'you', 'through', 'it', '||period||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'woman:', "i'm", 'a', 'cardiologist', '||period||', 'i', 'think', "i'll", 'manage', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'kramer:', "we're", 'not', 'talking', 'about', 'a', 'manicure', '||period||', 'imagine', '||comma||', 'this', 'is', 'going', 'to', 'be', 'his', 'first', 'memory', '||period||', 'of', 'his', 'parents', 'just', 'standing', 'there', 'while', 'some', 'stranger', '||leftparen||', 'does', 'some', 'motions', 'of', 'cutting', '||semicolon||', 'myra', 'sobs', 'more', '||rightparen||', 'cutting', 'off', 'a', 'piece', 'of', 'his', 'manhood', 'and', 'then', 'serves', 'a', 'catered', 'lunch', '||period||', '||return||', '||return||', 'stan:', '||leftparen||', 'seeing', 'myra', 'run', 'away', 'sobbing', '||rightparen||', 'myra', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'everyone', '||rightparen||', 'oh', '||comma||', "that's", 'the', 'mohel', '||period||', '||return||', '||return||', 'all:', '||leftparen||', 'adlib', '||rightparen||', "it's", 'the', 'mohel', '||exclammark||', 'the', 'mohel', 'is', 'here', '||exclammark||', 'thank', 'god', '||comma||', 'the', 'mohel', 'is', 'here', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'mohel:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hello', '||comma||', 'hello', '||leftparen||', 'shaking', 'hands', 'with', 'jerry', '||rightparen||', 'hello', '||comma||', "i'm", 'the', 'mohel', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'mohel:', '||leftparen||', "cont'd", '||rightparen||', '||leftparen||', 'shakes', "stan's", 'hand', '||rightparen||', "it's", 'very', 'nice', 'to', 'meet', 'you', 'all', '||period||', '||period||', '||period||', '||leftparen||', 'a', 'pan', 'clangs', 'to', 'the', 'ground', '||period||', 'the', 'mohel', 'snaps', '||period||', '||rightparen||', 'oh', '||exclammark||', 'what', 'was', 'that', '||questionmark||', '||exclammark||', '||questionmark||', 'jeez', '||period||', 'scared', 'the', 'hell', 'out', 'of', 'me', '||period||', 'my', 'god', '||period||', 'i', 'almost', 'had', 'a', 'heart', 'attack', '||exclammark||', '||leftparen||', 'the', 'crowd', 'grows', 'uneasy', '||rightparen||', '||leftparen||', 'calming', 'down', '||rightparen||', 'ok', '||comma||', "i'm", 'fine', '||comma||', "i'm", 'fine', '||period||', 'anyway', '||comma||', "we're", 'here', 'to', 'perform', 'the', 'mitzvah', 'of', 'the', 'bris', '||period||', '||period||', '||period||', '||leftparen||', 'the', 'baby', 'starts', 'crying', '||rightparen||', '||leftparen||', 'with', 'increasing', 'tension', '||rightparen||', '||period||', '||period||', '||period||', 'is', 'the', 'baby', 'gonna', 'cry', 'like', 'that', '||questionmark||', 'is', 'that', 'how', 'the', 'baby', 'cries', '||comma||', 'with', 'the', 'loud', '||comma||', 'sustained', '||comma||', 'squealing', 'cry', '||comma||', "'cause", 'that', 'could', 'pose', 'a', 'problem', '||period||', 'do', 'you', 'have', 'any', 'control', 'of', 'your', 'child', "'cause", 'this', 'will', 'be', 'the', 'time', 'to', 'exercise', 'it', 'when', 'baby', 'is', 'crying', 'in', 'that', 'high', '||dash||', 'pitched', '||comma||', 'squealing', 'tone', 'that', 'can', 'drive', 'you', 'insane', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'find', 'the', 'place', 'alright', '||questionmark||', '||return||', '||return||', 'mohel:', 'did', 'i', 'find', 'it', 'alright', '||questionmark||', 'could', 'you', 'send', 'me', 'to', 'a', 'more', 'dangerous', 'neighborhood', '||questionmark||', "i'm", 'dreading', 'walking', 'back', 'to', 'the', 'subway', '||comma||', 'someone', "shouldn't", 'crack', 'me', 'over', 'the', 'head', 'and', 'steal', 'my', 'bag', '||comma||', 'because', "i'll", 'be', 'lying', 'there', 'and', 'people', 'will', 'spit', 'on', 'me', 'and', 'empty', 'my', 'pockets', '||period||', "i'll", 'be', 'lying', 'in', 'the', 'gutter', 'like', 'a', 'bum', '||comma||', 'like', 'a', 'dog', '||comma||', 'like', 'a', 'mutt', '||comma||', 'like', 'a', 'mongrel', '||comma||', 'like', 'an', 'animal', '||exclammark||', 'god', 'forbid', 'anybody', 'should', 'help', 'me', 'or', 'call', 'an', 'ambulance', '||period||', 'oh', 'no', '||comma||', "that's", 'too', 'much', 'trouble', 'to', 'pick', 'up', 'a', 'phone', 'and', 'press', 'a', 'few', 'buttons', '||period||', 'ahh', '||exclammark||', "what's", 'the', 'point', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'setting', 'down', 'her', 'glass', '||rightparen||', 'oh', '||comma||', 'ya', 'haha', '||period||', '||return||', '||return||', 'mohel:', '||leftparen||', 'to', 'elaine', 'interrupting', '||rightparen||', 'darling', '||comma||', 'you', 'see', 'where', 'that', 'glass', 'is', '||questionmark||', 'how', 'that', 'glass', 'is', 'near', 'the', 'edge', 'of', 'the', 'table', '||period||', 'you', 'got', 'the', 'whole', 'table', 'there', 'to', 'put', 'the', 'glass', '||comma||', 'why', 'you', 'chose', 'the', 'absolute', 'edge', '||comma||', 'so', 'half', 'the', 'glass', 'is', 'hanging', 'off', 'the', 'table', '||comma||', 'you', 'breath', 'and', 'that', 'glass', 'falls', 'over', '||comma||', 'then', "you're", 'gonna', 'have', 'broken', 'glass', 'on', 'the', 'carpet', '||comma||', 'embedded', 'in', 'the', 'carpet', 'fibers', '||comma||', 'deep', '||comma||', 'deep', 'in', 'the', 'shag', '||comma||', 'broken', 'glass', '||comma||', 'bits', 'of', 'broken', 'glass', 'that', 'you', 'never', 'get', 'out', '||period||', 'you', "can't", 'get', 'it', 'out', 'with', 'a', 'vacuum', 'cleaner', '||period||', 'even', 'on', 'your', 'hands', 'and', 'knees', 'with', 'a', 'magnifying', 'glass', '||comma||', 'you', "can't", 'get', 'all', 'the', 'pieces', '||comma||', 'and', 'then', 'you', 'think', 'you', 'got', 'it', 'all', 'and', 'two', 'years', 'later', '||comma||', "you're", "walkin'", 'barefoot', 'and', 'you', 'step', 'on', 'a', 'piece', 'of', 'broken', 'glass', 'and', 'you', 'kill', 'yourself', '||comma||', 'is', 'that', 'what', 'you', 'want', '||questionmark||', 'i', "don't", 'think', 'you', 'want', 'that', '||comma||', 'is', 'it', '||questionmark||', '||period||', '||period||', 'do', 'ya', '||questionmark||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'myra', '||rightparen||', "he's", 'very', 'highly', 'recommended', '||period||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'mohel:', '||leftparen||', 'to', 'george', '||rightparen||', "you're", 'holding', 'the', 'baby', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'up', 'out', 'of', 'his', 'chair', 'to', 'get', 'out', 'of', 'the', "mohel's", 'way', '||rightparen||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'mohel:', 'hello', '||exclammark||', "who's", 'holding', 'the', 'baby', '||questionmark||', '||exclammark||', '||questionmark||', "who's", 'holding', 'the', 'baby', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'uncertain', '||rightparen||', 'yeah', '||period||', "i'm", 'holding', 'the', 'baby', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pushing', 'jerry', 'over', 'to', 'the', 'mohel', '||rightparen||', 'ok', '||comma||', 'go', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'going', '||period||', '||return||', '||return||', 'elaine:', 'go', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'going', '||period||', '||return||', '||return||', 'elaine:', "c'mon", '||return||', '||return||', 'jerry:', "don't", 'push', 'me', '||period||', '||return||', '||return||', 'mohel:', 'okay', '||period||', 'you', 'sit', 'here', '||period||', 'now', 'i', 'need', 'the', 'baby', '||period||', 'bring', 'me', 'the', 'baby', '||period||', 'i', 'need', 'the', 'baby', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'm", 'not', 'going', 'to', 'let', 'this', 'happen', '||period||', '||return||', '||return||', 'all:', '||leftparen||', 'numerous', 'voices', '||rightparen||', 'kramer', '||exclammark||', 'let', 'go', 'of', 'the', 'baby', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'mohel:', 'people', 'compose', 'yourselves', '||period||', '||leftparen||', 'shouting', 'as', 'the', 'struggle', 'ends', '||rightparen||', 'this', 'is', 'a', 'bris', '||period||', 'we', 'are', 'performing', 'a', 'bris', 'here', '||comma||', 'not', 'a', 'burlesque', 'show', '||period||', 'this', 'is', 'not', 'a', 'school', 'play', '||exclammark||', 'this', 'is', 'not', 'a', 'baggy', 'pants', 'farce', '||exclammark||', 'this', 'is', 'a', 'bris', '||period||', 'an', 'sacred', '||comma||', 'ancient', 'ceremony', '||comma||', 'symbolizing', 'the', 'covenant', 'between', 'god', 'and', 'abraham', '||period||', '||period||', '||period||', 'or', 'something', '||period||', '||leftparen||', 'the', 'mohel', 'opens', 'his', 'bag', 'to', 'start', 'the', 'process', 'but', 'drops', 'it', 'and', 'his', 'instruments', 'fall', 'out', '||period||', 'people', 'attempt', 'to', 'help', 'him', 'out', '||rightparen||', 'no', '||exclammark||', "don't", 'touch', 'it', '||exclammark||', "don't", 'touch', 'a', 'thing', '||exclammark||', '||return||', '||return||', 'elaine:', 'ok', '||period||', '||return||', '||return||', 'mohel:', '||leftparen||', 'muttering', 'to', 'jerry', '||rightparen||', '||period||', '||period||', 'i', 'coulda', 'been', 'a', 'kosher', 'butcher', 'like', 'my', 'brother', '||period||', 'the', "money's", 'good', '||period||', "there's", 'a', 'union', '||comma||', 'with', 'benefits', '||period||', 'and', '||comma||', 'cows', 'have', 'no', 'families', '||period||', 'you', 'make', 'a', 'mistake', 'with', 'a', 'cow', '||comma||', 'you', 'move', 'on', 'with', 'your', 'life', '||period||', '||period||', '||period||', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'hurry', 'up', 'george', '||exclammark||', 'step', 'on', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||exclammark||', '||return||', '||return||', 'jerry:', 'that', 'damn', 'mohel', '||dash||', 'he', 'circumcised', 'my', 'finger', '||exclammark||', 'the', 'mohel', 'circumcised', 'my', 'finger', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'flinched', '||period||', '||return||', '||return||', 'jerry:', 'flinched', '||questionmark||', 'i', 'did', 'not', 'flinch', '||period||', 'george', '||comma||', 'did', 'i', 'flinch', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'how', 'would', 'he', 'know', '||period||', 'he', 'blacked', 'out', '||period||', 'he', 'fainted', '||period||', '||return||', '||return||', 'george:', 'it', 'was', 'very', 'traumatic', '||period||', 'the', 'last', 'thing', 'i', 'remember', 'is', 'you', 'flinching', '||period||', 'then', '||comma||', 'everything', 'went', 'black', '||period||', '||return||', '||return||', 'jerry:', "who's", 'got', 'a', 'tissues', '||questionmark||', 'i', 'need', 'more', 'tissues', '||exclammark||', 'look', 'at', 'this', 'thing', '||period||', "it's", 'my', 'phone', 'finger', '||exclammark||', '||return||', '||return||', 'george:', 'be', 'careful', '||comma||', "you're", 'getting', 'blood', 'all', 'over', 'the', 'car', '||period||', '||return||', '||return||', 'kramer:', 'what', 'about', 'the', 'baby', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'the', "baby's", 'fine', '||period||', 'they', 'just', 'took', 'him', 'to', 'the', 'hospital', 'as', 'a', 'precautionary', 'measure', '||period||', 'but', 'look', 'at', 'me', '||period||', "i'm", 'the', 'one', "who's", 'hurt', '||period||', '||return||', '||return||', 'elaine:', 'would', 'you', 'stop', 'it', '||questionmark||', "you're", 'just', 'gonna', 'need', 'a', 'few', 'stitches', '||period||', '||return||', '||return||', 'jerry:', 'a', 'few', 'stitches', '||questionmark||', "i've", 'never', 'had', 'stitches', '||period||', "i'll", 'be', 'deformed', '||period||', 'i', "can't", 'live', 'with', 'that', '||period||', 'it', 'goes', 'against', 'my', 'whole', 'personality', '||period||', "it's", 'not', 'me', '||exclammark||', '||return||', '||return||', 'george:', 'hey', 'look', 'a', 'that', '||dash||', 'boy', 'are', 'you', 'lucky', '||dash||', 'another', 'great', 'spot', '||dash||', 'right', 'in', 'front', 'of', 'the', 'hospital', '||period||', 'in', 'an', 'emergency', 'yet', '||exclammark||', 'how', 'lucky', 'are', 'you', 'huh', '||questionmark||', 'is', 'that', 'unbelievable', '||questionmark||', 'how', 'unbelievable', 'is', 'that', 'huh', '||questionmark||', 'come', 'on', '||comma||', 'give', 'it', 'to', 'me', '||comma||', 'give', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'never', 'seen', 'a', 'mohel', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'a', 'one', 'in', 'a', 'million', 'mohel', '||period||', '||return||', '||return||', 'elaine:', 'i', 'said', "i'm", 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'kramer:', 'oh', "you'll", 'be', 'ok', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'wha', '||comma||', 'where', 'is', 'he', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'well', 'if', 'it', "isn't", 'shakey', 'the', 'mohel', '||exclammark||', 'nice', 'job', 'on', 'the', 'circumcision', 'but', "it's", 'not', 'supposed', 'to', 'be', 'a', 'finger', '||period||', '||return||', '||return||', 'mohel:', '||leftparen||', 'rejerry', '||rightparen||', 'the', 'circumcision', 'was', 'perfect', '||period||', 'the', 'finger', 'was', 'your', 'fault', '||exclammark||', 'you', 'flinched', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'who', 'made', 'you', 'a', 'mohel', '||questionmark||', 'whadya', '||comma||', 'get', 'your', 'degree', 'from', 'a', 'matchbook', '||questionmark||', '||return||', '||return||', 'mohel:', '||leftparen||', 'he', 'makes', 'a', 'sudden', 'movement', '||rightparen||', 'ya', 'see', '||exclammark||', 'he', 'flinched', 'again', '||exclammark||', '||return||', '||return||', 'jerry:', 'nice', 'mohel', 'picking', '||comma||', 'elaine', '||period||', 'you', 'picked', 'a', 'helluva', 'mohel', '||exclammark||', '||return||', '||return||', 'mohel:', 'one', 'more', 'peep', 'out', 'of', 'you', 'and', "i'll", 'slice', 'you', 'up', 'like', 'a', 'smoked', 'sturgeon', '||period||', '||return||', '||return||', 'jerry:', 'oh', "don't", 'threaten', 'me', '||comma||', 'butcher', 'boy', '||period||', '||return||', '||return||', 'mohel:', 'butcher', 'boy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'ya', 'what', 'was', 'this', '||questionmark||', '||leftparen||', 'he', 'imitates', "mohel's", 'flinching', '||rightparen||', '||return||', '||return||', 'mohel:', 'what', 'was', 'this', '||questionmark||', '||leftparen||', 'he', 'imitates', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'it', 'was', 'not', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'be', 'careful', '||period||', 'the', "mohel's", 'got', 'a', 'knife', '||exclammark||', '||return||', '||return||', 'stan:', '||leftparen||', 'holding', 'the', 'mohel', 'back', '||rightparen||', 'hey', '||comma||', 'hey', "what's", 'going', 'on', 'out', 'here', '||questionmark||', 'you', 'two', 'should', 'be', 'ashamed', 'of', 'yourselves', '||comma||', 'both', 'of', 'ya', '||exclammark||', '||return||', '||return||', 'mohel:', 'ah', '||comma||', 'blood', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "how's", 'the', 'baby', '||questionmark||', '||return||', '||return||', 'stan:', "there's", 'nothing', 'wrong', 'with', 'the', 'baby', '||period||', '||return||', '||return||', 'myra:', 'the', 'circumcision', 'went', 'fine', '||period||', '||return||', '||return||', 'mohel:', 'thank', 'god', 'the', 'flincher', "didn't", 'harm', 'the', 'baby', '||period||', '||return||', '||return||', 'stan:', 'amen', '||period||', '||return||', '||return||', 'mohel:', 'i', 'will', 'get', 'you', 'for', 'this', '||period||', 'this', 'is', 'my', 'business', '||comma||', 'this', 'is', 'my', 'life', '||period||', 'no', 'one', 'ruins', 'this', 'for', 'me', '||period||', 'no', 'one', '||exclammark||', '||leftparen||', 'to', 'elaine', '||rightparen||', "here's", 'my', 'card', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'off', 'screen', '||rightparen||', 'outta', 'my', 'way', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'struggling', 'to', 'open', 'a', 'bottle', 'with', 'his', 'bandaged', 'finger', '||rightparen||', 'i', "can't", 'do', 'it', '||period||', '||leftparen||', 'a', 'la', 'godfather', '||rightparen||', 'look', 'what', 'they', 'did', 'to', 'my', 'boy', '||comma||', 'they', 'massacred', 'my', 'boy', '||period||', '||return||', '||return||', 'elaine:', 'you', 'really', 'do', 'the', 'worst', 'godfather', 'i', 'ever', 'heard', '||period||', "you're", 'not', 'even', 'close', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'over', 'the', 'the', 'buzzer', 'to', 'answer', 'it', '||rightparen||', 'oh', '||comma||', "that's", 'the', 'flicks', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'phone', '||rightparen||', "it's", 'a', "'76", 'chevy', 'impala', '||period||', 'they', 'stole', 'it', 'right', 'in', 'front', 'of', 'the', 'hospital', '||period||', 'i', 'saw', 'the', 'guy', 'drive', 'off', 'in', 'it', '||period||', 'well', "he's", 'about', 'five', 'feet', 'tall', '||comma||', 'hairless', '||comma||', 'pink', 'complexion', '||period||', '||period||', '||leftparen||', 'elaine', 'puts', 'her', 'finger', 'on', 'her', 'nose', '||rightparen||', 'looks', 'like', 'a', 'pig', '||period||', 'yeah', '||comma||', 'alright', 'alright', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', 'so', 'any', 'word', 'from', 'the', '||quotemark||', 'pig', '||dash||', 'man', '||quotemark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'and', "he's", 'not', 'a', 'pig', '||dash||', 'man', 'is', 'he', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "he's", 'not', '||period||', '||period||', 'just', 'a', 'fat', 'little', 'mental', 'patient', '||period||', '||return||', '||return||', 'jerry:', 'myra', '||comma||', 'stan', '||period||', '||return||', '||return||', 'myra:', "don't", 'touch', 'him', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'stan:', "you're", 'out', '||comma||', 'jerry', '||period||', "you're", 'out', 'as', 'godfather', '||period||', 'you', 'too', '||comma||', 'elaine', '||period||', "you're", 'both', 'out', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'stan:', 'no', '||comma||', 'no', 'buts', '||period||', 'we', 'made', 'up', 'our', 'minds', '||period||', '||leftparen||', 'turns', 'to', 'kramer', '||rightparen||', 'we', 'want', 'kramer', '||period||', 'he', 'showed', 'us', 'how', 'much', 'he', 'cares', 'about', 'steven', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaving', 'a', 'la', 'godfather', '||rightparen||', "don't", 'ever', 'go', 'against', 'the', 'family', 'jerry', '||period||', '||return||', '||return||', 'stan:', '||leftparen||', 'grabbing', "kramer's", 'hand', '||rightparen||', 'godfather', '||period||', '||return||', '||return||', 'myra:', '||leftparen||', 'grabbing', "kramer's", 'other', 'hand', '||rightparen||', 'godfather', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||return||', '||return||', '*note:', 'during', 'this', 'closing', 'monologue', '||semicolon||', "jerry's", 'finger', 'is', 'bandaged', 'the', 'same', 'way', 'it', 'was', 'during', 'this', 'episode', '||period||', '||return||', '||return||', 'jerry:', 'professional', 'tennis', '||period||', 'to', 'me', 'i', "don't", 'understand', 'all', 'the', 'shushing', '||period||', 'why', 'are', 'they', 'always', 'shushing', '||period||', 'shh', '||comma||', 'shh', '||period||', "don't", 'the', 'players', 'know', 'that', "we're", 'there', '||questionmark||', 'should', 'we', 'duck', 'down', 'behind', 'the', 'seats', 'so', 'they', "don't", 'see', 'us', 'watching', 'them', '||questionmark||', 'to', 'me', 'tennis', 'is', 'basically', 'just', 'ping', '||dash||', 'pong', 'and', 'the', 'players', 'are', 'standing', 'on', 'the', 'table', '||period||', "that's", 'all', 'it', 'is', '||period||', 'and', 'that', 'goofy', 'scoring', '||comma||', 'you', 'win', 'one', 'point', 'and', 'all', 'the', 'sudden', "you're", 'up', 'by', '15', '||period||', 'two', 'points', '||comma||', '30', '||dash||', 'love', '||period||', '30', '||dash||', 'love', '||period||', 'sounds', 'like', 'an', 'english', 'call', 'girl', '||period||', '||quotemark||', "that'll", 'be', '30', '||comma||', 'love', '||period||', '||period||', '||period||', 'and', 'could', 'you', 'be', 'a', 'little', 'quieter', 'next', 'time', '||comma||', 'please', '||comma||', 'shh', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'are', 'these', 'seats', 'unbelievable', 'or', 'what', '||questionmark||', '||return||', '||return||', 'george:', "where's", 'the', 'sunblock', '||questionmark||', '||return||', '||return||', 'jerry:', 'here', '||period||', '||return||', '||return||', 'george:', '25', '||questionmark||', 'you', "don't", 'have', 'anything', 'higher', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'are', 'you', 'on', 'mercury', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'need', 'higher', '||period||', 'this', 'has', 'paba', 'in', 'it', '||comma||', 'i', 'need', 'paba', '||dash||', 'free', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'problem', 'with', 'paba', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'have', 'a', 'problem', 'with', 'paba', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'even', 'know', 'what', 'paba', 'is', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'enough', 'to', 'stay', 'away', 'from', 'it', '||period||', '||return||', '||return||', 'announcer:', '30', '||dash||', 'love', '||return||', '||return||', 'george:', 'so', 'are', 'you', 'going', 'to', "todd's", 'party', 'this', 'weekend', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'go', 'if', 'someone', 'else', 'drives', '||period||', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'gwen', 'really', 'wants', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', "you're", 'bringing', 'a', 'date', 'to', 'a', 'party', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'party', 'is', 'a', 'bad', 'date', 'situation', '||period||', 'it', "doesn't", 'matter', 'who', "you're", 'with', '||period||', 'you', 'could', 'be', 'with', 'j', '||period||', 'edgar', 'hoover', '||period||', 'you', "don't", 'want', 'to', 'sit', 'and', 'talk', 'with', 'hoover', 'all', 'night', '||period||', 'you', 'want', 'to', 'circulate', '||period||', '||leftparen||', 'makes', 'hand', 'motions', '||rightparen||', 'ho', '||comma||', 'ho', '||comma||', 'ho', '||period||', '||return||', '||return||', 'george:', "why'd", 'you', 'pick', 'hoover', '||questionmark||', 'was', 'he', 'that', 'interesting', 'to', 'talk', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'would', 'think', '||comma||', 'with', 'the', 'law', 'enforcement', 'and', 'the', 'cross', 'dressing', '||period||', 'seems', 'like', 'an', 'interesting', 'guy', '||period||', '||return||', '||return||', 'george:', 'yeah', 'i', 'guess', '||period||', 'what', 'can', 'i', 'do', '||questionmark||', 'i', 'gotta', 'take', 'her', 'with', 'me', '||period||', 'todd', 'introduced', 'us', '||comma||', "i'm", 'obligated', '||period||', '||return||', '||return||', 'jerry:', 'that', 'woman', 'is', 'absolutely', 'stunning', '||period||', '||return||', '||return||', 'george:', 'who', '||comma||', 'the', 'croat', '||questionmark||', '[the', 'tennis', 'player]', '||return||', '||return||', 'jerry:', 'not', 'the', 'croat', '||comma||', 'the', 'lineswoman', '||period||', 'that', 'is', 'the', 'most', 'beautiful', 'lineswoman', "i've", 'ever', 'seen', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "she's", 'a', 'b', '||period||', 'l', '||period||', '||return||', '||return||', 'jerry:', 'b', '||period||', 'l', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'beautiful', 'lineswoman', '||period||', 'alright', 'listen', 'uh', "i'm", 'going', 'to', 'go', 'to', 'the', 'concession', 'stand', 'and', 'get', 'some', 'real', 'sunblock', '||period||', 'you', 'want', 'anything', '||questionmark||', 'jerry', '||questionmark||', '||leftparen||', 'jerry', 'is', 'staring', 'at', 'the', 'lineswoman', '||rightparen||', 'jerry', '||questionmark||', '||return||', '||return||', 'coworker:', 'you', 'know', '||comma||', 'i', 'just', 'heard', 'the', 'lexington', 'line', 'is', 'out', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'annoyed', '||rightparen||', 'uh', '||comma||', 'you', 'are', 'kidding', 'me', '||period||', 'how', 'am', 'i', 'supposed', 'to', 'get', 'to', 'this', 'meeting', '||questionmark||', '||return||', '||return||', 'coworker:', 'take', 'a', 'car', 'service', '||period||', 'we', 'have', 'an', 'account', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'forget', 'it', '||comma||', 'i', 'hate', 'those', '||period||', 'everytime', 'i', 'take', 'one', '||comma||', 'the', 'driver', 'will', '*not*', 'stop', 'talking', 'to', 'me', '||period||', 'no', 'matter', 'how', 'disinterested', 'i', 'seem', 'he', 'just', 'keeps', 'yakking', 'away', '||period||', 'blah', '||comma||', 'blah', '||comma||', 'blah', '||comma||', 'blah', '||comma||', 'blah', '||period||', 'why', 'does', 'everything', 'always', 'have', 'to', 'have', 'a', 'social', 'componant', '||questionmark||', 'now', 'a', 'stage', 'coach', '||comma||', 'that', 'would', 'have', 'been', 'a', 'good', 'situation', 'for', 'me', '||period||', 'cause', "i'm", 'in', 'the', 'coach', '||comma||', 'and', 'the', 'driver', 'is', 'way', 'up', 'there', 'on', 'the', 'stage', '||period||', '||return||', '||return||', 'coworker:', 'well', "you're", 'not', 'going', 'to', 'get', 'a', 'cab', 'now', '||period||', 'four', 'thirty', 'in', 'the', 'afternoon', '||questionmark||', 'read', 'a', 'magazine', '||comma||', 'keep', 'your', 'head', 'down', '||period||', '||return||', '||return||', 'elaine:', 'yea', '||comma||', 'i', 'guess', 'that', 'could', 'work', '||period||', '||return||', '||return||', 'announcer:', 'and', 'that', 'is', 'it', '||period||', 'the', 'match', 'to', 'ms', '||period||', 'natalia', 'valdoni', '||period||', 'coming', 'up', 'next', '||comma||', 'mens', 'single', '||comma||', 'but', 'for', 'now', "let's", 'stop', 'a', 'minute', 'and', 'take', 'a', 'look', 'at', 'our', 'beautiful', 'tennis', 'center', 'backdrop', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', "it's", 'george', '||period||', '||return||', '||return||', 'announcer:', 'holy', 'cow', "it's", 'a', 'scorcher', '||period||', 'boy', 'i', 'bet', 'you', 'that', 'guy', 'can', 'cover', 'a', 'lot', 'of', 'court', '||period||', '||return||', '||return||', 'announcer', '#2:', 'hey', 'buddy', '||comma||', 'they', 'got', 'a', 'new', 'invention', '||period||', "it's", 'called', 'a', 'napkin', '||period||', "we'll", 'take', 'a', 'station', 'break', 'and', 'continue', 'with', 'more', 'action', '||period||', '||period||', '||period||', '||return||', '||return||', 'driver:', 'dag', 'gavershole', 'plaza', 'huh', '||questionmark||', '||leftparen||', 'elaine', 'ignores', 'him', '||rightparen||', 'pendant', 'publishing', '||comma||', "that's", 'books', 'right', '||questionmark||', '||leftparen||', 'elaine', 'is', 'annoyed', 'and', 'still', 'ignoring', 'him', '||rightparen||', 'miss', '||questionmark||', '||return||', '||return||', 'elaine:', 'pardon', 'me', '||questionmark||', '||return||', '||return||', 'driver:', 'books', '||comma||', "that's", 'what', 'you', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'driver:', 'yeah', '||comma||', 'i', "don't", 'read', 'much', 'myself', '||comma||', '||leftparen||', 'elaine', 'is', 'annoyed', '||rightparen||', 'well', 'you', 'know', 'besides', 'the', 'paper', '||period||', 'yeah', 'a', 'lot', 'of', 'people', 'read', 'to', 'relax', '||comma||', 'not', 'me', '||period||', 'you', 'know', 'what', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'i', '||dash||', "i'm", 'having', 'a', 'lot', 'of', 'trouble', '||comma||', 'um', '||comma||', 'hearing', 'you', 'back', 'here', '||period||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'driver:', '||leftparen||', 'yelling', '||rightparen||', 'i', 'said', 'you', 'know', 'what', 'i', 'do', '||leftparen||', 'elaine', 'is', 'very', 'annoyed', '||rightparen||', 'when', 'i', 'want', 'to', 'relax', '||questionmark||', 'the', 'jumble', '||period||', 'hey', 'uh', 'do', 'you', 'make', 'a', 'book', 'of', 'jumbles', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'to', 'have', 'to', 'be', 'honest', 'with', 'you', '||period||', "i'm", 'going', 'deaf', '||period||', '||return||', '||return||', 'driver:', 'going', 'deaf', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'driver:', 'oh', 'i', '||dash||', 'i', '||dash||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'it', 'can', 'be', 'very', 'frustrating', '||period||', '||return||', '||return||', 'driver:', 'hey', 'what', 'about', 'a', 'hearing', 'aid', '||questionmark||', '||return||', '||return||', 'elaine:', 'am', 'i', 'fearing', 'aids', '||questionmark||', 'oh', '||comma||', 'yeah', 'sure', '||comma||', 'who', "isn't", '||period||', 'but', 'you', 'know', 'you', 'gotta', 'live', 'your', 'life', '||period||', '||return||', '||return||', 'driver:', 'no', '||comma||', 'no', 'i', 'said', '||period||', 'ehhh', '||comma||', 'forget', 'it', '||period||', '||leftparen||', 'elaine', 'looks', 'pleased', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', "can't", 'take', 'my', 'eyes', 'off', 'that', 'lineswoman', '||period||', 'the', 'woman', 'is', 'absolutely', 'mesmerizing', '||period||', '||return||', '||return||', 'george:', 'boy', 'you', 'are', 'really', 'smitten', '||period||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'talk', 'to', 'her', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'george:', 'cold', '||questionmark||', 'how', 'are', 'you', 'going', 'to', 'do', 'that', '||questionmark||', "you're", 'not', 'one', 'of', 'those', 'guys', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'to', 'psyche', 'myself', 'into', 'it', 'like', 'those', 'people', 'that', 'just', 'walk', 'across', 'the', 'hot', 'coals', '||period||', '||return||', '||return||', 'george:', "they're", 'not', 'mocked', 'and', 'humiliated', 'when', 'they', 'get', 'to', 'the', 'other', 'side', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', '||period||', 'i', "won't", 'be', 'able', 'to', 'live', 'with', 'myself', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', 'jerry', '||comma||', "there's", 'a', 'bigger', 'issue', 'here', '||period||', 'if', 'you', 'go', 'through', 'that', 'wall', 'and', 'become', 'one', 'of', 'those', 'guys', "i'll", 'be', 'left', 'here', 'on', 'this', 'side', '||period||', 'take', 'me', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'going', 'to', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', '||quotemark||', 'hi', '||quotemark||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughing', '||rightparen||', 'you', 'think', "you're", 'going', 'to', 'the', 'other', 'side', 'with', '||quotemark||', 'hi', '||quotemark||', '||questionmark||', "you're", 'not', 'going', 'to', 'make', 'it', '||period||', '||return||', '||return||', 'radio:', 'base', 'to', '92', 'come', 'in', '||return||', '||return||', 'driver:', 'yes', 'this', 'is', '92', '||return||', '||return||', 'radio:', 'after', 'this', 'go', 'back', 'to', 'city', 'for', 'a', '600', 'pickup', '||return||', '||return||', 'driver:', 'righteo', '||return||', '||return||', 'radio:', '794', 'bleeker', 'the', "party's", 'hanks', '||period||', 'tom', 'hanks', '||period||', '||return||', '||return||', 'elaine:', 'tom', 'hanks', '||questionmark||', 'after', 'me', "you're", 'picking', 'up', 'tom', 'hanks', '||questionmark||', 'i', 'love', 'him', '||period||', '||return||', '||return||', 'driver:', 'so', 'i', 'guess', 'your', 'hearing', 'goes', 'in', 'and', 'out', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'realizing', 'he', 'caught', 'her', '||rightparen||', 'yeah', '||period||', 'yes', 'it', 'does', '||period||', '||period||', '||period||', '||return||', '||return||', 'driver:', 'yeah', '||period||', 'you', 'know', 'what', 'i', 'think', '||questionmark||', 'i', 'think', 'you', 'made', 'that', 'whole', 'thing', 'up', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'no', 'no', '||period||', '||return||', '||return||', 'driver:', 'yeah', 'yeah', '||comma||', 'i', 'know', 'your', 'type', '||period||', "you're", 'too', 'good', 'to', 'make', 'conversation', 'with', 'someone', 'like', 'me', '||period||', 'oh', 'god', 'forbid', 'you', 'could', 'discuss', 'the', 'jumbles', '||period||', 'but', 'to', 'go', 'so', 'far', 'as', 'to', 'pretend', "you're", 'almost', 'deaf', '||comma||', 'i', 'mean', 'that', 'is', 'truly', 'disgusting', '||period||', 'and', 'mr', '||period||', 'tom', 'hanks', '||comma||', 'may', 'i', 'say', 'he', 'too', 'would', 'be', 'disgusted', 'by', 'your', 'behavior', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||period||', '||leftparen||', 'woman', 'ignores', 'him', '||rightparen||', 'excuse', 'me', '||questionmark||', '||leftparen||', 'still', 'ignores', 'him', '||rightparen||', 'oh', "that's", 'nice', '||period||', "that's", 'right', 'ignore', 'me', '||period||', "that's", 'real', 'polite', '||period||', 'yea', "nobody's", 'even', 'talking', 'to', 'you', '||period||', 'all', 'you', 'big', 'lineswoman', '||period||', 'oh', "you've", 'got', 'some', 'kind', 'of', 'a', 'cool', 'job', '||period||', 'i', 'know', 'your', 'type', 'thinking', 'your', 'too', 'good', 'for', 'everyone', '||comma||', 'but', "it's", 'women', 'like', 'you', '||leftparen||', 'woman', 'turns', 'around', 'and', 'notices', 'him', '||rightparen||', 'oh', 'well', '||comma||', 'what', 'are', 'you', 'deaf', '||questionmark||', '||return||', '||return||', 'laura:', 'bingo', '||period||', '||return||', '||return||', 'kramer:', 'and', "you're", 'saying', "she's", 'deaf', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', '*saying*', "she's", 'deaf', '||comma||', "she's", 'deaf', '||period||', '||return||', '||return||', 'kramer:', "can't", 'hear', 'a', 'thing', '||period||', '||return||', '||return||', 'jerry:', "can't", 'hear', 'a', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'and', "you're", 'going', 'to', 'go', 'out', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "isn't", 'that', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry', '&', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'i', 'know', 'how', 'to', 'sign', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'when', 'i', 'was', '8', '||comma||', 'i', 'had', 'a', 'deaf', 'cousin', 'who', 'lived', 'with', 'us', 'for', 'about', 'a', 'year', '||period||', '||leftparen||', 'signing', 'as', 'he', 'speaks', '||rightparen||', 'so', 'i', "haven't", 'been', 'able', 'to', 'do', 'it', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'met', 'this', 'deaf', 'lineswoman', 'at', 'the', 'tennis', 'match', '||period||', '||return||', '||return||', 'elaine:', 'you', 'are', 'kidding', '||period||', 'that', 'is', 'amazing', '||period||', '||leftparen||', 'she', 'pushes', 'jerry', '||comma||', 'jerry', 'falls', 'back', 'into', 'kramer', '||period||', '||rightparen||', 'i', 'just', 'took', 'a', 'car', 'service', 'from', 'work', 'and', 'to', 'get', 'the', 'driver', 'to', 'not', 'talk', 'to', 'me', '||comma||', 'i', 'pretended', 'i', 'was', 'going', 'deaf', '||period||', '||return||', '||return||', 'jerry:', 'wow', 'good', 'plan', '||period||', '||return||', '||return||', 'elaine:', 'oh', "didn't", 'work', '||period||', 'he', 'caught', 'me', 'hearing', '||period||', 'alright', "it's", 'terrible', '||comma||', 'but', "i'm", 'not', 'a', 'terrible', 'person', '||period||', '||return||', '||return||', 'jerry', '&', 'kramer:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'when', 'i', 'shoo', 'squirrels', 'away', '||comma||', 'i', 'always', 'say', '||quotemark||', 'get', 'out', 'of', 'here', '||quotemark||', '||period||', 'i', 'never', 'ever', 'throw', 'things', 'at', 'them', 'and', 'try', 'to', 'injure', 'them', 'like', 'other', 'people', '||period||', '||return||', '||return||', 'jerry:', "that's", 'nice', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'and', 'when', 'i', 'see', 'freaks', 'in', 'the', 'street', 'i', 'never', '||comma||', 'ever', 'stare', 'at', 'them', '||period||', 'yet', '||comma||', "i'm", 'careful', 'not', 'to', 'look', 'away', '||comma||', 'see', '||comma||', 'because', 'i', 'want', 'to', 'make', 'the', 'freaks', 'feel', 'comfortable', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'turning', 'to', 'kramer', '||rightparen||', "that's", 'nice', 'for', 'the', 'freaks', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'and', 'i', "don't", 'poof', 'up', 'my', 'hair', 'when', 'i', 'got', 'to', 'a', 'movie', 'so', 'people', 'behind', 'me', 'can', 'see', '||period||', "i've", 'got', 'to', 'make', 'it', 'up', 'to', 'this', 'guy', 'or', 'i', "won't", 'be', 'able', 'to', 'live', 'with', 'myself', '||period||', 'what', 'can', 'i', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'get', 'him', 'some', 'tickets', 'or', 'something', '||comma||', 'how', 'about', 'that', 'friend', 'of', 'yours', 'that', 'works', 'at', 'the', 'ticket', 'agency', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', 'pete', '||comma||', 'he', 'can', 'get', 'you', 'great', 'tickets', 'to', 'something', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'like', 'a', 'rock', 'concert', '||period||', 'whatever', 'you', 'like', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'great', '||comma||', 'thanks', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'it', '||period||', 'hey', 'jerry', '||comma||', 'do', 'me', 'a', 'favor', '||period||', 'the', 'next', 'time', 'you', 'see', 'that', 'lineswoman', 'ask', 'her', 'how', 'those', 'ball', 'boys', 'get', 'those', 'jobs', '||period||', 'i', 'would', 'love', 'to', 'be', 'able', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', 'think', 'perhaps', "you've", 'overlooked', 'one', 'of', 'the', 'key', 'aspects', 'of', 'this', 'activity', '||period||', "it's", 'ball', '*boys*', '||comma||', 'not', 'ball', 'men', '||period||', 'there', 'are', 'no', 'ball', 'men', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'i', 'think', "he's", 'right', '||period||', "i've", 'never', 'seen', 'a', 'ball', 'man', '||period||', '||return||', '||return||', 'kramer:', 'well', 'there', 'ought', 'to', 'be', 'ball', 'men', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', "i'll", 'talk', 'to', 'her', '||period||', 'if', 'you', 'want', 'to', 'be', 'a', 'ball', 'man', 'go', 'ahead', '||comma||', 'break', 'the', 'ball', 'barrier', '||period||', '||leftparen||', 'elaine', 'drinks', 'straight', 'out', 'of', 'the', 'orange', 'juice', 'container', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'you', 'know', 'a', 'friend', 'of', 'mine', 'from', 'work', 'said', 'that', 'she', 'saw', 'george', 'at', 'the', 'tennis', 'match', 'on', 'tv', 'yesterday', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', 'me', 'too', '||period||', 'yeah', 'he', 'was', 'at', 'the', 'snack', 'bar', 'eating', 'a', 'hot', 'fudge', 'sundae', '||period||', 'he', 'had', 'it', 'all', 'over', 'his', 'face', '||period||', 'he', 'was', 'wearing', 'that', 'chocolate', 'on', 'his', 'face', 'like', 'a', 'beard', 'and', 'they', 'got', 'in', 'there', 'real', 'nice', 'and', 'tight', '||period||', 'and', "he's", '||period||', '||period||', '||period||', '||leftparen||', 'imitates', 'scooping', 'up', 'ice', 'cream', '||period||', 'elaine', 'and', 'jerry', 'laugh', '||rightparen||', '||return||', '||return||', 'gwen:', "i'm", 'sorry', 'george', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'understand', 'things', 'were', 'going', 'so', 'great', '||period||', 'what', 'happened', '||questionmark||', 'something', 'must', 'have', 'happened', '||period||', '||return||', '||return||', 'gwen:', "it's", 'not', 'you', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'george:', "you're", 'giving', 'me', 'the', '||quotemark||', "it's", 'not', 'you', '||comma||', "it's", 'me', '||quotemark||', 'routine', '||questionmark||', 'i', 'invented', '||quotemark||', "it's", 'not', 'you', '||comma||', "it's", 'me', '||quotemark||', '||period||', 'nobody', 'tells', 'me', "it's", 'them', 'not', 'me', '||comma||', 'if', "it's", 'anybody', "it's", 'me', '||period||', '||return||', '||return||', 'gwen:', 'all', 'right', '||comma||', 'george', '||comma||', "it's", 'you', '||period||', '||return||', '||return||', 'george:', "you're", '*damn*', 'right', "it's", 'me', '||period||', '||return||', '||return||', 'gwen:', 'i', 'was', 'just', 'trying', 'to', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'what', 'you', 'were', 'trying', 'to', 'do', '||period||', 'nobody', 'does', 'it', 'better', 'than', 'me', '||period||', '||return||', '||return||', 'gwen:', "i'm", 'sure', 'you', 'do', 'it', 'very', 'well', '||period||', '||return||', '||return||', 'george:', 'yes', 'well', 'unfortunately', "you'll", 'never', 'get', 'the', 'chance', 'to', 'find', 'out', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'thought', 'things', 'were', 'going', 'great', '||period||', '||return||', '||return||', 'george:', 'yeah', 'so', 'did', 'i', '||period||', '||return||', '||return||', 'jerry:', 'did', 'she', 'say', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'she', 'tried', 'to', 'give', 'me', 'the', '||quotemark||', "it's", 'not', 'you', '||comma||', "it's", 'me', '||quotemark||', 'routine', '||period||', '||return||', '||return||', 'jerry:', 'but', "that's", 'your', 'routine', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'well', 'aparently', "word's", 'out', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'georgie', '||comma||', 'i', 'saw', 'you', 'on', 'tv', 'yesterday', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'at', 'the', 'tennis', 'match', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'you', 'were', 'at', 'the', 'snack', 'bar', 'eating', 'a', 'hot', 'fudge', 'sundae', '||period||', '||return||', '||return||', 'george:', 'get', 'out', 'of', 'here', '||period||', 'i', "didn't", 'see', 'any', 'cameras', 'there', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'the', 'cameras', 'was', '||comma||', 'vrooom', '||comma||', 'there', '||period||', 'the', 'announcers', '||comma||', 'they', 'made', 'a', 'couple', 'of', 'cracks', 'about', 'you', '||period||', '||return||', '||return||', 'george:', 'cracks', '||questionmark||', 'what', 'were', 'they', 'saying', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'you', 'had', 'ice', 'cream', 'all', 'over', 'your', 'face', '||period||', 'they', 'were', 'talking', 'about', 'how', 'funny', 'you', 'looked', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||comma||', 'maybe', 'gwen', 'saw', 'it', '||period||', 'maybe', "that's", 'what', 'did', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', "i'll", 'tell', 'you', 'it', "wasn't", 'a', 'pretty', 'sight', '||period||', '||return||', '||return||', 'george:', 'she', 'must', 'have', 'seen', 'me', 'eating', 'it', 'on', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'so', 'she', 'sees', 'you', 'with', 'hot', 'fudge', 'on', 'your', 'face', 'and', 'she', 'ends', 'it', '||questionmark||', 'you', 'really', 'think', 'she', 'would', 'be', 'that', 'superficial', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||period||', 'i', 'would', 'be', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', '||period||', 'oh', 'hi', 'dad', '||period||', '||period||', '||period||', 'you', 'saw', 'him', '||questionmark||', '||period||', '||period||', '||period||', 'really', 'with', 'the', 'ice', 'cream', '||questionmark||', '||period||', '||period||', '||period||', 'all', 'right', "i'll", 'talk', 'to', 'you', 'later', '||comma||', 'bye', '||period||', '||return||', '||return||', 'george:', "you're", 'parents', 'saw', 'me', 'on', 'tv', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'nighmare', '||period||', 'kramer', 'how', 'long', 'was', 'i', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'felt', 'like', '8', 'seconds', '||period||', '||return||', '||return||', 'george:', 'one', '||dash||', 'one', '||dash||', 'thousand', '||comma||', 'two', '||dash||', 'one', '||dash||', 'thousand', '||comma||', 'three', '||dash||', 'one', '||dash||', 'thousand', '||period||', '||return||', '||return||', 'elaine:', 'i', 'heard', 'you', '*really*', 'inhaled', 'that', 'thing', '||period||', 'did', 'anyone', 'tape', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'can', 'we', 'move', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'thinks', 'gwen', 'broke', 'up', 'with', 'him', 'because', 'she', 'saw', 'him', 'eating', 'the', 'ice', 'cream', 'on', 'tv', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'come', 'on', '||period||', 'if', "she's", 'that', 'superficial', 'you', "don't", 'want', 'her', '||period||', '||return||', '||return||', 'george:', 'yes', 'i', 'do', '||period||', '||return||', '||return||', 'elaine:', 'so', 'i', 'guess', "you're", 'not', 'going', 'to', "todd's", 'party', 'on', 'friday', '||period||', '||return||', '||return||', 'george:', 'well', 'i', "can't", 'now', '||comma||', "gwen's", 'going', 'to', 'be', 'there', '||period||', '||return||', '||return||', 'kramer:', 'well', 'she', 'should', 'be', 'the', 'one', 'that', "shouldn't", 'go', '||period||', '||return||', '||return||', 'jerry:', 'well', 'if', 'a', 'couple', 'breaks', 'up', 'and', 'have', 'plans', 'to', 'go', 'to', 'a', 'neutral', 'place', '||comma||', 'who', 'withdraws', '||questionmark||', "what's", 'the', 'etiquette', '||questionmark||', '||return||', '||return||', 'kramer:', 'excellent', 'question', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'she', 'should', 'withdraw', '||period||', "she's", 'the', 'breaker', '||comma||', "he's", 'the', 'breakee', '||period||', 'he', 'needs', 'to', 'get', 'on', 'with', 'his', 'life', '||period||', '||return||', '||return||', 'elaine:', 'i', 'beg', 'to', 'differ', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'elaine:', "he's", 'the', '*loser*', '||period||', "she's", 'the', 'victor', '||period||', 'to', 'the', 'victor', 'belong', 'the', 'spoils', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', "don't", 'care', '||comma||', 'i', "don't", 'want', 'to', 'go', 'anyway', '||period||', 'i', "don't", 'want', 'to', 'fight', 'that', 'traffic', 'on', 'friday', 'night', '||period||', '||return||', '||return||', 'elaine:', 'well', 'we', 'can', 'take', 'the', 'car', 'service', 'from', 'my', 'office', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'they', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'while', 'eating', 'a', 'banana', '||rightparen||', 'hey', 'georgie', '||period||', '||return||', '||return||', 'george:', '||quotemark||', 'to', 'the', 'victor', 'goes', 'the', 'spoils', '||period||', '||quotemark||', 'what', 'are', 'you', 'going', 'to', 'do', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'i', 'got', 'a', 'date', 'with', 'laura', 'the', 'lineswoman', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||leftparen||', 'he', 'stands', 'there', '||rightparen||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||leftparen||', 'george', 'fiddles', 'with', 'the', 'lock', 'on', 'the', 'door', '||period||', '||rightparen||', 'well', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'was', 'just', 'going', 'to', 'wander', 'the', 'streets', '||period||', "don't", 'wanna', 'tag', 'along', 'with', 'you', 'or', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'uh', '||comma||', 'do', 'you', 'want', 'to', 'come', 'with', 'us', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', 'please', '||comma||', "that's", 'very', 'nice', '||comma||', 'but', '||comma||', 'uh', '||comma||', '||leftparen||', 'closes', 'the', 'door', '||rightparen||', 'where', 'would', 'we', 'be', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', "i've", 'got', 'ice', 'cream', 'all', 'over', 'my', 'face', '||period||', 'there', 'were', 'no', 'napkins', 'there', '||period||', 'whoever', 'it', 'was', "that's", 'responsible', 'for', 'stocking', 'that', 'concession', 'stand', 'cost', 'me', 'a', 'relationship', '||period||', '||return||', '||return||', 'laura:', 'they', 'never', 'have', 'napkins', 'there', '||period||', '||return||', '||return||', 'jerry:', "let's", 'get', 'the', 'check', '||period||', '||leftparen||', 'waves', 'in', 'the', 'air', '||rightparen||', 'is', 'this', 'uh', 'considered', 'signing', '||questionmark||', 'do', 'you', 'do', 'this', 'when', 'you', 'want', 'the', 'check', '||questionmark||', '||return||', '||return||', 'laura:', '||leftparen||', 'does', 'the', 'same', 'thing', 'jerry', 'is', 'doing', '||rightparen||', 'yea', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', 'i', 'know', 'a', 'sign', '||comma||', "that's", 'my', 'first', 'sign', '||period||', '||return||', '||return||', 'laura:', 'uh', '||comma||', 'oh', '||period||', 'that', 'couple', 'is', 'breaking', 'up', '||period||', '||return||', '||return||', 'george:', "they're", 'breaking', 'up', '||questionmark||', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'reads', 'lips', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'they', 'saying', 'now', '||questionmark||', '||return||', '||return||', 'laura:', '||quotemark||', "it's", 'not', 'you', '||comma||', "it's", 'me', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'holding', 'his', 'drink', 'up', 'to', 'his', 'mouth', '||rightparen||', 'oh', 'my', 'gosh', '||comma||', 'i', 'just', 'had', 'a', 'great', 'idea', '||period||', 'she', 'could', 'come', 'to', 'the', 'party', 'tomorrow', 'and', 'read', "gwen's", 'lips', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'puts', 'his', 'hand', 'over', 'his', 'mouth', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'puts', 'nuts', 'into', 'his', 'mouth', '||comma||', 'and', 'in', 'the', 'process', 'covers', 'his', 'mouth', '||rightparen||', 'we', 'bring', 'her', 'to', 'the', 'party', '||comma||', 'and', 'she', 'can', 'tell', 'me', 'what', 'gwen', 'is', 'saying', 'about', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'holds', 'his', 'drink', 'up', 'to', 'his', 'mouth', '||rightparen||', "she's", 'not', 'a', 'novelty', 'act', '||comma||', 'george', '||period||', 'where', 'you', 'hire', 'her', 'out', 'for', 'weddings', 'and', 'bar', 'mitzvas', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'puts', 'his', 'hands', 'on', 'his', 'face', '||comma||', 'rubbing', 'his', 'eyes', '||rightparen||', 'look', '||period||', "it's", 'a', 'skill', '||comma||', 'just', 'like', 'juggling', '||period||', 'she', 'probably', 'enjoys', 'showing', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'puts', 'his', 'napkin', 'over', 'his', 'mouth', '||rightparen||', 'i', "don't", 'know', 'george', '||period||', "i'm", 'not', 'sure', 'about', 'this', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'puts', 'his', 'arms', 'in', 'the', 'air', '||comma||', 'stretching', '||comma||', 'and', 'covers', 'his', 'mouth', 'with', 'an', 'arm', '||rightparen||', 'could', 'you', 'ask', 'her', '||comma||', 'just', 'ask', 'her', '||period||', 'if', 'she', 'says', 'no', '||comma||', 'case', 'closed', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'puts', 'his', 'hand', 'on', 'his', 'chin', 'over', 'his', 'mouth', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'laura', '||comma||', 'george', 'was', 'wondering', 'if', '||period||', '||period||', '||period||', '||return||', '||return||', 'laura:', 'sure', '||period||', "i'll", 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'really', 'had', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'laura:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'to', 'go', 'to', 'the', 'party', 'on', 'friday', 'night', '||questionmark||', '||return||', '||return||', 'laura:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "we're", 'taking', 'a', 'car', 'service', '||period||', 'so', "we'll", 'swing', 'by', 'and', 'pick', 'you', 'up', '||period||', 'how', 'about', 'six', '||questionmark||', '||leftparen||', 'laura', 'looks', 'offended', '||rightparen||', '||period||', 'six', 'is', 'good', '||period||', '||leftparen||', 'laura', 'looks', 'offended', 'and', 'angry', '||rightparen||', '||period||', 'you', 'got', 'a', 'problem', 'with', 'six', '||questionmark||', '||leftparen||', 'laura', 'opens', 'the', 'door', 'and', 'gets', 'out', '||rightparen||', '||period||', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'man:', 'okay', 'listen', 'up', 'people', '||period||', 'there', 'are', 'plenty', 'of', 'you', 'here', '||comma||', 'but', "we've", 'only', 'got', 'two', 'spots', 'to', 'fill', '||period||', 'good', 'luck', '||period||', '||return||', '||return||', 'boy:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', 'pops', '||comma||', "isn't", 'there', 'a', 'better', 'way', 'to', 'spend', 'your', 'twilight', 'years', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'may', 'be', 'old', '||comma||', 'but', "i'm", 'spry', '||period||', '||return||', '||return||', 'boy:', 'the', 'tryout', 'lasts', 'three', 'and', 'a', 'half', 'to', 'four', 'hours', '||period||', 'are', 'you', 'up', 'for', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', "i'll", 'be', 'up', 'for', 'it', 'punk', '||period||', '||return||', '||return||', 'jerry:', 'see', 'i', 'was', 'saying', '||quotemark||', 'six', '||quotemark||', 'but', 'she', 'thought', 'i', 'was', 'saying', '||quotemark||', 'sex', '||quotemark||', '||period||', 'we', 'straightened', 'the', 'whole', 'thing', 'out', 'though', '||period||', '||return||', '||return||', 'george:', 'she', 'confused', '||quotemark||', 'six', '||quotemark||', 'with', '||quotemark||', 'sex', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'well', 'if', 'she', "can't", 'tell', '||quotemark||', 'six', '||quotemark||', 'from', '||quotemark||', 'sex', '||quotemark||', 'then', 'how', 'is', 'she', 'going', 'to', 'lip', 'read', 'from', 'across', 'the', 'room', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||quotemark||', 'six', '||quotemark||', 'and', '||quotemark||', 'sex', '||quotemark||', 'are', 'close', '||period||', '||return||', '||return||', 'george:', "it's", 'two', 'completely', 'different', 'sounds', '||period||', '||quotemark||', 'ih', '||quotemark||', 'and', '||quotemark||', 'eh', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'eh', '||period||', '||return||', '||return||', 'george:', 'it', 'seems', 'like', 'a', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'well', "i'm", 'not', 'dating', 'any', 'other', 'deaf', 'women', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'guess', "who's", 'going', 'to', 'be', 'the', 'new', 'ball', 'man', 'for', 'the', 'finals', '||period||', '||return||', '||return||', 'jerry:', "you're", 'kidding', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'they', 'said', 'they', "haven't", 'seen', 'anybody', 'go', 'after', 'balls', 'with', 'such', 'gusto', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'when', 'is', 'that', 'car', 'service', 'coming', '||questionmark||', '||return||', '||return||', 'jerry:', 'in', 'five', 'minutes', '||period||', "he's", 'then', 'going', 'to', 'pick', 'us', 'up', '||comma||', 'then', "we're", 'going', 'to', 'pick', 'up', 'elaine', '||comma||', 'and', 'laura', 'is', 'going', 'to', 'meet', 'us', 'there', '||period||', '||return||', '||return||', 'george:', 'if', 'this', 'lip', 'reading', 'thing', 'works', 'tonight', 'do', 'you', 'know', 'how', 'incredible', 'this', 'is', 'going', 'to', 'be', '||questionmark||', "it's", 'like', 'having', 'superman', 'for', 'your', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', "it's", 'like', 'x', '||dash||', 'ray', 'vision', '||period||', '||return||', '||return||', 'george:', 'if', 'we', 'could', 'just', 'harness', 'this', 'power', 'and', 'use', 'it', 'for', 'our', 'own', 'personal', 'gain', '||comma||', "there'd", 'be', 'no', 'stopping', 'us', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'hear', "you've", 'got', 'some', 'lip', 'reader', 'working', 'for', 'you', '||period||', 'you', 'gotta', 'let', 'me', 'use', 'her', 'for', 'one', 'day', '||period||', 'just', 'one', 'day', '||period||', '||return||', '||return||', 'jerry:', "can't", 'do', 'it', 'newman', '||period||', '||return||', '||return||', 'newman:', 'but', 'jerry', '||comma||', "we've", 'got', 'this', 'new', 'supervisor', 'down', 'at', 'the', 'post', 'office', '||period||', "he's", 'working', 'behind', 'this', 'glass', '||period||', 'i', 'know', "they're", 'talking', 'about', 'me', '||period||', "they're", 'going', 'to', 'transfer', 'me', '||comma||', 'i', 'know', 'it', '||period||', 'two', 'hours', '||comma||', 'give', 'me', 'two', 'hours', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'going', 'to', 'happen', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'sinister', '||rightparen||', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'all', 'right', 'you', 'go', 'ahead', '||period||', 'you', 'go', 'ahead', 'and', 'keep', 'it', 'secret', '||period||', 'but', 'you', 'remember', 'this', '||period||', 'when', 'you', 'control', 'the', 'mail', '||comma||', 'you', 'control', '||period||', '||period||', '||period||', 'information', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'just', 'pull', 'over', 'right', 'there', 'by', 'the', 'stop', 'sign', '||period||', '||return||', '||return||', 'driver:', '||leftparen||', 'the', 'same', 'driver', 'as', 'before', '||rightparen||', 'pardon', 'me', 'sir', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', 'pull', 'over', 'by', 'the', 'stop', 'sign', '||period||', '||return||', '||return||', 'driver:', "i'm", 'so', 'sorry', '||comma||', "you'll", 'have', 'to', 'forgive', 'me', '||period||', 'i', "can't", 'hear', 'a', 'damn', 'thing', '||period||', 'i', 'went', 'to', 'that', 'rock', 'concert', 'last', 'night', 'at', 'the', 'garden', '||period||', 'my', 'seats', 'were', 'right', 'up', 'agains', 'the', 'speaker', '||period||', "it's", 'a', 'heavy', 'metal', 'group', '||period||', 'metalla', '||dash||', 'something', '||period||', '||return||', '||return||', 'kramer:', '||dash||', 'ca', '||period||', '||return||', '||return||', 'driver:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'ca', '||period||', '||return||', '||return||', 'george:', 'ah', '||period||', '||return||', '||return||', 'driver:', 'my', 'ears', 'are', 'still', 'ringing', '||period||', 'some', "woman's", 'idea', 'of', 'a', 'joke', '||period||', '||return||', '||return||', 'driver:', 'get', 'out', '||period||', 'get', 'out', '||period||', 'go', 'on', '||period||', 'hey', '||period||', 'shut', 'the', 'door', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'the', 'whole', 'idea', 'of', 'taking', 'the', 'car', 'service', 'was', 'so', 'i', "wouldn't", 'have', 'to', 'fight', 'the', 'traffic', 'on', 'friday', 'night', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', "i'm", 'late', '||period||', 'hey', 'now', 'i', 'know', 'two', 'signs', '||comma||', '||leftparen||', 'puts', 'his', 'hand', 'in', 'the', 'air', '||rightparen||', 'check', '||comma||', 'and', '||leftparen||', 'points', 'to', 'his', 'watch', '||rightparen||', 'late', '||period||', 'hey', 'this', 'is', 'the', 'guy', 'you', 'helped', 'become', 'the', 'first', 'ball', 'man', '||period||', '||return||', '||return||', 'laura:', 'congratulations', '||period||', '||return||', '||return||', 'kramer:', 'she', "doesn't", 'know', 'what', "she's", 'talking', 'about', '||period||', '||return||', '||return||', 'todd:', 'guys', 'you', 'made', 'it', '||period||', '||return||', '||return||', 'george:', 'hey', 'hey', '||period||', '||return||', '||return||', 'todd:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'todd', '||period||', '||return||', '||return||', 'todd:', 'sorry', 'to', 'hear', 'about', 'gwen', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'did', 'she', 'say', 'something', 'to', 'you', 'about', 'why', 'she', 'broke', 'up', 'with', 'me', '||questionmark||', '||return||', '||return||', 'todd:', 'oh', 'no', '||period||', 'tonight', 'will', 'be', 'the', 'first', 'chance', "i've", 'had', 'to', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'todd:', 'look', 'george', '||comma||', "i'm", 'friends', 'with', 'both', 'of', 'you', '||period||', 'but', 'i', "can't", 'betray', 'her', 'confidence', 'by', 'telling', 'you', 'anything', '||period||', '||return||', '||return||', 'george:', 'i', "wouldn't", 'hear', 'of', 'it', '||comma||', 'todd', '||period||', "it's", 'none', 'of', 'my', 'business', '||period||', 'but', 'you', 'should', 'try', 'to', 'find', 'out', 'everything', 'you', 'possibly', 'can', '||period||', 'in', 'fact', '||comma||', "i'll", 'even', 'stay', 'all', 'the', 'way', 'on', 'the', 'other', 'side', 'of', 'the', 'room', 'just', 'so', "there's", 'no', 'chance', 'of', 'me', 'overhearing', 'anything', '||period||', '||return||', '||return||', 'todd:', 'you', 'are', 'so', 'centered', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'grown', '||dash||', 'up', '||period||', '||leftparen||', 'they', 'both', 'chuckle', '||comma||', 'george', 'notices', 'gwen', 'enter', 'the', 'room', '||rightparen||', 'oh', 'my', 'god', '||comma||', 'there', 'she', 'is', '||period||', 'go', 'ahead', '||comma||', 'go', 'ahead', '||period||', '||leftparen||', 'to', 'the', 'others', '||rightparen||', "let's", 'go', '||comma||', "let's", 'go', '||period||', 'all', 'right', 'what', 'are', 'they', 'saying', '||questionmark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hi', 'gwen', '||comma||', 'hi', 'tide', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'hi', 'tide', '||questionmark||', '||return||', '||return||', 'kramer:', 'hi', 'todd', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', "you've", 'got', 'something', 'between', 'your', 'teeth', '||quotemark||', '||return||', '||return||', 'george:', 'wheret', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', "that's", 'what', 'he', 'said', '||period||', '||quotemark||', "that's", 'interesting', '||period||', 'i', 'love', 'carrots', '||comma||', 'but', 'i', 'hate', 'carrot', 'soup', '||period||', 'and', 'i', 'hate', 'peas', '||comma||', 'but', 'i', 'love', 'pea', 'soup', '||period||', '||quotemark||', 'so', 'do', 'i', '||period||', '||return||', '||return||', 'elaine:', "she's", 'so', 'wild', '||period||', 'can', 'i', 'borrow', 'her', 'for', 'a', 'few', 'hours', 'tomorrow', 'afternoon', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'if', 'i', 'lend', 'her', 'to', 'you', "i'll", 'have', 'to', 'lend', 'her', 'to', 'everybody', '||period||', '||return||', '||return||', 'gwen:', 'i', "don't", 'envy', 'you', 'todd', '||period||', 'the', 'place', 'is', 'going', 'to', 'be', 'a', 'mess', '||period||', '||return||', '||return||', 'todd:', 'well', 'maybe', 'you', 'can', 'stick', 'around', 'after', 'everybody', 'leaves', 'and', 'we', 'can', 'sweep', 'together', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'why', "don't", 'you', 'stick', 'around', 'and', 'we', 'can', 'sleep', 'together', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'you', 'want', 'me', 'to', 'sleep', 'with', 'you', '||questionmark||', '||quotemark||', '||return||', '||return||', 'todd:', 'i', "don't", 'want', 'to', 'sweep', 'alone', '||period||', '||return||', '||return||', 'kramer:', 'he', 'says', '||quotemark||', 'i', "don't", 'want', 'to', 'sleep', 'alone', '||period||', '||quotemark||', 'she', 'says', '||comma||', 'oh', 'boy', '||comma||', '||quotemark||', 'love', 'to', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'alright', "that's", 'it', '||period||', '||leftparen||', 'george', 'walks', 'across', 'the', 'room', 'over', 'to', 'them', '||period||', '||rightparen||', 'so', 'you', 'get', 'rid', 'of', 'me', 'and', 'now', 'the', 'two', 'of', 'you', 'are', 'going', 'to', 'sleep', 'together', '||questionmark||', '||return||', '||return||', 'gwen:', 'what', '||questionmark||', "you're", 'crazy', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'what', '||questionmark||', "you're", 'crazy', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'i', 'heard', 'your', 'whole', 'conversation', '||period||', '||return||', '||return||', 'gwen:', 'how', '||questionmark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'how', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'looks', 'back', 'to', 'the', 'group', '||rightparen||', 'i', 'can', 'read', 'lips', '||period||', 'you', 'said', "let's", 'sleep', 'together', '||period||', '||return||', '||return||', 'gwen:', 'no', 'i', "didn't", '||period||', 'i', 'said', '||quotemark||', 'sweep', '||quotemark||', '||period||', "let's", 'sweep', 'together', '||comma||', 'you', 'know', 'with', 'a', 'broom', '||period||', 'cleaning', 'up', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', '||period||', '||period||', '||period||', 'with', 'a', 'broom', '||comma||', 'cleaning', 'up', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'sweep', '||questionmark||', '||return||', '||return||', 'gwen:', 'yes', 'sweep', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yes', 'sweep', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'cut', 'it', '||period||', '||return||', '||return||', 'kramer:', 'george', 'says', '||quotemark||', 'cut', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'cut', 'it', '||period||', '||return||', '||return||', 'kramer:', 'george', 'is', 'saying', '||quotemark||', 'cut', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'cut', 'it', '||period||', '||leftparen||', 'goes', 'back', 'to', 'the', 'group', '||rightparen||', '||leftparen||', 'yelling', '||rightparen||', 'would', 'you', 'stop', 'signing', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'said', '||quotemark||', 'sweep', 'together', '||quotemark||', 'you', 'idiots', '||comma||', 'not', '||quotemark||', 'sleep', 'together', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'i', 'know', 'how', 'to', 'sign', '||period||', '||return||', '||return||', 'george:', 'ow', '||period||', 'my', 'eye', '||comma||', 'my', 'eye', '||period||', '||return||', '||return||', 'elaine:', "it's", 'so', 'amazing', 'getting', 'to', 'see', 'monica', 'seles', 'playing', 'in', 'the', 'finals', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'and', 'on', 'the', 'first', 'tournament', 'of', 'her', 'comeback', '||period||', '||return||', '||return||', 'jerry:', 'thus', 'ends', 'the', 'great', 'ball', 'man', 'experiment', '||period||', '||return||', '||return||', 'driver:', '||leftparen||', 'the', 'same', 'driver', 'as', 'before', '||rightparen||', 'you', 'with', 'the', 'tennis', 'center', '||questionmark||', '||return||', '||return||', 'laura:', 'yep', '||period||', '||return||', '||return||', 'driver:', 'hey', 'how', 'about', 'that', 'ball', 'man', 'injuring', 'monica', 'seles', '||period||', "wasn't", 'that', 'something', '||period||', '||return||', '||return||', 'laura:', "i'm", 'deaf', '||period||', '||return||', '||return||', 'driver:', 'oh', '||period||', '||leftparen||', 'very', 'suspicious', 'look', 'on', 'his', 'face', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "i've", 'always', 'been', 'a', 'big', 'fan', 'of', 'the', 'little', 'check', 'move', '||period||', 'you', 'know', '||leftparen||', 'does', 'the', 'motion', 'for', 'the', 'check', '||rightparen||', 'check', '||comma||', 'check', '||period||', 'unless', 'the', 'waiter', "isn't", 'too', 'shape', 'then', 'you', 'gotta', 'total', 'it', 'up', '||period||', 'sometimes', 'they', 'come', 'over', '||comma||', '||quotemark||', 'do', 'you', 'want', 'the', 'check', '||questionmark||', '||quotemark||', 'no', 'i', 'wanna', 'be', 'pen', 'pals', '||comma||', "can't", 'you', 'see', 'what', "i'm", 'doing', 'here', '||questionmark||', "i'm", 'trying', 'to', 'be', 'cool', 'and', 'impress', 'people', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||exclammark||', '||return||', '||return||', 'george:', 'fantastic', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'ya', '||period||', 'how', 'good', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'good', '||period||', '||return||', '||return||', 'jerry:', 'how', 'good', '||questionmark||', '||return||', '||return||', 'george:', 'very', 'good', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'it', '||period||', '||return||', '||return||', 'elaine:', 'they', 'put', 'real', 'blue', 'berries', 'in', 'this', '||period||', 'and', "there's", 'real', 'blue', 'berries', '||period||', 'what', 'kind', 'did', 'you', 'get', '||questionmark||', '||return||', '||return||', 'jerry:', 'coffee', '||period||', 'and', 'they', 'grind', 'up', 'the', 'coffee', 'beans', '||comma||', 'and', 'put', 'it', 'in', '||period||', '||return||', '||return||', 'elaine:', 'let', 'me', 'test', '||dash||', 'taste', 'that', '||period||', '||leftparen||', 'tastes', "jerry's", 'yogurt', '||rightparen||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'hmm', '||exclammark||', 'rico', '||exclammark||', '||return||', '||return||', 'jerry:', 'suave', '||exclammark||', 'and', "it's", 'non', '||dash||', 'fat', '||exclammark||', '||return||', '||return||', 'george:', 'ya', '||dash||', 'see', '||comma||', 'how', 'could', 'this', 'not', 'have', 'any', 'fat', '||questionmark||', "it's", 'too', 'good', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'offering', 'her', 'yogurt', 'to', 'george', '||rightparen||', 'you', 'want', 'to', 'taste', 'mine', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'offers', 'his', '||rightparen||', 'oh', '||comma||', 'you', 'want', 'to', 'taste', 'mine', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'george:', 'lo', '||period||', '||period||', 'k', '||comma||', 'if', 'you', 'want', 'to', 'taste', 'mine', '||comma||', 'you', "don't", 'have', 'to', 'offer', 'me', 'some', 'of', 'yours', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "let's", 'just', 'forget', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "kramer's", 'gonna', 'clean', 'up', 'on', 'this', 'place', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'invested', 'in', 'it', '||period||', '||return||', '||return||', 'george:', 'no', 'kidding', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "we've", 'been', 'coming', 'here', 'everyday', '||period||', 'this', 'is', 'so', 'fuck', '||leftparen||', 'bleeped', '||rightparen||', 'ing', 'good', '||period||', '||return||', '||return||', 'maryedith:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'we', 'should', 'get', 'going', '||period||', 'but', '||comma||', "i'm", 'going', 'to', 'get', 'a', 'little', 'bit', 'more', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'god', '||period||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'guy', 'from', 'my', 'old', 'neighborhood', '||period||', 'lloyd', 'braun', '||period||', "he's", 'a', 'big', 'advisor', 'to', 'mayor', 'dinkins', '||period||', 'he', 'thinks', "he's", 'so', 'cool', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'oh', '||period||', '||questionmark||', '||return||', '||return||', 'lloyd:', 'hey', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||dash||', 'hay', '||exclammark||', 'lloyd', '||exclammark||', 'hey', '||exclammark||', 'my', 'friend', 'jerry', 'eh', '||period||', '||return||', '||return||', 'lloyd:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'lloyd:', 'so', '||comma||', 'i', 'hear', "you're", 'living', 'back', 'home', 'now', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'there', 'was', 'a', 'fire', 'in', 'my', 'apartment', '||period||', '||return||', '||return||', 'lloyd:', 'fire', '||exclammark||', 'whoa', '||exclammark||', "there's", 'a', 'lot', 'of', 'major', 'chicks', 'in', 'this', 'place', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'george', 'nudges', 'jerry', 'with', 'his', 'right', 'arm', '||rightparen||', 'something', 'wrong', 'with', 'your', 'arm', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'uh', '||comma||', 'yeah', '||period||', 'actually', '||comma||', 'the', '||comma||', 'uh', '||comma||', 'i', '||dash||', 'i', 'bumped', 'my', 'elbow', 'on', 'a', 'desk', 'and', 'uh', 'injured', 'something', 'an', '||period||', '||period||', 'now', 'it', 'sort', 'of', 'moves', 'involuntarily', '||period||', '||return||', '||return||', 'lloyd:', 'wow', '||comma||', "that's", 'a', 'bitch', '||comma||', 'huh', '||questionmark||', 'so', '||comma||', 'how', 'are', 'your', 'parents', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'pretty', 'good', '||period||', '||return||', '||return||', 'lloyd:', 'this', 'place', 'does', 'some', 'business', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'this', 'is', 'my', 'first', 'time', 'here', '||period||', '||leftparen||', 'nudges', 'jerry', 'again', '||rightparen||', '||return||', '||return||', 'lloyd:', 'hey', '||comma||', "she's", 'a', 'doll', '||period||', '||leftparen||', 'looking', 'at', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'elaine', '||comma||', 'this', 'is', '||comma||', 'uh', '||comma||', 'lloyd', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'lloyd:', 'oh', '||comma||', 'hi', '||exclammark||', 'very', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'elaine:', 'nice', 'to', 'meet', 'you', '||comma||', 'too', '||exclammark||', '||return||', '||return||', 'lloyd:', 'well', '||comma||', "i'm", 'really', 'sorry', 'i', 'gotta', 'run', 'now', '||period||', '||leftparen||', 'sets', 'down', 'his', 'cup', 'of', 'yogurt', 'and', 'makes', 'his', 'way', 'out', '||rightparen||', 'well', '||comma||', 'take', 'it', 'easy', '||comma||', 'huh', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'excited', 'about', 'lloyd', '||rightparen||', 'aaah', '||period||', 'boy', '||comma||', 'he', 'is', 'really', 'cute', '||exclammark||', '||return||', '||return||', 'george:', "he's", 'a', 'jerk', '||period||', '||leftparen||', 'nudges', 'to', 'his', 'right', 'but', 'no', 'one', 'is', 'there', '||rightparen||', '||return||', '||return||', 'jerry:', "he's", 'gone', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'there', 'were', 'a', 'lot', 'of', 'people', 'there', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||comma||', 'that', 'yogurt', 'place', '||dash||', "you're", 'going', 'to', 'make', 'a', 'fortune', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "they're", 'doing', 'an', 'incredible', 'business', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'told', 'you', 'to', 'go', 'in', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'tasted', 'it', 'at', 'the', 'one', 'downtown', '||period||', "it's", 'got', 'a', 'remarkable', 'texture', '||period||', "you'd", 'never', 'know', 'it', 'was', 'non', '||dash||', 'fat', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'the', 'buzzer', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'the', 'buzzer', '||rightparen||', 'buzz', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'had', 'the', 'show', 'of', 'my', 'life', 'last', 'night', '||period||', 'i', 'ad', '||dash||', 'libbed', 'like', 'ten', 'new', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'did', 'you', 'tape', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulling', 'out', 'a', 'tape', 'from', 'his', 'pocket', '||rightparen||', 'vvvvup', '||period||', 'right', 'there', '||period||', 'i', 'got', 'it', '||period||', 'i', 'did', 'this', 'thing', 'on', 'the', 'ottoman', 'empire', '||period||', 'like', '||comma||', 'what', 'was', 'this', '||questionmark||', 'a', 'whole', 'empire', 'based', 'on', 'putting', 'your', 'feet', 'up', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'you', '||comma||', 'i', 'got', 'like', 'a', 'whole', 'new', 'tonight', 'show', 'here', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'was', 'having', 'lunch', '||comma||', 'and', 'i', 'bit', 'down', 'on', 'the', 'fork', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "it's", 'hard', 'to', 'believe', '||dash||', 'with', 'all', 'that', 'biting', 'experience', '||dash||', 'a', 'person', 'could', 'still', 'make', 'a', 'mistake', 'like', 'that', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sort', 'of', 'falling', 'backwords', '||rightparen||', 'yowm', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'getting', 'heavy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'look', 'like', 'you', 'put', 'on', '||leftparen||', 'holds', 'his', 'hands', 'out', '||rightparen||', 'five', '||comma||', '||leftparen||', 'holds', 'his', 'hands', 'wider', '||rightparen||', 'ten', 'pounds', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'you', 'something', 'else', '||comma||', "you're", 'looking', 'a', 'little', 'chunky', 'yourself', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', "where's", 'your', 'bathroom', 'scale', '||questionmark||', '||leftparen||', 'jerry', 'looks', 'at', 'her', 'like', "'where", 'do', 'you', 'think', '||questionmark||', "'", 'elaine', 'and', 'jerry', 'both', 'go', 'into', 'the', 'bathroom', '||rightparen||', 'oh', 'my', 'god', '||comma||', "i've", 'gained', 'seven', 'pounds', '||period||', '||return||', '||return||', 'jerry:', "i've", 'gained', 'eight', '||period||', '||return||', '||return||', 'kramer:', 'i', 'told', 'ya', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'my', 'god', '||exclammark||', 'a', 'couple', '||comma||', 'but', '7', 'pounds', '||period||', 'how', 'did', 'i', 'gain', '7', 'pounds', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'i', 'gain', 'eight', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'get', 'it', '||period||', 'i', '||comma||', "i've", 'been', 'doing', 'the', 'same', 'exercises', '||period||', 'i', "haven't", 'been', 'eating', 'anything', 'different', '||period||', '||return||', '||return||', 'jerry:', 'me', '||comma||', 'either', '||period||', 'wait', 'a', 'second', '||period||', 'wait', 'a', 'second', '||period||', 'maybe', "it's", 'that', 'yogurt', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "that's", 'hundred', 'percent', 'non', '||dash||', 'fat', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'how', 'else', 'could', 'this', 'have', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', "it's", 'the', 'oreos', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'eat', 'oreos', '||period||', '||return||', '||return||', 'kramer:', 'you', "don't", 'eat', 'oreos', '||questionmark||', '||leftparen||', 'acts', 'out', 'eating', 'oreos', '||rightparen||', 'the', 'way', 'you', 'break', 'them', 'open', '||questionmark||', "you're", '||leftparen||', 'does', 'a', 'bunch', 'of', 'licking', 'motions', '||rightparen||', '~', 'practically', 'having', 'sex', 'with', 'them', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', '||questionmark||', "you're", 'getting', 'old', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'your', 'yogurt', "isn't", 'so', 'non', '||dash||', 'fat', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'guess', 'again', '||comma||', 'tubby', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "there's", 'got', 'to', 'be', 'a', 'way', 'to', 'find', 'that', 'out', '||period||', '||return||', '||return||', 'jerry:', 'there', 'must', 'be', 'some', 'kind', 'of', 'lab', 'that', 'would', 'do', 'that', 'kind', 'of', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', "i've", 'got', 'it', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'call', 'the', 'food', 'and', 'drug', 'administration', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'll", 'tell', 'you', 'what', '||comma||', 'chubs', '||comma||', 'if', 'that', 'yogurt', 'has', 'fat', 'in', 'it', '||comma||', 'i', 'will', 'put', 'myself', 'on', 'an', 'all', '||dash||', 'yogurt', 'diet', 'for', 'a', 'week', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "let's", 'start', 'the', 'insanity', '||period||', '||return||', '||return||', 'kramer:', 'nnnn', '||dash||', 'giddy', '||dash||', 'up', '||exclammark||', '||return||', '||return||', 'frank:', 'tommy', 'tune', 'is', 'a', 'very', 'good', 'dancer', '||period||', '||leftparen||', 'hits', 'george', 'on', 'the', 'head', 'with', 'what', 'seems', 'to', 'be', 'the', 'tvguide', '||rightparen||', 'you', 'ever', 'see', 'tommy', 'tune', 'dance', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'estelle:', 'i', 'like', 'tap', 'dancing', '||period||', '||return||', '||return||', 'frank:', 'tap', 'dancing', '||period||', 'anyone', 'can', 'tap', 'dance', '||period||', "it's", 'all', 'in', 'those', 'shoes', '||period||', '||return||', '||return||', 'estelle:', 'are', 'you', 'kidding', '||questionmark||', 'they', 'practice', 'for', 'years', '||comma||', 'those', 'people', '||period||', '||return||', '||return||', 'george:', "what's", 'for', 'supper', '||questionmark||', '||return||', '||return||', 'estelle:', "somebody's", 'at', 'the', 'door', '||period||', '||return||', '||return||', 'frank:', 'tommy', 'tune', 'is', 'very', 'tall', '||period||', 'that', 'helps', '||period||', 'it', 'makes', 'him', 'lankier', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'answers', 'the', 'door', '||rightparen||', 'lloyd', '||questionmark||', '||return||', '||return||', 'lloyd:', 'hello', '||comma||', 'mrs', '||period||', 'costanza', '||period||', '||return||', '||return||', 'estelle:', 'georgie', '||comma||', 'lloyd', 'braun', 'is', 'here', '||period||', '||return||', '||return||', 'frank:', 'hey', '||exclammark||', 'lloyd', '||exclammark||', '||return||', '||return||', 'estelle:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'lloyd:', 'well', '||comma||', 'i', 'was', 'just', 'in', 'the', 'neighborhood', 'visiting', 'my', 'mother', 'so', 'i', 'thought', "i'd", 'drop', 'by', 'and', 'say', '||comma||', '||quotemark||', 'hello', '||quotemark||', '||period||', '||return||', '||return||', 'estelle:', 'georgie', '||period||', 'come', 'here', 'and', 'say', 'hello', '||period||', '||return||', '||return||', 'frank:', 'how', 'are', 'you', 'doing', '||comma||', 'lloyd', '||questionmark||', 'i', 'hear', "you're", 'a', 'big', 'advisor', 'for', 'dinkins', 'now', '||period||', '||return||', '||return||', 'lloyd:', "that's", 'right', '||period||', 'hey', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'lloyd', '||period||', '||leftparen||', 'shakes', 'hands', 'with', 'lloyd', '||rightparen||', "how's", 'it', 'going', '||questionmark||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'lloyd:', 'i', 'uh', 'ran', 'into', 'george', 'yesterday', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'estelle:', 'ow', '||exclammark||', '||leftparen||', 'hits', 'george', 'on', 'the', 'forehead', '||rightparen||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'lloyd:', 'so', '||comma||', 'uh', '||comma||', "how's", 'the', 'arm', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'good', '||period||', '||return||', '||return||', 'estelle:', "what's", 'the', 'matter', 'with', 'your', 'arm', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'lloyd:', 'oh', '||comma||', 'his', 'arm', 'moves', 'like', 'this', '||period||', '||leftparen||', 'does', 'the', 'nudging', 'motion', '||rightparen||', '||return||', '||return||', 'frank:', 'your', 'arm', 'moves', 'like', 'this', '||questionmark||', '||leftparen||', 'does', 'the', 'nudging', 'motion', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'continues', 'to', 'move', 'his', 'arm', '||rightparen||', 'i', 'never', 'seen', 'your', 'arm', 'move', 'like', 'this', '||period||', '||return||', '||return||', 'estelle:', 'me', '||comma||', 'either', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'comes', 'and', 'goes', '||period||', '||return||', '||return||', 'frank:', "it's", 'like', 'some', 'kind', 'of', 'aaaaa', '||leftparen||', 'snapping', 'his', 'fingers', '||rightparen||', 'spasm', '||period||', '||return||', '||return||', 'lloyd:', 'ooh', '||exclammark||', 'i', 'asked', 'mr', '||period||', 'dinkins', 'if', 'he', 'knew', 'any', 'good', 'orthopedists', '||comma||', 'and', 'he', 'said', 'he', 'had', 'the', 'best', '||period||', '||leftparen||', 'hands', 'george', 'the', "doctor's", 'card', '||rightparen||', 'so', '||comma||', 'i', 'made', 'an', 'appointment', 'for', 'you', '||period||', 'dr', '||period||', 'dekter', '||period||', '||return||', '||return||', 'estelle:', 'mayor', 'dinkins', 'got', 'an', 'appointment', 'for', 'him', '||questionmark||', '||return||', '||return||', 'frank:', 'you', 'mentioned', "george's", 'name', 'to', 'mayor', 'dinkins', '||questionmark||', 'you', 'discussed', 'george', 'with', 'the', 'mayor', 'of', 'new', 'york', '||questionmark||', '||return||', '||return||', 'estelle:', 'dinkins', 'was', 'talking', 'about', 'you', '||period||', 'he', 'was', 'discussing', 'you', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'lloyd', '||comma||', 'i', '||dash||', "i've", 'been', 'to', 'the', 'doctor', '||leftparen||', 'hands', 'george', 'the', 'card', '||rightparen||', "there's", 'really', 'nothing', 'they', 'can', 'do', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'grabbing', 'the', 'card', '||rightparen||', 'hey', '||comma||', 'mayor', 'dinkins', 'set', 'this', 'up', 'for', 'you', '||period||', 'you', 'know', 'what', 'kind', 'of', 'a', 'doctor', 'this', 'must', 'be', 'if', 'dinkins', 'knows', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'all', 'right', '||exclammark||', "i'll", 'go', '||period||', '||return||', '||return||', 'lloyd:', 'well', '||comma||', "that's", 'great', '||period||', '||leftparen||', 'grabs', 'the', 'card', 'back', 'from', 'frank', 'and', 'hands', 'it', 'to', 'george', 'again', '||rightparen||', 'and', '||comma||', 'uh', '||comma||', "i'll", 'be', 'very', 'interested', 'to', 'hear', 'the', 'diagnosis', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', 'okay', '||comma||', 'well', '||comma||', "we're", 'coming', 'down', '||period||', 'all', 'right', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'okay', '||period||', 'i', 'got', 'a', 'place', 'that', 'can', 'analyze', 'it', '||period||', "it's", 'in', 'brooklyn', '||period||', 'we', 'have', 'to', 'drive', 'there', '||period||', '||return||', '||return||', 'jerry:', 'and', 'they', 'said', 'they', 'can', 'do', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "it's", 'forty', '||dash||', 'five', 'bucks', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "let's", 'go', 'down', 'to', 'the', 'yogurt', 'store', '||comma||', 'and', "we'll", 'get', 'a', 'specimen', '||period||', '||return||', '||return||', 'elaine:', 'hm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'maryedith:', 'well', '||comma||', 'i', 'hope', "you're", 'satisfied', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'maryedith:', 'every', 'word', 'out', 'of', 'my', "son's", 'mouth', 'now', 'is', '*beep*', '||leftparen||', 'fuck', '||rightparen||', '||comma||', '*beep*', '||leftparen||', 'fuck', '||rightparen||', '||comma||', '*beep*', '||leftparen||', 'fuck', '||rightparen||', '||period||', '||leftparen||', 'jerry', 'half', 'turns', 'and', 'puts', 'his', 'head', 'done', 'for', 'a', 'second', '||rightparen||', 'you', 'know', 'what', 'he', 'said', 'to', 'me', 'five', 'minutes', 'ago', '||questionmark||', "where's", 'my', '*beep*', '||leftparen||', 'fuck', '||rightparen||', 'ing', 'cupcake', '||questionmark||', '||return||', '||return||', 'jerry:', 'gee', '||comma||', "i'm", 'really', 'sorry', '||period||', '||return||', '||return||', 'maryedith:', 'he', 'wants', 'to', 'be', 'like', 'you', 'because', "you're", 'a', 'comedian', '||period||', 'maybe', 'you', 'could', 'talk', 'to', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', "i'd", 'be', 'happy', 'to', '||period||', '||return||', '||return||', 'maryedith:', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'mary', '||comma||', "we've", 'been', 'eating', 'a', 'lot', 'of', 'your', "husband's", 'uh', 'yogurt', 'at', 'the', 'yogurt', 'place', '||dash||', 'does', 'that', 'have', 'any', 'fat', 'in', 'it', '||questionmark||', '||return||', '||return||', 'maryedith:', 'no', '*beep*', '||leftparen||', 'fuck', '||rightparen||', 'ing', 'way', '||exclammark||', '||return||', '||return||', 'lloyd:', 'well', '||comma||', 'it', 'was', 'very', 'nice', 'seeing', 'you', 'again', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'it', 'was', 'good', 'seeing', 'you', '||period||', '||return||', '||return||', 'lloyd:', 'oh', '||comma||', 'um', '||comma||', 'by', 'the', 'way', '||comma||', 'who', 'was', 'that', 'gorgeous', 'woman', 'i', 'saw', 'you', 'with', 'the', 'other', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'uh', '||comma||', 'just', 'a', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'estelle:', 'you', 'must', 'mean', 'elaine', '||period||', "isn't", 'she', 'adorable', '||questionmark||', '||return||', '||return||', 'lloyd:', 'she', 'is', '||period||', 'she', 'is', '||period||', 'how', 'about', 'giving', 'me', 'her', 'number', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'know', '||comma||', 'lloyd', '||comma||', 'i', 'really', "don't", 'have', 'it', '||period||', '||return||', '||return||', 'estelle:', 'she', 'works', 'at', 'pendant', 'publishing', '||period||', 'elaine', 'benes', '||period||', '||return||', '||return||', 'lloyd:', 'oh', '||comma||', 'great', '||period||', '||leftparen||', 'nudges', 'george', 'on', 'the', 'chin', '||rightparen||', 'thanks', 'a', 'lot', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', '||return||', '||return||', 'lloyd:', 'buh', 'bye', '||period||', '||return||', '||return||', 'estelle:', 'bye', '||exclammark||', '||leftparen||', 'lloyd', 'leaves', '||rightparen||', 'oh', '||comma||', 'that', 'lloyd', 'braun', '||period||', 'he', 'is', 'something', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'i', "wouldn't", 'hear', 'of', 'it', '||period||', 'i', 'said', '||comma||', '||quotemark||', 'nice', 'try', '||comma||', 'granny', '||exclammark||', '||quotemark||', 'and', 'i', 'sent', 'her', 'to', 'the', 'back', 'of', 'the', 'line', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', '||comma||', 'jerry', '||period||', 'say', '||comma||', 'this', 'yogurt', 'is', 'really', 'something', '||comma||', 'huh', '||questionmark||', 'and', "it's", 'non', '||dash||', 'fat', '||exclammark||', "i've", 'been', 'waiting', 'for', 'something', 'like', 'this', 'my', 'whole', 'life', '||exclammark||', 'and', "it's", 'finally', 'here', '||exclammark||', '||return||', '||return||', 'owner:', 'hey', '||comma||', 'seinfeld', '||period||', "i'd", 'appreciate', 'it', 'if', "you'd", 'stop', 'using', 'obscenities', 'around', 'my', 'son', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'an', 'accident', '||period||', "i'm", 'going', 'to', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'i', 'want', 'a', 'small', '||comma||', 'plain', 'vanilla', 'in', 'a', 'cup', 'to', 'go', '||period||', "that's", 'non', '||dash||', 'fat', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'owner:', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', "'cause", "i'm", 'on', 'a', 'special', 'diet', '||comma||', 'and', 'the', 'doctor', 'said', 'i', "can't", 'have', 'any', 'fat', '||period||', '||return||', '||return||', 'owner:', 'yeah', '||comma||', 'well', '||comma||', 'there', 'is', 'no', 'fat', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'another', 'round', 'of', 'strawberry', 'for', 'me', 'and', 'my', 'friends', '||period||', '||return||', '||return||', 'elaine:', 'hurry', '||comma||', 'jerry', '||exclammark||', 'hurry', '||exclammark||', '||return||', '||return||', 'jerry:', "how's", 'it', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'not', 'so', 'good', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', "can't", 'have', 'this', 'tested', 'now', '||period||', "it's", 'melting', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||period||', '||return||', '||return||', 'kramer:', 'it', 'changes', 'the', 'molecules', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', "don't", 'know', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'fatso', '||exclammark||', 'i', 'got', 'a', '90', 'in', 'biology', '||period||', '||return||', '||return||', 'jerry:', 'you', 'call', 'me', 'fatso', 'one', 'more', 'time', '||semicolon||', "you're", 'going', 'to', 'be', 'walking', 'back', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'hi', '||exclammark||', 'hi', '||period||', 'i', 'called', 'earlier', 'about', 'getting', 'the', 'yogurt', 'tested', '||period||', '||return||', '||return||', 'lab', 'technician:', 'oh', '||comma||', 'right', '||period||', 'would', 'you', 'fill', 'this', 'out', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'does', 'it', 'matter', 'if', "it's", 'melted', '||questionmark||', '||return||', '||return||', 'lab', 'technician:', 'no', '||exclammark||', '||leftparen||', 'jerry', 'looks', 'at', 'kramer', '||rightparen||', 'you', 'know', '||comma||', 'this', 'is', 'going', 'to', 'take', 'a', 'couple', 'of', 'days', '||period||', '||return||', '||return||', 'elaine:', "that's", 'okay', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||comma||', 'there', '||period||', '||return||', '||return||', 'cheryl:', 'hello', '||exclammark||', '||return||', '||return||', 'kramer:', 'ooh', '||exclammark||', 'test', 'tubes', '||period||', 'cool', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'got', 'there', '||questionmark||', '||return||', '||return||', 'lab', 'technician:', 'actually', '||comma||', 'this', 'is', 'mr', '||period||', "giuliani's", 'blood', '||period||', "we're", 'doing', 'a', 'cholesterol', 'work', 'up', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', "i'm", 'done', '||period||', '||return||', '||return||', 'cheryl:', 'it', 'was', 'really', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', "pleasure's", 'all', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'take', 'that', 'chemist', 'out', '||period||', '||return||', '||return||', 'kramer:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "she's", 'like', 'the', 'jury', '||period||', "she's", 'going', 'to', 'be', 'sequestered', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'not', 'taking', 'her', 'out', 'just', 'to', 'influence', 'the', 'results', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'think', 'the', 'whole', 'thing', 'stinks', '||period||', '||return||', '||return||', 'elaine:', 'it', 'smells', '||period||', 'smells', 'bad', '||period||', 'smells', 'really', 'bad', '||period||', '||return||', '||return||', 'jerry:', "that's", 'enough', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'with', 'the', 'smelling', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'he', 'made', 'an', 'appointment', 'for', 'me', 'to', 'see', "dinkins'", 'doctor', '||period||', "he's", 'just', 'trying', 'to', 'humiliate', 'me', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', 'and', 'i', 'have', 'to', 'go', '||period||', 'if', 'i', "don't", 'go', '||comma||', "he'll", 'know', "i'm", 'lying', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', '||comma||', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', 'sit', 'in', 'the', "doctor's", 'office', 'doing', 'this', '||questionmark||', '||leftparen||', 'moves', 'his', 'arm', '||rightparen||', "he's", 'gonna', 'think', "you're", 'a', 'mental', 'patient', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'care', '||period||', 'look', '||comma||', 'lloyd', "doesn't", 'know', 'what', "he's", 'up', 'against', '||period||', 'this', 'is', 'nothing', 'to', 'me', '||period||', '||leftparen||', 'moving', 'his', 'arm', '||rightparen||', 'my', 'whole', 'life', 'is', 'a', 'lie', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'guess', 'who', 'called', 'me', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "don't", 'tell', 'me', '||period||', 'lloyd', '||questionmark||', '||return||', '||return||', 'elaine:', "we're", 'going', 'out', 'tomorrow', 'night', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'look', '||comma||', "he's", 'going', 'to', 'ask', 'you', 'about', 'my', 'arm', '||period||', 'so', '||comma||', 'just', 'tell', 'him', 'i', 'banged', 'it', 'against', 'a', 'desk', '||period||', 'and', "it's", 'been', 'moving', 'involuntarily', 'ever', 'since', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'say', 'that', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'if', 'i', 'like', 'him', '||questionmark||', "i'm", 'going', 'to', 'start', 'out', 'lying', 'to', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', "you're", 'taking', 'his', 'side', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'but', 'what', 'if', 'we', 'get', 'married', 'or', 'something', '||questionmark||', "we'll", 'always', 'have', 'that', 'between', 'us', '||period||', '||return||', '||return||', 'george:', 'already', "you're", 'marrying', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'never', 'know', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'believe', 'me', '||comma||', "you're", 'not', 'going', 'to', 'marry', 'him', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'well', '||comma||', 'then', 'what', 'if', 'we', 'become', 'a', 'couple', '||comma||', 'george', '||questionmark||', 'every', 'time', 'we', 'see', 'you', "you're", 'going', 'to', 'be', 'walking', 'around', 'going', 'like', 'this', '||questionmark||', '||leftparen||', 'moving', 'her', 'arm', '||rightparen||', 'even', 'you', "can't", 'keep', 'that', 'up', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'believe', 'he', 'can', '||period||', '||return||', '||return||', 'maryedith:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||exclammark||', '||return||', '||return||', 'maryedith:', 'you', 'know', 'jerry', '||period||', '||return||', '||return||', 'matthew:', 'of', 'course', '||comma||', "he's", 'the', 'funny', '*beep*', '||leftparen||', 'fuck', '||rightparen||', '||period||', '||return||', '||return||', 'maryedith:', 'see', '||exclammark||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'matthew', '||comma||', 'i', '||dash||', 'i', 'want', 'to', 'explain', 'something', 'to', 'you', '||period||', 'now', '||comma||', 'cursing', 'is', 'not', 'something', 'that', 'most', 'comedians', 'do', '||period||', '||return||', '||return||', 'matthew:', 'you', 'did', 'it', '||period||', '||return||', '||return||', 'jerry:', "that's", 'true', '||period||', 'but', 'it', 'was', 'an', 'accident', '||period||', 'and', 'i', "haven't", 'done', 'it', 'since', '||period||', 'and', 'i', 'would', 'never', 'do', 'it', 'again', '||period||', 'and', 'if', 'you', 'continue', 'cursing', '||comma||', "you'll", 'never', 'become', 'a', 'comedian', 'like', 'me', 'when', 'you', 'grow', 'up', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', 'excuse', 'me', 'one', 'second', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'lloyd', 'advises', 'dinkins', 'on', 'everything', 'he', 'does', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'big', 'advisor', '||period||', '||return||', '||return||', 'elaine:', 'he', 'tells', 'him', 'which', 'soap', 'to', 'use', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quickly', 'moves', 'over', 'toward', 'matthew', '||rightparen||', 'what', 'the', '*beep*', '||leftparen||', 'fuck', '||rightparen||', 'are', 'you', 'doing', '||questionmark||', 'you', 'little', 'piece', 'of', '*beep*', '||leftparen||', 'shit', '||rightparen||', '||exclammark||', '||return||', '||return||', 'cheryl:', 'shh', '||exclammark||', 'we', "don't", 'want', 'to', 'disturb', 'the', 'security', 'guard', '||period||', '||return||', '||return||', 'kramer:', "where's", 'the', 'lights', '||period||', 'whoa', '||exclammark||', '||return||', '||return||', 'cheryl:', 'how', 'about', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'bunsen', 'burner', '||period||', '||leftparen||', 'runs', 'his', 'fingers', 'through', 'the', 'flame', '||rightparen||', 'oo', 'ya', 'ya', '||period||', '||return||', '||return||', 'cheryl:', 'oo', '||period||', '||return||', '||return||', 'kramer:', 'yaow', '||period||', '||return||', '||return||', 'cheryl:', 'ha', 'hea', '||period||', '||return||', '||return||', 'kramer:', 'you', 'want', 'a', 'taste', '||questionmark||', "it's", 'cappuccino', '||period||', '||return||', '||return||', 'cheryl:', "it's", 'delicious', '||period||', '||return||', '||return||', 'kramer:', 'i', 'hear', 'you', '||period||', '||return||', '||return||', 'cheryl:', 'non', '||dash||', 'fat', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'tell', 'me', '||period||', 'is', 'the', 'verdict', 'in', 'yet', '||questionmark||', '||return||', '||return||', 'cheryl:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'is', 'in', 'case', "there's", 'a', 'tie', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'as', 'far', 'as', 'i', 'know', '||comma||', 'he', 'bumped', 'his', 'arm', 'into', 'a', 'door', 'and', "it's", 'kind', 'of', 'got', 'this', 'in', '||leftparen||', 'pauses', '||rightparen||', 'voluntarily', 'movement', '||period||', 'some', 'sort', 'of', 'a', '||leftparen||', 'clears', 'her', 'throat', '||rightparen||', 'spasm', '||period||', 'so', '||comma||', 'anyway', '||comma||', "you're", 'a', '||period||', '||period||', "you're", 'a', 'big', 'advisor', 'to', 'dinkins', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'lloyd:', 'yeah', '||comma||', 'yeah', '||period||', "it's", 'coming', 'right', 'down', 'to', 'the', 'wire', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', 'you', 'know', 'what', 'i', 'would', 'do', 'if', 'i', 'was', 'running', 'for', 'mayor', '||period||', 'one', 'of', 'my', 'campaign', 'themes', 'would', 'be', 'that', 'everybody', 'should', 'wear', 'name', 'tags', 'all', 'the', 'time', 'to', 'make', 'the', 'city', 'friendlier', '||period||', '||return||', '||return||', 'lloyd:', 'name', 'tags', '||comma||', 'hmm', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'everybody', 'would', 'know', 'everybody', '||period||', 'it', 'would', 'be', 'like', 'a', 'small', 'town', '||period||', '||return||', '||return||', 'lloyd:', 'maybe', "i'll", 'mention', 'that', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'wow', '||period||', '||return||', '||return||', 'lloyd:', 'you', 'sure', 'you', "don't", 'want', 'any', 'yogurt', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'm", 'watching', 'my', 'weight', '||period||', '||return||', '||return||', 'lloyd:', 'well', '||comma||', "it's", 'non', '||dash||', 'fat', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'so', 'they', 'say', '||period||', '||return||', '||return||', 'lloyd:', 'well', "i'm", 'done', '||comma||', 'should', 'we', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'three', 'days', 'and', 'he', "hasn't", 'called', 'me', '||comma||', 'and', 'you', 'know', 'why', '||questionmark||', 'because', 'he', 'thinks', "i'm", 'too', 'fat', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surprised', '||rightparen||', 'he', 'said', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stands', 'up', 'straight', '||rightparen||', 'no', '||comma||', 'but', 'i', 'saw', 'the', 'look', 'on', 'his', 'face', 'when', 'he', 'put', 'his', 'arm', 'around', 'me', '||period||', 'and', 'then', 'we', 'went', 'to', 'his', 'apartment', '||comma||', 'and', 'i', 'sat', 'on', 'one', 'of', 'his', 'chairs', 'and', 'it', 'broke', '||period||', 'and', 'he', 'says', '||comma||', '||quotemark||', 'boy', '||comma||', "you're", 'a', 'lot', 'of', 'woman', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'so', '||comma||', 'hear', 'anything', 'on', 'the', 'yogurt', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'i', 'expect', 'to', 'hear', 'anytime', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "wouldn't", 'get', 'your', 'hopes', 'up', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'you', 'say', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'reason', '||period||', 'oh', '||comma||', 'did', 'you', 'hear', 'about', 'that', 'dinkins', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'what', 'about', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', "didn't", 'hear', '||questionmark||', '||return||', '||return||', 'elaine:', 'un', '||dash||', 'huh', '||period||', '||return||', '||return||', 'kramer:', "he's", 'proposing', 'a', 'plan', 'where', 'everyone', 'in', 'the', 'city', 'should', 'wear', 'name', 'tags', '||period||', '||return||', '||return||', 'jerry:', 'name', 'tags', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'so', 'people', 'can', 'go', 'around', 'saying', '||quotemark||', 'hello', '||quotemark||', 'to', 'one', 'another', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'see', '||period||', 'so', 'you', 'can', 'go', '||comma||', '||quotemark||', 'hey', '||comma||', 'you', 'know', 'who', 'i', 'saw', 'wilding', 'today', '||questionmark||', 'herb', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', "he's", 'become', 'the', 'laughing', 'stock', '||exclammark||', 'you', 'know', 'the', 'times', 'has', 'already', 'stated', 'it', 'could', 'cost', 'him', 'the', 'election', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'name', 'tags', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', 'yes', '||period||', 'uh', '||dash||', 'huh', '||period||', 'ya', '||period||', 'oh', '||comma||', 'really', '||questionmark||', 'okay', '||comma||', 'thank', 'you', 'very', 'much', '||period||', 'bye', '||dash||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'well', '||comma||', 'the', 'yogurt', 'verdict', 'is', 'in', '||period||', '||leftparen||', 'kramer', 'looks', 'at', 'jerry', 'with', 'his', 'arms', 'out', '||rightparen||', 'fat', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeow', '||exclammark||', '||return||', '||return||', 'george:', 'the', 'next', 'morning', '||comma||', 'i', 'woke', 'up', '||comma||', 'and', 'it', 'was', 'going', 'like', 'this', '||period||', '||leftparen||', 'moves', 'his', 'arm', 'slowly', '||rightparen||', 'i', 'can', 'control', 'it', 'if', 'i', 'really', 'concentrate', '||period||', 'but', 'otherwise', '||comma||', '||leftparen||', 'arm', 'moves', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'doctor:', 'uh', 'huh', '||period||', 'yes', '||comma||', 'well', '||comma||', "i'm", 'going', 'to', 'have', 'to', 'be', 'perfectly', 'honest', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'please', '||comma||', 'doctor', '||period||', '||return||', '||return||', 'doctor:', "i've", 'examined', 'you', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'doctor:', "i've", 'looked', 'at', 'your', 'x', '||dash||', 'rays', '||period||', '||return||', '||return||', 'george:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'doctor:', 'and', 'i', 'find', 'that', "there's", 'absolutely', 'nothing', 'wrong', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'hmm', '||period||', 'really', '||questionmark||', 'nothing', '||questionmark||', '||return||', '||return||', 'doctor:', 'nothing', '||comma||', 'that', 'would', 'indicate', 'involuntary', 'spasms', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'kind', 'of', 'a', 'mystery', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'doctor:', 'no', '||comma||', 'not', 'really', '||period||', '||return||', '||return||', 'george:', 'how', 'so', '||questionmark||', '||return||', '||return||', 'doctor:', 'may', 'i', 'suggest', 'the', 'possibility', 'that', "you're", 'faking', '||questionmark||', '||return||', '||return||', 'george:', 'faking', '||questionmark||', 'what', 'makes', 'you', 'think', 'that', 'i', 'have', 'time', 'to', 'see', 'doctors', '||comma||', 'take', 'x', '||dash||', 'rays', '||comma||', 'make', 'appointments', '||comma||', 'when', "there's", 'absolutely', 'nothing', 'wrong', 'with', 'me', '||questionmark||', 'what', 'kind', 'of', 'a', 'person', 'would', 'do', 'a', 'thing', 'like', 'that', '||questionmark||', '||return||', '||return||', 'doctor:', 'i', "don't", 'know', 'what', 'kind', 'of', 'a', 'person', 'would', 'do', 'something', 'like', 'that', '||period||', 'obviously', 'a', 'very', 'sick', 'person', '||period||', 'a', 'very', 'immature', 'person', '||period||', 'a', 'person', 'who', 'has', 'no', 'regard', 'for', 'wasting', 'other', "people's", 'valuable', 'time', '||period||', 'good', '||dash||', 'bye', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', 'see', 'here', '||comma||', 'doctor', '||period||', '||return||', '||return||', 'doctor:', 'i', 'said', '||comma||', 'good', '||dash||', 'bye', '||period||', '||return||', '||return||', 'george:', 'fine', '||period||', '||leftparen||', 'hits', 'his', 'arm', 'on', 'the', 'desk', '||rightparen||', 'ow', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'come', 'on', '||comma||', 'look', '||period||', "let's", 'go', 'over', 'to', 'that', 'yogurt', 'store', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'elaine', '||comma||', "i've", 'been', 'thinking', 'about', 'this', '||period||', 'this', 'has', 'got', 'to', 'be', 'a', 'massive', 'conspiracy', '||period||', 'who', 'knows', 'how', 'deep', 'it', 'goes', '||period||', 'hey', '||comma||', 'look', '||comma||', 'wait', 'a', 'second', '||comma||', '||leftparen||', 'looking', 'at', 'the', 'tv', '||rightparen||', 'kramer', '||comma||', 'turn', 'that', 'up', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||comma||', 'okay', '||period||', '||return||', '||return||', 'news:', 'rudy', 'giuliani', '||comma||', 'who', 'underwent', 'a', 'physical', 'last', 'week', '||comma||', 'received', 'some', 'startling', 'news', 'today', '||comma||', 'when', 'his', 'cholesterol', 'count', 'turned', 'out', 'to', 'be', 'a', 'whopping', '375', '||period||', 'what', 'effect', 'this', 'will', 'have', 'on', 'the', 'minds', 'of', 'the', 'voters', 'remains', 'to', 'be', 'seen', '||period||', 'in', 'another', 'development', '||comma||', 'mayor', 'dinkins', 'has', 'fired', 'his', 'top', 'advisor', '||comma||', 'lloyd', 'braun', '||comma||', 'who', 'is', 'believed', 'to', 'be', 'responsible', 'for', 'the', 'name', 'tag', 'fiasco', '||period||', 'we', 'now', 'take', 'you', 'to', 'giuliani', 'headquarters', 'where', 'rudy', 'giuliani', 'is', 'about', 'to', 'make', 'a', 'statement', '||period||', '||return||', '||return||', 'giuliani:', "it's", 'hard', 'to', 'understand', '||period||', 'because', "i've", 'been', 'doing', 'everything', 'i', 'normally', 'do', '||period||', "i've", 'been', 'watching', 'my', 'diet', 'very', 'carefully', '||period||', 'i', 'exercise', 'regularly', '||period||', 'my', 'only', 'indulgence', '||comma||', 'i', 'guess', '||comma||', 'would', 'be', 'that', 'i', 'eat', 'a', 'lot', 'of', 'frozen', 'yogurt', '||period||', 'but', "it's", 'non', '||dash||', 'fat', '||period||', '||return||', '||return||', 'jerry:', 'non', '||dash||', 'fat', 'yogurt', '||questionmark||', 'oh', '||comma||', 'my', 'god', '||period||', 'they', 'got', 'giuliani', 'and', 'he', "doesn't", 'even', 'know', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'to', 'kramer', '||rightparen||', 'now', 'look', 'what', "you've", 'done', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "we've", 'got', 'to', 'do', 'something', '||period||', '||leftparen||', 'grabs', 'his', 'phone', '||rightparen||', "i'm", 'calling', "giuliani's", 'headquarters', '||period||', '||return||', '||return||', 'george:', 'name', 'tags', '||exclammark||', 'name', 'tags', '||exclammark||', 'what', 'kind', 'of', 'an', 'idiot', 'thinks', 'anybody', 'would', 'be', 'interested', 'in', 'an', 'idea', 'like', 'that', '||period||', '||return||', '||return||', 'frank:', 'i', "don't", 'think', "it's", 'so', 'bad', '||period||', 'people', 'should', 'wear', 'name', 'tags', '||period||', 'everyone', 'would', 'be', 'a', 'lot', 'friendlier', '||period||', '||quotemark||', 'hello', '||comma||', 'sam', '||period||', '||quotemark||', '||quotemark||', 'how', 'are', 'you', 'doing', '||comma||', 'joe', '||questionmark||', '||quotemark||', '||leftparen||', "george's", 'arm', 'moves', 'and', 'hits', 'the', 'lamp', '||rightparen||', 'hey', '||comma||', 'your', 'arm', '||period||', 'it', 'moved', 'again', '||period||', 'i', 'thought', 'you', 'said', 'it', 'went', 'away', '||period||', '||return||', '||return||', 'george:', 'i', 'banged', 'it', 'on', 'the', 'desk', 'in', 'the', "doctor's", 'office', '||period||', 'an', '||leftparen||', 'worriedly', 'rubbing', 'his', 'arm', '||rightparen||', 'aaaa', '||period||', '||period||', '||period||', '||return||', '||return||', 'estelle:', 'be', 'quiet', '||period||', "they're", 'starting', 'the', 'press', 'conference', '||period||', '||return||', '||return||', 'giuliani:', 'my', 'campaign', 'staff', 'has', 'received', 'some', 'very', 'disturbing', 'information', 'regarding', 'the', 'fat', 'content', 'in', 'yogurt', "that's", 'being', 'sold', 'throughout', 'the', 'city', '||period||', 'i', 'pledge', 'to', 'you', 'now', '||comma||', 'that', 'if', "i'm", 'elected', 'mayor', '||comma||', 'as', 'my', 'first', 'order', 'of', 'business', "i'll", 'appoint', 'a', 'special', 'task', 'force', 'to', 'investigate', 'this', 'matter', '||period||', 'i', 'promise', 'you', '||comma||', 'my', 'fellow', 'new', 'yorkers', '||comma||', 'that', 'mayor', 'giuliani', 'will', 'do', 'everything', 'possible', 'to', 'cleanse', 'this', 'city', 'of', 'this', 'falsified', 'non', '||dash||', 'fat', 'yogurt', '||period||', '||return||', '||return||', 'jerry:', 'the', 'old', 'yogurt', 'was', 'so', 'much', 'better', '||period||', 'oh', '||comma||', 'this', 'is', 'terrible', '||period||', '||return||', '||return||', 'george:', 'phew', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'it', 'stinks', '||period||', '||return||', '||return||', 'kramer:', 'mine', '||comma||', 'too', '||period||', 'i', 'got', 'one', 'more', 'day', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'eat', 'this', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'from', 'the', 'corner', 'of', 'the', 'yogurt', 'shop', '||rightparen||', 'hey', '||comma||', 'jerry', '||period||', 'thanks', 'a', 'lot', '||period||', 'i', 'hope', "you're", 'happy', '||period||', '||return||', '||return||', 'jerry:', 'it', 'had', 'fat', 'in', 'it', '||comma||', "it's", 'not', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'care', '||period||', 'it', 'was', 'good', '||period||', 'i', 'was', 'enjoying', 'it', '||period||', 'had', 'to', 'interfere', '||period||', "couldn't", 'leave', 'well', 'enough', 'alone', '||period||', 'well', '||comma||', 'i', 'will', 'get', 'even', 'with', 'you', 'for', 'this', '||period||', 'you', 'can', 'count', 'on', 'it', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'you', 'guys', '||comma||', 'listen', 'to', 'this', '||period||', 'listen', 'to', 'this', '||period||', '||leftparen||', 'reading', 'from', 'the', 'newspaper', '||rightparen||', 'apparently', 'some', 'blood', 'spilled', 'into', 'mr', '||period||', "giuliani's", 'test', 'tube', 'causing', 'his', 'cholesterol', 'count', 'to', 'be', '150', 'points', 'higher', 'than', 'was', 'initially', 'reported', '||period||', 'ironically', '||comma||', 'the', 'mishap', 'by', 'bringing', 'the', 'non', '||dash||', 'fat', 'yogurt', 'scandal', 'to', 'the', 'attention', 'of', 'the', 'public', '||comma||', 'probably', 'clinched', 'the', 'election', 'for', 'the', 'republican', '||period||', 'it', 'was', 'the', 'one', 'issue', 'which', 'seemed', 'to', 'electrify', 'the', 'voters', 'and', 'swept', 'giuliani', 'into', 'office', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'in', 'effect', '||comma||', 'the', 'yogurt', 'won', 'him', 'the', 'election', '||period||', '||return||', '||return||', 'elaine:', 'i', 'wonder', 'what', 'actually', 'happened', 'in', 'that', 'lab', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'me', '||comma||', 'too', '||period||', '||return||', '||return||', 'newman:', 'i', "can't", 'eat', 'this', '||period||', '||return||', '||return||', 'matthew:', '||leftparen||', 'hits', 'jerry', 'to', 'get', 'his', 'attention', '||rightparen||', 'thanks', 'for', 'ruining', 'my', "daddy's", 'business', '||comma||', 'you', 'fat', '*beep*', '||leftparen||', 'fuck', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'the', 'old', '||dash||', 'fashioned', 'barber', 'shop', 'is', 'unfortunately', 'becoming', 'a', 'thing', 'of', 'the', 'past', '||comma||', 'now', 'what', 'went', 'wrong', '||questionmark||', 'well', 'first', 'of', 'all', "there's", 'a', 'twenty', 'thousand', 'dollar', 'chair', 'to', 'make', 'a', 'three', 'dollar', 'tip', '||period||', 'i', 'say', 'cut', 'back', 'on', 'the', 'chair', '||comma||', 'update', 'the', 'magazines', '||period||', 'why', 'do', 'barbers', 'always', 'display', 'that', 'license', '||questionmark||', "there's", 'no', 'laws', 'in', 'hair', 'cutting', '||comma||', 'except', 'show', 'every', 'person', 'the', 'back', 'of', 'their', 'head', "that's", 'the', 'one', 'law', '||period||', 'i', "don't", 'want', 'to', 'see', 'the', 'back', 'of', 'my', 'head', '||period||', 'why', 'do', 'i', 'want', 'to', 'see', 'something', 'that', "i'm", 'never', 'going', 'to', 'see', 'at', 'any', 'other', 'time', '||questionmark||', 'when', 'i', 'buy', 'pants', 'two', 'salesmen', "don't", 'lift', 'me', 'up', 'by', 'the', 'legs', 'and', 'go', '||quotemark||', 'how', 'do', 'you', 'like', 'crotch', '||questionmark||', '||quotemark||', 'if', 'i', 'wanted', 'to', 'see', 'everything', 'i', 'would', 'have', 'been', 'a', 'fly', '||period||', '||return||', '||return||', 'mr', '||period||', 'tuttle:', 'well', 'george', 'we', 'here', 'at', 'sanalac', 'like', 'to', 'think', 'of', 'ourselves', 'as', 'a', 'fairly', 'progressive', 'company', '||period||', 'we', 'have', 'a', 'small', 'but', 'prestigious', 'group', 'of', 'clients', '||period||', '||return||', '||return||', 'george:', 'well', 'a', 'lot', 'of', 'people', 'consider', 'me', 'small', 'and', 'prestigious', '||period||', '||return||', '||return||', 'mr', '||period||', 'tuttle:', "that's", 'funny', 'george', '||period||', "you're", 'very', 'quick', '||period||', 'i', 'feel', 'like', 'i', '||comma||', 'like', 'i', "don't", 'have', 'to', 'explain', 'every', 'little', 'thing', 'to', 'you', '||period||', 'you', 'understand', 'everything', 'immediately', '||period||', '||return||', '||return||', 'george:', 'i', 'enjoy', 'understanding', '||period||', '||return||', '||return||', 'mr', '||period||', 'tuttle:', 'i', 'want', 'you', 'to', 'have', 'this', 'job', '||period||', 'of', 'course', '||period||', '||period||', '||period||', '||return||', '||return||', 'secretary:', 'mr', '||period||', 'zimmer', 'is', 'on', 'line', '2', '||period||', '||return||', '||return||', 'mr', '||period||', 'tuttle:', 'thanks', '||period||', "i've", 'got', 'to', 'take', 'this', 'call', '||period||', 'listen', '||comma||', "i'm", 'really', 'glad', 'that', 'you', 'came', 'in', '||period||', '||return||', '||return||', 'george:', 'i', 'want', 'you', 'to', 'have', 'this', 'job', '||period||', 'of', 'course', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', "that's", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'never', 'finished', 'the', 'sentence', '||period||', 'he', 'got', 'a', 'call', '||comma||', 'that', 'was', 'the', 'end', 'of', 'the', 'interview', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'of', 'course', '||quotemark||', 'was', 'the', 'last', 'thing', 'he', 'said', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'he', 'was', 'going', 'to', 'say', '||quotemark||', 'of', 'course', 'i', 'have', 'to', 'check', 'with', 'my', 'associates', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'i', 'want', 'you', 'to', 'have', 'this', 'job', '||comma||', 'of', 'course', 'the', 'board', 'of', 'directors', 'is', 'under', 'indictment', 'and', 'will', 'be', 'serving', 'time', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', 'want', 'you', 'to', 'have', 'this', 'job', '||comma||', 'of', 'course', 'sodomy', 'is', 'a', 'prerequisite', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'go', 'ahead', 'and', 'call', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'he', 'made', 'a', 'big', 'deal', 'about', 'how', 'i', 'understand', 'everything', 'immediately', '||period||', "that's", 'what', 'impressed', 'him', '||period||', '||return||', '||return||', 'jerry:', 'so', 'if', 'you', 'call', 'and', 'ask', 'if', 'you', 'have', 'the', 'job', '||comma||', 'you', 'might', 'lose', 'the', 'job', '||period||', '||return||', '||return||', 'george:', 'and', 'if', 'i', "don't", 'call', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'might', 'have', 'the', 'job', '||comma||', 'but', "you'll", 'never', 'know', 'it', '||period||', 'what', 'kind', 'of', 'company', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'rest', 'stop', 'supply', '||period||', '||return||', '||return||', 'elaine', '&', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hey', '||return||', '||return||', 'jerry:', 'hey', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'shower', '||questionmark||', '||return||', '||return||', 'kramer:', 'haircut', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'very', 'happy', 'with', 'this', '||period||', '||return||', '||return||', 'jerry:', "who'd", 'you', 'use', '||questionmark||', 'gino', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'course', '||period||', 'i', "wouldn't", 'let', 'that', 'other', 'butcher', 'cut', 'my', 'hair', '||period||', '||return||', '||return||', 'elaine:', 'what', 'butcher', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'uncle', 'enzo', '||period||', "that's", 'the', 'guy', 'jerry', 'uses', '||period||', '||return||', '||return||', 'jerry:', 'well', "i've", 'been', 'going', 'with', 'him', 'for', '12', 'years', '||period||', 'i', "can't", 'switch', '||period||', "i'd", 'hurt', 'his', 'feelings', '||period||', '||return||', '||return||', 'elaine:', 'you', 'never', 'get', 'good', 'haircuts', '||period||', '||return||', '||return||', 'kramer:', 'you', 'can', 'get', 'a', 'good', 'one', 'today', '||period||', "it's", "enzo's", 'day', 'off', '||period||', "gino's", 'there', 'all', 'by', 'himself', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'you', 'know', 'what', '||comma||', 'you', 'should', 'go', 'over', 'there', 'and', 'get', 'one', 'to', 'look', 'good', 'for', 'my', 'bachelor', 'auction', '||period||', '||return||', '||return||', 'kramer:', 'what', 'bachelor', 'auction', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', "it's", 'a', 'thing', 'where', 'they', 'auction', 'off', 'dates', 'with', 'bachelors', 'for', 'charity', '||period||', '||return||', '||return||', 'kramer:', 'and', 'you', "didn't", 'ask', 'me', 'to', 'do', 'it', '||questionmark||', 'i', 'could', 'raise', 'enough', 'money', 'to', 'cure', 'polio', '||period||', '||return||', '||return||', 'jerry:', 'i', 'believe', "they've", 'had', 'a', 'cure', 'for', 'polio', 'for', 'quite', 'some', 'time', '||period||', '||return||', '||return||', 'kramer:', 'polio', '||questionmark||', '||return||', '||return||', 'elaine:', 'will', 'you', 'go', 'ahead', '||questionmark||', 'you', 'need', 'a', 'haircut', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'all', 'dressed', 'up', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'had', 'a', 'job', 'interview', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "how'd", 'it', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'good', '||period||', 'of', 'course', '||period||', '||period||', '||period||', '||return||', '||return||', 'enzo:', 'oh', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', 'enzo', '||period||', '||return||', '||return||', 'enzo:', 'oh', '||comma||', "you've", 'come', 'for', 'the', 'haircut', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'actually', 'i', 'was', 'just', 'gonna', '||period||', '||period||', '||period||', '||return||', '||return||', 'enzo:', "it's", 'my', 'day', 'off', '||comma||', 'but', 'i', 'take', 'care', 'of', 'you', 'anyway', 'because', "you're", 'my', 'favorite', 'customer', '||period||', "you've", 'been', 'with', 'me', 'for', 'so', 'long', '||period||', "you're", 'so', 'loyal', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', '||comma||', 'if', "it's", 'your', 'day', 'off', 'i', 'really', '||period||', '||period||', '||period||', '||leftparen||', 'tries', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'enzo:', '||leftparen||', 'he', 'pulls', 'jerry', 'into', 'the', 'barber', 'chair', '||period||', 'jerry', 'is', 'trying', 'to', 'get', 'away', 'but', "can't", '||period||', '||rightparen||', 'eh', '||comma||', "what's", 'the', 'difference', '||period||', 'it', 'takes', '10', 'minutes', '||period||', 'jerry', '||comma||', 'today', "i'm", 'going', 'to', 'do', 'something', 'special', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', "don't", 'want', 'to', 'take', 'too', 'much', 'off', '||period||', '||return||', '||return||', 'enzo:', 'hey', "who's", 'your', 'barber', '||comma||', 'eh', '||questionmark||', 'you', 'tell', 'the', 'joke', '||comma||', 'i', 'cut', 'the', 'hair', '||period||', '||return||', '||return||', 'man:', 'gino', '||comma||', "you've", 'outdone', 'yourself', 'this', 'time', '||period||', 'this', 'is', 'the', 'best', 'haircut', "i've", 'ever', 'had', '||period||', '||return||', '||return||', 'george:', 'he', 'massacred', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'you', 'look', 'like', "you're", 'five', 'years', 'old', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'i', 'shampoo', '||questionmark||', 'sometimes', 'a', 'shampoo', 'helps', '||period||', '||return||', '||return||', 'george:', "you've", 'got', 'to', 'start', 'seeing', 'someone', 'else', '||period||', 'get', 'out', 'of', 'this', 'relationship', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', 'he', 'loves', 'me', '||period||', 'he', 'says', "i'm", 'his', 'most', 'loyal', 'customer', '||period||', 'plus', "he's", 'right', 'there', 'on', 'the', 'corner', '||period||', "i'd", 'have', 'to', 'pass', 'him', 'every', 'day', 'when', 'i', 'go', 'by', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'gotta', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||comma||', 'i', "can't", '||period||', "i'd", 'break', 'his', 'heart', '||period||', '||return||', '||return||', 'kramer:', 'no', 'way', 'my', 'gino', 'did', 'that', '||period||', "it's", 'an', 'enzo', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'in', 'the', 'shop', '||period||', 'i', 'thought', 'you', 'told', 'me', 'he', "wasn't", 'going', 'to', 'be', 'there', '||period||', '||return||', '||return||', 'kramer:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'want', 'to', 'hurt', 'his', 'feelings', '||period||', '||return||', '||return||', 'kramer:', 'his', 'feelings', '||questionmark||', 'you', "can't", 'continue', 'seeing', 'him', '||period||', "you're", 'destroying', 'yourself', '||period||', '||return||', '||return||', 'jerry:', 'yea', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'not', 'going', 'to', 'let', 'you', '||period||', 'if', 'you', "don't", 'call', 'him', 'i', 'will', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'kramer', '||period||', 'i', "don't", 'want', 'you', 'to', 'do', 'that', '||period||', 'you', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'going', 'to', 'call', 'gino', '||comma||', "you're", 'going', 'to', 'see', 'him', '||comma||', 'and', "we're", 'going', 'to', 'get', 'that', 'haircut', 'fixed', 'up', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'you', 'to', 'call', 'him', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'geez', '||period||', "you're", 'crazy', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'still', "haven't", 'heard', 'about', 'that', 'job', '||period||', '||return||', '||return||', 'jerry:', 'yeah', "that's", 'a', 'tough', 'one', '||period||', 'what', 'are', 'you', 'going', 'to', 'do', 'about', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'an', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'show', 'up', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'you', 'show', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'show', 'up', '||period||', 'i', 'pretend', 'i', 'have', 'the', 'job', '||period||', 'the', "guy's", 'on', 'vacation', '||period||', 'if', 'i', 'have', 'the', 'job', '||comma||', "it's", 'fine', '||period||', 'if', 'i', "don't", 'have', 'the', 'job', '||comma||', 'by', 'the', 'time', 'he', 'comes', 'back', '||comma||', "i'm", 'ensconced', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', 'not', 'bad', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'worst', 'thing', 'that', 'could', 'happen', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "you'd", 'be', 'embarrassed', 'and', 'humiliated', 'in', 'front', 'of', 'a', 'large', 'group', 'of', 'people', 'and', 'have', 'to', 'walk', 'out', 'in', 'shame', 'with', 'your', 'tail', 'between', 'your', 'legs', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'see', 'what', 'you', 'mean', '||period||', 'i', 'forgot', 'who', 'i', 'was', 'dealing', 'with', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'various', 'people', 'as', 'he', 'walks', 'in', '||rightparen||', 'good', 'morning', '||period||', 'good', 'morning', '||period||', 'good', 'morning', '||period||', 'hi', 'nice', 'to', 'see', 'you', '||period||', 'how', 'are', 'you', '||period||', 'good', 'morning', '||period||', '||leftparen||', 'to', 'the', 'secretary', '||rightparen||', 'good', 'morning', '||period||', '||return||', '||return||', 'secretary:', 'how', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'the', "name's", 'george', 'constanza', '||period||', "i'm", 'starting', 'work', 'here', 'today', '||period||', 'i', 'was', 'wondering', 'if', 'you', 'could', 'tell', 'me', 'where', 'my', 'office', 'is', '||period||', '||return||', '||return||', 'secretary:', 'i', "wasn't", 'aware', 'that', '||comma||', 'uh', '||comma||', 'mike', '||comma||', 'this', 'is', 'george', 'constanza', '||period||', "he's", 'starting', 'here', 'today', '||period||', '||return||', '||return||', 'mike:', 'welcome', 'aboard', '||period||', '||return||', '||return||', 'george:', 'thanks', 'mike', '||period||', 'nice', 'to', 'be', 'aboard', '||period||', '||return||', '||return||', 'mike:', 'i', "wasn't", 'aware', 'that', 'mr', '||period||', 'tuttle', 'was', 'finished', 'interviewing', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||comma||', 'he', 'was', 'probably', 'just', 'getting', 'anxious', 'to', 'start', 'his', 'vacation', '||period||', '||return||', '||return||', 'secretary:', 'he', 'wants', 'to', 'know', 'where', 'his', 'office', 'is', '||period||', '||return||', '||return||', 'mike:', 'oh', '||comma||', 'ah', '||comma||', "let's", 'see', '||comma||', "we've", 'got', 'two', '||period||', "there's", 'a', 'big', 'one', 'down', 'the', 'hall', 'there', 'and', 'a', 'small', 'one', 'over', 'here', '||period||', 'you', 'know', 'i', 'should', 'ask', 'jack', '||period||', '||return||', '||return||', 'george:', 'oh', 'leave', 'jack', 'alone', '||period||', "jack's", 'got', 'enough', 'problems', '||period||', "i'll", 'just', 'take', 'the', 'small', 'office', '||period||', '||return||', '||return||', 'mike:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'i', 'like', 'to', 'feel', 'cozy', '||period||', 'i', 'have', 'a', 'very', 'small', 'apartment', '||period||', 'i', 'like', 'to', 'feel', 'tucked', 'in', '||comma||', 'nestled', 'in', '||period||', 'love', 'to', 'be', 'nestled', '||period||', '||return||', '||return||', 'mike:', 'all', 'right', '||comma||', "it's", '808', 'right', 'down', 'there', '||period||', 'meanwhile', '||comma||', "i'll", 'get', 'you', 'the', 'pensky', 'file', '||comma||', 'you', 'can', 'start', 'working', 'on', 'that', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', 'of', 'course', '||period||', 'the', 'pensky', 'file', '||period||', 'ho', 'ho', '||comma||', "can't", 'wait', 'to', 'sink', 'my', 'teeth', 'into', 'that', '||period||', 'wow', 'that', 'pensky', '||period||', 'well', "we'll", 'straighten', 'him', 'out', '||period||', '||return||', '||return||', '||leftparen||', 'camera', 'shot', 'at', 'the', 'clock', 'on', 'his', 'wall', '||period||', 'the', 'clock', 'says', '9:', '00', '||period||', '||rightparen||', '||return||', '||return||', '||leftparen||', 'a', 'moment', 'later', '||comma||', 'the', 'clock', 'flips', 'to', '5:', '00', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'what', 'did', 'you', 'do', 'there', 'all', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'gave', 'me', 'the', 'pensky', 'file', '||period||', '||return||', '||return||', 'jerry:', 'so', "it's", 'a', 'nice', 'place', 'to', 'work', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', "i'm", 'enjoying', 'it', 'very', 'much', '||period||', 'i', 'think', 'my', 'coworkers', 'are', 'really', 'taking', 'to', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'continuing', '||rightparen||', 'i', 'feel', 'like', 'a', 'family', '||period||', 'in', 'fact', '||comma||', 'yesterday', 'was', "grace's", 'birthday', '||period||', "she's", 'such', 'a', 'sweet', 'woman', 'so', '||comma||', 'we', 'had', 'a', 'little', 'party', '||comma||', 'with', 'cake', 'and', 'champagne', '||period||', 'i', 'made', 'a', 'toast', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'your', 'boss', '||questionmark||', 'the', 'guys', 'you', 'interviewed', 'you', '||questionmark||', '||return||', '||return||', 'george:', "he'll", 'be', 'back', 'on', 'monday', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'how', 'come', "you're", 'wearing', 'a', 'hat', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'a', 'haircut', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||questionmark||', 'can', 'i', 'see', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', "there's", 'nothing', 'to', 'see', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||period||', 'let', 'me', 'see', 'it', '||period||', '||return||', '||return||', 'jerry:', 'forget', 'it', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "that's", 'very', 'good', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'laughing', '||comma||', 'tears', 'in', 'her', 'eyes', '||rightparen||', "i'm", 'sorry', '||period||', "i'm", 'so', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'well', "i'll", 'tell', 'you', 'this', '||comma||', 'you', 'can', 'forget', 'about', 'me', 'going', 'to', 'that', 'bachelor', 'auction', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'no', 'jerry', '||comma||', 'you', 'have', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'elaine', '||comma||', "i'd", 'do', 'it', 'but', "i'm", 'working', 'that', 'day', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dryly', '||rightparen||', 'yeah', '||comma||', 'too', 'bad', '||period||', '||return||', '||return||', 'kramer:', 'it', 'the', 'worst', 'haircut', "jerry's", 'ever', 'had', '||period||', 'you', 'gotta', 'fix', 'it', '||period||', '||return||', '||return||', 'gino:', 'sure', '||comma||', 'i', 'fix', '||period||', 'but', 'you', 'gotta', 'make', 'sure', 'you', 'no', 'tell', 'anybody', '||period||', "he's", 'a', 'little', 'crazy', '||period||', 'i', "don't", 'know', 'what', "he'd", 'do', 'if', 'he', 'found', 'out', 'i', 'touch', "jerry's", 'hair', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', 'yeah', '||period||', '||return||', '||return||', 'gino:', '||leftparen||', 'enzo', 'enters', '||rightparen||', 'so', 'i', 'love', 'the', 'edward', 'scissorhands', '||period||', "that's", 'the', 'best', 'movie', "i've", 'ever', 'seen', '||period||', '||return||', '||return||', 'enzo:', 'oh', 'ah', '||comma||', 'again', 'with', 'the', 'edward', 'scissorhand', '||period||', 'how', 'can', 'you', 'have', 'hand', 'like', 'a', 'scissor', '||comma||', 'huh', '||questionmark||', 'show', 'me', 'one', 'person', "who's", 'got', 'hand', 'like', 'a', 'scissor', '||period||', '||return||', '||return||', 'gino:', 'hey', '||comma||', "it's", 'a', 'beautiful', 'dream', '||period||', "i'd", 'love', 'to', 'be', 'this', 'man', '||period||', '||return||', '||return||', 'enzo:', 'did', 'you', 'ever', 'think', 'about', 'what', "you're", 'going', 'to', 'do', 'on', 'the', 'toilet', '||questionmark||', '||leftparen||', 'yelling', '||rightparen||', 'what', 'are', 'you', 'going', 'to', 'do', 'on', 'the', 'toilet', '||questionmark||', '||return||', '||return||', 'kramer:', "i'd", 'like', 'to', 'have', 'shoehorn', 'hands', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||return||', '||return||', 'kramer:', 'okay', 'listen', 'to', 'me', '||period||', 'i', 'talked', 'to', 'gino', '||comma||', "he's", 'going', 'to', 'fix', 'the', 'haircut', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'great', '||comma||', 'then', 'you', 'can', 'go', 'to', 'the', 'bachelor', 'auction', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'how', 'am', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', 'buts', '||period||', 'his', 'apartment', 'tonight', '||comma||', 'eight', "o'clock", '||period||', '||return||', '||return||', 'elaine:', 'can', 'he', 'fix', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'gino:', 'boy', '||comma||', "you've", 'got', 'a', 'beautiful', 'head', 'of', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'gino:', 'i', 'bet', 'uncle', 'enzo', '||comma||', 'he', 'tell', 'you', 'that', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'well', 'actually', 'enzo', "hasn't", 'said', 'that', 'to', 'me', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'gino:', 'i', "don't", 'think', 'uncle', 'enzo', 'realize', 'what', 'a', 'lucky', 'barber', 'he', 'is', '||period||', '||return||', '||return||', 'jerry:', "that's", 'nice', 'of', 'you', 'to', 'say', '||period||', '||return||', '||return||', 'gino:', 'just', 'a', 'second', '||period||', '||leftparen||', 'answering', 'buzzer', '||rightparen||', 'yes', '||period||', '||return||', '||return||', 'enzo:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', "it's", 'your', 'uncle', 'enzo', '||period||', '||return||', '||return||', 'gino:', "it's", 'uncle', 'enzo', '||period||', 'go', 'in', 'there', '||period||', "i'll", 'clean', 'up', '||period||', '||return||', '||return||', 'gino:', 'uncle', 'enzo', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'enzo:', "i've", 'come', 'to', 'apologize', '||period||', '||return||', '||return||', 'gino:', 'apologize', '||questionmark||', '||return||', '||return||', 'enzo:', 'yea', '||period||', 'i', 'rented', 'the', 'move', 'edward', 'scissorhands', '||period||', 'that', 'johnny', 'depp', '||comma||', 'he', 'make', 'me', 'cry', '||period||', '||return||', '||return||', 'gino:', 'he', 'make', 'me', 'cry', 'too', '||period||', 'you', 'want', 'something', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'enzo:', 'hey', '||comma||', "what's", 'all', 'of', 'this', '||questionmark||', '||return||', '||return||', 'gino:', 'nothing', '||period||', "it's", 'just', 'hair', '||period||', '||return||', '||return||', 'enzo:', 'you', 'do', 'haircut', 'in', 'the', 'apartment', '||questionmark||', '||return||', '||return||', 'gino:', 'no', '||period||', 'pizza', 'man', 'was', 'here', '||period||', 'maybe', 'some', 'fall', 'off', '||period||', "he's", 'going', 'bald', '||period||', '||return||', '||return||', 'enzo:', 'it', 'looks', 'very', 'familiar', '||period||', '||return||', '||return||', 'jerry:', 'in', 'the', 'one', 'minute', 'he', 'worked', 'on', 'me', 'i', 'could', 'tell', 'he', 'was', 'really', 'good', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'slow', '||comma||', 'gentle', '||comma||', 'attentive', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', 'he', 'could', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'enzo', 'picked', 'up', 'one', 'of', 'my', 'hairs', 'off', 'the', 'floor', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'he', 'knew', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'he', "doesn't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'who', 'do', 'you', 'know', '||questionmark||', 'he', 'knows', 'my', 'hair', '||period||', '||return||', '||return||', 'kramer:', 'listen', "you're", 'just', 'imagining', 'things', '||period||', 'he', "doesn't", 'know', 'a', 'thing', '||period||', 'now', 'come', 'on', '||period||', 'pull', 'yourself', 'together', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', 'it', 'looks', 'the', 'same', '||period||', '||return||', '||return||', 'jerry:', 'he', "didn't", 'get', 'to', 'finish', 'it', '||period||', 'his', 'uncle', 'came', 'in', '||period||', 'we', 'almost', 'got', 'caught', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'the', 'auction', 'is', 'in', 'a', 'few', 'hours', '||period||', '||return||', '||return||', 'jerry:', 'take', 'the', 'k', '||dash||', 'man', '||period||', '||return||', '||return||', 'elaine:', 'you', 'can', 'still', 'go', '||period||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'kidding', '||questionmark||', 'look', 'at', 'him', '||period||', "he's", 'grotesque', '||period||', '||return||', '||return||', 'elaine:', 'you', 'think', '||questionmark||', '||return||', '||return||', 'kramer:', 'do', 'i', 'think', '||questionmark||', "he's", 'repugnant', '||period||', '||return||', '||return||', 'elaine:', 'what', 'would', 'you', 'wear', '||questionmark||', '||return||', '||return||', 'kramer:', 'whatever', 'it', 'takes', '||period||', '||return||', '||return||', 'enzo:', 'see', '||comma||', 'now', 'newman', 'is', 'a', 'good', 'customer', '||period||', '||return||', '||return||', 'newman:', 'once', 'i', 'find', 'a', 'barber', 'i', 'stick', 'with', 'him', '||period||', 'i', 'almost', 'went', 'to', 'barber', 'school', '||period||', 'i', 'always', 'felt', 'i', 'had', 'a', 'talent', 'for', 'it', '||period||', '||return||', '||return||', 'enzo:', 'oh', '||comma||', 'not', 'everybody', 'like', 'newman', '||comma||', 'so', 'loyal', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'just', 'the', 'way', 'that', 'i', 'was', 'raised', '||period||', "i'm", 'special', '||period||', '||return||', '||return||', 'enzo:', 'you', 'know', 'i', "don't", 'mind', 'if', "somebody's", 'funny', '||comma||', 'but', 'i', 'no', 'like', 'the', 'funny', 'business', '||period||', '||return||', '||return||', 'gino:', "i'm", 'going', 'to', 'go', 'out', 'for', 'a', 'little', 'bit', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'enzo:', 'take', 'your', 'time', '||period||', '||leftparen||', 'gino', 'leaves', '||rightparen||', 'you', 'happy', 'with', 'the', 'haircut', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'okay', '||period||', 'a', 'little', 'crooked', '||period||', '||return||', '||return||', 'enzo:', "how'd", 'you', 'like', 'to', 'have', 'free', 'haircut', 'for', 'six', 'months', '||period||', '||return||', '||return||', 'newman:', "what's", 'the', 'catch', '||questionmark||', '||return||', '||return||', 'enzo:', "you're", 'going', 'to', 'get', 'me', 'a', 'sample', 'of', "jerry's", 'hair', '||period||', '||return||', '||return||', 'newman:', 'hmm', '||comma||', 'that', 'job', 'sounds', 'like', 'it', 'might', 'be', 'worth', 'a', "year's", 'free', 'haircuts', '||period||', 'and', 'a', 'comb', '||period||', '||return||', '||return||', 'secretary:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', 'mr', '||period||', 'costanza', '||comma||', 'mr', '||period||', 'pensky', 'is', 'here', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'george:', 'mr', '||period||', 'pensky', '||questionmark||', 'of', 'the', 'pensky', 'file', '||questionmark||', '||return||', '||return||', 'pensky:', 'costanza', '||questionmark||', 'arthur', 'pensky', '||period||', '||return||', '||return||', 'george:', 'mr', '||period||', 'pensky', '||period||', 'i', 'was', 'just', 'working', 'on', 'your', 'file', '||period||', 'i', 'was', 'transferring', 'the', 'contents', 'of', 'the', 'file', 'into', 'this', 'flexible', 'accordion', '||dash||', 'style', 'folder', '||period||', '||return||', '||return||', 'pensky:', "where's", 'tuttle', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'on', 'vacation', '||period||', '||return||', '||return||', 'pensky:', 'he', 'was', 'on', 'vacation', 'the', 'last', 'time', 'i', 'dropped', 'by', '||period||', 'give', 'me', 'my', 'file', '||period||', '||leftparen||', 'looks', 'through', 'the', 'file', '||rightparen||', 'looks', 'like', 'you', 'put', 'a', 'lot', 'of', 'work', 'into', 'this', '||period||', '||return||', '||return||', 'george:', 'well', 'you', 'know', 'in', 'college', 'they', 'used', 'to', 'call', 'me', 'the', 'little', 'bulldog', '||period||', '||return||', '||return||', 'pensky:', 'hey', '||comma||', 'you', 'are', 'pensky', 'material', '||period||', 'would', 'you', 'ever', 'consider', 'coming', 'to', 'work', 'directly', 'for', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'pensky:', 'you', 'are', 'aware', '||period||', '||period||', '||period||', '||return||', '||return||', 'secretary:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', 'mr', '||period||', 'castanza', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'now', 'florice', '||period||', '||return||', '||return||', 'secretary:', '||leftparen||', 'speaker', '||rightparen||', 'i', 'thought', 'mr', '||period||', 'pensky', 'should', 'know', "they're", 'towing', 'his', 'car', '||period||', '||return||', '||return||', 'pensky:', 'damn', 'this', 'city', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'aware', '||period||', 'i', 'am', 'aware', '||period||', '||return||', '||return||', 'gino:', 'he', 'knows', '||period||', 'he', 'knows', 'about', 'us', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'gino:', 'because', 'i', 'know', '||period||', "he's", 'crazy', '||period||', 'all', 'morning', '||comma||', 'he', 'looking', 'at', 'the', 'hair', '||period||', 'he', 'staring', 'at', 'the', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'newman', '||period||', '||return||', '||return||', 'gino:', 'he', 'was', 'in', 'the', 'shop', 'with', 'enzo', '||period||', 'he', "can't", 'see', 'me', 'here', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'go', 'in', 'the', 'bedroom', '||period||', 'open', 'the', 'window', '||period||', 'you', 'can', 'go', 'out', 'the', 'fire', 'escape', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'dancing', '||rightparen||', 'can', 'i', 'use', 'your', 'bathroom', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'yours', '||questionmark||', '||return||', '||return||', 'newman:', 'my', "toilet's", 'clogged', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'unclog', 'it', '||questionmark||', '||return||', '||return||', 'newman:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'ask', 'kramer', '||questionmark||', '||return||', '||return||', 'newman:', "he's", 'out', '||period||', '||return||', '||return||', 'jerry:', 'number', 'one', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'yes', '||period||', 'may', 'i', 'go', '||questionmark||', 'cause', 'i', 'gotta', 'go', 'very', 'badly', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'flush', 'twice', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'thinking', 'to', 'himself', '||semicolon||', 'checks', 'a', 'comb', '||rightparen||', 'no', '||period||', '||leftparen||', 'checks', 'a', 'brush', '||rightparen||', 'jackpot', '||period||', 'i', "don't", 'believe', 'this', '||period||', "there's", 'no', 'hair', 'in', 'this', 'thing', '||period||', "i've", 'never', 'seen', 'a', 'person', 'that', "didn't", 'have', 'at', 'least', 'one', 'hair', 'in', 'a', 'brush', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||questionmark||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'newman:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'watching', 'edward', 'scissorhands', '||period||', '||return||', '||return||', 'newman:', 'oh', '||comma||', 'can', 'i', 'watch', 'a', 'little', '||questionmark||', 'cuz', "it's", 'my', 'favorite', 'movie', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'something', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'newman:', 'no', '||period||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'want', 'to', 'watch', '||comma||', 'sit', 'down', '||period||', "you're", 'making', 'me', 'nervous', '||period||', 'i', 'tell', 'you', 'this', 'scissorhands', 'is', 'a', 'hell', 'of', 'a', 'barber', '||period||', '||return||', '||return||', 'newman:', 'gotta', 'go', '||period||', 'oh', 'gee', '||comma||', 'i', 'dropped', 'a', 'nickel', '||leftparen||', 'reaches', 'down', 'and', 'picks', 'up', 'the', 'hair', '||period||', '||rightparen||', '||return||', '||return||', 'enzo:', 'did', 'you', 'get', 'it', '||questionmark||', '||leftparen||', 'comparing', 'the', 'hairs', '||rightparen||', 'oh', 'you', 'done', 'good', 'newman', '||period||', '||return||', '||return||', 'newman:', 'it', 'was', 'a', 'cinch', '||period||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'enzo:', 'io', 'volgio', 'vandetta', '||period||', '||return||', '||return||', 'elaine:', 'nine', 'hundred', '||period||', 'do', 'i', 'hear', 'a', 'thousand', '||questionmark||', 'ladies', '||comma||', 'he', 'is', 'a', 'harvard', 'graduate', '||period||', '||return||', '||return||', 'woman:', 'a', 'thousand', '||period||', '||return||', '||return||', 'elaine:', 'a', 'thousand', '||period||', 'okay', '||comma||', 'a', 'thousand', 'once', '||comma||', 'a', 'thousand', 'twice', '||comma||', 'a', 'thousand', 'three', 'times', '||comma||', 'sold', 'to', 'the', 'lucky', 'lady', 'in', 'the', 'third', 'row', '||period||', 'congratulations', '||comma||', 'thank', 'you', 'so', 'much', '||period||', '||return||', '||return||', 'elaine:', 'okay', 'next', 'bachelor', 'is', 'number', '||comma||', 'um', '124', 'on', 'your', 'program', '||period||', "he's", 'uh', '||comma||', "he's", 'a', 'high', 'school', 'graduate', '||period||', '||return||', '||return||', 'kramer:', 'equivalency', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'uh', 'equivalency', '||period||', 'a', 'high', 'school', 'equivalency', 'program', 'graduate', '||period||', '||leftparen||', 'kramer', 'dances', 'up', 'and', 'down', 'the', 'stage', '||rightparen||', "he's", 'uh', '||comma||', 'self', '||dash||', 'employed', '||period||', "he's", '||period||', '||period||', '||period||', 'i', "don't", 'know', '||comma||', 'six', 'foot', 'three', '||comma||', '190', 'pounds', '||comma||', 'he', 'likes', '||comma||', 'uh', '||period||', '||period||', '||period||', 'fruit', '||comma||', 'and', 'he', 'just', 'got', 'uh', '||comma||', 'a', 'haircut', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||period||', 'okay', 'uh', '||comma||', 'why', "don't", 'we', 'start', 'the', 'bidding', '||period||', 'do', 'i', 'hear', '||comma||', 'um', '||comma||', 'five', 'bucks', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'get', 'this', 'scissorhands', '||period||', 'what', '||comma||', 'is', 'he', 'supposed', 'to', 'be', 'like', 'a', 'super', 'hero', '||comma||', 'like', 'green', 'lantern', 'or', 'somebody', '||questionmark||', "what's", 'with', 'this', 'guy', '||questionmark||', '||leftparen||', 'gino', 'looks', 'at', 'him', 'annoyed', '||rightparen||', 'just', 'asking', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'enzo:', '||leftparen||', 'yelling', '||rightparen||', 'enzo', 'manginero', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'he', 'knows', '||period||', '||leftparen||', 'jerry', 'and', 'gino', 'scrambling', '||rightparen||', 'go', '||period||', '||leftparen||', 'yelling', 'to', 'the', 'door', '||rightparen||', 'one', 'second', '||period||', '||return||', '||return||', 'enzo:', 'it', 'was', 'you', 'that', 'was', 'in', "gino's", 'apartment', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', "wasn't", 'there', '||period||', '||leftparen||', 'enters', 'and', 'slams', 'the', 'door', '||rightparen||', '||return||', '||return||', 'enzo:', "don't", 'lie', '||period||', 'i', 'know', 'it', 'was', 'you', '||period||', 'i', 'get', 'a', 'sample', 'of', 'your', 'hair', '||period||', 'i', 'match', 'them', 'up', '||period||', '||return||', '||return||', 'jerry:', 'sample', '||questionmark||', '||leftparen||', 'under', 'his', 'breath', '||rightparen||', 'newman', '||period||', 'uh', '||comma||', 'i', 'was', 'there', 'but', 'i', 'was', 'just', 'dropping', 'off', 'a', 'book', '||period||', '||return||', '||return||', 'gino:', "don't", 'jerry', '||period||', '||return||', '||return||', 'enzo:', 'so', '||comma||', "it's", 'true', '||period||', '||return||', '||return||', 'gino:', 'yes', "it's", 'true', '||period||', '||return||', '||return||', 'enzo:', "i'm", 'going', 'to', 'kill', 'the', 'both', 'of', 'you', '||period||', '||return||', '||return||', 'george:', 'mr', '||period||', 'tuttle', '||comma||', "you're", 'back', '||period||', '||return||', '||return||', 'tuttle:', 'george', '||comma||', "i'm", 'surprised', 'to', 'see', 'you', 'here', '||period||', '||return||', '||return||', 'george:', 'you', 'are', '||questionmark||', '||return||', '||return||', 'tuttle:', 'i', 'thought', 'you', 'would', 'have', 'taken', 'the', 'large', 'office', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'really', '||period||', '||return||', '||return||', 'tuttle:', 'i', 'guess', 'i', "didn't", 'make', 'that', 'clear', 'when', 'i', 'hired', 'you', '||period||', 'so', "where's", 'that', 'pensky', 'file', '||questionmark||', "let's", 'see', 'what', "you've", 'been', 'up', 'to', 'all', 'week', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'here', 'it', 'is', '||period||', '||return||', '||return||', 'tuttle:', '||leftparen||', 'pages', 'through', 'the', 'file', '||rightparen||', 'what', 'have', 'you', 'been', 'doing', 'all', 'week', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'you', 'missed', 'a', 'lovely', 'little', 'party', 'that', 'we', 'had', 'for', 'grace', '||period||', '||return||', '||return||', 'tuttle:', 'you', "haven't", 'done', 'anything', 'with', 'this', '||period||', '||return||', '||return||', 'george:', 'well', 'bear', 'in', 'mind', 'that', 'i', 'am', 'in', 'the', 'smaller', 'office', '||period||', '||return||', '||return||', 'tuttle:', "i'm", 'beginning', 'to', 'wonder', 'if', 'you', 'understand', 'anything', '||period||', '||return||', '||return||', 'george:', 'you', 'are', 'aware', 'that', 'pensky', 'is', 'interested', 'in', 'me', '||period||', '||return||', '||return||', 'tuttle:', '||leftparen||', 'scoffs', '||rightparen||', "you're", 'not', 'pensky', 'material', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'chuckles', '||rightparen||', 'really', '||questionmark||', 'well', '||comma||', "we'll", 'just', 'see', 'about', 'that', '||period||', 'ta', '||dash||', 'ta', '||comma||', 'tut', '||dash||', 'tle', '||period||', '||return||', '||return||', 'pensky:', 'gee', 'george', '||comma||', "i'm", 'sorry', 'i', 'gave', 'you', 'the', 'wrong', 'impression', '||period||', 'what', 'is', 'was', 'going', 'to', 'say', 'was', '||comma||', 'now', 'you', 'are', 'aware', 'that', 'our', 'board', 'of', 'directors', 'has', 'been', 'indicted', '||comma||', 'myself', 'included', '||comma||', 'and', "we're", 'prohibited', 'from', 'doing', 'business', 'until', 'the', 'investigation', 'is', 'completed', '||period||', 'so', 'obviously', '||comma||', 'we', 'would', 'have', 'no', 'use', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'obviously', '||period||', '||return||', '||return||', 'pensky:', 'yes', '||period||', '||return||', '||return||', 'secretary:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', 'excuse', 'me', '||comma||', 'but', 'mr', '||period||', "costanza's", 'car', 'is', 'being', 'towed', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'on', 'the', 'phone', 'in', "jerry's", 'apartment', '||rightparen||', 'so', 'when', 'are', 'you', 'gonna', 'be', 'able', 'to', 'go', 'out', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'on', 'the', 'phone', 'in', 'his', 'apartment', 'with', 'a', 'bald', 'head', '||rightparen||', 'not', 'for', 'a', 'while', '||period||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'if', "there's", 'a', 'serial', 'killer', 'lose', 'in', 'your', 'neighborhood', '||comma||', 'it', 'seems', 'like', 'the', 'safest', 'thing', 'is', 'to', 'be', 'the', 'neighbor', '||period||', 'they', 'never', 'kill', 'the', 'neighbor', '||period||', 'the', 'neighbor', 'always', 'survives', 'to', 'do', 'the', 'interview', 'afterwards', '||period||', 'right', '||questionmark||', '||quotemark||', 'oh', '||comma||', 'he', 'was', 'kind', 'of', 'quiet', '||period||', '||quotemark||', 'i', 'love', 'these', 'neighbors', '||period||', "they're", 'never', 'disturbed', 'by', 'the', 'sounds', 'of', 'murdering', '||comma||', 'just', 'stereo', '||period||', 'chain', 'saws', '||comma||', 'people', 'screaming', '||comma||', 'fine', '||period||', 'just', 'keep', 'the', 'music', 'down', '||period||', 'and', 'all', 'these', 'women', 'who', 'always', 'fall', 'in', 'love', 'with', 'the', 'serial', 'killer', '||period||', 'they', 'write', 'to', 'him', 'in', 'prison', '||period||', "here's", 'a', 'woman', "that's", 'hard', 'to', 'disappoint', '||period||', 'i', 'guess', "she's", 'only', 'upset', 'when', 'she', 'finds', 'out', "he's", 'stopped', 'killing', 'people', 'and', 'she', 'goes', '||quotemark||', 'you', 'know', 'sometimes', 'i', 'feel', 'like', 'i', "don't", 'even', 'know', 'who', 'you', 'are', 'anymore', '||quotemark||', '||period||', '||return||', '||return||', '[setting:', "elaine's", 'office', 'and', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'no', 'eight', 'years', "isn't", 'such', 'a', 'long', 'streak', '||period||', '||return||', '||return||', 'elaine:', 'it', "isn't", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "haven't", 'vomited', 'in', 'thirteen', 'years', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'not', 'since', 'june', '29', '||comma||', '1980', '||period||', '||return||', '||return||', 'elaine:', 'you', 'remember', 'the', 'date', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'because', 'my', 'previous', 'vomit', 'was', 'also', 'june', '29th', '||period||', '||period||', '||period||', '1972', '||period||', "that's", 'why', 'during', 'the', "'80", 'vomit', '||comma||', 'i', 'was', 'yelling', 'to', 'george', '||quotemark||', 'can', 'you', 'believe', 'it', '||questionmark||', "i'm", 'vomiting', 'on', 'june', '29th', 'again', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', 'you', 'know', 'when', 'joel', 'told', 'me', 'he', "hadn't", 'thrown', 'up', 'in', 'eight', 'years', '||comma||', 'i', 'was', 'wondering', 'if', 'he', 'was', 'normal', '||period||', '||return||', '||return||', 'jerry:', 'no', 'elaine', "he's", 'normal', '||period||', 'your', 'boyfriend', 'is', 'a', 'normal', 'guy', '||period||', 'he', 'just', 'happens', 'to', 'have', 'the', 'same', 'name', 'as', 'one', 'of', 'the', 'worst', 'serial', 'killers', 'in', 'the', 'history', 'of', 'new', '||dash||', 'york', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', '||period||', '||leftparen||', '2', 'co', '||dash||', 'workers', 'enter', "elaine's", 'office', '||rightparen||', 'oh', 'jer', '||comma||', 'i', 'gotta', 'go', '||period||', 'i', 'gotta', 'go', '||period||', '||leftparen||', 'she', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'joanne:', 'hi', '||comma||', 'we', 'just', 'saw', 'your', 'boyfriend', 'at', 'a', 'bus', 'stop', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'joanne:', 'yeah', '||period||', "what's", 'his', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'joel', '||period||', '||period||', '||period||', '||return||', '||return||', 'joanne:', 'joel', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'clears', 'her', 'throat', '||rightparen||', 'rifkin', '||period||', '||return||', '||return||', 'michael:', 'rifkin', '||questionmark||', 'joel', 'rifkin', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', "it's", 'just', 'a', 'coincidence', 'obviously', '||period||', '||return||', '||return||', 'michael:', 'guess', 'you', 'better', 'keep', 'on', 'his', 'good', 'side', '||period||', '||return||', '||return||', 'elaine:', 'very', 'funny', '||period||', "that's", 'very', 'funny', '||period||', '||return||', '||return||', 'joanne:', 'i', "wouldn't", 'sleep', 'with', 'my', 'back', 'to', 'him', 'if', 'i', 'were', 'you', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'well', "that's", 'enough', 'of', 'that', '||period||', "that's", 'enough', '||period||', '||return||', '||return||', 'michael:', 'hey', 'elaine', 'listen', '||period||', 'if', 'you', 'smell', 'anything', 'decaying', 'in', 'the', 'trunk', 'of', 'his', 'car', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', "she's", 'upset', '||comma||', 'gets', 'up', 'and', 'yells', '||rightparen||', 'ok', 'look', 'this', 'is', 'my', 'boyfriend', "we're", 'talking', 'about', 'ok', '||questionmark||', 'and', "he's", 'a', 'gentlemen', '||comma||', "he's", 'good', 'looking', '||comma||', "he's", 'a', 'good', 'shaver', 'and', 'he', "hasn't", 'thrown', 'up', 'in', 'eigth', 'years', 'so', 'just', 'shut', 'up', 'about', 'him', '||exclammark||', 'shut', 'up', '||exclammark||', '||return||', '||return||', '[setting:', "jerry's]", '||return||', '||return||', 'elaine:', 'the', 'whole', 'city', 'is', 'talking', 'about', 'this', 'monster', 'joel', 'rifkin', '||comma||', 'and', 'i', 'am', 'dating', 'a', 'joel', 'rifkin', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'like', 'your', 'joel', 'rifkin', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'just', 'wish', 'he', 'has', 'a', 'different', 'name', '||period||', '||return||', '||return||', 'jerry:', 'ask', 'him', 'to', 'change', 'it', '||period||', '||return||', '||return||', 'elaine:', 'you', "can't", 'ask', 'a', 'person', 'to', 'change', 'their', 'name', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'would', 'you', 'change', 'yours', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'someone', 'asked', 'me', 'nicely', '||period||', "i'm", 'claude', 'seinfeld', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'how', 'many', 'people', 'did', 'rifkin', 'strangle', '||questionmark||', 'eighteen', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'eighteen', 'strangles', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'why', 'rifkin', 'was', 'a', 'serial', 'killer', '||questionmark||', 'because', 'he', 'was', 'adopted', '||period||', '||leftparen||', 'saying', 'it', 'as', "he's", 'taking', 'a', 'lot', 'of', 'paper', 'towels', 'from', "jerry's", 'roll', '||semicolon||', 'elaine', 'and', 'jerry', 'are', 'confused', 'at', "kramer's", 'statement', '||rightparen||', 'just', 'like', 'son', 'of', 'sam', 'was', 'adopted', '||period||', 'so', 'apparently', 'adoption', 'leads', 'to', 'serial', 'killing', '||period||', '||leftparen||', 'kramer', 'leaves', 'and', 'we', "don't", 'know', 'why', 'he', 'needed', 'so', 'much', 'paper', 'towels', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'know', 'joel', 'and', 'i', 'have', 'an', 'extra', 'ticket', 'to', 'the', 'giants', 'game', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'go', '||period||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', "i'll", 'leave', 'the', 'ticket', 'for', 'you', 'at', 'will', 'call', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'ooh', '||exclammark||', '||leftparen||', 'leaves', 'again', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'think', 'i', 'should', 'have', 'asked', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'did', 'you', 'hear', 'that', 'george', 'got', 'back', 'with', 'karen', '||questionmark||', '||return||', '||return||', 'elaine:', 'karen', '||questionmark||', '||return||', '||return||', 'jerry:', 'risotto', '||period||', '||leftparen||', 'we', 'see', 'a', 'flashback', 'from', 'the', 'mango', 'where', 'karen', 'tells', 'george', 'that', 'she', 'feels', 'full', 'after', 'a', 'risotto', '||comma||', 'as', 'opposed', 'to', 'when', 'she', 'has', 'sex', 'with', 'him', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'the', 'risotto', 'broad', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "he's", 'really', 'got', 'a', 'good', 'thing', 'with', 'her', '||period||', 'in', 'fact', "i'm", 'doubling', 'with', 'them', 'tonight', '||period||', '||return||', '||return||', 'elaine:', 'i', 'tought', 'you', "didn't", 'like', 'double', 'dates', '||period||', '||return||', '||return||', 'jerry:', 'george', 'likes', 'them', '||comma||', 'he', 'feels', "it's", 'a', 'good', 'personality', 'showcase', '||period||', 'he', 'likes', 'a', 'date', 'to', 'see', 'him', 'with', 'a', 'friend', 'so', 'she', 'can', 'get', 'a', 'window', 'into', 'his', 'nondate', 'personality', '||period||', '||return||', '||return||', 'elaine:', "i've", 'looked', 'through', 'that', 'window', 'and', 'screamed', 'at', 'him', 'to', 'shut', 'the', 'blinds', '||period||', '||return||', '||return||', 'jerry:', 'he', 'feels', "he's", 'funnier', '||comma||', 'more', 'relaxed', '||period||', '||return||', '||return||', 'elaine:', 'and', "you're", 'taking', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'jody', 'the', 'masseuse', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'did', 'you', 'get', 'a', 'massage', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'how', 'many', 'times', 'do', 'i', 'have', 'to', 'go', 'out', 'with', 'her', 'before', 'i', 'get', 'a', 'massage', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'she', 'gives', 'massages', 'all', 'day', '||period||', 'she', "doesn't", 'wanna', 'to', 'give', 'them', 'on', 'dates', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'i', 'know', '||period||', '||period||', '||period||', 'she', 'just', 'wants', 'to', 'have', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', "it's", 'like', 'going', 'to', 'idhao', 'and', 'eating', 'carrots', '||period||', 'i', 'like', 'carrots', '||comma||', 'but', "i'm", 'in', 'idhao', '||comma||', 'i', 'want', 'a', 'potato', '||period||', '||return||', '||return||', '[setting:', 'the', 'chinese', 'restaurant', '||leftparen||', 'the', 'same', 'as', 'in', "'the", 'chinese', "restaurant'", '||rightparen||', ']', '||return||', '||return||', 'george:', '||leftparen||', 'george', 'is', 'telling', 'a', 'story', '||period||', 'karen', 'is', 'laughing', 'and', 'she', 'seems', 'to', 'be', 'the', 'only', 'one', 'to', 'find', 'him', 'funny', '||rightparen||', 'so', 'i', 'go', 'into', 'this', 'clothing', 'store', 'and', 'the', 'saleswoman', 'is', 'wearing', 'this', '||leftparen||', 'whistling', '||rightparen||', 'low', 'cut', 'thing', '||period||', 'so', 'i', 'said', 'to', 'her', '||quotemark||', 'can', 'i', 'ask', 'you', 'a', 'question', '||questionmark||', 'when', 'you', 'put', 'on', 'a', 'top', 'like', 'that', '||comma||', "what's", 'your', 'tought', 'process', '||questionmark||', "what's", 'going', 'on', 'in', 'your', 'mind', '||questionmark||', '||quotemark||', '||return||', '||return||', 'karen:', 'that', 'is', 'so', 'funny', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jody', '||rightparen||', "you're", 'listening', 'to', 'this', '||questionmark||', '||return||', '||return||', 'jodi:', 'yeah', '||period||', 'i', 'heard', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'jody', '||rightparen||', 'my', 'neck', 'is', 'killing', 'me', '||period||', 'right', 'in', 'this', 'spot', '||period||', 'very', 'tender', 'over', 'here', '||period||', '||return||', '||return||', 'jodi:', '||leftparen||', 'to', 'george', '||rightparen||', 'so', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'nothing', '||period||', 'i', "didn't", 'actually', 'say', 'that', '||period||', '||leftparen||', 'karen', 'is', 'still', 'laughing', '||rightparen||', '||return||', '||return||', 'jodi:', 'you', 'just', 'said', 'that', 'you', 'said', 'it', '||period||', '||return||', '||return||', 'george:', 'sweetheart', '||comma||', 'i', 'was', 'exaggerating', '||period||', '||return||', '||return||', 'karen:', "i'm", 'learning', 'a', 'lot', 'about', 'you', 'tonight', 'george', '||period||', "i've", 'never', 'seen', 'you', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'touching', 'the', 'back', 'of', 'his', 'neck', '||rightparen||', "it's", 'like', "somebody's", 'pulling', 'on', 'wires', 'back', 'here', '||period||', '||return||', '||return||', 'george:', 'you', 'know', "it's", 'like', 'you', 'never', 'see', 'a', 'really', 'attractive', 'woman', 'getting', 'a', 'traffic', 'ticket', '||period||', '||return||', '||return||', 'jodi:', 'how', 'can', 'you', 'say', 'that', '||questionmark||', 'my', 'sister', 'got', 'a', 'ticket', 'last', 'week', '||period||', 'are', 'you', 'saying', "she's", 'not', 'attractive', '||questionmark||', '||return||', '||return||', 'george:', 'well', "i've", 'never', 'met', 'your', 'sister', 'but', 'obviously', 'these', 'are', 'not', 'hard', '||dash||', 'and', '||dash||', 'fast', 'rules', '||period||', '||leftparen||', 'to', 'the', 'waitress', '||rightparen||', 'darling', '||comma||', 'the', 'tea', 'is', 'getting', 'a', 'little', 'cold', 'sweetheart', '||period||', '||return||', '||return||', 'jodi:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'can', 'we', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'karen:', 'so', 'soon', '||questionmark||', '||leftparen||', 'they', 'get', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'good', 'seeing', 'you', 'again', 'karen', '||period||', '||return||', '||return||', 'karen:', 'yeah', '||period||', '||return||', '||return||', 'jodi:', 'nice', 'meeting', 'you', 'karen', '||period||', '||return||', '||return||', 'karen:', 'yeah', '||period||', 'nice', 'to', 'meet', 'you', 'too', 'and', "i'm", 'gonna', 'call', 'you', 'about', 'that', 'massage', '||period||', '||return||', '||return||', 'jodi:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'george:', 'jody', "let's", 'do', 'this', 'agian', 'real', 'soon', '||leftparen||', 'he', 'tends', 'his', 'arms', 'for', 'a', 'hug', 'but', 'she', 'avoids', 'him', '||rightparen||', '||return||', '||return||', 'jodi:', 'yeah', '||period||', '||leftparen||', 'she', 'and', 'jerry', 'walk', 'away', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'place', 'later', 'that', 'night]', '||return||', '||return||', 'jerry:', 'i', 'strained', 'my', 'neck', 'last', 'night', '||period||', '||return||', '||return||', 'jodi:', 'really', '||comma||', 'how', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'tried', 'brushing', 'my', 'teeth', 'by', 'holding', 'the', 'brush', 'and', 'moving', 'my', 'head', 'from', 'side', 'to', 'side', '||period||', 'it', "didn't", 'work', '||period||', '||return||', '||return||', 'jodi:', 'so', "what's", 'the', 'deal', 'with', 'your', 'friend', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'deal', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'jodi:', 'what', 'was', 'all', 'that', '||quotemark||', 'attractive', 'women', 'not', 'getting', 'tickets', '||quotemark||', 'nonsense', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'well', '||comma||', 'he', 'was', 'just', 'showcasing', 'his', 'nondate', 'pesonality', '||period||', '||return||', '||return||', 'jodi:', 'i', "don't", 'know', 'how', 'you', 'can', 'hang', 'out', 'with', 'that', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'sometimes', 'he', 'really', 'makes', 'me', 'tense', '||leftparen||', 'he', 'takes', "jody's", 'hand', 'and', 'put', 'it', 'on', 'his', 'shoulder', '||rightparen||', '||return||', '||return||', 'jodi:', 'did', 'you', 'see', 'the', 'way', 'that', 'he', 'was', 'eating', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'disgusting', '||period||', '||leftparen||', 'putting', 'her', 'hand', 'back', 'on', 'his', 'shoulder', '||period||', 'she', 'unconsciously', 'starts', 'to', 'massage', 'a', 'little', 'while', 'watching', 'tv', '||rightparen||', '||return||', '||return||', 'jodi:', 'i', 'have', 'to', 'tell', 'you', '||comma||', 'i', 'really', "don't", 'like', 'him', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'me', 'either', '||period||', '||leftparen||', 'he', 'takes', 'her', 'other', 'hand', 'and', 'put', 'it', 'on', 'his', 'other', 'shoulder', '||rightparen||', '||return||', '||return||', 'jodi:', "it's", 'just', 'i', 'hate', 'that', 'type', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'a', 'bad', 'seed', '||period||', '||return||', '||return||', 'jodi:', 'now', 'you', 'however', '||comma||', 'you', '||comma||', 'i', 'like', '||period||', '||leftparen||', 'she', 'stops', 'massaging', 'and', 'kisses', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jodi:', 'what', 'do', 'you', 'think', "i'm", 'doing', '||questionmark||', '||leftparen||', 'he', "won't", 'get', 'his', 'massage', '||period||', '||period||', '||period||', '||rightparen||', '||return||', '||return||', '[setting:', 'the', 'chinese', 'restaurant]', '||return||', '||return||', 'george:', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'karen:', 'really', 'enjoyed', 'it', '||period||', '||return||', '||return||', 'george:', "jody's", 'nice', '||period||', '||return||', '||return||', 'karen:', "she's", 'very', 'nice', '||period||', '||leftparen||', 'grabs', "george's", 'hand', '||rightparen||', "let's", 'discuss', 'this', 'later', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'she', 'liked', 'me', '||questionmark||', 'she', 'seemed', 'to', 'like', 'me', '||period||', '||return||', '||return||', 'karen:', 'yeah', '||return||', '||return||', 'george:', 'i', 'was', 'personable', '||period||', "don't", 'you', 'think', 'i', 'was', 'personable', '||questionmark||', '||return||', '||return||', 'karen:', 'you', 'were', 'extremely', 'personable', '||period||', '||return||', '||return||', 'george:', 'i', 'tought', 'i', 'picked', 'up', 'a', 'little', 'something', '||period||', "i'm", 'very', 'good', 'at', 'this', '||period||', 'did', 'you', 'pick', 'up', 'anything', '||questionmark||', '||return||', '||return||', 'karen:', 'i', "didn't", 'pick', 'up', 'anything', '||period||', '||return||', '||return||', 'george:', 'the', 'second', 'time', 'i', 'sent', 'the', 'noodles', 'back', '||comma||', 'i', 'tought', 'she', 'made', 'a', 'face', '||period||', '||period||', '||period||', '||return||', '||return||', 'karen:', 'i', "didn't", 'see', 'a', 'face', '||period||', '||return||', '||return||', 'george:', 'i', 'tought', 'i', 'saw', 'a', 'face', '||period||', '||return||', '||return||', 'karen:', 'anyhow', '||comma||', 'what', 'is', 'the', 'difference', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'difference', '||period||', 'i', 'could', 'care', 'less', '||period||', "she's", "jerry's", 'girlfriend', '||period||', '||return||', '||return||', 'karen:', 'george', '||comma||', 'george', '||comma||', 'instead', 'of', 'talking', 'about', 'this', '||comma||', 'we', 'could', 'be', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'makes', 'a', 'move', 'with', 'her', 'head', 'like', 'george', 'did', 'in', "'the", "mango'", 'while', 'saying', '||quotemark||', 'instead', 'of', 'the', 'movie', '||period||', '||period||', '||period||', '||quotemark||', '||rightparen||', '||return||', '||return||', 'george:', 'he', 'he', 'he', 'he', '||return||', '||return||', 'karen:', 'ah', 'ah', 'ah', 'ah', '||return||', '||return||', 'george:', 'so', 'you', 'think', 'she', 'likes', 'me', '||questionmark||', '||return||', '||return||', '[setting:', "elaine's", 'place]', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'he', 'touches', 'her', '||rightparen||', 'uhh', '||exclammark||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'joel:', 'massaging', 'your', 'neck', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'huh', '||period||', 'of', 'course', '||period||', 'massaging', '||period||', '||return||', '||return||', 'joel:', 'uh', '||comma||', 'boning', 'up', 'on', 'football', '||questionmark||', '||leftparen||', 'talking', 'about', 'the', 'magazine', "she's", 'reading', 'as', 'he', 'sits', 'beside', 'her', '||rightparen||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', 'you', 'know', 'what', '||questionmark||', 'there', 'are', 'a', 'lot', 'of', 'players', 'named', 'deon', 'these', 'days', '||period||', 'what', 'a', 'cool', 'name', '||comma||', 'deon', '||period||', 'if', 'i', 'were', 'gonna', 'change', 'my', 'name', '||comma||', "i'd", 'go', 'with', 'deon', '||period||', '||return||', '||return||', 'joel:', 'deon', 'benes', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'as', 'a', 'woman', '||comma||', 'it', 'makes', 'no', 'sense', '||period||', 'but', '||comma||', 'i', 'mean', '||comma||', "let's", 'say', 'i', 'was', 'you', '||period||', 'and', 'i', 'decided', 'i', 'was', 'gonna', 'change', 'my', 'name', 'for', 'no', 'real', 'reasons', 'whatsoever', '||dash||', '||dash||', 'deon', 'rifkin', '||period||', 'wow', '||exclammark||', 'that', 'is', 'so', 'cool', '||period||', '||return||', '||return||', 'joel:', 'd', '||dash||', 'deon', 'rifkin', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'maybe', "you're", 'not', 'the', 'dion', 'type', '||period||', 'o', '||period||', 'k', '||period||', 'then', "let's", 'see', '||comma||', "let's", 'see', '||comma||', 'what', 'do', 'we', 'got', '||questionmark||', '||leftparen||', 'looking', 'at', 'the', 'magazine', '||comma||', 'she', 'starts', 'to', 'gasp', 'and', 'loses', 'it', '||rightparen||', 'oh', '||exclammark||', 'oh', 'oh', 'oh', '||exclammark||', 'o', '||period||', 'j', '||period||', '||exclammark||', 'o', '||period||', 'j', '||period||', 'rifkin', '||exclammark||', 'you', "don't", 'even', 'use', 'a', 'name', '||comma||', "it's", 'just', 'initials', '||period||', 'oh', 'please', 'please', 'please', 'change', 'your', 'name', 'to', 'o', '||period||', 'j', '||period||', '||exclammark||', 'please', '||comma||', 'it', 'would', 'be', 'so', 'great', '||exclammark||', '||return||', '||return||', 'joel:', 'elaine', '||exclammark||', 'what', 'is', 'going', 'on', '||questionmark||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'george:', 'she', 'stayed', 'over', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'disappointed', '||rightparen||', '||return||', '||return||', 'george:', 'the', 'sex', "wasn't", 'so', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'the', 'sex', 'was', 'fabulous', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'want', 'the', 'massage', '||exclammark||', '||return||', '||return||', 'george:', 'did', 'you', 'ask', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'tried', 'putting', 'her', 'hands', 'there', '||leftparen||', 'on', 'his', 'neck', '||rightparen||', 'but', 'she', 'pulls', 'it', 'away', 'immediately', '||comma||', "she's", 'not', 'into', 'it', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'guess', "'cause", "it's", 'her', 'job', '||period||', "it's", 'very', 'frustrating', '||period||', '||return||', '||return||', 'george:', 'so', 'we', 'had', 'a', 'good', 'time', '||period||', '||period||', '||period||', 'the', 'four', 'of', 'us', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'we', 'all', 'got', 'along', '||period||', 'everyone', 'seemed', 'very', 'pleasant', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'jodi', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'had', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'pretty', 'much', '||period||', '||return||', '||return||', 'george:', 'did', 'she', 'say', 'anything', 'about', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||period||', "it's", 'all', 'right', '||period||', 'great', '||exclammark||', 'she', 'had', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||leftparen||', 'a', 'so', '||dash||', 'so', 'yeah', 'as', 'he', 'takes', 'a', 'sip', 'of', 'coffee', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'just', 'hesitated', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'blowing', 'on', 'the', 'coffee', '||period||', '||return||', '||return||', 'george:', 'she', "didn't", 'like', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', "it's", 'not', 'like', "you're", 'gonna', 'be', 'spending', 'a', 'lot', 'of', 'time', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'so', 'she', "doesn't", 'like', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'she', 'said', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'george:', 'she', 'told', 'you', 'she', "doesn't", 'like', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'george:', 'what', 'were', 'her', 'exact', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', "don't", 'like', 'him', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'uh', '||dash||', 'huh', '||leftparen||', 'gulp', '||rightparen||', 'why', "didn't", 'she', 'like', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'everybody', 'likes', 'everybody', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'tried', 'to', 'be', 'nice', '||period||', 'i', "wasn't", 'nice', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'were', 'very', 'nice', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'bent', 'over', 'backwards', 'for', 'that', 'woman', '||exclammark||', 'is', 'it', 'that', 'thing', 'i', 'said', 'about', 'her', 'sister', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'has', 'nothing', 'to', 'do', 'with', 'her', 'sister', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'know', 'her', 'sister', 'but', 'believe', 'me', '||comma||', 'if', "she's", 'getting', 'traffic', 'tickets', '||comma||', "she's", 'not', 'that', 'good', '||dash||', 'looking', '||exclammark||', 'woah', '||return||', '||return||', '[setting:', 'hall', 'in', "jerry's", 'building]', '||return||', '||return||', 'george:', 'you', 'vomited', 'in', '1987', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||period||', 'that', 'was', 'the', 'dry', 'heaves', '||period||', '||return||', '||return||', 'jerry:', 'jodi', '||period||', '||return||', '||return||', 'jodi:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'george:', 'ha', '||exclammark||', 'ha', '||exclammark||', 'hey', '||exclammark||', '||leftparen||', 'moving', 'his', 'arms', 'like', "it's", 'so', 'great', 'to', 'be', 'all', 'here', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jodi:', 'i', 'was', 'giving', 'kramer', 'a', 'massage', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||leftparen||', 'tries', 'to', 'hide', "he's", 'upset', 'and', 'jealous', '||rightparen||', '||return||', '||return||', 'jodi:', 'i', 'got', 'to', 'run', '||period||', 'i', 'have', 'an', 'appointment', 'downtown', '||period||', '||return||', '||return||', 'george:', 'here', '||period||', 'let', 'me', 'take', 'your', 'tabe', 'downstairs', 'for', 'you', '||period||', '||return||', '||return||', 'jodi:', 'no', "that's", 'o', '||period||', 'k', '||period||', '||return||', '||return||', 'george:', 'please', 'give', 'it', 'to', 'me', '||period||', 'i', 'love', 'to', 'help', 'people', '||period||', 'this', 'is', 'what', 'i', 'do', '||period||', 'come', 'on', '||period||', "i'm", 'going', 'this', 'way', '||period||', '||leftparen||', 'he', 'takes', 'the', 'table', 'from', "jodi's", 'hands', 'and', 'she', 'has', 'no', 'choice', 'but', 'to', 'follow', 'him', '||rightparen||', '||return||', '||return||', 'jerry:', "i'll", 'see', 'you', 'tonight', '||period||', '||leftparen||', "he's", 'opening', 'his', 'door', 'apartment', 'as', 'kramer', 'comes', 'out', 'of', 'his', 'in', 'a', 'bathrobe', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'i', 'am', 'looser', 'than', 'creamed', 'corn', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', 'told', 'you', 'to', 'get', 'a', 'massage', 'from', 'her', '||period||', 'i', "haven't", 'gotten', 'a', 'massage', 'from', 'her', 'yet', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', "don't", 'know', 'what', "you're", 'missing', 'buddy', '||period||', '||return||', '||return||', '[setting:', 'street', 'in', 'front', 'of', "jerry's", 'building]', '||return||', '||return||', 'george:', 'no', 'one', 'hails', 'a', 'cab', 'like', 'me', '||period||', 'my', 'hailing', 'technique', 'is', 'unmatched', '||period||', 'i', 'get', 'the', 'wrist', 'going', 'from', 'side', 'to', 'side', 'and', 'boom', '||exclammark||', 'cabs', 'are', 'crashing', 'into', 'themselves', 'to', 'just', 'pick', 'me', 'up', '||period||', '||leftparen||', 'a', 'cab', 'stops', '||rightparen||', 'all', 'right', '||comma||', 'here', 'we', 'go', '||period||', 'let', 'me', 'get', 'door', '||period||', 'feminists', 'aside', '||comma||', 'i', 'know', 'women', 'like', 'the', 'door', 'holding', '||period||', 'here', 'we', 'are', 'all', 'righty', '||period||', 'o', '||period||', 'k', '||period||', 'jodi', "let's", 'get', 'together', 'again', 'real', 'soon', 'and', 'say', 'hello', 'to', 'your', 'sister', 'for', 'me', '||period||', '||return||', '||return||', 'jodi:', "you've", 'never', 'met', '||period||', '||leftparen||', 'the', 'cab', 'starts', 'and', 'george', 'is', 'following', 'to', 'keep', 'talking', 'to', 'jodi', '||rightparen||', '||return||', '||return||', 'george:', 'whatever', '||period||', 'believe', 'me', '||comma||', 'if', 'i', "wasn't", 'involved', 'right', 'now', '||comma||', 'i', "wouldn't", 'mind', 'being', 'set', 'up', '||period||', 'something', 'tells', 'me', "she's", 'a', 'knockout', '||period||', '||leftparen||', 'we', 'see', '||comma||', 'from', 'the', 'camera', 'inside', 'the', 'cab', '||comma||', "george's", 'hand', 'waving', 'as', 'the', 'cab', 'drives', 'away', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', '||leftparen||', 'kramer', 'is', 'talking', 'much', 'more', 'slowly', 'and', 'smoother', 'than', 'usual', '||rightparen||', 'first', 'she', 'sets', 'the', 'mood', 'perfectly', 'with', 'this', 'new', 'age', 'music', 'played', 'over', 'ocean', 'sounds', '||period||', 'then', 'she', 'lays', 'you', 'out', 'on', 'this', 'table', '||comma||', 'and', 'she', 'proceeds', 'to', 'rub', 'oil', 'over', 'your', 'entire', 'body', '||period||', 'and', 'she', 'rubs', 'long', '||period||', '||period||', '||period||', 'and', 'deep', '||period||', '||period||', '||period||', 'jerry', '||comma||', 'she', 'rubs', 'with', 'love', '||period||', '||leftparen||', 'jerry', 'is', 'obviously', 'cutting', 'much', 'harder', 'than', 'the', 'cheese', 'needs', 'it', 'as', 'he', 'listens', 'to', 'kramer', '||rightparen||', 'every', 'muscles', 'she', 'touches', 'just', '||period||', '||period||', '||period||', '||leftparen||', 'long', 'pause', '||rightparen||', 'ooo', '||dash||', 'zz', '||dash||', 'es', '||period||', 'beneath', 'those', 'silky', '||comma||', 'soft', 'fingers', '||comma||', 'you', 'can', 'scarcely', 'contain', 'yourself', '||comma||', 'buddy', '||period||', '||leftparen||', 'jerry', 'slams', 'down', 'the', 'knife', 'and', 'goes', 'to', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'you', 'had', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'enjoyed', 'yourself', '||period||', '||return||', '||return||', 'kramer:', 'very', '||period||', '||period||', '||period||', 'much', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'now', 'you', 'listen', 'and', 'you', 'listen', 'good', '||exclammark||', '||leftparen||', 'he', 'grabs', "kramer's", 'legs', 'and', 'throws', 'him', 'down', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', '||exclammark||', '||leftparen||', 'kramer', 'is', 'back', 'to', 'his', 'usual', 'way', 'of', 'speaking', '||rightparen||', '||return||', '||return||', 'jerry:', 'the', 'massages', 'are', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'wha', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'ahh', '||exclammark||', '||exclammark||', '||exclammark||', "they're", 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'because', 'if', 'i', "can't", 'get', 'one', '||comma||', "you're", 'not', 'getting', 'one', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'minute', '||exclammark||', 'wait', 'a', 'minute', '||exclammark||', 'i', 'need', 'my', 'massages', '||exclammark||', "can't", 'you', 'see', "i'm", 'burned', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'kramer', '||period||', '||leftparen||', 'he', 'goes', 'back', 'to', 'the', 'kitchen', '||rightparen||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', 'why', '||questionmark||', 'look', '||comma||', 'i', 'paid', 'for', 'her', '||period||', '||leftparen||', 'jerry', 'stops', 'walking', '||rightparen||', '||return||', '||return||', 'jerry:', "don't", 'you', 'ever', 'talk', 'about', 'her', 'like', 'that', '||exclammark||', '||return||', '||return||', 'kramer:', 'but', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'final', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'ah', '||exclammark||', '||exclammark||', '||exclammark||', 'yahh', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', '[setting:', 'giants', 'stadium]', '||return||', '||return||', 'announcer:', 'ladies', 'and', 'gentlemen', '||comma||', 'welcome', 'to', 'giants', 'stadium', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'have', 'photos', 'in', 'your', 'wallet', '||questionmark||', '||return||', '||return||', 'joel:', 'yeah', '||period||', 'why', '||questionmark||', 'is', 'that', 'weird', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "it's", 'normal', '||period||', "you're", 'very', 'normal', '||period||', "you're", 'totally', 'normal', '||period||', "who's", 'this', '||questionmark||', '||return||', '||return||', 'joel:', "that's", 'my', 'mother', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||period||', 'i', 'see', 'the', 'resemblance', '||period||', '||return||', '||return||', 'joel:', 'no', '||comma||', "there's", 'no', 'resemblance', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'there', 'is', '||comma||', 'right', 'here', 'you', 'see', '||dash||', '||dash||', '||return||', '||return||', 'joel:', 'elaine', '||comma||', 'i', 'was', 'adopted', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'oh', '||period||', "that's", 'nice', '||period||', '||return||', '||return||', 'joel:', 'oh', '||comma||', 'the', "game's", 'about', 'to', 'start', '||period||', 'i', 'wonder', 'where', 'your', 'friend', 'kramer', 'is', '||period||', '||return||', '||return||', '[setting:', 'ticket', 'counter]', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'ticket', 'man', '||rightparen||', 'uh', '||comma||', 'yeah', '||comma||', 'a', 'ticket', 'for', 'kramer', '||period||', '||return||', '||return||', 'ticket', 'man:', 'here', 'it', 'is', '||period||', 'i', 'need', 'some', 'i', '||period||', 'd', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||leftparen||', 'snaps', 'fingers', '||rightparen||', 'you', 'know', '||comma||', 'i', 'forgot', 'my', 'wallet', '||period||', '||return||', '||return||', 'ticket', 'man:', 'well', '||comma||', 'i', "can't", 'give', 'it', 'to', 'you', 'then', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'kidding', 'me', '||questionmark||', '||return||', '||return||', 'ticket', 'man:', "i'm", 'afraid', 'not', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'just', 'look', 'at', 'me', '||period||', 'tell', 'me', "i'm", 'not', 'kramer', '||period||', '||return||', '||return||', 'ticket', 'man:', "i'm", 'sorry', '||period||', 'i', 'need', 'proof', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', "i'll", 'drive', 'out', 'here', 'tomorrow', 'and', "i'll", 'show', 'the', 'i', '||period||', 'd', '||period||', 'i', 'got', 'nothing', 'to', 'do', 'all', 'day', '||period||', '||return||', '||return||', 'ticket', 'man:', 'neither', 'do', 'i', '||period||', 'but', 'without', 'i', '||period||', 'd', '||period||', '||comma||', 'i', 'need', 'confirmation', 'from', 'the', 'person', 'who', 'left', 'the', 'ticket', '||period||', '||return||', '||return||', 'kramer:', "where's", 'a', 'phone', '||questionmark||', '||return||', '||return||', '[setting:', 'back', 'to', 'elaine', 'and', 'joel', 'watching', 'the', 'game]', '||return||', '||return||', 'announcer:', 'ladies', 'and', 'gentlemen', '||comma||', 'may', 'i', 'have', 'your', 'attention', '||comma||', 'please', '||questionmark||', 'would', 'joel', 'rifkin', 'report', 'to', 'the', 'stadium', 'office', '||period||', 'joel', 'rifkin', '||period||', '||period||', '||period||', 'telephone', '||period||', '||leftparen||', 'the', 'crowd', 'stops', 'cheering', 'and', 'we', 'see', 'a', 'football', 'player', '||comma||', 'lawrence', 'taylor', 'of', 'the', 'n', '||period||', 'y', '||period||', 'giants', '||comma||', 'distracted', 'from', 'the', 'game', 'while', 'hearing', 'the', 'announcer', 'saying', 'joel', 'rifkin', '||rightparen||', '||return||', '||return||', 'joel:', 'who', 'would', 'be', 'calling', 'me', 'here', '||questionmark||', '||leftparen||', 'he', 'stands', 'up', 'and', 'look', 'around', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'person', 'in', 'front', 'of', 'her', '||rightparen||', "he's", 'not', 'the', 'murderer', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'god', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'need', 'another', 'massage', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'just', 'had', 'one', 'yesterday', '||period||', 'what', 'do', 'you', 'need', 'another', 'one', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'of', 'the', 'giant', 'game', '||exclammark||', 'i', 'told', 'you', '||comma||', 'it', 'went', 'overtime', '||exclammark||', 'you', 'know', 'what', 'those', 'seats', 'are', 'like', '||period||', "they're", 'very', 'unforgiving', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'please', '||period||', '||return||', '||return||', 'kramer:', 'and', 'then', 'the', 'game', '||dash||', 'winning', 'field', 'goal', 'went', 'over', 'the', 'net', 'and', 'into', 'the', 'crowd', 'and', 'i', 'dove', 'over', 'three', 'rows', '||exclammark||', 'my', 'back', '||comma||', "it's", 'killing', 'me', '||exclammark||', '||leftparen||', 'whining', '||rightparen||', "it's", 'killing', 'me', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'did', 'you', 'get', 'the', 'ball', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'got', 'the', 'ball', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'never', 'even', 'caught', 'a', 'foul', 'ball', 'at', 'a', 'baseball', 'game', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'quite', 'a', 'thrill', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'get', 'somebody', 'else', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'nobody', 'does', 'it', 'like', 'she', 'does', '||period||', "she's", 'the', 'best', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'it', '||exclammark||', "tonight's", 'the', 'night', '||period||', "i'm", 'getting', 'one', '||period||', 'no', '||quotemark||', 'if', "and's", 'or', "but's", '||quotemark||', '||period||', '||return||', '||return||', 'kramer:', 'what', 'about', 'my', 'massage', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whining', 'like', 'kramer', '||rightparen||', 'ask', 'newman', '||period||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'george:', 'so', 'i', 'lugged', 'that', 'table', '||period||', 'that', 'big', 'heavy', 'massage', 'table', 'all', 'the', 'way', 'down', 'to', 'the', 'cab', '||exclammark||', 'you', 'ever', 'seen', 'one', 'of', 'those', 'things', '||questionmark||', '||return||', '||return||', 'karen:', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "don't", 'know', '||period||', 'maybe', 'you', "haven't", '||period||', 'you', 'know', '||comma||', 'not', "everybody's", 'seen', 'a', 'massage', 'table', '||period||', '||return||', '||return||', 'karen:', 'what', '||comma||', 'do', 'you', 'think', "i've", 'never', 'had', 'a', 'massage', 'before', '||questionmark||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'i', "don't", 'even', 'get', 'a', 'thank', 'you', '||period||', 'i', "don't", 'get', 'it', '||exclammark||', '||return||', '||return||', 'karen:', 'george', '||comma||', 'frankly', '||comma||', "i'm", 'getting', 'a', 'little', 'tired', 'of', 'hearing', 'about', 'her', '||period||', '||return||', '||return||', 'george:', 'i', 'wanna', 'know', 'what', 'i', 'did', 'to', 'this', 'woman', '||period||', '||return||', '||return||', 'karen:', 'what', '||comma||', 'you', 'got', 'a', 'little', 'thing', 'for', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||exclammark||', "she's", 'going', 'out', 'with', 'a', 'friend', 'of', 'mine', '||period||', "it's", 'only', 'courteous', 'that', 'we', 'should', 'try', 'and', 'like', 'each', 'other', '||period||', '||return||', '||return||', 'karen:', 'what', 'difference', 'does', 'it', 'make', '||questionmark||', 'who', 'cares', 'if', 'she', "doesn't", 'like', 'you', '||questionmark||', 'does', 'everybody', 'in', 'the', 'world', 'have', 'to', 'like', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'yes', '||exclammark||', 'everybody', 'has', 'to', 'like', 'me', '||period||', 'i', 'must', 'be', 'liked', '||exclammark||', '||return||', '||return||', '[setting:', "elaine's", 'apartment]', '||return||', '||return||', 'elaine:', 'of', 'course', 'i', 'support', 'your', 'decision', 'to', 'change', 'your', 'name', '||period||', '||return||', '||return||', 'joel:', 'after', 'the', 'giant', 'game', 'i', 'realized', 'that', 'this', '||dash||', '||dash||', 'this', 'problem', "isn't", 'going', 'away', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'listen', '||comma||', 'i', 'just', 'want', 'you', 'to', 'know', 'that', 'i', 'was', 'more', 'than', 'willing', 'to', 'stick', 'it', 'out', 'with', 'joel', 'rifkin', '||period||', '||return||', '||return||', 'joel:', 'sure', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'she', 'fakes', 'a', 'strangling', '||rightparen||', 'rrr', '||period||', '||period||', '||period||', '||return||', '||return||', 'joel:', 'o', '||period||', 'k', '||period||', 'you', 'got', 'your', 'list', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'yeah', '||period||', '10', 'names', '||period||', '||return||', '||return||', 'joel:', 'right', '||period||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', 'and', 'if', 'somebody', 'objects', '||comma||', 'you', 'can', 'just', 'veto', 'it', '||period||', '||return||', '||return||', 'joel:', 'o', '||period||', 'k', '||period||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', 'you', 'start', '||period||', "what's", 'your', 'first', 'choice', '||questionmark||', '||return||', '||return||', 'joel:', 'stuart', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'right', 'away', '||rightparen||', 'no', '||period||', 'second', 'choice', '||period||', '||return||', '||return||', 'joel:', 'stu', '||dash||', '||dash||', "stuart's", 'no', 'good', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'have', 'never', 'met', 'a', 'normal', 'guy', 'named', 'stuart', '||period||', '||return||', '||return||', 'joel:', 'o', '||dash||', 'o', '||period||', 'k', '||period||', 'my', 'second', 'choice', 'is', '||period||', '||period||', '||period||', 'todd', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'repeating', 'to', 'hear', 'how', 'it', 'sounds', '||rightparen||', 'todd', '||period||', '||leftparen||', 'pause', '||rightparen||', 'no', '||period||', 'veto', '||period||', '||return||', '||return||', 'joel:', 'all', 'right', '||period||', 'oh', '||comma||', 'hey', '||comma||', 'i', 'think', "you're", 'gonna', 'like', 'my', 'first', 'my', 'third', 'choice', '||period||', '||return||', '||return||', 'elaine:', 'great', '||period||', '||period||', '||period||', '||return||', '||return||', 'joel:', 'alex', '||period||', '||return||', '||return||', 'elaine:', 'i', 'gotta', 'tell', 'ya', '||comma||', 'i', 'have', 'a', 'bad', 'association', 'with', 'the', 'name', 'alex', '||period||', '||return||', '||return||', 'joel:', 'bad', 'bad', 'association', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'in', 'college', 'i', 'sat', 'next', 'to', 'an', 'alex', 'in', 'art', 'history', '||period||', 'and', 'he', 'was', 'always', 'drinking', 'coffee', 'and', 'after', 'every', 'sip', 'he', 'would', 'go', '||quotemark||', 'ahh', '||quotemark||', '||period||', 'i', 'mean', 'every', 'two', 'seconds', '||quotemark||', 'ahh', '||quotemark||', '||period||', 'and', 'he', 'would', 'take', 'like', '40', 'sips', 'and', 'after', 'everyone', '||quotemark||', 'ahh', '||quotemark||', '||period||', 'i', 'had', 'to', 'drop', 'the', 'class', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'place]', '||return||', '||return||', 'jodi:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'jodi:', 'hi', '||period||', '||leftparen||', 'kiss', '||rightparen||', 'i', 'was', 'running', 'late', 'and', 'i', "didn't", 'have', 'a', 'chance', 'to', 'drop', 'off', 'my', 'stuff', 'before', 'i', 'came', 'over', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'no', 'problem', '||period||', "that's", 'fine', '||period||', '||return||', '||return||', 'jodi:', "what's", 'with', 'this', 'music', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'new', 'age', 'music', '||period||', 'sounds', 'of', 'the', 'forest', '||period||', 'i', 'find', 'it', 'soothing', '||period||', 'hey', '||comma||', 'look', 'at', 'this', '||exclammark||', 'what', 'do', 'you', 'know', '||questionmark||', 'a', 'massage', 'table', '||exclammark||', 'this', 'is', 'great', '||exclammark||', '||leftparen||', 'he', 'starts', 'to', 'install', 'the', 'table', '||rightparen||', '||return||', '||return||', 'jodi:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'checking', 'it', 'out', '||period||', 'look', 'at', 'how', 'this', 'thing', 'is', 'made', '||period||', 'can', 'i', 'tell', 'you', 'something', '||questionmark||', "that's", 'a', 'hell', 'of', 'a', 'piece', 'of', 'equipment', '||period||', '||return||', '||return||', 'jodi:', 'actually', '||comma||', 'i', 'should', 'get', 'a', 'new', 'one', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'nonsense', '||period||', 'this', "one's", 'fine', '||period||', '||leftparen||', 'as', 'he', 'sits', 'on', 'the', 'table', '||rightparen||', '||return||', '||return||', 'jodi:', 'so', '||comma||', 'where', 'do', 'you', 'wanna', 'go', '||questionmark||', '||leftparen||', 'as', 'she', 'puts', 'her', 'hand', 'on', 'his', 'shoulder', '||rightparen||', '||return||', '||return||', 'jerry:', 'go', '||questionmark||', 'why', 'go', 'anywhere', '||questionmark||', '||leftparen||', 'as', 'he', 'places', 'his', 'hand', 'over', 'hers', '||period||', 'she', 'starts', 'to', 'massage', 'his', 'shoulders', 'a', 'little', '||rightparen||', 'ahh', '||comma||', 'that', 'feels', 'good', '||period||', 'yeah', '||period||', "that's", '||comma||', 'uh', '||period||', '||period||', '||period||', "that's", 'good', '||period||', '||leftparen||', 'he', 'tries', 'to', 'go', 'further', '||period||', 'he', 'grabs', 'her', 'hands', 'over', 'his', 'shoulders', 'and', 'he', 'lies', 'down', 'on', 'the', 'table', 'on', 'his', 'chest', '||rightparen||', 'yeah', '||comma||', "that's", 'nice', '||period||', "that's", 'very', 'nice', '||period||', '||return||', '||return||', 'jodi:', '||leftparen||', 'she', 'stops', 'massaging', '||rightparen||', 'no', '||period||', 'no', '||comma||', 'this', "isn't", 'good', '||period||', 'i', "can't", 'do', 'this', '||period||', '||return||', '||return||', 'jerry:', 'why', '||comma||', "what's", 'wrong', '||questionmark||', '||leftparen||', 'he', 'grabs', 'her', 'hands', 'and', 'force', 'her', 'to', 'keep', 'them', 'on', 'his', 'shoulders', '||rightparen||', '||return||', '||return||', 'jodi:', 'i', "can't", '||leftparen||', 'she', 'tries', 'harder', 'to', 'pull', 'her', 'hands', 'away', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'yes', 'you', 'can', '||period||', '||leftparen||', 'he', 'hangs', 'on', '||rightparen||', '||return||', '||return||', 'jodi:', 'no', '||comma||', 'i', "can't", '||exclammark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||exclammark||', 'i', 'know', "it's", 'something', 'you', 'wanna', 'do', '||exclammark||', '||leftparen||', 'she', 'pulls', 'harder', 'and', 'he', 'falls', 'right', 'off', 'the', 'table', '||rightparen||', '||return||', '||return||', '[setting:', "karen's", 'place]', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', 'i', 'should', 'really', 'go', 'talk', 'to', 'her', '||period||', 'nothing', 'confrontational', '||period||', 'just', 'two', 'adults', 'sitting', 'down', 'trying', 'to', 'clear', 'the', 'air', '||period||', 'you', 'know', '||comma||', 'i', 'just', 'know', 'if', 'i', 'could', 'spend', 'some', 'time', 'alone', 'with', 'her', '||period||', "i've", 'got', 'to', '||period||', '||leftparen||', 'he', 'grabs', 'his', 'jacket', '||rightparen||', "i've", 'got', 'to', '||period||', '||return||', '||return||', 'karen:', "you're", 'going', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'can', 'still', 'catch', 'her', '||period||', '||return||', '||return||', 'karen:', 'all', 'right', 'george', '||period||', 'i', 'have', 'had', 'just', 'about', 'enough', 'of', 'this', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||period||', '||return||', '||return||', 'karen:', 'i', 'am', 'talking', 'about', 'you', 'and', 'jodi', '||period||', "you're", 'completely', 'obsessed', 'with', 'her', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'i', 'know', '||period||', '||return||', '||return||', 'karen:', 'who', 'is', 'more', 'important', 'to', 'you', '||comma||', 'her', 'or', 'me', '||questionmark||', 'i', 'like', 'you', '||comma||', 'she', "doesn't", '||period||', 'who', 'are', 'you', 'gonna', 'pick', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'he', 'thinks', 'a', 'little', 'about', 'it', '||period||', '||period||', '||period||', 'and', 'as', 'he', 'puts', 'his', 'hand', 'on', 'his', 'knee', 'and', 'gets', 'up', '||rightparen||', "i'm", 'sorry', 'karen', '||period||', 'i', 'know', 'i', 'care', 'for', 'you', '||comma||', 'but', 'i', 'just', "can't", 'stand', 'when', 'someone', "doesn't", 'like', 'me', '||period||', '||leftparen||', 'he', 'opens', 'the', 'door', '||rightparen||', '||return||', '||return||', 'karen:', 'well', '||comma||', 'now', 'i', 'hate', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'that', "i'm", 'used', 'to', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'back', 'to', "elaine's", 'place]', '||return||', '||return||', 'joel:', 'ned', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'wrong', 'with', 'ned', '||questionmark||', '||return||', '||return||', 'joel:', "ned's", 'a', 'guy', 'who', 'buys', 'irregular', 'underwear', '||period||', 'next', '||exclammark||', '||return||', '||return||', 'elaine:', 'ellis', '||period||', '||return||', '||return||', 'joel:', 'ellis', '||questionmark||', '||exclammark||', 'you', 'might', 'as', 'well', 'go', 'with', 'alex', '||period||', "it's", 'the', 'same', 'thing', '||exclammark||', '||return||', '||return||', 'elaine:', 'ellis', 'and', 'alex', "aren't", 'even', 'close', '||period||', '||return||', '||return||', 'joel:', 'next', '||exclammark||', '||return||', '||return||', 'elaine:', 'ohh', '||comma||', 'what', 'is', 'the', 'point', '||questionmark||', '||return||', '||return||', 'joel:', 'no', '||comma||', 'no', '||period||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', 'o', '||period||', 'k', '||period||', 'remy', '||period||', '||return||', '||return||', 'joel:', 'remy', 'rifkin', '||questionmark||', 'should', 'i', 'get', 'a', 'beret', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "stuart's", 'a', 'lot', 'better', '||exclammark||', '||leftparen||', 'talking', 'like', 'a', 'baby', '||rightparen||', 'little', 'stuart', 'rifkin', 'likes', 'to', 'go', 'shopping', 'with', 'his', 'mother', '||period||', '||return||', '||return||', 'joel:', 'grrrr', '||exclammark||', '||return||', '||return||', '[setting:', 'back', 'to', "jerry's]", '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||comma||', 'no', '||questionmark||', '||return||', '||return||', 'jodi:', 'no', 'means', 'no', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'who', 'are', 'you', 'kidding', '||questionmark||', 'you', 'come', 'up', 'to', 'my', 'apartment', 'with', 'your', 'table', 'and', 'your', 'little', 'oils', '||comma||', 'and', "i'm", 'not', 'supposed', 'to', 'expect', 'anything', '||questionmark||', "you're", 'a', 'massage', 'teaser', '||period||', '||return||', '||return||', 'jodi:', 'listen', '||period||', 'i', 'massage', 'who', 'i', 'want', '||comma||', 'when', 'i', 'want', '||period||', 'i', "don't", 'submit', 'to', 'forcible', 'massage', '||period||', '||leftparen||', 'he', 'tries', 'desperately', 'to', 'get', 'her', 'hands', 'on', 'his', 'shoulders', 'again', 'but', 'she', 'pulls', 'them', 'away', 'immediately', '||rightparen||', "i'm", 'getting', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||period||', 'go', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'could', 'you', 'excuse', 'us', 'for', 'a', 'few', 'minutes', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'jerry:', 'you', 'need', 'to', 'talk', '||questionmark||', '||return||', '||return||', 'jodi:', 'we', 'have', 'nothing', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'george:', 'look', "it's", 'no', 'secret', "what's", 'going', 'on', 'between', 'us', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'she', "doesn't", 'like', 'me', '||period||', 'now', 'jerry', 'if', 'you', "don't", 'mind', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'anything', 'you', 'have', 'to', 'say', 'to', 'her', '||comma||', 'you', 'can', 'say', 'in', 'front', 'of', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'he', 'makes', 'a', 'sign', 'to', 'jodi', 'to', 'wait', 'and', 'turns', 'to', 'jerry', '||rightparen||', 'jerry', '||period||', '||period||', '||period||', 'this', 'woman', 'hates', 'me', 'so', 'much', '||period||', "i'm", 'starting', 'to', 'like', 'her', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'just', 'dislikes', 'me', 'so', 'much', '||period||', '||period||', '||period||', "it's", 'irresistable', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'see', 'that', '||period||', '||return||', '||return||', 'jodi:', "i'm", 'getting', 'out', 'of', 'here', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', "don't", 'call', 'me', '||period||', '||return||', '||return||', 'jerry:', "don't", 'worry', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'a', 'woman', 'that', 'hates', 'me', 'this', 'much', 'comes', 'along', 'once', 'in', 'a', 'lifetime', '||period||', '||return||', '||return||', 'jerry:', "you're", 'a', 'lucky', 'guy', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'to', 'go', 'after', 'her', '||period||', '||return||', '||return||', 'jerry:', 'george', '||period||', 'i', "wouldn't", 'push', 'for', 'the', 'massage', '||period||', '||leftparen||', 'george', 'nods', '||rightparen||', '||return||', '||return||', 'george:', 'jodi', '||exclammark||', '||leftparen||', 'he', 'starts', 'running', 'after', 'her', '||rightparen||', '||return||', '||return||', 'jerry:', 'the', 'swedish', 'are', 'very', 'big', 'massagers', '||period||', 'you', 'know', '||questionmark||', 'they', 'like', 'the', 'swedish', 'meatballs', '||comma||', 'swedish', 'massage', '||period||', 'they', 'like', 'having', 'meat', 'in', 'their', 'hands', 'these', 'people', '||comma||', 'for', 'some', 'reason', '||period||', 'but', "it's", 'weird', 'because', 'they', 'have', 'the', 'highest', 'suicide', 'rate', '||comma||', "they're", 'rubbing', 'each', "other's", 'necks', 'all', 'the', 'time', 'for', 'a', 'neutral', 'country', 'they', 'seem', 'kinda', 'tense', '||period||', 'i', "don't", 'really', 'like', 'the', 'idea', 'of', 'getting', 'a', 'professional', 'massage', '||period||', 'i', "don't", 'want', 'people', 'touching', 'me', 'that', "don't", 'know', 'me', 'and', "don't", 'want', 'to', 'have', 'sex', 'with', 'me', '||period||', 'you', 'know', 'what', 'are', 'you', 'bothering', 'me', 'for', '||questionmark||', 'you', 'get', 'me', 'all', 'loosened', 'up', '||comma||', 'juices', 'flowing', '||comma||', 'and', 'then', "that's", 'it', 'ok', '||comma||', "you're", 'done', '||period||', "it's", 'like', 'having', 'chocolate', 'rubbed', 'all', 'over', 'your', 'face', '||comma||', 'you', 'know', 'you', 'wanna', 'go', '||quotemark||', 'excuse', 'me', '||comma||', 'i', 'think', 'you', 'missed', 'a', 'spot', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'you', 'can', 'always', 'tell', 'what', 'was', 'the', 'best', 'year', 'of', 'your', "father's", 'life', '||comma||', 'because', 'they', 'seem', 'to', 'just', 'freeze', 'that', 'clothing', 'style', 'and', 'just', 'ride', 'it', 'out', 'to', 'the', 'end', '||comma||', "don't", 'they', '||questionmark||', 'and', "it's", 'not', 'like', 'they', "don't", 'continue', 'shopping', '||comma||', "it's", 'just', 'they', 'somehow', 'manage', 'to', 'find', 'new', 'old', 'clothes', '||period||', 'every', 'father', 'is', 'like', 'this', 'fashion', 'time', 'capsule', '||comma||', 'you', 'know', 'what', 'i', 'mean', '||period||', "it's", 'like', 'they', 'should', 'be', 'on', 'a', 'pedestal', '||comma||', 'with', 'someone', 'next', 'to', "'em", 'going', "'this", 'was', 'nineteen', 'sixty', '||dash||', "five'", '||period||', 'to', 'me', 'the', 'worst', 'thing', 'is', 'shopping', 'for', 'pants', '||period||', 'i', 'hate', 'dressing', 'and', 'undressing', 'in', 'that', 'little', 'room', '||period||', 'what', 'men', 'need', 'is', 'a', 'place', 'to', 'shop', 'where', 'you', 'go', 'in', '||comma||', 'you', 'check', 'your', 'pants', 'at', 'the', 'door', '||comma||', 'and', 'you', 'just', 'walk', 'around', 'the', 'store', 'in', 'your', 'underwear', '||period||', 'that', 'would', 'be', 'the', 'best', 'way', '||period||', 'then', "you'd", 'really', 'have', 'to', 'lie', 'to', 'the', 'salesman', '||period||', "'need", 'some', 'help', '||questionmark||', "'", "'no", '||comma||', 'just', 'getting', 'some', 'air', '||period||', "'", '||return||', '||return||', 'jerry:', 'how', 'would', 'you', 'describe', 'the', 'smell', 'in', 'this', 'house', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sniffing', '||rightparen||', 'dandruff', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'part', 'of', 'it', '||period||', '||leftparen||', 'sniffs', '||rightparen||', 'kasha', '||questionmark||', '||return||', '||return||', 'elaine:', "there's", 'some', 'kasha', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'dandruff', '||comma||', 'kasha', '||comma||', 'mothballs', '||comma||', 'cheap', 'carpeting', '||period||', "it's", 'pot', 'pourri', '||comma||', 'really', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', "let's", 'go', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'wha', '||period||', '||period||', '||period||', "you're", 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'you', 'know', 'we', "shouldn't", 'have', 'bowled', 'that', 'last', 'game', '||comma||', "i'm", 'gonna', 'be', 'late', '||period||', '||return||', '||return||', 'kramer:', 'egh', '||period||', 'these', "aren't", 'candies', '||period||', '||return||', '||return||', 'george:', 'wha', '||questionmark||', 'did', 'you', 'use', 'those', '||questionmark||', 'these', 'are', 'guest', 'soaps', '||exclammark||', '||leftparen||', 'he', 'grabs', 'the', 'soaps', 'and', 'begins', 'examining', 'them', 'for', 'damage', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', "i'm", 'a', 'guest', '||period||', '||return||', '||return||', 'george:', 'now', 'my', 'parents', 'are', 'gonna', 'know', 'i', 'had', 'people', 'over', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'allowed', 'to', 'have', 'people', 'over', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'have', 'any', 'parties', 'while', "they're", 'out', 'of', 'town', '||period||', '||leftparen||', 'he', 'leaves', 'to', 'return', 'the', 'soaps', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'this', 'is', 'a', 'party', '||questionmark||', '||return||', '||return||', 'elaine:', 'not', 'any', 'more', '||period||', 'come', 'on', '||comma||', 'get', 'your', 'ball', '||comma||', "we're", 'leaving', '||period||', "let's", 'go', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'yells', '||rightparen||', 'wow', '||exclammark||', 'who', 'put', 'this', 'cup', 'right', 'on', 'the', 'new', 'table', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picks', 'it', 'up', '||rightparen||', 'i', 'was', 'having', 'coffee', '||comma||', 'i', 'put', 'it', 'on', 'the', 'coffee', 'table', '||period||', '||return||', '||return||', 'george:', 'but', 'you', "didn't", 'use', 'a', 'coaster', '||comma||', 'jerry', '||comma||', 'you', 'left', 'a', 'stain', '||exclammark||', '||leftparen||', 'he', 'runs', 'to', 'kitchen', '||rightparen||', '||return||', '||return||', 'kramer:', 'whoah', 'boy', '||period||', "there's", 'always', 'one', 'at', 'every', 'party', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'impatient', '||rightparen||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'big', 'rush', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'having', 'people', 'over', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'girls', 'for', 'poker', 'night', '||period||', 'you', 'know', '||comma||', 'joanne', '||comma||', 'renee', '||comma||', 'winona', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'eh', '||comma||', 'ah', '||period||', "winona's", 'gonna', 'be', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'and', 'she', 'broke', 'up', 'with', 'the', 'vitamin', 'guy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interested', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'put', 'in', 'a', 'good', 'word', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', 'because', 'i', 'would', 'really', 'like', '||period||', '||period||', '||period||', '||leftparen||', 'distractedly', 'puts', 'coffee', 'cup', 'back', 'on', 'the', 'table', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'screaming', '||rightparen||', 'aaahh', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'm", 'sorry', '||period||', "i'm", 'sorry', '||period||', '||leftparen||', 'picks', 'it', 'up', 'again', '||rightparen||', '||return||', '||return||', 'george:', 'but', 'jerry', '||comma||', 'this', 'is', 'not', 'coming', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'just', 'put', 'a', 'coffee', 'table', 'book', 'over', 'it', '||period||', '||return||', '||return||', 'george:', 'my', 'parents', "don't", 'read', '||exclammark||', "they're", 'gonna', 'wonder', 'what', 'a', 'book', 'is', 'doing', 'on', 'the', 'table', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', 'you', 'know', 'what', 'would', 'make', 'a', 'great', 'coffee', 'table', 'book', '||questionmark||', 'a', 'coffee', 'table', 'book', 'about', 'coffee', 'tables', '||exclammark||', 'get', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'got', 'it', '||exclammark||', "c'mon", '||comma||', "let's", 'go', '||comma||', "let's", 'go', '||period||', 'bye', 'george', '||period||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'wait', 'wait', '||comma||', 'not', 'so', 'fast', '||period||', 'jerry', '||comma||', 'you', 'gotta', 'take', 'me', 'to', 'get', 'this', 'thing', 'refinished', '||period||', '||return||', '||return||', 'elaine:', 'now', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'now', '||period||', "it's", 'gonna', 'take', 'a', 'few', 'days', 'and', 'my', 'parents', 'are', 'gonna', 'be', 'back', '||period||', 'i', 'gotta', 'have', 'it', 'back', 'before', 'them', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'promised', "you'd", 'get', 'me', 'home', 'by', 'seven', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "we'll", 'take', 'the', 'subway', '||period||', '||return||', '||return||', 'jerry:', 'there', 'you', 'go', '||period||', "that'll", 'get', 'you', 'home', 'in', 'time', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'the', 'subway', '||questionmark||', 'from', 'queens', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'jerry', '||comma||', "i'm", 'gonna', 'get', 'my', 'coat', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', 'elaine', '||comma||', "i'll", 'make', 'it', 'up', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', 'need', 'something', 'to', 'read', 'on', 'the', 'subway', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'handing', 'her', 'a', 'magazine', '||rightparen||', 'here', '||comma||', 'read', 'this', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looks', 'at', 'it', '||rightparen||', 'tv', 'guide', '||questionmark||', '||return||', '||return||', 'kramer:', 'like', 'a', 'history', 'of', 'coffee', 'tables', '||comma||', 'celebrities', 'and', 'their', 'coffee', 'tables', '||period||', "it's", 'a', 'natural', '||period||', 'this', 'is', 'a', 'story', 'that', 'must', 'be', 'told', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'engrossed', 'in', 'magazine', '||rightparen||', 'hmm', '||dash||', 'mmm', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "you're", 'gonna', 'talk', 'to', 'your', 'boss', 'about', 'it', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'paying', 'no', 'attention', '||rightparen||', 'hmm', '||dash||', 'mmm', '||period||', 'first', 'thing', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'claps', 'hands', '||rightparen||', 'yes', 'indeed', '||period||', '||return||', '||return||', 'tannoy', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'next', 'stop', '||comma||', 'queensboro', 'plaza', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'queensboro', 'plaza', '||period||', '||leftparen||', 'reties', 'his', 'shoelaces', '||rightparen||', 'this', 'stop', 'is', 'famous', 'for', 'its', 'gyros', '||comma||', 'you', 'want', 'one', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'are', 'you', 'gonna', 'get', 'something', 'and', 'get', 'back', 'on', 'the', 'train', 'in', 'time', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'they', 'got', 'a', 'stand', 'right', 'out', 'on', 'the', 'platform', '||period||', 'gyros', 'are', 'cooked', '||comma||', 'and', 'wrapped', '||comma||', 'and', 'ready', 'to', 'go', '||period||', '||leftparen||', 'he', 'pulls', 'money', 'from', 'his', 'pocket', '||rightparen||', 'three', 'dollars', '||comma||', 'no', 'change', '||period||', 'you', 'want', 'one', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', '||rightparen||', 'no', 'thanks', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'but', 'no', 'bites', '||period||', '||return||', '||return||', 'ricky:', 'highlighter', '||questionmark||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'ricky:', 'to', 'highlight', 'the', 'programmes', 'you', 'plan', 'to', 'watch', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', 'uh', '||comma||', 'look', 'really', '||leftparen||', 'looks', 'about', 'to', 'try', 'and', 'avoid', 'contact', '||rightparen||', "i'm", 'just', 'trying', 'to', 'read', '||period||', '||return||', '||return||', 'ricky:', 'fine', '||comma||', 'okay', '||period||', "it's", 'just', '||comma||', "i've", 'never', 'seen', 'a', 'beautiful', 'lady', 'reading', "'the", "guide'", 'so', 'far', 'away', 'from', 'a', 'tv', '||period||', 'you', 'must', 'really', 'like', 'television', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yells', '||rightparen||', 'elaine', '||exclammark||', '||return||', '||return||', 'ricky:', 'guess', 'your', "boyfriend'll", 'have', 'to', 'catch', 'the', 'next', 'train', '||period||', '||return||', '||return||', 'elaine:', "he's", 'not', 'my', 'boyfriend', '||period||', '||return||', '||return||', 'ricky:', "he's", 'not', '||questionmark||', '||leftparen||', 'thoughtful', '||rightparen||', 'interesting', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'maybe', 'i', 'should', 'get', 'elaine', 'something', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'you', 'know', '||comma||', 'i', "didn't", 'drive', 'her', 'home', '||period||', 'plus', '||comma||', 'i', 'give', 'her', 'a', 'gift', 'in', 'front', 'of', 'winona', '||comma||', 'how', 'does', 'that', 'hurt', 'me', '||questionmark||', '||return||', '||return||', 'george:', "can't", 'hurt', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', '||comma||', 'what', 'about', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'indian', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'you', 'know', '||comma||', 'kind', 'of', 'a', 'peace', 'offering', '||period||', 'cute', '||period||', '||return||', '||return||', 'gepetto:', 'well', '||comma||', 'i', 'can', 'have', 'the', 'table', 'ready', 'for', 'you', 'on', 'monday', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'but', 'no', 'later', '||comma||', 'because', 'my', 'parents', 'are', 'coming', 'back', '||period||', '||return||', '||return||', 'gepetto:', 'they', 'left', 'you', 'home', 'alone', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'ricky:', 'oh', '||comma||', "'kay", '||comma||', 'see', '||period||', 'on', 'this', 'particular', 'tuesday', '||leftparen||', 'he', 'swaps', 'seats', 'and', 'sits', 'beside', 'elaine', '||rightparen||', 'you', "could've", 'watched', 'six', 'hours', 'of', 'lucy', '||period||', "there's", 'i', 'love', 'lucy', '||comma||', 'the', 'lucy', 'show', '||comma||', "here's", 'lucy', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', '||leftparen||', 'nervous', 'laugh', '||rightparen||', 'my', 'stop', '||period||', '||leftparen||', 'making', 'her', 'escape', '||rightparen||', 'bye', '||dash||', 'bye', '||period||', '||return||', '||return||', 'ricky:', '||leftparen||', 'after', 'elaine', '||rightparen||', 'hey', 'miss', '||exclammark||', '||leftparen||', 'waving', 'tv', 'guide', '||rightparen||', 'you', 'forgot', 'this', '||exclammark||', '||return||', '||return||', 'gepetto:', 'they', "don't", 'make', 'these', 'any', 'more', '||period||', 'the', 'work', 'is', '||comma||', 'is', 'all', 'done', 'by', 'hand', '||period||', '||leftparen||', 'sylvia', 'enters', 'the', 'store', 'behind', 'him', '||rightparen||', 'takes', 'years', '||comma||', 'and', 'years', '||comma||', 'and', '||period||', '||period||', '||period||', '||leftparen||', 'notices', '||rightparen||', 'sylvia', '||exclammark||', 'for', 'crying', 'out', '||comma||', "you're", 'forty', '||dash||', 'five', 'minutes', 'late', '||exclammark||', '||return||', '||return||', 'sylvia:', 'yeah', '||comma||', 'yeah', '||period||', '||leftparen||', 'to', 'george', '||comma||', 'smiling', '||rightparen||', 'is', 'that', 'your', 'car', 'out', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "it's", '||comma||', "it's", 'his', '||period||', '||leftparen||', 'indicates', 'jerry', '||rightparen||', '||return||', '||return||', 'sylvia:', 'oh', '||comma||', 'nice', '||period||', 'you', 'guys', 'are', 'obviously', 'from', 'manhattan', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'he', 'is', '||period||', 'i', '||comma||', 'uh', '||comma||', 'i', 'live', 'around', 'the', 'corner', '||period||', '||return||', '||return||', 'sylvia:', 'really', '||questionmark||', 'ah', '||comma||', 'i', "didn't", 'think', 'any', 'cool', 'guys', 'lived', 'in', 'this', 'neighborhood', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sensing', 'his', 'chance', '||rightparen||', 'well', '||comma||', 'they', 'do', 'now', '||period||', "neighborhood's", 'changing', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'take', 'it', '||period||', '||return||', '||return||', 'gepetto:', 'smart', 'choice', '||period||', '||return||', '||return||', 'sylvia:', 'wow', '||comma||', 'you', 'bought', 'the', 'indian', '||questionmark||', 'oh', '||comma||', 'you', 'guys', 'have', 'great', 'taste', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "we're", 'collectors', '||period||', 'we', '||comma||', 'uh', '||comma||', 'see', 'objects', 'of', 'great', 'beauty', 'and', '||comma||', 'uh', '||comma||', 'we', 'must', 'have', 'them', '||period||', '||return||', '||return||', 'elaine:', 'knocked', 'you', 'out', 'jack', '||period||', 'pair', 'of', 'deuces', '||return||', '||return||', 'the', 'girls:', '||leftparen||', 'disappointed', '||rightparen||', 'oh/aah', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'triumphant', '||rightparen||', 'ha', '||comma||', 'ha', '||comma||', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'elaine:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', "it's", 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'surprise', '||exclammark||', '||leftparen||', 'he', 'carries', 'in', 'the', 'object', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'felt', 'bad', 'about', 'this', 'afternoon', '||comma||', 'so', 'i', 'got', 'you', 'something', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'did', '||questionmark||', '||leftparen||', 'to', 'girls', '||rightparen||', 'oh', '||comma||', 'do', 'you', 'guys', 'all', 'know', 'jerry', '||questionmark||', '||return||', '||return||', 'the', 'girls:', 'hi', 'jerry/hello', '||period||', '||leftparen||', 'etc', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'hi', 'winona', '||period||', 'nice', 'to', 'see', 'you', 'again', '||period||', '||return||', '||return||', 'girl', '||leftparen||', 'not', 'winona', '||rightparen||', ':', 'elaine', '||comma||', 'is', 'it', 'your', 'birthday', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'need', 'a', 'reason', 'to', 'give', 'gifts', '||comma||', "it's", 'my', 'nature', '||period||', 'i', 'love', 'to', 'make', 'people', 'happy', '||period||', '||return||', '||return||', 'the', 'girls:', "aww/that's", 'so', 'sweet', '||period||', '||leftparen||', 'general', 'murmur', 'of', 'approval', '||rightparen||', '||return||', '||return||', 'jerry:', 'are', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whips', 'off', 'bag', 'to', 'reveal', 'indian', '||rightparen||', 'ta', '||dash||', 'da', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'cigar', 'store', 'indian', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'read', 'the', 'card', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'examines', 'card', '||semicolon||', 'embarrassed', '||rightparen||', "that's", 'very', 'nice', '||period||', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'jerry:', 'read', 'it', 'out', 'loud', '||period||', '||return||', '||return||', 'elaine:', 'i', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'takes', 'the', 'card', 'from', 'elaine', '||rightparen||', 'we', 'had', 'a', 'little', 'fight', 'this', 'afternoon', '||period||', '||leftparen||', 'reading', 'from', 'card', '||rightparen||', "let's", 'bury', 'the', 'hatchet', '||period||', 'we', 'smoke', 'um', 'peace', 'pipe', '||period||', '||return||', '||return||', 'winona:', '||leftparen||', 'gathering', 'her', 'stuff', '||rightparen||', 'hey', '||comma||', 'you', 'know', '||comma||', "it's", 'late', '||period||', 'i', 'really', 'should', 'go', '||period||', '||return||', '||return||', 'elaine:', 'i', '||comma||', 'uh', '||comma||', 'i', "don't", 'blame', 'you', 'winona', '||period||', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||dash||', 'yah', '||comma||', 'ho', '||dash||', 'ah', '||comma||', 'hey', '||dash||', 'yah', '||comma||', 'ho', '||dash||', 'ah', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'ho', '||dash||', 'ah', '||period||', "it's", '||comma||', "it's", '||comma||', "it's", 'kitschy', '||period||', '||return||', '||return||', 'elaine:', 'winona', 'is', 'a', 'native', 'american', '||period||', '||return||', '||return||', 'jerry:', 'she', 'is', '||questionmark||', '||return||', '||return||', 'sylvia:', 'you', 'got', 'very', 'unusual', 'taste', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'proffering', 'glasses', '||rightparen||', 'i', 'hope', 'prune', 'juice', 'is', 'alright', '||period||', "it's", 'the', 'only', 'thing', 'i', 'had', 'that', 'was', 'chilled', '||period||', '||return||', '||return||', 'sylvia:', 'fine', '||period||', '||return||', '||return||', 'george:', "i'm", 'sorry', 'about', 'that', 'lock', 'on', 'the', 'liquor', 'cabinet', '||period||', 'the', 'combination', 'musta', 'just', 'flown', 'outta', 'my', 'head', '||period||', "it's", 'a', 'mental', 'block', '||period||', '||return||', '||return||', 'sylvia:', '||leftparen||', 'regarding', 'photo', '||rightparen||', 'ahh', '||exclammark||', 'is', 'this', 'your', 'son', 'in', 'the', 'bubble', 'bath', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'bashful', '||rightparen||', 'no', '||comma||', "that's", 'me', '||period||', '||return||', '||return||', 'sylvia:', 'oh', '||period||', 'you', "don't", 'see', 'many', 'guys', 'your', 'age', 'who', 'keep', 'baby', 'pictures', 'of', 'themselves', 'around', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'i', 'like', 'it', '||period||', 'consistent', 'with', 'the', 'rest', 'of', 'the', 'house', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'it', 'is', 'consistent', '||period||', "i've", '||comma||', 'uh', '||comma||', "i've", 'tried', 'to', 'maintain', 'a', 'consistent', 'feel', 'throughout', 'the', 'house', '||period||', '||return||', '||return||', 'sylvia:', 'what', 'is', 'this', "we're", 'listening', 'to', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'ray', 'conniff', 'singers', '||period||', '||leftparen||', 'nervous', 'chuckle', '||rightparen||', '||return||', '||return||', 'sylvia:', 'mmmm', '||comma||', "what's", 'that', 'smell', '||questionmark||', 'kasha', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'pot', 'pourri', '||period||', 'may', 'i', '||comma||', 'uh', '||comma||', 'may', 'i', 'show', 'you', 'the', 'master', 'bedroom', '||questionmark||', '||leftparen||', 'they', 'leave', 'together', '||rightparen||', '||return||', '||return||', 'winona', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'winona', '||comma||', "it's", 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'winona:', '||leftparen||', 'unimpressed', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'uhm', '||comma||', 'listen', '||comma||', 'i', 'really', 'felt', 'bad', 'about', 'what', 'happened', '||comma||', 'and', 'i', '||comma||', 'i', '||comma||', "i'd", 'really', 'like', 'to', 'apologise', '||period||', 'can', 'i', 'come', 'up', '||questionmark||', '||return||', '||return||', 'winona:', "i'll", 'come', 'down', '||period||', '||return||', '||return||', 'kramer:', 'i', 'came', 'by', 'to', 'get', 'my', 'ball', '||period||', '||return||', '||return||', 'elaine:', "it's", 'right', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'thanks', '||period||', '||leftparen||', 'gets', 'ball', '||rightparen||', 'yeah', '||comma||', "it's", 'got', 'the', 'magic', 'grip', '||period||', 'how', "d'you", 'think', 'i', 'bowled', 'that', 'two', '||dash||', 'twenty', 'today', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'sees', 'indian', '||rightparen||', 'yo', '||exclammark||', 'where', 'did', 'this', 'come', 'from', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'unbelieving', '||rightparen||', 'i', 'can', 'have', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'yuh', '||exclammark||', 'you', 'wanna', 'lug', 'it', 'uptown', '||comma||', "it's", 'yours', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', "i'll", 'lug', '||period||', '||return||', '||return||', 'winona:', "it's", 'just', 'that', "it's", 'a', 'very', 'sensitive', 'issue', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'and', 'well', 'it', 'should', 'be', '||period||', 'i', 'think', 'if', 'you', 'spent', 'any', 'time', 'with', 'me', 'at', 'all', '||comma||', "you'd", 'see', "i'm", 'very', 'sensitive', 'to', 'these', 'matters', 'as', 'well', '||period||', 'you', "wouldn't", 'be', 'hungry', 'by', 'any', 'chance', '||comma||', 'wouldya', '||questionmark||', '||return||', '||return||', 'winona:', '||leftparen||', 'smiling', '||rightparen||', 'i', 'guess', 'i', 'could', 'go', 'for', 'a', 'bite', '||period||', '||return||', '||return||', 'jerry:', 'you', 'like', 'chinese', 'food', '||comma||', "'cos", 'i', 'once', 'went', 'to', 'a', 'great', 'szechwan', 'restaurant', 'in', 'this', 'neighbourhood', '||period||', 'i', "don't", 'remember', 'the', 'exact', 'address', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'spots', 'a', 'mailman', 'crouched', 'emptying', 'a', 'box', '||rightparen||', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'you', 'must', 'know', 'where', 'the', 'chinese', 'restaurant', 'is', 'around', 'here', '||period||', '||return||', '||return||', 'mailman:', 'why', 'must', 'i', 'know', '||questionmark||', 'because', "i'm", 'chinese', '||questionmark||', 'you', 'think', 'i', 'know', 'where', 'all', 'the', 'chinese', 'restaurants', 'are', '||questionmark||', '||leftparen||', 'adopts', 'hackneyed', 'chinese', 'accent', '||rightparen||', 'oh', '||comma||', 'ask', 'honorable', 'chinaman', 'for', 'location', 'of', 'restaurant', '||period||', '||return||', '||return||', 'jerry:', 'i', 'asked', 'because', 'you', 'were', 'the', 'mailman', '||comma||', 'you', 'would', 'know', 'the', 'neighbourhood', '||period||', '||return||', '||return||', 'mailman:', 'oh', '||comma||', 'hello', 'american', 'joe', '||period||', 'which', 'way', 'to', 'hamburger', '||comma||', 'hotdog', 'stand', '||questionmark||', '||leftparen||', 'storms', 'away', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'winona:', 'you', 'know', '||comma||', "it's", 'late', '||period||', 'i', 'should', 'probably', 'just', 'go', 'home', '||period||', '||return||', '||return||', 'jerry:', 'i', '||comma||', 'i', 'had', 'no', 'idea', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yells', '||rightparen||', 'hey', 'jerry', '||exclammark||', '||leftparen||', 'thumps', 'cab', 'door', 'with', 'his', 'palm', '||rightparen||', 'look', 'what', 'i', 'got', '||exclammark||', '||leftparen||', 'begins', 'doing', 'war', '||dash||', 'whoops', '||rightparen||', '||return||', '||return||', 'george:', 'looks', 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'did', 'a', 'good', 'job', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', "don't", 'think', "they'll", 'be', 'able', 'to', 'tell', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', "don't", 'get', 'it', '||period||', 'not', 'allowed', 'to', 'ask', 'a', 'chinese', 'person', 'where', 'the', 'chinese', 'restaurant', 'is', '||exclammark||', 'i', 'mean', '||comma||', "aren't", 'we', 'all', 'getting', 'a', 'little', 'too', 'sensitive', '||questionmark||', 'i', 'mean', '||comma||', 'someone', 'asks', 'me', 'which', 'way', 'is', 'israel', '||comma||', 'i', "don't", 'fly', 'off', 'the', 'handle', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'anyway', '||comma||', "what's", 'uh', '||comma||', "what's", 'the', 'status', 'with', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'she', 'kinda', 'calmed', 'down', '||period||', 'i', 'talked', 'to', 'her', 'today', '||period||', 'in', 'fact', "i'm", 'gonna', 'see', 'her', 'tonight', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'great', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', "i'm", 'a', 'little', 'uncomfortable', '||period||', "i'm", 'afraid', 'of', 'making', 'another', 'mistake', '||period||', '||return||', '||return||', 'george:', 'aw', "c'mon", '||period||', '||return||', '||return||', 'estelle:', 'hello', '||comma||', 'hello', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'insincerely', '||rightparen||', 'ahh', '||comma||', 'hey', "you're", 'home', '||period||', 'hi', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'the', 'house', 'looks', 'very', 'nice', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'huh', '||period||', '||return||', '||return||', 'frank:', "where's", 'the', 'mail', '||questionmark||', '||return||', '||return||', 'estelle:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'how', 'was', 'the', 'trip', '||questionmark||', '||return||', '||return||', 'estelle:', 'ah', '||comma||', 'your', 'father', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'is', 'there', 'anything', 'wrong', 'with', 'getting', 'a', 'receipt', 'at', 'a', 'toll', 'booth', '||questionmark||', '||return||', '||return||', 'estelle:', "i'm", 'going', 'upstairs', '||period||', '||leftparen||', 'she', 'leaves', 'for', 'the', 'bedroom', '||rightparen||', '||return||', '||return||', 'frank:', '||leftparen||', 'examining', 'mail', '||rightparen||', 'this', 'stack', 'should', 'be', 'bigger', '||comma||', "where's", 'the', 'tv', 'guide', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'tv', 'guide', '||questionmark||', '||return||', '||return||', 'frank:', "i'm", 'missing', 'tv', 'guide', 'volume', 'forty', '||dash||', 'one', '||comma||', 'number', 'thirty', '||dash||', 'one', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'elaine', 'took', 'it', 'to', 'read', 'on', 'the', 'subway', '||period||', '||return||', '||return||', 'frank:', 'elaine', 'took', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', "didn't", 'know', 'she', 'took', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'wa', '||comma||', "it's", 'two', 'weeks', 'old', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'shouting', '||rightparen||', 'how', 'could', 'you', 'let', 'her', 'take', 'the', 'tv', 'guide', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'he', 'collects', 'them', '||period||', '||return||', '||return||', 'jerry:', 'you', 'collect', 'tv', 'guide', '||questionmark||', '||return||', '||return||', 'frank:', 'the', 'nerve', 'of', 'that', 'woman', '||period||', 'walking', 'into', 'my', 'house', '||comma||', 'stealing', 'my', 'collectible', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'screaming', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', '||leftparen||', 'she', 'enters', 'holding', 'a', 'small', 'packet', '||rightparen||', 'this', 'was', 'in', 'our', 'bed', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'taking', 'the', 'packet', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||leftparen||', 'accusingly', 'to', 'george', '||rightparen||', 'a', 'prophylactic', 'wrapper', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', 'what', 'is', 'this', 'doing', 'on', 'my', 'bed', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'see', 'you', 'later', '||period||', '||leftparen||', 'he', 'leaves', 'with', 'unseemly', 'haste', '||rightparen||', '||return||', '||return||', 'frank:', 'you', 'were', 'having', 'sex', 'on', 'our', 'bed', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'estelle:', 'who', 'told', 'you', '||comma||', 'you', 'could', 'have', 'sex', 'in', 'our', 'bed', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pleading', '||rightparen||', 'well', '||comma||', 'my', 'bed', 'is', 'too', 'small', '||period||', '||return||', '||return||', 'frank:', 'your', 'bed', 'is', 'too', 'small', '||questionmark||', "i'm", 'gone', 'two', 'weeks', 'and', 'you', 'turn', 'our', 'house', 'into', '||comma||', 'into', 'bourbon', 'street', '||exclammark||', '||return||', '||return||', 'estelle:', 'where', 'am', 'i', 'going', 'to', 'sleep', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', "can't", 'sleep', 'in', 'there', '||exclammark||', '||return||', '||return||', 'george:', 'of', 'course', 'you', 'can', '||period||', '||return||', '||return||', 'estelle:', 'i', "can't", '||exclammark||', '||leftparen||', 'screams', '||rightparen||', 'i', "can't", '||exclammark||', '||return||', '||return||', 'frank:', "that's", 'it', '||exclammark||', "you're", 'grounded', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'incredulous', '||rightparen||', 'you', "can't", 'ground', 'me', '||comma||', "i'm", 'a', 'grown', 'man', '||period||', '||return||', '||return||', 'frank:', 'you', 'wanna', 'live', 'here', '||questionmark||', 'you', 'respect', 'the', 'rules', 'of', 'our', 'house', '||period||', '||leftparen||', 'yells', '||rightparen||', "you're", 'grounded', '||exclammark||', '||return||', '||return||', 'winona:', 'so', '||comma||', 'where', 'are', 'we', 'gonna', 'go', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', "we'd", 'eat', 'at', 'the', 'gentle', 'harvest', '||period||', '||return||', '||return||', 'winona:', 'ooh', '||comma||', 'i', 'love', 'that', 'place', '||comma||', 'but', "it's", 'usually', 'so', 'crowded', '||period||', 'can', 'we', 'get', 'a', 'table', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "don't", 'worry', '||period||', 'i', 'made', 'reser', '||period||', '||period||', '||period||', '||leftparen||', 'catches', 'himself', '||rightparen||', '||return||', '||return||', 'winona:', 'you', 'made', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'uh', '||comma||', 'i', 'uh', '||comma||', 'i', 'arranged', 'for', 'the', 'appropriate', 'accommodations', '||period||', 'and', 'then', '||comma||', 'knick', 'tickets', '||comma||', 'floor', 'seats', '||period||', '||return||', '||return||', 'winona:', 'how', 'did', 'you', 'get', 'these', '||questionmark||', '||return||', '||return||', 'jerry:', 'got', "'em", 'on', 'the', 'street', '||comma||', 'from', 'a', 'scal', '||period||', '||period||', '||period||', '||leftparen||', 'catches', 'himself', 'again', '||rightparen||', '||return||', '||return||', 'winona:', 'from', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'uh', '||comma||', 'one', 'of', 'those', 'guys', '||period||', '||return||', '||return||', 'winona:', 'what', 'guys', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'guys', '||comma||', 'that', 'uh', '||comma||', 'they', 'sell', 'the', 'tickets', 'for', 'the', 'sold', '||dash||', 'out', 'events', '||period||', '||return||', '||return||', 'winona:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'you', 'got', 'the', 'mark', 'mcewan', 'tv', 'guide', '||period||', '||return||', '||return||', 'winona:', "that's", 'al', 'roker', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'well', '||comma||', "they're", 'both', 'chubby', 'weathermen', '||period||', 'i', 'get', 'dom', 'deluise', 'and', 'paul', 'prudhoe', 'mixed', 'up', 'too', '||period||', 'could', 'i', 'have', 'this', '||questionmark||', '||return||', '||return||', 'winona:', 'sure', '||comma||', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'winona', 'had', 'the', 'tv', 'guide', '||period||', 'told', 'you', "i'd", 'make', 'it', 'up', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'aah', '||comma||', 'so', 'mr', 'costanza', 'was', 'pretty', 'mad', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'you', 'almost', 'ruined', 'his', "life's", 'work', '||period||', '||return||', '||return||', 'elaine:', 'he', 'collects', '||leftparen||', 'holds', 'up', 'magazine', '||rightparen||', 'these', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', 'alright', '||comma||', 'well', 'i', 'will', 'personally', 'go', 'out', 'to', 'queens', 'and', 'deliver', 'his', 'al', 'roker', 'tv', 'guide', 'to', 'him', '||period||', '||return||', '||return||', 'jerry:', "what'ya", 'do', 'with', 'the', 'one', 'you', 'took', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dunno', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'uh', '||comma||', 'elaine', 'uh', '||comma||', "what'd", 'he', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'did', 'who', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'your', 'boss', '||period||', "didn't", 'you', 'tell', 'him', 'about', 'the', 'coffee', 'table', 'book', '||questionmark||', '||return||', '||return||', 'elaine:', 'uhmm', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', "didn't", 'tell', 'him', 'didya', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'it', 'is', 'such', 'a', 'dumb', 'idea', '||period||', 'i', 'would', 'be', '||leftparen||', 'raising', 'her', 'voice', 'as', 'kramer', 'speaks', 'his', 'line', '||rightparen||', 'totally', 'embarrassed', 'to', 'bring', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'simultaneous', '||rightparen||', 'wait', 'a', 'minute', '||comma||', 'on', 'the', 'cover', "i'm", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'would', 'be', 'embarrassed', 'to', 'bring', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'it', 'was', 'a', 'pretty', 'good', 'idea', '||period||', "it's", 'about', 'coffee', 'tables', '||comma||', "it's", 'on', 'a', 'coffee', 'table', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'right', '||comma||', 'right', '||comma||', 'and', 'on', 'the', 'cover', 'is', 'a', 'built', '||dash||', 'in', 'coaster', '||period||', '||leftparen||', 'clicks', 'tongue', '||rightparen||', 'alright', '||comma||', 'well', "i'm", 'gonna', 'go', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'gonna', 'go', 'to', 'the', 'cigar', 'stores', '||period||', "i'm", 'gonna', 'see', 'if', 'i', 'can', 'sell', 'that', 'indian', '||period||', '||return||', '||return||', 'jerry:', 'my', 'indian', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'think', "it's", 'worth', 'something', '||period||', "it's", 'kitschy', '||period||', '||leftparen||', 'tongue', 'click', '||rightparen||', '||return||', '||return||', 'frank:', 'how', 'do', 'you', 'just', 'walk', 'into', 'a', 'house', 'and', 'take', 'a', 'tv', 'guide', '||questionmark||', 'how', 'does', 'she', 'expect', 'you', 'to', 'watch', 'tv', '||questionmark||', '||leftparen||', 'doorbell', 'rings', '||rightparen||', 'am', 'i', 'just', 'supposed', 'to', 'turn', 'it', 'on', 'and', 'wander', 'aimlessly', 'around', 'the', 'dial', '||questionmark||', '||return||', '||return||', 'ricky:', 'hello', '||period||', 'is', 'elaine', 'home', '||questionmark||', '||return||', '||return||', 'estelle:', 'elaine', 'benes', '||questionmark||', 'oh', '||comma||', "she's", 'my', "son's", 'friend', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'shouting', '||rightparen||', 'and', "she's", 'not', 'welcome', 'in', 'this', 'house', '||exclammark||', '||return||', '||return||', 'ricky:', '||leftparen||', 'entering', '||rightparen||', 'oh', '||comma||', "'cos", 'i', 'made', 'her', 'this', 'very', 'special', 'gift', '||period||', "'kay", '||comma||', "it's", 'a', 'bouquet', 'of', 'paper', 'from', 'her', 'tv', 'guide', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'yelling', '||rightparen||', "that's", 'my', 'tv', 'guide', '||exclammark||', 'ripped', 'to', 'shreds', '||exclammark||', 'she', 'gave', 'that', 'to', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ricky:', '||leftparen||', 'seeing', 'tv', '||rightparen||', 'hey', '||comma||', 'is', 'that', 'the', 'twilight', 'zone', "you're", 'watching', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'ricky:', 'oh', '||comma||', 'this', 'is', 'a', 'good', 'one', '||period||', '||return||', '||return||', 'tannoy', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'next', 'stop', '||comma||', 'queensboro', 'plaza', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'mmm', '||comma||', 'gyro', '||period||', '||return||', '||return||', 'winona:', 'i', 'like', 'your', 'place', '||period||', "it's", 'very', 'unassuming', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'why', 'would', 'i', 'assume', '||period||', 'i', 'never', 'assume', '||period||', 'leads', 'to', 'assumptions', '||period||', '||return||', '||return||', 'winona:', '||leftparen||', 'laughs', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||period||', 'that', 'tv', 'guide', 'i', 'gave', 'you', '||comma||', 'i', 'need', 'it', 'back', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'winona:', 'well', '||comma||', "i'm", 'doing', 'a', 'report', 'on', 'minorities', 'in', 'the', 'media', '||comma||', 'and', 'i', 'wanted', 'to', 'use', 'that', 'interview', 'with', 'al', 'roker', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'too', 'late', '||period||', 'i', 'gave', 'it', 'to', 'elaine', '||comma||', 'and', "she's", 'already', 'on', 'her', 'way', 'to', 'give', 'it', 'to', "george's", 'father', '||period||', '||return||', '||return||', 'winona:', 'jerry', '||comma||', 'i', 'really', 'need', 'it', 'back', '||period||', 'it', '||comma||', 'it', 'is', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'give', 'something', 'and', 'then', 'take', 'it', 'back', '||period||', 'i', 'mean', '||comma||', 'what', 'are', 'you', '||period||', '||period||', '||period||', '||leftparen||', 'catches', 'himself', '||rightparen||', '||return||', '||return||', 'winona:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'uh', '||comma||', 'a', 'person', 'that', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'winona:', 'a', 'person', 'that', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'a', 'person', 'that', 'gives', 'something', 'and', 'then', "they're", 'dissatisfied', 'and', 'they', 'wish', 'they', 'had', '||comma||', 'had', 'never', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'winona:', 'and', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'give', '||comma||', 'given', 'it', 'to', 'the', 'person', 'that', 'they', 'originally', 'gave', 'it', 'to', '||period||', '||return||', '||return||', 'winona:', 'you', 'mean', 'like', '||comma||', 'an', 'indian', 'giver', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', "i'm", 'not', 'familiar', 'with', 'that', 'term', '||period||', '||return||', '||return||', 'ricky:', 'i', 'like', 'the', 'special', 'fall', 'preview', 'issues', 'the', 'best', '||period||', '||return||', '||return||', 'frank:', 'those', '||period||', "i've", 'been', 'saving', 'those', 'from', 'the', 'beginning', '||period||', '||return||', '||return||', 'ricky:', 'these', 'are', 'worth', 'like', '||comma||', 'a', 'lot', 'of', 'money', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'hello', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||leftparen||', 'she', 'enters', '||rightparen||', '||return||', '||return||', 'ricky:', '||leftparen||', 'jumping', 'to', 'his', 'feet', '||rightparen||', 'elaine', '||exclammark||', 'hello', '||exclammark||', 'you', 'look', 'scrumptious', '||period||', '||return||', '||return||', 'frank:', "why'd", 'you', 'take', 'my', 'tv', 'guide', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'placatory', '||rightparen||', "i'm", 'so', 'sorry', 'about', 'that', 'mr', 'costanza', '||comma||', 'but', 'look', '||period||', 'look', '||comma||', 'i', 'brought', 'you', 'another', 'one', '||period||', '||leftparen||', 'hands', 'it', 'over', '||rightparen||', '||return||', '||return||', 'ricky:', 'i', 'made', 'this', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'accepts', 'reluctantly', '||rightparen||', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'examining', 'magazine', '||rightparen||', 'what', 'is', 'this', '||questionmark||', 'you', 'got', 'stains', 'all', 'over', 'it', '||exclammark||', 'what', 'the', "hell'd", 'you', 'do', '||questionmark||', '||return||', '||return||', 'ricky:', 'hey', '||comma||', 'you', "can't", 'talk', 'to', 'her', 'like', 'that', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'yelling', '||rightparen||', "i'll", 'talk', 'to', 'her', 'any', 'way', 'i', 'want', '||exclammark||', '||return||', '||return||', 'ricky:', 'come', 'on', 'elaine', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'estelle:', 'my', 'coffee', 'table', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'understand', '||period||', 'how', 'can', 'you', 'have', 'a', 'cigar', 'store', '||comma||', 'without', 'an', 'indian', '||questionmark||', "it's", 'unseemly', '||period||', '||return||', '||return||', 'spike:', "i'll", 'give', 'you', 'a', 'box', 'of', 'coronas', 'for', 'it', '||period||', '||return||', '||return||', 'kramer:', 'forget', 'it', '||period||', '||return||', '||return||', 'lippman:', 'uh', '||comma||', 'excuse', 'me', '||period||', 'are', 'you', 'uh', '||comma||', 'selling', 'this', 'indian', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'lippman:', 'uh', '||comma||', "i'm", 'just', 'uh', '||comma||', 'redecorating', 'my', 'office', 'in', 'a', 'south', '||dash||', 'western', 'motif', 'and', "this'd", 'be', 'perfect', '||period||', 'give', 'you', 'five', 'hundred', 'dollars', 'for', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'giddyup', '||period||', '||return||', '||return||', 'lippman:', 'yeah', '||questionmark||', 'could', 'you', 'help', 'me', 'bring', 'it', 'up', 'to', 'my', 'office', '||comma||', "i'm", 'right', 'next', 'door', '||period||', 'pendant', 'publishing', '||period||', '||return||', '||return||', 'kramer:', 'pendant', 'publishing', '||questionmark||', 'giddyup', 'again', '||period||', '||return||', '||return||', 'elaine:', 'mr', 'lippman', '||period||', "i'm", 'sorry', '||comma||', 'i', 'was', 'in', 'queens', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'sees', 'kramer', '||rightparen||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', 'in', 'here', 'with', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'well', '||comma||', "it's", 'a', 'business', 'transaction', '||period||', '||return||', '||return||', 'lippman:', '||leftparen||', 'entering', '||comma||', 'smoking', 'a', 'cigar', 'and', 'with', 'a', 'handful', 'of', 'cash', '||rightparen||', 'listen', 'uh', '||comma||', 'petty', 'cash', 'just', 'had', 'tens', 'and', 'twenties', '||period||', '||leftparen||', 'hands', 'cash', 'to', 'kramer', '||rightparen||', 'go', 'ahead', '||comma||', 'count', 'it', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'sure', "it's", 'all', 'here', '||period||', '||leftparen||', 'puts', 'in', 'in', 'his', 'pocket', '||rightparen||', 'you', 'know', 'i', 'was', 'just', 'admiring', 'your', 'coffee', 'table', '||comma||', 'out', 'there', 'in', 'the', 'hall', '||period||', '||return||', '||return||', 'lippman:', 'you', 'like', 'that', '||comma||', 'huh', '||questionmark||', 'i', 'had', 'that', 'custom', 'made', 'for', 'me', 'in', 'santa', 'fe', '||period||', '||return||', '||return||', 'kramer:', 'you', 'mind', 'if', 'i', 'use', 'it', 'in', 'my', 'book', '||questionmark||', '||return||', '||return||', 'lippman:', 'what', 'book', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'doing', 'a', 'coffee', 'table', 'book', 'on', 'coffee', 'tables', '||period||', '||return||', '||return||', 'lippman:', 'about', 'coffee', 'tables', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||period||', '||return||', '||return||', 'lippman:', "that's", 'fantastic', '||period||', '||leftparen||', 'elaine', 'looks', 'gobsmacked', '||rightparen||', "who's", 'your', 'publisher', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'still', 'shopping', 'it', 'around', '||period||', '||return||', '||return||', 'lippman:', 'yeah', '||questionmark||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'see', '||comma||', 'this', 'is', 'the', 'kind', 'of', 'idea', 'you', 'should', 'be', 'coming', 'in', 'with', '||period||', 'what', 'the', 'hell', 'do', 'you', 'do', 'round', 'here', 'all', 'day', 'anyway', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'i', '||leftparen||', 'indistinct', '||rightparen||', '||period||', '||period||', '||period||', 'manuscript', 'that', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'lippman:', '||leftparen||', 'ignoring', 'elaine', '||rightparen||', 'god', '||comma||', 'that', 'indian', 'really', 'completes', 'the', 'room', '||period||', "don't", 'you', 'think', '||questionmark||', '||return||', '||return||', 'sylvia:', 'i', 'know', 'this', 'coffee', 'table', '||comma||', "it's", 'george', "costanza's", '||period||', '||return||', '||return||', 'estelle:', "it's", 'mine', '||period||', "i'm", 'his', 'mother', '||period||', '||return||', '||return||', 'sylvia:', 'oh', '||comma||', 'i', "haven't", 'seen', 'george', 'for', 'a', 'while', '||period||', 'he', 'must', 'be', 'working', 'very', 'hard', '||period||', '||return||', '||return||', 'estelle:', 'george', "doesn't", 'work', '||period||', "he's", 'a', 'bum', '||period||', "that's", 'why', 'he', 'lives', 'at', 'home', 'with', 'us', '||period||', '||return||', '||return||', 'sylvia:', 'he', 'does', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'why', 'we', "didn't", 'think', 'of', 'this', 'before', '||period||', 'we', 'just', 'could', 'call', 'tv', 'guide', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dunno', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'gonna', 'make', 'mr', 'costanza', 'very', 'happy', '||period||', '||leftparen||', 'he', 'hands', 'the', 'magazine', 'to', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'guess', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', "d'you", 'think', 'is', 'the', 'matter', '||questionmark||', "i've", 'been', 'assigned', 'to', 'work', 'on', "kramer's", 'coffee', 'table', 'book', '||period||', '||return||', '||return||', 'jerry:', 'it', 'is', 'a', 'good', 'idea', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'tannoy', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'next', 'stop', '||comma||', 'queensboro', 'plaza', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'a', 'gyro', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', '[subway', 'train:', 'moments', 'later]', '||return||', '||return||', 'jerry:', 'elaine', '||exclammark||', '||return||', '||return||', 'al', 'roker:', 'guess', 'your', "boyfriend's", 'gonna', 'have', 'to', 'catch', 'the', 'next', 'train', '||period||', '||return||', '||return||', 'elaine:', "he's", 'not', 'my', 'boyfriend', '||period||', '||return||', '||return||', 'al', 'roker:', "he's", 'not', '||questionmark||', 'interesting', '||period||', '||leftparen||', 'gives', 'a', 'big', 'grin', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'was', 'always', 'excited', 'as', 'a', 'kid', '||comma||', 'when', 'that', 'new', 'tv', 'guide', 'would', 'come', '||period||', 'somehow', 'when', 'that', 'front', "cover's", 'nice', 'and', 'flat', '||comma||', 'seems', 'like', "there's", 'good', 'fresh', 'tv', 'shows', 'in', '||period||', 'then', '||comma||', 'as', 'the', 'weeks', 'go', 'by', 'you', 'start', 'to', 'hate', 'the', 'tv', 'guide', '||period||', 'all', 'the', 'shows', 'stink', '||period||', "everything's", 'getting', 'all', 'crumpled', 'and', 'ripped', 'from', 'being', 'sat', 'on', '||comma||', 'thrown', 'across', 'the', 'room', '||period||', 'tv', 'guide', 'is', 'always', 'thrown', '||comma||', 'never', 'handed', '||comma||', 'to', 'another', 'person', '||period||', "it's", 'the', "world's", 'most', 'thrown', 'reading', 'material', '||period||', "'where's", 'tv', 'guide', '||questionmark||', "'", '||leftparen||', 'mimes', 'throwing', '||rightparen||', "'there", 'it', 'is', '||period||', "'", 'you', 'know', 'in', 'the', 'back', 'of', 'the', 'tv', 'guide', '||comma||', 'they', 'have', 'a', 'phone', 'number', '||comma||', 'ninety', '||dash||', 'five', 'cents', 'a', 'minute', '||comma||', 'they', 'will', 'give', 'you', 'the', 'answers', 'to', 'the', 'tv', 'guide', 'crossword', 'puzzle', '||questionmark||', 'my', 'question', 'is', '||comma||', 'if', 'you', "can't", 'do', 'the', 'tv', 'guide', 'crossword', 'puzzle', '||comma||', 'where', 'are', 'you', 'coming', 'across', 'ninety', '||dash||', 'five', 'cents', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'doctor', 'is', 'supposed', 'to', 'be', 'such', 'a', 'prestigious', 'occupation', '||period||', 'but', 'its', 'really', 'like', 'one', 'of', 'the', 'only', 'jobs', 'where', 'you', 'have', 'to', 'have', 'your', 'diploma', 'right', 'up', 'there', 'on', 'the', 'wall', '||period||', 'it', 'makes', 'them', 'seem', 'so', 'insecure', '||comma||', 'doesnt', 'it', '||questionmark||', '||quotemark||', 'i', 'really', 'am', 'a', 'doctor', 'you', 'know', '||period||', 'you', 'think', 'im', 'not', '||comma||', 'just', 'check', 'it', 'out', '||period||', '||quotemark||', 'i', 'dont', 'know', 'why', 'they', 'need', 'these', 'little', 'bits', 'of', 'psychological', 'leverage', 'over', 'us', 'all', 'the', 'time', '||period||', '||quotemark||', 'go', 'in', 'that', 'little', 'room', '||comma||', 'take', 'your', 'pants', 'off', '||comma||', 'wait', '15', 'minutes', '||comma||', 'and', 'ill', 'give', 'you', 'my', 'opinion', '||period||', '||quotemark||', 'after', 'that', '||comma||', 'anyone', 'that', 'comes', 'in', 'with', 'pants', 'on', 'seems', 'like', 'they', 'know', 'what', 'theyre', 'talking', 'about', '||period||', 'in', 'any', 'difference', 'of', 'opinion', '||comma||', 'pants', 'always', 'beats', 'no', '||dash||', 'pants', '||period||', '||return||', '||return||', 'george:', 'can', 'i', 'say', 'one', 'word', 'to', 'you', '||questionmark||', 'lobster', '||period||', 'the', 'lobster', 'here', 'is', 'unbelievable', '||period||', '||leftparen||', 'looks', 'at', 'the', 'menu', '||rightparen||', 'ooh', '||comma||', 'a', 'little', 'expensive', '||period||', '||return||', '||return||', 'sasha:', 'twenty', 'five', 'dollars', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'well', '||comma||', 'you', 'know', '||comma||', 'im', 'not', 'thinking', 'about', 'the', 'price', '||period||', 'you', 'know', 'youre', 'the', 'only', 'woman', 'ive', 'never', 'thought', 'about', 'the', 'price', '||period||', 'get', 'the', 'lobster', '||period||', 'i', 'beg', 'you', 'to', 'get', 'the', 'lobster', '||period||', 'go', 'for', 'the', 'lobster', '||period||', '||return||', '||return||', 'sasha:', 'george', '||comma||', 'george', '||comma||', 'uh', '||comma||', 'i', 'think', 'we', 'have', 'to', 'talk', '||period||', 'i', 'think', 'we', 'have', 'a', 'problem', '||period||', '||return||', '||return||', 'george:', 'we', 'do', '||questionmark||', '||return||', '||return||', 'sasha:', 'we', 'cant', 'keep', 'seeing', 'each', 'other', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'sasha:', '||leftparen||', 'crying', '||rightparen||', 'because', 'its', 'over', '||period||', '||leftparen||', 'sob', '||comma||', 'sob', '||comma||', 'sob', '||rightparen||', 'its', 'my', 'parents', 'george', '||comma||', 'the', 'differences', 'in', 'our', 'religion', '||period||', 'oh', 'george', '||comma||', 'can', 'you', 'ever', 'forgive', 'me', '||questionmark||', '||leftparen||', 'sob', '||rightparen||', '||return||', '||return||', 'waiter:', 'uh', '||comma||', 'have', 'you', 'decided', 'yet', '||questionmark||', '||return||', '||return||', 'sasha:', '||leftparen||', 'crying', '||rightparen||', 'yes', '||period||', 'ill', 'have', 'the', 'lobster', '||period||', '||return||', '||return||', 'george:', 'um', '||comma||', 'you', 'know', 'im', 'starting', 'to', 'think', 'that', 'maybe', 'lobster', 'isnt', 'the', 'way', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'then', 'he', 'asked', 'you', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'started', 'to', 'talk', '||comma||', 'and', 'i', 'told', 'him', 'that', 'i', 'jog', '||comma||', 'and', 'then', 'he', 'put', 'his', 'hand', 'on', 'my', 'heart', '||period||', '||return||', '||return||', 'jerry:', 'on', 'your', 'heart', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'the', 'man', 'is', 'a', 'doctor', '||period||', '||return||', '||return||', 'jerry:', 'doctor', '||questionmark||', 'hes', 'a', 'podiatrist', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'its', 'the', 'same', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'anyone', 'can', 'get', 'into', 'podiatry', 'school', '||period||', 'george', 'got', 'into', 'podiatry', 'school', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'tawni:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', '||period||', '||return||', '||return||', 'tawni:', 'are', 'you', 'going', 'to', 'be', 'stopping', 'by', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'ill', 'be', 'stopping', '||period||', '||return||', '||return||', 'tawni:', 'ok', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'see', 'you', 'later', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'well', 'we', 'cant', 'all', 'be', 'dating', 'podiatrists', '||period||', '||leftparen||', 'elaine', 'laughs', '||rightparen||', '||return||', '||return||', 'george:', 'its', 'over', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'get', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'whats', 'that', '||questionmark||', '||leftparen||', 'points', 'at', 'some', 'foil', 'on', 'the', 'table', '||rightparen||', '||return||', '||return||', 'george:', 'lobster', '||period||', '||return||', '||return||', 'jerry:', 'looks', 'like', 'a', 'swan', '||period||', '||return||', '||return||', 'george:', 'she', 'says', 'we', 'cant', 'go', 'out', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'im', 'not', 'latvian', 'orthodox', '||period||', 'her', 'parents', 'wont', 'let', 'her', 'get', 'involved', 'with', 'anyone', 'who', 'isnt', 'latvian', 'orthodox', '||period||', '||return||', '||return||', 'elaine:', 'latvian', 'orthodox', '||questionmark||', '||leftparen||', 'gasps', '||rightparen||', 'mmm', '||comma||', 'it', 'is', 'lobster', '||period||', '||return||', '||return||', 'jerry:', 'shes', 'limiting', 'herself', 'to', 'latvian', 'orthodox', '||questionmark||', 'too', 'bad', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'this', 'was', 'the', 'only', 'woman', 'i', 'never', 'lied', 'to', '||period||', 'well', 'thats', 'not', 'entirely', 'true', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'whatever', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||comma||', 'this', 'is', 'delicious', '||period||', '||return||', '||return||', 'jerry:', 'mmm', '||comma||', 'succulent', '||period||', '||return||', '||return||', 'george:', 'she', 'knew', 'i', 'didnt', 'have', 'a', 'job', '||comma||', 'she', 'knew', 'i', 'lived', 'at', 'home', '||period||', 'didnt', 'seem', 'to', 'bother', 'her', '||period||', 'i', 'think', 'i', 'could', 'have', 'married', 'this', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'why', 'dont', 'you', 'just', 'ask', 'her', 'parents', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'cant', '||period||', 'i', 'met', 'them', '||period||', 'theyre', 'devout', '||period||', 'you', 'know', '||comma||', 'in', 'the', 'cab', 'on', 'the', 'way', 'over', 'here', '||comma||', 'i', 'actually', 'thought', 'about', 'converting', '||period||', '||return||', '||return||', 'jerry:', 'to', 'latvian', 'orthodox', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', 'what', 'do', 'i', 'care', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'its', 'not', 'like', 'changing', 'toothpaste', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', 'it', 'would', 'be', 'romantic', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'its', 'like', 'edward', 'the', 'eighth', 'abdicating', 'the', 'throne', 'and', 'marrying', 'mrs', '||period||', 'simpson', '||period||', 'ooh', '||period||', '||return||', '||return||', 'george:', 'king', 'edward', '||period||', '||leftparen||', 'snapping', 'his', 'fingers', '||rightparen||', 'king', 'edward', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'well', 'king', 'edward', 'didnt', 'live', 'in', 'queens', 'with', 'frank', 'and', 'estelle', 'costanza', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', 'i', 'could', 'probably', 'do', 'this', '||period||', 'whats', 'the', 'difference', '||period||', '||return||', '||return||', 'elaine:', 'george', 'i', 'was', 'just', 'kidding', 'around', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', 'wouldnt', 'even', 'have', 'to', 'tell', 'her', '||period||', 'i', 'could', 'surprise', 'her', '||period||', '||return||', '||return||', 'elaine:', 'george', 'i', 'wasnt', 'serious', '||period||', '||return||', '||return||', 'george:', 'how', 'hard', 'could', 'it', 'be', '||questionmark||', 'you', 'make', 'a', 'little', 'contribution', '||comma||', 'you', 'have', 'a', 'ceremony', '||period||', 'i', 'am', 'going', 'to', 'think', 'about', 'this', '||period||', 'i', 'am', 'really', 'going', 'to', 'think', 'about', 'this', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', 'this', 'one', 'is', 'my', 'fault', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'tawni:', '||leftparen||', 'kiss', '||comma||', 'kiss', '||comma||', 'kiss', '||rightparen||', 'oh', 'that', 'was', 'nice', '||period||', 'have', 'you', 'always', 'been', 'such', 'a', 'good', 'kisser', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'i', 'dont', 'know', '||period||', 'not', 'always', '||period||', 'no', 'i', 'uh', 'i', 'had', 'to', 'work', 'at', 'it', '||period||', 'when', 'i', 'was', 'a', 'kid', 'all', 'the', 'kids', 'would', 'be', 'out', 'playing', '||comma||', 'i', 'would', 'be', 'up', 'in', 'my', 'room', 'practicing', 'my', 'kissing', '||period||', '||return||', '||return||', 'tawni:', 'well', 'it', 'was', 'worth', 'it', '||period||', '||leftparen||', 'kiss', '||rightparen||', 'ill', 'be', '||leftparen||', 'kiss', '||rightparen||', 'right', '||leftparen||', 'kiss', '||rightparen||', 'back', '||leftparen||', 'kiss', '||rightparen||', '||period||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'to', 'wash', 'my', 'hands', '||period||', 'theyre', 'sticky', 'from', 'the', 'orange', '||period||', '||return||', '||return||', 'tawni:', 'meet', 'you', 'back', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', 'there', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', 'to', 'himself', '||semicolon||', 'picks', 'up', 'a', 'tube', '||rightparen||', '||quotemark||', 'fungicide', '||quotemark||', '||period||', 'fungus', '||questionmark||', '||return||', '||return||', 'jerry:', 'fungicide', '||period||', 'i', 'mean', 'what', 'could', 'she', 'have', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'kramer:', 'fungus', '||period||', '||return||', '||return||', 'jerry:', 'exactly', '||return||', '||return||', 'elaine:', 'so', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', 'i', 'was', 'coming', 'down', 'with', 'the', 'flu', 'or', 'something', 'and', 'i', 'had', 'to', 'go', 'home', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'what', 'were', 'you', 'doing', 'opening', 'her', 'medicine', 'cabinet', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'open', 'it', '||period||', 'it', 'was', 'open', '||period||', 'i', 'just', 'nudged', 'it', 'a', 'little', '||period||', '||return||', '||return||', 'elaine:', 'you', 'were', 'snooping', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'not', 'snooping', '||period||', 'i', 'did', 'not', 'break', 'the', 'seal', '||period||', 'there', 'was', 'no', 'breaking', 'and', 'entering', '||period||', 'i', 'wouldnt', 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', 'i', 'would', '||period||', 'i', 'always', 'open', 'medicine', 'cabinets', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', 'trust', 'people', 'not', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', 'big', 'mistake', '||period||', '||return||', '||return||', 'jerry:', 'why', 'dont', 'you', 'ask', 'that', 'doctor', 'what', 'it', 'is', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'now', 'hes', 'a', 'doctor', '||questionmark||', 'before', 'he', 'was', 'a', 'podiatrist', '||period||', '||return||', '||return||', 'jerry:', 'but', 'thats', 'what', 'podiatrists', 'do', '||period||', 'they', 'deal', 'in', 'fungus', '||period||', 'theyre', 'knee', '||dash||', 'deep', 'in', 'fungus', '||period||', 'this', 'guy', 'knows', 'fungus', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'going', 'to', 'ask', 'him', 'about', 'funguses', '||period||', '||return||', '||return||', 'kramer:', 'fungi', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'fungi', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'why', 'do', 'you', 'want', 'to', 'accept', 'the', 'latvian', 'orthodox', 'faith', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'ahem', '||rightparen||', 'in', 'this', 'age', 'of', 'uncertainty', 'and', 'confusion', '||comma||', 'a', 'man', 'begins', 'to', 'ask', 'himself', 'certain', 'questions', '||period||', 'how', 'can', 'one', 'even', 'begin', 'to', 'put', 'into', 'words', 'something', 'so', 'um', '||leftparen||', 'trying', 'to', 'think', 'of', 'a', 'word', '||rightparen||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'enigmatic', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'vast', '||questionmark||', '||leftparen||', 'he', 'pronounces', 'it', 'as', '||quotemark||', 'vost', '||quotemark||', '||rightparen||', '||return||', '||return||', 'george:', 'no', 'not', 'vast', '||leftparen||', 'he', 'pronounces', 'it', 'as', '||quotemark||', 'vost', '||quotemark||', '||rightparen||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'well', 'whatever', 'it', 'is', '||comma||', 'basically', 'you', 'like', 'the', 'religion', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest', '2:', 'is', 'there', 'one', 'aspect', 'of', 'the', 'faith', 'that', 'you', 'find', 'particularly', 'attractive', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'he', 'thinks', '||rightparen||', 'i', 'think', 'the', 'hats', '||period||', 'the', 'hat', 'conveys', 'that', 'solemn', 'religious', 'look', 'you', 'want', 'in', 'a', 'faith', '||period||', 'very', 'pious', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'are', 'you', 'familiar', 'with', 'orthodox', 'theology', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'perhaps', '||comma||', 'not', 'to', 'the', 'extent', 'that', 'you', 'are', '||period||', 'but', 'i', 'know', 'the', 'basic', 'plot', '||period||', 'yeah', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'plot', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'you', 'know', 'the', 'uh', 'flood', '||comma||', 'and', 'the', 'uh', 'lepers', '||comma||', 'and', 'the', 'commandments', 'and', 'all', 'that', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest', '2:', 'well', 'its', 'obvious', 'that', 'you', 'are', 'sincere', 'in', 'your', 'desire', '||period||', '||return||', '||return||', 'george:', 'oh', 'yes', 'i', 'am', 'father', '||period||', 'incredibly', 'sincere', '||period||', 'so', '||comma||', 'uh', '||comma||', 'pffft', '||comma||', 'am', 'i', 'in', '||questionmark||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'the', 'first', 'step', 'would', 'be', 'to', 'familiarize', 'yourself', 'with', 'these', 'texts', '||leftparen||', 'brings', 'out', 'a', 'pile', 'of', 'books', '||rightparen||', '||period||', '||return||', '||return||', 'george:', 'ah', 'hah', '||period||', 'you', 'see', 'father', '||comma||', 'im', 'im', 'incredibly', 'anxious', 'to', 'become', 'a', 'member', '||period||', 'um', '||comma||', 'dont', 'you', 'offer', 'any', 'kind', 'of', 'an', 'express', 'conversion', '||questionmark||', 'a', 'quick', 'change', '||questionmark||', '||return||', '||return||', 'sister', 'roberta:', 'oh', 'im', 'sorry', '||period||', 'father', '||comma||', 'theres', 'a', 'man', 'waiting', 'in', 'the', 'chapel', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'you', 'may', 'attend', 'to', 'it', 'sister', '||comma||', 'oh', 'this', 'is', 'george', 'costanza', '||period||', 'he', 'is', 'interested', 'in', 'joining', 'the', 'church', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'oh', 'are', 'you', '||questionmark||', 'thats', 'wonderful', '||period||', 'well', 'good', 'luck', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'nice', 'nun', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'no', '||comma||', 'sister', 'roberta', 'is', 'not', 'a', 'nun', '||period||', 'she', 'is', 'what', 'we', 'call', 'a', 'novice', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest', '2:', 'she', 'wont', 'be', 'taking', 'her', 'final', 'vows', 'until', 'next', 'thursday', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'im', 'here', 'to', 'pick', 'up', 'my', 'friend', 'george', 'costanza', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'well', 'hes', 'in', 'with', 'the', 'father', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'im', 'sister', 'roberta', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'kramer', '||period||', 'pleasure', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'mine', '||period||', '||leftparen||', 'she', 'smiles', 'at', 'kramer', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'cant', 'believe', 'how', 'easy', 'it', 'is', '||period||', 'im', 'virtually', 'orthodox', '||period||', 'all', 'i', 'have', 'to', 'do', 'is', 'read', 'a', 'few', 'books', '||comma||', 'memorize', 'a', 'few', 'prayers', '||comma||', 'and', 'im', 'in', 'the', 'club', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'all', 'there', 'is', 'to', 'it', '||period||', '||return||', '||return||', 'george:', 'thats', 'all', 'there', 'is', 'to', 'it', '||period||', 'by', 'christmas', 'day', 'i', 'will', 'be', 'brother', 'costanza', '||period||', '||return||', '||return||', 'jerry:', 'and', 'when', 'is', 'brother', 'costanza', 'planning', 'on', 'telling', 'mother', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', 'brother', 'costanza', 'will', 'be', 'taking', 'the', 'vow', 'of', 'silence', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'a', 'slinky', '||period||', '||return||', '||return||', 'kramer:', 'sister', 'roberta', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'why', 'did', 'she', 'give', 'you', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'think', 'she', 'liked', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'she', 'liked', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'liked', 'me', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'they', 'like', 'everybody', '||period||', 'theyre', 'friendly', 'people', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'i', 'think', 'i', 'picked', 'up', 'on', 'a', 'vibe', '||period||', '||return||', '||return||', 'jerry:', 'you', 'picked', 'up', 'on', 'a', 'vibe', '||comma||', 'from', 'a', 'nun', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'jerry', 'im', 'telling', 'you', 'i', 'have', 'this', 'power', '||period||', 'and', 'i', 'have', 'no', 'control', 'over', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yea', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'my', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', '||period||', '||return||', '||return||', 'tawni:', 'hi', '||comma||', 'i', 'just', 'wanted', 'to', 'stop', 'by', 'and', 'see', 'how', 'you', 'were', 'feeling', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'weakly', '||rightparen||', 'a', 'little', 'better', '||period||', '||leftparen||', 'fake', 'cough', '||rightparen||', '||return||', '||return||', 'tawni:', 'if', 'you', 'need', 'anything', 'let', 'me', 'know', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'tawni:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'tawni:', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'george:', 'story', '||period||', '||return||', '||return||', 'jerry:', 'shes', 'subletting', 'carols', 'place', 'for', 'a', 'month', '||period||', '||return||', '||return||', 'george:', 'yea', '||comma||', 'she', 'likes', 'you', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'but', 'theres', 'a', 'problem', '||period||', 'i', 'found', 'a', 'tube', 'of', 'a', 'fungicide', 'in', 'her', 'medicine', 'cabinet', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'dont', 'know', 'what', 'shes', 'using', 'it', 'for', '||period||', '||return||', '||return||', 'george:', 'well', 'how', 'do', 'you', 'even', 'know', 'its', 'hers', '||questionmark||', 'maybe', 'it', 'belonged', 'to', 'carol', '||period||', 'did', 'you', 'see', 'a', 'name', 'on', 'the', 'tube', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'even', 'think', 'to', 'look', '||period||', '||return||', '||return||', 'george:', 'well', 'take', 'a', 'look', '||period||', 'it', 'might', 'not', 'even', 'belong', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'people', 'always', 'leave', 'old', 'things', 'in', 'their', 'medicine', 'cabinet', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'ive', 'got', 'this', 'old', 'bottle', 'of', 'cough', 'medicine', '||period||', '||return||', '||return||', 'george:', 'i', 'still', 'have', 'brill', 'cream', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||return||', '||return||', 'tawni:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'can', 'i', 'use', 'your', 'bathroom', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'sure', 'you', 'dont', 'mind', '||questionmark||', '||return||', '||return||', 'doctor:', 'no', 'of', 'course', 'not', '||period||', 'people', 'ask', 'me', 'medical', 'questions', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', 'mean', 'the', 'question', 'isnt', 'even', 'for', 'me', 'its', 'for', 'a', 'friend', '||period||', '||return||', '||return||', 'doctor:', 'elaine', '||comma||', 'im', 'used', 'to', 'it', '||period||', 'im', 'a', 'doctor', '||period||', '||return||', '||return||', 'elaine:', 'well', 'podiatrist', '||period||', '||return||', '||return||', 'doctor:', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'im', 'just', 'saying', 'you', 'didnt', 'really', 'go', 'to', 'medical', 'school', '||comma||', 'you', 'went', 'to', 'podiatry', 'school', '||period||', 'which', 'im', 'sure', 'is', 'very', 'grueling', 'in', 'its', 'own', 'way', '||period||', '||return||', '||return||', 'doctor:', 'i', 'went', 'to', 'podiatry', 'school', 'because', 'i', 'like', 'feet', '||period||', 'i', 'chose', 'to', 'work', 'with', 'feet', '||period||', '||return||', '||return||', 'elaine:', 'i', 'like', 'feet', 'too', '||period||', 'im', 'just', 'saying', '||return||', '||return||', 'doctor:', 'saying', 'what', '||questionmark||', '||return||', '||return||', 'tawni:', 'how', 'are', 'you', 'doing', 'in', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'fine', 'all', 'done', '||comma||', 'just', 'looking', 'for', 'the', 'soap', '||period||', '||return||', '||return||', 'tawni:', 'no', 'soap', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', 'dont', 'see', 'it', '||period||', '||return||', '||return||', 'tawni:', '||leftparen||', 'giving', 'jerry', 'the', 'soap', '||rightparen||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'estelle:', 'george', 'what', 'are', 'you', 'doing', 'in', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'nothing', '||period||', '||return||', '||return||', 'frank:', 'youve', 'been', 'in', 'there', 'an', 'hour', '||period||', '||return||', '||return||', 'estelle:', 'you', 'dont', 'feel', 'well', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'fine', '||period||', '||return||', '||return||', 'estelle:', 'i', 'want', 'to', 'know', 'what', 'youre', 'doing', 'in', 'there', '||period||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'frank:', 'george', '||comma||', 'open', 'the', 'door', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'estelle:', 'georgie', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'good', 'evening', '||period||', 'i', 'hope', 'im', 'not', 'disturbing', 'you', '||comma||', 'but', 'i', 'found', 'another', 'toy', 'i', 'thought', 'you', 'might', 'like', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'latvius', 'was', 'the', 'son', 'of', 'which', 'apostle', '||questionmark||', 'and', 'ill', 'need', 'that', 'in', 'the', 'form', 'of', 'a', 'question', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'i', 'cant', 'believe', 'theyre', 'making', 'me', 'take', 'this', 'test', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'did', 'you', 'talk', 'to', 'the', 'doctor', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'the', 'next', 'time', 'you', 'see', 'him', 'show', 'him', 'this', '||period||', '||leftparen||', 'he', 'presents', 'the', 'bottle', 'of', 'fungicide', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'took', 'her', 'medicine', '||period||', '||return||', '||return||', 'jerry:', 'not', 'on', 'purpose', '||period||', 'i', 'was', 'hoping', 'there', 'would', 'be', 'a', 'name', 'on', 'the', 'tube', '||period||', 'when', 'are', 'you', 'seeing', 'him', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'know', '||period||', 'we', 'got', 'into', 'this', 'whole', 'thing', 'about', 'how', 'podiatrists', 'arent', 'real', 'doctors', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'say', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'its', 'you', 'fault', '||period||', 'you', 'just', 'got', 'me', 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'merely', 'speaking', 'extemporaneously', '||period||', '||return||', '||return||', 'elaine:', 'ive', 'got', 'nothing', 'against', 'the', 'foot', '||period||', 'im', 'pro', '||dash||', 'foot', '||period||', '||return||', '||return||', 'jerry:', 'me', 'too', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'think', 'i', 'should', 'call', 'him', 'and', 'apologize', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'hes', 'a', 'doctor', '||period||', '||leftparen||', 'elaine', 'starts', 'to', 'leave', '||period||', '||rightparen||', 'wait', 'a', 'second', '||period||', '||leftparen||', 'jerry', 'puts', 'the', 'bottle', 'of', 'fungicide', 'in', 'elaines', 'purse', '||period||', '||rightparen||', '||leftparen||', 'to', 'george', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'does', 'it', 'look', 'like', 'im', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', 'words', 'george', 'wrote', 'on', 'his', 'hand', '||rightparen||', '||quotemark||', 'matthew', '||comma||', 'luke', '||comma||', 'paul', '||quotemark||', '||comma||', 'what', 'youre', 'cheating', 'on', 'your', 'conversion', 'chest', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', 'she', 'liked', 'me', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'sister', 'roberta', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'she', 'told', 'me', '||period||', 'she', 'said', 'shes', 'never', 'had', 'a', 'man', 'stir', 'up', 'all', 'of', 'these', 'feelings', 'inside', 'of', 'her', '||period||', 'shes', 'questioning', 'her', 'faith', '||period||', 'shes', 'thinking', 'of', 'leaving', 'the', 'church', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'uh', '||comma||', 'this', 'power', '||period||', 'im', 'dangerous', 'jerry', '||comma||', 'im', 'very', 'very', 'dangerous', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'i', 'must', 'say', 'george', '||comma||', 'i', 'was', 'somewhat', 'surprised', 'at', 'the', 'results', 'of', 'your', 'conversion', 'test', '||period||', 'i', 'dont', 'recall', 'having', 'seen', 'such', 'an', 'impressive', 'performance', '||period||', 'you', 'truly', 'must', 'be', 'filled', 'with', 'the', 'spirit', 'of', 'the', 'lord', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'im', 'im', 'full', 'of', 'it', 'father', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest', '2:', '||leftparen||', 'muttering', 'something', 'to', 'father', '||dash||', 'priest', '1', '||rightparen||', '||leftparen||', 'mumble', '||rightparen||', 'kramer', '||leftparen||', 'mumble', '||rightparen||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'yes', '||comma||', 'yes', 'i', 'see', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'im', 'sorry', 'something', 'has', 'come', 'up', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'understand', '||period||', '||leftparen||', 'george', 'exits', '||semicolon||', 'sees', 'kramer', 'in', 'the', 'hallway', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'rushed', '||rightparen||', 'yea', '||comma||', 'hey', '||period||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', 'um', '||comma||', 'you', 'wanted', 'to', 'see', 'me', 'father', '||questionmark||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'yes', '||period||', 'please', '||comma||', 'sit', 'down', '||period||', 'sister', 'roberta', 'came', 'to', 'see', 'me', 'yesterday', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', 'what', 'this', 'is', 'about', 'father', '||period||', 'i', 'didnt', 'do', 'anything', '||period||', 'i', 'just', 'spoke', 'to', 'her', 'innocently', 'for', 'just', 'a', 'few', 'minutes', '||period||', 'its', 'just', 'that', '||comma||', 'that', 'i', 'have', 'this', 'power', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'yes', '||period||', 'kavorka', '||period||', '||return||', '||return||', 'kramer:', 'kavorka', '||questionmark||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'it', 'is', 'a', 'latvian', 'word', 'which', 'means', '||quotemark||', 'the', 'lure', 'of', 'the', 'animal', '||quotemark||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'dont', 'understand', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'women', 'are', 'drawn', 'to', 'you', '||period||', 'they', 'would', 'give', 'anything', 'to', 'be', 'possessed', 'by', 'you', '||period||', '||return||', '||return||', 'kramer:', 'help', 'me', 'father', '||period||', 'help', 'me', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'yes', '||comma||', 'yes', 'i', 'will', 'help', 'you', '||period||', 'listen', 'very', 'carefully', '||period||', 'i', 'want', 'you', 'to', 'buy', 'ten', 'cloves', 'of', 'garlic', '||comma||', 'three', 'quarts', 'of', 'vinegar', '||comma||', 'six', 'ounces', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'stench', '||questionmark||', 'i', 'got', 'it', '||period||', '||leftparen||', 'he', 'follows', 'the', 'smell', 'to', 'kramers', 'door', '||rightparen||', 'ah', 'hah', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'ive', 'got', 'the', 'kavorka', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'the', 'kavorka', '||questionmark||', 'whats', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'lure', 'of', 'the', 'animal', '||period||', 'im', 'dangerous', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', 'thing', 'around', 'your', 'neck', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'priests', 'theyre', 'helping', 'me', '||period||', 'i', 'just', 'bathed', 'in', 'vinegar', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'youre', 'funcifying', 'the', 'whole', 'building', '||period||', '||return||', '||return||', 'kramer:', 'keep', 'away', 'jerry', '||period||', 'keep', 'away', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||leftparen||', 'knock', '||comma||', 'knock', '||comma||', 'knock', '||rightparen||', 'kramer', '||period||', '||return||', '||return||', '[at', 'the', 'entrance', 'of', 'the', 'church', '||period||', 'there', 'is', 'a', 'sign', 'there', '||period||', 'it', 'reads:', 'conversion', 'ceremony', '||dash||', 'for', '||dash||', 'george', 'costanza', '||dash||', '3p', '||period||', 'm', '||period||', 'the', 'sign', 'is', 'on', 'a', 'black', 'background', 'with', 'white', 'stick', '||dash||', 'on', 'letters', '||period||', ']', '||return||', '||return||', 'woman:', 'george', 'costanza', '||questionmark||', 'estelles', 'son', '||questionmark||', '||return||', '||return||', 'estelle:', 'latvian', 'orthodox', '||questionmark||', 'why', 'are', 'you', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'for', 'a', 'woman', '||period||', '||return||', '||return||', 'frank:', 'a', 'woman', '||questionmark||', 'what', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'estelle:', 'why', 'cant', 'you', 'do', 'anything', 'like', 'a', 'normal', 'person', '||questionmark||', '||return||', '||return||', 'frank:', 'wait', '||period||', 'is', 'this', 'the', 'group', 'that', 'goes', 'around', 'mutilating', 'squirrels', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'its', 'a', 'regular', 'religion', '||period||', '||return||', '||return||', 'frank:', 'im', 'calling', 'my', 'lawyer', '||period||', 'it', 'might', 'not', 'be', 'too', 'late', 'to', 'get', 'out', 'of', 'this', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'want', 'to', 'get', 'out', 'of', 'it', '||period||', '||return||', '||return||', 'estelle:', 'bu', 'george', '||comma||', 'you', 'dont', 'know', 'what', 'youre', 'saying', '||period||', 'youre', 'under', 'their', 'control', '||period||', '||return||', '||return||', 'frank:', 'what', '||comma||', 'they', 'brainwashed', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'no', '||period||', '||return||', '||return||', 'frank:', 'youre', 'not', 'performing', 'any', 'rituals', 'in', 'this', 'house', '||period||', '||return||', '||return||', 'estelle:', 'go', 'back', 'to', 'the', 'psychiatrist', '||period||', 'i', 'beg', 'you', '||period||', '||return||', '||return||', 'frank:', 'and', 'stay', 'away', 'from', 'those', 'squirrels', '||period||', '||return||', '||return||', 'tawni:', 'oh', 'how', 'you', 'doing', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'whats', 'the', 'matter', '||questionmark||', '||return||', '||return||', 'tawni:', 'im', 'tired', '||period||', 'i', 'hardly', 'slept', 'last', 'night', 'with', 'all', 'this', 'scratching', '||period||', 'bonkers', 'was', 'going', 'crazy', '||period||', '||return||', '||return||', 'jerry:', 'bonkers', '||questionmark||', '||return||', '||return||', 'tawni:', 'my', 'cat', '||period||', 'hes', 'got', 'this', 'weird', 'sort', 'of', 'skin', 'condition', '||period||', 'some', 'type', 'of', 'fungus', '||comma||', 'i', 'couldnt', 'find', 'his', 'medicine', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'its', 'your', 'cat', '||exclammark||', '||return||', '||return||', 'tawni:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'ooh', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'are', 'you', 'ready', 'my', 'son', '||questionmark||', '||return||', '||return||', 'george:', 'yes', 'faddah', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'i', 'thought', 'you', 'said', 'faddah', '||period||', '||return||', '||return||', 'george:', 'i', 'said', 'faddah', '||comma||', 'i', 'meant', 'father', '||period||', 'just', 'a', 'little', 'bit', 'nervous', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'ooh', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'kramer:', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'woman:', 'get', 'away', 'from', 'me', 'you', 'creep', '||period||', '||leftparen||', 'she', 'walks', 'away', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||period||', 'it', 'worked', '||period||', 'sister', 'roberta', 'ive', 'still', 'got', 'time', 'to', 'catch', 'her', '||period||', '||return||', '||return||', 'father', '||dash||', 'priest:', 'congratulations', 'george', '||period||', 'welcome', 'to', 'the', 'faith', '||period||', 'sister', 'roberta', 'would', 'you', 'please', 'offer', 'the', 'final', 'benediction', '||period||', '||return||', '||return||', 'sister', 'roberta:', '||leftparen||', 'hesitates', '||rightparen||', 'i', 'cant', '||period||', '||leftparen||', 'crowd', 'murmurs', '||rightparen||', 'im', 'sorry', '||period||', 'its', 'a', 'beautiful', 'religion', '||comma||', 'but', 'i', 'am', 'not', 'worthy', 'of', 'it', '||period||', 'i', 'found', 'something', 'else', '||period||', '||return||', '||return||', 'sister', 'roberta:', 'him', '||period||', '||return||', '||return||', 'crowd:', 'kavorka', '||comma||', 'kavorka', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'kiss', '||comma||', 'kiss', '||rightparen||', 'you', 'know', '||comma||', 'because', 'i', 'love', 'the', 'foot', '||period||', 'im', 'a', 'big', 'fan', 'of', 'the', 'foot', '||period||', '||return||', '||return||', 'doctor:', 'well', 'its', 'my', 'fault', '||period||', 'i', 'got', 'a', 'little', 'defensive', '||period||', '||return||', '||return||', 'elaine:', 'and', 'that', 'pinkie', 'toe', '||comma||', 'come', 'on', '||period||', 'how', 'adorable', 'is', 'the', 'pinkie', 'toe', '||period||', '||return||', '||return||', 'doctor:', 'its', 'my', 'favorite', 'toe', '||period||', '||return||', '||return||', 'elaine:', 'lets', 'face', 'it', '||comma||', 'you', 'get', 'a', 'bunion', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', 'youre', 'not', 'going', 'to', 'the', 'ear', 'guy', '||period||', '||return||', '||return||', 'doctor:', 'no', 'youre', 'not', '||period||', '||return||', '||return||', 'elaine:', 'ill', 'be', 'right', 'back', '||period||', '||return||', '||return||', 'doctor:', 'oh', 'uh', '||comma||', 'wheres', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'elaine:', 'its', 'right', 'down', 'here', 'to', 'the', 'left', '||period||', 'i', 'will', 'uh', 'meet', 'you', 'right', 'back', 'here', '||period||', '||return||', '||return||', 'jerry:', 'elaine', 'its', 'her', 'cat', '||period||', 'her', 'cat', 'had', 'the', 'fungus', '||period||', 'so', 'i', 'need', 'the', 'tube', 'back', '||period||', '||return||', '||return||', 'doctor:', '||leftparen||', 'thinking', 'to', 'himself', '||rightparen||', '||quotemark||', 'fungicide', '||quotemark||', '||questionmark||', 'fungus', '||questionmark||', '||return||', '||return||', 'sister', 'roberta:', 'somethings', 'wrong', '||period||', 'i', 'dont', 'feel', 'the', 'same', 'lure', '||period||', '||return||', '||return||', 'kramer:', 'you', 'dont', '||questionmark||', '||return||', '||return||', 'sister', 'roberta:', 'what', 'have', 'i', '||questionmark||', 'i', 'must', 'return', 'to', 'the', 'church', '||period||', 'by', 'the', 'way', 'you', 'really', 'need', 'to', 'take', 'a', 'bath', '||period||', 'you', 'stink', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'but', 'once', 'you', 'put', 'medicine', 'in', 'your', 'medicine', 'cabinet', "you're", 'never', 'using', 'it', 'again', '||period||', 'any', 'medicine', "you're", 'using', '||comma||', 'is', 'on', 'the', 'sink', '||period||', "it's", 'not', 'really', 'even', 'a', 'medicine', 'cabinet', '||comma||', "it's", 'really', 'like', 'an', 'ointment', 'museum', "isn't", 'it', '||questionmark||', "it's", 'like', "here's", 'a', 'saff', 'from', '1983', '||comma||', 'some', 'cream', 'from', 'the', '70s', '||period||', 'but', 'you', 'want', 'to', 'keep', 'it', 'private', '||comma||', 'because', 'a', 'medicine', 'cabinet', 'is', 'a', 'place', 'that', 'reveals', 'our', 'weaknesses', 'and', 'it', 'can', 'really', 'throw', 'off', 'the', 'balance', 'between', 'two', 'people', 'that', 'might', 'be', 'going', 'out', '||period||', 'somebody', 'peeks', 'in', 'there', '||comma||', '||quotemark||', 'oh', 'i', 'see', 'mr', '||period||', 'perfect', 'needs', 'tough', "actin'", 'tinactin', '||period||', 'well', 'i', 'guess', "i'll", 'be', 'calling', 'the', 'shots', 'in', 'this', 'relationship', 'from', 'now', 'on', '||period||', '||quotemark||', '||return||', '||return||', 'sasha:', 'for', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'didnt', 'do', 'it', 'for', 'my', 'mother', '||period||', '||return||', '||return||', 'sasha:', 'im', 'really', 'flattered', '||period||', 'but', 'i', 'just', 'dont', 'feel', 'ready', 'to', 'make', 'a', 'commitment', 'yet', '||period||', 'maybe', 'when', 'i', 'get', 'back', 'from', 'latvia', '||period||', '||return||', '||return||', 'george:', 'latvia', '||questionmark||', '||return||', '||return||', 'sasha:', 'yes', '||period||', 'im', 'going', 'to', 'stay', 'with', 'some', 'relatives', 'there', 'for', 'a', 'year', '||period||', 'isnt', 'it', 'great', '||questionmark||', '||return||', '||return||', 'george:', 'enjoy', '||comma||', 'enjoy', '||period||', '||return||', '||return||', 'sasha:', 'oh', 'george', '||comma||', 'you', 'are', 'so', 'sweet', '||period||', 'dont', 'ever', 'change', '||period||', '||return||', '||return||', 'george:', 'id', 'like', 'a', 'doggie', 'bag', 'for', 'this', 'please', '||period||', '||leftparen||', 'hands', 'her', 'plate', 'to', 'the', 'waitress', '||rightparen||', '||return||', '||return||', 'jerry:', 'the', 'whale', 'is', 'supposed', 'to', 'be', 'such', 'an', 'intelligent', 'animal', '||period||', 'you', 'know', 'you', 'always', 'here', 'about', 'how', 'they', 'can', 'communicate', 'by', 'song', 'from', 'miles', 'away', '||period||', 'how', 'extensive', 'their', 'vocabulary', 'is', '||period||', 'i', 'would', 'say', 'from', 'the', 'rate', 'we', 'are', 'pushing', 'the', 'whales', 'off', 'the', 'beach', 'back', 'into', 'the', 'ocean', 'the', 'words', 'shore', 'and', 'close', 'do', 'not', 'appear', 'to', 'be', 'in', 'their', 'vocabulary', '||period||', 'i', 'would', 'say', 'if', 'the', 'whales', 'concentrate', 'a', 'little', 'less', 'on', 'the', 'singing', 'and', 'a', 'little', 'more', 'on', 'approaching', 'quervo', 'beach', 'volleyball', 'tournament', '||period||', 'if', 'you', 'wanna', 'maintain', 'the', 'brainy', 'mammal', 'image', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "can't", 'believe', 'this', '||period||', 'what', 'a', 'dope', '||exclammark||', 'uh', '||period||', '||period||', 'excuse', 'me', 'umm', '||period||', '||period||', "i'm", 'sorry', 'this', 'is', '||period||', '||period||', 'this', 'is', 'kind', 'of', 'embarrassing', 'but', '||period||', '||period||', "there's", 'no', 'toilet', 'paper', 'over', 'here', '||return||', '||return||', 'jane:', '||leftparen||', 'from', 'the', 'stall', 'on', "elaine's", 'right', '||rightparen||', 'are', 'you', 'talking', 'to', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', 'i', 'i', 'just', 'forgot', 'to', 'check', 'so', 'if', 'you', 'could', 'just', 'spare', 'me', 'some', '||period||', '||return||', '||return||', 'jane:', 'no', "i'm", 'sorry', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jane:', 'no', "i'm", 'sorry', '||comma||', 'i', "can't", 'spare', 'it', '||return||', '||return||', 'elaine:', 'you', "can't", 'spare', 'it', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jane:', 'no', "there's", 'not', 'enough', 'to', 'spare', '||return||', '||return||', 'elaine:', 'well', 'i', "don't", 'need', 'much', '||comma||', 'just', '3', 'squares', 'will', 'do', 'it', '||return||', '||return||', 'jane:', "i'm", 'sorry', 'i', "don't", 'have', 'a', 'square', 'to', 'spare', '||comma||', 'now', 'if', 'you', "don't", 'mind', '||return||', '||return||', 'elaine:', '3', 'squares', '||questionmark||', 'you', "can't", 'spare', '3', 'squares', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jane:', 'no', 'i', "don't", 'have', 'a', 'square', 'to', 'spare', '||comma||', 'i', "can't", 'spare', 'a', 'square', '||return||', '||return||', 'elaine:', 'oh', 'is', 'it', 'two', '||dash||', 'ply', '||questionmark||', 'cause', 'it', "it's", 'two', '||dash||', 'ply', "i'll", 'take', 'one', 'ply', '||comma||', 'one', 'ply', '||comma||', 'one', 'puny', 'little', 'ply', '||comma||', "i'll", 'take', 'one', 'measly', 'ply', '||return||', '||return||', 'jane:', 'look', '||comma||', 'i', "don't", 'have', 'a', 'square', 'and', 'i', "don't", 'have', 'a', 'ply', '||leftparen||', 'flushing', 'and', 'leaving', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'no', 'no', '||comma||', "don't", "don't", '||comma||', 'i', 'beg', 'you', '||return||', '||return||', 'jerry:', '||leftparen||', 'eating', 'pop', 'corn', '||rightparen||', 'hmm', 'i', 'love', 'this', 'artificial', 'flavoring', 'i', 'like', 'it', 'better', 'than', 'butter', 'i', 'think', "it's", 'more', 'consistent', '||return||', '||return||', 'jane:', 'you', 'would', 'not', 'believe', 'what', 'just', 'happened', 'to', 'me', 'in', 'the', 'bathroom', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||return||', '||return||', 'tony:', 'hey', '||period||', 'hey', '||questionmark||', 'where', 'is', 'my', 'popcorn', 'babe', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'tony:', 'my', 'popcorn', '||comma||', 'you', 'were', 'supposed', 'to', 'get', 'me', 'popcorn', 'what', '||questionmark||', 'would', 'you', 'forget', 'about', 'me', 'babe', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'would', 'not', 'believe', 'what', 'just', 'happened', 'to', 'me', 'in', 'the', 'bathroom', '||return||', '||return||', 'jane:', 'i', 'mean', '||period||', '||period||', 'a', 'person', 'needs', 'a', 'certain', 'amount', 'of', 'toilet', 'paper', 'to', 'be', 'covered', '||period||', '||period||', 'i', 'simply', 'could', 'not', 'spare', 'it', 'this', 'woman', 'just', "didn't", 'get', 'it', '||comma||', 'she', 'kept', 'harassing', 'me', '||return||', '||return||', 'elaine:', '3', 'squares', '||exclammark||', '||exclammark||', "that's", 'all', 'i', 'was', 'asking', 'for', '||exclammark||', '3', 'squares', '||exclammark||', '||return||', '||return||', 'jane:', 'she', "wouldn't", 'stop', '||quotemark||', 'help', 'me', '||exclammark||', 'help', 'me', '||exclammark||', '||quotemark||', 'she', 'was', 'insane', '||return||', '||return||', 'elaine:', 'i', 'was', 'begging', 'her', '||quotemark||', 'please', '||exclammark||', 'please', '||exclammark||', '||quotemark||', 'she', 'was', 'insane', '||return||', '||return||', 'jerry:', 'who', 'do', 'you', 'think', 'she', 'is', '||questionmark||', 'how', 'dare', 'she', '||questionmark||', 'you', 'want', 'me', 'to', 'get', 'the', 'manager', '||questionmark||', 'too', 'bad', 'they', "don't", 'have', 'those', 'old', 'ladies', 'walking', 'around', 'with', 'flashlights', 'anymore', "we'd", 'flush', 'her', 'out', '||return||', '||return||', 'jane:', 'i', "don't", 'know', 'what', 'she', 'looks', 'like', '||return||', '||return||', 'jerry:', 'i', 'wonder', 'where', 'elaine', 'is', 'sitting', '||questionmark||', 'i', 'really', 'wanted', 'you', 'to', 'meet', 'her', "she's", 'supposed', 'to', 'be', 'here', 'tonight', 'with', 'her', 'new', 'boyfriend', 'tony', '||return||', '||return||', 'elaine:', 'hmm', 'where', 'is', 'jerry', 'sitting', '||questionmark||', "he's", 'supposed', 'to', 'be', 'here', 'tonight', 'with', 'his', 'new', 'girlfriend', "i'm", 'dying', 'to', 'see', 'what', 'she', 'looks', 'like', '||return||', '||return||', 'tony:', 'hey', '||questionmark||', 'you', 'think', 'if', 'i', 'jumped', 'off', 'that', 'balcony', "i'd", 'get', 'hurt', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'jerry:', 'hey', '||return||', '||return||', 'kramer:', 'hey', 'guy', '||comma||', 'can', 'i', 'use', 'your', 'phone', 'in', 'your', 'bedroom', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', 'with', 'yours', '||questionmark||', '||return||', '||return||', 'kramer:', 'huh', '||period||', '||period||', 'my', 'batteries', 'are', 'dead', '||return||', '||return||', 'jerry:', "it's", 'not', 'one', 'of', 'those', '976', 'calls', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', 'come', 'on', '||comma||', 'let', 'me', 'use', 'it', '||comma||', '5', 'minutes', '||comma||', "i'll", 'pay', 'you', 'back', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'do', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', '||leftparen||', 'goes', 'to', 'the', 'bedroom', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'am', 'never', 'going', 'back', 'to', 'the', 'movies', 'again', '||return||', '||return||', 'jerry:', 'hey', 'where', 'were', 'you', 'last', 'night', '||questionmark||', 'i', 'looked', 'for', 'you', '||comma||', 'i', "didn't", 'see', 'you', '||return||', '||return||', 'elaine:', 'i', 'looked', 'for', 'you', 'too', '||comma||', 'i', 'was', 'all', 'the', 'way', 'over', 'on', 'the', 'side', '||return||', '||return||', 'jerry:', 'oh', 'with', 'huh', '||period||', '||period||', 'pretty', 'boy', '||period||', '||period||', 'tony', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'jerry:', 'hey', 'hey', '||leftparen||', 'fooling', 'around', 'with', 'his', 'collar', '||rightparen||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'all', 'right', 'ok', '||return||', '||return||', 'jerry:', 'tony', '||comma||', 'hey', 'hey', '||leftparen||', 'continues', 'fooling', '||rightparen||', '||return||', '||return||', 'elaine:', "that's", 'nice', '||period||', 'listen', '||comma||', 'listen', 'to', 'this', 'i', 'am', 'in', 'the', 'bathroom', '||comma||', 'right', 'before', 'the', 'movie', 'starts', '||return||', '||return||', 'jerry:', 'huh', 'huh', '||return||', '||return||', 'elaine:', "i'm", 'in', 'the', 'stall', 'and', "there's", 'no', 'toilet', 'paper', '||return||', '||return||', 'jerry:', 'no', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'toilet', 'paper', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', 'whoa', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', 'i', 'ask', 'this', 'woman', 'in', 'the', 'stall', 'next', 'to', 'me', 'for', 'some', 'and', 'she', 'refuses', '||exclammark||', 'ha', 'ha', '||return||', '||return||', 'jerry:', 'well', 'maybe', 'she', "couldn't", 'spare', 'it', '||return||', '||return||', 'elaine:', 'a', 'square', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||comma||', 'sometimes', 'a', 'square', 'is', 'everything', '||return||', '||return||', 'elaine:', 'a', 'ply', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'you', 'cannot', 'judge', 'a', 'person', 'on', 'a', 'situation', 'like', 'that', '||period||', 'i', 'mean', "it's", 'like', 'asking', 'for', "someone's", 'canteen', 'in', 'the', 'desert', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'jerry:', "it's", 'battle', 'conditions', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', 'i', 'just', 'hope', 'i', 'run', 'into', 'her', 'again', 'ok', '||comma||', 'cause', 'i', 'will', 'never', 'forget', 'that', 'flinty', 'voice', '||comma||', 'it', 'is', 'tattooed', 'in', 'my', 'brain', 'if', 'i', 'hear', 'it', '||comma||', 'watch', 'out', 'so', 'listen', 'what', 'happened', 'with', 'jane', 'last', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', 'jane', 'she', 'uh', '||period||', '||period||', 'she', 'uh', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'the', 'four', 'of', 'us', 'are', 'going', 'out', 'saturday', 'right', '||questionmark||', 'that', 'should', 'be', 'fun', '||return||', '||return||', 'jerry:', 'yeah', 'that', 'should', 'be', 'real', 'fun', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||comma||', "it's", 'getting', 'late', '||comma||', 'can', 'i', 'call', 'tony', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', "woman's", 'voice', 'on', 'the', 'phone:', 'then', "we'll", 'get', 'a', 'cab', 'and', "we'll", 'do', 'it', 'in', 'the', 'back', 'seat', '||period||', '||period||', "how's", 'that', 'andre', '||questionmark||', '||return||', '||return||', 'elaine:', 'andre', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'what', 'about', 'the', 'driver', '||questionmark||', 'we', 'could', 'get', 'an', 'accident', '||return||', '||return||', 'kramer:', 'oh', 'that', "wouldn't", 'be', 'very', 'good', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'hey', 'andre', '||comma||', 'get', 'the', 'hell', 'off', 'the', 'phone', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'what', 'is', 'going', 'on', '||questionmark||', 'what', '||period||', '||period||', 'who', 'is', 'andre', '||questionmark||', '||return||', '||return||', 'jerry:', "kramer's", 'andre', '||comma||', "he's", 'fooling', 'around', 'with', 'these', '976', 'numbers', '||leftparen||', 'kramer', 'walks', 'out', 'of', 'the', 'bedroom', '||rightparen||', 'hey', 'i', 'told', 'you', '||comma||', 'i', "don't", 'want', 'you', 'doing', 'that', 'on', 'my', 'phone', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "i'm", 'telling', 'you', '||comma||', 'this', 'phone', 'sex', 'thing', 'is', 'hilarious', '||comma||', 'like', 'this', 'woman', 'erika', '||comma||', 'here', 'look', '||leftparen||', 'showing', 'the', 'ad', 'in', 'the', 'newspaper', '||rightparen||', '||period||', 'you', 'gotta', 'call', 'her', '||comma||', 'the', 'voice', 'she', 'uses', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'you', 'know', "it's", 'weird', 'because', 'that', 'voice', 'sounded', 'a', 'little', 'familiar', 'to', 'me', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "you're", 'hungry', '||questionmark||', "monk's", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', 'gotta', 'go', 'downtown', '||return||', '||return||', 'elaine:', 'oh', 'wait', '||comma||', "you're", 'giving', 'me', 'a', 'lift', 'home', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'elaine:', 'so', 'listen', '||comma||', 'what', 'happened', 'last', 'night', 'with', 'jane', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'uh', 'nothing', '||comma||', 'she', 'just', '||period||', '||period||', 'choked', 'on', 'a', 'jujube', '||return||', '||return||', 'elaine:', 'you', 'know', 'i', 'hate', 'to', 'tell', 'you', 'this', '||comma||', 'but', "it's", 'time', 'to', 'defrost', 'that', 'freezer', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'just', "can't", 'bring', 'myself', 'to', 'do', 'it', 'meanwhile', 'that', 'freezer', 'keeps', 'getting', 'smaller', 'and', 'smaller', '||leftparen||', 'she', 'smiles', '||rightparen||', '||leftparen||', 'elaine', 'looks', 'at', 'her', 'watch', '||rightparen||', 'oh', '||comma||', "don't", 'wanna', 'keep', 'tony', 'waiting', '||return||', '||return||', 'elaine:', 'hey', 'you', 'got', 'a', 'problem', 'with', 'tony', '||questionmark||', '||return||', '||return||', 'jerry:', 'hunky', '||period||', '||period||', 'tony', '||period||', '||period||', 'hey', 'hey', 'hey', '||leftparen||', 'fools', 'around', 'with', 'his', 'collar', 'again', '||rightparen||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'jerry', '||comma||', 'i', 'would', 'be', 'going', 'out', 'with', 'him', 'no', 'matter', 'what', 'he', 'looked', 'like', '||return||', '||return||', 'jerry:', 'of', 'course', 'you', 'would', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'oh', '||period||', '||period||', 'like', "you're", 'one', 'to', 'talk', '||return||', '||return||', 'jerry:', 'elaine', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'different', 'for', 'a', 'man', '||return||', '||return||', 'elaine:', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'expected', 'to', 'be', 'superficial', '||return||', '||return||', 'elaine:', "i'm", 'not', 'being', 'superficial', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "he's", 'a', '||period||', '||period||', "he's", 'a', 'male', 'bimbo', '||comma||', "he's", 'a', 'mimbo', '||return||', '||return||', 'elaine:', "he's", 'not', 'a', 'mimbo', '||comma||', "he's", 'an', 'exciting', '||comma||', 'charismatic', 'man', 'he', 'just', 'happened', 'to', 'have', 'a', 'perfect', 'face', '||return||', '||return||', 'jerry:', 'and', "that's", 'why', "you're", 'going', 'out', 'with', 'him', '||return||', '||return||', 'elaine:', 'no', 'it', 'is', 'not', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'think', 'george', 'has', 'a', 'non', '||dash||', 'sexual', 'crush', 'on', 'him', '||return||', '||return||', 'elaine:', 'i', 'think', 'he', 'does', 'too', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'every', 'time', 'i', 'see', 'him', '||comma||', "it's", 'tony', 'this', '||comma||', 'tony', 'that', '||period||', 'george', 'is', 'like', 'a', 'school', 'girl', 'around', 'him', '||return||', '||return||', 'tony:', 'so', 'i', 'said', 'uh', '||period||', '||period||', '||quotemark||', 'hey', 'dude', '||comma||', 'you', 'better', 'step', 'off', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'step', 'off', '||quotemark||', '||questionmark||', '||return||', '||return||', 'tony:', 'yeah', '||return||', '||return||', 'george:', 'you', 'said', '||quotemark||', 'step', 'off', '||quotemark||', '||questionmark||', 'wow', '||comma||', 'that', 'is', 'too', 'much', 'hey', '||period||', '||period||', 'huh', 'hey', '||leftparen||', 'george', 'turns', 'the', 'cap', 'his', 'wearing', 'backwards', 'like', 'tony', '||rightparen||', 'tony', '||comma||', 'i', 'huh', '||comma||', 'i', 'just', 'had', 'this', 'brainstorm', 'for', 'us', '||period||', 'can', 'you', 'guess', 'what', 'it', 'is', '||questionmark||', '||return||', '||return||', 'tony:', 'no', '||return||', '||return||', 'george:', 'bowling', '||exclammark||', 'what', 'do', 'you', 'say', 'bowling', '||questionmark||', "bowling's", 'insane', '||exclammark||', 'bowling', 'is', 'crazy', 'time', '||return||', '||return||', 'tony:', 'bowling', '||questionmark||', 'i', "don't", 'think', 'so', 'george', 'you', 'get', 'no', 'rush', 'from', 'bowling', '||return||', '||return||', 'george:', 'rush', '||questionmark||', 'you', 'want', 'a', 'rush', '||questionmark||', 'drop', 'a', 'ball', 'on', 'your', 'toe', 'my', 'friend', '||comma||', 'talk', 'about', 'a', 'rush', '||comma||', "you'll", 'be', 'throbbing', '||comma||', "you'll", 'see', 'visions', '||return||', '||return||', 'tony:', 'no', 'no', 'no', 'no', '||comma||', "i'm", 'thinking', '||period||', '||period||', 'rock', '||dash||', 'climbing', '||return||', '||return||', 'george:', 'all', 'right', '||exclammark||', 'rock', '||dash||', 'climbing', '||exclammark||', 'j', '||period||', '||period||', 'just', 'the', '2', 'of', 'us', '||questionmark||', 'alright', '||exclammark||', 'hey', "i'll", 'make', 'some', 'sandwiches', '||comma||', 'what', 'what', 'do', 'you', 'like', '||questionmark||', 'tuna', '||questionmark||', 'peanut', 'butter', '||questionmark||', '||return||', '||return||', 'tony:', 'what', '||period||', '||period||', 'whatever', '||return||', '||return||', 'george:', 'alright', 'alright', '||comma||', 'i', 'gotta', 'buy', 'some', 'bread', '||return||', '||return||', 'tony:', 'yeah', 'yeah', '||comma||', 'you', 'know', "i'm", 'definitely', 'down', 'for', 'some', 'rock', '||dash||', 'climbing', '||return||', '||return||', 'george:', 'me', 'too', '||comma||', 'i', 'am', 'down', '||comma||', 'i', 'am', 'totally', 'down', '||comma||', 'mark', 'me', 'down', '||return||', '||return||', 'tony:', 'cool', '||comma||', 'so', 'what', 'do', 'you', 'say', 'we', 'climb', 'a', 'rock', 'maana', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||period||', '||period||', 'maana', '||questionmark||', 'huh', 'maana', 'might', '||period||', '||period||', 'huh', 'maana', 'might', 'be', 'a', 'problem', '||comma||', "i'm", 'supposed', 'to', 'have', 'huh', 'a', 'boil', 'lanced', 'maana', '||period||', 'huh', 'you', 'know', 'i', 'think', 'they', 'charge', 'me', 'if', 'i', 'cancel', 'with', 'only', 'one', "maana's", 'notice', '||return||', '||return||', 'tony:', 'hey', 'kramer', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'tony:', 'hey', '||comma||', 'hey', 'kramer', 'my', 'man', '||comma||', 'what', 'are', 'you', 'doing', 'maana', '||questionmark||', '||return||', '||return||', 'kramer:', 'maana', "i'm", 'doing', 'nada', '||return||', '||return||', 'tony:', 'what', 'do', 'you', 'say', 'you', 'scale', 'some', 'rock', 'with', 'me', 'and', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'uh', 'tony', '||questionmark||', "there's", 'not', 'gonna', 'be', 'too', 'many', 'sandwiches', '||return||', '||return||', 'tony:', "c'mon", 'kramer', 'what', 'do', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'huh', 'kramer', "it's", 'huh', '||period||', '||period||', 'gonna', 'be', 'pretty', 'dangerous', 'up', 'there', '||return||', '||return||', 'kramer:', 'na', '||comma||', 'i', 'am', 'down', '||return||', '||return||', 'tony:', 'yes', '||period||', '||period||', 'alright', 'buddy', '||comma||', 'take', 'it', 'easy', 'kramer', 'you', 'down', 'to', 'it', 'george', '||questionmark||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', 'i', 'am', 'down', '||exclammark||', '||return||', '||return||', 'elaine:', 'rock', 'climbing', '||questionmark||', 'hehe', '||period||', '||period||', 'where', 'do', 'you', 'come', 'off', 'going', 'rock', 'climbing', '||period||', '||period||', 'rock', 'climbing', '||questionmark||', 'you', 'need', 'a', 'boost', 'to', 'climb', 'into', 'your', 'bed', '||leftparen||', 'elaine', 'laughs', '||rightparen||', '||return||', '||return||', 'george:', 'alright', 'alright', '||return||', '||return||', 'jerry:', 'yeah', 'yeah', 'what', 'is', 'it', 'with', 'you', 'and', 'tony', '||questionmark||', 'what', 'are', 'you', '||questionmark||', "it's", 'like', 'his', 'sidekick', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', "that's", 'right', '||period||', 'i', 'like', 'it', '||period||', "he's", 'such', 'a', 'cool', 'guy', '||return||', '||return||', 'jerry:', 'cool', 'guy', '||questionmark||', 'what', 'are', 'you', '||comma||', 'in', '8th', 'grade', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'the', 'first', 'cool', 'guy', "i've", 'ever', 'been', 'friends', 'with', 'in', 'my', 'whole', 'life', '||period||', 'you', 'know', '||period||', '||period||', "it's", 'a', 'different', 'world', 'when', "you're", 'with', 'a', 'cool', 'guy', '||comma||', "he's", 'not', 'afraid', 'of', 'anybody', '||period||', 'you', 'should', 'hear', 'the', 'way', 'he', 'talks', 'to', 'waitresses', '||period||', '||period||', 'he', 'gets', 'free', 'pie', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'george:', 'hey', 'nice', 'move', 'today', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'horning', 'on', 'my', 'rock', 'climbing', 'trip', '||period||', "it's", 'just', 'supposed', 'to', 'be', 'me', 'and', 'tony', '||return||', '||return||', 'kramer:', 'he', 'asked', 'me', '||return||', '||return||', 'george:', 'you', 'put', 'him', 'on', 'the', 'spot', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', 'think', 'you', 'are', 'in', 'love', 'with', 'him', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||period||', '||period||', "that's", 'ridiculous', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', 'you', 'love', 'him', '||return||', '||return||', 'george:', 'you', 'better', 'be', 'careful', 'on', 'those', 'rocks', 'tomorrow', 'buddy', '||period||', 'and', "you're", 'not', 'getting', 'any', 'sandwiches', 'either', '||return||', '||return||', 'jerry:', "you're", 'making', 'sandwiches', '||questionmark||', '||return||', '||return||', 'kramer:', 'hello', '||return||', '||return||', 'george:', 'well', 'i', "don't", 'know', 'if', "there's", 'gonna', 'be', 'any', 'place', 'to', 'eat', 'up', 'there', '||return||', '||return||', 'kramer:', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'hey', 'elaine', '||comma||', 'does', 'tony', 'like', 'peanut', 'butter', '||questionmark||', '||return||', '||return||', 'elaine:', 'hates', 'it', '||return||', '||return||', 'george:', 'good', 'thing', 'i', 'asked', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'she', 'says', 'jane', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'that', 'voice', '||comma||', "it's", 'very', 'familiar', '||period||', '||period||', 'throaty', '||comma||', 'almost', 'flinty', '||return||', '||return||', 'jerry:', 'did', 'you', 'say', 'flinty', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', '||comma||', '||leftparen||', 'in', 'a', 'flinty', 'voice', '||rightparen||', 'flinty', '||return||', '||return||', 'kramer:', '||leftparen||', 'singing', '||rightparen||', 'yodel', 'lay', 'hee', 'hoo', '||exclammark||', 'yodel', 'lay', 'hee', 'hoo', '||exclammark||', 'hello', '||exclammark||', '||leftparen||', 'kramer', 'jumps', 'around', 'george', 'from', 'one', 'side', 'to', 'an', 'other', '||rightparen||', '||return||', '||return||', 'echo:', 'hello', '||return||', '||return||', 'kramer:', 'hey', 'george', '||comma||', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'please', 'please', 'i', "don't", 'want', 'to', 'die', 'up', 'here', '||period||', 'please', '||comma||', 'stop', 'moving', "that's", 'all', "i'm", 'asking', '||period||', '||period||', 'kramer', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'let', 'go', '||comma||', 'hey', 'grab', 'the', 'rock', '||return||', '||return||', 'george:', 'what', 'rock', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'rock', '||return||', '||return||', 'george:', 'uh', 'oh', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'gotta', 'relax', '||period||', '||period||', 'try', 'the', 'yodel', '||leftparen||', 'chanting', '||rightparen||', 'yodel', 'lay', 'hee', 'hoo', '||return||', '||return||', 'george:', '||leftparen||', 'sobbing', '||rightparen||', 'yodel', 'lay', 'hee', 'hoo', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'chanting', '||rightparen||', 'yodel', 'lay', 'hee', 'hoo', '||return||', '||return||', 'george:', '||leftparen||', 'sobbing', '||rightparen||', 'yodel', 'lay', 'hee', 'hoo', '||period||', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'voice', 'from', 'below', '||rightparen||', 'george', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'tony:', 'take', 'the', 'rope', '||comma||', 'thread', 'it', 'through', 'the', 'carabiniere', 'and', 'knot', 'it', '||comma||', 'and', "i'll", 'climb', 'up', 'to', 'where', 'you', 'are', '||return||', '||return||', 'kramer:', 'alright', '||period||', '||period||', 'george', 'you', 'got', 'it', '||questionmark||', '||leftparen||', 'gives', 'him', 'the', 'rope', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||return||', '||return||', 'tony:', 'hey', 'george', '||comma||', 'you', 'got', 'anything', 'to', 'eat', 'dude', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'taking', 'it', 'out', 'of', 'his', 'jacket', 'pocket', '||rightparen||', 'yeah', 'i', 'got', 'some', 'sandwiches', '||period||', '||period||', 'i', 'got', 'tuna', '||period||', '||period||', 'and', 'salmon', 'salad', 'tony', 'because', 'i', 'know', 'you', "don't", 'like', 'peanut', 'butter', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'tony:', 'dude', 'aah', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george', '&', 'kramer:', 'ahh', '||period||', '||period||', '||period||', '||period||', '||period||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'look', 'at', 'that', 'i', 'got', 'oil', 'all', 'over', 'me', '||period||', 'can', 'i', 'have', 'your', 'napkin', '||questionmark||', '||return||', '||return||', 'jane:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'napkin', "i'm", 'dripping', '||return||', '||return||', 'jane:', 'well', 'where', 'is', 'your', 'napkin', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'used', 'it', 'up', '||return||', '||return||', 'jane:', 'well', 'i', 'need', 'mine', '||leftparen||', 'looks', 'at', 'her', 'watch', '||rightparen||', 'oh', 'god', 'loot', 'at', 'the', 'time', '||comma||', 'i', 'gotta', 'get', 'to', 'work', '||return||', '||return||', 'jerry:', 'you', 'know', "i'd", 'like', 'to', 'hear', 'about', 'this', 'job', 'of', 'yours', '||return||', '||return||', 'jane:', 'i', 'told', 'you', 'already', "it's", 'very', 'boring', 'you', 'know', 'i', 'think', 'i', 'got', 'a', 'little', 'too', 'much', 'garlic', '||comma||', 'can', 'i', 'have', 'a', 'piece', 'of', 'gum', '||return||', '||return||', 'jerry:', "you're", 'fine', '||leftparen||', 'goes', 'to', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'jane:', 'oh', 'how', 'does', 'this', 'thing', 'work', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'press', 'it', '||return||', '||return||', 'elaine:', "it's", 'elaine', '||return||', '||return||', 'jane:', 'oh', 'come', 'on', 'up', '||return||', '||return||', 'jerry:', '||leftparen||', 'coming', 'out', 'from', 'the', 'bathroom', '||rightparen||', 'who', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jane:', "it's", 'elaine', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', 'huh', '||period||', '||period||', 'is', 'she', 'coming', 'up', '||questionmark||', '||return||', '||return||', 'jane:', 'yeah', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', 'uh', '||period||', '||period||', 'you', 'know', 'your', 'breath', 'is', 'a', 'little', 'garlicky', 'you', 'better', 'take', 'some', 'gum', '||period||', '||return||', '||return||', 'jane:', 'ok', '||return||', '||return||', 'jerry:', 'yeah', 'have', 'a', 'couple', 'of', 'pieces', '||comma||', 'weak', '||comma||', 'weak', 'gum', 'yeah', '||return||', '||return||', 'jane:', 'hmm', '||return||', '||return||', 'jerry:', 'have', 'some', 'more', '||comma||', 'take', 'some', 'for', 'the', 'road', '||period||', '||return||', '||return||', 'jane:', "isn't", 'it', 'too', 'much', '||questionmark||', '||return||', '||return||', 'jerry:', 'trust', 'me', '||period||', '||period||', 'nah', "it's", 'good', '||return||', '||return||', 'jane:', 'smell', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', 'stinks', '||comma||', 'terrible', '||return||', '||return||', 'jerry:', 'hi', 'elaine', '||return||', '||return||', 'elaine:', 'hi', '||return||', '||return||', 'jerry:', 'this', 'is', 'jane', 'elaine', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'nice', 'to', 'meet', 'you', 'finally', '||return||', '||return||', 'jane:', "it's", 'so', 'nice', 'to', 'meet', 'you', '||leftparen||', 'chewing', '||rightparen||', 'i', 'look', 'forward', 'to', 'saturday', 'night', '||return||', '||return||', 'elaine:', 'yeah', 'me', 'too', '||return||', '||return||', 'jane:', 'ok', 'so', "i'll", 'see', 'you', 'saturday', 'night', '||return||', '||return||', 'jerry:', 'saturday', 'night', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'is', 'with', 'the', 'gum', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', "it's", 'a', 'big', 'problem', '||period||', '||period||', 'she', 'puts', 'like', 'four', 'pieces', 'in', 'her', 'mouth', '||comma||', "it's", 'ridiculous', '||comma||', 'i', "don't", 'think', "we're", 'gonna', 'be', 'able', 'to', 'get', 'together', 'on', 'saturday', 'night', '||return||', '||return||', 'elaine:', 'because', 'of', 'the', 'gum', '||return||', '||return||', 'jerry:', 'well', "it's", 'too', 'much', '||comma||', "it's", 'embarrassing', '||return||', '||return||', 'elaine:', 'why', 'does', 'she', 'have', 'to', 'chew', 'so', 'many', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'one', 'of', 'these', 'people', '||comma||', 'always', 'have', 'to', 'be', 'different', '||return||', '||return||', 'george:', "she's", 'there', '||comma||', 'i', 'can', 'hear', 'her', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "who's", 'gonna', 'tell', 'her', '||return||', '||return||', 'george:', 'huh', 'you', 'tell', 'her', '||return||', '||return||', 'kramer:', 'it', 'was', 'your', 'fault', '||return||', '||return||', 'george:', 'if', 'you', "hadn't", 'come', '||comma||', 'this', 'whole', 'thing', "wouldn't", 'have', 'happen', '||leftparen||', 'back', 'on', 'jerry', 'and', "elaine's", 'side', '||comma||', 'we', 'can', 'hear', 'george', 'saying', '||quotemark||', 'i', 'was', 'the', 'one', 'who', 'was', 'invited', '||quotemark||', '||comma||', 'jerry', 'opens', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||return||', '||return||', 'elaine:', 'hey', '||return||', '||return||', 'george', '&', 'kramer:', 'hey', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'have', 'fun', '||return||', '||return||', 'george', '&', 'kramer:', 'yeah', '||return||', '||return||', 'kramer:', 'for', 'a', 'little', 'while', '||return||', '||return||', 'elaine:', "where's", 'tony', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||period||', '||period||', '||return||', '||return||', 'george:', 'kramer', 'was', 'supposed', 'to', 'tie', 'a', 'knot', '||return||', '||return||', 'kramer:', 'whoa', 'whoa', 'ginga', '||comma||', 'you', 'were', 'supposed', 'to', 'tie', 'the', 'knot', '||return||', '||return||', 'elaine:', 'did', 'something', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'tony', '||period||', '||period||', 'took', 'a', 'bit', 'of', 'a', 'tumble', '||return||', '||return||', 'elaine:', 'his', 'face', '||comma||', 'did', 'something', 'happen', 'to', 'his', 'face', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'it', 'all', 'depends', 'on', 'what', 'you', 'mean', 'by', '||period||', '||period||', 'happen', '||return||', '||return||', 'george:', 'he', '||period||', '||period||', "he's", 'alive', '||return||', '||return||', 'kramer:', 'yeah', '||return||', '||return||', 'elaine:', 'what', 'happened', 'to', 'his', 'face', '||comma||', 'tell', 'me', '||comma||', 'what', 'happened', 'to', 'his', 'face', '||return||', '||return||', 'george:', 'well', 'you', 'see', 'he', 'slipped', '||comma||', 'and', 'he', 'landed', 'on', 'a', 'kinda', 'of', 'a', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'rock', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', 'the', 'ambulance', 'got', 'there', 'very', 'quickly', '||return||', '||return||', 'kramer:', 'it', 'was', 'a', 'big', 'rock', '||return||', '||return||', 'george:', 'we', 'rode', 'along', 'all', 'the', 'way', 'to', 'the', 'hospital', '||return||', '||return||', 'kramer:', 'yeah', 'i', 'sang', '99', 'bottles', 'of', 'beer', 'on', 'the', 'wall', '||return||', '||return||', 'jerry:', 'well', 'aside', 'from', 'that', 'from', 'that', '||comma||', 'how', 'did', 'he', 'like', 'the', 'sandwiches', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'huh', '||comma||', 'what', 'did', 'the', 'doctors', 'say', '||questionmark||', '||return||', '||return||', 'tony:', 'they', 'said', 'huh', '||period||', '||period||', 'they', 'said', "i'm", 'coming', 'along', '||leftparen||', "tony's", 'face', 'is', 'covered', 'by', 'bandages', '||rightparen||', '||return||', '||return||', 'elaine:', 'but', 'what', 'else', 'did', 'they', 'say', '||return||', '||return||', 'tony:', 'well', '||comma||', 'they', 'said', 'huh', 'tony', '||comma||', 'try', 'to', 'keep', 'it', 'clean', '||return||', '||return||', 'elaine:', 'right', 'yeah', '||period||', '||period||', 'no', 'i', 'mean', 'did', 'they', 'get', 'into', 'stuff', 'like', 'a', '||period||', '||period||', 'long', 'jagged', 'scars', 'or', '||period||', '||period||', 'gross', 'deformities', '||comma||', 'major', 'skin', 'grafts', '||comma||', 'stuff', 'like', 'that', '||return||', '||return||', 'tony:', 'i', 'really', "don't", 'remember', '||comma||', 'i', 'was', 'kinda', 'out', 'of', 'it', 'for', 'the', '1st', 'couple', 'of', 'days', '||comma||', 'i', 'was', 'on', 'a', 'lot', 'of', 'medication', '||comma||', 'it', 'was', 'kinda', 'like', 'haze', '||comma||', 'it', 'was', 'pretty', 'cool', '||return||', '||return||', 'elaine:', 'huh', '||leftparen||', 'smiles', '||rightparen||', 'but', 'huh', '||comma||', 'in', 'this', 'medicated', 'haze', '||comma||', 'in', 'this', 'woozy', 'state', '||comma||', 'um', 'do', 'you', 'recall', 'the', 'words', '||period||', '||period||', 'radical', 'reconstructive', 'surgery', 'being', 'uttered', '||questionmark||', '||return||', '||return||', 'tony:', 'i', "don't", 'know', '||comma||', 'i', "don't", 'know', '||return||', '||return||', 'elaine:', 'think', 'tony', '||comma||', 'think', '||return||', '||return||', 'tony:', "i'm", 'drawing', 'a', 'blank', '||comma||', 'babe', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', '||return||', '||return||', 'george:', 'hi', 'elaine', '||return||', '||return||', 'elaine:', 'this', "isn't", 'a', 'very', 'good', 'time', 'george', '||return||', '||return||', 'george:', 'i', 'just', 'wanted', 'to', 'talk', 'to', 'tony', 'for', 'a', 'minute', '||leftparen||', 'hands', 'elaine', 'some', 'stuff', '||rightparen||', '||return||', '||return||', 'tony:', 'step', 'off', 'george', '||comma||', 'i', "don't", 'wanna', 'see', 'you', '||return||', '||return||', 'george:', 'me', '||questionmark||', '||quotemark||', 'step', 'off', '||quotemark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'tony', 'says', 'you', 'better', 'step', 'off', 'george', '||return||', '||return||', 'george:', 'but', '||period||', '||period||', 'why', '||comma||', 'it', "wasn't", 'my', 'fault', '||comma||', 'i', '||period||', '||period||', 'you', 'asked', 'me', 'a', 'sandwich', '||comma||', 'i', '||period||', '||period||', 'i', 'make', 'such', 'delicious', 'sandwiches', 'elaine', '||return||', '||return||', 'tony:', 'just', 'beat', 'it', 'dude', '||exclammark||', '||return||', '||return||', 'george:', 'here', 'elaine', 'here', '||comma||', 'superman', '||leftparen||', 'hands', 'a', 'comic', 'book', 'to', 'elaine', '||comma||', 'who', 'passes', 'it', 'to', 'tony', '||rightparen||', 'please', '||comma||', 'next', 'time', 'it', 'will', 'only', 'be', 'the', 'two', 'of', 'us', '||return||', '||return||', 'tony:', 'there', "won't", 'be', 'any', 'next', 'time', 'george', '||return||', '||return||', 'george:', 'oh', 'tony', "don't", '||return||', '||return||', 'elaine:', 'ok', 'step', 'off', 'george', '||comma||', 'can', 'u', 'just', 'step', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'i', 'just', '||period||', '||period||', 'but', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'bye', 'bye', '||leftparen||', 'shuts', 'the', 'door', '||rightparen||', 'oh', '||period||', '||period||', '||leftparen||', 'opens', 'it', 'back', '||rightparen||', 'george', 'wait', 'wait', '||return||', '||return||', 'george:', 'yes', '||questionmark||', '||return||', '||return||', 'elaine:', 'would', 'you', 'throw', 'this', 'trash', 'out', '||leftparen||', 'closes', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', "i've", 'been', 'waiting', 'a', 'while', 'for', 'this', '||period||', 'you', 'know', "it's", 'a', 'shame', 'tony', 'got', 'all', 'banged', 'up', '||comma||', "we're", 'not', 'gonna', 'be', 'able', 'to', 'get', 'together', 'on', 'saturday', 'night', '||return||', '||return||', 'jane:', 'oh', 'that', 'is', 'too', 'bad', '||comma||', 'what', 'a', 'shame', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'a', 'damn', 'shame', '||comma||', 'a', 'damn', 'shame', '||exclammark||', '||return||', '||return||', 'jane:', 'well', 'maybe', "he's", 'feeling', 'better', '||return||', '||return||', 'jerry:', 'yeah', 'without', 'a', 'doubt', '||comma||', "i'm", 'down', '||leftparen||', 'kramer', 'enters', '||rightparen||', 'oh', 'hey', "how're", 'you', 'doing', '||questionmark||', 'jane', 'this', 'is', 'my', 'neighbor', 'kramer', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'jane:', 'hello', 'kramer', '||leftparen||', 'he', 'acts', 'all', 'weird', '||comma||', 'a', 'la', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', 'hello', 'jane', '||return||', '||return||', 'jane:', 'jerry', 'told', 'me', 'so', 'much', 'about', 'you', '||comma||', 'i', 'feel', 'like', 'i', 'know', 'you', 'intimately', '||return||', '||return||', 'kramer:', '||leftparen||', 'very', 'quickly', '||rightparen||', 'oh', 'i', "don't", 'think', 'so', '||comma||', 'no', 'we', 'never', 'met', '||comma||', 'i', 'never', 'talked', 'to', 'you', 'before', 'on', 'the', 'phone', '||comma||', 'alright', "i'll", 'see', 'you', 'later', 'buddy', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'uptown', '||comma||', 'to', 'the', 'y', '||return||', '||return||', 'jane:', 'oh', "i'm", 'going', 'uptown', 'too', '||comma||', 'you', 'wanna', 'split', 'a', 'cab', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'about', 'the', 'driver', '||questionmark||', '||return||', '||return||', 'jane:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', 'i', 'changed', 'my', 'mind', '||comma||', 'uh', 'yeah', 'i', "don't", 'think', "i'm", 'not', 'gonna', 'go', 'now', '||return||', '||return||', 'jane:', 'well', 'ok', "i'll", 'see', 'you', 'later', '||comma||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'jane:', 'nice', 'meeting', 'you', '||return||', '||return||', 'jerry:', 'see', 'ya', '||period||', '||leftparen||', 'jane', 'leaves', '||semicolon||', 'after', 'the', 'door', 'closes', 'kramer', 'jumps', 'in', 'shock', '||rightparen||', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'her', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'erika', '||comma||', "she's", 'erika', '||return||', '||return||', 'jerry:', 'oh', 'you', 'think', "she's", 'erika', '||comma||', 'the', 'phone', 'sex', 'woman', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'that', 'voice', 'is', 'tattooed', 'on', 'my', 'brain', '||comma||', "i'm", 'telling', 'you', "it's", 'her', '||return||', '||return||', 'jerry:', 'oh', "you're", 'crazy', '||return||', '||return||', 'kramer:', 'am', 'i', '||questionmark||', 'or', 'am', 'i', 'so', 'sane', 'that', 'you', 'just', 'blew', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'impossible', '||return||', '||return||', 'kramer:', 'iis', 'it', '||questionmark||', 'or', 'is', 'it', 'so', 'possible', 'your', 'heard', 'is', 'spinning', 'like', 'a', 'top', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', "can't", 'be', '||return||', '||return||', 'kramer:', "can't", 'it', '||questionmark||', 'or', 'is', 'your', 'entire', 'world', 'just', 'crashing', 'down', 'all', 'around', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', "that's", 'enough', '||return||', '||return||', 'kramer:', 'yeaaaaah', '||exclammark||', '||return||', '||return||', 'elaine:', "he's", 'supposed', 'to', 'get', 'the', 'bandages', 'off', 'on', 'sunday', '||period||', '||period||', 'what', 'if', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||leftparen||', 'acts', 'like', 'a', 'monster', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', "you're", 'afraid', 'he', 'might', 'look', 'like', 'zippy', 'the', 'pinhead', '||return||', '||return||', 'elaine:', 'yeah', 'i', 'mean', '||comma||', 'i', 'mean', 'what', 'is', 'my', 'obligation', 'here', '||comma||', 'you', 'know', 'we', 'were', 'just', 'dating', '||comma||', 'it', 'was', 'probably', 'gonna', 'be', 'over', 'in', 'a', 'couple', 'of', 'weeks', 'anyway', '||return||', '||return||', 'jerry:', 'oh', 'i', 'though', 'you', "didn't", 'care', 'about', 'his', 'looks', '||return||', '||return||', 'elaine:', 'i', 'lied', '||return||', '||return||', 'jerry:', 'aha', '||return||', '||return||', 'elaine:', 'are', 'you', 'kidding', '||comma||', "he's", 'a', 'mimbo', 'i', 'know', 'that', '||period||', '||period||', 'but', "he's", 'my', 'mimbo', '||comma||', 'you', 'know', 'and', 'even', 'if', 'he', 'is', 'a', 'hideous', 'freak', 'maybe', '||comma||', 'maybe', 'i', 'can', 'learn', 'to', 'love', 'him', '||comma||', 'maybe', 'in', 'some', 'final', 'irony', '||leftparen||', 'jerry', 'is', 'looking', 'the', 'other', 'way', '||rightparen||', '||comma||', "i'll", 'learn', 'what', 'love', 'really', 'is', '||period||', 'you', 'know', 'jerry', '||return||', '||return||', 'jerry:', 'oh', "i'm", 'sorry', 'i', "didn't", 'get', 'most', 'of', 'that', '||period||', '||period||', "isn't", 'that', 'kramer', 'over', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||return||', '||return||', 'jerry:', 'hey', 'kramer', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'hey', '||leftparen||', 'walks', 'by', 'jerry', 'and', "elaine's", 'table', '||rightparen||', "it's", 'all', 'set', '||return||', '||return||', 'jerry:', "what's", 'all', 'set', '||questionmark||', '||return||', '||return||', 'kramer:', 'erika', 'is', 'gonna', 'meet', 'me', 'here', '||comma||', 'now', "we're", 'gonna', 'find', 'out', 'the', 'truth', '||return||', '||return||', 'jerry:', "how's", 'you', 'get', 'her', 'to', 'meet', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||comma||', 'we', 'have', 'a', 'certain', 'chemistry', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||return||', '||return||', 'jane:', 'hi', 'i', 'thought', "i'd", 'find', 'you', 'here', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', 'erika', '||return||', '||return||', 'jane:', 'erika', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'can', 'u', 'say', 'things', 'like', 'that', 'over', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'jane:', 'what', 'things', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'selling', 'sexual', 'pleasure', 'over', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'jane:', 'i', 'sell', 'paper', 'goods', 'you', 'jerk', '||return||', '||return||', 'jerry:', 'paper', 'goods', '||questionmark||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||comma||', 'do', 'you', 'have', 'a', 'tissue', '||questionmark||', '||return||', '||return||', 'jane:', 'no', '||comma||', "i'm", 'sorry', '||comma||', 'i', "can't", 'spare', 'it', '||comma||', "there's", 'not', 'enough', 'to', 'spare', '||return||', '||return||', 'jane:', "where's", 'the', "ladies'", 'room', '||leftparen||', 'kramer', 'points', 'her', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'have', 'to', 'go', 'to', 'the', 'bathroom', 'too', '||leftparen||', 'runs', 'to', 'be', 'ahead', 'of', 'jane', '||semicolon||', 'jane', 'stops', 'and', 'looks', 'back', 'at', 'jerry', '||semicolon||', 'jerry', 'shugs', '||rightparen||', '||return||', '||return||', "[monk's:", 'the', 'bathroom]', '||return||', '||return||', 'jane:', 'oh', 'damn', '||return||', '||return||', 'elaine:', 'something', '||period||', '||period||', 'wrong', '||questionmark||', '||return||', '||return||', 'jane:', 'yeah', "there's", 'no', 'toilet', 'paper', 'in', 'here', '||comma||', 'i', 'usually', 'check', 'but', 'would', 'you', 'mind', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", '||comma||', 'i', "don't", 'have', 'it', '||comma||', 'i', "don't", 'have', 'a', 'square', 'to', 'spare', '||comma||', 'i', "can't", 'spare', 'a', 'square', '||return||', '||return||', 'jane:', 'hey', '||comma||', 'wait', 'a', 'minute', '||comma||', 'i', 'know', 'you', '||return||', '||return||', 'elaine:', "that's", 'right', 'honey', '||comma||', 'and', 'i', 'know', 'you', '||exclammark||', '||return||', '||return||', 'jane:', 'no', '||comma||', 'no', '||comma||', 'no', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'here', '||comma||', 'take', 'it', '||return||', '||return||', 'jerry:', 'thanks', '||return||', '||return||', 'jane:', '||leftparen||', 'walks', 'out', 'of', 'the', 'bathroom', '||comma||', 'very', 'furious', '||semicolon||', 'to', 'jerry', '||rightparen||', "don't", 'call', 'me', 'anymore', '||return||', '||return||', 'jane:', '||leftparen||', 'to', 'kramer', '||comma||', 'in', 'a', 'very', 'sensual', 'voice', '||rightparen||', 'you', 'either', '||return||', '||return||', 'jerry:', 'now', 'of', 'the', 'course', 'the', 'thing', 'is', 'extreme', 'sports', '||period||', 'bungie', 'jumping', '||period||', 'to', 'me', 'if', 'bungie', 'jumping', 'is', 'a', 'sport', 'so', 'is', 'being', 'a', 'crash', 'test', 'dummy', '||period||', 'just', 'leaning', 'does', 'not', 'make', 'it', 'a', 'sport', '||period||', "it's", 'like', 'a', 'wiley', 'coyote', 'idea', "isn't", 'it', '||questionmark||', 'the', 'thing', 'i', 'wonder', 'about', 'the', 'sky', 'diving', 'is', 'why', 'do', 'they', 'even', 'bother', 'with', 'the', 'helmets', '||questionmark||', 'can', 'you', 'almost', 'make', 'it', '||questionmark||', 'why', "don't", 'they', 'just', 'wear', 'a', 'party', 'hat', '||questionmark||', "what's", 'the', 'difference', '||questionmark||', 'you', 'jump', 'out', 'of', 'a', 'plane', 'from', 'twenty', 'thousand', 'feet', 'in', 'the', 'air', 'the', 'chute', "doesn't", 'open', 'i', 'got', 'news', 'for', 'you', '||comma||', 'the', 'helmet', 'is', 'now', 'wearing', 'you', 'for', 'protection', '||period||', 'later', 'on', 'the', "helmet's", 'talking', 'to', 'the', 'other', 'helmets', 'going', '||quotemark||', 'boy', "it's", 'a', 'good', 'thing', 'he', 'was', 'there', 'or', 'i', 'would', 'have', 'hit', 'the', 'ground', 'directly', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'do', 'you', 'believe', 'i', 'got', 'happy', 'new', 'yeared', 'today', '||questionmark||', "it's", 'february', '||period||', '||return||', '||return||', 'jerry:', 'i', 'once', 'got', 'happy', 'new', 'yeared', 'in', 'march', '||period||', '||return||', '||return||', 'elaine:', "it's", 'disgusting', '||period||', '||return||', '||return||', 'jerry:', "it's", 'pathetic', '||period||', '||period||', '||period||', '||period||', 'hey', '||comma||', 'is', 'it', 'cold', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'really', 'cold', '||period||', '||return||', '||return||', 'jerry:', 'scary', 'cold', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', "what's", 'your', 'definition', 'of', 'scary', 'cold', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', '||period||', '||leftparen||', 'pointing', 'at', 'george', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', 'as', 'she', 'says', 'it', '||rightparen||', 'what', 'is', 'that', '||comma||', 'ha', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'week', '||period||', 'my', 'father', 'got', 'a', 'deal', 'from', 'a', 'friend', 'of', 'his', '||period||', "it's", 'gore', '||dash||', 'tex', '||period||', 'you', 'know', 'about', 'gore', '||dash||', 'tex', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'like', 'saying', 'gore', '||dash||', 'tex', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'you', "can't", 'even', 'turn', 'around', 'in', 'that', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', '||return||', '||return||', 'elaine:', 'hey', 'george', '||comma||', 'can', 'you', 'feel', 'this', '||questionmark||', 'can', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'knock', 'it', 'off', '||period||', 'come', 'on', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'listen', 'we', 'should', 'stop', 'off', 'on', 'the', 'way', 'and', 'get', 'a', 'bottle', 'of', 'wine', 'or', 'something', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'pointing', 'at', 'elaine', 'as', 'he', 'goes', 'into', 'the', 'bedroom', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'these', 'people', 'invited', 'us', 'for', 'dinner', '||period||', 'we', 'have', 'to', 'bring', 'something', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "it's", 'rude', '||comma||', 'otherwise', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'just', 'going', 'there', 'because', "i'm", 'invited', '||comma||', "that's", 'rude', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'george:', 'so', "you're", 'telling', 'me', 'instead', 'of', 'them', 'being', 'happy', 'to', 'see', 'me', '||comma||', "they're", 'going', 'to', 'be', 'upset', 'because', 'i', "didn't", 'bring', 'anything', '||period||', 'ttst', '||dash||', '||dash||', 'you', 'see', 'what', "i'm", 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'fabric', 'of', 'society', 'is', 'very', 'complex', 'george', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'drink', 'wine', '||period||', 'i', 'drink', 'pepsi', '||period||', '||return||', '||return||', 'elaine:', 'ya', "can't", 'bring', 'pepsi', '||period||', '||leftparen||', 'elaine', 'starts', 'putting', 'on', 'her', 'coat', 'and', 'gloves', '||rightparen||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "we're", 'adults', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'telling', 'me', 'that', 'wine', 'is', 'better', 'than', 'pepsi', '||questionmark||', 'huh', '||leftparen||', 'snort', '||rightparen||', '||comma||', 'no', 'way', 'wine', 'is', 'better', 'than', 'pepsi', '||period||', '||return||', '||return||', 'jerry:', 'i', 'tell', 'you', 'george', '||comma||', 'i', "don't", 'think', 'we', 'want', 'to', 'walk', 'in', 'there', 'and', 'put', 'a', 'big', 'plastic', 'jug', 'of', 'pepsi', 'in', 'the', 'middle', 'of', 'the', 'table', '||period||', '||return||', '||return||', 'george:', 'i', 'just', "don't", 'like', 'the', 'idea', 'that', 'any', 'time', 'theres', 'a', 'dinner', 'invitation', "there's", 'this', 'annoying', 'little', 'chore', 'that', 'goes', 'along', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "you're", 'getting', 'to', 'be', 'an', 'annoying', 'little', 'chore', 'yourself', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "let's", 'go', '||period||', "who's", 'driving', '||questionmark||', '||leftparen||', 'claps', 'his', 'hands', 'and', 'rubs', 'them', 'together', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'are', '||period||', 'i', "can't", 'get', 'that', 'thing', 'in', 'my', 'car', '||period||', '||leftparen||', 'referring', 'to', 'george', '||rightparen||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', "where's", 'the', 'heat', 'in', 'this', 'car', '||questionmark||', 'come', 'on', 'elaine', 'warm', 'me', 'up', '||comma||', 'oh', '||exclammark||', "i'm", 'cold', '||period||', 'just', 'give', 'me', 'a', 'little', 'squeeze', '||period||', '||return||', '||return||', 'elaine:', 'jerry', 'get', 'off', 'of', 'me', '||period||', 'get', 'off', 'of', 'me', '||exclammark||', 'get', 'off', '||comma||', 'get', 'off', 'of', 'me', '||exclammark||', '||return||', '||return||', 'george:', 'hehehehehe', '||leftparen||', 'higher', 'tone', 'laugh', '||comma||', 'though', 'still', 'quietly', '||rightparen||', '||return||', '||return||', 'jerry:', "you're", 'pretty', 'comfortable', 'up', 'there', 'eh', '||comma||', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||period||', 'you', 'wish', 'you', 'had', 'this', 'coat', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'i', 'was', 'just', 'thinking', '||period||', 'the', 'four', 'of', 'us', "can't", 'show', 'up', 'with', 'just', 'one', 'bottle', 'of', 'wine', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'here', 'we', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'why', "don't", 'we', 'get', 'them', 'a', 'couch', '||questionmark||', '||leftparen||', 'kramer', 'laughs', '||rightparen||', 'well', 'rent', 'a', 'u', '||dash||', 'haul', '||dash||', '||dash||', 'well', 'bring', 'em', 'a', 'nice', 'sectional', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'low', 'tone', '||rightparen||', 'yeahhehehehe', '||return||', '||return||', 'elaine:', 'we', 'should', 'bring', 'some', 'cake', '||period||', 'will', 'you', 'stop', 'off', 'at', 'the', 'bakery', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'low', 'tone', '||rightparen||', 'all', 'right', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'just', 'get', 'some', 'ring', 'dings', 'from', 'the', 'liquor', 'store', '||questionmark||', '||return||', '||return||', 'elaine:', 'ring', 'dings', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'ring', 'dings', 'are', 'better', 'than', 'anything', "you're", 'gonna', 'get', 'at', 'a', 'bakery', '||period||', '||return||', '||return||', 'kramer:', 'ooooh', 'i', 'like', 'ring', 'dings', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'we', "can't", 'show', 'up', 'at', "someone's", 'house', 'with', 'ring', 'dings', 'and', 'pepsi', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'your', 'lights', 'are', 'on', '||exclammark||', '||leftparen||', 'shouting', 'out', 'the', 'window', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'kramer', '||rightparen||', "it's", 'a', 'funeral', 'procession', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'and', 'i', 'got', 'news', 'for', 'you', '||period||', 'i', 'show', 'up', 'with', 'ring', 'dings', 'and', 'pepsi', '||comma||', 'i', 'become', 'the', 'biggest', 'hit', 'of', 'the', 'party', '||period||', 'people', 'be', 'coming', 'up', 'to', 'me', '||comma||', '||quotemark||', 'just', 'between', 'you', 'and', 'me', "i'm", 'really', 'excited', 'about', 'the', 'ring', 'dings', 'and', 'the', 'pepsi', '||period||', 'what', 'are', 'we', '||comma||', 'europeans', 'with', 'the', 'beaujolais', 'and', 'chardonnay', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||comma||', 'thats', 'the', 'bakery', '||period||', 'stop', 'here', '||period||', 'stop', 'here', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'low', 'tone', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'let', 'me', 'out', '||period||', 'you', '||comma||', 'eh', '||comma||', 'whatever', 'your', 'name', 'is', '||return||', '||return||', 'jerry:', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'jerry', '||comma||', 'jerry', '||dash||', '||dash||', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'so', "we're", 'going', 'to', 'get', 'the', 'wine', 'and', "we'll", 'pick', 'you', 'up', 'here', 'in', 'ten', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||return||', '||return||', 'elaine:', 'ummm', '||comma||', 'i', 'love', 'the', 'smell', 'of', 'bakeries', '||period||', '||return||', '||return||', 'jerry:', 'mmm', '||period||', 'oh', 'look', 'elaine', '||comma||', 'the', 'black', 'and', 'white', 'cookie', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'the', 'black', 'and', 'white', '||period||', 'two', 'races', 'of', 'flavor', 'living', 'side', 'by', 'side', 'in', 'harmony', '||period||', "it's", 'a', 'wonderful', 'thing', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'i', 'often', 'wonder', 'what', "you'll", 'be', 'like', 'when', "you're", 'senile', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'looking', 'forward', 'to', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'think', 'it', 'will', 'be', 'a', 'very', 'smooth', 'transition', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', 'all', 'right', '||comma||', 'look', 'at', 'all', 'this', 'stuff', '||period||', 'what', 'are', 'we', "getting'", '||questionmark||', '||return||', '||return||', 'elaine:', 'chocolate', 'babka', '||exclammark||', "that's", 'their', 'specialty', '||period||', '||return||', '||return||', 'jerry:', 'love', 'that', 'babka', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'listen', 'elaine', '||comma||', 'when', 'we', 'get', 'up', 'to', 'the', 'door', '||comma||', 'you', '||comma||', 'you', 'hold', 'the', 'cake', 'box', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'just', 'standing', 'there', 'with', 'a', 'box', '||comma||', 'holding', 'it', 'by', 'the', 'little', 'string', '||period||', '||return||', '||return||', 'elaine:', 'you', 'think', "it's", 'effeminate', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'tad', 'dainty', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'we', 'forgot', 'to', 'pick', 'a', 'number', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'see', "that's", 'not', 'fair', '||period||', 'we', '||dash||', 'we', 'were', 'here', 'ahead', 'of', 'all', 'these', 'people', '||period||', '||return||', '||return||', 'elaine:', 'i', '||dash||', 'cu', '||dash||', 'di', '||dash||', 'ge', '||dash||', '||dash||', 'you', 'think', 'i', 'should', 'go', 'and', 'ask', 'her', 'for', 'hers', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'no', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', 'no', 'no', '||comma||', 'no', "it's", 'not', 'fair', '||period||', 'just', 'because', 'they', 'have', 'a', 'ticket', "doesn't", 'mean', 'they', 'were', 'here', 'first', '||period||', 'we', 'were', 'here', '||comma||', 'and', 'we', 'were', 'ahead', 'of', 'them', '||comma||', 'and', 'them', '||comma||', 'and', 'her', '||period||', 'come', 'on', "let's", 'just', 'go', 'ask', 'em', '||period||', 'come', 'on', '||period||', '||period||', '||period||', '||period||', 'excuse', 'me', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'exhales', '||rightparen||', 'well', '||comma||', "i'm", 'not', 'finding', 'a', 'spot', 'here', '||period||', 'what', 'do', 'you', 'want', 'to', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'just', 'double', 'park', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', "i'll", 'get', 'a', 'ticket', '||exclammark||', 'besides', '||comma||', 'what', 'if', 'somebody', 'wants', 'to', 'get', 'out', 'of', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'are', 'you', 'kidding', '||questionmark||', 'people', 'get', 'spaces', 'this', 'good', '||comma||', 'they', 'never', 'give', 'em', 'up', '||period||', '||return||', '||return||', 'kramer:', "that's", 'a', 'fallacy', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "i'll", 'tell', 'you', 'what', '||period||', '||period||', '||period||', 'why', "don't", 'you', 'go', 'into', 'the', 'store', 'and', "i'll", 'wait', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'go', 'into', 'the', 'store', 'and', "i'll", 'wait', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'george:', 'because', '||comma||', "i've", 'got', 'the', 'coat', '||period||', 'i', 'can', 'sit', 'in', 'the', 'car', 'and', 'not', 'get', 'cold', '||period||', '||return||', '||return||', 'kramer:', 'so', 'what', "i'm", 'going', 'to', 'leave', 'the', 'car', 'running', 'and', 'the', 'heat', "'ll", 'be', 'on', '||period||', '||return||', '||return||', 'george:', 'does', 'the', 'heater', 'even', 'work', 'in', 'this', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hey', '||comma||', 'eh', '||comma||', "there's", 'a', 'spot', 'right', 'in', 'front', 'of', 'the', 'liquor', 'store', '||period||', 'you', 'see', '||return||', '||return||', 'kramer:', 'i', 'see', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||comma||', 'hu', '||comma||', 'ho', 'ho', '||period||', '||return||', '||return||', 'elaine:', 'but', 'we', 'were', 'here', 'ahead', 'of', 'you', '||period||', '||return||', '||return||', 'barbara:', 'how', 'do', 'i', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'we', 'saw', 'you', 'come', 'in', '||period||', '||return||', '||return||', 'david:', 'well', '||comma||', "that's", 'easy', 'for', 'you', 'to', 'say', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'right', '||comma||', "that's", 'something', 'i', 'do', 'all', 'the', 'time', '||comma||', 'right', '||period||', 'i', 'make', 'up', 'stories', 'to', 'get', 'ahead', 'in', 'lines', 'at', 'bakeries', '||period||', '||return||', '||return||', 'clerk:', '46', '||questionmark||', '||return||', '||return||', 'elaine:', 'wait', '||comma||', 'wait', 'a', 'second', 'are', '||comma||', 'are', 'you', 'barbara', 'benedict', '||questionmark||', '||return||', '||return||', 'barbara:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', 'i', '||comma||', 'i', 'know', 'you', '||period||', 'i', '||dash||', 'im', '||comma||', "i'm", 'elaine', 'benes', '||period||', 'do', 'you', 'remember', 'we', 'met', 'at', 'linda', 'van', "grak's", 'baby', 'shower', '||period||', '||return||', '||return||', 'barbara:', "i'm", 'on', 'my', 'way', 'over', 'there', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'me', 'too', '||period||', '||return||', '||return||', 'david:', "you're", 'jerry', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'david', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', 'is', 'a', 'little', 'awkward', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'barbara:', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'we', 'were', 'here', '||comma||', 'ahead', 'of', 'you', '||period||', '||return||', '||return||', 'barbara:', "you're", 'not', 'getting', 'my', 'number', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'so', 'you', 'still', "don't", 'believe', 'us', '||period||', '||return||', '||return||', 'clerk:', '47', '||exclammark||', '||return||', '||return||', 'barbara:', 'thats', 'us', '||period||', '||return||', '||return||', 'elaine:', 'ohhh', '||comma||', 'ok', '||comma||', 'fine', '||comma||', 'fine', '||comma||', 'go', 'ahead', '||period||', 'but', 'listen', 'let', 'me', 'tell', 'you', 'something', 'as', 'soon', 'as', 'i', 'get', 'there', "i'm", 'going', 'to', 'tell', 'everyone', 'what', 'a', 'jerk', 'you', 'are', '||period||', '||return||', '||return||', 'barbara:', 'well', '||comma||', "i'll", 'be', 'there', 'ahead', 'of', 'you', 'and', "i'll", 'be', 'telling', 'them', 'what', 'a', 'jerk', 'you', 'are', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'turns', 'to', 'the', 'counter', '||rightparen||', "i'll", 'have', 'the', 'chocolate', 'babka', '||period||', '||return||', '||return||', 'clerk:', "you're", 'lucky', 'mrs', '||period||', 'benedict', "it's", 'our', 'last', 'one', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'what', 'are', 'we', 'getting', '||questionmark||', "it's", 'hot', 'in', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'ooo', '||comma||', 'what', 'do', 'you', 'say', 'we', 'get', 'a', 'mouton', 'cadet', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'its', 'a', 'bordeaux', '||period||', 'robust', '||comma||', 'bold', '||comma||', 'very', 'dry', '||period||', 'as', 'opposed', 'to', 'a', 'beaujolais', '||dash||', '||dash||', 'which', 'is', 'richer', 'and', 'fruitier', '||period||', 'ahh', '||comma||', "here's", 'one', '||period||', 'twelve', 'dollars', '||period||', '||return||', '||return||', 'george:', 'twelve', 'dollars', '||questionmark||', 'i', 'knew', 'we', 'should', 'have', 'gone', 'to', 'the', 'bakery', '||period||', 'i', 'guarantee', 'you', 'theyre', 'not', 'getting', 'no', 'twelve', 'dollar', 'cake', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', 'look', '||comma||', 'i', 'am', 'going', 'to', 'have', 'to', 'pay', 'you', 'back', 'later', '||period||', 'i', "don't", 'have', 'my', 'wallet', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'i', "don't", 'like', 'to', 'carry', 'my', 'wallet', '||period||', 'my', 'osteopath', 'says', 'that', "it's", 'bad', 'for', 'my', 'spine', '||period||', 'it', 'throws', 'my', 'hips', 'off', 'kilter', '||period||', '||leftparen||', 'makes', 'a', 'motion', 'with', 'his', 'hips', '||rightparen||', '||return||', '||return||', 'george:', '||quotemark||', 'throws', 'your', 'hips', 'off', 'kilter', '||quotemark||', 'so', "where's", 'your', 'money', '||questionmark||', '||leftparen||', 'pulls', 'out', 'his', 'wallet', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', 'never', 'take', 'it', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'get', 'by', '||period||', '||return||', '||return||', 'barbara:', 'see', 'you', 'later', '||leftparen||', 'exits', 'with', 'the', 'babka', '||rightparen||', '||return||', '||return||', 'elaine', '&', 'jerry:', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'last', 'babka', '||period||', 'they', 'got', 'the', 'last', 'babka', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', "they're", 'going', 'in', 'first', 'with', 'the', 'last', 'babka', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'our', 'babka', '||period||', '||return||', '||return||', 'elaine:', 'you', "can't", 'beat', 'a', 'babka', '||period||', '||return||', '||return||', 'jerry:', 'we', 'had', 'that', 'babka', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'exhales', '||rightparen||', "they're", 'going', 'to', 'be', 'heroes', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'are', 'we', 'going', 'to', 'do', 'now', '||period||', 'if', 'we', "can't", 'get', 'the', 'babka', 'the', 'whole', "thing's", 'useless', '||period||', '||return||', '||return||', 'elaine:', 'well', 'how', 'about', 'a', 'carrot', 'cake', '||questionmark||', '||return||', '||return||', 'jerry:', 'carrot', 'cake', '||questionmark||', 'now', 'w', '||dash||', 'why', 'is', 'that', 'a', 'cake', '||questionmark||', 'you', "don't", 'make', 'carrots', 'into', 'a', 'cake', '||period||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'black', 'forrest', '||questionmark||', '||return||', '||return||', 'jerry:', 'black', 'forrest', '||questionmark||', 'too', 'scary', '||period||', "you're", 'in', 'the', 'forrest', '||comma||', 'oohh', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', 'a', 'napoleon', '||questionmark||', '||return||', '||return||', 'elaine:', 'napoleon', '||questionmark||', "who's", 'he', 'to', 'have', 'a', 'cake', '||questionmark||', 'he', 'was', 'a', 'ruthless', 'war', 'monger', '||period||', 'might', 'as', 'well', 'get', 'mengele', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'our', 'babka', '||period||', 'we', 'had', 'that', 'babka', '||exclammark||', '||return||', '||return||', 'elaine:', "what's", 'this', 'one', '||questionmark||', '||return||', '||return||', 'clerk:', 'that', '||comma||', 'cinnamon', 'babka', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasp', '||rightparen||', '||return||', '||return||', 'jerry:', 'another', 'babka', '||questionmark||', '||return||', '||return||', 'clerk:', "there's", 'chocolate', 'and', "there's", 'cinnamon', '||period||', '||return||', '||return||', 'jerry:', 'well', '||dash||', 'well', 'we', 'got', 'to', 'get', 'the', 'cinnamon', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', 'they', 'got', 'the', 'chocolate', '||period||', "we'll", 'be', 'going', 'in', 'with', 'lesser', 'babka', '||period||', '||return||', '||return||', 'jerry:', 'i', 'beg', 'your', 'pardon', '||questionmark||', 'cinnamon', 'takes', 'a', 'back', 'seat', 'to', 'no', 'babka', '||period||', 'people', 'love', 'cinnamon', '||period||', 'it', 'should', 'be', 'on', 'tables', 'in', 'restaurants', 'along', 'with', 'salt', 'and', 'pepper', '||period||', 'anytime', 'anyone', 'says', '||comma||', '||quotemark||', 'oh', 'this', 'is', 'so', 'good', '||period||', "what's", 'in', 'it', '||questionmark||', '||quotemark||', 'the', 'answer', 'invariably', 'comes', 'back', '||comma||', 'cinnamon', '||period||', 'cinnamon', '||period||', 'again', 'and', 'again', '||period||', 'lesser', 'babka', '||dash||', 'i', 'think', 'not', '||period||', '||return||', '||return||', 'clerk:', '49', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'have', 'a', 'cinnamon', 'babka', '||period||', '||return||', '||return||', 'jerry:', 'and', 'a', 'black', 'and', 'white', 'cookie', '||comma||', 'for', 'me', '||period||', 'peace', '||exclammark||', '||return||', '||return||', 'clerk:', 'thatll', 'be', '13', '||period||', '05', '||return||', '||return||', 'george:', 'all', 'right', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'kramer:', 'yeuu', '||period||', '||return||', '||return||', 'clerk:', 'a', 'hundred', '||questionmark||', 'i', "can't", 'change', 'that', '||period||', '||return||', '||return||', 'george:', 'you', "can't", '||dash||', 'huhu', '||comma||', 'all', 'right', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'second', '||period||', 'i', 'can', 'get', 'change', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'anybody', 'got', 'change', 'for', 'a', 'hundred', '||questionmark||', '||return||', '||return||', 'george:', 'are', 'you', 'crazy', '||questionmark||', '||exclammark||', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', "you'll", 'get', 'us', 'killed', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'go', 'shouting', 'we', 'got', 'a', 'hundred', 'dollar', 'bill', '||period||', 'people', 'will', 'be', 'jumping', 'out', 'of', 'windows', 'on', 'top', 'of', 'us', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "let's", 'go', 'but', 'something', '||period||', 'then', "we'll", 'get', 'some', 'change', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'not', 'buying', 'something', 'just', 'to', 'get', 'change', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "there's", 'a', 'news', 'stand', 'right', 'over', 'there', '||period||', 'now', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'what', 'are', 'we', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'get', 'some', 'gum', 'or', 'something', '||period||', '||return||', '||return||', 'george:', 'pack', 'of', 'gum', '||period||', 'here', 'you', 'go', '||period||', '||leftparen||', 'hands', 'the', 'clerk', 'a', '$100', 'bill', '||rightparen||', '||return||', '||return||', 'clerk:', 'what', 'is', 'it', 'a', 'hundred', '||questionmark||', 'i', "can't", 'change', 'a', 'hundred', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'clerk:', 'you', 'got', 'to', 'buy', 'more', 'than', 'that', '||period||', '||return||', '||return||', 'kramer:', 'here', '||comma||', 'get', 'a', 'newspaper', '||period||', '||leftparen||', 'kramer', 'hands', 'george', 'a', 'newspaper', '||rightparen||', '||return||', '||return||', 'george:', 'newspaper', '||period||', '||return||', '||return||', 'clerk:', 'not', 'enough', '||period||', '||return||', '||return||', 'kramer:', 'clark', 'bar', '||period||', '||leftparen||', 'kramer', 'starts', 'tearing', 'the', 'candy', 'wrapper', 'open', 'with', 'his', 'teeth', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'clark', 'bar', '||period||', '||return||', '||return||', 'clerk:', 'keep', 'going', '||period||', '||return||', '||return||', 'george:', 'were', 'up', 'to', 'two', 'dollars', 'here', '||period||', '||return||', '||return||', 'kramer:', 'here', '||comma||', 'george', '||comma||', 'get', 'a', 'penthouse', 'forum', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'getting', 'a', 'penthouse', 'forum', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', 'no', '||comma||', 'thatll', 'make', 'great', 'dinner', 'party', 'conversation', '||period||', "we'll", 'read', 'the', 'letters', 'at', 'the', 'dinner', 'table', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'nice', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'did', 'you', 'ever', 'read', 'one', 'of', 'these', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'not', 'real', '||period||', "they're", 'all', 'made', 'up', '||period||', '||return||', '||return||', 'kramer:', 'ohh', '||comma||', "it's", 'real', '||period||', '||return||', '||return||', 'george:', 'well', 'you', 'know', 'there', 'is', 'an', 'unusual', 'number', 'of', 'people', 'in', 'this', 'country', 'having', 'sex', 'with', 'amputees', '||exclammark||', '||leftparen||', 'grabs', 'the', 'forum', 'from', 'kramer', 'and', 'walks', 'over', 'to', 'the', 'clerk', '||rightparen||', '||period||', '||period||', '||period||', 'penthouse', 'forum', '||comma||', 'newspaper', '||comma||', 'gum', '||comma||', 'clark', 'bar', '||period||', '||return||', '||return||', 'clerk:', '6', '||period||', '75', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'great', '||period||', 'all', 'right', '||comma||', 'with', 'the', 'wine', "i'm", 'in', 'over', 'twenty', 'dollars', 'now', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'man1:', '||leftparen||', 'gibberish', 'arabic', 'yelling', '||rightparen||', '||period||', '||period||', '||period||', 'big', 'coat', '||exclammark||', 'big', 'coat', '||exclammark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'im', 'sorry', '||comma||', "it's", 'a', 'new', 'coat', '||period||', 'it', '||dash||', "it's", 'gore', '||dash||', 'tex', '||period||', '||return||', '||return||', 'kramer:', 'you', 'better', 'be', 'careful', 'with', 'that', 'thing', '||period||', '||period||', '||period||', "you'll", 'start', 'a', 'war', '||period||', '||return||', '||return||', 'jerry:', 'uhm', '||comma||', 'see', 'the', 'key', 'to', 'eating', 'a', 'black', 'and', 'white', 'cookie', '||comma||', 'elaine', '||comma||', 'is', 'you', 'want', 'to', 'get', 'some', 'black', 'and', 'some', 'white', 'in', 'each', 'bite', '||period||', 'nothing', 'mixes', 'better', 'than', '||comma||', 'vanilla', 'and', 'chocolate', '||period||', 'and', 'yet', 'still', 'somehow', 'racial', 'harmony', 'eludes', 'us', '||period||', 'if', 'people', 'would', 'only', '*look', 'to', 'the', 'cookie*', '||dash||', '||dash||', 'all', 'our', 'problems', 'would', 'be', 'solved', '||period||', '||return||', '||return||', 'elaine:', 'well', 'your', 'views', 'on', 'race', 'relations', 'are', 'just', '||comma||', 'fascinating', '||period||', 'you', 'really', 'should', 'do', 'an', 'op', '||dash||', 'ed', 'piece', 'for', 'the', 'times', '||period||', '||leftparen||', 'op', '||dash||', 'ed', 'stands', 'for', 'opinions', 'and', 'editorials', '||rightparen||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', 'look', 'to', 'the', 'cookie', 'elaine', '||period||', '||period||', '||period||', 'look', 'to', 'the', 'cookie', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'in', 'the', 'box', '||rightparen||', 'well', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'a', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'oh', 'take', 'it', 'back', '||period||', "let's", 'get', 'another', 'one', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "we're", 'late', 'as', 'it', 'is', '||period||', "i'll", 'just', 'take', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', 'no', 'no', 'come', 'on', 'really', '||comma||', 'get', 'another', 'one', '||period||', 'itll', 'take', 'a', 'second', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', '||return||', '||return||', 'man:', 'hey', 'hey', '||comma||', "i'm", 'on', 'line', 'here', '||period||', '||return||', '||return||', 'elaine:', 'no', 'noo', 'no', '||comma||', 'we', 'just', 'bought', 'this', '||period||', '||period||', '||period||', '||period||', 'um', '||comma||', 'you', 'sold', 'us', 'a', 'cake', 'with', 'a', '||leftparen||', 'quietly', '||rightparen||', 'hair', 'on', 'it', '||period||', '||return||', '||return||', 'clerk:', 'you', 'have', 'to', 'take', 'a', 'number', '||period||', '||return||', '||return||', 'elaine:', 'we', 'waited', 'fifteen', 'minutes', 'for', 'this', '||period||', 'tst', '||dash||', 'you', 'sell', 'me', 'a', 'cake', 'with', 'a', 'hair', 'on', 'it', '||period||', 'then', 'you', 'want', 'me', 'to', 'wait', '||questionmark||', '||period||', '||period||', '||period||', 'what', 'are', 'you', 'doing', '||leftparen||', 'to', 'jerry', 'taking', 'a', 'number', '||rightparen||', 'youre', 'gonna', 'wait', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'not', 'going', 'to', 'eat', 'a', 'cake', 'with', 'a', 'hair', 'on', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', 'it', 'was', 'a', 'little', 'hair', '||period||', 'i', 'took', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', 'a', 'little', 'hair', '||questionmark||', 'do', 'you', 'think', 'that', 'makes', 'it', 'better', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'if', "it's", 'your', 'hair', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'if', "it's", 'your', 'hair', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'wh', '||dash||', 'wh', '||rightparen||', 'what', 'is', 'wrong', 'with', 'my', 'hair', '||questionmark||', 'nobody', 'takes', 'better', 'care', 'of', 'their', 'hair', 'than', 'me', '||period||', 'you', 'can', 'serve', 'dinner', 'on', 'my', 'head', '||period||', '||return||', '||return||', 'jerry:', 'who', 'needs', 'that', 'misty', 'herbal', 'rain', 'water', 'crap', 'they', 'sell', 'in', 'the', 'health', 'food', 'store', '||period||', 'i', 'use', 'prell', '||comma||', 'the', 'hard', 'stuff', '||period||', 'hundred', 'proof', '||dash||', 'takes', 'your', 'roots', 'out', '||period||', '||leftparen||', 'pretends', 'to', 'pull', 'hair', 'out', '||rightparen||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'fine', '||comma||', "we'll", 'just', 'wait', 'until', 'she', 'calls', 'the', 'number', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'we', 'should', 'just', 'forget', 'about', 'the', 'cake', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', "i'm", 'bringing', 'cake', '||exclammark||', '||leftparen||', 'looking', 'worried', 'and', 'apprehensive', '||rightparen||', '||return||', '||return||', 'george:', 'all', 'right', 'we', 'got', 'the', 'wine', '||period||', "aren't", 'we', 'lucky', '||questionmark||', 'we', 'got', 'wine', '||period||', 'whoopee', 'whoa', '||exclammark||', 'imagine', 'if', 'we', "didn't", 'bring', 'the', 'wine', '||period||', "we'd", 'be', 'shunned', 'by', 'society', '||period||', 'outcasts', '||exclammark||', "where's", 'your', 'wine', '||questionmark||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reading', 'from', 'the', 'penthouse', 'forum', '||rightparen||', '||quotemark||', 'i', 'know', 'this', 'is', 'going', 'to', 'sound', 'like', 'a', 'crazy', 'fantasy', 'but', 'every', 'word', 'of', 'this', 'story', 'is', 'true', '||quotemark||', '||leftparen||', 'exits', 'to', 'street', '||rightparen||', '||quotemark||', 'a', 'few', 'weeks', 'ago', 'my', 'girlfriend', 'happened', 'to', 'mention', 'to', 'me', 'how', 'attractive', 'she', 'thought', 'our', 'new', 'neighbor', 'linda', 'was', '||quotemark||', '||return||', '||return||', 'george:', 'l', '||dash||', 'look', 'at', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'ahh', '||period||', '||return||', '||return||', 'george:', 'somebody', 'double', 'parked', 'and', 'blocked', 'us', 'in', '||period||', 'd', '||dash||', 'does', 'anybody', 'know', 'whose', 'car', 'that', 'is', '||questionmark||', 'maybe', "there's", 'a', 'note', 'on', 'it', '||period||', 'ohh', '||dash||', 'oh', 'brother', '||period||', 'no', '||comma||', 'no', 'note', '||period||', 'can', 'you', 'believe', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', 'of', 'course', 'i', 'noticed', 'it', 'too', 'with', 'those', 'cannibal', 'breasts', 'and', 'pouty', 'lips', '||period||', 'i', "don't", 'have', 'to', 'tell', 'you', 'she', 'was', 'a', 'knock', 'out', '||period||', '||quotemark||', '||leftparen||', 'turns', 'the', 'page', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'really', 'can', 'not', 'comprehend', 'how', 'stupid', 'people', 'could', 'be', 'sometimes', '||period||', 'can', 'you', 'comprehend', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', 'i', "can't", 'comprehend', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'mean', 'we', 'can', 'put', 'a', 'man', 'on', 'the', 'moon', 'but', "we're", 'still', 'basically', 'very', 'stupid', '||period||', 'the', 'guy', "who's", 'car', 'this', 'is', '||questionmark||', 'he', 'could', 'be', 'one', 'of', 'the', 'guys', 'that', 'built', 'the', 'rocket', '||period||', 'you', 'see', 'what', "i'm", 'saying', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'yeah', '||comma||', 'yeah', '||period||', 'he', 'could', 'build', 'the', 'rocket', '||comma||', 'but', '||dash||', 'but', "he's", 'still', 'stupid', 'for', 'double', '||dash||', 'parking', 'and', 'blocking', 'somebody', 'in', '||period||', '||return||', '||return||', 'george:', 'so', 'you', 'really', 'understand', 'my', 'point', 'about', 'building', 'a', 'rocket', 'and', 'double', '||dash||', 'parking', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'on', 'one', 'hand', "he's", 'smart', 'with', 'rockets', 'and', 'on', 'the', 'other', 'hand', "he's", 'dumb', 'with', 'parking', '||period||', '||period||', '||period||', '||period||', "it's", 'cold', 'out', 'here', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', "it's", 'not', 'even', 'stupidity', '||period||', 'maybe', "it's", 'just', 'a', 'blatant', 'disregard', 'for', 'basic', 'human', 'decency', '||period||', 'yeah', 'this', 'how', "dictator's", 'start', '||period||', 'do', 'you', 'think', 'mussolini', 'would', 'circle', 'the', 'block', 'six', 'times', 'looking', 'for', 'a', 'spot', '||questionmark||', '||return||', '||return||', 'kramer:', 'how', 'about', 'idi', 'amin', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'ill', 'tell', 'you', '||comma||', 'if', 'i', 'was', 'running', 'for', 'office', 'i', 'would', 'ask', 'for', 'the', 'death', 'penalty', 'for', 'double', '||dash||', 'parkers', '||period||', 'if', 'this', 'is', 'allowed', 'to', 'go', 'on', 'this', 'is', 'not', 'a', 'society', '||period||', 'this', 'is', 'anarchy', '||exclammark||', '||return||', '||return||', 'kramer:', 'are', 'those', 'shoes', 'comfortable', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'not', 'really', '||period||', '||return||', '||return||', 'kramer:', 'cause', 'they', 'look', 'comfortable', '||period||', '||return||', '||return||', 'george:', 'i', 'know', "that's", 'why', 'i', 'bought', '`em', 'but', "they're", 'not', 'comfortable', '||period||', '||return||', '||return||', 'elaine:', 'why', "couldn't", 'we', 'just', 'take', 'the', 'hair', 'off', 'and', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'thats', 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'elaine:', 'whhhy', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', 'had', 'a', 'bad', 'experience', 'with', 'a', 'hair', 'when', 'i', 'was', 'younger', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', "i'd", 'rather', 'not', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'you', "can't", 'tell', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||period||', '||period||', '||period||', 'i', 'once', 'found', 'a', 'hair', 'in', 'my', 'farina', 'and', 'i', 'freaked', 'out', '||period||', '||return||', '||return||', '||leftparen||', '*farina:', 'a', 'meal', 'or', 'flour', 'obtained', 'chiefly', 'from', 'cereals', '||comma||', 'nuts', '||comma||', 'potatoes', 'or', 'indian', 'corn', '||comma||', 'and', 'used', 'as', 'a', 'breakfast', 'food', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'found', 'a', 'hair', 'in', 'your', 'farina', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'clerk\x92s', 'voice', '||leftparen||', 'off', 'camera', '||rightparen||', ':', '56', '||return||', '||return||', 'elaine:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'started', 'screaming', '||comma||', '||quotemark||', "there's", 'a', 'hair', 'in', 'my', 'farina', '||period||', "there's", 'a', 'hair', 'in', 'my', 'farina', '||period||', '||quotemark||', 'then', 'i', 'ran', 'out', 'of', 'the', 'house', 'and', 'i', 'was', 'running', 'and', 'running', '||period||', 'and', 'like', 'i', 'was', 'little', 'but', 'i', 'could', 'run', 'very', 'fast', '||period||', 'and', 'i', '||dash||', 'i', 'just', 'kept', 'running', '||leftparen||', 'in', 'the', 'background', '||dash||', '||dash||', 'clerks', 'voice', '57', '||rightparen||', 'and', 'they', 'found', 'me', 'like', 'three', 'hours', 'later', 'collapsed', 'at', 'a', 'construction', 'site', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'wow', '||period||', "who's", 'hair', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', "mother's", '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'ahhhhh', '||return||', '||return||', 'clerk:', '58', '||exclammark||', '||return||', '||return||', 'elaine:', 'ooo', '||comma||', "that's", 'us', '||period||', '||leftparen||', 'hits', 'jerry', 'in', 'the', 'arm', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'good', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sold', 'us', 'a', 'hair', 'with', 'a', 'cake', 'around', 'it', '||period||', "we'd", 'like', 'another', 'one', '||period||', '||return||', '||return||', 'clerk:', '||leftparen||', 'coughing', 'and', 'coughing', '||comma||', 'getting', 'really', 'bad', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'lovely', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', '||return||', '||return||', 'jerry:', 'thats', 'what', 'you', 'want', 'to', 'see', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'you', 'want', 'to', 'trade', 'your', 'hair', 'for', 'some', 'phlegm', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'thats', 'a', 'good', 'deal', '||dash||', '||dash||', 'you', 'win', 'the', 'pennant', 'with', 'that', 'trade', '||comma||', 'hair', 'for', 'phlegm', '||period||', '||return||', '||return||', 'clerk:', 'here', 'you', 'are', '||period||', '||leftparen||', 'hands', 'elaine', 'the', 'cake', 'box', '||rightparen||', '||return||', '||return||', 'elaine:', 'okay', '||period||', 'alright', 'we', 'got', 'the', 'cake', 'now', '||period||', 'where', 'is', 'george', 'and', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', 'double', '||dash||', 'parker', '||exclammark||', '||leftparen||', 'honk', '||comma||', 'honk', '||rightparen||', 'show', 'yourself', '||period||', '||leftparen||', 'honk', '||comma||', 'honk', '||rightparen||', 'come', 'on', 'out', '||comma||', 'im', 'freezing', '||exclammark||', '||leftparen||', 'honk', '||comma||', 'honk', '||rightparen||', '||return||', '||return||', 'george:', 'we', 'are', 'really', 'late', 'now', '||period||', "we're", 'in', 'big', 'trouble', '||period||', 'big', 'trouble', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||dash||', '||dash||', 'elaine', '||period||', '||return||', '||return||', 'kramer:', 'what', 'about', 'her', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', "i'm", 'a', 'little', 'scared', 'of', 'her', '||period||', '||return||', '||return||', 'kramer:', "you're", 'scared', 'of', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'ever', 'see', 'her', 'lose', 'her', 'temper', '||period||', 'i', 'was', 'once', 'late', 'cause', 'i', 'bought', 'a', 'panama', 'hat', '||dash||', '||dash||', 'she', 'grabbed', 'it', 'by', 'the', 'brim', '||comma||', 'pulled', 'it', 'down', 'so', 'hard', 'my', 'head', 'came', 'right', 'through', 'the', 'top', 'of', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "let's", 'go', 'inside', 'the', 'liquor', 'store', '||period||', 'im', 'freezin', 'in', 'here', '||period||', '||return||', '||return||', 'george:', 'why', "didn't", 'you', 'just', 'wear', 'a', 'heavier', 'coat', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'i', 'wanted', 'to', 'look', 'good', 'for', 'the', 'party', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', "that's", 'great', '||exclammark||', "that's", 'very', 'nice', '||period||', 'you', 'know', "we've", 'been', 'waiting', 'twenty', 'minutes', 'for', 'you', 'people', '||questionmark||', '||exclammark||', 'what', 'do', 'you', 'think', '||comma||', "you're", 'mussolini', '||questionmark||', '||exclammark||', '||return||', '||return||', 'man2:', 'back', 'off', '*puff', 'ball*', "it's", 'not', 'my', 'car', '||exclammark||', '||leftparen||', 'shoving', 'georges', 'shoulder', '||comma||', 'he', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', 'i', "wasn't", 'talking', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'wait', '`til', 'i', 'get', 'my', 'hands', 'on', 'that', 'george', '||period||', 'i', 'am', 'gonna', '*pull*', 'that', 'big', 'hood', 'over', 'his', 'little', 'head', '||period||', '||period||', '||period||', 'tie', 'the', 'strings', '||comma||', 'and', 'suffocate', '||period||', 'you', 'remember', 'that', 'panama', 'hat', '||questionmark||', 'that', 'was', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||comma||', 'wa', '||questionmark||', '||return||', '||return||', 'elaine:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||comma||', 'i', "don't", 'feel', 'so', 'good', '||period||', '||return||', '||return||', 'elaine:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'stomach', '||comma||', 'i', '||comma||', 'think', 'it', 'was', 'that', 'cookie', '||period||', '||return||', '||return||', 'elaine:', 'the', 'black', 'and', 'white', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'not', 'getting', 'along', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'got', 'david', 'duke', 'and', 'farrakhan', 'down', 'there', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mocking', '||dash||', 'in', 'a', 'dopey', 'voice', '||rightparen||', 'well', 'if', 'we', "can't", 'look', 'to', 'the', 'cookie', 'where', 'can', 'we', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'stomach', '||period||', 'i', 'feel', 'like', "i'm", 'going', 'to', 'throw', 'up', '||period||', '||return||', '||return||', 'elaine:', 'wait', '||comma||', 'what', 'about', 'your', 'vomit', 'streak', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', "haven't", 'thrown', 'up', 'since', 'june', '29th', '||comma||', '1980', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'oh', '||exclammark||', 'ooh', 'my', 'god', '||period||', 'oh', '||exclammark||', '||return||', '||return||', 'man3:', 'sooory', '||period||', '||return||', '||return||', 'elaine:', 'sorry', '||questionmark||', 'you', 'almost', 'took', 'my', 'toe', 'off', '||period||', 'why', "don't", 'you', 'watch', 'what', "you're", 'doing', 'you', '||comma||', 'lunatic', '||exclammark||', '||leftparen||', 'the', 'man', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'cont', '||rightparen||', '||period||', '||period||', '||period||', 'uh', '||comma||', 'jerry', '||comma||', 'i', 'think', 'he', 'broke', 'my', 'toe', '||period||', '||leftparen||', 'jerry', 'gets', 'up', '||rightparen||', 'w', '||dash||', "where're", 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'fourteen', 'years', 'down', 'the', 'drain', '||period||', '||leftparen||', 'points', 'and', 'walks', 'off', '||dash||', '||dash||', 'to', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'george:', 'do', 'you', 'think', 'chickens', 'have', 'individual', 'personalities', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shivering', '||rightparen||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'if', 'you', 'had', 'like', 'five', 'chickens', 'could', 'you', 'tell', 'them', 'apart', 'by', 'just', 'the', 'way', 'they', 'acted', '||questionmark||', 'or', 'would', 'they', 'all', 'just', 'be', 'walking', 'around', '||questionmark||', 'bak', '||comma||', 'bak', '||comma||', 'baak', '||comma||', 'bak', '||questionmark||', 'cause', 'if', 'they', 'have', 'individual', 'personalities', 'im', 'not', 'sure', 'we', 'should', 'be', 'eaten', '`em', '||period||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shivering', 'gibberish', '||rightparen||', 'waj', 'cha', 'jia', 'ja', '||return||', '||return||', 'clerk:', 'can', 'i', 'help', 'you', 'guys', 'with', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', '||dash||', '||dash||', 'we', 'bought', 'the', 'wine', 'here', 'before', '||comma||', 'but', 'now', '||comma||', 'you', 'know', "we're", 'bl', '||dash||', 'blocked', 'in', 'by', 'some', 'car', 'double', 'parked', 'and', "we're", 'just', 'waiting', 'for', 'the', 'guy', 'to', 'pull', 'out', '||period||', '||return||', '||return||', 'clerk:', 'well', 'wait', 'outside', '||period||', 'this', "isn't", 'a', 'hangout', '||period||', '||return||', '||return||', 'george:', 'but', 'my', 'friend', 'here', 'has', 'hypothermia', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shivering', '||rightparen||', 'hypothermia', '||period||', '||return||', '||return||', 'clerk:', 'all', 'right', 'guys', '||comma||', 'take', 'it', 'outside', '||period||', '||return||', '||return||', 'clerk:', "you're", 'paying', 'for', 'these', '||period||', '||return||', '||return||', 'elaine:', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'as', 'good', 'as', 'it', 'gets', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'that', 'coat', 'was', 'gore', '||dash||', 'tex', '||period||', 'its', 'worth', 'a', 'hell', 'of', 'a', 'lot', 'more', 'than', 'that', '||comma||', 'cheap', 'chardonnay', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shivering', '||rightparen||', 'you', 'know', "i'm", 'freezin', '||period||', 'im', 'definitely', 'freezin', '||period||', 'i', "can't", 'stop', 'shaking', '||period||', '||return||', '||return||', 'george:', "i'm", 'cold', 'too', '||period||', 'at', 'least', "you've", 'got', 'a', 'coat', '||period||', "let's", 'get', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'l', '||dash||', 'l', '||leftparen||', 'look', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', "that's", 'saddam', 'hussein', '||period||', 'the', 'dictator', '||period||', '||return||', '||return||', 'man4:', 'i', "wouldn't", 'walk', 'around', 'without', 'a', 'coat', 'in', 'this', 'weather', '||semicolon||', "you'll", 'catch', 'your', 'death', 'of', 'cold', '||period||', 'so', 'long', '||period||', '||leftparen||', 'waves', 'to', 'george', 'and', 'kramer', 'as', 'they', 'wave', 'back', 'at', 'him', '||period||', '||rightparen||', '||return||', '||return||', 'clerk:', 'can', 'i', 'getca', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', 'thanks', '||period||', '||return||', '||return||', 'clerk:', 'how', 'about', 'a', 'nice', 'box', 'of', '||quotemark||', 'scram', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 's', '||dash||', 's', '||dash||', 'somebody', 'double', 'parked', '||comma||', 'we', "couldn't", 'help', 'it', '||period||', 'it', 'might', 'have', 'been', 'saddam', 'hussein', '||comma||', "we're", 'not', 'really', 'sure', '||period||', 'he', 'eh', '||comma||', 'had', 'a', 'british', 'accent', 'though', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'somebody', 'put', 'a', 'cane', 'on', 'my', 'foot', '||period||', 'just', 'like', 'the', 'one', "i'm", 'going', 'to', 'put', 'up', 'your', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'happened', 'to', 'your', 'coat', '||questionmark||', 'and', 'what', 'is', 'the', 'smell', '||questionmark||', 'is', '||dash||', 'ya', '||comma||', 'what', 'are', 'you', 'drunk', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'had', 'to', 'give', 'it', 'to', 'the', 'liquor', 'store', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'spilled', 'some', 'chardonnay', '||period||', 'so', '||comma||', 'what', 'did', 'you', 'get', '||questionmark||', '||return||', '||return||', 'elaine:', 'cinnamon', 'babka', '||period||', '||return||', '||return||', 'george:', 'cinnamon', '||questionmark||', 'why', "didn't", 'cha', 'get', 'chocolate', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', '||exclammark||', '||return||', '||return||', 'elaine:', 'here', '||comma||', "here's", 'your', 'cake', '||period||', '||leftparen||', 'just', 'about', 'tosses', 'it', 'at', 'the', 'woman', '||rightparen||', '||return||', '||return||', 'george:', 'and', 'your', 'wine', '||period||', '||return||', '||return||', 'elaine:', 'see', "ya'", '||period||', '||return||', '||return||', 'jerry:', 'see', "ya'", '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'these', 'nature', 'shows', '||comma||', 'ill', 'watch', 'and', 'kind', 'of', 'nature', 'show', '||comma||', 'and', 'its', 'amazing', 'how', 'you', 'can', 'always', 'relate', '||comma||', 'to', 'whatever', 'theyre', 'talking', 'about', '||period||', 'you', 'know', 'like', 'youre', 'watching', 'the', 'african', 'dung', 'beetle', 'and', 'youre', 'going', 'boy', '||comma||', 'his', 'life', 'is', 'a', 'lot', 'like', 'mine', '||period||', 'and', 'you', 'always', 'root', 'for', 'whichever', 'animal', 'is', 'the', 'star', 'of', 'the', 'show', 'that', 'week', '||dash||', '||dash||', 'like', 'if', 'its', 'the', 'antelope', '||comma||', 'and', 'theres', 'a', 'lion', 'chasing', 'the', 'antelope', 'you', 'go', '||comma||', 'run', 'antelope', 'run', '||exclammark||', 'use', 'your', 'speed', '||comma||', 'get', 'away', '||exclammark||', 'but', 'the', 'next', 'week', 'its', 'the', 'lion', '||comma||', 'and', 'then', 'you', 'go', 'get', 'the', 'antelope', '||comma||', 'eat', 'him', '||comma||', 'bite', 'his', 'head', '||exclammark||', '||dash||', '||dash||', 'trap', 'him', '||comma||', 'dont', 'let', 'him', 'use', 'his', 'speed', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'well', 'did', 'he', 'bring', 'it', 'up', 'in', 'the', 'meeting', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'see', 'this', 't', '||dash||', 'shirt', '||comma||', 'six', 'years', "i've", 'had', 'this', 't', '||dash||', 'shirt', '||period||', "it's", 'my', 'best', 'one', '||comma||', 'i', 'call', 'him', 'golden', 'boy', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'm", 'on', 'the', 'phone', 'here', '||period||', '||return||', '||return||', 'jerry:', 'golden', 'boys', 'always', 'the', 'first', 'shirt', 'i', 'wear', 'out', 'of', 'the', 'laundry', '||period||', 'here', '||period||', '||period||', '||period||', 'touch', 'golden', 'boy', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', 'thanks', '||period||', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'yeah', '||comma||', 'yeah', "i'll", 'hold', '||period||', '||return||', '||return||', 'jerry:', 'but', 'see', 'look', 'at', 'the', 'collar', '||comma||', "it's", 'fraying', '||period||', 'golden', 'boy', 'is', 'slowly', 'dying', '||period||', 'each', 'wash', 'brings', 'him', 'one', 'step', 'closer', '||comma||', "that's", 'what', 'makes', 'the', 't', '||dash||', 'shirt', 'such', 'a', 'tragic', 'figure', '||period||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'just', 'let', 'golden', 'boy', 'soak', 'in', 'the', 'sink', 'with', 'some', 'woolight', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', '||exclammark||', '||exclammark||', 'the', 'reason', "he's", 'the', 'iron', 'man', 'is', 'because', 'he', 'goes', 'out', 'there', 'and', 'plays', 'every', 'game', '||period||', 'wash', '||exclammark||', '||exclammark||', '||exclammark||', 'spin', '||exclammark||', '||exclammark||', '||exclammark||', 'rinse', '||exclammark||', '||exclammark||', '||exclammark||', 'spin', '||exclammark||', '||exclammark||', '||exclammark||', 'you', 'take', 'that', 'away', 'from', 'him', '||comma||', 'you', 'break', 'his', 'spirit', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'yeah', '||period||', 'oh', '||exclammark||', 'what', '||questionmark||', 'he', 'is', '||exclammark||', 'oh', '||exclammark||', 'thats', 'fantastic', '||exclammark||', "i'm", 'so', 'excited', '||exclammark||', 'yes', "i'm", 'excited', '||comma||', 'ok', '||comma||', 'ok', "i'll", 'be', 'in', 'soon', '||exclammark||', 'yeah', '||comma||', 'yeah', '||comma||', "i'm", 'coming', '||comma||', "i'm", 'coming', '||exclammark||', 'ok', 'bye', '||period||', '||leftparen||', 'elaine', 'jumps', 'up', 'and', 'dances', 'around', '||rightparen||', 'yuri', 'testikov', '||comma||', 'the', 'russian', 'writer', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'guy', 'whos', 'in', 'the', 'gulag', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', "pendant's", 'publishing', 'his', 'new', 'book', '||comma||', 'and', "i'm", 'working', 'on', 'it', '||exclammark||', 'lippman', 'and', 'i', 'are', 'gonna', 'go', 'to', 'the', 'airport', 'on', 'thursday', 'and', 'pick', 'him', 'up', 'in', 'a', 'limousine', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'wanna', 'barrow', 'golden', 'boy', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||leftparen||', 'pushing', 'jerry', '||rightparen||', 'do', 'you', 'know', 'what', 'this', 'means', '||comma||', "it's", 'like', 'working', 'with', 'tolstoy', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', 'ya', 'know', 'i', 'read', 'an', 'unbelievable', 'thing', 'about', 'tolstoy', 'the', 'other', 'day', '||comma||', 'did', 'you', 'know', 'the', 'original', 'title', 'for', '||quotemark||', 'war', 'and', 'peace', '||quotemark||', 'was', '||quotemark||', 'war', '||dash||', '||dash||', 'what', 'is', 'it', 'good', 'for', '||questionmark||', '||quotemark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', '||leftparen||', 'looking', 'at', 'jerry', 'for', 'a', 'second', 'then', '||comma||', 'mockingly', 'nods', 'her', 'head', 'back', 'and', 'forth', '||rightparen||', '||period||', '||period||', '||period||', '||period||', 'ha', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', "i'm", 'not', 'kidding', 'elaine', "it's", 'true', '||comma||', 'his', 'mistress', "didn't", 'like', 'the', 'title', 'and', 'insisted', 'that', 'he', 'change', 'it', 'to', '||quotemark||', 'war', 'and', 'peace', '||quotemark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'but', "it's", 'a', 'line', 'from', 'that', 'song', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'were', 'they', 'got', 'it', 'from', '||exclammark||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'joking', '||exclammark||', '||return||', '||return||', 'george:', 'you', "can't", 'handle', 'the', 'truth', '||exclammark||', '||leftparen||', 'he', 'salutes', '||rightparen||', '||leftparen||', 'imitating', 'jack', 'nicholson', '[a', '||period||', 'k', '||period||', 'a', '||period||', 'col', '||period||', 'nathan', 'r', '||period||', 'jessep]', '||comma||', 'from', 'the', '1992', 'movie', 'a', 'few', 'good', 'men', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'in', 'jacks', 'voice', '||rightparen||', "i'm", 'working', 'on', 'my', 'jack', 'nicholson', '||comma||', 'you', "can't", 'handle', 'the', 'truth', '||exclammark||', '||leftparen||', 'he', 'salutes', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', 'your', 'mail', '||questionmark||', '||leftparen||', 'she', 'takes', 'a', 'magazine', 'and', 'starts', 'flipping', 'through', 'it', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'grabbed', 'it', 'on', 'the', 'way', 'out', '||comma||', 'i', "don't", 'want', 'my', 'mother', 'reading', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'your', 'alumni', 'magazine', '||period||', '||return||', '||return||', 'jerry:', 'your', 'mother', 'reads', 'your', 'mail', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'like', 'post', '||dash||', 'cards', 'an', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'she', "doesn't", 'open', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', "she'll", 'open', '||exclammark||', '||return||', '||return||', 'jerry:', "you've", 'caught', 'your', 'mother', 'opening', 'envelopes', '||exclammark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'curious', '||exclammark||', '||leftparen||', 'imitating', 'his', 'moms', 'voice', '||rightparen||', '||return||', '||return||', 'jerry:', "isn't", 'that', 'against', 'the', 'law', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'i', 'can', 'get', 'her', 'locked', 'up', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasp', '||rightparen||', 'hey', 'jerry', '||comma||', "you're", 'in', 'the', 'alumni', 'magazine', '||exclammark||', 'listen', 'to', 'this', 'jerry', 'seinfeld', 'has', 'appeared', 'on', '||quotemark||', 'david', 'letterman', '||quotemark||', 'and', 'the', '||quotemark||', 'tonight', 'show', '||quotemark||', 'and', 'he', 'did', 'a', 'pilot', 'for', 'nbc', 'called', '||quotemark||', 'jerry', '||quotemark||', '||period||', '||period||', '||period||', 'that', 'was', 'not', 'picked', 'up', '||period||', 'georgie', '||comma||', 'how', 'come', 'theres', 'not', 'anything', 'about', 'you', 'in', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', "can't", 'handle', 'the', 'truth', '||exclammark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||leftparen||', 'slaps', 'the', 'magazine', 'down', 'on', 'the', 'counter', '||rightparen||', 'this', 'is', 'too', 'much', 'fun', '||comma||', 'i', 'gotta', 'get', 'back', 'to', 'work', '||period||', '||leftparen||', 'heads', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'singing', '||rightparen||', 'johnny', 'yuma', 'was', 'a', 'rebel', '||comma||', 'yeah', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'all', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||leftparen||', 'startled', '||rightparen||', '||return||', '||return||', 'kramer:', 'unh', '||period||', '||period||', '||period||', '||period||', 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'its', 'ok', '||period||', '||leftparen||', 'starts', 'walking', 'down', 'the', 'hallway', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'oh', '||comma||', 'here', '||comma||', 'wait', 'wait', '||leftparen||', 'walks', 'a', 'few', 'steps', 'to', 'catch', 'up', 'to', 'her', 'as', 'she', 'stops', '||rightparen||', 'ah', '||comma||', 'maybe', 'you', 'could', 'ah', '||comma||', 'use', 'this', '||leftparen||', 'he', 'searches', 'through', 'his', 'jacket', '||rightparen||', 'ah', '||comma||', 'here', '||comma||', "it's", 'a', 'electronic', 'organizer', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'yeah', '||period||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'wh', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'here', 'it', 'is', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'for', 'phone', 'numbers', '||comma||', 'addresses', '||comma||', 'keep', 'appointments', '||comma||', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'got', 'an', 'alarm', 'that', 'beeps', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'i', "can't", 'believe', 'this', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "i've", 'been', 'wanting', 'to', 'get', 'one', 'of', 'these', 'things', '||exclammark||', 'are', 'you', 'sure', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'are', 'you', 'sure', 'you', "can't", 'use', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||period||', 'i', 'got', 'all', 'my', 'appointments', 'up', 'here', '||period||', '||leftparen||', 'he', 'points', 'to', 'his', 'head', '||rightparen||', '||return||', '||return||', 'elaine:', "where'd", 'you', 'get', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', 'bank', '||comma||', 'i', 'opened', 'up', 'a', 'new', 'account', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'did', 'you', 'see', 'that', 'whale', 'thing', 'on', 'tv', 'last', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'such', 'a', 'huge', 'whale', 'fan', '||period||', 'these', 'marine', 'biologists', 'were', "showin'", 'how', 'they', 'communicate', 'with', 'each', 'other', 'with', 'these', 'squeaks', 'and', 'squeals', '||comma||', 'what', 'a', 'fish', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'mammal', '||period||', '||return||', '||return||', 'george:', 'whatever', '||period||', '||leftparen||', 'george', 'looks', 'to', 'the', 'table', '||rightparen||', 'hey', 'new', 'tape', 'recorder', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'got', 'it', 'from', 'the', 'bank', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'overly', 'excited', '||rightparen||', 'hey', '||leftparen||', 'claps', 'hands', 'one', 'time', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'overly', 'excited', '||rightparen||', 'who', 'wants', 'to', 'have', 'some', 'fun', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'do', '||period||', '||return||', '||return||', 'george:', 'i', 'do', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'once', 'again', '||comma||', 'overly', 'excited', '||rightparen||', 'now', 'are', 'you', 'just', "sayin'", 'you', 'want', 'to', 'have', 'fun', 'or', 'do', 'you', 'reallllly', 'want', 'to', 'have', 'fun', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'really', 'wanna', 'have', 'fun', '||period||', '||return||', '||return||', 'george:', "i'm", 'just', "sayin'", 'i', 'wanna', 'have', 'some', 'fun', '||period||', '||return||', '||return||', 'kramer:', 'right', 'now', 'there', 'six', '||dash||', 'hundred', 'titleists', 'that', 'i', 'got', 'from', 'the', 'driving', 'range', 'in', 'the', 'trunk', 'of', 'my', 'car', '||period||', 'why', "don't", 'we', 'drive', 'out', 'to', 'rock', '||dash||', 'a', '||dash||', 'way', 'and', 'hit', '`em', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||dash||', '||leftparen||', 'very', 'over', 'excited', '||rightparen||', 'into', 'the', 'ocean', '||exclammark||', 'now', 'picture', 'this', '||period||', '||period||', '||period||', '||period||', 'we', 'find', 'a', 'nice', 'sweet', 'spot', 'between', 'the', 'dunes', '||comma||', 'we', 'take', 'out', 'our', 'drivers', '||comma||', 'we', 'tee', 'up', 'and', '||leftparen||', 'he', 'makes', 'a', 'golf', 'stroke', '||rightparen||', '||comma||', 'that', 'ball', 'goes', 'sailing', 'up', 'into', 'the', 'sky', 'holds', 'there', 'for', 'a', 'moment', 'and', 'then', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'gulp', '||exclammark||', '||return||', '||return||', 'george:', 'come', 'on', '||period||', 'ya', 'wanna', 'go', 'get', 'some', 'lunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'let', 'me', 'just', 'stop', 'by', 'the', 'cash', 'machine', 'and', "i'll", 'meet', 'you', 'over', 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "i'm", 'gonna', 'get', 'a', 'paper', '||period||', '||return||', '||return||', 'george:', 'keep', 'your', 'head', 'down', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||leftparen||', 'kramer', 'takes', 'a', 'huge', 'imaginary', 'swing', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'he', 'hits', 'a', 'few', 'keys', 'and', 'looks', 'over', 'at', 'her', '||rightparen||', 'cash', 'advance', '||period||', '||period||', '||period||', 'yes', '||leftparen||', 'hits', 'a', 'key', '||rightparen||', 'no', '||leftparen||', 'he', 'looks', 'over', 'again', '||rightparen||', 'balance', 'inquiry', '||period||', '||period||', '||period||', 'no', '||leftparen||', 'he', 'looks', 'again', '||rightparen||', 'receipt', '||period||', '||period||', '||period||', '||period||', 'no', '||leftparen||', 'he', 'looks', 'again', '||rightparen||', 'processing', '||period||', '||period||', '||period||', 'processing', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'opens', 'the', 'box', '||comma||', 'pulls', 'out', 'his', 'money', 'and', 'then', 'looks', 'at', 'the', 'woman', 'and', 'says', '||rightparen||', 'i', 'won', '||exclammark||', '||return||', '||return||', 'diane:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'diane:', 'its', 'diane', '||comma||', 'diane', 'deconn', '||comma||', 'from', 'queens', 'college', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'diane', '||period||', '||return||', '||return||', 'diane:', '||leftparen||', 'laughing', 'a', 'little', '||rightparen||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'good', '||period||', '||return||', '||return||', 'diane:', '||leftparen||', 'sighs', '||rightparen||', 'how', 'long', 'has', 'it', 'been', '||questionmark||', '||return||', '||return||', 'jerry:', 'since', 'college', '||period||', '||return||', '||return||', 'diane:', 'huh', '||period||', "i've", 'been', 'seeing', 'you', 'on', 'tv', "you're", "doin'", 'great', '||period||', '||return||', '||return||', 'jerry:', 'yeah', "pluggin'", 'along', '||period||', '||return||', '||return||', 'diane:', 'you', 'know', 'i', 'got', 'the', 'alumni', 'magazine', '||period||', 'what', 'ever', 'happened', 'to', 'your', 'friend', 'george', '||questionmark||', 'i', 'notice', 'i', 'never', 'see', 'his', 'name', 'in', 'there', '||period||', '||return||', '||return||', 'jerry:', 'well', "he's", 'kind', 'of', 'modest', '||period||', '||return||', '||return||', 'diane:', 'he', 'was', 'always', 'such', 'a', 'goof', '||dash||', 'off', '||period||', 'i', 'mean', 'did', 'he', 'ever', 'get', 'anywhere', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'diane:', 'yeah', '||questionmark||', 'what', 'field', '||questionmark||', '||return||', '||return||', 'jerry:', 'marine', 'biology', '||period||', '||return||', '||return||', 'diane:', 'george', 'is', 'a', 'marine', 'biologist', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'pretty', 'damn', 'good', 'one', '||comma||', 'too', '||exclammark||', '||return||', '||return||', 'diane:', 'i', "can't", 'believe', 'it', '||period||', 'i', '||dash||', 'i', 'would', 'never', 'had', 'thought', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', 'hes', 'specializing', 'in', 'whales', '||period||', "he's", 'working', 'on', 'lowering', 'the', 'cholesterol', 'level', '||comma||', 'in', 'whales', 'all', 'that', 'blubber', '||dash||', '||dash||', 'quite', 'unhealthy', '||period||', 'you', 'know', 'its', 'the', 'largest', 'mammal', 'on', 'earth', 'but', 'as', 'george', 'says', '||quotemark||', 'they', "don't", 'have', 'to', 'be', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'diane', 'deconn', '||questionmark||', 'you', 'saw', 'diane', 'deconn', '||exclammark||', '||return||', '||return||', 'jerry:', 'something', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'ahh', '||exclammark||', "how'd", 'she', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'looked', 'great', '||period||', '||return||', '||return||', 'george:', 'ahh', '||exclammark||', '||leftparen||', 'closes', 'his', 'eyes', 'and', 'rolling', 'his', 'head', 'back', '||rightparen||', 'umh', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'asked', 'about', 'you', '||period||', '||return||', '||return||', 'george:', 'she', 'asked', 'about', 'me', '||questionmark||', 'what', 'did', '||dash||', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', "how's", 'george', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', 'george', '||exclammark||', 'she', 'said', 'george', '||questionmark||', 'she', 'remembered', 'my', 'name', '||period||', '||leftparen||', 'loudly', '||dash||', '||dash||', 'to', 'a', 'passing', 'waitress', 'and', 'the', 'rest', 'of', 'the', 'restaurant', '||rightparen||', 'diane', 'deconn', 'remembered', 'my', 'name', '||period||', 'she', 'was', 'the', '||quotemark||', 'it', '||quotemark||', 'girl', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', 'she', 'asked', 'for', 'your', 'number', '||comma||', 'i', 'think', "she's", 'gonna', 'get', 'in', 'touch', 'with', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pauses', 'for', 'a', 'few', 'seconds', '||rightparen||', 'ok', '||comma||', "i'm", "tellin'", 'you', 'right', 'now', '||dash||', 'if', 'your', "kiddin'", 'around', "i'm", 'not', 'gonna', 'be', 'able', 'to', 'be', 'your', 'friend', 'anymore', '||period||', "i'm", 'serious', 'about', 'that', '||period||', 'you', 'got', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'no', 'problem', 'with', 'that', '||period||', '||return||', '||return||', 'george:', 'good', '||period||', 'cause', 'if', 'this', 'is', 'a', 'lie', '||comma||', 'if', 'this', 'is', 'a', 'joke', '||comma||', 'if', 'this', 'is', 'your', 'idea', 'of', 'some', 'cute', 'little', 'game', "we're", 'finished', '||exclammark||', '||return||', '||return||', 'jerry:', 'expect', 'a', 'call', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', "he's", 'not', 'kidding', '||period||', '||leftparen||', 'exhale', 'gasp', '||rightparen||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'i', 'should', 'tell', 'you', 'that', '||comma||', 'at', 'this', 'point', '||comma||', "she's", 'under', 'the', 'impression', 'that', 'youre', '||dash||', 'a', '||dash||', 'ah', '||return||', '||return||', 'george:', 'a', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'marine', 'biologist', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pauses', '||rightparen||', 'a', 'marine', 'biologist', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'george:', 'why', 'am', 'i', 'a', 'marine', 'biologist', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'may', 'have', 'mentioned', 'it', '||period||', '||return||', '||return||', 'george:', 'but', "i'm", 'not', 'a', 'marine', 'biologist', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'know', 'that', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||comma||', 'you', "don't", 'think', "it's", 'a', 'good', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'i', "didn't", 'even', 'know', 'it', 'was', 'a', 'job', '||period||', '||return||', '||return||', 'jerry:', 'oh', "it's", 'a', 'fascinating', 'field', '||exclammark||', '||return||', '||return||', 'george:', 'well', 'what', 'if', 'she', 'calls', 'me', '||questionmark||', 'what', 'am', 'i', 'supposed', 'to', 'say', '||questionmark||', '||exclammark||', '||leftparen||', 'hand', 'hits', 'the', 'table', '||rightparen||', '||return||', '||return||', 'george:', 'algae', '||comma||', 'obviously', 'plankton', '||comma||', 'hmhm', '||period||', 'i', "don't", 'know', 'what', 'else', 'i', 'could', 'tell', 'ya', '||comma||', 'ah', '||comma||', 'oh', 'i', '||dash||', 'i', 'just', 'got', 'back', 'from', 'a', 'trip', 'to', 'the', 'galapagos', 'islands', '||comma||', 'i', 'was', 'living', 'with', 'the', 'turtles', '||period||', '||return||', '||return||', '[limo', 'driving', 'on', 'the', 'street', '||dash||', '||dash||', 'then', 'inside', 'the', 'limo:', 'elaine', '||comma||', 'lippman', '||comma||', 'and', 'testikov', 'are', "talkin']", '||return||', '||return||', 'lippman:', 'we', 'have', 'got', 'you', 'in', 'a', 'very', 'nice', 'hotel', '||comma||', 'i', '||dash||', 'i', "don't", 'know', 'how', 'you', 'like', 'to', 'work', '||comma||', 'but', 'ah', '||comma||', 'i', 'can', 'arrange', 'for', 'an', 'office', 'if', 'you', 'like', '||period||', '||return||', '||return||', 'testikov:', '||leftparen||', 'russian', 'accent', '||rightparen||', 'i', 'work', 'in', 'hotel', '||period||', '||return||', '||return||', 'lippman:', 'oh', '||period||', '||return||', '||return||', 'testikov:', 'is', 'better', '||period||', '||return||', '||return||', 'testikov:', 'away', 'from', 'all', 'your', 'little', 'petty', 'bickerings', 'and', 'interference', '||period||', '||return||', '||return||', 'lippman:', 'you', 'know', '||comma||', 'tolstoy', 'use', 'to', 'write', 'in', 'the', 'village', 'square', '||period||', 'the', 'faces', 'inspired', 'him', '||period||', '||return||', '||return||', 'testikov:', '||leftparen||', 'proudly', '||rightparen||', 'he', 'did', 'not', 'need', 'inspiration', 'god', 'spoke', 'through', 'his', 'pen', '||period||', 'hu', 'hu', 'hu', '||leftparen||', 'pounds', 'his', 'fist', 'lightly', 'on', 'his', 'heart', '||rightparen||', '||return||', '||return||', 'elaine:', 'ohh', '||comma||', 'that', 'is', 'so', 'true', '||exclammark||', '||leftparen||', 'clutches', 'her', 'hands', 'to', 'her', 'chest', '||rightparen||', '||return||', '||return||', 'lippman:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'although', 'one', 'wonders', 'if', '||quotemark||', 'war', 'and', 'peace', '||quotemark||', 'would', 'has', 'been', 'as', 'highly', 'acclaimed', 'as', 'it', 'was', '||comma||', 'had', 'it', 'was', 'published', 'under', "it's", 'original', 'title', '||quotemark||', 'war', '||dash||', '||dash||', '||dash||', 'what', 'is', 'it', 'good', 'for', '||questionmark||', '||quotemark||', '||return||', '||return||', 'lippman:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'mr', '||period||', 'lippman', '||period||', 'it', 'was', '*his', 'mistress*', 'who', 'insisted', 'that', 'he', 'call', 'it', '||return||', '||return||', 'lippman:', 'elaine', '||return||', '||return||', '[background', 'cars:', 'honk', 'honk]', '||return||', '||return||', 'elaine:', '||quotemark||', 'war', 'and', 'peace', '||period||', '||quotemark||', '||return||', '||return||', 'lippman:', 'elaine', '||return||', '||return||', 'elaine:', '||quotemark||', 'war', '||dash||', '||dash||', 'what', 'is', 'it', 'good', 'for', '||period||', '||quotemark||', '||leftparen||', 'sings', '||rightparen||', 'absolutely', "nothin'", 'huh', '||exclammark||', 'say', 'it', 'again', '||exclammark||', 'ahehehehe', '||return||', '||return||', 'testikov:', '||leftparen||', 'quietly', '||rightparen||', 'ahhuuh', '||return||', '||return||', 'elaine:', '||leftparen||', 'spoken', 'to', 'testikov', '||rightparen||', "that's", 'a', 'song', '||return||', '||return||', 'lippman:', 'it', '||leftparen||', 'frustrated', 'and', 'trying', 'to', 'keep', 'her', 'from', 'saying', 'more', '||rightparen||', '||return||', '||return||', 'elaine:', 'they', '||dash||', 'they', 'took', 'it', 'from', 'tolstoy', '||period||', '||return||', '||return||', 'lippman:', 'no', '||period||', 'e', '||dash||', 'elaine', '||period||', '||return||', '||return||', 'testikov:', 'war', '||dash||', '||dash||', 'what', 'is', 'it', 'good', 'for', '||questionmark||', '||return||', '||return||', 'lippman:', 'it', '||dash||', 'no', '||dash||', "it's", 'just', 'her', 'sense', 'of', 'humor', '||period||', '||return||', '||return||', 'elaine:', 'no', 'its', 'not', '||period||', 'that', 'really', 'is', 'true', '||period||', '||return||', '||return||', 'testikov:', 'what', 'is', 'that', 'noise', '||exclammark||', '||return||', '||return||', 'lippman:', 'its', 'not', '||return||', '||return||', 'elaine:', 'yes', 'it', 'is', '||return||', '||return||', 'lippman:', 'no', 'its', 'not', '||exclammark||', '||exclammark||', '||return||', '||return||', 'testikov:', 'that', 'noise', '||exclammark||', '||return||', '||return||', 'lippman:', 'it', '||dash||', 'it', '||dash||', 'its', 'her', 'purse', '||period||', '||return||', '||return||', 'testikov:', 'where', 'is', 'that', 'noise', '||questionmark||', 'its', 'traveling', 'up', 'my', 'spine', '||exclammark||', 'into', 'my', 'brain', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', '||return||', '||return||', 'lippman:', "it's", 'coming', 'from', 'your', 'purse', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'it', 'must', 'be', 'my', 'new', 'organizer', '||period||', '||return||', '||return||', 'testikov:', 'that', 'noise', '||exclammark||', '||return||', '||return||', 'lippman:', 'yesturn', 'it', 'off', '||period||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'i', 'think', 'its', 'this', '||return||', '||return||', 'lippman:', 'no', 'its', 'the', 'button', '||period||', 'elaine', '||return||', '||return||', 'testikov:', 'i', 'can', 'not', 'stand', 'it', '||exclammark||', '||return||', '||return||', 'lippman:', "it's", 'the', 'button', 'at', 'the', 'top', '||comma||', 'the', 'top', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||period||', 'i', 'dont', 'quite', 'know', '||return||', '||return||', 'testikov:', 'will', 'you', 'turn', 'it', 'off', '||exclammark||', '||return||', '||return||', 'lippman:', 'the', 'one', 'at', 'the', 'top', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'im', 'gonna', 'work', 'on', 'that', '||return||', '||return||', 'testikov:', 'aaach', '||exclammark||', '||return||', '||return||', 'lippman:', 'yeah', 'ohoo', '||period||', '||return||', '||return||', 'jerry:', 'i', 'did', 'it', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', 'whatcha', 'had', 'to', 'tell', 'her', 'that', 'for', '||period||', 'you', 'put', 'me', 'in', 'a', 'very', 'difficult', 'position', '||comma||', 'marine', 'biologist', '||exclammark||', "i'm", 'very', 'uncomfortable', 'with', 'this', 'whole', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'with', 'all', 'do', 'respect', 'i', 'would', 'think', "it's", 'right', 'up', 'your', 'alley', '||period||', '||return||', '||return||', 'george:', 'well', "it's", 'not', 'up', 'my', 'alley', '||exclammark||', "it's", 'one', 'thing', 'if', 'i', 'make', 'it', 'up', '||period||', 'i', 'know', 'what', "i'm", 'doin', '||comma||', 'i', 'know', 'my', 'alleys', '||exclammark||', 'you', 'got', 'me', 'in', 'the', 'galapagos', 'islands', "livin'", 'with', 'the', 'turtles', '||comma||', 'i', "don't", 'know', 'where', 'the', 'hell', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'well', 'you', 'came', 'in', 'the', 'other', 'day', 'with', 'all', 'that', 'whale', 'stuff', '||comma||', 'the', 'squeaking', 'and', 'the', 'squealing', 'and', '||return||', '||return||', 'george:', 'look', '||comma||', 'why', "couldn't", 'you', 'make', 'me', 'an', 'architect', '||questionmark||', 'you', 'know', 'i', 'always', 'wanted', 'to', 'pretend', 'that', 'i', 'was', 'an', 'architect', '||period||', 'well', 'i', '||dash||', "i'm", 'supposed', 'to', 'see', 'her', 'tomorrow', '||comma||', 'i', '||dash||', 'i', '||dash||', "i'm", 'gonna', 'tell', 'her', "what's", 'goin', 'on', '||period||', 'i', 'mean', 'maybe', 'she', 'just', 'likes', 'me', 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'ya', 'want', 'these', '||leftparen||', 'he', 'throws', 'down', 'the', 'golf', 'clubs', '||dash||', '||dash||', 'kicks', 'the', 'bag', 'hard', '||rightparen||', 'i', "don't", 'want', 'em', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'stink', '||exclammark||', 'i', "can't", 'play', '||exclammark||', 'the', 'ball', 'is', 'just', 'sitting', 'there', '||comma||', 'jerry', '||comma||', 'and', 'i', "can't", 'hit', 'it', '||exclammark||', 'i', 'only', 'hit', 'one', 'really', 'good', 'ball', 'that', 'went', 'way', 'out', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'have', 'no', 'concentration', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'what', '||comma||', "what's", 'wrong', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'sand', '||comma||', 'i', 'can', 'get', 'rid', 'of', 'the', 'sand', '||period||', '||leftparen||', 'he', 'sits', 'at', 'the', 'table', '||comma||', 'looking', 'down', 'his', 'shirt', '||rightparen||', 'look', 'theres', 'still', 'some', 'in', 'here', '||comma||', 'it', "won't", 'go', 'away', '||exclammark||', 'look', 'i', 'even', 'got', 'sand', 'in', 'the', 'pockets', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', 'come', 'on', '||comma||', "you're", 'getting', 'it', 'all', 'over', 'the', 'floor', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'phone', '||rightparen||', 'hello', 'yeah', 'yes', 'it', 'is', 'really', 'ah', '||comma||', 'ah', 'could', 'you', 'hold', 'on', 'a', 'second', '||questionmark||', '||leftparen||', 'to', 'george', 'and', 'kramer', '||rightparen||', 'hey', 'listen', 'to', 'this', '||comma||', 'some', 'woman', 'found', 'an', 'electronic', 'organizer', '||comma||', 'my', 'name', 'was', 'in', 'it', '||comma||', 'she', 'wants', 'me', 'to', 'help', 'her', 'track', 'down', 'the', 'owner', '||period||', '||return||', '||return||', 'george:', "how'd", 'she', 'find', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'shes', 'waking', 'down', 'the', 'street', 'and', 'it', 'hit', 'her', 'in', 'the', 'head', '||exclammark||', '||return||', '||return||', 'corinne:', 'so', 'i', 'am', "walkin'", 'along', '||comma||', 'minding', 'my', 'own', 'business', 'when', 'all', 'off', 'the', 'sudden', 'this', 'thing', 'comes', 'flying', 'out', 'of', 'nowhere', 'and', 'clonks', 'me', 'right', 'on', 'the', 'head', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', '||return||', '||return||', 'corinne:', 'yeah', '||comma||', 'so', 'they', 'took', 'me', 'to', 'the', 'hospital', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'corinne:', 'and', 'they', 'put', 'me', 'in', 'this', 'thing', '||comma||', 'that', 'feels', 'like', 'a', 'coffin', '||comma||', 'for', 'forty', '||dash||', 'five', 'minutes', '||period||', 'have', 'you', 'ever', 'been', 'in', 'one', 'of', 'those', 'things', '||questionmark||', 'you', 'could', 'go', 'berserk', 'in', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'have', 'insurance', '||period||', '||period||', '||period||', '||return||', '||return||', 'corinne:', 'i', 'wish', '||exclammark||', '||return||', '||return||', 'jerry:', 'unbelievable', '||exclammark||', '||return||', '||return||', 'corinne:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'with', 'this', 'thing', '||period||', '||return||', '||return||', 'corinne:', '||leftparen||', 'hits', 'the', 'organizer', '||rightparen||', 'i', "don't", 'know', '||comma||', 'it', 'never', 'shuts', 'up', '||period||', 'so', 'anyway', '||comma||', 'you', 'could', 'see', 'why', 'i', 'would', 'be', 'interested', 'in', 'finding', 'this', 'person', '||period||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', 'you', 'should', 'not', 'have', 'to', 'pay', 'for', 'that', '||period||', '||return||', '||return||', 'corinne:', '||leftparen||', 'hits', 'the', 'organizer', '||comma||', 'picks', 'it', 'up', 'and', 'hits', 'it', 'on', 'to', 'the', 'table', '||dash||', '||dash||', 'shouting', '||rightparen||', 'stop', 'it', '||exclammark||', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'let', 'me', 'have', 'a', 'look', 'at', 'this', 'thing', '||period||', '||return||', '||return||', 'corinne:', 'ya', 'know', 'it', 'was', 'somebody', 'told', 'me', 'they', 'thought', 'they', 'saw', 'that', 'thing', 'come', 'out', 'of', 'a', 'limousine', '||period||', '||return||', '||return||', 'jerry:', 'typical', 'rich', 'people', '||comma||', 'using', 'the', 'world', 'for', 'their', 'personal', 'garbage', 'can', '||period||', '||return||', '||return||', 'corinne:', 'boy', 'am', 'i', 'lucky', 'your', 'name', 'came', 'up', '||period||', 'i', 'just', 'pushed', 'a', 'button', '||period||', '||return||', '||return||', 'jerry:', 'i', 'would', 'like', 'to', 'know', 'what', 'my', 'names', 'doin', 'in', 'this', "creep's", 'organizer', 'to', 'begin', 'with', '||period||', '||return||', '||return||', 'corinne:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'who', 'do', 'i', 'know', 'who', 'would', 'have', 'even', 'been', 'in', 'a', 'limousine', 'yesterday', 'anyway', '||period||', 'uhh', '||dash||', 'o', 'h', '||dash||', 'owow', '||exclammark||', '||return||', '||return||', 'kramer:', 'wha', '||dash||', '||dash||', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', '||quotemark||', 'great', '||quotemark||', 'organizer', 'you', 'gave', 'me', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'liked', 'it', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'it', "wouldn't", 'stop', 'beeping', '||comma||', 'in', 'the', 'car', 'so', 'testikov', '||comma||', 'through', 'it', 'out', 'the', 'window', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||leftparen||', 'continuing', 'to', 'itch', 'and', 'scratch', 'from', 'the', 'sand', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'transferred', 'everything', 'in', 'there', '||period||', 'i', 'threw', 'out', 'my', 'old', 'book', '||period||', "i'm", 'lost', 'now', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'sand', '||comma||', "it's", 'everywhere', '||exclammark||', '||leftparen||', 'blows', 'on', 'his', 'arm', '||rightparen||', '||return||', '||return||', 'elaine:', 'ok', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', 'yei', '||dash||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'there', 'you', 'are', '||exclammark||', '||return||', '||return||', 'elaine:', 'there', 'you', 'are', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'what', 'do', 'you', 'have', 'to', 'say', 'for', 'yourself', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'what', 'do', 'you', 'have', 'to', 'say', 'for', 'yourself', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'should', 'i', 'have', 'anything', 'for', 'say', 'for', 'myself', '||questionmark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'war', '||dash||', '||dash||', 'what', 'is', 'it', 'good', 'for', '||questionmark||', '||quotemark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'a', '||dash||', 'ahahahahah', '||period||', 'who', 'told', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', '||dash||', 'hu', 'hu', 'hu', 'hu', '||period||', 'yuri', 'testikov', '||comma||', 'the', 'russian', 'writer', '||exclammark||', 'hellooo', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'told', 'testikov', '||comma||', '||leftparen||', 'elaine', 'nods', '||rightparen||', 'that', 'tolstoy', 'wanted', 'to', 'name', 'his', 'book', '||quotemark||', 'war', '||dash||', '||dash||', 'what', 'is', 'it', 'good', 'for', '||questionmark||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'hu', '||period||', 'and', 'do', 'you', 'know', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'can', 'i', 'take', 'a', 'guess', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'please', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'i', "don't", 'know', '||comma||', 'he', 'threw', 'your', 'organizer', 'out', 'the', 'window', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'how', 'did', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'i', 'know', 'who', 'has', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasps', '||rightparen||', 'how', 'did', 'you', 'find', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'the', 'woman', 'who', 'got', 'hit', 'in', 'the', 'head', 'with', 'it', 'found', 'my', 'name', '||comma||', 'called', 'me', 'up', '||comma||', 'and', 'we', 'met', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasps', '||rightparen||', 'where', 'is', 'it', '||comma||', 'give', 'it', 'to', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'why', 'not', '||period||', '||return||', '||return||', 'jerry:', 'because', "she's", 'not', 'returning', 'it', 'until', 'she', 'gets', 'the', 'money', 'back', 'for', 'the', 'hospital', 'bill', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', "didn't", 'do', 'it', '||period||', 'testikov', 'did', 'it', '||comma||', 'he', 'should', 'pay', 'for', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'much', 'is', 'testikov', 'getting', 'from', 'pendant', 'for', 'this', 'book', '||questionmark||', '||return||', '||return||', 'elaine:', 'one', 'million', '||period||', '||return||', '||return||', 'jerry:', 'well', "that's", 'a', 'start', '||period||', '||return||', '||return||', 'george:', 'then', 'of', 'course', 'with', 'evolution', '||comma||', 'the', 'octopus', 'lost', 'the', 'nostrils', 'and', 'took', 'on', 'the', 'more', 'familiar', 'look', 'that', 'we', 'know', 'today', '||period||', '||return||', '||return||', 'diane:', 'uh', '||dash||', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'but', 'if', 'you', 'still', 'look', 'closely', 'you', 'can', 'see', 'ah', '||comma||', 'a', 'little', 'bump', 'where', 'the', 'nose', 'use', 'to', 'be', '||period||', 'huhuhuhu', '||period||', '||return||', '||return||', 'diane:', 'wow', '||period||', '||return||', '||return||', 'george:', 'but', 'enough', 'about', 'fish', '||comma||', 'huhuhu', '||period||', 'i', 'can', 'discuss', 'other', 'things', 'you', 'know', '||comma||', 'ah', 'architecture', '||period||', 'huhu', '||period||', '||leftparen||', 'makes', 'a', 'wide', 'gesture', 'with', 'his', 'arms', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', 'room', "testikov's", 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', '308', '||period||', 'oh', '||comma||', "i'm", 'crazy', 'for', 'doing', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'want', 'your', 'organizer', 'back', "don't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'are', 'you', 'so', 'interested', '||dash||', '||dash||', 'you', 'want', 'to', 'take', 'her', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'you', 'know', 'when', 'superman', 'saves', 'someone', 'no', 'one', 'asks', 'if', "he's", 'trying', 'to', 'hit', 'on', 'her', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "you're", 'not', 'superman', '||period||', '||return||', '||return||', 'jerry:', 'well', "you're", 'not', 'lois', 'lane', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'listen', '||comma||', 'you', 'got', 'the', 'tape', '||dash||', 'recorder', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'i', 'got', 'it', '||period||', 'you', 'sure', 'you', 'want', 'to', 'do', 'this', '||questionmark||', '||leftparen||', 'hands', 'elaine', 'the', 'tape', 'recorder', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'yeah', 'i', 'gotta', 'get', 'testikov', 'on', 'tape', '||period||', 'if', 'this', 'woman', 'ends', 'up', 'in', 'the', '||quotemark||', 'new', 'england', 'journal', 'of', 'medicine', '||quotemark||', "i'm", 'not', 'gonna', 'pay', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'here', 'she', 'comes', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'corinne:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'this', 'is', 'corinne', '||period||', '||return||', '||return||', 'corinne:', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', '||leftparen||', 'sighs', '||rightparen||', 'you', 'got', 'the', 'organizer', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', 'lets', 'go', '||period||', "we'll", 'meet', 'you', 'back', 'down', 'here', 'in', 'ten', 'minutes', '||comma||', 'hopefully', 'with', 'the', 'money', '||period||', '||return||', '||return||', 'diane:', 'your', 'parents', 'must', 'be', 'so', 'proud', 'of', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "they're", 'busting', '||exclammark||', '||return||', '||return||', 'diane:', 'hmhm', '||period||', '||return||', '||return||', 'diane:', 'what', 'are', 'those', 'people', 'doing', 'over', 'there', '||questionmark||', '||return||', '||return||', 'testikov:', '||leftparen||', 'in', 'a', 'loud', 'and', 'cranky', 'voice', '||rightparen||', 'what', '||comma||', 'come', 'in', '||dash||', 'come', 'in', '||dash||', 'come', 'in', 'miss', 'benes', '||exclammark||', 'that', 'is', 'if', 'you', 'can', 'spare', 'a', 'minute', 'from', 'your', 'busy', 'schedule', '||exclammark||', 'and', 'you', 'bring', 'guest', 'for', 'my', 'entertainment', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'yes', 'this', 'is', 'my', 'friend', 'jerry', '||period||', 'um', '||comma||', 'he', 'accompanied', 'me', '||comma||', 'ya', 'know', '||leftparen||', 'clears', 'throat', '||rightparen||', '||comma||', 'single', 'women', 'in', 'a', 'big', 'city', 'can', 'be', 'dangerous', '||comma||', 'so', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'th', '||dash||', "that's", 'why', 'i', 'where', 'these', 'sneakers', '||comma||', 'in', 'case', 'of', 'any', 'trouble', '||dash||', '||dash||', 'zip', '||comma||', "i'm", 'gone', '||period||', '||leftparen||', 'makes', 'a', 'running', 'motion', 'with', 'both', 'arms', 'and', 'his', 'right', 'foot', '||rightparen||', '||return||', '||return||', 'testikov:', 'yeah', '||comma||', 'yeah', '||period||', 'the', 'sneakers', '||period||', 'all', 'the', 'americans', 'with', 'the', 'sneakers', '||period||', 'always', 'running', 'from', 'something', '||period||', 'ya', 'ya', '||comma||', 'well', 'sit', '||comma||', 'stop', 'running', '||comma||', 'ehh', '||period||', 'two', 'minutes', '||comma||', 'i', 'give', 'you', 'latest', 'manuscript', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'rimsky', '||dash||', '||dash||', 'great', 'great', 'book', 'if', 'i', 'may', 'say', 'so', 'sir', '||period||', 'i', 'almost', 'read', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||leftparen||', 'she', 'nods', 'in', 'agreement', '||rightparen||', '||return||', '||return||', 'corinne:', 'what', '||exclammark||', '||return||', '||return||', 'hotel', 'clerk:', 'if', 'you', "can't", 'thing', 'off', '||comma||', "i'll", 'have', 'to', 'ask', 'you', 'to', 'leave', '||period||', '||return||', '||return||', 'corinne:', "i'm", 'waitin', 'for', 'two', 'people', '||exclammark||', '||leftparen||', 'takes', 'a', 'drag', 'on', 'the', 'cigarette', '||rightparen||', '||return||', '||return||', 'hotel', 'clerk:', 'well', 'you', 'can', 'wait', 'for', 'them', 'outside', '||period||', '||return||', '||return||', 'corinne:', 'yeah', '||comma||', '||leftparen||', 'she', 'blows', 'smoke', 'out', 'as', 'she', 'speaks', '||dash||', '||dash||', 'it', 'rises', 'as', 'in', 'front', 'of', 'her', '||rightparen||', 'i', 'guess', "i'd", 'better', '||period||', 'i', "wouldn't", 'want', 'to', 'take', 'any', 'attention', 'away', 'from', 'the', 'hookers', '||exclammark||', '||return||', '||return||', 'hotel', 'clerk:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'out', '||comma||', 'out', '||period||', '||return||', '||return||', 'corinne:', 'whatever', 'you', 'say', '||comma||', 'cro', '||period||', '||period||', 'w', '||dash||', 'well', '||exclammark||', '||return||', '||return||', 'diane:', "what's", 'going', 'on', 'over', 'here', '||questionmark||', '||return||', '||return||', 'woman', 'at', 'beach:', 'there', 'is', 'a', 'beached', 'whale', '||comma||', "she's", 'dying', '||period||', '||return||', '||return||', 'voice:', 'is', 'anyone', 'here', 'a', 'marine', 'biologist', '||questionmark||', '||return||', '||return||', 'testikov:', 'here', 'is', 'latest', 'draft', '||period||', 'i', 'see', 'you', 'next', 'week', '||period||', 'same', 'time', '||comma||', 'same', 'day', '||period||', '||leftparen||', 'smacks', 'the', 'manuscript', 'into', 'elaines', 'hand', '||rightparen||', 'on', 'time', 'please', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'ok', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'nice', 'meeting', 'you', '||return||', '||return||', 'testikov:', 'aah', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'a', 'real', 'pleasure', '||period||', '||leftparen||', 'jerry', 'is', 'being', 'sarcastic', '||rightparen||', '||return||', '||return||', 'testikov:', 'ya', 'ya', '||period||', '||leftparen||', 'wipes', 'his', 'nose', 'with', 'a', 'handkerchief', '||rightparen||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'oh', '||dash||', 'ah', '||comma||', 'by', 'the', 'way', 'mr', '||period||', 'testikov', 'um', '||comma||', 'do', 'you', 'remember', 'the', 'other', 'day', 'when', 'we', 'were', 'in', 'the', 'limo', 'and', 'ah', '||comma||', 'my', 'organizer', 'started', 'making', 'noise', 'and', 'you', 'threw', 'it', 'out', 'the', 'window', '||questionmark||', '||return||', '||return||', 'testikov:', '||leftparen||', 'quietly', '||rightparen||', 'yes', '||period||', 'how', 'could', 'i', 'forget', '||questionmark||', 'heehe', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'well', 'um', '||comma||', 'would', 'you', 'believe', 'that', 'it', 'actually', '||comma||', 'hit', 'somebody', 'in', 'the', 'head', '||period||', '||return||', '||return||', 'jerry:', 'right', 'in', 'the', 'head', '||exclammark||', '||leftparen||', 'leans', 'in', 'and', 'points', 'at', 'testikov', '||rightparen||', '||return||', '||return||', 'elaine:', 'boing', '||exclammark||', 'hehe', 'hehe', '||period||', '||leftparen||', 'makes', 'a', 'hand', 'gesture', 'to', 'her', 'forehead', 'and', 'away', '||rightparen||', '||return||', '||return||', 'testikov:', '||leftparen||', 'shouting', '||rightparen||', 'what', 'is', 'that', 'noise', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'thats', 'nothing', '||period||', 'um', 'and', 'anyway', 'um', '||return||', '||return||', 'testikov:', 'whats', 'going', 'on', 'huh', '||exclammark||', '||leftparen||', 'he', 'grabs', 'elaines', 'purse', '||rightparen||', 'that', 'noise', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', "that's", 'my', 'purse', '||exclammark||', '||return||', '||return||', 'testikov:', 'that', 'noise', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'get', '||dash||', 'get', 'off', 'my', 'purse', '||exclammark||', '||return||', '||return||', 'testikov:', 'agh', '||comma||', 'its', 'recorder', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', "that's", 'radio', '||exclammark||', '||return||', '||return||', 'testikov:', 'ha', '||exclammark||', '||leftparen||', 'he', 'clicks', 'the', 'player', 'off', '||rightparen||', 'you', 'are', 'spying', 'on', 'me', '||exclammark||', '||return||', '||return||', 'crowd:', 'come', 'on', '||exclammark||', 'save', 'the', 'whale', '||exclammark||', 'you', 'gotta', 'do', 'it', '||exclammark||', '||return||', '||return||', 'diane:', 'save', 'the', 'whale', 'george', '||period||', '||period||', '||period||', 'for', 'me', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'started', 'to', 'walk', 'into', 'the', 'water', '||period||', 'i', "won't", 'lie', 'to', 'you', 'boys', '||comma||', 'i', 'was', 'terrified', '||exclammark||', 'but', 'i', 'pressed', 'on', '||dash||', '||dash||', 'and', 'as', 'i', 'made', 'my', 'way', 'passed', 'the', 'breakers', 'a', 'strange', 'calm', 'came', 'over', 'me', '||period||', 'i', '||dash||', 'i', "don't", 'know', 'if', 'it', 'was', 'divine', 'intervention', 'or', 'the', 'kinship', 'of', 'all', 'living', 'things', 'but', 'i', 'tell', 'you', 'jerry', 'at', 'that', 'moment', 'i', 'was', 'a', 'marine', 'biologist', '||exclammark||', '||return||', '||return||', 'elaine:', 'george', 'ive', 'just', 'reading', 'this', 'thing', 'in', 'the', 'paper', '||comma||', "it's", 'unbelievable', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', 'i', 'was', 'just', 'telling', 'them', 'the', 'story', '||period||', '||return||', '||return||', 'kramer:', 'well', 'come', 'on', 'george', '||comma||', 'finish', 'the', 'story', '||period||', '||return||', '||return||', 'george:', 'the', 'sea', 'was', 'angry', 'that', 'day', 'my', 'friends', 'like', 'an', 'old', 'man', 'trying', 'to', 'send', 'back', 'soup', 'in', 'a', 'deli', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'got', 'about', 'fifty', '||dash||', 'feet', 'out', 'and', 'suddenly', '||comma||', 'the', 'great', 'beast', 'appeared', 'before', 'me', '||period||', 'i', 'tell', 'ya', 'he', 'was', 'ten', 'stories', 'high', 'if', 'he', 'was', 'a', 'foot', '||period||', 'as', 'if', 'sensing', 'my', 'presence', 'he', 'let', 'out', 'a', 'great', 'bellow', '||period||', 'i', 'said', '||comma||', '||quotemark||', 'easy', 'big', 'fella', '||exclammark||', '||quotemark||', 'and', 'then', '||comma||', 'as', 'i', 'watched', 'him', 'struggling', 'i', 'realized', '||comma||', 'that', 'something', 'was', 'obstructing', 'its', 'breathing', '||period||', 'from', 'where', 'i', 'was', 'standing', 'i', 'could', 'see', 'directly', 'into', 'the', 'eye', 'of', 'the', 'great', 'fish', '||exclammark||', '||return||', '||return||', 'jerry:', 'mammal', '||period||', '||return||', '||return||', 'george:', 'whatever', '||period||', '||return||', '||return||', 'kramer:', 'well', 'then', '||comma||', 'what', 'did', 'you', 'do', 'next', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'then', '||comma||', 'from', 'out', 'of', 'nowhere', '||comma||', 'a', 'huge', 'tidal', 'wave', 'lifted', 'me', '||comma||', 'tossed', 'like', 'a', 'cork', 'and', 'i', 'found', 'myself', 'right', 'on', 'top', 'of', 'him', '||comma||', '||leftparen||', 'elaine', 'gasps', 'quietly', 'ahhhh', '||rightparen||', 'face', 'to', 'face', 'with', 'the', 'blow', '||dash||', 'hole', '||period||', 'i', '||dash||', 'i', '||comma||', 'i', 'could', 'barely', 'see', 'from', 'the', 'waves', 'crashing', 'down', 'upon', 'me', 'but', '||comma||', 'i', 'knew', 'something', 'was', 'there', 'so', 'i', 'reached', 'my', 'hand', 'in', '||comma||', 'felt', 'around', 'and', 'pulled', 'out', 'the', 'obstruction', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'is', 'that', 'a', 'titleist', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'silently', 'squinches', 'his', 'mouth', 'and', 'nods', 'at', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'a', 'hole', 'in', 'one', 'eh', '||period||', '||return||', '||return||', 'jerry:', 'well', 'the', '||dash||', 'the', 'crowd', 'must', 'have', 'gone', 'wild', '||exclammark||', '||return||', '||return||', 'george:', 'ohh', 'yes', '||comma||', 'yes', '||period||', 'yes', 'jerry', 'they', 'were', 'all', 'over', 'me', '||period||', 'it', 'was', 'like', 'rocky', '1', '||comma||', 'hm', '||period||', 'diane', 'came', 'up', 'to', 'me', '||comma||', 'threw', 'her', 'arms', 'around', 'me', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'um', '||dash||', 'hm', '||period||', '||return||', '||return||', 'george:', 'kissed', 'me', '||period||', 'we', 'both', 'had', 'tears', 'streaming', 'down', 'our', 'faces', '||period||', 'i', 'never', 'saw', 'anyone', 'so', 'beautiful', '||period||', 'it', 'was', 'at', 'that', 'moment', 'that', 'i', 'decided', 'to', 'tell', 'her', 'that', '||comma||', 'i', 'was', 'not', 'a', 'marine', 'biologist', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', "what'd", 'she', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'told', 'me', 'to', '||quotemark||', 'go', 'to', 'hell', '||exclammark||', '||quotemark||', 'and', 'i', 'took', 'the', 'bus', 'home', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'lets', 'go', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'are', 'you', 'in', 'a', 'bad', 'mood', '||questionmark||', '||return||', '||return||', 'jerry:', 'ahhh', 'got', 'my', 'laundry', 'back', '||period||', '||return||', '||return||', 'elaine:', 'ohhh', '||exclammark||', 'golden', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', "didn't", 'make', 'it', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||period||', '||leftparen||', 'pats', 'him', 'on', 'the', 'arm', '||rightparen||', '||return||', '||return||', 'jerry:', 'yea', '||period||', '||leftparen||', 'pulls', 'at', 'the', 't', '||dash||', 'shirt', '||rightparen||', 'this', 'is', 'golden', "boy's", 'son', 'baby', 'blue', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'sand', '||period||', "it's", 'everywhere', '||return||', '||return||', 'kramer:', 'yep', '||period||', '||return||', '||return||', 'jerry:', "aren't", 'mannequins', 'an', 'insult', 'to', 'your', 'imagination', '||questionmark||', 'you', "couldn't", 'possibly', 'visualize', 'a', 'sweater', 'so', "we'll", 'show', 'you', 'on', 'this', 'life', 'size', 'snotty', 'puppet', '||period||', 'i', 'guess', 'when', 'they', 'finish', 'with', 'them', 'they', 'become', 'crash', 'test', 'dummies', '||period||', "that's", 'the', 'end', 'of', 'the', 'line', 'for', 'a', 'mannequin', '||period||', '||quotemark||', 'what', 'ever', 'happened', 'to', 'bob', '||questionmark||', '||quotemark||', '||quotemark||', 'have', 'you', 'seen', 'that', 'new', 'volvo', 'commercial', '||questionmark||', "he's", 'got', 'a', 'bulls', 'eye', 'right', 'in', 'his', 'face', '||period||', '||quotemark||', 'mannequins', 'are', 'only', 'used', 'for', 'car', 'accidents', 'and', 'fashion', '||comma||', 'i', 'guess', 'these', 'are', 'the', 'two', 'situations', 'that', "it's", 'impossible', 'for', 'us', 'to', 'imagine', 'ourselves', '||period||', 'well', 'dressed', 'or', 'getting', 'killed', '||period||', "i'm", 'sure', 'there', 'is', 'some', 'pro', '||dash||', 'mannequin', 'organization', 'that', "doesn't", 'even', 'like', 'you', 'to', 'use', 'the', 'term', 'mannequin', '||period||', '||quotemark||', 'hey', "they're", 'not', 'mannequins', '||comma||', "they're", 'the', 'life', 'deprived', '||period||', '||quotemark||', '||return||', '||return||', 'audrey:', 'hum', '||exclammark||', 'that', 'was', 'really', 'good', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'are', 'you', 'full', '||questionmark||', '||return||', '||return||', 'audrey:', 'oh', 'no', '||comma||', "i've", 'had', 'just', 'enough', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'here', 'we', 'go', '||period||', '||period||', '||period||', 'apple', 'pie', '||exclammark||', 'best', 'apple', 'pie', 'in', 'the', 'city', '||period||', '||leftparen||', 'jerry', 'starts', 'eating', '||rightparen||', 'mmm', '||comma||', 'delicious', '||period||', "i'm", 'not', 'waiting', 'for', 'you', '||period||', 'take', 'some', '||period||', '||return||', '||return||', 'audrey:', 'no', 'thanks', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'gonna', 'have', 'any', '||questionmark||', '||return||', '||return||', 'audrey:', 'no', '||leftparen||', 'with', 'a', 'disgusted', 'face', '||rightparen||', '||return||', '||return||', 'jerry:', 'do', 'you', 'not', 'like', 'apple', 'pie', '||questionmark||', '||return||', '||return||', 'audrey:', 'no', '||comma||', "it's", 'not', 'that', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'at', 'least', 'taste', 'it', '||period||', '||return||', '||return||', 'audrey:', 'no', '||leftparen||', 'a', 'resolute', '||quotemark||', 'no', '||quotemark||', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', "won't", 'even', 'taste', 'it', '||questionmark||', '||return||', '||return||', 'audrey:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'try', 'it', '||exclammark||', '||leftparen||', 'audrey', 'shakes', 'her', 'head', 'doing', '||quotemark||', 'no', '||quotemark||', '||rightparen||', 'a', 'little', 'taste', '||exclammark||', '||leftparen||', 'still', 'shaking', '||rightparen||', 'come', 'on', '||period||', '||leftparen||', 'still', 'shaking', '||rightparen||', '||return||', '||return||', 'jerry:', 'she', "wouldn't", 'so', 'much', 'as', 'taste', 'it', '||period||', '||return||', '||return||', 'george:', 'did', 'she', 'say', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'she', "wouldn't", 'say', 'anything', '||period||', 'she', 'just', 'kept', 'shaking', 'her', 'head', 'like', 'this', '||leftparen||', 'imitating', 'audrey', '||rightparen||', '||return||', '||return||', 'george:', 'maybe', "she's", 'diabetic', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'she', 'carries', 'entemanns', 'doughnuts', 'in', 'her', 'purse', '||period||', '||return||', '||return||', 'george:', 'maybe', 'you', 'said', 'something', 'that', 'offended', 'her', '||period||', '||return||', '||return||', 'jerry:', 'the', 'only', 'thing', 'i', 'can', 'think', 'of', 'is', 'i', 'told', 'her', 'we', 'should', 'have', 'those', 'moving', 'walkways', 'all', 'over', 'the', 'city', '||period||', '||return||', '||return||', 'george:', 'like', 'at', 'the', 'airport', '||questionmark||', '||leftparen||', 'getting', 'excited', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', "that's", 'a', 'great', 'idea', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'tell', 'me', 'about', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'we', 'could', 'be', 'zipping', 'all', 'over', 'the', 'place', '||period||', '||return||', '||return||', 'jerry:', 'they', 'could', 'at', 'least', 'try', 'it', '||period||', '||return||', '||return||', 'george:', 'they', 'never', 'try', 'anything', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'harm', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'harm', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'talking', 'to', 'george', '||rightparen||', "i'm", 'sorry', '||period||', "there's", 'no', 'reason', 'for', 'her', 'not', 'to', 'taste', 'that', 'pie', '||period||', '||return||', '||return||', 'elaine:', 'who', "wouldn't", 'taste', 'a', 'pie', '||questionmark||', '||return||', '||return||', 'jerry:', 'audrey', '||period||', '||return||', '||return||', 'elaine:', 'dump', 'her', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'never', 'broke', 'up', 'with', 'anyone', 'for', 'not', 'tasting', 'pie', '||questionmark||', '||questionmark||', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'piffling', '||rightparen||', 'i', 'once', 'broke', 'up', 'with', 'someone', 'for', 'not', 'offering', 'me', 'pie', '||period||', '||return||', '||return||', 'jerry:', 'you', 'did', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'could', 'be', 'eating', 'a', 'gyro', '||comma||', 'he', "wouldn't", 'offer', 'me', 'anything', '||period||', "it's", 'a', 'sickness', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "can't", 'walk', 'anywhere', 'now', '||period||', "i'm", 'just', 'gonna', 'be', 'wishing', 'there', 'were', 'walkways', '||period||', '||leftparen||', 'seeing', 'elaine', 'removing', 'her', 'shoe', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'a', 'pebble', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'never', 'heard', 'of', 'that', 'happening', 'to', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'the', 'hell', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'elaine', '||period||', 'go', 'like', 'this', '||period||', '||leftparen||', 'imitating', 'a', 'mannequin', 'posture', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'do', 'it', '||period||', 'do', 'it', '||period||', 'this', '||period||', '||return||', '||return||', 'elaine:', 'like', '||period||', '||period||', '||period||', '||leftparen||', 'doing', 'it', '||rightparen||', 'like', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', "it's", 'you', '||exclammark||', '||return||', '||return||', 'elaine:', "what's", 'me', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'gang', '||rightparen||', "there's", 'a', 'clothing', 'store', 'downtown', '||period||', 'they', 'got', 'a', 'mannequin', 'in', 'there', 'that', 'looks', 'exactly', 'like', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'uncanny', '||exclammark||', "it's", 'like', 'they', 'chopped', 'off', 'your', 'arms', 'and', 'legs', '||comma||', 'dipped', 'you', 'in', 'plastic', '||comma||', 'and', 'screwed', 'you', 'back', 'all', 'together', 'again', '||comma||', 'and', 'stuck', 'you', 'on', 'a', 'pedestal', '||period||', "it's", 'really', 'quite', 'exquisite', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', "what's", 'the', 'name', 'of', 'the', 'store', 'with', 'the', 'mannequin', '||questionmark||', '||return||', '||return||', 'kramer:', 'rinitze', '||period||', '||leftparen||', 'he', 'takes', "jerry's", 'spatula', 'and', 'starts', 'rubbing', 'his', 'back', 'with', 'it', '||rightparen||', 'oh', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'uh', '||period||', '||period||', '||period||', 'may', 'i', 'help', 'you', '||questionmark||', '||leftparen||', 'wondering', 'what', 'the', "hell's", 'kramer', 'doing', '||rightparen||', '||return||', '||return||', 'kramer:', "it's", 'this', 'itch', '||period||', 'i', 'was', 'watching', 'tv', 'without', 'my', 'shirt', 'on', '||comma||', 'and', 'one', 'my', 'couch', 'cushions', "didn't", 'have', 'any', 'fabric', 'on', 'it', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'rinitze', '||questionmark||', "don't", 'they', 'have', 'somme', 'really', 'cool', 'suits', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'real', 'boss', '||exclammark||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'down', 'there', '||period||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'go', 'with', 'you', '||period||', 'i', 'gotta', 'get', 'a', 'new', 'suit', '||period||', 'i', 'got', 'a', 'second', 'interview', 'with', 'mackenzie', '||comma||', 'and', 'i', 'think', "i'm", 'really', 'close', '||period||', "they're", 'all', 'taking', 'me', 'out', 'to', 'lunch', 'on', 'friday', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grabbing', 'george', 'by', 'the', 'arm', '||comma||', 'hurried', 'to', 'leave', '||rightparen||', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'all', 'right', '||period||', '||leftparen||', 'they', 'both', 'leave', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaving', 'too', '||comma||', 'with', 'the', 'spatula', '||rightparen||', 'are', 'you', 'gonna', 'need', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'keep', 'it', '||period||', '||leftparen||', 'implied', 'please', '||rightparen||', '||return||', '||return||', 'elaine:', 'it', 'looks', 'exactly', 'like', 'me', '||period||', '||return||', '||return||', 'george:', "it's", 'like', 'some', 'pod', 'landed', 'from', 'another', 'planet', 'and', 'took', 'your', 'body', '||period||', "don't", 'fall', 'asleep', 'elaine', '||period||', '||return||', '||return||', 'elaine:', "what's", 'going', 'on', 'here', '||questionmark||', 'how', 'do', 'you', 'think', 'this', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'whoa', '||comma||', 'look', 'at', 'this', '||period||', 'this', 'is', 'a', 'beautiful', 'suit', '||period||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'think', 'that', 'could', 'be', 'a', 'coincidence', 'george', '||questionmark||', 'is', 'that', 'possible', '||questionmark||', '||return||', '||return||', 'saleswoman:', '||leftparen||', 'european', 'accent', '||rightparen||', 'you', 'are', 'perfect', 'for', 'that', 'suit', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'saleswoman', '||rightparen||', 'excuse', 'me', '||period||', 'where', 'did', 'this', 'come', 'from', '||questionmark||', '||return||', '||return||', 'saleswoman:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'you', 'really', 'think', 'this', 'looks', 'o', '||period||', 'k', '||period||', 'on', 'me', '||questionmark||', '||return||', '||return||', 'saleswoman:', 'fabulous', '||period||', 'perfect', 'fit', '||period||', 'and', "it's", 'the', 'last', 'one', 'we', 'have', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||period||', 'you', "can't", 'tell', 'me', 'where', 'the', 'mannequin', 'came', 'from', '||questionmark||', '||return||', '||return||', 'saleswoman:', 'i', 'told', 'you', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'irritated', '||comma||', 'but', 'still', 'polite', '||rightparen||', 'well', '||comma||', 'is', 'there', 'somebody', 'around', 'here', 'i', 'could', 'talk', 'to', 'who', 'would', 'know', '||questionmark||', '||return||', '||return||', 'saleswoman:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "isn't", 'it', 'obvious', '||questionmark||', 'this', 'mannequin', 'looks', 'exactly', 'like', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'upset', '||rightparen||', 'did', 'you', 'just', 'roll', 'your', 'eyes', 'at', 'him', '||questionmark||', 'because', 'let', 'me', 'tell', 'you', 'something', '||comma||', 'if', 'anobody', 'should', 'be', 'rolling', 'their', 'eyes', '||comma||', 'it', 'is', 'me', 'at', 'him', 'about', 'you', '||period||', '||return||', '||return||', 'saleswoman:', 'i', 'think', 'maybe', "you're", 'flattering', 'yourself', '||period||', 'that', 'mannquein', 'is', 'wearing', 'a', 'twelve', 'hundred', 'dollar', 'gaultier', 'dress', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'saying', '||comma||', 'that', "i'm", 'not', 'good', 'enough', 'for', 'this', 'hideous', 'dress', '||questionmark||', '||leftparen||', 'looking', 'at', 'her', 'name', 'tag', '||rightparen||', 'listen', 'natasha', '||period||', '||period||', '||period||', 'i', "wouldn't", 'be', 'caught', 'dead', 'wearing', 'your', 'crummy', 'little', 'euro', '||dash||', 'trash', 'rags', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', "i'll", 'meet', 'you', 'outside', '||period||', '||return||', '||return||', 'saleswoman:', 'what', 'is', 'her', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'pfft', '||exclammark||', 'what', 'can', 'you', 'do', '||questionmark||', '||leftparen||', 'looking', 'at', 'a', 'tag', 'on', 'the', 'suit', '||rightparen||', 'is', 'this', 'the', 'price', 'tag', '||questionmark||', '||return||', '||return||', 'saleswoman:', 'yes', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'hello', '||period||', "party's", 'over', '||period||', '||leftparen||', 'taking', 'off', 'the', 'suit', '||rightparen||', '||return||', '||return||', 'saleswoman:', "i'll", 'tell', 'you', 'a', 'little', 'secret', '||period||', "we're", 'having', 'an', 'unadvertised', 'sale', 'starting', 'friday', '||comma||', 'that', 'suit', 'will', 'be', 'half', '||dash||', 'price', '||period||', '||return||', '||return||', 'george:', 'so', 'you', 'think', 'you', 'can', 'put', 'the', 'suit', 'aside', 'and', 'hold', 'it', 'for', 'me', '||questionmark||', '||return||', '||return||', 'saleswoman:', 'oh', '||comma||', "i'm", 'afraid', 'i', "could't", 'do', 'that', '||period||', 'it', "wouldn't", 'be', 'fair', 'to', 'the', 'other', 'customers', '||period||', '||return||', '||return||', 'george:', 'oh', 'yes', '||comma||', 'of', 'course', '||comma||', 'and', 'we', 'have', 'to', 'be', 'fair', '||period||', '||leftparen||', 'placing', 'the', 'suit', 'further', 'away', 'in', 'the', 'rack', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'i', 'found', 'out', 'who', 'supplies', 'the', 'mannequins', 'and', 'i', 'called', "'em", 'up', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'how', 'did', 'they', 'get', 'your', 'face', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'they', "wouldn't", 'tell', 'me', '||period||', '||leftparen||', 'jerry', 'is', 'not', 'listening', '||comma||', "he's", 'looking', 'at', 'two', 'women', 'sitting', 'in', 'the', 'other', 'booth', '||rightparen||', 'jerry', '||questionmark||', 'je', '||period||', '||period||', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jerry', 'gets', 'up', 'and', 'walk', 'to', 'these', 'persons', '||rightparen||', 'uh', '||period||', '||period||', '||period||', 'excuse', 'me', '||period||', 'i', "couldn't", 'help', 'but', 'notice', 'you', 'offered', 'her', 'a', 'piece', 'of', 'your', 'pie', '||period||', '||return||', '||return||', 'woman', '1:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'waved', 'it', 'away', '||period||', '||return||', '||return||', 'woman', '2:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'give', 'her', 'a', 'reason', '||questionmark||', '||return||', '||return||', 'woman', '2:', 'yes', '||comma||', 'i', 'was', 'full', '||period||', '||return||', '||return||', 'jerry:', 'you', 'were', 'full', '||period||', 'so', 'you', 'gave', 'a', 'reason', '||period||', 'you', "didn't", 'just', 'shake', 'your', 'head', '||period||', '||return||', '||return||', 'woman', '2:', 'no', '||comma||', "i'm", 'not', 'a', 'psycho', '||period||', '||return||', '||return||', 'jerry:', 'exactly', '||period||', "you're", 'not', 'a', 'psycho', '||period||', "you've", 'been', 'very', 'helpful', '||period||', 'thank', 'you', 'very', 'much', '||period||', 'allow', 'me', 'to', 'leave', 'the', 'tip', '||period||', '||leftparen||', 'sits', 'back', 'with', 'elaine', 'and', 'kramer', '||rightparen||', 'well', '||comma||', 'i', 'think', 'we', 'proven', 'who', 'the', 'psycho', 'is', '||period||', '||return||', '||return||', 'elaine:', 'we', 'certainly', 'have', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'elaine', 'scratch', 'my', 'back', '||period||', '||return||', '||return||', 'elaine:', 'no', 'way', '||exclammark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'one', 'lap', 'around', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'it', 'will', 'be', 'a', 'funky', 'adventure', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'how', 'about', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'you', 'know', 'my', 'policy', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'going', 'home', 'to', 'spatula', '||period||', '||leftparen||', 'picks', 'up', 'the', 'check', 'and', 'walks', 'to', 'the', 'cashier', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'george', 'was', 'meeting', 'us', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', "he's", 'going', 'downtown', 'to', 'guard', 'the', 'suit', '||period||', '||return||', '||return||', 'elaine:', "he's", 'guarding', 'a', 'suit', '||questionmark||', '||return||', '||return||', 'olive:', '||leftparen||', 'the', 'cashier', '||semicolon||', 'to', 'kramer', '||rightparen||', 'do', 'you', 'need', 'some', 'help', 'with', 'that', 'itch', '||questionmark||', '||return||', '||return||', 'kramer:', 'madam', '||comma||', 'i', 'pray', "you're", 'not', 'toying', 'with', 'me', '||period||', '||leftparen||', 'olive', 'shows', 'her', 'long', 'finger', 'nails', '||rightparen||', 'whoa', '||period||', '||return||', '||return||', 'olive:', 'turn', 'around', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'all', 'right', '||period||', '||leftparen||', 'olive', 'scratches', '||comma||', 'kramer', 'enjoys', '||comma||', 'elaine', 'and', 'jerry', 'watch', '||period||', '||rightparen||', '||return||', '||return||', 'saleswoman:', '||leftparen||', 'makes', 'a', 'guy', 'trying', 'the', 'suit', '||rightparen||', 'it', 'fits', 'you', 'perfectly', '||period||', '||return||', '||return||', 'bob:', 'you', 'think', 'so', '||questionmark||', '||leftparen||', 'she', 'nods', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'outside', '||comma||', 'looking', 'the', 'guy', 'trying', 'the', 'suit', 'through', 'the', 'window', '||comma||', 'and', 'thinking', 'out', 'loud', '||rightparen||', "what's", 'this', '||questionmark||', "can't", 'i', 'leave', 'this', 'place', 'for', 'a', 'second', '||questionmark||', '||leftparen||', 'goes', 'in', '||comma||', 'take', 'off', 'his', 'jacket', '||comma||', 'walks', 'to', 'the', 'guy', 'and', 'talks', 'to', 'him', 'with', 'an', 'european', 'accent', '||rightparen||', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'bob:', "i'm", 'buying', 'the', 'suit', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'this', 'suit', 'is', 'not', 'for', 'sale', '||period||', '||leftparen||', 'tries', 'to', 'take', 'off', 'the', 'suit', 'from', 'the', 'guy', '||rightparen||', '||return||', '||return||', 'bob:', 'excuse', 'me', '||comma||', 'do', 'you', 'work', 'here', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', 'the', 'european', 'accent', '||rightparen||', 'no', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'bob:', 'then', 'what', 'the', 'hell', 'business', 'is', 'it', 'of', 'yours', '||questionmark||', '||return||', '||return||', 'george:', 'look', '||comma||', "i'm", 'doing', 'you', 'a', 'favor', '||period||', "they're", 'having', 'an', 'unadvertised', 'sale', '||period||', 'this', 'suit', 'is', 'gonna', 'be', 'half', '||dash||', 'priced', 'starting', '||period||', '||period||', '||period||', 'monday', '||period||', '||return||', '||return||', 'bob:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yea', 'yea', 'yea', '||return||', '||return||', 'bob:', 'this', 'monday', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'now', 'take', 'off', 'those', 'pants', '||period||', '||return||', '||return||', 'saleswoman:', 'actually', '||comma||', 'the', 'unadvertised', 'sale', 'starts', 'on', 'friday', '||period||', '||return||', '||return||', 'bob:', 'friday', '||questionmark||', 'thanks', '||period||', '||leftparen||', 'gives', 'a', 'dirty', 'look', 'at', 'george', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'saleswoman', '||rightparen||', 'you', 'know', 'honey', 'for', 'an', 'unadvertised', 'sale', '||comma||', "you're", 'doing', 'a', 'lot', 'of', 'yapping', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'beleive', 'your', 'father', 'owns', 'this', 'place', '||period||', 'so', 'how', 'are', 'the', 'desserts', 'here', '||questionmark||', '||return||', '||return||', 'audrey:', 'everything', 'is', 'delicious', '||period||', '||return||', '||return||', 'jerry:', "you've", 'tasted', 'them', '||questionmark||', '||return||', '||return||', 'audrey:', 'um', '||dash||', 'hmm', '||comma||', 'i', 'think', 'almost', 'all', 'of', 'them', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'i', 'see', 'they', 'have', 'apple', 'pie', '||period||', '||return||', '||return||', 'audrey:', 'mmm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', "you've", 'had', 'the', 'apple', 'pie', '||questionmark||', '||return||', '||return||', 'audrey:', 'many', 'times', '||period||', '||return||', '||return||', 'jerry:', 'audrey', '||comma||', 'i', 'got', 'to', 'be', 'honest', 'with', 'you', '||period||', "i'm", 'a', 'very', 'curious', 'guy', '||period||', "it's", 'my', 'nature', '||period||', 'i', 'need', 'to', 'know', 'things', '||period||', 'not', 'tasting', 'the', 'apple', 'pie', 'the', 'other', 'day', '||comma||', 'i', "can't", 'get', 'past', 'it', '||period||', 'you', 'obviously', 'like', 'pies', '||period||', 'you', 'carry', 'doughnuts', 'in', 'your', 'bag', '||comma||', "you're", 'not', 'averse', 'to', 'pastry', '||period||', 'surely', 'you', 'could', 'see', 'how', 'such', 'a', 'thing', 'would', 'prey', 'on', 'my', 'mind', '||period||', '||return||', '||return||', 'audrey:', 'can', 'we', 'drop', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'like', 'a', 'frustrated', 'child', '||rightparen||', 'why', "can't", 'i', 'know', '||questionmark||', '||return||', '||return||', 'audrey:', 'ah', '||exclammark||', 'poppie', '||period||', '||return||', '||return||', 'poppie:', 'sweetheart', '||comma||', 'hello', '||period||', '||return||', '||return||', 'audrey:', 'poppie', '||comma||', 'this', 'is', 'jerry', '||period||', '||return||', '||return||', 'poppie:', 'welcome', '||leftparen||', 'shakes', "jerry's", 'hand', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', 'poppie', '||period||', '||return||', '||return||', 'poppie:', "don't", 'fill', 'up', 'on', 'the', 'bread', '||period||', "i'm", 'making', 'you', 'a', 'very', 'special', 'dinner', '||period||', 'very', 'special', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'the', 'pies', '||period||', "i'm", 'going', 'to', 'the', 'bathroom', '||period||', 'you', 'know', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', "[poppie's", 'restaurant:', 'bathroom]', '||return||', '||return||', 'poppie:', 'ah', '||comma||', 'jerry', '||exclammark||', 'tonight', 'you', 'in', 'for', 'a', 'real', 'treat', '||period||', "i'm", 'personnaly', 'going', 'to', 'prepare', 'the', 'dinner', 'for', 'you', 'and', 'my', 'audrey', '||period||', '||return||', '||return||', 'audrey:', 'jerry', 'are', 'you', 'ok', '||questionmark||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'audrey:', 'is', 'anything', 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'audrey:', 'you', 'look', 'like', "you've", 'seen', 'a', 'ghost', '||period||', '||return||', '||return||', 'olive:', '||leftparen||', 'to', 'another', 'cashier', '||rightparen||', "i'll", 'see', 'you', 'tomorrow', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'these', 'are', 'for', 'you', 'olive', '||period||', '||return||', '||return||', 'olive:', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'ohh', '||exclammark||', '||return||', '||return||', 'poppie:', 'here', 'it', 'is', '||period||', '||return||', '||return||', 'audrey:', 'wait', 'till', 'you', 'taste', 'this', '||period||', '||leftparen||', 'she', 'eats', '||rightparen||', 'poppie', '||comma||', 'this', 'is', 'perfect', '||period||', '||return||', '||return||', 'poppie:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'well', '||questionmark||', '||return||', '||return||', 'audrey:', 'jerry', 'have', 'some', '||period||', '||leftparen||', 'jerry', 'shakes', 'his', 'head', 'doing', '||quotemark||', 'no', '||quotemark||', '||rightparen||', "you're", 'not', 'gonna', 'taste', 'it', '||questionmark||', '||leftparen||', 'still', 'shaking', '||rightparen||', 'jerry', '||period||', '||leftparen||', 'still', 'shaking', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'she', 'tought', 'i', 'did', 'it', 'to', 'get', 'back', 'at', 'her', '||return||', '||return||', 'george:', 'why', "didn't", 'you', 'just', 'tell', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', "that's", 'the', 'kind', 'of', 'thing', 'you', 'wanna', 'hear', 'about', 'your', 'father', '||period||', 'but', "i'll", 'tell', 'you', 'when', 'he', 'came', 'out', 'of', 'that', 'bathroom', 'and', 'he', 'was', 'kneading', 'that', 'dough', '||comma||', 'it', 'was', 'a', 'wild', 'scene', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'he', 'not', 'have', 'washed', '||questionmark||', '||return||', '||return||', 'jerry:', 'even', 'if', "you're", 'not', 'gonna', 'soap', 'up', '||comma||', 'at', 'least', 'pretend', 'for', 'my', 'benefit', '||period||', 'turn', 'the', 'water', 'on', '||comma||', 'do', 'something', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'just', 'like', 'i', 'do', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'a', 'chef', 'who', "doesn't", 'wash', 'is', 'like', 'a', 'cop', 'who', 'steals', '||period||', "it's", 'a', 'cry', 'for', 'help', '||comma||', 'he', 'wants', 'to', 'get', 'caught', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'think', "poppie's", 'got', 'some', 'problems', '||period||', "there's", 'a', 'whole', 'other', 'thing', 'going', 'on', 'with', 'poppie', '||period||', 'so', 'how', 'did', 'you', 'leave', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', "haven't", 'spoken', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'not', 'gonna', 'need', 'this', 'anymore', '||period||', 'i', 'got', 'olive', '||period||', '||leftparen||', 'jerry', 'throws', 'out', 'the', 'spatula', '||rightparen||', '||return||', '||return||', 'george:', 'olive', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'my', 'lady', 'friend', 'down', 'at', 'monks', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'kramer:', 'you', 'guys', 'ought', 'to', 'see', 'the', 'way', 'she', 'works', 'her', 'nails', 'across', 'my', 'back', '||period||', 'ohh', '||exclammark||', "she's", 'a', 'maestro', '||period||', 'the', 'crisscross', '||period||', 'the', 'figure', 'eight', '||comma||', "strummin'", 'the', "ol'", 'banjo', '||comma||', 'and', 'this', 'wild', '||comma||', 'savage', 'free', '||dash||', 'for', '||dash||', 'all', 'where', 'anything', 'can', 'happen', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'to', 'get', 'downtown', 'and', 'buy', 'that', 'suit', '||period||', 'the', 'store', 'opens', 'in', 'twenty', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'is', 'that', 'elaine', 'mannequin', 'still', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'the', 'last', 'time', 'i', 'saw', 'her', '||comma||', 'she', 'was', 'naked', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', "poppie's", 'got', 'problems', '||period||', '||period||', '||period||', '||return||', '||return||', 'bob:', 'where', 'is', 'it', '||questionmark||', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'george', 'takes', 'out', 'the', 'suit', 'from', 'the', 'other', 'rack', '||rightparen||', 'well', '||comma||', 'look', 'at', 'this', '||period||', '||leftparen||', 'innocently', '||rightparen||', 'this', "doesn't", 'belong', 'here', '||exclammark||', 'someone', 'has', 'made', 'a', 'terrible', 'mistake', '||period||', '||return||', '||return||', 'bob:', 'you', 'bastard', '||exclammark||', 'you', 'hid', 'the', 'suit', '||period||', '||return||', '||return||', 'george:', 'hid', '||questionmark||', 'i', 'have', 'no', 'idea', 'how', 'this', 'suit', 'got', 'misplaced', '||period||', 'nevertheless', '||comma||', 'i', 'do', 'believe', 'i', 'shall', 'purchase', 'it', '||period||', '||return||', '||return||', 'bob:', 'i', 'hope', 'you', 'rot', 'in', 'that', 'suit', '||period||', 'look', "i'm", 'gonna', 'get', 'you', 'for', 'this', '||period||', 'i', "don't", 'know', 'how', '||comma||', 'but', "i'm", 'gonna', 'get', 'you', '||period||', 'you', 'are', 'going', 'to', 'pay', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "i'll", 'pay', '||period||', 'half', '||dash||', 'price', '||period||', 'arrivederci', 'my', 'fellow', '40', '||dash||', 'short', '||period||', '||return||', '||return||', 'elaine:', 'so', 'i', 'made', 'a', 'little', 'list', 'of', 'people', 'who', "might've", 'made', 'the', 'mannequin', '||period||', 'you', 'know', '||comma||', 'possible', 'suspects', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'all', 'right', '||period||', 'go', 'ahead', '||period||', '||leftparen||', 'not', 'very', 'interested', '||rightparen||', '||return||', '||return||', 'elaine:', "there's", 'this', 'blind', 'guy', 'at', 'a', 'party', 'i', 'was', 'at', '||comma||', 'and', 'he', 'felt', 'my', 'face', 'for', 'a', 'really', 'long', 'time', '||period||', 'you', 'know', '||comma||', 'to', 'see', 'what', 'i', 'looked', 'like', '||period||', 'he', 'almost', 'put', 'his', 'finger', 'up', 'my', 'nose', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'very', 'disinterested', '||rightparen||', 'hum', '||period||', '||period||', '||period||', 'ok', '||comma||', 'what', 'else', 'you', 'got', '||questionmark||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', "i'm", 'not', 'gonna', 'tell', 'you', 'the', 'rest', 'of', 'the', 'list', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'because', 'i', "didn't", 'think', 'the', 'blind', 'guy', 'did', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'you', 'have', 'an', 'attitude', '||period||', '||return||', '||return||', 'jerry', 'and', 'elaine:', 'oh', '||exclammark||', '||return||', '||return||', 'jerry:', 'georgio', '||exclammark||', 'nice', 'duds', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'telling', 'me', '||period||', '||leftparen||', 'he', 'walks', 'around', 'and', 'the', 'suit', 'makes', 'a', 'swooshing', 'sound', '||rightparen||', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'hear', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'like', 'a', 'swoosh', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'feels', 'the', 'fabric', '||rightparen||', 'it', 'must', 'be', 'the', 'fabric', '||period||', "it's", 'rubbing', 'between', 'you', 'thighs', 'when', 'you', 'walk', '||period||', "that's", "what's", 'making', 'that', 'swooshy', 'sound', '||period||', '||return||', '||return||', 'george:', 'i', 'probably', "didn't", 'hear', 'it', 'on', 'the', 'way', 'over', 'because', 'of', 'the', 'street', 'noise', '||period||', '||leftparen||', 'he', 'panics', '||rightparen||', 'this', 'is', 'no', 'good', '||exclammark||', 'i', 'got', 'to', 'meet', 'these', 'guys', 'from', 'mackenzie', 'for', 'lunch', 'in', 'half', 'an', 'hour', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', 'what', 'would', 'they', 'care', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'mackenzie', '||comma||', "he's", 'a', 'bit', 'of', 'a', 'nut', '||period||', 'someone', 'told', 'me', 'he', 'fired', 'the', 'last', 'guy', 'because', 'his', 'nose', 'whistled', 'when', 'he', 'breathed', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'think', "you're", 'not', 'gonna', 'get', 'the', 'job', 'because', 'your', 'pants', 'make', 'a', 'noise', '||questionmark||', '||return||', '||return||', 'george:', "let's", 'say', 'it', 'comes', 'down', 'to', 'me', 'and', 'one', 'other', 'guy', '||period||', "he's", 'got', 'a', 'nice', 'quiet', 'suit', '||comma||', 'and', "i'm", 'whooshing', 'all', 'over', 'the', 'place', '||exclammark||', 'who', 'do', 'you', 'think', "he's", 'gonna', 'hire', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'think', 'all', 'these', 'interviews', 'are', 'making', 'you', 'nuts', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||comma||', 'i', 'saw', 'your', 'girlfriend', 'was', 'in', 'here', 'before', '||period||', '||return||', '||return||', 'jerry:', 'audrey', '||questionmark||', '||return||', '||return||', 'kramer:', 'yep', '||period||', 'sat', 'down', '||comma||', 'had', 'herself', 'a', 'piece', 'of', 'pie', '||period||', '||return||', '||return||', 'jerry:', 'was', 'it', 'apple', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'woman', 'is', 'bending', 'my', 'mind', 'into', 'a', 'pretzel', '||exclammark||', '||return||', '||return||', 'stranger:', 'do', 'i', 'know', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||period||', '||period||', 'no', 'you', "don't", '||period||', '||return||', '||return||', 'stranger:', 'yeah', '||exclammark||', 'you', 'were', 'wearing', 'a', 'g', '||dash||', 'string', 'and', 'one', 'of', 'those', 'bras', 'with', 'points', '||period||', '||return||', '||return||', 'elaine:', 'the', 'mannequin', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'got', 'to', 'see', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'the', 'resemblance', 'is', 'uncanny', '||period||', '||return||', '||return||', 'elaine:', 'you', 'think', 'you', 'can', 'pose', 'me', 'however', 'you', 'want', '||questionmark||', "that's", 'my', 'ass', 'in', 'your', 'window', '||exclammark||', '||return||', '||return||', 'saleswoman:', "it's", 'our', 'store', 'and', 'our', 'mannequin', '||comma||', 'we', 'can', 'do', 'whatever', 'we', 'want', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'you', 'take', 'that', 'mannequin', 'down', 'right', 'now', '||comma||', 'or', "i'm", 'pressing', 'charges', '||period||', '||leftparen||', 'jerry', 'goes', 'along', '||rightparen||', 'yes', '||comma||', 'this', 'is', 'my', 'attorney', '||period||', '||return||', '||return||', 'saleswoman:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'yeah', '||questionmark||', 'what', 'law', 'am', 'i', 'breaking', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'believe', "there's", 'some', 'legal', 'precedent', '||dash||', 'winchell', 'vs', '||period||', 'mahoney', '||comma||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||return||', '||return||', 'jerry:', 'the', 'charlie', 'macarthy', 'hearings', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', 'are', 'you', 'taking', 'this', 'down', '||questionmark||', '||return||', '||return||', 'saleswoman:', "i'm", 'getting', 'the', 'manager', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'jerry', 'get', 'the', 'car', '||period||', '||leftparen||', "she's", 'getting', 'the', 'mannequin', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'get', 'the', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'as', 'your', 'legal', 'counsel', 'i', 'must', 'advise', 'against', 'this', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'about', 'you', '||comma||', 'but', "i'm", 'getting', 'a', 'hankering', 'for', 'some', 'doublemint', 'gum', '||period||', 'alright', '||comma||', "i'm", 'dropping', 'you', 'off', 'at', 'work', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', "poppie's", '||return||', '||return||', 'mackenzie:', 'thanks', 'for', 'meeting', 'me', 'down', 'here', 'george', '||period||', 'my', 'office', 'is', 'out', 'of', 'control', '||comma||', '||leftparen||', "george's", 'pants', 'are', 'making', 'noise', '||rightparen||', 'phones', 'ringing', '||comma||', 'people', 'running', 'in', 'and', 'out', '||period||', '||leftparen||', 'mackenzie', 'stops', 'talking', 'and', 'walking', '||comma||', 'george', 'too', '||rightparen||', 'did', 'you', 'hear', 'something', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "didn't", 'hear', 'anything', '||period||', '||return||', '||return||', 'mackenzie:', 'huh', '||comma||', "that's", 'strange', '||period||', '||leftparen||', 'they', 'start', 'walking', 'again', '||rightparen||', "it's", 'quieter', 'here', '||period||', 'we', 'can', 'concentrate', 'without', 'people', 'wooshing', 'around', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'stops', 'again', '||comma||', 'george', 'too', '||rightparen||', 'that', 'sound', 'again', '||period||', 'sure', 'you', "didn't", 'hear', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "can't", 'say', 'as', 'i', 'did', '||period||', '||return||', '||return||', 'mackenzie:', 'kind', 'of', 'like', 'a', '||period||', '||period||', '||period||', 'rustling', '||period||', '||return||', '||return||', 'george:', 'could', 'be', 'the', 'leaves', '||period||', '||period||', '||period||', '||return||', '||return||', 'audrey:', "that's", 'right', '||period||', "poppie's", 'on', '77th', '||period||', 'ok', "we'll", 'see', 'you', 'at', '800', '||period||', 'bye', '||dash||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'audrey:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'how', 'was', 'the', 'pie', '||questionmark||', '||return||', '||return||', 'audrey:', 'what', 'pie', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'apple', 'pie', 'you', 'had', 'today', 'at', 'monks', '||return||', '||return||', 'audrey:', "i'm", 'very', 'busy', 'here', '||period||', '||return||', '||return||', 'jerry:', 'pretty', 'good', '||comma||', "wasn'it", '||questionmark||', 'i', 'told', 'you', 'you', "should've", 'tasted', 'it', '||period||', '||return||', '||return||', 'audrey:', 'you', 'better', 'not', 'let', 'poppie', 'see', 'you', 'here', '||period||', '||return||', '||return||', 'health', 'inspector:', 'all', 'right', '||comma||', "i'm", 'looking', 'for', 'someone', 'named', 'poppie', '||period||', '||return||', '||return||', 'audrey:', 'uh', '||comma||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'health', 'inspector:', 'board', 'of', 'health', '||comma||', "we've", 'had', 'several', 'complaints', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'about', 'the', '||period||', '||period||', '||period||', 'uh', '||leftparen||', 'jerry', 'pretend', 'to', 'wash', 'his', 'hands', '||rightparen||', '||return||', '||return||', 'health', 'inspector:', 'are', 'you', 'poppie', '||questionmark||', '||return||', '||return||', 'poppie:', "i'm", 'poppie', '||period||', '||return||', '||return||', 'health', 'inspector:', 'i', 'think', "you'd", 'better', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'poppie:', "what's", 'the', 'problem', '||questionmark||', '||return||', '||return||', 'audrey:', 'what', 'do', 'they', 'want', 'from', 'poppie', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "poppie's", 'a', 'little', 'sloppy', '||period||', '||return||', '||return||', 'mackenzie:', 'you', 'taught', "i'd", 'care', 'about', 'your', 'pants', 'wooshing', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'heard', 'the', 'last', 'guy', 'got', 'fired', 'because', 'his', 'nose', 'whislted', '||period||', '||return||', '||return||', 'mackenzie:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'he', 'got', 'fired', 'because', 'he', "wasn't", 'a', 'team', 'player', '||period||', "that's", 'something', 'we', "don't", 'joke', 'about', 'at', 'mackenzie', '||period||', "you'll", 'find', "we're", 'team', 'here', 'george', '||period||', 'we', "don't", 'tolerate', 'dissent', '||period||', 'if', 'you', 'want', 'to', 'go', 'your', 'own', 'way', '||comma||', "you're", 'in', 'the', 'wrong', 'place', '||period||', '||return||', '||return||', 'george:', 'no', 'problem', 'there', '||period||', 'conformity', 'is', 'an', 'obsession', 'with', 'me', '||period||', '||return||', '||return||', 'waiter:', 'chocolate', 'cream', 'pie', '||period||', 'compliments', 'of', 'the', 'house', '||period||', '||return||', '||return||', 'mackenzie:', 'oh', '||exclammark||', 'hope', 'you', 'saved', 'room', 'for', 'dessert', '||period||', '||return||', '||return||', 'waiter:', '||leftparen||', 'to', 'george', '||rightparen||', 'the', 'chef', 'said', 'that', 'he', 'made', 'it', 'special', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', '||leftparen||', 'george', 'looks', 'around', 'and', 'sees', 'the', 'chef', 'hiding', 'behind', 'a', 'plant', "it's", 'bob', '||exclammark||', '||rightparen||', '||return||', '||return||', 'mackenzie:', 'mmm', '||period||', '||period||', 'best', 'pie', "i've", 'ever', 'tasted', '||period||', 'take', 'a', 'bite', 'george', '||period||', '||leftparen||', 'george', 'shakes', 'his', 'head', 'doing', '||quotemark||', 'no', '||quotemark||', '||rightparen||', 'well', '||comma||', 'take', 'a', 'bite', '||period||', "it's", 'delicious', '||period||', '||leftparen||', 'still', 'shaking', '||rightparen||', 'i', 'insist', '||period||', '||leftparen||', 'still', 'shaking', '||rightparen||', '||return||', '||return||', 'businessman:', 'if', "you're", 'one', 'of', 'us', '||comma||', "you'll", 'take', 'a', 'bite', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', "didn't", 'get', 'the', 'job', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'but', 'i', 'was', 'the', 'only', 'one', 'at', 'the', 'table', 'that', "didn't", 'get', 'violently', 'ill', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', "can't", 'keep', 'avoiding', 'her', 'like', 'this', '||comma||', "you're", 'gonna', 'have', 'to', 'say', 'something', '||period||', '||return||', '||return||', 'kramer:', 'what', 'am', 'i', 'supposed', 'to', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'tell', 'her', 'you', 'lost', 'your', 'itch', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'your', 'itch', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'lost', 'it', 'two', 'days', 'ago', '||period||', "i've", 'been', 'faking', 'it', 'so', 'i', "wouldn't", 'hurt', 'her', 'feelings', '||period||', '||return||', '||return||', 'jerry:', 'well', 'you', 'should', 'tell', 'her', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'let', 'her', 'down', 'easy', '||period||', 'all', 'right', '||period||', '||leftparen||', 'he', 'gets', 'up', 'and', 'walks', 'to', 'olive', '||rightparen||', 'well', '||comma||', 'hi', 'olive', '||period||', '||leftparen||', 'she', 'reaches', 'for', "kramer's", 'back', '||rightparen||', 'no', '||comma||', 'no', '||period||', 'no', 'more', 'of', 'that', '||period||', "there's", 'something', 'i', 'have', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'olive:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', '||comma||', "there's", 'someone', 'else', '||period||', '||return||', '||return||', 'olive:', 'someone', 'else', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'olive:', 'who', 'is', 'she', '||questionmark||', '||return||', '||return||', 'kramer:', 'her', '||period||', '||leftparen||', 'he', 'points', 'to', 'the', 'elaine', 'mannequin', 'in', "jerry's", 'car', '||rightparen||', '||return||', '||return||', 'olive:', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'there', 'she', 'is', '||period||', "that's", 'my', 'gal', '||period||', '||return||', '||return||', 'olive:', "you're", 'a', 'liar', '||period||', "i've", 'seen', 'her', 'in', 'here', 'before', '||period||', "she's", 'not', 'your', 'girlfriend', '||period||', '||return||', '||return||', 'kramer:', 'now', 'olive', '||comma||', 'look', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'olive:', 'why', 'is', 'she', 'wearing', 'her', 'underwear', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'the', 'style', '||period||', '||leftparen||', 'turns', 'back', 'to', 'jerry', '||rightparen||', 'jerry', 'give', 'me', 'the', 'keys', '||period||', '||leftparen||', 'jerry', 'throws', 'his', 'keys', 'to', 'kramer', '||rightparen||', 'well', '||comma||', 'i', 'guess', "we're", 'gonna', 'go', 'for', 'a', 'drive', 'now', '||period||', 'she', 'really', 'loves', 'that', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'ever', 'solve', 'the', 'riddle', 'of', 'the', 'pie', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', "that's", 'one', 'for', 'the', 'ages', '||period||', 'but', 'i', 'think', "they're", 'gonna', 'put', 'poppie', 'away', 'for', 'a', 'long', 'long', 'time', '||period||', '||return||', '||return||', 'elaine:', 'you', 'guys', 'are', 'not', 'gonna', 'believe', 'this', '||period||', 'i', 'just', 'got', 'a', 'letter', 'from', 'a', 'friend', 'of', 'mine', 'in', 'chicago', 'who', 'was', 'shopping', '||comma||', 'and', 'she', 'said', 'she', 'saw', 'a', 'mannequin', 'that', 'looked', 'just', 'like', 'me', '||period||', 'what', 'if', "there're", 'more', '||period||', 'where', 'are', 'they', 'coming', 'from', '||questionmark||', '||return||', '||return||', "ricky's", 'boss:', 'ricky', '||comma||', "we've", 'been', 'getting', 'a', 'tremendous', 'response', 'to', 'your', 'tr', '||dash||', '6', 'mannequin', '||period||', '||return||', '||return||', 'ricky:', 'tr', '||dash||', '6', '||questionmark||', 'i', 'prefer', 'to', 'think', 'of', 'her', 'as', '||period||', '||period||', '||period||', 'elaine', '||period||', '||return||', '||return||', '[setting:', 'comedy', 'club]', '||return||', '||return||', 'opening', 'monolog:', 'the', 'bus', 'is', 'the', 'single', 'stupidest', '||comma||', 'fattest', '||comma||', 'slowest', '||comma||', 'most', 'despised', 'vehicle', 'on', 'the', 'road', '||period||', "isn't", 'it', '||questionmark||', 'you', 'ever', 'notice', 'when', 'you', 'get', 'behind', 'the', 'bus', '||comma||', 'people', 'in', 'your', 'car', 'go', "'what", 'are', 'you', 'doing', '||questionmark||', 'get', 'away', '||comma||', 'come', 'on', '||period||', "'", 'the', 'back', 'of', 'the', 'bus', 'is', 'like', 'an', 'eclipse', "isn't", 'it', '||questionmark||', 'people', 'are', 'just', 'like', "'the", 'sun', '||comma||', "where's", 'the', 'sun', '||questionmark||', "'", "it's", 'like', 'this', 'huge', 'metal', 'ass', 'taking', 'up', 'the', 'whole', 'wind', 'shield', 'of', 'your', 'car', '||period||', 'when', 'it', 'pulls', 'out', 'it', 'even', 'sounds', 'like', 'a', 'fat', 'uncle', 'trying', 'to', 'get', 'out', 'of', 'a', 'sofa', '||period||', '||leftparen||', 'acts', 'like', 'he', 'is', 'trying', 'to', 'get', 'out', 'of', 'a', 'car', 'and', 'makes', 'the', 'sound', 'of', 'a', 'bus/guy', 'starting', 'to', 'get', 'going', '||rightparen||', '||return||', '||return||', '[setting:', 'jerry', 'and', 'george', 'on', 'a', 'bus]', '||return||', '||return||', 'george:', "it's", 'just', 'not', 'good', '||comma||', "it's", 'not', 'good', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'good', '||period||', '||return||', '||return||', 'george:', "i'm", 'bored', '||period||', "she's", 'boring', '||comma||', "i'm", 'boring', '||comma||', "we're", 'both', 'boring', '||period||', 'we', 'got', 'out', 'to', 'eat', '||comma||', 'we', 'both', 'read', 'newspapers', '||period||', '||return||', '||return||', 'jerry:', 'well', 'at', 'breakfast', 'everybody', 'reads', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'lunch', 'we', 'read', '||comma||', 'dinner', 'we', 'read', '||period||', '||return||', '||return||', 'jerry:', 'you', 'read', 'during', 'lunch', '||questionmark||', '||return||', '||return||', 'george:', 'ya', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||period||', '||return||', '||return||', 'george:', "there's", 'nothing', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||comma||', "what's", 'there', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'george:', 'well', 'at', 'least', 'you', 'and', 'i', 'are', 'talking', 'about', 'how', "there's", 'nothing', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'talk', 'to', 'her', 'about', 'how', "there's", 'nothing', 'to', 'talk', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'knows', 'there', 'is', 'nothing', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'jerry:', 'at', 'least', "you'll", 'be', 'talking', '||period||', '||return||', '||return||', 'george:', 'oh', 'shut', 'up', '||period||', '||return||', '||return||', 'al:', 'hey', '||comma||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'al', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'al', '||period||', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'al:', '||leftparen||', 'extremely', 'happy', '||rightparen||', 'deeply', 'in', 'love', '||period||', 'we', 'have', 'soo', 'many', 'things', 'to', 'talk', 'about', '||period||', 'sometimes', "we'll", 'talk', 'all', 'night', '||comma||', 'till', 'the', 'sun', 'comes', 'up', '||leftparen||', 'pauses', 'in', 'his', 'happiness', '||semicolon||', 'to', 'george', '||rightparen||', 'so', 'how', 'about', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'oh', "i'm", 'seeing', 'someone', '||comma||', 'yes', '||period||', 'you', 'know', 'her', '||comma||', 'daphne', 'bower', '||period||', '||return||', '||return||', 'al:', 'great', 'girl', '||period||', '||return||', '||return||', 'george:', 'we', 'have', 'no', 'need', 'to', 'speak', '||period||', 'we', 'communicate', 'with', 'deep', 'soulful', 'looks', '||period||', '||return||', '||return||', 'jerry:', 'like', 'dwight', 'and', 'mamie', 'eisenhower', '||period||', '||return||', '||return||', 'al:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'oh', 'did', 'you', 'hear', 'about', 'fulton', '||questionmark||', '||return||', '||return||', 'jerry:', 'ya', '||period||', '||return||', '||return||', 'al:', 'i', 'went', 'by', 'the', 'hospital', 'to', 'see', 'him', 'a', 'few', 'days', 'ago', '||leftparen||', 'looking', 'at', 'jerry', '||rightparen||', 'think', "he'd", 'really', 'like', 'you', 'to', 'come', 'visit', '||period||', '||return||', '||return||', 'jerry:', 'me', '||questionmark||', '||return||', '||return||', 'al:', 'ya', '||comma||', 'he', 'said', 'he', 'could', 'use', 'a', 'good', 'laugh', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'al:', '||leftparen||', 'to', 'george', '||rightparen||', 'he', "didn't", 'mention', 'you', '||period||', '||leftparen||', 'looks', 'toward', 'the', 'front', 'of', 'the', 'bus', '||rightparen||', 'this', 'is', 'my', 'stop', '||period||', 'uh', 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'ya', '||return||', '||return||', 'jerry:', 'ya', '||comma||', 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'deeply', 'in', 'love', '||period||', 'if', 'you', "can't", 'say', 'anything', 'bad', 'about', 'a', 'relationship', '||comma||', 'you', "shouldn't", 'say', 'anything', 'at', 'all', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'points', 'to', 'george', '||rightparen||', 'ya', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'i', "didn't", 'even', 'know', 'fulton', 'was', 'in', 'the', 'hospital', '||period||', '||return||', '||return||', 'jerry:', 'could', 'use', 'a', 'good', 'laugh', '||period||', 'you', 'know', 'what', 'kind', 'of', 'pressure', 'that', 'is', '||questionmark||', 'come', 'on', '||comma||', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'george:', 'na', 'no', '||comma||', "i'm", 'not', 'good', 'in', 'these', 'situations', '||period||', 'i', "can't", 'hide', 'my', 'pity', '||period||', 'i', '||period||', '||period||', 'i', 'make', 'em', 'feel', 'worse', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'george:', 'ya', 'and', 'also', "i'm", 'afraid', 'that', 'people', 'in', 'that', 'state', 'are', 'finally', 'going', 'to', 'tell', 'me', 'what', 'they', 'really', 'think', 'of', 'me', '||period||', 'you', 'know', 'they', 'got', 'nothing', 'to', 'lose', 'what', 'do', 'they', 'care', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', "you're", 'not', 'gonna', 'come', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'but', 'say', 'hello', 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'hey', 'mick', '||period||', '||return||', '||return||', 'mickey:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'kramer:', "what's", 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||comma||', "what's", 'doing', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'same', 'old', '||comma||', 'same', 'old', '||period||', '||return||', '||return||', 'jerry:', 'george', 'this', 'is', 'mickey', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'mickey:', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', "how's", 'work', 'going', 'you', 'guys', '||questionmark||', '||return||', '||return||', 'mickey:', 'lets', 'not', 'even', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'got', 'a', 'job', '||questionmark||', '||return||', '||return||', 'kramer:', 'ya', '||comma||', 'mickey', '||period||', 'he', 'hooked', 'me', 'up', '||period||', "we're", 'stand', '||dash||', 'ins', 'for', 'the', 'actors', 'on', "'all", 'my', 'children', '||period||', "'", 'mickey', '||comma||', "he's", 'a', 'stand', '||dash||', 'in', 'for', 'an', 'eight', 'year', 'old', 'kid', 'and', 'i', 'stand', 'in', 'for', 'the', 'kids', 'father', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'to', 'jerry', 'then', 'both', 'jerry', 'and', 'george', '||rightparen||', 'but', 'i', 'got', 'a', 'big', 'problem', '||period||', 'the', 'kid', 'i', 'stand', 'in', 'for', '||comma||', "he's", 'growing', '||period||', 'he', 'was', 'four', 'feet', 'last', 'month', '||comma||', 'now', "he's", 'like', 'four', '||dash||', 'two', 'and', 'a', 'half', '||period||', 'he', 'shot', 'up', 'two', 'and', 'a', 'half', 'inches', '||period||', 'i', 'can', 'do', 'four', '||dash||', 'two', '||comma||', 'four', '||dash||', 'three', 'is', 'a', 'stretch', '||comma||', 'any', 'higher', 'than', 'that', 'and', "i'm", 'gonna', 'be', 'out', 'on', 'my', 'ass', 'doing', 'that', 'para', '||dash||', 'legal', 'crap', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'stop', 'a', 'kid', 'from', 'growing', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'mickey', '||rightparen||', 'i', 'told', 'you', '||comma||', 'you', 'should', 'offer', 'him', 'some', 'cigarettes', '||period||', '||return||', '||return||', 'mickey:', 'i', 'offered', 'him', 'cigarettes', '||comma||', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', 'but', 'his', 'stupid', 'mother', 'is', 'hanging', 'around', '||period||', 'she', "won't", 'let', 'him', 'have', 'any', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'mickey', '||rightparen||', 'what', 'about', 'lifts', '||questionmark||', '||return||', '||return||', 'mickey:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'mickey', '||rightparen||', "can't", 'you', 'just', 'switch', 'with', 'another', 'midget', '||questionmark||', '||return||', '||return||', 'mickey:', '||leftparen||', 'turns', 'and', 'moves', 'up', 'to', 'george', '||comma||', 'points', 'his', 'finger', 'at', 'him', '||rightparen||', "it's", 'little', 'people', '||comma||', 'you', 'got', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'easy', 'mickey', '||comma||', 'easy', '||period||', '||return||', '||return||', 'george:', 'yap', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'alright', 'we', 'gotta', 'get', 'back', 'to', 'the', 'show', '||period||', 'what', 'are', 'you', 'guys', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'to', 'the', 'hospital', '||comma||', 'to', 'visit', 'fulton', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'on', 'his', 'way', 'to', 'the', 'door', '||rightparen||', 'oh', '||comma||', 'oh', 'well', 'say', 'hello', 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', 'now', 'look', '||comma||', "we're", 'going', 'to', 'stop', 'at', 'the', 'shoe', 'maker', 'right', 'now', '||period||', 'you', 'gotta', 'get', 'some', 'lifts', 'for', 'your', 'shoes', '||period||', '||return||', '||return||', 'mickey:', 'lifts', '||questionmark||', '||exclammark||', 'look', 'kramer', 'you', "don't", 'understand', '||comma||', 'this', 'kind', 'of', 'thing', 'is', 'just', 'not', 'done', '||period||', '||return||', '||return||', 'kramer:', 'you', 'wanna', 'keep', 'your', 'job', "don't", 'you', '||questionmark||', '||return||', '||return||', 'mickey:', 'ya', 'but', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yah', '||exclammark||', 'no', 'buts', '||return||', '||return||', 'mickey:', 'kramer', '||return||', '||return||', 'kramer:', '||leftparen||', 'with', 'his', 'hand', 'in', "mickey's", 'face', '||rightparen||', 'yaaaaah', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'woahoh', 'fulton', '||period||', "it's", 'me', '||period||', '||return||', '||return||', 'fulton:', 'hey', 'jerry', '||comma||', 'good', 'to', 'see', 'ya', '||period||', 'i', 'could', 'really', 'use', 'a', 'good', 'laugh', '||period||', '||return||', '||return||', 'jerry:', 'who', "couldn't", '||period||', '||return||', '||return||', 'fulton:', 'i', "haven't", 'cracked', 'a', 'smile', 'in', 'months', '||period||', '||return||', '||return||', 'jerry:', 'oh', "don't", 'worry', '||comma||', "you'll", 'crack', '||period||', "cracking's", 'inevitable', '||comma||', 'first', 'you', 'crack', 'then', 'you', 'chuckle', '||period||', 'that', 'was', 'the', 'motto', 'with', 'the', 'russians', 'at', 'the', 'caesar', 'leningrad', '||period||', '||period||', '||period||', 'first', 'you', 'crack', 'then', 'you', 'chuckle', '||period||', '||leftparen||', 'fulton', 'looks', 'at', 'him', 'not', 'amused', '||rightparen||', 'you', 'know', 'because', 'leningrad', 'when', 'the', 'nazis', 'attacked', '||comma||', 'it', "wasn't", 'a', 'very', 'happy', 'time', '||period||', '||period||', '||period||', 'because', 'of', 'the', 'war', '||comma||', 'famine', '||comma||', 'plus', 'it', 'was', 'cold', '||comma||', 'very', 'cold', '||period||', '||period||', '||period||', 'they', 'were', 'eating', 'each', 'other', '||period||', '||leftparen||', 'nervous', 'under', 'the', 'pressure', '||semicolon||', 'fulton', 'not', 'finding', 'anything', 'jerry', 'is', 'saying', 'funny', '||rightparen||', 'maybe', 'this', "isn't", 'a', 'good', 'time', 'for', 'a', 'visit', '||period||', '||return||', '||return||', 'fulton:', "it's", 'a', 'fine', 'time', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'alright', 'ah', 'well', '||period||', '||period||', '||period||', "there's", 'a', 'priest', '||comma||', 'a', 'minister', 'and', 'a', 'rabbi', '||comma||', 'and', "they're", 'all', 'staring', 'at', 'him', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sets', 'down', 'his', 'paper', '||rightparen||', 'so', 'how', 'were', 'the', 'eggs', '||questionmark||', '||return||', '||return||', 'daphne:', 'eggs', 'are', 'eggs', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'amused', 'with', 'her', 'answer', '||rightparen||', 'eggs', 'are', 'eggs', '||period||', 'that', 'is', 'very', 'profound', '||period||', '||leftparen||', 'laughs', '||semicolon||', 'daphne', 'goes', 'back', 'to', 'reading', 'her', 'paper', '||rightparen||', 'by', 'the', 'same', 'token', 'you', 'could', 'say', 'fish', 'is', 'fish', '||period||', 'ha', 'ha', 'ha', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||leftparen||', 'pauses', '||rightparen||', 'listen', 'dophne', '||return||', '||return||', 'daphne:', '||leftparen||', 'correcting', 'george', '||rightparen||', 'daphne', '||period||', '||return||', '||return||', 'george:', 'daphne', '||period||', 'i', 'have', 'to', 'tell', 'you', 'something', '||comma||', 'this', 'is', 'very', 'difficult', '||period||', '||period||', '||period||', '||return||', '||return||', 'daphne:', '||leftparen||', 'interrupts', 'and', 'hurriedly', 'puts', 'down', 'her', 'paper', '||rightparen||', 'oh', '||comma||', 'i', 'forgot', 'to', 'tell', 'you', '||period||', 'al', 'netchie', 'called', 'me', 'today', '||period||', '||return||', '||return||', 'george:', 'ya', '||comma||', 'ya', '||period||', 'i', 'bumped', 'into', 'him', 'on', 'the', 'bus', '||period||', 'what', 'did', 'he', 'have', 'to', 'say', '||questionmark||', '||return||', '||return||', 'daphne:', 'he', 'told', 'me', 'not', 'to', 'get', 'involved', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'daphne:', 'ya', '||comma||', 'he', 'said', 'you', 'could', 'never', 'make', 'a', 'commitment', 'to', 'any', 'one', 'and', "you'd", 'just', 'wind', 'up', '||leftparen||', 'reaches', 'out', 'and', 'lightly', 'slaps', "george's", 'hand', '||rightparen||', 'hurting', 'me', '||period||', '||return||', '||return||', 'george:', 'he', 'said', 'that', '||questionmark||', '||leftparen||', 'daphne', 'shacks', 'her', 'head', '||rightparen||', 'what', 'a', 'nerve', '||period||', 'how', 'dare', 'he', 'say', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'daphne:', 'is', 'it', 'true', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', 'not', '||period||', 'i', 'mean', 'sure', '||comma||', 'there', 'may', 'have', 'been', 'one', 'or', 'two', 'occasions', 'in', 'the', 'past', '||comma||', 'when', 'i', 'may', 'have', 'reacted', 'in', 'uh', 'impulsive', 'or', 'somewhat', 'immature', 'manner', '||comma||', 'but', 'those', 'days', 'are', 'well', 'behind', 'me', '||period||', '||return||', '||return||', '[setting:', 'abc', 'studios]', '||return||', '||return||', 'son:', 'how', 'long', 'are', 'you', 'going', 'to', 'be', 'away', 'for', 'daddy', '||questionmark||', '||return||', '||return||', 'father:', "i'm", 'not', 'really', 'going', 'away', '||comma||', 'i', 'told', 'you', '||comma||', "i'll", 'be', 'back', 'every', 'other', 'weekend', '||period||', '||return||', '||return||', 'son:', "don't", 'go', 'daddy', '||comma||', "don't", 'go', '||period||', '||return||', '||return||', 'father:', 'now', 'porter', '||comma||', 'you', 'know', 'your', 'mother', 'and', 'i', 'love', 'you', 'very', 'much', '||comma||', 'but', 'sometimes', 'people', 'fall', 'out', 'of', 'love', '||period||', 'now', 'give', 'me', 'a', 'big', 'hug', '||period||', '||return||', '||return||', 'director:', '||leftparen||', 'walks', 'into', 'the', 'scene', '||rightparen||', '||period||', '||period||', '||period||', 'and', "there's", 'your', 'scene', '||period||', 'stand', '||dash||', 'ins', '||return||', '||return||', 'kramer:', 'yo', '||return||', '||return||', 'stage', 'hand', '||leftparen||', 'larry', "david's", 'voice', '||rightparen||', ':', 'alright', 'you', 'guys', 'get', 'on', 'their', 'spots', 'so', 'we', 'can', 'fix', 'the', 'lights', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taps', 'the', 'father', 'on', 'the', 'shoulder', '||rightparen||', "that's", 'good', 'work', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'quickly', 'with', 'no', 'acting', '||rightparen||', 'how', 'long', 'you', 'going', 'to', 'be', 'away', 'for', 'daddy', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'trying', 'to', 'act', 'like', 'the', 'guy', 'playing', 'the', 'father', '||rightparen||', "i'm", 'not', 'really', 'going', 'away', '||comma||', 'i', 'told', 'you', "i'd", 'be', 'back', 'every', 'other', 'weekend', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'tugs', 'on', "kramer's", 'coat', '||rightparen||', "don't", 'go', 'daddy', '||comma||', "don't", '||period||', '||period||', '||period||', 'go', '||period||', '||return||', '||return||', 'kramer:', 'now', 'listen', 'porter', '||comma||', 'you', 'know', 'your', 'mother', 'and', 'i', 'love', 'you', 'very', 'much', '||period||', 'but', 'sometimes', 'people', 'fall', 'out', 'of', 'love', '||period||', 'now', 'give', 'me', 'a', 'big', 'hug', '||period||', '||return||', '||return||', 'mickey:', 'ah', '||exclammark||', '||leftparen||', 'pauses', 'for', 'the', 'hug', '||rightparen||', 'alright', '||leftparen||', 'kramer', 'still', 'holding', 'on', '||rightparen||', 'alright', '||exclammark||', 'kramer', '||exclammark||', '||leftparen||', 'pushes', 'kramer', 'off', 'him', '||rightparen||', '||return||', '||return||', 'director:', 'ok', 'everybody', "that's", 'lunch', '||period||', '||period||', '||period||', 'one', 'hour', '||period||', '||return||', '||return||', 'kramer:', 'how', 'do', 'those', 'lifts', 'feel', '||questionmark||', '||return||', '||return||', 'mickey:', 'quiet', '||period||', '||return||', '||return||', 'tammy:', 'hi', 'guys', '||period||', '||return||', '||return||', 'mickey:', 'hey', 'tammy', '||period||', '||return||', '||return||', 'tammy:', 'hey', '||comma||', 'you', 'look', 'different', '||period||', 'have', 'you', 'been', 'working', 'out', '||questionmark||', '||return||', '||return||', 'mickey:', '||leftparen||', 'looks', 'at', 'kramer', '||rightparen||', 'not', 'that', 'i', 'know', 'of', '||period||', '||return||', '||return||', 'tammy:', 'well', 'whatever', 'it', 'is', "you're", 'doing', '||comma||', 'keep', 'doing', 'it', 'you', 'look', 'great', '||period||', '||return||', '||return||', 'mickey:', 'how', 'about', 'lunch', '||questionmark||', '||return||', '||return||', 'tammy:', 'oh', 'i', "can't", 'today', '||comma||', 'but', 'um', 'i', 'see', 'it', 'our', 'future', '||period||', '||leftparen||', 'starts', 'to', 'leave', '||rightparen||', 'see', 'ya', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||period||', '||return||', '||return||', 'tammy:', 'bye', 'mickey', '||return||', '||return||', 'kramer:', 'ooo', 'she', 'likes', 'you', 'buddy', '||leftparen||', 'they', 'to', 'a', 'high', 'five', 'hand', 'shake', '||rightparen||', '||return||', '||return||', 'kramer', '&', 'mickey:', 'ya', '||exclammark||', '||return||', '||return||', 'mickey:', 'all', 'of', 'a', 'sudden', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'johnny:', 'hey', 'mick', '||period||', '||return||', '||return||', 'mickey:', 'how', 'you', "doin'", 'johnny', '||questionmark||', '||return||', '||return||', 'johnny:', 'what', 'gives', '||period||', '||period||', '||period||', "what's", 'going', 'on', '||questionmark||', "goin'", 'out', 'with', 'tammy', '||questionmark||', '||return||', '||return||', 'mickey:', 'maybe', '||period||', "what's", 'it', 'to', 'you', '||questionmark||', '||return||', '||return||', 'johnny:', 'somethin', 'different', 'about', 'you', '||period||', '||return||', '||return||', 'mickey:', 'i', 'got', 'my', 'hair', 'cut', "that's", 'all', '||leftparen||', 'turns', 'to', 'look', 'at', 'kramer', '||rightparen||', '||return||', '||return||', 'johnny:', 'nah', '||comma||', "that's", 'not', 'it', '||period||', 'something', 'else', '||period||', '||period||', '||period||', 'ya', 'you', 'look', 'different', '||period||', '||return||', '||return||', 'mickey:', 'you', "don't", '||comma||', 'you', 'got', 'the', 'same', 'ugly', 'mug', 'since', 'the', 'day', 'i', 'met', 'ya', '||period||', '||return||', '||return||', 'johnny:', 'i', "don't", 'know', 'what', 'it', 'is', '||comma||', 'but', "i'll", 'find', 'out', '||period||', '||leftparen||', 'walking', 'away', '||rightparen||', "i'll", 'find', 'out', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'so', 'uh', "she's", 'just', 'sitting', 'there', 'and', 'a', 'uh', 'packyderm', '||comma||', 'you', 'remember', 'the', 'derm', '||period||', 'he', 'says', 'uh', '||comma||', "i'm", 'gonna', 'go', 'up', 'to', 'her', '||period||', 'so', 'we', 'uh', 'he', 'uh', 'picks', 'up', 'the', 'two', 'pieces', 'of', '||leftparen||', 'wipes', 'his', 'brow', '||rightparen||', 'pizza', 'and', 'uh', 'the', 'uh', 'and', 'then', "they're", 'steaming', 'hot', 'and', "they're", 'burning', 'his', 'hands', 'see', 'so', 'he', '||period||', '||period||', '||period||', "he's", 'juggling', 'em', '||leftparen||', 'does', 'juggling', 'motions', '||rightparen||', "he's", 'jugglin', 'em', '||comma||', 'jus', 'throwing', 'them', 'up', 'in', 'the', 'air', 'and', 'just', 'as', 'he', 'gets', 'up', 'to', 'her', 'down', 'they', 'go', '||period||', '||leftparen||', 'swallows', 'and', 'takes', 'a', 'breath', '||rightparen||', 'well', 'we', 'all', 'just', 'lost', 'it', '||period||', '||leftparen||', 'fulton', 'not', 'laughing', '||comma||', 'stone', 'faced', '||rightparen||', 'it', 'was', 'really', 'really', 'funny', '||period||', '||return||', '||return||', 'phil:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'phil', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'phil:', 'you', 'look', 'terrific', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'my', 'health', '||period||', '||return||', '||return||', 'phil:', 'well', '||comma||', "that's", 'the', 'most', 'important', 'thing', '||period||', '||leftparen||', 'to', 'fulton', '||rightparen||', 'hey', 'how', 'ya', 'doing', 'fulton', '||exclammark||', 'octane', '||comma||', 'butane', '||comma||', 'nitrane', '||exclammark||', '||leftparen||', 'fulton', 'looks', 'at', 'him', 'still', 'stone', 'faced', 'and', 'not', 'amused', '||period||', 'to', 'jerry', '||rightparen||', "how's", 'he', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'wiping', 'his', 'brow', '||rightparen||', 'he', 'could', 'use', 'a', 'couple', 'laughs', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'you', 'should', 'have', 'told', 'that', 'story', 'about', 'packyderm', 'dropping', 'the', 'pizza', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'it', '||period||', '||leftparen||', 'answers', 'the', 'buzzer', '||rightparen||', 'ya', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'the', 'speaker', '||rightparen||', 'ya', '||return||', '||return||', 'jerry:', 'ya', '||period||', '||leftparen||', 'hits', 'the', 'button', '||comma||', 'opens', 'the', 'door', '||period||', 'to', 'elaine', '||rightparen||', 'hey', 'you', 'know', 'what', 'as', 'i', 'was', 'leaving', 'i', 'bumped', 'into', 'phil', 'titola', '||period||', 'he', 'is', 'one', 'of', 'the', 'greatest', 'guys', '||period||', '||return||', '||return||', 'elaine:', 'do', 'i', 'know', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', "i'll", 'tell', 'you', 'something', '||period||', 'of', 'all', 'the', 'guys', 'i', 'know', '||comma||', 'i', 'could', 'envision', 'you', 'going', 'out', 'with', 'him', '||period||', '||return||', '||return||', 'elaine:', 'if', 'you', 'were', 'a', 'woman', 'would', 'you', 'go', 'out', 'with', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'i', 'was', 'a', 'woman', "i'd", 'be', 'down', 'at', 'the', 'dock', 'waiting', 'for', 'the', 'fleet', 'to', 'come', 'in', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'ya', '||comma||', 'i', 'bet', 'you', 'would', '||period||', 'alright', '||comma||', 'give', 'him', 'my', 'number', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'george:', 'this', 'you', 'are', 'not', 'going', 'to', 'believe', '||period||', 'al', 'netchie', '||comma||', 'that', 'pimple', '||period||', 'tells', 'daphne', '||comma||', 'not', 'get', 'this', "'not", 'to', 'get', 'involved', 'with', 'me', '||period||', "'", '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'ya', '||period||', "that's", 'what', 'she', 'told', 'me', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', "he's", 'afraid', "she's", 'gonna', 'get', 'hurt', '||period||', '||return||', '||return||', 'elaine:', 'is', 'she', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'wa', '||period||', '||period||', 'he', "doesn't", 'have', 'to', 'tell', 'her', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'he', 'likes', 'her', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', 'no', 'no', '||period||', "he's", 'deeply', 'in', 'love', '||comma||', 'and', 'i', 'was', 'just', 'about', 'to', 'break', 'up', 'with', 'her', 'when', 'she', 'told', 'me', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', "can't", 'break', 'up', 'with', 'her', 'now', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'he', 'said', 'i', 'was', 'going', 'to', '||period||', '||return||', '||return||', 'elaine:', 'so', 'now', "you're", 'going', 'to', 'keep', 'going', 'out', 'with', 'her', '||comma||', 'for', 'spite', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||comma||', 'i', 'could', 'see', 'that', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'see', 'any', 'way', 'around', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'me', 'either', '||period||', '||return||', '||return||', 'george:', 'what', 'choice', 'do', 'i', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'none', '||period||', '||return||', '||return||', '[setting:', 'abc', 'studio', 'locker', 'room]', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', "fulton's", 'wife', 'told', 'me', "it's", 'all', 'my', 'fault', '||period||', 'she', 'said', 'since', 'my', 'visit', "he's", 'taken', 'a', 'turn', 'for', 'the', 'worse', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'tell', 'him', 'the', 'packyderm', 'story', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'yelling', '||rightparen||', 'yes', 'i', 'told', 'him', 'the', 'packyderm', 'story', '||exclammark||', '||return||', '||return||', 'kramer:', 'maybe', 'i', 'outta', 'go', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'towards', 'what', 'end', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'very', 'good', 'with', 'sick', 'people', '||period||', 'they', 'love', 'me', '||period||', 'when', 'my', 'friend', 'len', 'nicodemo', 'had', 'the', 'gout', '||comma||', 'i', 'moved', 'into', 'his', 'hospital', 'room', 'for', 'three', 'days', '||comma||', 'the', 'doctors', 'were', 'amazed', 'at', 'his', 'recovery', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'mick', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'johnny', 'vigiano', 'went', 'through', 'my', 'locker', '||period||', '||return||', '||return||', 'kramer:', 'yaoh', '||exclammark||', '||return||', '||return||', 'mickey:', '||leftparen||', 'slamming', 'the', 'door', '||rightparen||', 'that', 'little', 'bastard', '||exclammark||', 'he', 'saw', 'the', 'lifts', 'in', 'my', 'shoes', '||period||', 'he', 'knows', "i'm", 'heightening', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'this', 'never', 'would', 'have', 'happened', 'if', 'you', "hadn't", 'pushed', 'me', 'to', 'get', 'those', 'things', '||period||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'nobody', 'put', 'a', 'gun', 'to', 'your', 'head', '||period||', '||return||', '||return||', 'mickey:', 'ya', 'well', 'just', 'keep', 'out', 'of', 'my', 'business', 'you', 'big', 'ape', '||period||', '||leftparen||', 'pushes', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'who', 'you', 'calling', 'big', 'ape', '||questionmark||', '||leftparen||', 'pushes', 'mickey', 'back', '||rightparen||', '||return||', '||return||', 'mickey:', 'you', '||leftparen||', 'grabs', 'kramer', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'starts', 'pulling', 'them', 'apart', '||rightparen||', 'alright', 'break', 'it', 'up', '||comma||', 'break', 'it', 'up', '||period||', 'come', 'on', '||comma||', 'just', 'cut', 'it', 'out', 'now', '||leftparen||', 'kramer', 'yells', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pacing', 'back', 'and', 'forth', '||rightparen||', 'ya', '||period||', '||return||', '||return||', 'mickey:', "i'm", 'sorry', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', "it's", 'alright', '||comma||', "it's", 'alright', '||period||', "you're", 'stressed', 'oout', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'mickey', '||rightparen||', 'why', 'does', 'this', 'guy', 'johnny', 'have', 'it', 'in', 'for', 'you', '||questionmark||', '||return||', '||return||', 'mickey:', 'oh', '||comma||', "he's", 'always', 'been', 'jealous', 'of', 'me', '||period||', 'i', 'always', 'get', 'to', 'stand', 'in', 'for', 'the', 'bigger', 'stars', '||semicolon||', 'the', 'cosby', 'kids', '||comma||', 'ricky', 'schroder', '||comma||', 'macaulay', 'culkin', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'whistles', '||rightparen||', "what's", 'he', 'like', 'huh', '||questionmark||', '||return||', '||return||', 'mickey:', "he's", 'a', 'good', 'kid', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'what', 'does', 'he', 'care', 'if', 'you', 'put', 'lifts', 'in', '||questionmark||', '||return||', '||return||', 'mickey:', 'you', "don't", 'understand', '||period||', "there's", 'an', 'unwritten', 'code', 'about', 'this', 'kind', 'of', 'thing', '||period||', 'i', 'could', 'be', 'ostracized', '||period||', 'i', 'remember', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'some', 'guy', 'tried', 'to', 'heighten', '||period||', 'he', 'lost', 'his', 'job', '||comma||', 'lost', 'his', 'friends', '||comma||', 'everything', '||period||', 'oh', '||comma||', 'i', 'knew', 'i', 'was', 'crazy', 'to', 'try', 'this', 'kind', 'of', 'thing', '||comma||', 'but', 'i', 'was', 'so', 'desperate', '||period||', '||leftparen||', 'pauses', 'laying', 'on', 'the', 'couch', '||semicolon||', 'jumps', 'up', '||rightparen||', 'what', 'is', 'this', 'kid', 'taking', 'anyway', '||questionmark||', 'hormones', '||questionmark||', 'steroids', '||questionmark||', 'would', 'you', 'tell', 'me', '||exclammark||', '||questionmark||', '||return||', '||return||', '[setting:', "george's", 'car', 'outside', "daphne's", 'place]', '||return||', '||return||', 'daphne:', 'george', '||comma||', "tomorrow's", 'sunday', '||period||', 'we', 'could', 'sleep', 'late', '||comma||', 'and', 'get', 'the', 'paper', 'and', 'half', 'breakfast', 'and', 'spend', 'the', 'morning', 'together', '||comma||', 'go', 'for', 'a', 'long', 'walk', '||comma||', 'maybe', 'do', 'a', 'little', 'shopping', '||comma||', 'have', 'lunch', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupts', 'her', '||rightparen||', 'you', 'know', 'what', '||period||', 'i', "don't", 'think', "i'm", 'going', 'to', 'be', 'able', 'to', 'stay', 'over', 'tonight', '||period||', '||return||', '||return||', 'daphne:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', 'really', 'should', 'go', 'home', '||period||', 'ya', '||period||', '||period||', 'actually', "i'm", 'planning', 'on', 'spending', 'the', 'day', 'with', 'my', 'father', 'tomorrow', '||leftparen||', 'short', 'laugh', '||rightparen||', "we're", 'uh', "we're", 'going', 'to', 'a', 'father', '||dash||', 'son', 'picnic', '||comma||', 'just', 'the', 'two', 'of', 'us', '||period||', '||return||', '||return||', 'daphne:', 'i', 'thought', 'we', 'were', 'going', 'to', 'spend', 'the', 'day', 'together', '||period||', '||return||', '||return||', 'george:', 'well', "dad's", 'been', 'planning', 'this', 'for', 'such', 'a', 'long', 'time', '||comma||', 'he', 'bought', 'a', 'new', 'blanket', '||comma||', 'and', 'he', 'got', 'tha', '||period||', '||period||', '||period||', 'that', 'game', 'with', 'foam', 'paddles', 'and', 'the', 'velcro', 'ball', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'daphne:', 'have', 'you', 'given', 'any', 'more', 'thought', 'to', 'what', 'we', 'talked', 'about', '||questionmark||', 'you', 'know', '||comma||', 'moving', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'oh', 'yes', 'very', 'much', '||period||', '||return||', '||return||', 'daphne:', 'maybe', 'you', "don't", 'want', 'to', 'move', 'in', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'i', 'do', '||period||', 'you', 'know', "it's", 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'daphne:', '||leftparen||', 'interrupting', 'him', '||rightparen||', 'maybe', 'al', 'netchie', 'was', 'right', '||comma||', 'maybe', 'i', "shouldn't", 'have', 'gotten', 'involved', 'with', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', 'that', 'she', 'believes', 'al', 'was', 'right', '||rightparen||', 'no', "he's", 'not', 'right', '||period||', 'al', 'netchie', 'is', 'not', 'right', '||exclammark||', 'alright', "i'm", 'canceling', 'the', 'father', '||dash||', 'son', 'picnic', '||period||', 'i', "don't", 'know', 'what', "he's", 'gonna', 'do', 'with', 'all', 'that', 'potato', 'salad', '||period||', '||return||', '||return||', '[setting:', 'elaine', 'and', 'phil', 'in', "phil's", 'car', 'outside', "elaine's", 'apartment]', '||return||', '||return||', 'elaine:', '||leftparen||', 'phil', 'cracking', 'up', '||rightparen||', 'so', 'then', 'packyderm', 'picks', 'up', 'the', 'pieces', 'of', 'pizza', '||comma||', 'and', 'mind', 'you', 'know', 'they', 'are', 'burning', 'hot', '||period||', '||period||', 'he', 'can', 'bearly', 'hold', "'em", '||period||', 'i', 'mean', "he's", 'like', 'trying', 'to', 'juggle', '||leftparen||', 'does', 'a', 'juggling', 'motion', 'and', 'begins', 'laughing', '||rightparen||', 'the', 'pizza', '||comma||', 'you', 'know', 'ah', '||period||', 'and', 'then', 'they', 'go', 'flying', 'out', 'of', '||period||', '||period||', '||period||', '||return||', '||return||', 'phil:', '||leftparen||', 'dying', 'of', 'laughter', '||rightparen||', "i'm", 'peeing', 'in', 'my', 'pants', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'cont', '||period||', '||rightparen||', 'they', 'go', 'flying', 'out', 'of', 'his', 'hands', '||comma||', 'and', 'one', 'lands', 'on', 'her', 'face', 'and', 'the', 'other', 'lands', 'on', 'his', 'face', '||period||', '||leftparen||', 'pause', 'as', 'they', 'both', 'continue', 'to', 'laugh', 'really', 'hard', '||rightparen||', 'and', 'the', 'whole', 'place', 'went', 'crazy', '||period||', '||return||', '||return||', 'phil:', 'oh', '||comma||', "i'm", 'sorry', '||comma||', 'oh', '||period||', 'what', 'a', 'story', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'i', 'know', '||comma||', 'i', 'was', 'unbelievable', '||return||', '||return||', 'phil:', 'oh', 'that', 'is', 'one', 'of', 'the', 'funniest', 'stories', "i've", 'ever', 'heard', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'wipes', 'her', 'eyes', 'because', 'she', 'laughed', 'so', 'hard', 'she', 'cried', '||rightparen||', 'i', 'know', '||period||', '||return||', '||return||', 'phil:', 'well', 'this', 'has', 'been', 'one', 'hell', 'of', 'a', 'night', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'sorry', 'jerry', "didn't", 'suggest', 'this', 'sooner', '||period||', '||return||', '||return||', 'phil:', 'you', 'know', '||comma||', 'you', 'really', 'are', 'beautiful', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', '||leftparen||', 'pauses', '||rightparen||', 'good', 'night', '||period||', '||return||', '||return||', 'phil:', 'good', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||leftparen||', 'leans', 'in', 'to', 'kiss', 'phil', '||comma||', 'then', 'looks', 'down', 'at', 'his', 'pants', 'with', 'a', 'awkward', 'look', 'on', 'her', 'face', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'phone', '||rightparen||', 'come', 'on', 'adrian', 'give', 'me', 'another', 'chance', '||comma||', 'i', 'know', 'i', 'could', 'cheer', 'fulton', 'up', '||period||', "i'll", 'tell', 'you', 'what', '||comma||', "i'll", 'do', 'my', 'act', '||leftparen||', 'pauses', 'for', 'response', 'from', 'adrian', '||rightparen||', 'no', 'new', 'material', '||leftparen||', 'elaine', 'enters', '||rightparen||', "he's", 'never', 'heard', 'it', '||period||', "he'll", 'love', 'it', '||comma||', 'i', 'just', 'did', 'it', 'at', 'the', 'concord', 'last', 'week', '||comma||', 'it', 'killed', '||period||', '||leftparen||', 'waves', 'hello', 'to', 'elaine', '||semicolon||', 'pauses', 'for', 'response', 'from', 'adrian', '||rightparen||', 'thank', 'you', '||comma||', 'thanks', 'fo', '||period||', '||period||', 'you', 'will', 'not', 'regret', 'this', '||period||', 'ok', '||comma||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', 'phone', '||semicolon||', 'to', 'elaine', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'how', 'was', 'your', 'date', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'the', 'date', '||period||', 'the', 'date', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'interesting', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'why', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', "let's", 'see', '||comma||', '||leftparen||', 'thinking', '||rightparen||', 'how', 'shall', 'i', 'put', 'this', '||period||', '||return||', '||return||', 'jerry:', 'just', 'put', 'it', '||period||', '||return||', '||return||', 'elaine:', 'he', 'took', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'he', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'took', '||leftparen||', 'blows', 'on', 'her', 'glasses', 'twice', 'to', 'clean', 'them', '||rightparen||', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'he', 'took', 'what', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', '||period||', '||return||', '||return||', 'jerry:', 'he', 'took', 'it', '||comma||', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'yessiree', 'bob', '||period||', '||return||', '||return||', 'jerry:', 'he', "couldn't", '||period||', '||return||', '||return||', 'elaine:', 'he', 'did', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'motions', 'of', 'making', 'out', '||rightparen||', 'well', 'you', 'were', 'involved', 'in', 'some', 'sort', 'of', 'amorous', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'noooo', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'he', 'just', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'quite', '||period||', '||return||', '||return||', 'jerry:', 'there', 'was', 'no', 'mistaking', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looks', 'straight', 'into', 'his', 'eyes', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'were', 'talking', '||comma||', '||leftparen||', 'elaine', 'makes', 'an', 'agreement', 'sound', '||quotemark||', 'mmm', '||quotemark||', '||rightparen||', "you're", 'having', 'pleasant', 'conversation', '||comma||', '||leftparen||', 'elaine', 'makes', 'an', 'agreement', 'sound', '||quotemark||', 'mmm', '||quotemark||', '||rightparen||', 'then', 'all', 'of', 'sudden', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yea', '||period||', '||return||', '||return||', 'jerry:', 'it', '||period||', '||return||', '||return||', 'elaine:', 'it', '||period||', '||return||', '||return||', 'jerry:', 'out', '||period||', '||return||', '||return||', 'elaine:', 'out', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', '||comma||', 'i', "can't", 'believe', 'this', '||period||', 'i', 'know', 'phil', '||comma||', 'he', '||comma||', "he's", 'a', 'good', 'friend', 'of', 'mine', '||period||', 'we', 'play', 'softball', 'together', '||period||', 'how', 'could', 'this', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'it', 'be', '||period||', '||leftparen||', 'sarcastically', '||rightparen||', 'you', 'got', 'any', 'other', 'friends', 'you', 'want', 'to', 'set', 'me', 'up', 'with', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hey', 'how', 'was', 'your', 'date', 'with', 'phil', 'titola', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'he', 'took', 'it', 'out', '||period||', '||return||', '||return||', 'kramer:', 'maybe', 'uh', '||comma||', 'it', 'needed', 'some', 'air', '||period||', 'you', 'know', 'sometimes', 'they', 'need', 'air', '||comma||', 'they', "can't", 'breathe', 'in', 'there', '||period||', "it's", 'in', 'human', '||period||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'george:', 'so', "she's", 'just', 'sitting', 'there', '||comma||', "she's", 'having', 'a', 'pleasant', 'conversation', '||period||', '||period||', '||period||', 'and', 'all', 'of', 'a', 'sudden', '||period||', '||return||', '||return||', 'jerry:', 'it', '||period||', '||return||', '||return||', 'george:', 'it', '||period||', '||return||', '||return||', 'jerry:', 'out', '||period||', '||return||', '||return||', 'george:', 'out', '||period||', '||leftparen||', 'jerry', 'shakes', 'his', 'head', 'in', 'agreement', '||rightparen||', 'wow', '||period||', 'i', 'spend', 'so', 'much', 'time', 'trying', 'to', 'get', 'their', 'clothes', 'off', '||comma||', 'i', 'never', 'thought', 'of', 'taking', 'mine', 'off', '||period||', '||leftparen||', 'jerry', 'nods', '||semicolon||', 'george', 'looks', 'at', 'his', 'watch', '||rightparen||', 'alright', '||comma||', 'hey', 'come', 'on', '||comma||', 'get', 'out', 'of', 'here', '||comma||', 'dophne', 'gonna', 'be', 'here', 'any', 'minute', '||period||', '||return||', '||return||', 'jerry:', 'alright', "i'm", 'going', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', "i've", 'come', 'to', 'realize', '||questionmark||', "i'm", 'not', 'just', 'bored', '||period||', 'i', 'genuinely', 'dislike', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', 'how', 'long', 'you', 'are', 'going', 'to', 'keep', 'this', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'hey', "i'll", 'get', 'married', 'if', 'i', 'have', 'to', '||period||', 'al', 'netchie', 'will', 'think', 'twice', 'before', 'he', 'opens', 'his', 'mouth', 'about', 'me', 'again', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'george', 'they', 'are', 'doing', 'wonderful', 'things', 'at', 'mental', 'institutions', 'these', 'days', '||period||', "i'd", 'be', 'happy', 'to', 'set', '||dash||', 'up', 'a', 'meet', 'and', 'greet', '||period||', '||return||', '||return||', 'george:', "i'm", 'very', 'disappointed', 'to', 'here', 'you', 'talk', 'like', 'that', '||period||', 'you', 'still', "don't", 'know', 'what', 'makes', 'me', 'tick', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'do', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'to', 'the', 'hospital', 'to', 'see', 'fulton', '||period||', "i'm", 'not', 'even', 'saying', 'hello', '||comma||', "i'm", 'going', 'right', 'into', 'material', '||period||', '||return||', '||return||', '[setting:', "fulton's", 'hospital', 'room]', '||return||', '||return||', 'phil:', 'ah', 'hey', 'jer', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hey', 'phil', '||period||', '||return||', '||return||', 'phil:', 'you', 'know', "i'm", 'sorry', 'things', "didn't", 'work', 'out', 'with', 'elaine', '||period||', 'i', "don't", 'know', 'what', 'i', 'did', 'wrong', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'y', '||period||', '||period||', 'you', 'showed', 'her', 'who', 'you', 'are', '||period||', '||return||', '||return||', 'phil:', 'oh', '||comma||', 'look', 'at', 'this', '||comma||', 'what', "she's", 'got', 'to', 'breast', 'feed', 'in', 'public', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||comma||', "that's", 'the', '||period||', '||period||', 'last', 'thing', 'you', 'want', 'to', 'see', '||period||', 'well', '||comma||', 'next', 'to', 'last', '||period||', '||return||', '||return||', 'phil:', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'acting', 'like', 'he', 'was', 'walking', 'on', 'stage', '||rightparen||', 'hey', 'how', 'ya', 'doing', '||questionmark||', 'good', 'to', 'be', 'here', '||period||', '||return||', '||return||', '[setting:', 'abc', 'studios', 'set]', '||return||', '||return||', 'kramer', '&', 'mickey:', 'rock', '||comma||', 'paper', '||comma||', 'scissors', 'match', '||period||', '||return||', '||return||', 'mickey:', 'alright', '||comma||', 'rock', 'beats', 'paper', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'paper', 'covered', 'rock', '||questionmark||', '||return||', '||return||', 'mickey:', 'nah', '||comma||', 'rock', 'flies', 'right', 'through', 'paper', '||period||', '||return||', '||return||', 'kramer:', 'what', 'beats', 'rock', '||questionmark||', '||return||', '||return||', 'mickey:', '||leftparen||', 'looks', 'at', 'his', 'hand', '||rightparen||', 'nothing', 'beats', 'rock', '||period||', '||return||', '||return||', 'kramer:', 'alright', 'come', 'on', '||period||', '||return||', '||return||', 'kramer', '&', 'mickey:', 'rock', '||comma||', 'paper', '||comma||', 'scissors', 'match', '||period||', '||return||', '||return||', 'kramer:', 'rock', '||period||', '||return||', '||return||', 'mickey:', 'rock', '||return||', '||return||', 'kramer', '&', 'mickey:', 'rock', '||comma||', 'paper', '||comma||', 'scissors', 'match', '||period||', '||return||', '||return||', 'kramer:', 'rock', '||period||', '||return||', '||return||', 'mickey:', 'rock', '||period||', '||return||', '||return||', 'mickey:', 'hey', 'bob', '||period||', "what's", 'with', 'you', '||questionmark||', 'you', 'gotta', 'problem', '||questionmark||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'see', 'that', 'look', 'he', 'gave', 'me', '||questionmark||', '||leftparen||', 'starts', 'to', 'get', 'up', 'to', 'go', 'after', 'him', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stops', 'mickey', '||rightparen||', 'alright', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'kramer', '&', 'mickey:', 'rock', '||comma||', 'paper', '||comma||', 'scissors', 'match', '||period||', '||return||', '||return||', 'kramer:', 'rock', '||period||', '||return||', '||return||', 'mickey:', 'rock', '||period||', '||return||', '||return||', 'mickey:', 'hey', 'tammy', '||period||', '||return||', '||return||', 'tammy:', 'hello', '||period||', '||return||', '||return||', 'mickey:', 'so', 'tammy', '||comma||', 'finally', '||comma||', "today's", 'our', 'big', 'lunch', '||period||', '||return||', '||return||', 'tammy:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'mickey:', 'why', 'not', '||questionmark||', 'what', 'the', 'hell', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'tammy:', 'look', 'mickey', '||comma||', 'everybody', 'knows', 'that', "you're", 'heightening', '||period||', "it's", 'all', 'over', 'the', 'set', '||period||', '||return||', '||return||', 'mickey:', 'wait', '||comma||', 'wait', '||leftparen||', 'goes', 'to', 'grab', 'her', 'arm', '||rightparen||', '||return||', '||return||', 'tammy:', '||leftparen||', 'recoils', '||rightparen||', "don't", 'touch', 'me', '||period||', 'you', 'ought', 'to', 'be', 'ashamed', 'of', 'yourself', '||period||', 'all', 'the', 'progress', 'we', 'made', 'over', 'the', 'years', 'and', 'you', 'go', 'and', 'blow', 'it', 'by', 'pulling', 'a', 'stupid', 'stunt', 'like', 'this', '||period||', '||return||', '||return||', 'mickey:', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||comma||', 'you', 'got', 'me', 'all', 'wrong', '||period||', 'it', 'was', 'all', 'because', 'of', 'the', 'kid', '||period||', '||leftparen||', 'numerous', 'little', 'people', 'begin', 'to', 'crowd', 'around', 'them', '||rightparen||', '||leftparen||', 'to', 'tammy', '||rightparen||', 'the', 'kid', 'was', 'growing', '||period||', 'he', 'shot', 'up', 'two', 'and', 'a', 'half', 'inches', 'in', 'a', 'month', '||period||', '||leftparen||', 'to', 'all', 'the', 'little', 'people', '||rightparen||', 'i', 'woulda', 'lost', 'my', 'job', '||period||', 'any', 'one', 'of', 'you', 'would', 'have', 'done', 'the', 'same', '||period||', 'you', 'got', 'no', 'right', '||exclammark||', "i'm", 'mickey', 'abbott', '||exclammark||', 'i', 'stood', 'in', 'for', 'punky', 'bruster', 'when', 'all', 'of', 'you', 'was', 'nothing', '||period||', '||leftparen||', 'seeing', 'the', 'crowd', 'still', "doesn't", 'agree', 'with', 'what', 'he', 'did', '||comma||', 'he', 'points', 'at', 'kramer', '||rightparen||', "it's", 'all', 'his', 'fault', '||period||', '||leftparen||', 'kramer', 'acts', 'like', 'he', "doesn't", 'know', 'what', 'mickey', 'is', 'talking', 'about', '||rightparen||', 'it', 'was', 'his', 'idea', '||period||', '||return||', '||return||', 'tammy:', 'come', 'on', 'johnny', '||comma||', "let's", 'go', 'get', 'something', 'to', 'eat', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'in', 'complete', 'disgust', 'as', 'seeing', 'tammy', 'leave', 'with', 'johnny', '||rightparen||', 'ah', '||exclammark||', '||leftparen||', 'turns', 'and', 'looks', 'at', 'kramer', '||rightparen||', 'ah', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'mickey:', 'ah', '||exclammark||', '||return||', '||return||', 'kramer:', 'mickey', '||exclammark||', '||return||', '||return||', '[setting:', 'back', 'in', "fulton's", 'hospital', 'room]', '||return||', '||return||', 'jerry:', 'this', "guy's", 'belching', 'out', 'vitamins', '||period||', '||period||', '||return||', '||return||', 'fulton:', '||leftparen||', 'dying', 'of', 'laughter', 'and', 'coughing', '||rightparen||', 'stop', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cont', '||rightparen||', 'and', 'this', 'whole', 'justice', 'league', '||comma||', 'batman', '||comma||', 'green', 'lantern', '||comma||', 'wonder', 'woman', '||period||', 'you', 'mean', 'to', 'tell', 'me', 'superman', "can't", 'cover', 'everything', '||questionmark||', '||return||', '||return||', 'fulton:', '||leftparen||', 'still', 'laughing', 'and', 'coughing', '||rightparen||', 'stop', '||period||', '||return||', '||return||', 'jerry:', 'for', 'crying', 'out', 'loud', '||comma||', "he's", 'superman', '||period||', '||leftparen||', 'fulton', 'stops', 'laughing', '||comma||', "jerry's", 'face', 'is', 'stunned', '||rightparen||', 'fulton', '||questionmark||', '||leftparen||', 'looks', 'at', 'him', '||rightparen||', 'fulton', '||questionmark||', '||return||', '||return||', '[setting:', 'back', 'at', "monk's]", '||return||', '||return||', 'daphne:', 'george', '||comma||', 'first', 'let', 'me', 'just', 'say', "i've", 'never', 'been', 'with', 'a', 'guy', 'who', 'was', 'so', 'committed', 'to', 'commit', '||period||', 'i', 'mean', "it's", 'so', 'rare', 'in', 'men', 'these', 'days', 'an', '||comma||', "that's", 'what', 'makes', 'this', 'all', 'the', 'more', 'difficult', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'happily', '||rightparen||', 'difficult', '||questionmark||', '||return||', '||return||', 'daphne:', 'the', 'other', 'day', 'after', 'work', 'some', 'girlfriends', 'and', 'i', 'went', 'to', 'a', 'bar', 'for', 'some', 'drinks', 'and', 'there', 'was', 'this', 'crazy', 'mishap', 'and', 'i', 'wound', 'up', 'meeting', 'someone', 'as', 'a', 'result', '||period||', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'acting', 'disappointed', '||rightparen||', 'oh', '||comma||', 'please', "don't", '||period||', '||return||', '||return||', 'daphne:', 'uh', '||comma||', "i'm", 'sorry', '||period||', "i'm", 'afraid', 'the', 'worst', 'of', 'it', 'is', "it's", 'someone', 'you', 'know', '||period||', 'jerry', 'persheck', '||period||', '||return||', '||return||', 'george:', 'packyderm', '||questionmark||', '||return||', '||return||', 'daphne:', 'heh', '||comma||', 'he', 'was', 'carrying', 'these', 'two', 'pieces', 'of', 'pizza', '||period||', '||period||', '||period||', '||return||', '||return||', 'meryl:', 'good', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'good', 'morning', '||period||', '||return||', '||return||', 'meryl:', "how'd", 'you', 'sleep', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'are', 'the', 'couch', 'tonight', '||comma||', 'young', 'lady', '||period||', 'you', 'were', 'all', 'over', 'my', 'side', '||period||', '||return||', '||return||', 'meryl:', 'i', 'was', 'not', '||exclammark||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'i', 'was', 'sleeping', 'with', 'one', 'cheek', 'off', 'the', 'bed', '||exclammark||', '||return||', '||return||', 'meryl:', 'by', 'the', 'way', '||comma||', 'you', 'know', "you're", 'falling', 'way', 'behind', 'on', 'the', "'i", 'love', "you's", '||period||', "'", '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', '12', '||dash||', '8', '||exclammark||', '||return||', '||return||', 'meryl:', 'no', '||comma||', "it's", '15', '||dash||', '8', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'i', "can't", 'beat', 'ya', '||comma||', "i'm", 'just', 'trying', 'to', 'stay', 'competitive', '||period||', '||return||', '||return||', 'meryl:', 'alright', "c'mon", '||comma||', "let's", 'get', 'some', 'breakfast', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'let', 'me', 'get', 'a', 'coat', '||period||', 'i', 'think', "i'll", 'uh', 'try', 'a', 'sport', 'jacket', 'and', 'scarf', 'thing', '||comma||', 'you', 'know', '||comma||', 'like', 'an', 'unemployed', 'actor', '||period||', '||leftparen||', 'goes', 'into', 'his', 'room', '||comma||', 'and', 'comes', 'back', 'out', 'with', 'the', 'jacket', 'on', '||period||', '||rightparen||', 'ahh', '||comma||', "haven't", 'worn', 'this', 'one', 'in', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'meryl', '||leftparen||', 'feels', "jerry's", 'material', '||rightparen||', ':', 'ooh', '||comma||', 'cashmere', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'gore', '||dash||', 'tex', '||period||', "it's", 'new', '||period||', '||leftparen||', 'checks', 'his', 'pockets', '||period||', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'this', 'locket', '||period||', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', "there's", 'a', 'picture', 'in', 'here', '||comma||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'meryl:', 'wow', '||comma||', 'this', 'is', 'really', 'old', '||period||', 'you', "don't", 'know', 'whose', 'it', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "haven't", 'worn', 'this', 'jacket', 'since', 'i', 'got', 'it', 'back', 'from', 'the', 'dry', '||dash||', 'cleaner', '||period||', 'maybe', 'we', 'should', 'ask', 'him', '||period||', '||return||', '||return||', 'meryl:', 'alright', '||comma||', "we'll", 'stop', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'what', 'do', 'you', 'want', 'to', 'get', 'for', 'breakfast', '||questionmark||', '||return||', '||return||', 'meryl:', 'pancakes', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'now', '||comma||', "c'mon", '||comma||', 'you', 'know', "i'm", 'getting', 'pancakes', '||period||', '||return||', '||return||', 'meryl:', 'i', "don't", 'know', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'we', "can't", 'both', 'get', 'pancakes', '||comma||', "it's", 'embarrassing', '||period||', "it's", 'like', 'one', 'step', 'from', 'the', 'couples', 'who', 'dress', 'alike', '||period||', '||return||', '||return||', 'meryl:', "i'll", 'get', 'the', 'short', 'stack', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "that's", 'why', 'i', 'love', 'ya', '||period||', '15', '||dash||', '9', '||period||', '||leftparen||', 'they', 'go', 'out', 'into', 'the', 'hallway', 'and', 'run', 'into', 'kramer', 'and', 'his', 'african', '||dash||', 'american', 'girlfriend', '||comma||', 'anna', '||period||', '||rightparen||', 'hey', '||comma||', 'how', 'ya', 'doin', '||period||', "'", '||return||', '||return||', 'kramer:', 'we', 'just', 'got', 'back', 'from', 'breakfast', '||period||', 'the', 'pancakes', 'were', 'dynamite', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'is', 'that', 'my', 'maple', 'syrup', '||questionmark||', 'oh', '||comma||', 'ya', '||period||', '||leftparen||', 'kramer', 'hands', 'it', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'meryl:', 'you', 'bring', 'your', 'own', 'syrup', '||questionmark||', '||return||', '||return||', 'kramer:', 'got', 'to', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'meryl', '||rightparen||', ':', 'you', 'got', 'a', 'lot', 'to', 'learn', 'about', 'pancakes', '||period||', '||return||', '||return||', 'marty', '||leftparen||', 'looking', 'at', 'the', 'locket', '||rightparen||', ':', 'this', 'is', 'my', 'wife', '||period||', 'she', 'died', 'eight', 'years', 'ago', '||period||', 'i', 'been', 'looking', 'all', 'over', 'for', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "it's", 'a', 'lucky', 'thing', 'i', 'put', 'the', 'jacket', 'on', '||period||', 'but', 'how', 'did', 'it', 'get', 'in', 'the', 'pocket', '||questionmark||', '||return||', '||return||', 'marty:', 'well', '||comma||', 'see', 'here', '||comma||', 'the', 'chain', 'is', 'broken', '||period||', '||period||', '||period||', 'it', 'must', 'have', 'slipped', 'in', 'when', 'i', 'was', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'gestures', 'at', 'the', 'racks', 'of', 'clothes', 'behind', 'him', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'wow', '||period||', '||return||', '||return||', 'marty:', 'i', 'turned', 'my', 'house', 'upside', '||dash||', 'down', 'looking', 'for', 'this', '||exclammark||', "it's", 'all', 'i', 'have', 'left', 'of', 'her', '||period||', '||return||', '||return||', 'meryl:', 'oh', '||comma||', "that's", 'so', 'touching', '||period||', '||return||', '||return||', 'marty', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'know', 'what', "i'm", 'gonna', 'do', 'for', 'you', '||questionmark||', "i'm", 'gonna', 'give', 'you', 'and', 'your', 'family', '25%', 'off', 'all', 'your', 'dry', '||dash||', 'cleaning', 'from', 'now', 'on', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'marty:', 'what', 'are', 'you', "talkin'", 'about', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'silly', '||exclammark||', '||return||', '||return||', 'marty:', 'hey', '||comma||', 'forget', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'get', 'outta', 'here', '||exclammark||', '||return||', '||return||', 'marty:', "it's", 'done', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'giving', 'in', '||rightparen||', ':', 'alright', '||period||', '||return||', '||return||', 'meryl:', 'well', '||comma||', 'i', 'guess', 'i', 'get', 'it', 'too', '||comma||', 'because', "i'm", 'his', 'wife', '||period||', '||return||', '||return||', 'marty', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'i', "didn't", 'know', 'you', 'were', 'married', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'uh', "you've", 'never', 'met', 'my', 'wife', '||comma||', 'meryl', '||questionmark||', 'meryl', 'seinfeld', '||period||', '||return||', '||return||', 'marty', '||leftparen||', 'to', 'meryl', '||rightparen||', ':', 'sure', '||comma||', 'you', 'get', 'the', 'discount', '||comma||', 'too', '||period||', '||return||', '||return||', 'jerry:', 'you', 'might', 'regret', 'that', '||comma||', 'because', 'the', 'money', 'my', 'wife', 'spends', 'on', 'clothes', '||period||', '||period||', '||period||', '||return||', '||return||', 'meryl:', "i'm", 'taking', 'him', 'to', 'the', 'cleaners', '||exclammark||', '||return||', '||return||', 'jerry:', 'ah', '||dash||', 'see', 'the', 'sense', 'of', 'humor', '||questionmark||', "c'mere", '||comma||', "i'm", 'so', 'nuts', 'about', 'you', '||period||', '||period||', '||period||', '||leftparen||', 'hugs', 'meryl', '||period||', '||rightparen||', 'i', 'tell', 'ya', '||comma||', 'it', 'was', 'fun', 'being', 'single', '||comma||', 'but', 'when', 'you', 'meet', 'a', 'woman', 'like', 'this', '||comma||', 'you', "don't", 'walk', 'to', 'get', 'married', '||dash||', 'you', 'run', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'greg', '||period||', '||return||', '||return||', 'greg:', "haven't", 'seen', 'you', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'well', '||comma||', 'actuall', 'today', 'was', 'the', 'first', 'day', 'i', 'worked', 'out', 'since', 'the', 'central', 'park', 'mini', '||dash||', 'marathon', '||period||', '||return||', '||return||', 'greg:', 'you', 'ran', 'the', 'mini', '||dash||', 'marathon', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', 'i', 'exercised', 'that', 'day', '||period||', '||leftparen||', 'laughs', '||period||', '||rightparen||', '||return||', '||return||', 'greg:', 'well', '||comma||', 'i', '||dash||', 'i', 'gotta', 'take', 'off', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'guess', 'as', 'an', 'airline', 'pilot', '||comma||', "you're", 'one', 'of', 'the', 'few', 'people', 'who', 'can', 'say', 'that', 'and', 'mean', 'it', '||period||', '||leftparen||', 'laughs', 'again', '||period||', 'greg', 'looks', 'at', 'her', '||comma||', 'unamused', '||period||', '||rightparen||', 'um', '||comma||', 'do', 'you', 'have', 'the', 'time', '||questionmark||', '||return||', '||return||', 'greg', '||leftparen||', 'looks', 'at', 'his', 'watch', '||rightparen||', ':', 'eleven', '||dash||', 'thirty', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'surprised', '||rightparen||', ':', 'eleven', '||dash||', 'thirty', '||questionmark||', '||return||', '||return||', 'greg:', 'wait', '||dash||', 'wait', '||comma||', 'ten', '||dash||', 'thirty', '||period||', 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'greg:', 'do', 'you', 'have', 'to', 'be', 'somewhere', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'greg:', 'then', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'just', 'waiting', 'for', 'my', 'friend', 'george', '||comma||', 'we', 'worked', 'out', 'together', '||period||', '||return||', '||return||', 'greg:', 'oh', '||period||', 'well', '||comma||', 'it', 'was', 'good', 'seeing', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'nice', 'to', 'see', 'you', '||comma||', 'too', '||period||', '||return||', '||return||', 'meryl:', 'uh', '||comma||', 'would', 'you', '||comma||', 'um', '||period||', '||period||', '||period||', 'can', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'pardon', '||questionmark||', '||return||', '||return||', 'meryl:', 'the', 'syrup', '||period||', 'would', 'you', 'pass', 'the', 'syrup', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'holds', 'up', 'the', 'syrup', 'bottle', '||rightparen||', ':', 'oh', '||comma||', 'you', 'want', 'to', 'try', 'the', 'syrup', '||exclammark||', '||leftparen||', 'meryl', 'smiles', 'and', 'takes', 'it', '||period||', 'the', 'waitress', 'comes', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'waitress:', 'can', 'i', 'get', 'you', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'i', 'think', 'my', 'wife', 'and', "i'll", 'have', 'a', 'little', 'more', 'coffee', '||period||', '||return||', '||return||', 'waitress:', 'okay', '||period||', '||return||', '||return||', 'meryl:', 'and', 'a', 'check', 'for', 'my', 'husband', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'toasts', 'with', 'his', 'orange', 'juice', '||rightparen||', ':', 'to', 'my', 'beautiful', 'wife', '||period||', '||return||', '||return||', 'meryl:', 'to', 'my', 'adoring', 'husband', '||period||', '||return||', '||return||', 'jerry:', 'adoring', '||questionmark||', 'what', 'about', 'handsome', '||questionmark||', '||return||', '||return||', 'meryl:', 'i', 'like', 'adoring', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'sure', '||comma||', "adoring's", 'good', 'for', 'you', '||comma||', 'what', 'does', 'it', 'do', 'for', 'me', '||questionmark||', '||leftparen||', 'meryl', 'laughs', '||period||', 'the', 'owner', 'of', 'the', 'coffee', 'shop', 'comes', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'owner', '||leftparen||', 'points', 'at', 'the', 'bottle', 'of', 'maple', 'syrup', '||rightparen||', ':', 'excuse', 'me', '||period||', '||period||', '||period||', 'where', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'owner:', 'uh', '||comma||', 'we', "don't", 'allow', 'any', 'outside', 'syrups', '||comma||', 'jams', 'or', 'condiments', 'in', 'the', 'restaurant', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'and', 'if', 'i', 'catch', 'you', 'in', 'here', 'with', 'that', 'again', '||period||', '||period||', '||period||', 'i', 'will', 'confiscate', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', '||dash||', 'i', '||dash||', 'i', 'told', 'my', 'wife', 'not', 'to', 'bring', 'it', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '25%', 'off', '||questionmark||', 'do', 'i', 'get', 'that', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'just', 'meryl', '||period||', '||return||', '||return||', 'kramer:', 'why', '||comma||', 'why', '||questionmark||', 'why', 'does', 'she', 'get', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "she's", 'my', 'wife', '||exclammark||', '||leftparen||', 'the', 'door', 'buzzer', 'sounds', '||semicolon||', 'jerry', 'answers', 'it', '||rightparen||', 'yeh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'buzzer', '||rightparen||', 'meh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'buzzes', 'her', 'up', '||rightparen||', 'eh', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'know', 'and', "i'll", 'tell', 'ya', '||comma||', "i'm", 'really', 'enjoying', 'this', 'marriage', 'thing', '||period||', 'you', 'think', 'about', 'each', 'other', '||period||', 'you', 'care', 'about', 'each', 'other', '||period||', "it's", 'wonderful', '||exclammark||', 'plus', '||comma||', 'i', 'love', 'saying', '||quotemark||', 'my', 'wife', '||period||', '||quotemark||', 'once', 'i', 'started', 'saying', 'it', '||comma||', 'i', "couldn't", 'stop', '||dash||', '||quotemark||', 'my', 'wife', '||quotemark||', 'this', '||comma||', '||quotemark||', 'my', 'wife', '||quotemark||', 'that', '||period||', '||period||', '||period||', "it's", 'an', 'amazing', 'way', 'to', 'begin', 'a', 'sentence', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'my', 'wife', 'has', 'an', 'inner', 'ear', 'infection', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'see', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'like', 'that', '||exclammark||', 'hey', 'look', '||comma||', 'will', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', 'will', 'you', 'take', 'my', 'quilt', 'into', 'the', 'cleaners', 'for', 'me', '||comma||', 'so', 'i', 'can', 'get', 'the', 'discount', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'come', 'on', '||comma||', "we're", 'gonna', 'start', 'doing', 'this', 'now', '||questionmark||', 'i', "can't", 'be', 'taking', 'all', 'your', 'dry', '||dash||', 'cleaning', 'in', '||exclammark||', '||return||', '||return||', 'kramer:', "c'mon", '||comma||', 'just', 'this', 'one', 'time', '||exclammark||', "it's", 'expensive', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||leftparen||', 'elaine', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'hey', 'elaine', '||comma||', 'what', 'do', 'you', 'say', 'if', 'neither', 'of', 'us', 'is', 'married', 'in', 'ten', 'years', '||comma||', 'we', 'get', 'hitched', '||questionmark||', '||return||', '||return||', 'elaine:', "let's", 'make', 'it', 'fifty', '||period||', '||return||', '||return||', 'kramer:', "we're", 'engaged', '||exclammark||', 'alright', '||comma||', "i'm", 'gonna', 'get', 'my', 'quilt', '||period||', '||leftparen||', 'kramer', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'listen', 'to', 'this', '||period||', 'remember', 'that', 'guy', 'i', 'was', 'telling', 'you', 'about', 'at', 'the', 'health', 'club', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'fly', '||dash||', 'boy', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "where's", 'george', '||questionmark||', 'i', 'thought', 'he', 'was', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', 'waited', '||comma||', 'he', "didn't", 'show', 'up', '||period||', 'anyway', '||comma||', 'this', 'guy', 'gave', 'me', 'an', 'open', '||dash||', 'lip', 'kiss', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', "we've", 'always', 'just', "kind've", 'pecked', '||period||', 'this', 'one', 'had', 'a', 'totally', 'different', 'dynamic', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'mean', '||comma||', 'his', 'upper', 'lip', 'landed', 'flush', 'on', 'my', 'upper', 'lip', '||period||', 'but', 'his', 'lower', 'lip', 'landed', 'well', 'below', 'my', 'rim', '||period||', '||return||', '||return||', 'jerry:', 'ohhh', '||comma||', 'moisture', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'definite', 'moisture', '||period||', '||return||', '||return||', 'jerry:', "that's", 'an', 'open', '||dash||', 'lip', 'kiss', '||comma||', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'listen', '||comma||', 'i', 'think', "he's", 'giving', 'me', 'a', 'big', 'signal', '||period||', '||period||', '||period||', 'maybe', 'he', 'wants', 'to', 'change', 'our', 'relationship', '||period||', '||leftparen||', 'the', 'buzzer', 'sounds', '||comma||', 'elaine', 'answers', 'it', '||period||', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'on', 'intercom', '||rightparen||', ':', 'oh', '||comma||', 'uh', '||period||', '||period||', '||period||', "it's", 'george', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'meekly', '||rightparen||', ':', 'nothing', '||period||', '||period||', '||period||', 'little', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'was', 'it', '||questionmark||', 'i', 'mean', '||comma||', 'i', 'was', 'waiting', '||period||', '||return||', '||return||', 'george:', 'can', 'i', 'come', 'upstairs', '||comma||', 'please', '||questionmark||', '||leftparen||', 'elaine', 'pushes', 'the', 'button', 'and', 'lets', 'george', 'in', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'i', 'mean', '||comma||', 'maybe', 'he', 'wants', 'to', 'ask', 'me', 'out', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'why', "you're", 'interested', 'in', 'this', 'guy', '||comma||', "he's", 'a', 'jerk', '||period||', '||return||', '||return||', 'elaine:', 'because', '||comma||', 'he', "doesn't", 'pay', 'any', 'attention', 'to', 'me', '||comma||', 'and', 'uh', 'he', 'ignores', 'me', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'respect', 'that', '||period||', '||leftparen||', 'george', 'enters', '||period||', '||rightparen||', 'mmm', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||comma||', 'i', '||period||', '||period||', '||period||', 'said', 'it', 'was', 'a', 'little', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'what', 'was', 'it', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'defensive', '||rightparen||', ':', 'well', '||period||', '||period||', '||period||', 'i', 'was', 'in', 'the', 'locker', 'room', 'showering', '||comma||', 'and', 'i', '||period||', '||period||', '||period||', 'i', 'had', 'to', 'go', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'i', 'think', 'the', 'guy', 'in', 'the', 'shower', 'opposite', 'saw', 'me', '||period||', 'he', 'gave', 'me', 'a', 'dirty', 'look', '||period||', '||return||', '||return||', 'elaine:', 'you', 'went', '||period||', '||period||', '||period||', 'in', 'the', 'shower', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'so', 'what', '||questionmark||', "i'm", 'not', 'the', 'only', 'one', '||exclammark||', '||leftparen||', 'kramer', 'enters', 'with', 'his', 'quilt', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'do', 'you', 'go', 'in', 'the', 'shower', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'never', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'do', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'take', 'baths', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'was', 'i', 'supposed', 'to', 'do', '||questionmark||', 'get', 'out', 'of', 'the', 'shower', '||comma||', 'put', 'on', 'my', 'bathrobe', '||questionmark||', 'go', 'all', 'the', 'way', 'down', 'to', 'the', 'other', 'end', '||questionmark||', 'come', 'all', 'the', 'way', 'back', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'ever', 'hear', 'of', '||period||', '||period||', '||period||', 'holding', 'it', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', '||period||', '||period||', 'no', '||comma||', "that's", 'very', 'bad', 'for', 'the', 'kidneys', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'george:', 'medical', 'journals', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'the', 'medical', 'journals', 'mention', 'anything', 'about', 'standing', 'in', 'a', 'pool', 'of', 'someone', "else's", 'urine', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'meryl:', 'oh', '||comma||', 'hi', '||period||', '||period||', '||period||', 'honey', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'meryl:', 'i', 'just', 'thought', "i'd", 'drop', 'off', 'a', 'few', 'things', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'smiles', 'at', 'marty', 'nervously', '||period||', '||rightparen||', 'well', '||comma||', 'i', 'must', 'have', 'been', 'in', 'the', 'incinerator', 'room', 'when', 'you', 'left', '||period||', 'here', 'you', 'go', '||comma||', 'marty', '||period||', '||leftparen||', 'hands', 'over', "kramer's", 'quilt', '||period||', '||rightparen||', '||return||', '||return||', 'marty:', 'another', 'quilt', '||questionmark||', 'huh', '||questionmark||', '||leftparen||', 'uncle', 'leo', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||questionmark||', '||exclammark||', '||return||', '||return||', 'uncle', 'leo:', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'marty', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'so', '||comma||', 'if', 'you', 'or', 'your', 'wife', 'want', 'to', 'drop', 'by', 'on', 'wednesday', '||comma||', 'it', 'should', 'be', 'ready', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'your', 'wife', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'hoping', 'leo', 'will', 'pick', 'up', 'on', 'the', 'scam', '||rightparen||', ':', 'yeah', '||period||', '||period||', '||period||', 'my', 'wife', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||period||', '||period||', '||period||', 'i', 'got', 'married', '||period||', '||return||', '||return||', 'uncle', 'leo', '||leftparen||', 'shocked', '||rightparen||', ':', 'you', 'got', 'married', '||questionmark||', 'i', "wasn't", 'invited', '||questionmark||', 'nobody', 'sends', 'me', 'an', 'invitation', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'was', 'sudden', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'are', 'you', 'ashamed', 'of', 'your', 'uncle', '||questionmark||', 'do', 'i', 'embarrass', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'it', 'was', 'a', 'small', 'ceremony', '||period||', '||return||', '||return||', 'uncle', 'leo:', "haven't", 'i', 'always', 'been', 'a', 'good', 'uncle', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'yes', '||comma||', 'you', 'have', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'who', 'told', 'you', 'when', 'you', 'went', 'to', 'school', 'that', 'you', 'print', 'well', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'did', '||comma||', 'you', 'did', '||period||', '||return||', '||return||', 'uncle', 'leo', '||leftparen||', 'to', 'meryl', '||rightparen||', ':', 'when', 'he', 'was', 'younger', '||comma||', 'he', 'had', 'a', 'beautiful', 'penmanship', '||period||', 'i', 'used', 'to', 'encourage', 'him', 'to', 'print', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'a', 'good', 'printer', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'remember', 'your', "'v", '||period||', "'", 'it', 'was', 'like', 'a', 'perfect', 'triangle', '||period||', 'whoa', '||comma||', "there's", 'my', 'bus', '||exclammark||', '||leftparen||', 'rushes', 'out', '||period||', '||rightparen||', 'hello', '||exclammark||', 'wait', '||exclammark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||comma||', 'wait', '||exclammark||', '||return||', '||return||', 'greg:', "i'm", 'glad', "you're", 'here', '||period||', 'this', 'can', 'get', 'really', 'boring', '||period||', 'do', 'you', 'know', 'where', 'i', 'can', 'get', 'some', 'good', 'olives', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'can', 'find', 'out', '||period||', '||return||', '||return||', 'greg:', 'would', 'ya', '||questionmark||', '||return||', '||return||', 'elaine:', 'sure', '||period||', '||leftparen||', 'thinking', '||rightparen||', 'ooh', '||comma||', 'a', 'project', '||period||', "that's", 'a', 'definite', 'signal', '||period||', '||return||', '||return||', 'greg:', 'by', 'the', 'way', '||comma||', 'you', 'look', 'really', 'great', 'in', 'that', 'leotard', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'thanks', '||period||', '||leftparen||', 'thinking', '||rightparen||', "that's", 'no', 'signal', '||comma||', 'who', "wouldn't", 'like', 'me', 'in', 'this', 'leotard', '||questionmark||', 'i', 'look', 'amazing', 'in', 'this', 'leotard', '||period||', '||return||', '||return||', 'greg:', 'hey', '||comma||', 'you', 'know', "what's", 'weird', '||questionmark||', 'i', 'think', 'i', 'had', 'a', 'dream', 'about', 'you', 'last', 'night', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thinking', '||rightparen||', 'okay', '||comma||', 'he', 'open', '||dash||', 'lips', 'me', '||comma||', 'he', 'dreams', 'about', 'me', '||comma||', 'we', 'have', 'an', 'olive', 'project', '||period||', '||period||', '||period||', "that's", 'it', '||comma||', "i'm", 'asking', 'this', 'guy', 'out', '||period||', '||leftparen||', 'to', 'greg', '||rightparen||', 'um', '||comma||', 'you', 'know', 'greg', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'greg:', 'can', 'i', 'have', 'a', 'sip', 'of', 'your', 'water', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||period||', '||leftparen||', 'hands', 'greg', 'her', 'bottle', '||period||', '||rightparen||', '||return||', '||return||', 'greg:', 'thanks', '||period||', '||leftparen||', 'is', 'about', 'to', 'take', 'a', 'drink', '||comma||', 'but', 'wipes', 'the', 'neck', 'of', 'the', 'bottle', 'with', 'his', 'shirt', 'first', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shocked', 'expression', '||semicolon||', 'thinking', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'greg', '||leftparen||', 'hands', 'the', 'bottle', 'back', '||rightparen||', ':', "i'm", 'sorry', '||comma||', 'what', 'were', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'it', 'was', 'nothing', '||comma||', 'for', '||dash||', 'forget', 'it', '||period||', '||leftparen||', 'george', 'enters', 'the', 'gym', '||period||', '||rightparen||', '||return||', '||return||', 'greg:', 'see', 'that', 'guy', 'right', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'yup', '||comma||', 'you', 'mean', 'him', '||questionmark||', '||return||', '||return||', 'greg:', 'i', 'caught', 'him', 'urinating', 'in', 'the', 'shower', '||period||', "i'm", 'thinking', 'about', 'turning', 'him', 'in', '||comma||', 'too', '||period||', '||return||', '||return||', 'meryl:', 'honey', '||questionmark||', 'could', 'you', 'get', 'me', 'something', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'from', 'his', 'bedroom', 'hallway', '||comma||', 'alluding', 'to', 'the', 'fact', 'that', 'she', 'should', 'get', 'the', 'drink', 'herself', '||rightparen||', ':', "you're", 'right', 'there', '||period||', '||return||', '||return||', 'meryl:', "c'mon", '||comma||', "i'm", 'sitting', '||exclammark||', '||leftparen||', 'jerry', 'walks', 'to', 'the', 'kitchen', '||comma||', 'annoyed', '||period||', 'meryl', 'laughs', 'at', 'the', 'tv', 'show', "she's", 'watching', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'looking', 'in', 'a', 'drawer', '||rightparen||', ':', 'honey', '||comma||', "what'd", 'you', 'do', 'with', 'the', 'can', 'opener', '||questionmark||', '||return||', '||return||', 'meryl:', 'i', "didn't", 'do', 'anything', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'not', 'here', '||comma||', 'it', 'was', 'here', 'yesterday', '||period||', '||return||', '||return||', 'meryl:', "it's", 'in', 'the', 'first', 'drawer', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'looking', 'in', 'the', 'first', 'drawer', '||period||', "it's", 'not', 'here', '||period||', '||return||', '||return||', 'meryl:', 'yes', '||comma||', 'it', 'is', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'irritated', '||rightparen||', ':', 'hey', '||period||', '||period||', '||period||', "i'm", 'not', 'stupid', '||period||', "i'm", 'looking', 'in', 'that', 'drawer', '||comma||', "there's", 'no', 'can', 'opener', '||period||', '||return||', '||return||', 'meryl:', 'did', 'i', 'say', 'you', 'were', 'stupid', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'angrily', '||rightparen||', ':', 'well', '||comma||', "wouldn't", 'i', 'have', 'to', 'be', '||questionmark||', 'you', 'tell', 'me', "there's", 'a', 'can', 'opener', 'in', 'the', 'drawer', '||comma||', "i'm", 'looking', 'in', 'the', 'drawer', '||comma||', "there's", 'no', 'can', 'opener', '||dash||', 'what', 'other', 'conclusion', 'could', 'one', 'reach', '||questionmark||', '||leftparen||', 'the', 'phone', 'rings', '||period||', '||rightparen||', '||return||', '||return||', 'meryl', '||leftparen||', 'getting', 'up', '||rightparen||', ':', 'do', 'you', 'want', 'me', 'to', 'go', 'find', 'it', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'slams', 'the', 'drawer', '||rightparen||', ':', 'yes', '||period||', 'i', 'do', '||period||', 'you', 'show', 'me', 'where', "there's", 'a', 'can', 'opener', 'in', 'that', 'drawer', '||period||', '||leftparen||', 'answers', 'the', 'phone', '||period||', '||rightparen||', 'hello', '||exclammark||', "i'm", 'sorry', '||comma||', "i'm", 'just', 'fighting', 'with', 'my', 'wife', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'we', 'just', 'heard', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'morty:', 'why', 'the', 'hell', "didn't", 'you', 'tell', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'ma', '||period||', '||period||', '||period||', '||return||', '||return||', 'meryl', '||leftparen||', 'looking', 'in', 'the', 'drawer', '||rightparen||', ':', 'it', 'was', 'in', 'here', 'yesterday', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'angrily', '||rightparen||', ':', 'yeah', '||comma||', "that's", 'what', 'i', 'said', '||exclammark||', '||return||', '||return||', 'helen:', 'who', 'is', 'she', '||questionmark||', 'when', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'morty', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'i', 'told', 'her', "you'd", 'get', 'married', '||period||', 'she', 'thought', "you'd", 'never', 'do', 'it', '||period||', '||return||', '||return||', 'helen:', 'morty', '||comma||', "you're", 'talking', 'too', 'loud', '||period||', '||return||', '||return||', 'morty:', "i'm", 'not', 'talking', 'loud', '||exclammark||', '||return||', '||return||', 'helen:', "you're", 'hurting', 'my', 'eardrum', '||period||', '||return||', '||return||', 'meryl', '||leftparen||', 'looking', 'for', 'the', 'can', 'opener', '||rightparen||', ':', 'well', '||comma||', 'you', 'must', 'have', 'done', 'something', 'with', 'it', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'meryl', '||rightparen||', ':', "i'm", 'on', 'the', 'phone', '||exclammark||', '||return||', '||return||', 'helen:', 'is', 'she', 'there', '||questionmark||', 'can', 'we', 'talk', 'to', 'her', '||questionmark||', "what's", 'her', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'mom', '||comma||', "i'm", 'not', 'married', '||period||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'married', '||exclammark||', '||return||', '||return||', 'morty:', 'i', 'knew', 'it', '||comma||', 'i', 'told', 'you', '||exclammark||', '||return||', '||return||', 'helen', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'uncle', 'leo', 'said', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'just', 'pretending', "i'm", 'married', 'to', 'get', 'a', 'discount', 'on', 'dry', '||dash||', 'cleaning', '||period||', '||return||', '||return||', 'helen:', 'a', 'discount', 'on', 'dry', '||dash||', 'cleaning', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'meryl', '||comma||', "who's", 'making', 'a', 'racket', 'in', 'the', 'kitchen', 'looking', 'for', 'the', 'can', 'opener', '||rightparen||', ':', 'could', 'you', 'make', 'a', 'little', 'more', 'noise', '||questionmark||', '||leftparen||', 'to', 'his', 'parents', '||rightparen||', 'listen', '||comma||', "i'm", 'gonna', 'have', 'to', 'call', 'you', 'later', '||period||', '||return||', '||return||', 'meryl', '||leftparen||', 'not', 'finding', 'the', 'opener', '||rightparen||', ':', 'well', '||comma||', 'i', 'give', 'up', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'whoopie', 'whoop', '||period||', '||leftparen||', 'meryl', 'goes', 'into', 'the', 'other', 'room', '||period||', 'kramer', 'staggers', 'in', 'the', 'door', 'in', 'his', 'bathrobe', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'got', 'any', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'kramer', 'lurches', 'into', 'the', 'kitchen', '||comma||', 'trips', '||comma||', 'and', 'falls', 'onto', 'the', 'kitchen', 'floor', '||period||', '||rightparen||', "i'll", 'get', 'it', '||comma||', "i'll", 'get', 'it', '||exclammark||', 'take', 'it', 'easy', '||comma||', 'why', 'are', 'you', 'so', 'tired', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'quilt', 'is', 'still', 'at', 'the', 'cleaners', '||period||', 'jerry', '||comma||', 'i', "can't", 'sleep', 'without', 'my', 'quilt', '||period||', 'like', 'the', 'other', 'night', '||questionmark||', 'i', 'was', 'cold', '||period||', 'so', '||comma||', 'last', 'night', '||comma||', 'i', 'turn', 'up', 'the', 'heat', '||dash||', "it's", 'too', 'hot', '||period||', 'i', 'open', 'up', 'a', 'window', '||dash||', "it's", 'too', 'cold', '||period||', '||leftparen||', 'frantic', '||rightparen||', 'i', "can't", 'get', 'into', 'a', 'zone', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||leftparen||', 'points', 'to', "kramer's", 'pocket', 'as', 'meryl', 'comes', 'back', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'forgot', '||period||', '||leftparen||', 'hands', 'back', "jerry's", 'can', 'opener', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "i'm", 'sorry', 'about', 'all', 'that', 'can', 'opener', 'stuff', '||period||', '||return||', '||return||', 'meryl:', 'yeah', '||comma||', 'me', 'too', '||period||', 'i', 'love', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'you', '||period||', '||return||', '||return||', 'meryl:', 'well', '||comma||', 'goodnight', '||period||', '||return||', '||return||', 'jerry:', 'goodnight', '||period||', '||leftparen||', 'they', 'kiss', 'goodnight', '||comma||', 'then', 'promptly', 'roll', 'away', 'from', 'each', 'other', 'and', 'go', 'to', 'sleep', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'they', 'could', 'kick', 'me', 'out', 'of', 'the', 'health', 'club', 'if', 'he', 'tells', 'them', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'talk', 'to', 'him', '||exclammark||', '||return||', '||return||', 'elaine:', 'how', 'can', 'i', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'said', 'the', 'guy', 'gave', 'you', 'an', 'open', '||dash||', 'lipped', 'kiss', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'enunciating', 'clearly', 'so', 'george', 'gets', 'the', 'point', '||rightparen||', ':', 'yes', '||comma||', 'but', 'then', 'he', 'wiped', 'his', 'hand', 'on', 'the', 'top', 'of', 'the', 'bottle', 'when', 'i', 'offered', 'him', 'water', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'that', "doesn't", 'mean', 'anything', '||exclammark||', '||return||', '||return||', 'elaine:', 'are', 'you', 'kidding', '||questionmark||', "that's", 'very', 'significant', '||exclammark||', 'if', 'he', 'was', 'interested', 'in', 'me', '||comma||', "he'd", 'want', 'my', 'germs', '||exclammark||', "he'd", 'just', 'crave', 'my', 'germs', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'patiently', 'while', 'watching', 'tv', '||rightparen||', ':', "she's", 'right', '||comma||', 'george', '||period||', 'bottle', '||dash||', 'wipe', 'is', 'big', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'about', 'the', 'open', '||dash||', 'lipped', 'kiss', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'watching', 'tv', '||semicolon||', 'sounds', 'like', 'basketball', '||rightparen||', 'bottle', '||dash||', 'wipe', 'supercedes', 'it', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "you're", 'right', '||comma||', "you're", 'right', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'alright', '||comma||', 'maybe', "he's", 'not', 'interested', '||comma||', 'but', 'you', 'still', 'know', 'him', '||dash||', "can't", 'you', 'just', 'ask', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||period||', '||period||', '||period||', 'but', 'if', 'i', 'ask', 'him', 'now', '||comma||', 'i', 'will', 'have', 'no', 'chance', 'of', 'going', 'out', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', '||period||', '||period||', '||period||', 'i', "don't", 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'aha', '||period||', 'aha', '||period||', 'could', 'it', 'be', 'because', 'you', "don't", 'want', 'him', 'to', 'know', 'that', 'you', 'have', 'a', 'friend', 'who', 'pees', 'in', 'the', 'shower', '||comma||', 'is', 'that', 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "that's", 'not', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'think', 'it', 'is', '||exclammark||', 'i', 'think', "that's", 'exactly', 'what', 'it', 'is', '||exclammark||', '||return||', '||return||', 'elaine:', 'why', "couldn't", 'you', 'just', 'wait', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'there', '||exclammark||', 'i', 'saw', 'a', 'drain', '||exclammark||', '||return||', '||return||', 'elaine:', 'since', 'when', 'is', 'a', 'drain', 'a', 'toilet', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'all', 'pipes', '||exclammark||', "what's", 'the', 'difference', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'different', 'pipes', 'go', 'to', 'different', 'places', '||exclammark||', "you're", 'gonna', 'mix', "'em", 'up', '||exclammark||', '||return||', '||return||', 'george:', "i'll", 'call', 'a', 'plumber', 'right', 'now', '||exclammark||', '||leftparen||', 'goes', 'for', 'the', 'phone', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'can', 'we', 'just', 'drop', 'all', 'the', 'pee', '||dash||', 'pipe', 'stuff', 'here', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'okay', '||exclammark||', 'okay', '||exclammark||', 'okay', '||comma||', 'i', 'will', 'talk', 'to', 'him', '||period||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'think', 'that', 'quilt', 'is', 'ready', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'gotta', 'pick', 'it', 'up', 'for', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'pick', 'it', 'up', '||comma||', 'but', "it's", 'the', 'last', 'time', "i'm", "doin'", 'it', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'so', 'tired', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'boy', '||comma||', 'you', "don't", 'look', 'good', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', 'i', "don't", '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'you', 'look', 'pale', '||period||', '||return||', '||return||', 'kramer:', 'pale', '||questionmark||', 'oh', 'my', 'god', '||period||', '||period||', '||period||', 'i', 'gotta', 'meet', "anna's", 'parents', 'today', '||exclammark||', '||leftparen||', 'the', 'phone', 'rings', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'oh', '||comma||', 'hi', 'honey', '||period||', '||leftparen||', 'annoyed', '||comma||', 'weary', '||rightparen||', 'yes', '||comma||', 'i', 'told', 'him', '||period||', "i'll", 'get', 'it', '||period||', '||leftparen||', 'george', 'and', 'elaine', 'give', 'each', 'other', 'a', 'look', '||comma||', 'then', 'leave', 'jerry', 'to', 'argue', 'with', 'meryl', 'on', 'the', 'phone', '||period||', '||rightparen||', 'whenever', '||period||', 'okay', '||comma||', "i'm", 'sorry', '||period||', '||period||', '||period||', '||return||', '||return||', 'marty:', "i'm", 'sorry', '||comma||', "it's", 'not', 'ready', 'yet', '||period||', '||leftparen||', 'kramer', 'bursts', 'in', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'not', 'ready', '||questionmark||', 'it', 'has', 'to', 'be', 'ready', '||exclammark||', 'what', 'kind', 'of', 'a', 'business', 'are', 'you', 'running', 'here', '||questionmark||', '||return||', '||return||', 'marty:', 'who', 'the', 'hell', 'are', 'you', '||questionmark||', 'huh', '||comma||', "it's", 'not', 'your', 'quilt', '||period||', '||return||', '||return||', 'jerry:', "he's", 'a', 'very', 'good', 'friend', 'of', 'mine', '||comma||', "he's", "kind've", 'like', 'an', 'older', 'brother', 'to', 'me', '||period||', '||period||', '||period||', 'when', 'things', "don't", 'go', 'right', '||comma||', 'he', 'kinda', 'takes', 'it', 'personally', '||period||', '||return||', '||return||', 'marty:', 'well', '||comma||', 'uh', '||period||', '||period||', '||period||', 'maybe', 'tomorrow', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'angrily', '||comma||', 'to', 'jerry', '||rightparen||', ':', 'maybe', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'okay', '||comma||', "it'll", 'be', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "i'm", 'gonna', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', "goin'", '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'gotta', 'meet', "anna's", 'parents', 'today', '||comma||', 'remember', '||questionmark||', 'i', 'look', 'terrible', '||exclammark||', "i'm", 'gonna', 'hit', 'the', 'tanning', 'machines', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'you', 'still', 'do', 'that', '||period||', 'you', 'know', 'those', 'things', 'are', 'bad', 'for', 'ya', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "that's", 'how', 'i', 'maintain', 'my', 'glow', '||period||', '||return||', '||return||', 'jerry:', "i'm", "goin'", 'home', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||period||', '||return||', '||return||', 'paula', '||leftparen||', 'to', 'marty', '||comma||', 'in', 'a', 'foreign', 'accent', '||rightparen||', ':', 'excuse', 'me', '||questionmark||', 'uh', '||comma||', 'how', 'much', 'would', 'it', 'cost', 'to', 'clean', 'this', '||questionmark||', '||return||', '||return||', 'marty:', 'oh', '||comma||', 'about', 'thirteen', 'dollars', '||period||', '||return||', '||return||', 'paula:', 'thirteen', '||questionmark||', 'well', '||comma||', 'i', "can't", 'afford', 'that', '||period||', '||return||', '||return||', 'marty:', 'well', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'greg', '||period||', '||return||', '||return||', 'greg:', 'hey', '||comma||', 'elaine', '||period||', "i'll", 'be', 'off', 'in', 'a', 'second', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||period||', '||leftparen||', 'another', 'guy', 'approaches', 'the', 'exercise', 'machine', '||period||', '||rightparen||', 'i', 'got', 'the', 'machine', 'next', '||comma||', 'buddy', '||period||', '||leftparen||', 'greg', 'finishes', 'up', 'his', 'workout', 'and', 'gets', 'off', 'the', 'machine', '||period||', '||rightparen||', '||return||', '||return||', 'greg', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'oh', '||comma||', 'well', '||comma||', "it's", 'all', 'yours', '||period||', '||leftparen||', 'walks', 'away', '||period||', 'elaine', 'looks', 'at', 'the', 'machine', '||comma||', 'then', 'george', 'runs', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'happened', '||questionmark||', 'did', 'he', 'bring', 'it', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'never', 'mind', 'that', '||comma||', 'look', 'at', 'the', 'signal', 'i', 'just', 'got', '||period||', '||return||', '||return||', 'george:', 'signal', '||questionmark||', 'what', 'signal', '||questionmark||', '||return||', '||return||', 'elaine:', 'lookit', '||period||', 'he', 'knew', 'i', 'was', 'gonna', 'use', 'the', 'machine', 'next', '||comma||', 'he', "didn't", 'wipe', 'his', 'sweat', 'off', '||period||', "that's", 'a', 'gesture', 'of', 'intimacy', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'what', 'that', 'is', '||dash||', "that's", 'a', 'violation', 'of', 'club', 'rules', '||period||', 'now', 'i', 'got', 'him', '||exclammark||', 'and', "you're", 'my', 'witness', '||exclammark||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'george', '||exclammark||', 'listen', '||exclammark||', 'he', 'knew', 'what', 'he', 'was', 'doing', '||comma||', 'this', 'was', 'a', 'signal', '||period||', '||return||', '||return||', 'george:', 'a', 'guy', 'leaves', 'a', 'puddle', 'of', 'sweat', '||comma||', "that's", 'a', 'signal', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', "it's", 'a', 'social', 'thing', '||period||', '||return||', '||return||', 'george:', 'what', 'if', 'he', 'left', 'you', 'a', 'used', 'kleenex', '||comma||', "what's", 'that', '||comma||', 'a', 'valentine', '||questionmark||', 'now', 'you', 'go', 'up', 'to', 'him', 'and', 'you', 'tell', 'him', 'that', 'if', "he's", 'thinking', 'of', 'turning', 'me', 'in', '||comma||', 'that', 'i', 'got', 'the', 'goods', 'on', 'him', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'i', "won't", 'be', 'a', 'party', 'to', 'this', '||period||', '||return||', '||return||', 'george:', 'so', "you're", 'gonna', 'let', 'me', 'get', 'suspended', 'for', 'shower', 'urination', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', "i'll", 'talk', 'to', 'him', '||period||', 'but', "you're", 'putting', 'me', 'in', 'a', 'very', 'difficult', 'position', '||period||', '||leftparen||', 'walks', 'away', '||period||', '||rightparen||', '||return||', '||return||', 'paula:', 'i', "won't", 'let', 'you', 'do', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'want', 'to', '||exclammark||', '||return||', '||return||', 'paula:', 'but', 'it', "isn't", 'right', '||exclammark||', 'i', "can't", '||period||', '||return||', '||return||', 'jerry:', 'give', 'me', 'the', 'clothes', '||period||', '||return||', '||return||', 'paula:', 'jerry', '||comma||', 'please', '||period||', 'what', 'about', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'hell', 'with', 'her', '||period||', '||leftparen||', 'paula', 'dramatically', 'flees', 'from', 'the', 'coffee', 'shop', '||period||', 'jerry', 'thinks', 'for', 'a', 'second', '||comma||', 'then', 'follows', 'her', 'and', 'catches', 'up', 'to', 'her', 'on', 'the', 'street', '||period||', '||rightparen||', '||return||', '||return||', 'paula:', 'no', '||comma||', 'jerry', '||comma||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'gonna', 'let', 'you', 'walk', 'out', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'paula', '||leftparen||', 'hands', 'over', 'the', 'clothes', '||rightparen||', ':', 'i', "can't", 'fight', 'you', '||period||', '||leftparen||', 'they', 'embrace', 'and', 'kiss', 'passionately', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'do', 'you', 'want', 'box', 'or', 'hanger', '||questionmark||', '||return||', '||return||', 'paula:', 'you', 'decide', '||period||', '||leftparen||', 'jerry', 'considers', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', "you're", 'really', 'working', 'up', 'quite', 'a', 'sweat', 'today', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'greg:', 'yeah', '||period||', '||leftparen||', 'spies', 'the', 'shapely', 'manager', 'of', 'the', 'health', 'club', '||period||', '||rightparen||', 'oh', '||comma||', "there's", 'the', 'manager', '||period||', 'good', '||period||', 'i', 'think', "i'm", 'gonna', 'talk', 'to', 'her', 'about', 'that', 'guy', '||comma||', 'you', 'know', '||comma||', 'we', 'cannot', 'have', 'people', 'like', 'that', 'in', 'here', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'sure', 'you', 'want', 'to', 'do', 'that', '||questionmark||', '||return||', '||return||', 'greg:', 'yeah', '||period||', "he's", 'disgusting', '||exclammark||', 'besides', '||comma||', "i'll", 'take', 'any', 'chance', 'i', 'can', 'to', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'elaine:', "you're", 'interested', 'in', '||period||', '||period||', '||period||', 'in', 'her', '||questionmark||', '||leftparen||', 'points', 'at', 'the', 'manager', '||period||', '||rightparen||', '||return||', '||return||', 'greg:', 'very', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', 'you', 'know', '||comma||', 'uh', '||period||', '||period||', "i'm", 'engaged', '||period||', '||leftparen||', 'preens', '||rightparen||', 'yep', '||comma||', "gettin'", 'married', 'in', 'fifty', 'years', '||period||', '||leftparen||', 'snaps', 'the', 'straps', 'of', 'her', 'leotard', 'against', 'her', 'chest', 'and', 'winces', '||period||', 'george', 'walks', 'by', 'the', 'manager', '||period||', '||rightparen||', '||return||', '||return||', 'greg:', 'oh', 'good', '||comma||', 'there', 'he', 'is', '||period||', 'i', 'wanna', 'be', 'able', 'to', 'point', 'him', 'out', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'greg', '||comma||', 'i', "wouldn't", 'do', 'that', 'if', 'i', 'were', 'you', '||period||', '||return||', '||return||', 'greg:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'correct', 'me', 'if', "i'm", 'wrong', '||comma||', 'but', "isn't", 'it', 'a', 'violation', 'of', 'club', 'policy', 'to', 'not', 'wipe', 'down', 'a', 'machine', 'after', 'using', 'it', '||questionmark||', '||return||', '||return||', 'greg:', 'oh', '||comma||', 'i', 'see', '||period||', '||period||', '||period||', "you're", 'friends', 'with', 'the', 'urinator', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', '||comma||', 'at', 'least', 'he', 'had', 'a', 'drain', '||period||', '||return||', '||return||', 'marty:', 'here', 'you', 'go', '||comma||', 'mrs', '||period||', 'seinfeld', '||period||', '||period||', '||period||', 'with', 'your', '25%', 'discount', '||comma||', 'it', 'comes', 'to', '$17', '||period||', '80', '||period||', '||return||', '||return||', 'meryl:', 'here', 'you', 'go', '||period||', '||leftparen||', 'pays', 'marty', '||comma||', 'then', 'looks', 'at', 'the', 'clothes', 'on', 'the', 'hanger', '||period||', '||rightparen||', 'excuse', 'me', '||comma||', 'this', "isn't", 'mine', '||period||', '||return||', '||return||', 'marty:', 'oh', '||comma||', 'yes', 'it', 'is', '||period||', 'your', 'husband', 'brought', 'it', 'in', 'himself', '||period||', '||return||', '||return||', 'meryl:', 'really', '||questionmark||', '||leftparen||', 'takes', 'her', 'change', 'and', 'grabs', 'the', 'clothes', 'off', 'the', 'hanger', '||period||', '||rightparen||', 'thank', 'you', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'anna:', "that's", 'him', '||exclammark||', '||leftparen||', 'opens', 'the', 'door', '||period||', 'kramer', 'stands', 'there', '||comma||', 'deeply', 'tanned', 'and', 'smiling', '||period||', 'anna', 'and', 'her', 'grandfather', 'are', 'shocked', '||period||', '||rightparen||', '||return||', '||return||', 'meryl', '||leftparen||', 'throws', "paula's", 'clothes', 'at', 'jerry', '||rightparen||', ':', 'you', 'son', 'of', 'a', 'bitch', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'meryl:', 'who', 'is', 'she', '||questionmark||', 'i', 'want', 'to', 'know', 'who', 'she', 'is', '||period||', '||return||', '||return||', 'jerry:', 'it', "doesn't", 'matter', '||period||', 'i', 'want', 'a', 'divorce', '||period||', '||return||', '||return||', 'meryl:', 'a', 'divorce', '||questionmark||', 'oh', '||comma||', 'so', 'you', 'can', 'marry', 'her', 'and', 'give', 'her', 'the', 'discount', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'meryl:', 'what', 'happened', 'to', 'us', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'what', 'happened', '||period||', 'we', 'got', 'married', '||period||', '||return||', '||return||', 'meryl:', "i'm", 'sorry', '||comma||', 'uh', '||period||', '||period||', 'this', 'is', 'my', 'fault', '||period||', 'i', 'pushed', 'it', 'on', 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'guess', 'i', 'just', "wasn't", 'ready', 'for', 'the', 'responsibilities', 'of', 'a', 'pretend', 'marriage', '||period||', '||return||', '||return||', 'meryl:', 'goodbye', '||comma||', 'jerry', '||period||', 'oh', '||comma||', 'i', 'forgot', '||period||', '||period||', '||period||', '||leftparen||', 'reaches', 'in', 'her', 'purse', '||rightparen||', '||period||', '||period||', '||period||', 'this', 'is', 'your', 'maple', 'syrup', '||period||', '||return||', '||return||', 'jerry:', "it's", 'alright', '||comma||', 'i', 'want', 'you', 'to', 'have', 'it', '||period||', '||return||', '||return||', 'meryl:', '||leftparen||', 'sentimental', '||rightparen||', 'okay', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'always', 'have', '||period||', '||period||', '||period||', 'pancakes', '||period||', '||return||', '||return||', 'meryl:', 'bye', '||comma||', 'jerry', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'grandpa', '||leftparen||', 'to', 'anna', '||rightparen||', ':', 'i', 'thought', 'you', 'said', 'you', 'was', "bringin'", 'a', 'white', 'boy', 'home', '||exclammark||', 'i', "don't", 'see', 'a', 'white', 'boy', '||exclammark||', 'i', 'see', 'a', 'damn', 'fool', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'their', 'timing', "couldn't", 'be', 'worse', '||period||', '||return||', '||return||', 'george:', 'is', 'there', 'ever', 'a', 'good', 'time', 'to', 'have', 'your', 'parents', 'stay', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||comma||', 'i', "haven't", 'been', 'together', 'with', 'rachel', 'for', 'like', 'three', 'weeks', '||period||', 'first', 'i', 'was', 'on', 'the', 'road', '||comma||', 'then', 'my', 'parents', 'show', 'up', '||comma||', "i'm", 'getting', 'a', 'little', 'uh', 'backed', 'up', '||period||', '||return||', '||return||', 'george:', 'when', 'are', 'they', 'leaving', 'for', 'paris', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'for', 'another', 'three', 'days', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'her', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'lives', 'with', 'her', 'parents', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||leftparen||', 'jerry', 'shakes', 'his', 'head', '||rightparen||', 'maybe', 'this', 'will', 'become', 'like', 'a', 'cool', 'thing', '||comma||', 'living', 'with', 'your', 'parents', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'ya', '||comma||', 'then', 'maybe', 'baldness', 'will', 'catch', 'on', '||period||', 'this', 'will', 'all', 'be', 'turning', 'your', 'way', '||period||', '||return||', '||return||', 'george:', 'hey', 'believe', 'me', '||comma||', 'baldness', 'will', 'catch', 'on', '||period||', 'when', 'the', 'aliens', 'come', '||comma||', 'who', 'do', 'you', 'think', "they're", 'gonna', 'relate', 'to', '||questionmark||', 'who', 'do', 'you', 'think', 'is', 'going', 'to', 'be', 'the', 'first', 'ones', 'getting', 'a', 'tour', 'of', 'the', 'ship', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'baldies', '||return||', '||return||', 'george:', 'hey', 'by', 'the', 'way', 'my', 'parents', 'really', 'want', 'to', 'have', 'your', 'parents', 'over', 'dinner', 'before', 'they', 'leave', 'town', '||period||', '||return||', '||return||', 'jerry:', "that's", 'good', '||comma||', 'then', 'i', 'get', 'the', 'apartment', 'for', 'at', 'least', 'one', 'night', '||period||', 'you', 'know', "i'm", 'paying', 'for', 'this', 'whole', 'paris', 'trip', "it's", 'their', 'anniversary', 'present', '||period||', '||return||', '||return||', 'alec:', '||leftparen||', 'walking', 'over', 'to', 'jerry', 'and', "george's", 'table', '||rightparen||', 'hey', 'guys', '||period||', '||return||', '||return||', 'george:', 'hey', 'alec', '||return||', '||return||', 'jerry:', 'hey', 'alec', '||return||', '||return||', 'alec:', 'this', 'is', 'joey', '||period||', '||return||', '||return||', 'george:', 'hey', 'joey', '||comma||', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'alec:', '||leftparen||', 'joey', 'was', 'about', 'to', 'talk', '||rightparen||', 'hey', 'listen', '||comma||', 'i', 'was', 'wondering', 'if', 'either', 'one', 'of', 'you', 'guys', 'would', 'be', 'interested', 'in', 'doing', 'some', 'work', 'for', 'the', 'big', 'brother', 'program', '||questionmark||', "i'm", 'kinda', 'running', 'the', 'local', 'chapter', '||period||', 'what', 'do', 'you', 'say', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'uh', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'joey:', '||leftparen||', 'interrupts', '||rightparen||', "wouldn't", 'you', 'like', 'to', 'be', 'a', 'big', 'brother', 'to', 'someone', 'like', 'me', '||questionmark||', 'please', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'sure', 'joey', '||comma||', 'sure', '||comma||', 'i', 'would', 'be', 'thrilled', '||period||', '||return||', '||return||', 'alec:', "that's", 'great', 'george', '||comma||', 'thanks', 'a', 'lot', "i'll", 'get', 'in', 'touch', 'with', 'you', '||period||', '||return||', '||return||', 'joey:', "wouldn't", 'you', 'like', 'to', 'be', 'a', 'big', 'brother', '||period||', '||period||', '||return||', '||return||', 'alec:', '||leftparen||', 'grabs', 'joey', 'to', 'stop', 'him', '||rightparen||', 'ya', 'alright', 'joey', "that's", 'enough', '||comma||', "let's", 'go', '||leftparen||', 'walking', 'over', 'to', 'the', 'counter', '||rightparen||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'could', 'i', 'do', '||questionmark||', 'did', 'you', 'see', 'the', 'mug', 'on', 'that', 'kid', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'acting', 'like', 'joey', '||rightparen||', "wouldn't", 'you', 'like', 'to', 'pass', 'the', 'ketchup', 'to', 'someone', 'like', 'me', '||questionmark||', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'did', 'you', 'notice', 'they', 'moved', 'where', 'they', 'do', 'the', 'interview', 'on', 'jeopardy', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'ya', 'it', 'used', 'to', 'be', 'right', 'in', 'the', 'middle', 'of', 'single', 'jeopardy', 'and', 'now', 'they', 'do', 'it', 'right', 'after', 'single', 'jeopardy', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||comma||', "it's", 'much', 'better', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'n', '||dash||', 'no', 'comparison', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'gotta', 'stop', 'off', 'at', 'the', 'bookstore', 'to', 'pick', 'up', 'my', 'parents', 'one', 'of', 'those', 'french', '||dash||', 'english', 'dictionaries', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'stops', 'jerry', 'realizing', 'something', '||rightparen||', 'hey', 'hey', 'hey', 'hey', 'hey', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'your', 'parents', 'are', 'going', 'to', 'paris', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yea', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'i', 'tell', 'alec', 'that', 'i', 'have', 'to', 'go', 'to', 'paris', 'for', 'an', 'undetermined', 'amount', 'of', 'time', '||period||', 'then', 'all', 'i', 'have', 'to', 'do', 'is', 'buy', 'some', 'post', 'cards', 'and', 'have', 'your', 'parents', 'mail', 'them', 'from', 'paris', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'little', 'joey', '||questionmark||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', 'think', "he's", 'probably', 'better', 'off', '||period||', '||return||', '||return||', 'george:', "i'm", 'trying', 'to', 'get', 'out', 'of', 'this', 'big', 'brother', 'program', '||period||', 'so', 'when', 'you', 'get', 'to', 'paris', '||leftparen||', 'handing', 'morty', 'the', 'postcards', '||rightparen||', 'all', 'you', 'have', 'to', 'do', 'is', 'drop', "'em", 'in', 'any', 'mailbox', '||period||', '||return||', '||return||', 'morty:', 'but', 'there', 'are', 'no', 'stamps', 'on', 'these', '||period||', '||return||', '||return||', 'george:', 'well', 'no', 'not', 'yet', '||comma||', 'you', 'gotta', 'buy', 'french', 'stamps', '||leftparen||', 'pauses', '||rightparen||', 'i', '||dash||', "i'll", 'reimburse', 'you', 'of', 'course', '||period||', '||return||', '||return||', 'helen:', 'why', 'are', 'you', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'wants', 'this', 'guy', 'to', 'think', "he's", 'in', 'paris', '||period||', '||return||', '||return||', 'helen:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'george', 'is', 'a', 'deeply', 'disturbed', 'individual', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'hey', '||comma||', 'helen', 'uh', '||comma||', 'could', 'i', 'uh', '||comma||', 'use', 'some', 'more', 'of', 'your', 'hand', 'lotion', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'told', 'you', 'it', 'was', 'good', '||period||', '||leftparen||', 'hands', 'kramer', 'the', 'lotion', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'putting', 'on', 'the', 'lotion', '||rightparen||', 'ya', '||return||', '||return||', 'helen:', "it's", 'from', 'the', 'saks', 'fifth', 'avenue', 'in', 'miami', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||leftparen||', 'smelling', 'the', 'lotion', 'as', 'he', 'rubs', 'it', 'in', '||rightparen||', "i'm", 'gonna', 'remember', 'that', 'if', "i'm", 'ever', 'in', 'florida', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||comma||', 'or', 'if', "you're", 'ever', 'on', 'fifth', 'avenue', 'here', 'in', 'new', 'york', 'city', '||comma||', 'you', 'could', 'get', 'some', 'there', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||return||', '||return||', 'morty:', 'say', 'those', 'are', 'some', 'nice', 'pants', '||period||', 'i', 'got', 'a', 'pair', 'just', 'like', 'them', 'at', 'home', '||period||', '||return||', '||return||', 'kramer:', 'well', 'uh', 'that', "doesn't", 'surprise', 'me', '||comma||', 'ya', 'i', 'bought', 'these', 'at', "rudy's", '||period||', "it's", 'a', 'used', 'clothing', 'store', '||period||', 'see', 'when', 'people', 'like', 'you', 'die', '||comma||', 'the', 'widows', 'they', 'bring', 'in', 'their', 'wardrobes', '||comma||', 'they', 'make', 'a', 'bundle', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'my', 'father', 'has', 'a', 'ton', 'of', 'old', 'clothes', 'just', 'sitting', 'up', 'in', 'the', 'attic', '||comma||', 'y', '||dash||', 'you', 'think', "they're", 'worth', 'something', '||questionmark||', '||return||', '||return||', 'kramer:', 'ya', 'if', "they're", 'vintage', '||comma||', 'and', "you're", 'a', 'widow', '||period||', '||return||', '||return||', 'george:', 'what', 'happens', 'if', 'the', 'husband', 'dies', 'after', 'the', 'wife', '||comma||', 'who', 'brings', 'in', 'the', 'clothing', 'in', 'then', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'suppose', 'the', 'children', 'do', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pondering', '||rightparen||', 'yes', 'i', 'suppose', 'they', 'do', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'takes', 'another', 'smell', 'of', 'his', 'hands', '||rightparen||', 'alright', 'i', 'gotta', 'a', 'ten', "o'clock", '||comma||', "i'll", 'see', 'everybody', 'later', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'grabbing', 'his', 'jacket', '||rightparen||', 'hey', 'oo', '||comma||', 'i', 'just', 'remembered', 'uh', 'my', 'parents', 'really', 'wanna', 'have', 'you', 'guys', 'over', 'for', 'dinner', 'before', 'you', 'leave', 'town', '||period||', 'what', 'about', 'tonight', '||questionmark||', '||return||', '||return||', 'helen:', 'tonight', '||questionmark||', '||return||', '||return||', 'george:', 'yea', "they're", 'making', 'paella', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'looking', 'at', 'morty', '||rightparen||', 'uh', 'oh', 'i', "don't", 'think', 'we', 'think', 'we', 'can', 'make', 'it', 'tonight', '||comma||', '||leftparen||', 'turns', 'toward', 'george', '||rightparen||', 'we', 'have', 'plans', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'watching', 'the', 'whole', 'conversation', 'from', 'his', 'desk', '||rightparen||', 'what', 'plans', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'turns', 'to', 'jerry', '||rightparen||', 'we', 'have', 'plans', '||period||', '||return||', '||return||', 'jerry:', "where'd", 'you', 'get', 'plans', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'annoyed', '||rightparen||', 'we', 'have', 'plans', '||period||', '||return||', '||return||', 'george:', 'well', 'um', '||comma||', 'what', 'about', 'tomorrow', 'night', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'turns', 'back', 'toward', 'george', '||rightparen||', 'maybe', '||return||', '||return||', 'george:', 'ok', 'uh', '||comma||', 'i', 'guess', "i'll", 'tell', 'them', 'that', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'george', 'as', 'he', 'is', 'about', 'to', 'leave', '||rightparen||', 'hey', 'give', "'em", 'our', 'best', 'though', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'quietly', '||rightparen||', 'ya', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'over', 'toward', 'george', 'and', 'the', 'door', '||rightparen||', "i'll", 'call', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'plans', 'do', 'you', 'have', '||questionmark||', '||return||', '||return||', 'morty:', 'none', '||return||', '||return||', 'jerry:', 'so', 'how', 'come', "you're", 'not', 'going', 'over', 'there', 'for', 'dinner', '||questionmark||', '||return||', '||return||', 'helen:', 'jerry', 'we', "don't", 'care', 'much', 'for', 'the', "costanzas'", '||period||', '||return||', '||return||', 'morty:', 'we', "can't", 'stand', 'them', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'since', 'when', '||questionmark||', '||return||', '||return||', 'helen:', 'since', 'always', '||period||', "we've", 'never', 'liked', 'them', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'helen:', 'well', "they're", 'so', 'loud', '||comma||', "they're", 'always', 'fighting', "it's", 'uncomfortable', '||comma||', 'you', 'never', 'notice', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', 'notice', 'but', "they're", 'from', 'your', 'age', 'group', 'i', "didn't", 'know', 'you', 'could', 'detect', 'abnormal', 'behavior', 'among', 'your', 'own', 'kind', '||period||', '||return||', '||return||', 'morty:', 'well', 'we', 'do', '||period||', '||return||', '||return||', 'jerry:', 'ya', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'us', '||period||', '||return||', '||return||', 'jerry:', 'u', '||dash||', 'oh', 'come', 'on', 'up', '||period||', '||leftparen||', 'buzzes', 'them', 'up', '||rightparen||', "it's", 'elaine', 'you', "don't", 'have', 'a', 'problem', 'with', 'her', 'do', 'you', '||questionmark||', '||return||', '||return||', 'helen:', 'we', 'adore', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'she', 'wants', 'to', 'say', 'hi', '||comma||', "she's", 'with', 'her', 'new', 'boyfriend', '||period||', '||return||', '||return||', 'helen:', "what's", 'he', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'nice', '||comma||', 'bit', 'of', 'a', 'close', 'talker', '||period||', '||return||', '||return||', 'helen:', 'a', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "you'll", 'see', '||period||', '||leftparen||', 'pause', '||rightparen||', 'boy', '||comma||', 'i', 'had', 'no', 'idea', 'you', 'felt', 'this', 'way', 'about', 'the', "costanzas'", '||return||', '||return||', 'helen:', "they're", 'exhausting', "it's", 'like', 'being', 'in', 'an', 'asylum', '||period||', '||return||', '||return||', 'everyone:', 'hi', '||period||', '||return||', '||return||', 'morty:', 'hello', 'elaine', '||return||', '||return||', 'elaine:', 'this', 'is', 'aaron', '||period||', '||return||', '||return||', 'helen:', 'hello', 'aaron', '||return||', '||return||', 'morty:', 'hello', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'getting', 'up', 'in', "helen's", 'face', '||rightparen||', 'so', 'how', 'long', 'you', 'folks', 'in', 'town', '||questionmark||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'three', 'more', 'days', '||comma||', 'three', 'more', 'days', 'then', "we're", 'off', 'to', 'paris', '||period||', '||return||', '||return||', 'aaron:', 'ah', '||return||', '||return||', 'morty:', "we're", 'going', 'with', 'a', 'select', 'charter', 'group', '||period||', '||return||', '||return||', 'aaron:', 'i', 'love', 'france', '||comma||', '||leftparen||', 'moving', 'over', 'to', "morty's", 'face', '||rightparen||', 'i', 'was', 'just', 'there', 'last', 'year', '||period||', 'in', 'fact', '||comma||', 'you', 'know', 'i', 'still', 'have', 'an', 'envelope', 'full', 'of', 'french', 'franks', '||comma||', "i'll", 'give', "'em", 'to', 'ya', '||period||', '||return||', '||return||', 'helen:', 'we', "can't", 'take', 'money', '||period||', '||return||', '||return||', 'aaron:', 'oh', '||comma||', 'no', '||comma||', "it's", 'a', 'gift', '||period||', '||leftparen||', 'looking', 'toward', 'elaine', '||rightparen||', 'from', 'us', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'is', 'soo', 'nice', '||leftparen||', 'very', 'elaborate', 'nice', '||rightparen||', 'aaron', '||period||', "isn't", 'he', 'nice', '||questionmark||', '||leftparen||', 'to', 'helen', '||rightparen||', 'so', 'listen', 'has', 'jerry', 'been', "showin'", 'you', 'a', 'good', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "haven't", '||period||', '||return||', '||return||', 'aaron:', 'you', 'know', '||leftparen||', 'to', 'morty', '||rightparen||', 'i', 'have', 'a', 'friend', 'who', 'works', 'at', 'the', 'metropolitan', 'museum', 'of', 'art', '||period||', 'how', 'would', 'you', 'like', 'a', 'behind', 'the', 'scenes', 'tour', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'grabbing', 'aaron', '||rightparen||', 'really', '||comma||', 'you', 'could', 'do', 'that', '||questionmark||', '||return||', '||return||', 'aaron:', '||leftparen||', 'up', 'in', "helen's", 'face', '||rightparen||', 'easily', '||return||', '||return||', 'helen:', 'i', "wouldn't", 'be', 'any', 'trouble', '||questionmark||', '||return||', '||return||', 'aaron:', '||leftparen||', 'gets', 'closer', '||rightparen||', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'helen:', 'when', 'would', 'we', 'go', '||questionmark||', '||return||', '||return||', 'aaron:', 'how', 'about', 'right', 'now', '||questionmark||', '||return||', '||return||', 'morty:', "i'm", 'ready', '||return||', '||return||', 'helen:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'aaron:', 'yes', '||period||', '||return||', '||return||', 'helen:', 'ok', '||comma||', 'let', 'me', 'get', 'my', 'coat', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'walking', 'over', 'to', 'elaine', 'and', 'getting', 'into', 'her', 'face', '||rightparen||', 'elaine', 'what', 'do', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'w', '||dash||', 'well', 'i', "don't", 'think', 'so', 'aaron', '||comma||', 'uh', '||comma||', 'i', 'have', 'plans', '||period||', '||return||', '||return||', 'aaron:', 'oh', '||period||', '||leftparen||', 'getting', 'into', "jerry's", 'face', '||rightparen||', 'how', 'about', 'you', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'swamped', '||period||', '||return||', '||return||', 'aaron:', 'you', 'sure', '||questionmark||', 'you', 'could', 'examine', 'the', 'art', 'work', 'up', 'close', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "i'll", 'try', 'and', 'catch', 'up', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'under', 'her', 'breath', '||rightparen||', 'ya', "that'll", 'happen', '||rightparen||', '||return||', '||return||', 'aaron:', '||leftparen||', 'moving', 'toward', 'the', 'door', '||rightparen||', 'alright', '||period||', "we're", 'off', '||period||', '||return||', '||return||', 'morty:', 'ok', '||comma||', 'bye', '||period||', '||return||', '||return||', 'helen', '&', 'aaron:', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'ok', 'buh', 'bye', '||period||', 'have', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', 'aaron:', 'see', 'everybody', 'later', '||leftparen||', 'morty', 'and', 'helen', 'leave', '||semicolon||', 'aaron', 'closes', 'the', 'door', 'blowing', 'elaine', 'a', 'kiss', '||rightparen||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'elaine:', 'why', 'would', 'he', 'ask', 'your', 'parents', 'to', 'go', 'to', 'a', 'museum', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'he', 'was', 'just', 'trying', 'to', 'be', 'nice', '||period||', '||return||', '||return||', 'elaine:', 'have', 'you', 'ever', 'heard', 'of', 'anyone', 'doing', 'anything', 'like', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'he', 'just', 'did', 'me', 'a', 'big', 'favor', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'dialing', '||rightparen||', 'he', 'got', 'em', 'out', 'of', 'the', 'house', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'call', 'rachel', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'ah', 'no', '||comma||', 'i', 'got', 'the', 'machine', '||period||', 'rachel', '||exclammark||', 'are', 'you', 'there', '||questionmark||', '||exclammark||', 'i', 'got', 'the', 'place', 'to', 'myself', 'for', 'a', 'few', 'hours', '||exclammark||', 'rachel', '||exclammark||', 'where', 'are', 'you', '||questionmark||', 'rachel', '||exclammark||', '||leftparen||', 'hangs', 'up', 'the', 'phone', 'very', 'disappointed', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'putting', 'on', 'lipstick', '||rightparen||', 'sorry', 'pal', '||comma||', 'wish', 'i', 'could', 'help', 'you', 'out', '||period||', '||return||', '||return||', 'frank:', "they're", 'not', 'coming', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'they', 'had', 'plans', '||period||', '||return||', '||return||', 'estelle:', 'how', 'could', 'they', 'have', 'plans', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'what', 'i', 'wanna', 'know', '||period||', '||return||', '||return||', 'frank:', 'well', 'what', 'difference', 'does', 'it', 'make', '||questionmark||', 'they', "wouldn't", 'lie', 'to', 'us', '||comma||', "they're", 'are', 'dear', 'friends', '||period||', '||return||', '||return||', 'estelle:', 'what', 'am', 'i', 'supposed', 'to', 'do', 'with', 'all', 'this', 'paella', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'said', 'tomorrow', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'frank:', 'maybe', '||questionmark||', '||return||', '||return||', 'estelle:', 'maybe', 'they', "don't", 'like', 'us', '||period||', '||return||', '||return||', 'frank:', 'why', "wouldn't", 'they', 'like', 'us', '||questionmark||', '||leftparen||', 'tastes', 'the', 'paella', '||semicolon||', 'disgusted', '||rightparen||', 'again', 'with', 'the', 'pepper', '||questionmark||', 'what', 'do', 'you', 'gotta', 'use', 'all', 'the', 'pepper', 'for', '||questionmark||', '||return||', '||return||', 'estelle:', 'ah', 'keep', 'quiet', '||period||', '||return||', '||return||', 'frank:', 'what', 'are', 'you', 'trying', 'to', 'set', 'my', 'mouth', 'on', 'fire', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'what', 'the', 'reason', 'could', 'be', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disappointed', '||rightparen||', 'oh', '||comma||', 'hi', '||comma||', 'hi', '||period||', '||return||', '||return||', 'aaron:', 'ah', 'jerry', 'you', 'would', 'not', 'believe', 'the', 'time', 'we', 'had', '||period||', '||return||', '||return||', 'helen:', 'aaron', 'is', 'quite', 'the', 'tour', 'guide', '||period||', '||return||', '||return||', 'morty:', 'jerry', 'have', 'you', 'ever', 'seen', 'any', 'of', 'those', 'impressionist', 'paintings', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'sure', 'like', 'monet', '||period||', '||return||', '||return||', 'morty:', "don't", 'you', 'think', 'he', 'had', 'to', 'be', 'uh', 'near', 'sighted', '||questionmark||', 'i', 'mean', 'know', 'body', 'would', 'paint', 'like', 'that', 'if', 'they', 'could', 'see', '||period||', "it's", 'all', 'out', 'of', 'focus', '||period||', '||return||', '||return||', 'jerry:', 'well', "he's", 'from', 'the', 'impressionist', 'school', '||comma||', 'you', 'know', 'like', 'monet', '||comma||', 'manet', '||comma||', 'tippi', 'tippi', 'dayday', '||period||', '||return||', '||return||', 'morty:', 'i', 'say', 'the', 'guy', 'was', 'painting', 'without', 'his', 'glasses', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'phone', '||rightparen||', 'hello', '||questionmark||', 'rachel', '||comma||', 'ya', 'uh', 'no', "they're", 'back', '||period||', '||return||', '||return||', 'helen:', 'jerry', 'if', 'you', 'have', 'something', 'to', 'do', 'we', 'could', 'just', 'sit', 'right', 'here', 'and', 'read', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'haha', 'ya', 'well', 'uh', "i'm", 'sorry', 'too', "i'll", 'call', 'you', 'later', '||comma||', 'ok', 'bye', '||leftparen||', 'hangs', 'phone', 'up', '||rightparen||', '||return||', '||return||', 'aaron:', 'well', 'i', 'should', 'be', 'going', '||period||', '||return||', '||return||', 'helen:', 'oh', 'thanks', 'again', '||period||', '||return||', '||return||', 'aaron', '&', 'helen:', 'buh', 'bye', '||period||', '||return||', '||return||', 'aaron:', 'oh', 'you', 'must', 'be', 'kramer', '||leftparen||', 'advances', 'on', 'kramer', 'to', 'close', 'to', 'his', 'face', 'kramer', 'walks', 'back', 'into', 'the', 'fridge', 'to', 'avoid', 'him', 'and', 'falls', 'to', 'the', 'ground', '||rightparen||', "i've", 'heard', 'about', 'you', '||period||', '||return||', '||return||', 'kramer:', 'you', 'must', 'be', 'aaron', '||comma||', "i've", 'heard', 'about', 'you', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'laughing', '||rightparen||', 'well', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'leaving', '||rightparen||', 'bye', '||return||', '||return||', 'jerry:', 'bye', '||return||', '||return||', 'kramer:', 'so', 'uh', 'what', 'are', 'you', 'guys', 'doing', 'for', 'dinner', '||questionmark||', '||return||', '||return||', 'helen:', 'we', 'have', 'no', 'plans', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'noticing', "kramer's", 'coat', '||rightparen||', 'look', 'at', 'that', '||comma||', 'helen', 'do', 'you', 'see', 'what', "he's", 'wearing', '||questionmark||', "that's", 'the', 'executive', '||period||', '||return||', '||return||', 'kramer:', 'now', 'what', 'is', 'executive', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'belt', '||dash||', 'less', 'trench', 'coat', '||period||', 'my', 'father', 'invented', 'it', '||period||', '||return||', '||return||', 'morty:', 'i', 'sure', 'did', '||period||', 'raincoats', 'were', 'my', 'business', '||period||', 'the', 'executive', 'was', 'a', 'classic', '||comma||', 'these', "haven't", 'been', 'made', 'in', 'twenty', 'years', '||period||', '||return||', '||return||', 'helen:', 'why', 'would', 'they', '||questionmark||', 'know', 'body', 'bought', 'them', 'then', '||period||', '||return||', '||return||', 'morty:', "he's", 'wearing', 'one', '||period||', '||return||', '||return||', 'kramer:', 'yea', 'these', 'are', 'a', 'hot', 'item', 'over', 'at', "rudy's", '||period||', '||return||', '||return||', 'morty:', 'you', "don't", 'say', '||questionmark||', 'you', 'know', 'i', 'have', 'boxes', 'of', 'those', 'sitting', 'in', 'my', 'garage', 'in', 'florida', '||questionmark||', '||return||', '||return||', 'kramer:', 'get', "'em", 'up', 'here', '||period||', 'you', 'give', 'me', 'twenty', '||dash||', 'five', 'percent', 'i', '||dash||', "i'll", 'take', 'care', 'of', 'everything', '||period||', '||return||', '||return||', 'morty:', 'you', 'gotta', 'deal', '||period||', '||return||', '||return||', 'kramer:', 'yaaaa', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'like', 'the', 'meeting', 'of', 'smith', 'and', 'wesson', '||period||', '||return||', '||return||', 'morty:', "i'll", 'call', 'jack', 'klompus', '||comma||', "he's", 'got', 'a', 'key', 'to', 'the', 'garage', '||period||', 'he', 'can', 'send', 'them', 'overnight', 'delivery', '||period||', '||return||', '||return||', 'helen:', "you're", 'gonna', 'first', 'start', 'shipping', 'boxes', '||questionmark||', "we're", 'leaving', 'for', 'paris', 'in', 'three', 'days', '||period||', '||return||', '||return||', 'morty:', "he'll", 'send', 'them', 'express', '||period||', '||return||', '||return||', 'helen:', "you're", 'crazy', '||period||', '||return||', '||return||', 'morty:', "i'll", 'tell', 'you', 'how', 'crazy', 'i', 'am', '||comma||', "i'm", 'gonna', 'pay', 'for', 'this', 'whole', 'trip', 'with', 'these', 'coats', '||period||', '||return||', '||return||', 'jerry:', 'n', '||dash||', 'na', "i'm", 'paying', 'for', 'the', 'trip', '||period||', '||return||', '||return||', 'morty:', 'so', 'much', 'the', 'better', '||period||', '||return||', '||return||', 'george:', 'anyway', "it's", 'kind', 'of', 'a', 'fluke', 'thing', 'but', 'uh', "i'll", 'be', 'leaving', 'for', 'paris', 'in', 'two', 'days', '||period||', 'i', 'will', 'send', 'you', 'a', 'postcard', 'when', 'i', 'get', 'there', '||period||', '||return||', '||return||', 'alec:', 'paris', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yea', '||comma||', 'ya', '||period||', '||period||', 'ya', 'know', 'i', 'feel', 'terrible', 'about', 'joey', 'but', "it's", 'jus', '||period||', '||period||', "it's", 'a', 'great', 'business', 'opportunity', '||period||', 'i', '||dash||', 'i', "don't", 'even', 'know', 'how', 'long', "i'm", 'gonna', 'be', 'away', 'for', '||period||', '||return||', '||return||', 'alec:', 'where', 'will', 'you', 'stay', '||questionmark||', '||return||', '||return||', 'george:', 'an', 'apartment', 'complex', '||comma||', 'the', 'uh', 'the', 'eiffel', 'towers', '||period||', 'uumm', 'like', 'i', 'said', 'uh', "you'll", 'be', 'getting', 'a', 'postcard', 'uh', 'in', 'a', 'few', 'days', 'and', 'again', "i'm", 'sorry', '||period||', '||return||', '||return||', 'alec:', 'george', '||comma||', 'you', 'have', 'no', 'idea', 'how', 'fantastic', 'this', 'is', '||period||', '||return||', '||return||', 'george:', 'fantastic', '||questionmark||', '||return||', '||return||', 'alec:', 'ya', '||comma||', "we've", 'been', 'trying', 'to', 'reunite', 'joey', 'with', 'his', 'father', 'who', 'lives', 'in', 'paris', '||period||', 'but', "he's", 'afraid', 'to', 'fly', 'alone', '||comma||', 'you', 'know', "he's", 'kinda', 'withdrawn', '||comma||', 'but', 'he', 'seems', 'to', 'take', 'to', 'you', '||period||', '||leftparen||', 'george', 'smiling', 'in', 'surprise', '||rightparen||', 'so', "it's", 'a', 'perfect', 'solution', '||period||', '||return||', '||return||', 'george:', 'how', 'gee', 'what', 'a', 'coincidence', '||period||', '||return||', '||return||', 'alec:', 'and', "you'll", 'send', 'me', 'a', 'postcard', '||period||', '||return||', '||return||', 'aaron:', 'helen', 'really', 'seemed', 'to', 'respond', 'to', 'renoir', '||period||', 'i', 'think', 'she', 'really', 'connected', 'to', 'the', 'way', 'he', 'painted', 'children', '||period||', '||return||', '||return||', 'elaine:', 'mm', 'hmm', '||period||', '||return||', '||return||', 'aaron:', 'and', 'that', 'morty', '||comma||', "i'll", 'tell', 'ya', 'that', 'guy', 'is', 'full', 'of', 'life', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'he', 'was', 'convinced', 'monet', 'was', 'near', 'sighted', '||period||', 'i', 'kept', 'telling', 'him', '||return||', '||return||', 'elaine:', 'aaron', '||return||', '||return||', 'aaron:', 'yes', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'how', 'come', 'you', 'asked', 'mr', '||period||', 'and', 'mrs', '||period||', 'seinfeld', 'to', 'go', 'to', 'the', 'museum', 'with', 'you', '||questionmark||', '||return||', '||return||', 'aaron:', 'well', '||comma||', 'they', 'were', 'in', 'from', 'out', 'of', 'town', '||comma||', 'i', 'thought', 'they', 'would', 'enjoy', 'it', '||period||', '||return||', '||return||', 'elaine:', 'uhuh', '||comma||', 'um', 'you', "didn't", 'feel', 'uncomfortable', 'spending', 'the', 'whole', 'day', 'at', 'the', 'museum', 'with', 'two', 'complete', 'strangers', 'who', 'were', 'more', 'than', 'twice', 'your', 'age', '||questionmark||', '||return||', '||return||', 'aaron:', 'no', '||comma||', 'it', 'was', 'fun', '||period||', '||return||', '||return||', 'elaine:', 'you', 'had', 'fun', 'with', 'mr', '||period||', 'and', 'mrs', '||period||', 'seinfeld', '||period||', '||return||', '||return||', 'aaron:', 'yea', '||comma||', 'they', 'bought', 'me', 'a', 'coke', '||period||', '||return||', '||return||', 'kramer:', 'so', "how'd", 'you', 'come', 'up', 'with', 'the', 'idea', 'for', 'the', 'belt', '||dash||', 'less', 'trench', 'coat', '||questionmark||', '||return||', '||return||', 'morty:', 'i', 'came', 'home', 'one', 'night', '||comma||', 'and', 'i', 'tripped', 'over', 'one', 'of', "jerry's", 'toys', '||period||', '||leftparen||', 'jerry', 'smiling', 'points', 'to', 'himself', 'and', 'nods', 'with', 'cards', 'in', 'his', 'hands', '||rightparen||', 'so', 'i', 'took', 'out', 'my', 'belt', 'just', 'to', 'threaten', 'him', '||comma||', 'and', 'i', 'got', 'a', 'glimpse', 'of', 'myself', 'in', 'the', 'mirror', '||period||', '||return||', '||return||', 'kramer:', 'how', 'serendipitous', '||period||', '||return||', '||return||', 'morty:', 'so', 'that', 'night', 'i', 'cut', 'off', 'the', 'loops', 'and', 'the', 'executive', 'was', 'born', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||return||', '||return||', 'jerry:', 'he', 'also', 'came', 'up', 'with', 'an', 'idea', 'for', 'a', 'brimless', 'rain', '||dash||', 'hat', 'but', 'that', 'never', 'materialized', '||period||', '||leftparen||', 'to', 'morty', '||rightparen||', 'alright', 'come', 'on', "let's", 'play', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'call', 'jack', 'klompus', 'yet', '||questionmark||', '||return||', '||return||', 'morty:', 'i', "haven't", 'been', 'able', 'to', 'reach', 'him', '||period||', 'hey', "i'll", 'call', 'him', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'ah', 'come', 'on', '||period||', '||return||', '||return||', 'morty:', 'just', 'a', 'second', '||period||', '||leftparen||', 'goes', 'to', 'grab', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'helen:', 'jerry', 'have', 'you', 'seen', "schindler's", 'list', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "haven't", 'seen', 'it', 'yet', '||period||', '||return||', '||return||', 'helen:', 'oh', 'you', 'have', 'to', 'go', 'you', 'have', 'to', '||return||', '||return||', 'jerry:', "i'm", 'going', '||return||', '||return||', 'helen:', 'you', 'have', 'to', '||return||', '||return||', 'jerry:', 'ok', '||return||', '||return||', 'morty:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'hello', 'jack', '||period||', '||return||', '||return||', 'jack:', 'ya', '||return||', '||return||', 'morty:', "it's", 'morty', '||return||', '||return||', 'jack:', 'who', 'died', '||questionmark||', '||return||', '||return||', 'morty:', 'know', 'body', 'died', '||period||', 'jack', 'i', 'want', 'you', 'to', 'do', 'me', 'a', 'big', 'favor', '||period||', '||leftparen||', 'jerry', 'holding', 'up', 'some', 'cards', 'looking', 'at', 'his', 'father', '||rightparen||', 'in', 'my', 'garage', 'there', 'are', 'a', 'couple', 'of', 'boxes', '||period||', '||return||', '||return||', 'jack:', 'what', 'boxes', '||questionmark||', '||return||', '||return||', 'morty:', "i'm", 'gonna', 'explain', 'what', 'boxes', '||period||', '||return||', '||return||', 'jack:', 'alright', 'how', 'the', 'hell', 'do', 'i', 'know', '||questionmark||', '||return||', '||return||', 'morty:', 'anyway', 'there', 'are', 'these', 'three', 'big', 'boxes', '||comma||', 'you', "can't", 'miss', 'them', '||period||', 'i', 'want', 'you', 'to', 'ship', 'them', 'here', 'to', 'new', 'york', 'for', 'me', '||period||', '||return||', '||return||', 'jack:', 'i', 'thought', "you're", 'going', 'to', 'paris', '||return||', '||return||', 'morty:', "i'm", 'still', 'going', 'to', 'paris', '||period||', 'i', 'got', 'a', 'big', 'deal', 'cooking', 'here', '||period||', '||return||', '||return||', 'jack:', "what's", 'in', 'the', 'boxes', '||questionmark||', '||return||', '||return||', 'morty:', 'raincoats', '||period||', '||return||', '||return||', 'jack:', 'raincoats', '||questionmark||', '||leftparen||', 'doris', 'sighs', '||rightparen||', 'you', 'think', "you're", 'gonna', 'sell', 'those', 'old', 'crappy', 'raincoats', '||questionmark||', "that's", 'garbage', '||period||', '||return||', '||return||', 'helen:', 'i', 'guarantee', 'you', 'doris', 'is', 'not', 'letting', 'him', 'mail', 'those', 'boxes', '||period||', '||return||', '||return||', 'jack:', 'when', 'do', 'you', 'want', 'these', '||questionmark||', '||return||', '||return||', 'morty:', 'send', 'them', 'tomorrow', '||period||', '||return||', '||return||', 'estelle:', 'you', 'think', "they're", 'coming', 'tonight', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dunno', 'they', 'said', 'maybe', '||period||', '||return||', '||return||', 'frank:', 'of', 'course', "they're", 'coming', '||comma||', "they're", 'leaving', 'soon', '||period||', 'if', 'they', "don't", 'come', 'tonight', 'they', 'might', 'not', 'see', 'us', '||period||', '||return||', '||return||', 'estelle:', 'well', 'they', 'better', 'come', '||comma||', 'i', 'got', 'all', 'this', 'paella', '||period||', '||return||', '||return||', 'frank:', 'i', 'admire', 'morty', 'and', 'helen', 'going', 'to', 'france', '||period||', 'we', 'should', 'take', 'a', 'trip', '||comma||', 'maybe', 'a', 'cruise', '||period||', '||return||', '||return||', 'george:', 'yes', 'a', 'cruise', '||comma||', 'a', 'long', 'cruise', '||comma||', 'just', 'the', 'two', 'of', 'you', '||period||', '||return||', '||return||', 'estelle:', 'georgie', 'what', 'were', 'you', 'doing', 'poking', 'around', 'the', 'attic', 'last', 'night', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', "wasn't", 'in', 'the', 'attic', '||period||', '||return||', '||return||', 'estelle:', 'i', 'heard', 'noise', '||period||', '||return||', '||return||', 'george:', 'maybe', 'it', 'was', 'a', 'mouse', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'jumping', 'to', 'his', 'feet', '||rightparen||', 'ok', "that's", 'it', '||exclammark||', "we're", 'moving', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'frank:', 'i', 'will', 'not', 'tolerate', 'infestation', '||period||', '||return||', '||return||', 'george:', 'you', "haven't", 'even', 'seen', 'one', '||period||', '||return||', '||return||', 'frank:', "don't", 'you', 'understand', 'the', 'very', 'thought', '||comma||', 'the', 'very', 'idea', '||comma||', "i'll", 'never', 'be', 'comfortable', 'again', '||period||', '||return||', '||return||', 'estelle:', 'alright', 'frank', "that's", 'enough', '||period||', '||return||', '||return||', 'george:', 'i', 'guess', "i've", 'been', 'hanging', 'on', 'to', 'them', 'for', 'so', 'long', 'cuz', 'i', "couldn't", 'accept', 'the', 'fact', 'that', 'dad', 'was', 'really', 'gone', 'forever', '||leftparen||', 'hugs', 'a', 'piece', 'of', 'clothing', '||rightparen||', '||return||', '||return||', 'rudy:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', 'they', 'will', 'get', 'a', 'good', 'home', "won't", 'they', '||questionmark||', '||return||', '||return||', 'rudy:', 'look', 'i', 'gotta', 'be', 'honest', 'with', 'you', "there's", 'nothing', 'here', 'too', 'spectacular', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'beg', 'to', 'differ', '||period||', 'my', 'father', 'took', 'great', 'pride', 'in', 'his', 'appearance', '||comma||', 'he', 'was', 'a', 'very', 'handsome', 'man', '||comma||', 'a', 'casanova', 'really', '||period||', '||return||', '||return||', 'rudy:', "i'll", 'give', 'you', 'uh', 'two', '||dash||', 'hundred', 'dollars', 'for', 'the', 'three', 'boxes', '||period||', '||return||', '||return||', 'george:', 'could', 'you', 'make', 'it', 'two', '||dash||', 'twenty', '||dash||', 'five', 'that', 'was', 'his', 'hi', '||dash||', 'game', 'in', 'bowling', '||period||', '||return||', '||return||', 'rudy:', 'yea', "i'm", 'in', 'a', 'good', 'mood', 'here', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'george', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', "i'm", 'just', 'selling', 'some', 'of', "dad's", 'things', '||comma||', '||leftparen||', 'looking', 'into', "kramer's", 'eyes', '||rightparen||', "that's", 'what', 'he', 'would', 'have', 'wanted', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'gotcha', '||leftparen||', 'clicks', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', '||rightparen||', "that'll", 'do', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'hey', 'guess', 'what', '||period||', 'morty', 'seinfeld', 'and', 'i', 'are', 'going', 'into', 'business', 'together', '||comma||', 'selling', 'raincoats', '||period||', '||return||', '||return||', 'george:', 'hey', "that's", 'swell', '||period||', '||return||', '||return||', 'kramer:', 'yea', 'we', 'worked', 'it', 'out', 'all', 'over', 'dinner', 'last', 'night', '||period||', '||return||', '||return||', 'george:', 'dinner', '||questionmark||', '||leftparen||', 'grabs', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'ya', '||period||', '||return||', '||return||', 'george:', 'you', 'had', 'dinner', 'with', 'the', "seinfelds'", '||questionmark||', '||return||', '||return||', 'kramer:', 'yea', '||comma||', 'last', 'night', '||period||', '||return||', '||return||', 'george:', 'was', 'this', 'something', 'you', 'had', 'planned', 'for', 'a', 'while', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'it', 'was', 'a', 'spur', 'of', 'the', 'moment', '||period||', 'well', 'you', 'know', 'morty', 'likes', 'to', 'fly', 'by', 'the', 'seat', 'of', 'his', 'vintage', 'pants', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hurriedly', 'leaves', "rudy's", '||rightparen||', 'they', 'had', 'plans', '||comma||', 'they', 'had', 'plans', '||exclammark||', '||return||', '||return||', 'kramer:', 'oooo', '||comma||', 'boy', "i've", 'never', 'seen', 'these', 'before', '||leftparen||', 'looking', 'at', 'the', 'clothes', 'george', 'just', 'sold', 'rudy', '||rightparen||', '||return||', '||return||', 'rudy:', 'well', 'they', 'just', 'came', 'in', '||comma||', 'part', 'of', 'my', 'spring', '||dash||', 'time', 'cruise', 'collection', '||period||', 'two', 'for', 'twenty', '||dash||', 'five', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'oh', "i'll", 'take', 'these', '||period||', '||return||', '||return||', 'rudy:', 'alright', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'remember', 'this', 'raincoat', 'that', 'you', 'sold', 'me', '||questionmark||', '||return||', '||return||', 'rudy:', 'sure', "that's", 'the', 'executive', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||comma||', 'you', 'have', 'any', 'others', '||questionmark||', '||return||', '||return||', 'rudy:', 'i', 'wish', '||comma||', 'they', "don't", 'make', "'em", 'anymore', '||period||', '||return||', '||return||', 'kramer:', 'suppose', 'i', 'told', 'you', 'i', 'had', 'fifty', 'in', 'mint', 'condition', '||comma||', 'would', 'you', 'be', 'interested', '||questionmark||', '||return||', '||return||', 'rudy:', 'very', 'interested', '||return||', '||return||', 'kramer:', 'cuz', "they're", 'coming', 'in', 'from', 'florida', 'as', 'we', 'speak', '||period||', '||return||', '||return||', 'rudy:', 'well', 'bring', "'em", 'in', '||period||', '||return||', '||return||', 'kramer:', 'so', "you'll", 'buy', 'them', '||questionmark||', '||return||', '||return||', 'rudy:', 'i', "don't", 'see', 'what', 'would', 'possibly', 'stop', 'me', '||period||', '||return||', '||return||', 'george:', 'aaaa', '||leftparen||', 'looking', 'around', 'for', 'jerry', '||rightparen||', 'aaaa', '||leftparen||', 'finds', 'jerry', '||rightparen||', 'ah', 'ha', '||period||', 'they', 'had', 'plans', 'huh', '||questionmark||', 'they', 'were', 'busy', '||period||', 'they', 'were', 'busy', 'with', 'their', '||leftparen||', 'doing', 'a', 'little', 'dance', 'to', 'make', 'the', 'plans', 'seem', 'all', 'that', 'important', '||rightparen||', 'big', 'plans', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'mom', 'and', 'pop', 'seinfeld', '||return||', '||return||', 'jerry:', 'look', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'alright', 'i', 'happen', 'to', 'know', 'what', 'they', 'did', 'last', 'night', '||comma||', 'they', 'had', 'dinner', 'with', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'they', 'were', 'tired', 'it', 'was', 'a', 'last', 'minute', 'thing', '||period||', '||return||', '||return||', 'george:', 'so', "what's", 'the', 'deal', 'they', "don't", 'want', 'to', 'have', 'dinner', 'with', 'my', 'parents', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', 'is', 'there', 'something', 'wrong', 'with', 'my', 'parents', '||questionmark||', '||return||', '||return||', 'jerry:', 'absolutely', '||return||', '||return||', 'george:', 'because', 'my', 'parents', 'happen', 'to', 'be', 'two', 'pretty', 'wonderful', 'people', '||period||', '||return||', '||return||', 'jerry:', 'these', 'the', 'people', 'you', 'currently', 'live', 'with', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||return||', '||return||', 'george:', 'so', 'are', 'they', 'coming', 'tonight', 'or', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', 'i', 'really', "don't", 'know', 'what', "they're", 'plans', 'are', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'fine', '||period||', "it's", 'going', 'to', 'be', 'very', 'interesting', '||comma||', 'very', 'interesting', 'if', 'they', "don't", 'show', 'up', 'tonight', '||period||', 'you', 'know', 'my', 'mother', 'made', 'all', 'this', 'paella', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'anyway', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'spanish', 'dish', '||period||', "it's", 'a', 'moulage', 'of', 'fish', '||comma||', 'an', 'meat', 'with', 'rice', '||period||', 'very', 'tasty', '||period||', '||return||', '||return||', 'jerry:', 'i', '||dash||', "i'll", 'tell', "'em", '||return||', '||return||', 'george:', 'hey', 'could', 'you', 'do', 'one', 'other', 'thing', 'for', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'name', 'it', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'your', 'parents', 'would', 'have', 'any', 'objections', 'to', 'taking', 'a', 'little', 'kid', 'to', 'paris', 'with', 'them', '||questionmark||', '||leftparen||', 'jerry', 'looks', 'at', 'him', 'confused', '||rightparen||', 'it', 'turns', 'out', 'that', 'the', "kid's", 'father', 'lives', 'in', 'paris', '||period||', '||leftparen||', 'chuckling', '||rightparen||', 'is', 'that', 'a', 'coincidence', '||questionmark||', '||leftparen||', 'jerry', 'smilies', '||rightparen||', 'eh', 'you', 'know', 'alec', 'wants', 'me', 'to', 'take', 'him', 'over', 'there', 'so', 'i', 'figure', 'as', 'long', 'as', "they're", 'going', '||leftparen||', 'claps', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'you', 'thought', 'as', 'long', 'as', "they're", 'mailing', 'postcards', '||comma||', 'it', "wouldn't", 'be', 'too', 'much', 'to', 'ask', 'my', 'parents', 'to', 'drag', 'a', 'child', 'who', "they've", 'never', 'seen', '||comma||', 'through', 'the', 'streets', 'of', 'paris', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pause', '||rightparen||', 'alright', 'if', 'you', 'think', "it's", 'too', 'much', 'they', "don't", 'have', 'to', 'mail', 'the', 'postcards', '||period||', '||return||', '||return||', 'joanne:', 'so', "where's", 'he', 'taking', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'first', "we're", 'going', 'to', 'a', 'matine', '||comma||', "i'm", 'taking', 'the', 'afternoon', 'off', '||comma||', "we're", 'gonna', 'go', 'see', '||quotemark||', 'my', 'fair', 'lady', '||quotemark||', 'and', 'they', 'we', 'are', 'gonna', 'go', 'to', 'dinner', '||period||', 'he', 'knows', 'all', 'these', 'fantastic', 'places', '||period||', '||return||', '||return||', 'joanne:', 'you', 'are', 'one', 'lucky', 'girl', '||period||', '||leftparen||', 'elaine', 'laughs', 'in', 'happiness', '||rightparen||', 'wish', 'i', 'could', 'find', 'a', 'nice', 'guy', '||period||', '||leftparen||', 'joanne', 'goes', 'to', 'leave', '||semicolon||', 'aaron', 'enters', '||rightparen||', 'hi', 'aaron', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'getting', 'up', 'in', "aaron's", 'face', '||rightparen||', 'hey', 'joanne', '||period||', '||leftparen||', 'turns', 'to', 'elaine', 'and', 'goes', 'over', 'to', 'her', '||rightparen||', 'hey', '||return||', '||return||', 'elaine:', '||leftparen||', 'already', 'out', 'from', 'behind', 'her', 'desk', 'goes', 'to', 'aaron', '||rightparen||', 'hi', '||return||', '||return||', 'helen:', 'hello', '||comma||', 'hello', '||period||', '||return||', '||return||', 'morty:', 'hello', 'elaine', '||return||', '||return||', 'aaron:', 'i', 'was', 'able', 'to', 'finagle', 'two', 'more', 'tickets', 'to', '||quotemark||', 'my', 'fair', 'lady', '||quotemark||', 'and', 'i', 'thought', 'why', 'not', 'ask', 'morty', 'and', 'helen', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'great', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'looking', 'around', '||rightparen||', 'this', 'is', 'some', 'office', '||period||', "what's", 'the', 'square', 'footage', '||questionmark||', '||return||', '||return||', 'helen:', 'you', "don't", 'mind', 'to', 'you', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'mind', '||questionmark||', 'oh', 'o', '||dash||', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'aaron:', 'we', 'can', 'make', 'a', 'whole', 'day', 'of', 'it', '||period||', '||return||', '||return||', 'morty:', 'this', 'is', 'some', 'building', '||comma||', 'harry', 'fleming', 'used', 'to', 'have', 'an', 'office', 'here', '||period||', 'there', 'was', 'a', 'deli', 'on', 'the', 'first', 'floor', '||period||', 'you', "don't", 'get', 'corned', 'beef', 'like', 'that', 'anymore', '||period||', 'what', 'happened', 'to', 'that', 'deli', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'somewhat', 'annoyed', '||rightparen||', 'i', 'really', "don't", 'know', 'mr', '||period||', 'seinfeld', '||return||', '||return||', 'jerry:', '||leftparen||', 'stopping', 'them', '||rightparen||', 'we', 'better', 'not', '||period||', '||leftparen||', 'they', 'make', 'out', 'some', 'more', '||semicolon||', 'then', 'stop', '||rightparen||', 't', '||dash||', "they're", 'gonna', 'be', 'here', 'any', 'second', '||period||', '||return||', '||return||', 'rachel:', 'when', 'are', 'they', 'leaving', '||questionmark||', '||return||', '||return||', 'jerry:', 'in', 'two', 'days', '||period||', '||return||', '||return||', 'rachel:', "it's", 'been', 'soo', 'long', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'rachel:', 'ok', '||comma||', "it's", 'only', 'two', 'more', 'days', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'thursday', 'three', "o'clock", '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'from', 'outside', 'the', 'door', '||semicolon||', 'singing', '||rightparen||', 'i', 'could', 'have', 'danced', 'all', 'night', '||leftparen||', 'entering', 'with', 'helen', '||rightparen||', 'i', 'could', 'have', 'danced', 'all', 'night', 'and', 'still', 'have', '||return||', '||return||', 'helen:', 'ooh', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', '||period||', '||return||', '||return||', 'helen:', 'we', "didn't", 'know', 'you', 'had', 'company', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tucking', 'in', 'his', 'shirt', '||rightparen||', 'oh', 'ya', 'this', 'is', 'rachel', '||period||', '||return||', '||return||', 'rachel:', 'hi', '||period||', '||return||', '||return||', 'helen', '&', 'morty:', 'hello', 'rachel', '||period||', '||return||', '||return||', 'helen:', 'uh', "we'll", 'come', 'back', 'another', 'time', '||period||', '||return||', '||return||', 'jerry:', 'what', 'other', 'time', '||questionmark||', '||return||', '||return||', 'helen:', 'whenever', '||return||', '||return||', 'jerry:', 'where', 'you', "goin'", '||questionmark||', '||return||', '||return||', 'morty:', 'uh', "we'll", 'drive', 'around', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'have', 'a', 'car', '||period||', '||return||', '||return||', 'morty:', "we'll", 'take', 'a', 'bus', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'stop', '||period||', '||return||', '||return||', 'helen:', 'no', 'we', "don't", 'mind', '||return||', '||return||', 'morty:', "i'll", 'get', 'a', 'book', '||period||', '||return||', '||return||', 'rachel:', 'no', 'no', "it's", 'ok', '||comma||', 'i', 'was', 'just', 'leaving', 'anyway', '||period||', '||return||', '||return||', 'helen:', 'o', '||dash||', 'oh', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'rachel:', 'yea', '||period||', '||return||', '||return||', 'helen:', 'cuz', 'we', "don't", 'wann', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupting', '||rightparen||', 'no', 'no', "it's", 'ok', '||period||', '||leftparen||', 'walking', 'rachel', 'out', '||rightparen||', 'so', "we'll", 'go', 'see', "schindler's", 'list', 'later', 'right', '||questionmark||', '||return||', '||return||', 'rachel:', 'definitely', '||return||', '||return||', 'jerry:', 'ok', '||period||', 'uh', '||return||', '||return||', 'rachel:', '||leftparen||', 'going', 'out', 'the', 'door', '||rightparen||', "it's", 'night', 'meeting', 'you', '||period||', '||return||', '||return||', 'helen:', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'morty:', 'boy', 'that', 'was', 'some', 'show', '||period||', '||return||', '||return||', 'jerry:', 'what', 'show', '||questionmark||', '||return||', '||return||', 'morty:', '||quotemark||', 'my', 'fair', 'lady', '||quotemark||', '||return||', '||return||', 'jerry:', 'when', 'did', 'you', 'get', 'tickets', 'to', 'see', 'that', '||questionmark||', '||return||', '||return||', 'helen:', 'aaron', 'surprised', 'us', '||comma||', 'and', 'elaine', 'came', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||leftparen||', 'laughing', '||rightparen||', 'elaine', 'really', '||questionmark||', 'well', 'that', 'sounds', 'interesting', '||period||', '||return||', '||return||', 'morty:', 'we', 'saw', 'regis', 'philbin', 'get', 'out', 'of', 'a', 'limousine', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'helen:', 'he', 'looks', 'better', 'on', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'jack:', 'hello', 'jerry', '||comma||', '||return||', '||return||', 'jerry:', 'yea', '||period||', '||return||', '||return||', 'jack:', "it's", 'jack', 'klompus', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', 'jack', '||period||', '||return||', '||return||', 'jack:', 'so', 'when', 'are', 'you', 'coming', 'down', 'to', 'florida', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'as', 'soon', 'as', 'is', 'humanly', 'possible', '||period||', '||return||', '||return||', 'jack:', 'you', 'know', 'i', 'still', 'got', 'that', 'pen', '||comma||', 'the', 'one', 'that', 'writes', 'upside', 'down', '||period||', '||return||', '||return||', 'jerry:', 'yea', 'yea', 'ya', 'i', 'shoulda', 'kept', 'it', '||period||', '||return||', '||return||', 'jack:', 'so', 'uh', "where's", 'your', 'father', '||questionmark||', '||return||', '||return||', 'jerry:', 'ya', "he's", 'right', 'here', '||period||', '||return||', '||return||', 'morty:', 'yea', '||return||', '||return||', 'jack:', 'morty', '||comma||', 'listen', 'i', "can't", 'get', 'into', 'the', 'garage', '||period||', '||return||', '||return||', 'morty:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jack:', 'there', 'is', 'something', 'wrong', 'with', 'the', 'key', '||period||', 'the', 'key', "doesn't", 'work', '||return||', '||return||', 'morty:', 'you', 'gotta', 'jiggle', 'it', 'a', 'little', 'bit', '||period||', 'i', 'jiggled', 'it', '||period||', 'i', 'jiggled', 'it', 'for', 'fifteen', 'minutes', '||period||', '||return||', '||return||', 'doris:', 'tell', 'him', 'to', 'come', 'down', 'here', 'and', 'get', 'his', 'own', 'packages', '||period||', 'you', 'have', 'nothing', 'better', 'to', 'do', 'then', 'worry', 'about', 'his', 'boxes', '||period||', '||return||', '||return||', 'morty:', 'you', 'gotta', 'pull', 'on', 'the', 'knob', 'as', 'you', 'turn', 'it', '||period||', '||return||', '||return||', 'jack:', 'get', 'the', 'hell', 'outta', 'here', 'with', 'your', 'knob', '||period||', '||return||', '||return||', 'doris:', 'what', 'does', 'he', 'want', 'from', 'you', '||questionmark||', '||return||', '||return||', 'morty:', 'my', 'idiot', 'son', 'could', 'open', 'that', 'garage', 'door', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'morty:', 'just', 'do', 'it', 'first', 'thing', 'tomorrow', '||period||', 'i', 'need', 'it', '||period||', '||return||', '||return||', 'morty:', "they'll", 'be', 'here', 'first', 'thing', 'thursday', 'morning', '||period||', '||return||', '||return||', 'helen:', 'thursday', 'morning', '||questionmark||', 'you', 'know', "we're", 'leaving', 'at', 'three', "o'clock", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'a', 'hurry', '||rightparen||', 'yea', "you're", 'leaving', 'at', 'three', "o'clock", '||period||', '||return||', '||return||', 'helen:', 'how', 'are', 'you', 'gonna', 'get', 'all', 'this', 'done', 'in', 'time', '||questionmark||', '||return||', '||return||', 'morty:', "don't", 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'a', 'hurry', '||rightparen||', 'ya', 'how', 'you', 'gonna', 'get', 'all', 'this', 'done', 'in', 'time', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'were', 'drinking', 'champaign', 'in', 'a', 'buggy', '||exclammark||', '||return||', '||return||', 'frank:', 'first', 'kramer', '||comma||', 'then', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', 'yea', '||return||', '||return||', 'frank:', "it's", 'a', 'slap', 'in', 'the', 'face', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'with', 'her', 'arms', 'out', 'in', 'wonder', '||rightparen||', 'what', 'did', 'we', 'ever', 'do', 'to', 'them', '||questionmark||', '||leftparen||', 'george', 'puts', 'his', 'arms', 'out', 'and', 'imitates', 'estelle', 'as', 'she', 'moves', 'her', 'arms', 'up', 'and', 'down', 'as', 'she', 'speaks', '||rightparen||', 'i', 'want', 'to', 'know', 'what', 'we', 'did', 'them', '||exclammark||', '||return||', '||return||', 'frank:', 'what', 'are', 'they', 'too', 'good', 'for', 'us', '||questionmark||', 'a', 'raincoat', 'salesman', '||comma||', 'i', 'could', 'buy', 'and', 'sell', "'em", 'like', 'that', '||period||', '||return||', '||return||', 'estelle:', 'the', 'hell', 'with', 'them', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'in', 'the', 'threshold', 'between', 'the', 'living', 'room', 'and', 'the', 'kitchen', '||rightparen||', 'the', 'thing', 'that', 'bothers', 'me', 'the', 'most', '||comma||', 'is', 'the', 'lying', '||period||', '||return||', '||return||', 'frank:', "let's", 'forget', 'about', 'it', '||period||', "we're", 'going', 'on', 'a', 'beautiful', 'vacation', '||period||', '||leftparen||', 'sits', 'down', 'in', 'his', 'chair', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'sitting', 'down', '||rightparen||', 'vacation', '||questionmark||', '||return||', '||return||', 'frank:', "you're", 'mother', 'and', 'i', 'are', 'planning', 'on', 'taking', 'a', 'cruise', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'claps', 'all', 'happy', '||rightparen||', 'ah', '||exclammark||', '||leftparen||', 'half', 'hugs', 'estelle', '||rightparen||', '||return||', '||return||', 'frank:', 'but', 'i', "can't", 'find', 'any', 'vacation', 'clothes', '||period||', 'they', 'were', 'in', 'the', 'attic', '||period||', '||return||', '||return||', 'george:', 'the', 'attic', '||questionmark||', 'y', '||dash||', 'you', "haven't", 'wore', 'any', 'of', 'those', 'clothes', 'for', 'years', '||period||', '||return||', '||return||', 'frank:', 'how', 'can', 'i', 'go', 'on', 'a', 'cruise', 'with', 'out', 'my', 'cabana', 'wear', '||questionmark||', 'i', 'love', 'those', '||comma||', 'those', 'clothes', '||period||', '||leftparen||', 'looks', 'down', 'yells', '||rightparen||', 'ah', '||exclammark||', '||leftparen||', 'jumps', 'out', 'of', 'his', 'chair', '||rightparen||', 'a', 'mouse', '||exclammark||', 'i', 'saw', 'a', 'mouse', '||exclammark||', '||leftparen||', 'takes', 'off', 'into', 'another', 'room', 'with', 'glass', 'doors', 'on', 'it', 'and', 'shuts', 'the', 'door', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'picking', 'up', 'what', 'frank', 'saw', 'as', 'a', 'mouse', '||rightparen||', "it's", 'the', 'remote', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'looking', 'from', 'the', 'room', '||semicolon||', 'you', 'can', 'see', 'him', 'through', 'the', 'glass', '||rightparen||', 'where', 'the', 'hell', 'are', 'my', 'clothes', '||questionmark||', 'i', 'love', 'those', 'clothes', '||period||', '||return||', '||return||', 'rudy:', 'lousy', 'moth', 'ridden', 'crap', '||period||', '||return||', '||return||', '[movie', 'theater:', "schindler's", 'list]', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'helen:', 'so', 'how', 'was', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'really', 'good', '||comma||', 'really', 'good', '||period||', '||return||', '||return||', 'helen:', 'and', "didn't", 'the', 'three', 'hours', 'go', 'by', 'just', 'like', 'that', '||leftparen||', 'snaps', 'her', 'fingers', '||rightparen||', '||return||', '||return||', 'jerry:', 'like', 'that', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', '||return||', '||return||', 'morty:', 'what', 'about', 'the', 'end', '||comma||', 'with', 'the', 'list', '||questionmark||', '||return||', '||return||', 'jerry:', 'ya', 'that', 'was', 'some', 'list', '||period||', '||return||', '||return||', 'helen:', 'what', 'did', 'you', 'think', 'about', 'the', 'black', 'and', 'white', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'the', 'black', 'and', 'white', '||period||', '||return||', '||return||', 'morty:', 'the', 'whole', 'movie', 'was', 'in', 'black', 'and', 'white', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yea', '||comma||', 'i', "didn't", 'even', 'realize', '||period||', '||return||', '||return||', 'morty:', 'you', "don't", 'even', 'think', 'about', 'it', '||comma||', "there's", 'so', 'much', 'going', 'on', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'ya', '||comma||', 'i', 'tell', 'ya', 'i', 'could', 'see', 'it', 'again', '||period||', '||return||', '||return||', 'kramer:', 'so', 'klompus', 'has', 'the', 'key', '||comma||', 'but', 'the', 'jerk', "couldn't", 'open', 'it', 'up', '||period||', 'all', 'you', 'gotta', 'do', 'it', 'jiggle', 'it', '||leftparen||', 'has', 'is', 'hand', 'out', 'jiggling', '||rightparen||', 'jus', 'get', 'it', 'in', 'there', '||leftparen||', 'jiggling', 'making', 'a', 'bunch', 'of', 'noises', '||rightparen||', 'jigg', 'jigg', 'jiggle', 'reiggle', '||return||', '||return||', 'rudy:', 'look', '||comma||', 'i', 'find', 'this', 'whole', 'thing', 'very', 'uninteresting', '||period||', 'when', 'you', 'get', 'the', 'coats', 'come', 'in', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'what', 'again', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'trying', 'to', 'buy', 'some', 'of', 'the', 'clothes', 'back', '||period||', '||leftparen||', 'realizing', 'something', '||rightparen||', 'hey', 'you', 'wanna', 'come', 'over', 'for', 'dinner', 'tonight', '||questionmark||', 'my', 'mother', 'made', 'all', 'this', 'extra', 'paella', '||period||', '||return||', '||return||', 'kramer:', 'paella', '||comma||', 'ya', "i'll", 'be', 'there', '||period||', '||return||', '||return||', 'george:', 'apparently', 'the', "seinfelds'", 'are', 'too', 'good', 'for', 'us', '||period||', 'i', "shouldn't", 'say', 'anything', 'bad', 'about', 'your', 'uh', 'your', 'partner', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'you', 'know', "we're", 'not', 'partners', '||period||', 'i', 'only', 'get', 'twenty', '||dash||', 'five', 'percent', '||period||', '||return||', '||return||', 'george:', 'twenty', '||dash||', 'five', 'percent', '||questionmark||', 'it', 'was', 'your', 'idea', '||period||', '||return||', '||return||', 'kramer:', 'yap', 'i', 'know', '||period||', '||return||', '||return||', 'george:', "you're", 'doing', 'all', 'the', 'leg', 'work', '||period||', '||return||', '||return||', 'kramer:', "that's", 'right', '||return||', '||return||', 'george:', "he's", 'ripping', 'you', 'off', '||return||', '||return||', 'kramer:', "you're", 'right', "he's", 'ripping', 'me', 'off', '||return||', '||return||', 'george:', 'if', 'anybody', 'should', 'be', 'getting', 'more', "it's", 'you', '||period||', '||return||', '||return||', 'kramer:', "he's", 'ripping', 'me', 'off', '||return||', '||return||', 'george:', 'well', "don't", 'let', 'him', 'take', 'advantage', 'of', 'you', 'like', 'that', '||period||', '||return||', '||return||', 'kramer:', 'yah', '||exclammark||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'rudy:', '||leftparen||', 'coming', 'out', 'of', 'the', 'back', '||dash||', 'room', 'noticing', 'george', '||rightparen||', 'oh', "it's", 'you', '||questionmark||', "you're", 'the', 'one', 'who', 'sold', 'me', 'the', 'moth', 'ridden', 'cabana', 'crap', '||period||', '||return||', '||return||', 'morty:', 'you', 'know', "i've", 'been', 'thinking', '||comma||', 'why', 'is', 'kramer', 'getting', 'twenty', '||dash||', 'five', 'percent', '||questionmark||', '||return||', '||return||', 'helen:', 'well', 'he', 'told', 'you', 'about', 'the', 'place', '||period||', '||return||', '||return||', 'morty:', 'so', 'what', '||comma||', 'why', 'is', 'that', 'worth', 'twenty', '||dash||', 'five', 'percent', '||questionmark||', "it's", 'a', 'finders', 'fee', '||period||', 'you', 'know', 'what', 'a', 'finders', 'fee', 'is', '||questionmark||', '||return||', '||return||', 'helen:', 'you', 'find', 'something', 'you', 'get', 'a', 'fee', '||period||', '||return||', '||return||', 'morty:', "finder's", 'fee', 'is', 'ten', 'percent', 'and', 'no', 'more', '||period||', '||return||', '||return||', 'helen:', 'well', "it's", 'too', 'late', 'now', '||period||', '||return||', '||return||', 'morty:', 'those', 'are', 'my', 'coats', '||period||', 'i', 'saved', 'them', '||comma||', 'i', 'stored', 'them', '||comma||', "i've", 'been', 'waiting', 'years', 'for', 'this', 'pay', 'off', '||period||', '||return||', '||return||', 'helen:', 'well', "you're", 'not', 'gonna', 'say', 'anything', '||period||', '||return||', '||return||', 'kramer:', "i've", 'been', 'thinking', 'about', 'something', '||period||', '||return||', '||return||', 'morty:', 'ya', 'so', 'have', 'i', '||return||', '||return||', 'kramer:', 'ahh', '||exclammark||', 'i', "don't", 'think', 'the', 'deal', 'is', 'fair', '||period||', '||return||', '||return||', 'morty:', 'you', "don't", 'think', "it's", 'fair', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', '||comma||', 'i', 'found', 'the', 'place', '||comma||', 'i', 'set', 'the', 'whole', 'thing', 'up', '||comma||', "i'm", 'doing', 'all', 'the', 'leg', 'work', '||period||', '||return||', '||return||', 'morty:', 'what', 'leg', 'work', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "there's", 'leg', 'work', '||period||', '||return||', '||return||', 'morty:', 'if', 'anything', "you're", 'getting', 'too', 'much', '||period||', '||return||', '||return||', 'kramer:', 'too', 'much', '||questionmark||', '||exclammark||', '||return||', '||return||', 'morty:', "that's", 'right', '||comma||', "they're", 'my', 'coats', '||period||', '||return||', '||return||', 'kramer:', 'look', 'i', 'want', 'thirty', '||dash||', 'five', 'percent', '||period||', '||return||', '||return||', 'morty:', "i'm", 'thinking', 'more', 'like', 'fifteen', '||period||', '||return||', '||return||', 'kramer:', 'no', 'way', "i'm", 'taking', 'fifteen', '||period||', '||return||', '||return||', 'morty:', 'well', "you're", 'not', 'getting', 'thirty', '||dash||', 'five', '||period||', '||return||', '||return||', 'kramer:', 'alright', "let's", 'compromise', '||period||', 'twenty', '||dash||', 'five', 'percent', '||period||', '||return||', '||return||', 'morty:', 'ok', "it's", 'a', 'deal', '||return||', '||return||', 'rudy:', 'moths', 'are', 'a', 'discourage', 'to', 'my', 'business', '||comma||', 'all', 'it', 'takes', 'is', 'one', 'moth', 'to', 'lay', 'eggs', '||period||', 'you', 'know', 'what', 'happens', 'to', 'the', 'larvae', '||questionmark||', 'they', 'hatch', 'and', "they're", 'everywhere', '||period||', '||return||', '||return||', 'george:', "i'm", 'sorry', '||comma||', 'umm', 'he', '||dash||', "here's", 'your', 'money', 'back', '||leftparen||', 'gives', 'rudy', 'the', 'money', 'back', '||rightparen||', 'i', '||dash||', 'i', '||dash||', "i'll", 'have', 'the', 'clothes', '||period||', '||return||', '||return||', 'rudy:', '||leftparen||', 'counting', 'the', 'money', 'to', 'make', 'sure', "it's", 'all', 'there', '||rightparen||', "it's", 'already', 'put', 'a', 'dent', 'in', 'my', 'fumigation', 'bill', '||period||', '||return||', '||return||', 'george:', 'so', 'uh', 'where', 'are', 'the', 'clothes', '||questionmark||', '||return||', '||return||', 'rudy:', 'i', 'burned', "'em", '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', "that's", 'good', '||period||', '||return||', '||return||', 'elaine:', 'n', '||dash||', 'i', 'know', "they're", 'your', 'parents', 'jerry', "an'", "they're", 'very', 'nice', 'people', '||period||', 'but', "don't", 'you', 'think', "it's", 'odd', '||comma||', 'that', 'a', 'thirty', '||dash||', 'five', 'year', 'old', 'man', 'is', 'going', 'to', 'these', 'lengths', 'to', 'see', 'that', 'someone', "else's", 'parents', 'are', 'enjoying', 'themselves', '||questionmark||', 'i', 'mean', "don't", 'you', 'find', 'that', 'abnormal', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'is', 'a', 'tad', 'askew', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', "they're", 'your', 'parents', 'and', 'you', "don't", 'do', 'anything', '||period||', 'so', 'why', 'is', 'this', 'stranger', 'doing', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'hardly', 'been', 'out', 'to', 'dinner', 'with', 'them', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'see', '||comma||', 'i', "can't", 'even', 'say', 'anything', 'you', 'know', 'because', 'all', "he's", 'really', 'doing', 'is', 'being', 'nice', 'but', 'but', 'know', 'body', 'is', 'this', 'nice', '||comma||', 'this', 'is', 'like', 'certifiably', 'nice', '||period||', '||return||', '||return||', 'jerry:', "you're", 'right', "he's", 'insane', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "he's", 'insane', '||comma||', "that's", 'what', 'i', 'think', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', "don't", 'know', 'what', 'to', 'do', '||period||', '||leftparen||', 'sighs', '||rightparen||', 'oh', 'god', '||period||', '||period||', '||period||', '||period||', 'so', 'how', 'was', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', 'from', 'what', 'i', 'saw', 'it', 'was', 'pretty', 'good', '||period||', '||return||', '||return||', 'elaine:', 'ya', 'what', 'do', 'you', 'mean', 'from', 'what', 'you', 'saw', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'um', 'i', "didn't", 'ah', 'actually', 'get', 'to', 'see', 'the', 'whole', 'movie', '||period||', '||return||', '||return||', 'elaine:', 'yea', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'kind', 'of', 'um', '||leftparen||', 'pauses', '||rightparen||', 'making', 'out', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thinks', 'for', 'a', 'second', '||rightparen||', 'you', 'were', 'making', '||comma||', 'out', 'during', "schindler's", 'list', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "couldn't", 'help', 'it', '||period||', 'we', "hadn't", 'been', 'alone', 'in', 'a', 'long', 'time', '||comma||', 'it', 'just', 'got', 'the', 'better', 'of', 'me', '||period||', '||return||', '||return||', 'elaine:', 'during', "schindler's", 'list', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'justify', 'it', '||rightparen||', "we're", 'both', 'living', 'with', 'our', 'parents', '||period||', '||return||', '||return||', 'elaine:', 'did', 'anybody', 'see', 'you', '||questionmark||', 'did', 'anyone', 'say', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "don't", 'think', 'so', '||period||', 'i', 'saw', 'newman', 'as', 'i', 'was', 'leaving', 'but', 'see', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'newman:', 'hello', 'mrs', '||period||', 'seinfeld', '||return||', '||return||', 'helen:', '||leftparen||', 'like', 'jerry', '||rightparen||', 'hello', '||comma||', 'newman', '||period||', "jerry's", 'not', 'here', '||period||', '||leftparen||', 'goes', 'to', 'shut', 'the', 'door', 'on', 'him', '||rightparen||', '||return||', '||return||', 'newman:', 'uh', 'ah', '||leftparen||', 'stops', 'her', 'from', 'closing', 'the', 'door', '||semicolon||', 'walks', 'in', '||rightparen||', 'having', 'a', 'nice', 'trip', '||questionmark||', '||leftparen||', 'walks', 'over', '||comma||', 'grabs', 'a', 'junior', 'mint', '||comma||', 'smells', 'it', 'then', 'puts', 'it', 'in', 'his', 'pocket', '||rightparen||', '||return||', '||return||', 'helen:', 'wonderful', '||comma||', 'we', 'went', 'to', 'the', 'theater', 'last', 'night', '||period||', '||return||', '||return||', 'newman:', 'oh', 'the', 'theater', '||period||', 'because', 'i', 'was', 'wondering', '||period||', '||return||', '||return||', 'helen:', 'wondering', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'why', 'i', "didn't", 'see', 'you', 'at', "schindler's", 'list', 'with', 'jerry', '||period||', '||return||', '||return||', 'helen:', 'well', 'we', 'already', 'saw', 'it', '||period||', '||return||', '||return||', 'newman:', 'oh', '||comma||', 'well', "it's", 'a', 'good', 'thing', 'for', 'jerry', 'that', 'you', "didn't", 'go', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'getting', 'up', 'from', 'the', 'table', 'and', 'coming', 'over', '||rightparen||', 'why', 'is', 'that', '||questionmark||', '||return||', '||return||', 'newman:', 'well', 'he', 'really', 'seemed', 'to', 'have', 'his', 'hands', 'full', 'if', 'you', 'know', 'what', 'i', 'mean', '||period||', '||return||', '||return||', 'helen:', "i'm", 'afraid', 'i', "don't", '||period||', '||return||', '||return||', 'newman:', 'him', 'and', 'his', 'little', 'buxom', 'friend', 'rachel', 'were', 'going', 'at', 'it', 'pretty', 'good', 'in', 'the', 'balcony', '||period||', '||return||', '||return||', 'morty:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'what', '||comma||', 'do', 'i', 'have', 'to', 'spell', 'it', 'out', 'for', 'ya', '||questionmark||', 'he', 'was', 'moving', 'on', 'her', 'like', 'the', 'storm', '||dash||', 'troopers', 'into', 'poland', '||period||', '||return||', '||return||', 'helen:', 'jerry', 'was', 'necking', 'during', "schindler's", 'list', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||exclammark||', 'a', 'more', 'offensive', 'spectacle', 'i', 'cannot', 'recall', '||period||', 'anyway', 'i', 'just', 'really', 'came', 'up', 'to', 'get', 'some', 'detergent', '||period||', '||return||', '||return||', 'helen:', 'jerry', 'sends', 'his', 'laundry', 'out', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'laughing', '||rightparen||', 'oh', 'ho', 'right', '||period||', 'well', 'very', 'nice', 'seeing', 'you', 'folks', 'and', 'a', 'by', 'the', 'way', 'you', "didn't", 'hear', 'this', 'from', 'me', '||period||', 'tata', '||leftparen||', 'runs', 'down', 'the', 'hallway', 'laughing', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', '||leftparen||', 'takes', 'off', 'his', 'coat', 'and', 'puts', 'it', 'on', 'the', 'counter', 'at', 'which', 'point', 'his', 'parents', 'are', 'both', 'right', 'by', 'him', 'as', 'he', 'goes', 'into', 'the', 'refrigerator', '||period||', 'he', 'grabs', 'a', 'drink', 'then', 'turns', 'around', 'to', 'see', 'his', 'parents', 'right', 'there', '||rightparen||', 'what', '||questionmark||', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'helen:', 'how', 'could', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'could', 'i', 'what', '||questionmark||', '||return||', '||return||', 'helen:', 'you', 'were', 'making', 'out', 'during', "schindler's", 'list', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'no', '||period||', '||return||', '||return||', 'morty:', "don't", 'lie', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'turns', '||rightparen||', 'newman', '||period||', '||return||', '||return||', 'helen:', 'how', 'could', 'you', 'do', 'such', 'a', 'thing', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "couldn't", 'help', 'it', '||period||', 'we', "hadn't", 'been', 'alone', 'together', 'in', 'a', 'long', 'time', 'and', 'we', 'just', 'kinda', 'started', 'up', 'a', 'little', 'during', 'the', 'coming', 'attractions', 'and', 'the', 'next', 'thing', 'we', 'knew', '||comma||', 'the', 'war', 'was', 'over', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'the', 'phone', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'jack:', 'hello', 'jerry', '||comma||', "it's", 'jack', 'klompus', '||period||', '||return||', '||return||', 'jerry:', 'hang', 'on', 'a', 'second', '||period||', '||leftparen||', 'handing', 'morty', 'the', 'phone', '||rightparen||', 'dad', "it's", 'klompus', '||period||', '||return||', '||return||', 'morty:', 'hello', '||return||', '||return||', 'jack:', 'hello', 'morty', '||comma||', 'listen', 'that', 'key', "doesn't", 'work', '||period||', "it's", 'no', 'good', '||period||', '||return||', '||return||', 'morty:', 'you', "didn't", 'get', 'in', '||questionmark||', '||return||', '||return||', 'jack:', 'oh', 'i', 'got', 'in', '||comma||', 'i', 'had', 'to', 'break', 'the', 'window', 'with', 'a', 'rock', 'and', 'then', 'i', 'got', 'my', 'hand', 'all', 'cut', 'up', 'reaching', 'in', '||period||', '||return||', '||return||', 'morty:', 'you', 'broke', 'the', 'window', '||questionmark||', '||return||', '||return||', 'helen:', 'he', 'broke', 'the', 'window', '||questionmark||', '||return||', '||return||', 'jack:', 'you', 'wanted', 'those', 'damn', 'boxes', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'doris:', '||leftparen||', 'off', 'camera', '||rightparen||', 'he', 'should', 'be', 'on', 'his', 'hands', 'and', 'knees', 'thanking', 'you', '||period||', '||return||', '||return||', 'morty:', 'did', 'you', 'send', 'them', '||questionmark||', '||return||', '||return||', 'jack:', 'yea', '||comma||', "they'll", 'be', 'there', 'tomorrow', 'afternoon', '||comma||', 'two', "o'clock", '||period||', '||return||', '||return||', 'morty:', 'tomorrow', 'afternoon', '||questionmark||', '||return||', '||return||', 'helen:', 'tomorrow', 'afternoon', '||questionmark||', '||return||', '||return||', 'jerry:', 'tomorrow', 'afternoon', '||questionmark||', '||return||', '||return||', 'morty:', 'i', 'told', 'you', 'to', 'send', 'them', 'express', '||period||', '||return||', '||return||', 'jack:', 'w', '||dash||', 'well', 'it', 'was', 'ten', 'dollars', 'cheaper', 'in', 'the', 'afternoon', 'than', 'the', 'morning', '||comma||', 'i', 'figured', 'what', 'the', "hell's", 'the', 'difference', '||period||', '||return||', '||return||', 'morty:', 'so', 'what', 'did', 'you', 'do', 'about', 'the', 'window', '||questionmark||', '||return||', '||return||', 'jack:', 'i', 'gotta', 'fix', 'your', 'window', 'now', '||questionmark||', '||return||', '||return||', 'morty:', 'alright', 'alright', '||comma||', 'goodbye', '||period||', '||leftparen||', 'morty', 'hangs', 'up', 'the', 'phone', '||comma||', 'jack', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'i', "don't", 'think', 'we', 'are', 'gonna', 'make', 'that', 'flight', '||period||', '||return||', '||return||', 'jerry:', 'w', '||dash||', 'what', 'do', 'you', 'mean', "you're", 'not', 'making', 'the', 'flight', '||questionmark||', '||return||', '||return||', 'helen:', 'we', 'have', 'to', 'make', 'the', 'flight', '||comma||', "we're", 'with', 'a', 'charter', 'group', '||period||', 'if', 'we', "don't", 'the', 'trip', 'is', 'off', '||period||', '||return||', '||return||', 'morty:', 'well', "what's", 'the', 'difference', "we'll", 'go', 'some', 'place', 'else', '||period||', '||return||', '||return||', 'helen:', 'some', 'place', 'else', '||questionmark||', 'what', 'about', 'paris', '||questionmark||', '||return||', '||return||', 'morty:', 'you', "don't", 'understand', '||comma||', "i've", 'come', 'this', 'far', '||comma||', 'i', "can't", 'stop', 'now', '||period||', '||return||', '||return||', 'helen:', 'i', "can't", 'believe', 'that', "you're", 'doing', 'all', 'this', 'just', 'to', 'sell', 'some', 'stupid', 'raincoats', '||period||', '||return||', '||return||', 'morty:', 'you', "don't", 'understand', 'fashion', 'is', 'cyclical', 'this', 'thing', 'could', 'come', 'back', '||period||', '||return||', '||return||', 'helen:', 'i', 'think', "you're", 'out', 'of', 'your', 'mind', '||period||', '||return||', '||return||', 'frank:', 'i', 'just', "don't", 'understand', 'how', 'all', 'those', 'clothes', 'can', 'disappear', '||period||', '||return||', '||return||', 'george:', 'moths', '||questionmark||', '||return||', '||return||', 'frank:', 'moths', '||comma||', 'ate', 'three', 'boxes', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'you', 'know', 'what', 'happens', 'with', 'larvae', 'hatch', '||comma||', 'they', '||dash||', "they're", 'everywhere', '||period||', '||return||', '||return||', 'estelle:', 'you', 'know', '||comma||', 'i', 'was', 'thinking', 'today', '||period||', 'i', 'never', 'liked', 'those', 'seinfelds', 'anyway', '||comma||', "he's", 'an', 'idiot', 'all', 'together', '||period||', '||leftparen||', 'knocking', 'at', 'the', 'door', '||rightparen||', 'ah', "there's", 'kramer', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'outside', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'estelle:', 'hello', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'outside', '||rightparen||', 'helowwwowwow', '||leftparen||', 'estelle', 'opens', 'the', 'door', '||rightparen||', 'hey', '||leftparen||', 'kisses', 'estelle', 'hello', '||rightparen||', 'ha', 'ha', '||comma||', 'good', 'evening', '||leftparen||', 'george', 'waves', '||rightparen||', '||return||', '||return||', 'estelle:', 'hope', "you're", 'hungry', '||period||', '||leftparen||', 'goes', 'into', 'the', 'kitchen', '||rightparen||', '||return||', '||return||', 'kramer:', 'ooo', 'paella', '||return||', '||return||', 'george:', 'hey', 'uh', 'let', 'me', 'take', "you're", 'coat', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'giving', 'george', 'his', 'coat', '||rightparen||', 'oh', 'ya', 'thanks', 'buddy', '||period||', '||return||', '||return||', 'frank:', 'that', 'shirt', '||comma||', "where'd", 'you', 'get', 'that', 'shirt', '||questionmark||', '||return||', '||return||', 'kramer:', 'wha', '||questionmark||', '||return||', '||return||', 'frank:', "that's", 'my', 'cabana', 'shirt', '||comma||', 'you', 'stole', 'my', 'shirt', 'you', 'son', 'of', 'a', 'bitch', '||exclammark||', '||leftparen||', 'really', 'fast', '||rightparen||', 'george', 'you', 'let', 'your', 'friends', 'go', 'up', 'in', 'my', 'attic', 'and', 'steal', 'my', 'clothes', '||questionmark||', '||leftparen||', 'grabbing', 'at', 'the', 'shirt', '||rightparen||', 'gimme', 'that', 'back', '||return||', '||return||', 'kramer:', '||leftparen||', 'trying', 'to', 'get', 'away', '||rightparen||', 'woah', '||return||', '||return||', 'george:', 'dad', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughs', 'as', 'frank', 'ends', 'up', 'tickling', 'him', '||semicolon||', 'gets', 'away', '||rightparen||', 'i', 'bought', 'it', 'from', 'rudy', '||period||', '||return||', '||return||', 'george:', 'rudy', '||questionmark||', '||exclammark||', 'that', 'skunk', '||comma||', 'i', 'knew', 'he', "didn't", 'burn', 'those', 'clothes', '||period||', '||return||', '||return||', 'frank:', "who's", 'rudy', '||questionmark||', 'what', 'clothes', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'sold', 'your', 'clothes', 'yesterday', '||period||', '||return||', '||return||', 'frank:', 'you', 'sold', 'my', 'clothes', '||leftparen||', 'smacks', 'george', 'on', 'the', 'forehead', '||rightparen||', 'what', 'do', 'you', 'mean', 'you', 'sold', 'my', 'clothes', '||questionmark||', '||return||', '||return||', 'george:', 'i', "didn't", 'think', 'you', 'wore', 'them', 'anymore', '||period||', '||return||', '||return||', 'frank:', "it's", 'cruise', 'wear', '||exclammark||', '||return||', '||return||', 'estelle:', 'kramer', '||comma||', 'i', 'love', 'that', 'shirt', '||period||', '||return||', '||return||', 'kramer:', 'yaya', '||return||', '||return||', 'frank:', "that's", 'because', "it's", 'mine', '||exclammark||', '||exclammark||', '||return||', '||return||', 'estelle:', 'you', 'look', 'just', 'like', 'frank', '||comma||', 'on', 'our', 'honeymoon', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'frank:', "who's", 'this', 'rudy', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "rudy's", 'the', 'guy', 'buying', "morty's", 'raincoats', '||period||', '||return||', '||return||', 'frank:', 'morty', 'seinfeld', '||questionmark||', "he's", 'a', 'bum', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', 'whole', 'deal', 'going', 'down', 'tomorrow', '||period||', "morty's", 'gonna', 'miss', 'his', 'plane', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'missing', 'his', 'plane', '||questionmark||', "wasn't", 'that', 'a', 'charter', 'flight', '||questionmark||', '||return||', '||return||', 'kramer:', 'yea', '||period||', '||return||', '||return||', 'george:', 'what', 'happens', 'to', 'charter', 'tickets', 'when', 'you', "don't", 'use', 'em', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'suppose', 'they', 'are', 'wasted', '||period||', '||return||', '||return||', 'george:', 'yes', 'i', 'suppose', 'they', 'are', '||period||', '||return||', '||return||', 'frank:', 'tomorrow', "i'm", 'going', 'straight', 'down', 'to', 'this', 'rudy', 'and', 'get', 'my', 'clothes', '||period||', '||return||', '||return||', 'kramer:', 'a', 'mouse', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'want', 'the', 'tickets', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'jerry:', "you're", 'gonna', 'take', 'this', 'kid', 'to', 'paris', '||questionmark||', '||return||', '||return||', 'george:', 'hey', 'i', 'get', 'a', 'free', 'trip', 'to', 'paris', '||comma||', 'i', 'go', 'in', 'the', 'big', "brother's", 'hall', '||dash||', 'of', '||dash||', 'fame', '||comma||', 'i', 'mail', 'my', 'own', 'postcards', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "i'm", 'paying', 'for', 'these', 'tickets', '||period||', '||return||', '||return||', 'george:', "it's", 'alright', '||comma||', 'i', 'got', 'lunch', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'should', 'have', 'gone', 'to', 'the', "costanzas'", 'for', 'dinner', '||period||', 'mmm', 'the', 'paella', 'was', 'magnificent', '||period||', 'have', 'you', 'ever', 'had', 'really', 'good', 'paella', '||questionmark||', '||return||', '||return||', 'morty:', 'not', 'really', '||period||', '||return||', '||return||', 'kramer:', 'oh', "it's", 'a', 'orgiastic', 'feast', 'for', 'the', 'senses', '||period||', 'the', 'want', 'and', 'the', 'festival', '||comma||', 'the', 'sites', '||comma||', 'sounds', '||comma||', 'and', 'colors', 'an', 'mmmummumm', 'mumm', '||return||', '||return||', 'jerry:', 'hey', 'dad', 'are', 'you', 'sure', 'we', 'are', 'at', 'the', 'right', 'carousel', '||questionmark||', '||return||', '||return||', 'morty:', 'this', 'is', 'it', '||period||', '||return||', '||return||', 'kramer:', 'so', 'how', 'much', 'are', 'we', 'gonna', 'make', '||questionmark||', '||return||', '||return||', 'morty:', 'take', 'it', 'easy', '||comma||', "i've", 'been', 'through', 'a', 'million', 'of', 'these', 'negotiations', '||period||', '||return||', '||return||', 'kramer:', 'wha', 'two', 'thousand', '||questionmark||', 'three', 'thousand', '||questionmark||', '||return||', '||return||', 'morty:', "that's", 'giving', 'it', 'away', '||period||', 'this', 'is', 'a', 'one', 'of', 'a', 'kind', 'item', '||period||', '||return||', '||return||', 'kramer:', 'more', '||questionmark||', 'more', 'than', 'three', 'thousand', '||questionmark||', '||return||', '||return||', 'morty:', 'just', 'watch', 'me', 'do', 'my', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'say', 'dad', '||comma||', '||leftparen||', 'pointing', 'at', 'a', 'raincoat', 'sitting', 'on', 'the', 'carousel', 'next', 'to', 'an', 'open', 'box', '||rightparen||', "isn't", 'that', 'one', 'of', 'yours', '||questionmark||', '||return||', '||return||', 'morty:', 'look', 'at', 'this', '||period||', 'look', 'at', 'how', 'this', 'idiot', 'packed', 'it', '||period||', 'he', "didn't", 'tape', 'it', '||comma||', 'he', 'just', 'flipped', 'the', 'flaps', '||period||', '||leftparen||', 'kramer', '||comma||', 'morty', 'and', 'jerry', 'are', 'looking', 'around', 'grabbing', 'raincoats', 'which', 'are', 'scattered', 'all', 'over', 'the', 'place', '||period||', '||rightparen||', 'kramer', 'you', 'missed', 'a', 'couple', '||period||', '||return||', '||return||', 'woman:', 'bon', '||dash||', 'jour', '||comma||', 'welcome', 'to', 'the', 'gateway', 'to', 'paris', 'charter', 'flight', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'turns', 'around', 'noticing', 'the', 'charter', 'flight', '||rightparen||', 'dad', "isn't", 'that', 'your', 'charter', 'group', '||questionmark||', '||return||', '||return||', 'george:', 'honesty', '||comma||', 'hard', '||dash||', 'work', '||comma||', 'these', 'are', 'the', 'values', 'that', 'i', 'was', 'raised', 'on', '||period||', 'the', 'most', 'important', 'thing', 'joey', '||comma||', 'is', 'to', 'be', 'able', 'to', 'look', 'yourself', 'in', 'the', 'mirror', 'before', 'you', 'go', 'to', 'sleep', 'at', 'night', '||period||', '||return||', '||return||', 'joey:', 'hey', '||exclammark||', 'i', 'got', 'news', 'for', 'you', 'four', 'eyes', '||comma||', "there's", 'no', 'way', "you're", 'staying', 'with', 'us', 'in', 'paris', '||period||', '||return||', '||return||', 'frank:', 'you', 'burned', 'them', '||questionmark||', 'those', 'clothes', 'are', 'not', 'yours', 'to', 'burn', '||period||', '||return||', '||return||', 'rudy:', 'who', 'are', 'you', 'anyways', '||questionmark||', '||return||', '||return||', 'frank:', "i'm", 'the', 'father', '||period||', '||return||', '||return||', 'rudy:', 'he', 'said', 'his', 'father', 'was', 'dead', '||period||', '||return||', '||return||', 'frank:', 'he', 'said', 'i', 'was', 'dead', '||questionmark||', '||return||', '||return||', 'rudy:', "that's", 'right', '||period||', 'squeezed', 'an', 'extra', 'twenty', '||dash||', 'five', 'dollars', 'out', 'of', 'me', '||period||', '||return||', '||return||', 'frank:', "that's", 'what', 'my', 'life', 'is', 'worth', 'to', 'him', '||questionmark||', 'twenty', '||dash||', 'five', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'frank', '||exclammark||', '||return||', '||return||', 'frank:', 'oh', '||comma||', 'i', 'just', 'want', 'to', 'you', 'know', "i'm", 'retracting', 'our', 'dinner', 'invitation', '||period||', '||return||', '||return||', 'morty:', 'well', 'you', "don't", 'have', 'to', 'retract', 'it', 'because', 'we', 'never', 'went', '||period||', '||return||', '||return||', 'frank:', "i'm", 'retracting', 'that', 'it', 'was', 'ever', 'offered', '||period||', '||return||', '||return||', 'morty:', 'i', 'retract', 'your', 'retraction', '||period||', '||return||', '||return||', 'frank:', 'oh', '||comma||', 'you', 'trying', 'to', 'unload', 'some', 'of', 'that', 'junk', 'of', 'yours', '||questionmark||', '||return||', '||return||', 'morty:', 'would', 'you', 'excuse', 'me', 'please', '||comma||', "we're", 'conducting', 'business', 'here', '||period||', '||return||', '||return||', 'rudy:', 'you', 'can', 'keep', 'your', 'raincoats', '||period||', "i'm", 'not', 'interested', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'we', 'had', 'a', 'deal', '||questionmark||', '||return||', '||return||', 'frank:', "that's", 'another', 'one', 'of', 'my', 'shirts', '||exclammark||', '||exclammark||', '||return||', '||return||', 'rudy:', "i'm", 'not', 'buying', 'anymore', 'clothes', 'from', 'anyone', 'off', 'the', 'street', '||period||', '||return||', '||return||', 'morty:', "who's", 'off', 'the', 'street', '||questionmark||', "i'm", 'in', 'the', 'raincoat', 'business', 'for', 'thirty', '||dash||', 'five', 'years', '||period||', '||return||', '||return||', 'rudy:', 'ya', 'how', 'do', 'i', 'know', 'there', "aren't", 'moths', 'like', 'his', 'stuff', '||questionmark||', '||return||', '||return||', 'frank:', 'my', 'clothes', "don't", 'have', 'moths', '||exclammark||', '||return||', '||return||', 'morty:', 'because', 'of', 'his', 'moths', "you're", 'not', 'buying', 'my', 'raincoats', '||questionmark||', '||return||', '||return||', 'rudy:', "that's", 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', '||rightparen||', "i'm", 'all', 'ticklish', '||period||', '||leftparen||', 'a', 'moth', 'flies', 'out', 'of', 'his', 'shirt', '||semicolon||', 'they', 'all', 'look', 'at', 'it', '||rightparen||', '||return||', '||return||', 'announcement:', 'flight', '||dash||', '433', 'now', 'boarding', 'for', 'miami', '||comma||', 'gate', '18a', '||period||', 'flight', '||dash||', '433', 'now', 'boarding', '||period||', '||return||', '||return||', 'morty:', 'ok', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'aaron', '||rightparen||', 'it', 'was', 'so', 'nice', 'of', 'you', 'to', 'come', 'to', 'the', 'airport', 'to', 'see', 'us', 'off', '||period||', '||return||', '||return||', 'aaron:', 'are', 'you', 'sure', 'you', "can't", 'stay', 'a', 'little', 'longer', '||questionmark||', '||return||', '||return||', 'elaine', '&', 'jerry:', 'no', '||period||', '||return||', '||return||', 'morty:', 'ah', '||comma||', 'good', '||dash||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'good', '||dash||', 'bye', '||return||', '||return||', 'jerry:', 'take', 'care', '||return||', '||return||', 'morty:', 'alright', 'jer', '||period||', '||return||', '||return||', 'elaine:', 'nice', 'to', 'see', '||period||', '||period||', '||return||', '||return||', 'morty:', 'buh', 'bye', 'elaine', '||return||', '||return||', 'jerry:', 'buh', 'bye', '||period||', '||return||', '||return||', 'helen:', 'buh', 'bye', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'looking', 'at', 'jerry', 'while', 'being', 'overly', 'hugged', 'by', 'aaron', '||rightparen||', "we'll", 'call', 'you', 'when', 'we', 'get', 'home', '||period||', '||return||', '||return||', 'aaron:', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'she', 'meant', 'me', '||comma||', 'but', '||period||', '||return||', '||return||', 'morty:', 'make', 'sure', 'kramer', 'uses', 'good', 'tape', 'when', 'he', 'sends', 'back', 'the', 'raincoats', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'aaron', '||questionmark||', 'aaron', 'are', 'you', 'ok', '||questionmark||', '||return||', '||return||', 'aaron:', 'i', "could've", 'done', 'more', '||period||', 'i', "could've", 'done', 'so', 'much', 'more', '||period||', '||return||', '||return||', 'elaine:', 'you', 'did', 'enough', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'turning', 'toward', 'her', '||rightparen||', 'no', '||comma||', 'i', "could've", 'called', 'the', 'travel', 'agency', '||comma||', 'got', 'them', 'on', 'another', 'flight', 'to', 'paris', '||comma||', 'i', 'coulda', 'got', 'them', 'out', '||period||', '||return||', '||return||', 'jerry:', 'you', 'tried', 'aaron', '||comma||', 'it', 'was', 'too', 'expensive', '||period||', '||return||', '||return||', 'aaron:', '||leftparen||', 'holds', 'his', 'arm', 'up', '||rightparen||', 'this', 'watch', '||comma||', 'this', 'watch', "could've", 'paid', 'for', 'their', 'whole', 'trip', '||period||', '||leftparen||', 'holds', 'his', 'other', 'hand', 'up', '||rightparen||', 'this', 'ring', '||comma||', 'this', 'ring', 'is', 'one', 'more', 'dinner', 'i', "could've", 'taken', 'them', 'out', 'to', '||period||', '||leftparen||', 'jerry', 'and', 'elaine', 'look', 'at', 'each', 'other', 'like', "he's", 'crazy', '||rightparen||', 'water', '||comma||', 'they', 'need', 'some', 'water', '||leftparen||', 'turns', 'around', 'and', 'runs', 'to', 'the', 'flight', 'agent', '||rightparen||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'aaron:', '||leftparen||', 'to', 'the', 'flight', 'agent', '||rightparen||', "they'll", 'get', 'dehydrated', 'on', 'the', 'plane', '||exclammark||', 'get', 'the', 'seinfelds', 'some', 'water', '||period||', 'please', '||exclammark||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', 'mr', '||period||', 'goldstein', 'is', 'rachel', 'home', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'goldstein:', "i'm", 'afraid', "rachel's", 'not', 'going', 'to', 'be', 'able', 'to', 'see', 'you', 'tonight', '||comma||', 'or', 'any', 'other', 'night', 'for', 'that', 'matter', '||period||', '||return||', '||return||', 'jerry:', 'why', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'goldstein:', '||leftparen||', 'rachel', 'is', 'know', 'seen', 'behind', 'her', 'dad', '||rightparen||', 'you', 'know', 'very', 'well', '||period||', 'i', 'heard', 'about', 'your', 'behavior', 'at', 'the', 'movies', 'the', 'other', 'night', 'it', 'was', 'disgraceful', '||period||', 'you', 'should', 'be', 'ashamed', 'of', 'yourself', '||comma||', 'i', 'for', 'one', 'will', 'not', 'allow', 'my', 'daughter', 'to', 'be', 'involved', 'with', 'someone', 'of', 'such', 'weak', 'moral', 'fiber', '||period||', 'fortunately', 'my', 'postman', 'happened', 'to', 'have', 'witnessed', 'the', 'entire', 'incident', '||period||', 'a', 'heavy', 'set', 'fellow', '||comma||', 'i', 'believe', 'he', 'lives', 'in', 'your', 'building', '||period||', '||leftparen||', 'jerry', 'turns', 'to', 'almost', 'do', 'a', "'newman'", '||rightparen||', 'now', 'if', 'you', "don't", 'mind', '||period||', '||leftparen||', 'starts', 'to', 'close', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'rachel', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'goldstein:', '||leftparen||', 'closing', 'the', 'door', 'on', 'jerry', '||rightparen||', 'good', 'night', '||exclammark||', '||return||', '||return||', 'jerry:', 'rachel', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'my', 'parents', 'get', 'home', '||comma||', 'they', 'open', 'the', 'door', '||comma||', 'my', 'father', 'flicks', 'the', 'light', 'on', '||comma||', 'the', 'whole', 'place', 'is', 'cleaned', 'out', '||comma||', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'aahh', '||comma||', '||leftparen||', 'pushes', 'jerry', 'from', 'her', 'seat', 'at', 'the', 'table', '||rightparen||', 'get', 'out', '||exclammark||', 'how', 'did', 'it', 'happen', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'broken', 'window', '||comma||', 'klompus', 'never', 'fixed', 'it', '||period||', 'they', 'just', 'walked', 'right', 'in', '||period||', '||return||', '||return||', 'elaine:', 'oohh', '||comma||', 'boy', '||period||', 'they', 'could', 'use', 'a', 'vacation', '||period||', '||return||', '||return||', 'jerry:', 'yea', "they're", 'taking', 'one', '||comma||', 'the', 'travel', 'agent', 'is', 'trying', 'to', 'set', 'something', 'else', 'up', 'for', 'them', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', '||rightparen||', 'so', 'how', 'about', 'that', 'aaron', '||questionmark||', '||return||', '||return||', 'jerry:', 'whew', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', 'drove', 'me', 'crazy', 'about', 'him', '||questionmark||', 'did', 'you', 'ever', 'notice', 'that', 'he', 'stood', 'too', 'close', 'to', 'you', 'when', 'he', 'talked', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "hadn't", 'noticed', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'at', 'the', 'counter', '||rightparen||', 'pair', 'of', 'bear', 'claws', 'please', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hearing', 'newman', 'turns', 'and', 'sees', 'him', '||rightparen||', 'hiya', 'newman', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'moving', 'away', 'from', 'the', 'counter', 'getting', 'closer', 'to', 'the', 'door', '||rightparen||', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'say', '||comma||', 'i', 'happened', 'to', 'catch', 'you', 'coming', 'out', 'of', "schindler's", 'list', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'newman:', 'ohh', '||comma||', 'were', 'you', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'was', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'looking', 'scared', '||rightparen||', 'i', '||dash||', "it's", 'a', "it's", 'a', '||period||', '||period||', '||period||', 'powerful', 'film', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'shocking', 'brutality', "don't", 'you', 'think', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'couple', 'quick', 'breaths', '||rightparen||', 'shocking', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'well', 'that', 'was', 'nothing', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'running', 'out', 'the', 'door', '||rightparen||', 'jerry', '||exclammark||', 'jerry', '||exclammark||', '||return||', '||return||', 'george:', 'where', 'the', 'hell', 'is', 'your', 'father', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', 'this', 'is', 'the', 'best', 'thing', 'we', 'ever', 'did', '||period||', '||return||', '||return||', 'frank:', 'i', 'just', 'hope', 'those', 'exterminators', 'know', 'what', "they're", 'doing', '||period||', '||return||', '||return||', 'estelle:', 'ah', 'forget', 'about', 'them', "let's", 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'toby', '||leftparen||', 'exuberantly', '||rightparen||', ':', 'these', 'are', 'great', '||exclammark||', 'just', 'great', '||exclammark||', 'really', 'great', '||exclammark||', 'really', '||comma||', 'really', 'great', '||exclammark||', "don't", 'you', 'think', 'so', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'put', 'off', 'by', "toby's", 'exuberance', '||rightparen||', ':', 'yeah', '||comma||', 'really', 'great', '||period||', '||return||', '||return||', 'toby:', 'oh', '||comma||', 'a', 'coffee', 'table', 'book', 'about', 'coffee', 'tables', '||exclammark||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'how', 'did', 'you', 'come', 'up', 'with', 'this', 'idea', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'there', '||exclammark||', '||return||', '||return||', 'toby:', 'oh', '||comma||', 'look', 'at', 'this', 'one', '||exclammark||', "it's", 'saying', '||comma||', "'i'm", 'a', 'coffee', 'table', '||comma||', 'put', 'some', 'coffee', 'on', 'me', '||exclammark||', 'oh', '||comma||', 'the', 'hotter', 'the', 'better', '||comma||', "that's", 'what', "i'm", 'here', 'for', '||exclammark||', "'", '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'know', 'actually', '||comma||', "i've", 'got', 'some', 'work', 'i', 'gotta', 'do', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', 'about', 'if', 'the', 'book', 'came', 'with', 'these', 'little', 'fold', '||dash||', 'out', 'legs', '||period||', '||period||', '||period||', 'so', 'the', 'book', 'itself', 'becomes', 'a', 'coffee', 'table', '||questionmark||', '||return||', '||return||', 'toby:', 'ohhh', '||comma||', 'that', 'is', 'a', 'great', 'idea', '||exclammark||', 'really', '||comma||', 'really', 'great', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'imitating', 'toby', '||rightparen||', ':', "'oooh", '||comma||', 'and', 'that', 'coffee', 'table', 'is', 'saying', '||comma||', 'put', 'some', 'coffee', 'on', 'me', '||exclammark||', "'", "i'd", 'like', 'to', 'put', 'some', 'coffee', 'on', 'her', '||period||', 'hot', '||comma||', 'scalding', 'coffee', '||dash||', 'right', 'in', 'her', 'face', '||exclammark||', 'i', 'swear', '||exclammark||', 'this', 'is', 'like', 'working', 'with', 'a', 'contestant', 'from', '||quotemark||', 'the', 'price', 'is', 'right', '||quotemark||', '||exclammark||', '||leftparen||', 'demonstrates', 'a', 'winner', 'on', '||quotemark||', 'the', 'price', 'is', 'right', '||quotemark||', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'real', 'interesting', '||period||', 'elaine', '||comma||', 'listen', '||comma||', 'tell', 'me', 'if', 'you', 'think', 'this', 'is', 'funny', '||dash||', '||leftparen||', 'reads', 'comedy', "he's", 'written', '||rightparen||', '||quotemark||', 'men', 'definitely', 'hit', 'the', 'remote', 'more', 'than', 'women', '||period||', '||period||', '||period||', 'men', "don't", 'care', "what's", 'on', 'tv', '||comma||', 'men', 'only', 'care', 'what', 'else', 'is', 'on', 'tv', '||period||', 'women', 'want', 'to', 'see', 'what', 'the', 'show', 'is', 'before', 'they', 'change', 'the', 'channel', '||comma||', 'because', 'men', 'hunt', 'and', 'women', 'nest', '||period||', '||quotemark||', '||return||', '||return||', 'elaine', '||leftparen||', 'uninterested', '||rightparen||', ':', 'yeah', '||comma||', "it's", 'funny', '||comma||', 'i', 'dunno', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'know', '||questionmark||', 'come', 'on', '||comma||', "that's", 'gold', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', 'about', '||quotemark||', 'gold', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'gold', '||comma||', 'baby', '||period||', '||return||', '||return||', 'elaine:', "'baby'", '||questionmark||', 'what', '||comma||', 'are', 'you', 'doing', 'george', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'saying', "'baby'", 'way', 'before', 'george', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', '||comma||', "don't", 'ask', 'me', 'any', 'more', 'questions', 'about', 'jokes', '||comma||', 'jerry', '||comma||', 'it', 'just', 'puts', 'too', 'much', 'pressure', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'this', 'guy', 'leonard', "christian's", 'gonna', 'be', 'there', 'tomorrow', 'night', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "who's", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'writer', 'from', 'entertainment', 'weekly', '||period||', 'i', 'would', 'like', 'to', 'have', 'a', 'good', 'show', '||period||', '||return||', '||return||', 'kramer:', 'danke', 'schoen', '||comma||', 'my', 'little', 'dumplings', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'hey', '||comma||', 'how', 'about', 'that', 'toby', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'how', 'about', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', "she's", 'a', 'package', 'full', 'of', 'energy', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "she's", 'a', 'package', 'full', 'of', 'something', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', 'that', 'something', 'is', 'life', '||period||', 'jerry', '||comma||', 'you', 'gotta', 'meet', 'this', 'gal', '||dash||', "she's", "brimmin'", 'with', 'positivity', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'absolutely', 'disgusted', '||rightparen||', ':', 'oh', '||comma||', 'pleeeeease', '||period||', '||leftparen||', 'moves', 'to', 'the', 'living', 'room', 'and', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'hey', '||comma||', 'are', 'you', 'performing', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'great', '||comma||', "i'm", 'gonna', 'bring', 'toby', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'better', 'laugh', "'cause", "i'm", 'being', 'reviewed', '||period||', 'leonard', "christian's", 'gonna', 'be', 'there', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "she's", 'a', 'great', 'laugher', '||dash||', 'right', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', "she's", 'a', 'great', 'laugher', '||comma||', 'jerry', '||period||', '||leftparen||', 'imitates', 'toby', '||rightparen||', 'really', '||comma||', 'really', 'great', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'well', '||comma||', 'you', 'want', 'to', 'sit', 'with', 'george', '||questionmark||', 'i', 'think', "he's", 'coming', 'with', 'robin', '||period||', '||return||', '||return||', 'kramer:', 'is', 'that', 'the', 'waitress', 'from', 'the', 'comedy', 'club', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'her', 'kid', '||comma||', 'is', 'she', 'bringing', 'him', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'kramer:', "she's", 'got', 'a', 'kid', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'should', 'see', 'george', 'get', 'along', 'with', 'this', 'kid', '||exclammark||', '||return||', '||return||', 'george:', 'ow', '||exclammark||', 'what', 'are', 'you', 'doing', 'under', 'there', '||questionmark||', 'hey', '||comma||', 'stop', 'that', '||exclammark||', "don't", 'eat', 'that', '||exclammark||', "that's", 'not', 'food', '||exclammark||', '||leftparen||', 'to', 'robin', '||rightparen||', "he's", "suckin'", 'down', 'equal', 'packets', '||exclammark||', '||return||', '||return||', 'robin:', 'do', 'you', 'think', '25', 'kids', 'is', 'too', 'much', '||questionmark||', '||return||', '||return||', 'george:', '25', 'kids', 'for', 'his', 'birthday', 'party', '||questionmark||', '||leftparen||', 'to', 'kid', 'under', 'table', '||rightparen||', "don't", 'put', 'your', 'tongue', 'on', 'the', 'floor', '||exclammark||', "he's", 'putting', 'his', 'tongue', 'on', 'the', 'floor', '||exclammark||', 'here', '||comma||', 'here', '||comma||', 'have', 'some', 'more', 'sugar', 'packets', '||period||', '||leftparen||', 'tosses', 'some', 'equal', 'packets', 'under', 'the', 'table', '||rightparen||', '||return||', '||return||', 'robin:', 'so', '||comma||', 'what', 'about', 'entertainment', '||questionmark||', '||leftparen||', 'to', 'kid', '||rightparen||', 'should', 'i', 'get', 'barney', '||questionmark||', '||return||', '||return||', 'kid:', 'no', 'barney', '||exclammark||', '||return||', '||return||', 'robin', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'maybe', 'a', 'clown', '||period||', '||return||', '||return||', 'george:', 'how', 'about', 'bozo', '||questionmark||', '||return||', '||return||', 'kid:', "who's", 'bozo', '||questionmark||', '||return||', '||return||', 'george:', "who's", 'bozo', '||questionmark||', 'bozo', 'the', 'clown', '||comma||', "that's", 'who', 'bozo', 'is', '||period||', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'bozo', 'the', 'clown', 'was', 'the', 'clown', '||comma||', 'bar', 'none', '||period||', '||return||', '||return||', 'robin:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'with', 'the', 'orange', 'hair', '||comma||', 'and', 'the', 'big', 'clown', 'shirt', 'with', 'the', 'ruffles', '||period||', '||period||', '||period||', '||return||', '||return||', 'robin:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'he', 'had', 'a', 'tv', 'show', '||exclammark||', 'he', 'had', 'cartoons', '||exclammark||', '||return||', '||return||', 'robin:', 'george', '||exclammark||', 'forget', 'bozo', '||comma||', 'george', '||period||', "bozo's", 'out', '||period||', "he's", 'finished', '||period||', "it's", 'over', 'for', 'bozo', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'we', "didn't", 'have', 'these', 'elaborate', 'birthday', 'parties', 'w', '||dash||', 'with', 'catered', 'food', 'and', 'entertainment', '||period||', 'i', 'remember', 'my', '7th', 'birthday', 'party', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'blow', 'out', 'the', 'candles', '||exclammark||', 'blow', 'out', 'the', 'candles', '||comma||', 'i', 'said', '||exclammark||', 'blow', 'out', 'the', 'damn', 'candles', '||exclammark||', '||return||', '||return||', 'estelle:', 'stop', 'it', '||comma||', 'frank', '||exclammark||', "you're", 'killing', 'him', '||exclammark||', '||return||', '||return||', 'frank:', 'blow', 'out', 'the', 'candles', '||exclammark||', '||exclammark||', '||return||', '||return||', 'robin:', 'well', '||comma||', 'this', 'time', '||comma||', 'you', 'can', 'blow', 'out', 'the', 'candles', '||period||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'i', 'have', 'asthma', '||period||', '||leftparen||', "robin's", 'kid', 'grabs', "george's", 'leg', 'from', 'under', 'the', 'table', '||comma||', 'and', 'george', 'struggles', '||period||', '||rightparen||', '||return||', '||return||', 'toby:', 'hi', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'in', 'a', 'dreadful', 'tone', '||rightparen||', ':', 'hi', '||comma||', 'toby', '||period||', '||return||', '||return||', 'toby:', 'how', 'are', 'you', 'doing', 'today', '||questionmark||', '||return||', '||return||', 'elaine:', 'fine', '||period||', '||period||', '||period||', '||leftparen||', 'toby', 'sits', 'and', 'waits', 'for', 'elaine', 'to', 'speak', '||period||', '||rightparen||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'toby:', 'oh', '||comma||', "i'm", 'great', '||exclammark||', 'just', 'great', '||period||', 'really', 'great', '||exclammark||', 'oh', '||comma||', 'hey', '||dash||', 'did', 'you', 'hear', 'about', 'bob', 'rosen', '||questionmark||', '||return||', '||return||', 'elaine:', 'nope', '||period||', '||return||', '||return||', 'toby:', 'he', 'is', 'going', 'to', 'knopp', '||period||', 'he', 'is', 'going', 'to', 'be', 'a', 'vice', 'president', '||period||', '||return||', '||return||', 'elaine:', 'knopp', '||questionmark||', 'really', '||questionmark||', 'boy', '||period||', 'that', 'means', "there's", 'an', 'opening', 'here', 'for', 'senior', 'editor', '||period||', '||period||', '||period||', 'has', 'lippman', '||comma||', 'uh', '||comma||', 'hired', 'anyone', '||questionmark||', '||return||', '||return||', 'toby:', 'no', '||period||', 'i', 'hear', 'he', 'wants', 'to', 'promote', 'someone', 'in', '||dash||', 'house', '||period||', '||return||', '||return||', 'elaine:', 'really', '||exclammark||', '||questionmark||', '||return||', '||return||', 'toby:', 'maybe', "it'll", 'be', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'toby:', 'you', 'really', 'deserve', 'it', '||period||', 'i', 'mean', '||comma||', 'you', 'have', 'experience', '||comma||', 'seniority', '||period||', '||period||', '||period||', 'lippman', 'really', 'respects', 'your', 'opinion', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'beaming', '||rightparen||', ':', 'well', '||exclammark||', 'well', '||comma||', 'it', 'could', 'be', 'you', '||period||', '||return||', '||return||', 'toby:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'really', '||period||', '||return||', '||return||', 'toby', '||leftparen||', 'standing', '||rightparen||', ':', 'really', '||questionmark||', 'you', 'think', 'so', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'humoring', 'her', '||rightparen||', ':', 'sure', '||period||', '||return||', '||return||', 'toby:', 'boy', '||comma||', "wouldn't", 'that', 'be', 'exciting', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'stranger', 'things', 'have', 'happened', '||period||', '||period||', '||period||', '||return||', '||return||', 'toby:', 'wow', '||exclammark||', 'me', '||exclammark||', 'a', 'senior', 'editor', '||exclammark||', '||leftparen||', 'deadly', 'serious', '||rightparen||', "i'd", 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', "shouldn't", 'get', 'your', 'hopes', 'up', '||comma||', 'toby', '||period||', '||return||', '||return||', 'toby:', 'well', '||comma||', "it's", 'a', 'possibility', '||comma||', 'like', 'you', 'said', '||exclammark||', 'stranger', 'things', 'have', 'happened', '||exclammark||', 'thank', 'you', '||comma||', 'elaine', '||period||', 'thank', 'you', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'ronnie', '||period||', '||return||', '||return||', 'ronnie:', 'hey', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'bartender', '||rightparen||', 'can', 'i', 'have', 'a', 'club', 'soda', '||questionmark||', '||leftparen||', 'to', 'ronnie', '||rightparen||', "goin'", 'on', 'tonight', '||questionmark||', '||return||', '||return||', 'ronnie:', 'yeah', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'ronnie:', 'you', 'know', 'leonard', "christian's", 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'ronnie:', 'can', 'i', 'ask', 'you', 'something', '||questionmark||', 'are', 'my', 'nostrils', 'getting', 'bigger', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'his', 'nostrils', '||rightparen||', 'i', "don't", '||period||', '||period||', '||period||', 'think', 'so', '||period||', '||return||', '||return||', 'ronnie:', 'are', 'you', 'sure', '||questionmark||', 'take', 'a', 'good', 'look', '||period||', 'they', 'seem', 'a', 'little', 'bigger', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", '||period||', '||period||', '||period||', 'i', 'dunno', '||period||', '||return||', '||return||', 'ronnie:', 'is', 'it', 'possible', 'for', 'nostrils', 'to', 'expand', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'is', 'this', 'a', 'bit', '||questionmark||', '||return||', '||return||', 'ronnie:', 'hey', '||comma||', 'i', "don't", 'do', '||quotemark||', 'bits', '||period||', '||quotemark||', "i'm", 'a', 'prop', 'comic', '||period||', 'dammit', '||comma||', 'i', "can't", 'find', 'my', 'water', 'gun', '||period||', 'i', "can't", 'go', 'on', 'without', 'my', 'water', 'gun', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'turns', 'to', 'greet', 'kramer', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'well', "here's", 'toby', '||comma||', '||leftparen||', 'points', 'to', 'jerry', 'in', 'order', 'to', 'introduce', 'him', 'to', 'toby', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'toby:', 'this', 'is', 'so', 'exciting', '||exclammark||', 'look', '||comma||', 'i', 'have', 'goosebumps', '||exclammark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'touch', '||exclammark||', 'touch', 'them', '||exclammark||', '||leftparen||', 'jerry', 'touches', 'her', 'arm', '||period||', 'toby', 'screeches', 'with', 'excitement', '||period||', '||rightparen||', "i've", 'never', 'been', 'to', 'a', 'comedy', 'club', 'before', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', '||exclammark||', 'you', 'know', '||comma||', 'a', 'lot', 'of', 'restaurants', 'are', 'serving', 'brewed', 'decaf', 'now', '||comma||', 'too', '||period||', '||return||', '||return||', 'toby', '||leftparen||', 'laughing', '||rightparen||', ':', 'you', 'are', 'so', 'funny', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you'll", 'have', 'a', 'good', 'time', '||comma||', 'i', 'swear', '||period||', '||return||', '||return||', 'toby:', 'oh', '||exclammark||', 'he', 'swears', 'like', 'he', 'thinks', 'i', "don't", 'believe', 'him', '||period||', 'i', 'believe', 'you', '||period||', 'i', 'believe', 'you', '||exclammark||', 'oh', '||comma||', "he's", 'so', 'funny', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'toby', '||leftparen||', 'serious', '||rightparen||', ':', 'what', 'about', 'you', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', "i'm", 'only', 'kidding', '||period||', "you're", 'funny', '||comma||', 'too', '||period||', 'i', 'love', 'to', 'laugh', '||period||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'good', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'so', '||comma||', 'you', 'up', 'next', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'why', "don't", 'you', 'guys', 'get', 'a', 'table', 'so', "you'll", 'have', 'good', 'seats', '||questionmark||', '||return||', '||return||', 'toby:', 'oh', 'yeah', '||comma||', 'we', "don't", 'want', 'some', 'jerk', 'sitting', 'in', 'front', 'of', 'us', '||comma||', "it'll", 'be', 'like', '||comma||', "'hey", '||comma||', 'big', 'head', '||comma||', 'can', 'you', 'move', 'out', 'of', 'the', 'way', '||questionmark||', 'i', "didn't", 'pay', 'a', 'cover', 'charge', 'to', 'stare', 'at', 'your', 'bald', 'spot', '||period||', "'", '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'so', 'you', 'have', 'a', 'good', 'show', '||comma||', 'huh', 'buddy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'toby:', 'oh', '||comma||', 'have', 'a', 'great', 'show', '||period||', 'hey', '||comma||', "we'll", 'make', 'sure', "it's", 'a', 'great', 'show', '||exclammark||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', '||comma||', 'good', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||leftparen||', 'kramer', 'and', 'toby', 'are', 'about', 'to', 'exit', '||period||', 'she', 'turns', 'around', 'and', 'clutches', "kramer's", 'jacket', '||period||', '||rightparen||', '||return||', '||return||', 'toby:', 'oh', '||comma||', "he's", 'so', 'great', '||exclammark||', 'this', 'is', 'so', 'great', '||exclammark||', "i'm", 'so', 'excited', '||exclammark||', '||return||', '||return||', 'jerry:', 'men', 'definitely', 'hit', 'the', 'remote', 'button', 'more', 'than', 'women', '||period||', '||period||', '||period||', '||return||', '||return||', 'toby', '||leftparen||', 'loudly', '||rightparen||', ':', 'oh', '||comma||', 'really', '||exclammark||', 'really', '||exclammark||', 'that', 'is', 'so', 'true', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'see', '||comma||', 'men', "don't", 'care', "what's", 'on', 'tv', '||comma||', 'men', 'only', 'care', 'what', 'else', 'is', 'on', 'tv', '||period||', '||return||', '||return||', 'toby:', 'yes', '||exclammark||', 'yes', '||exclammark||', 'right', 'on', '||exclammark||', 'right', 'on', '||exclammark||', '||leftparen||', 'other', 'audience', 'members', 'give', 'her', 'puzzled', 'looks', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'attempting', 'to', 'carry', 'on', 'despite', "toby's", 'interruptions', '||rightparen||', ':', 'see', '||period||', '||period||', '||period||', 'women', 'really', 'want', 'to', 'see', 'what', 'the', 'show', 'is', 'before', 'they', 'change', 'the', 'channel', '||period||', '||period||', '||period||', '||return||', '||return||', 'toby:', 'oh', '||comma||', 'that', 'is', 'so', 'true', '||comma||', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', "that's", 'why', 'men', 'hunt', 'and', 'women', 'nest', '||period||', '||return||', '||return||', 'toby:', 'boo', '||exclammark||', 'boo', '||exclammark||', 'hiss', '||exclammark||', 'boo', '||exclammark||', '||leftparen||', "toby's", 'obnoxious', 'behavior', 'causes', 'jerry', 'to', 'completely', 'lose', 'his', 'place', 'and', 'mess', 'up', 'his', 'act', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'yea', '||comma||', 'ya', '||comma||', 'so', '||period||', '||period||', '||period||', 'anyway', 'what', 'was', 'i', 'talking', 'about', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "what's", 'the', 'deal', '||questionmark||', 'what', 'was', "goin'", 'on', 'there', '||questionmark||', 'i', 'invite', 'you', 'down', 'here', '||comma||', 'i', 'have', 'an', 'important', 'show', '||comma||', 'and', 'she', 'heckles', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'she', "didn't", 'mean', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'is', 'the', 'matter', 'with', 'her', '||questionmark||', 'is', 'she', 'crazy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "she's", 'just', 'being', 'enthusiastic', '||comma||', "that's", 'all', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'what', 'is', 'wrong', 'with', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'toby:', 'me', '||questionmark||', "nothing's", 'wrong', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'y', '||dash||', 'you', 'boo', 'me', '||questionmark||', '||exclammark||', 'you', 'hiss', '||questionmark||', '||exclammark||', 'you', "didn't", 'stop', 'blathering', 'throughout', 'the', 'whole', 'set', '||exclammark||', '||return||', '||return||', 'toby:', 'oh', '||comma||', 'come', 'on', '||exclammark||', 'i', 'thought', "you're", 'a', 'pro', '||exclammark||', "that's", 'part', 'of', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'not', 'part', 'of', 'the', 'show', '||exclammark||', 'booing', 'and', 'hissing', 'are', 'not', 'part', 'of', 'the', 'show', '||exclammark||', 'you', 'boo', 'puppets', '||exclammark||', 'you', 'hiss', 'villains', 'in', 'silent', 'movies', '||exclammark||', '||return||', '||return||', 'toby:', 'well', '||comma||', "that's", 'the', 'way', 'i', 'express', 'myself', '||period||', 'how', 'are', 'you', 'gonna', 'make', 'it', 'in', 'this', 'business', 'if', 'you', "can't", 'take', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'can', 'take', 'it', '||period||', '||return||', '||return||', 'toby', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', "let's", 'go', '||period||', '||leftparen||', 'ronnie', 'walks', 'by', 'jerry', '||period||', '||rightparen||', '||return||', '||return||', 'ronnie:', 'hey', '||comma||', 'man', '||period||', 'good', 'set', '||period||', '||return||', '||return||', 'george:', 'bozo', '||questionmark||', '||return||', '||return||', 'eric:', 'no', '||period||', '||return||', '||return||', 'george:', 'b', '||dash||', 'o', '||dash||', 'z', '||dash||', 'o', '||questionmark||', '||return||', '||return||', 'eric:', 'sorry', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "you've", 'never', 'heard', 'of', 'bozo', 'the', 'clown', '||questionmark||', '||return||', '||return||', 'eric:', 'no', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'could', 'you', 'not', 'know', 'who', 'bozo', 'the', 'clown', 'is', '||questionmark||', '||return||', '||return||', 'eric:', 'i', "don't", 'know', '||comma||', 'i', 'just', "don't", '||period||', '||return||', '||return||', 'george:', 'how', 'can', 'you', 'call', 'yourself', 'a', 'clown', 'and', 'not', 'know', 'who', 'bozo', 'is', '||questionmark||', '||return||', '||return||', 'eric:', 'hey', '||comma||', 'man', '||dash||', 'what', 'are', 'you', 'hassling', 'me', 'for', '||questionmark||', 'this', 'is', 'just', 'a', 'gig', '||comma||', "it's", 'not', 'my', 'life', '||period||', 'i', "don't", 'know', 'who', 'bozo', 'is', '||comma||', 'what', '||dash||', 'is', 'he', 'a', 'clown', '||questionmark||', '||return||', '||return||', 'george:', 'is', 'he', 'a', 'clown', '||questionmark||', 'what', '||comma||', 'are', 'you', 'kidding', 'me', '||exclammark||', '||questionmark||', '||return||', '||return||', 'eric:', 'well', '||comma||', 'what', 'is', 'he', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', "he's", 'a', 'clown', '||exclammark||', '||return||', '||return||', 'eric:', 'alright', '||comma||', 'so', "what's", 'the', 'big', 'deal', '||exclammark||', "there's", 'millions', 'of', 'clowns', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'just', 'forget', 'it', '||period||', '||return||', '||return||', 'eric:', 'me', 'forget', 'it', '||questionmark||', 'you', 'should', 'forget', 'it', '||exclammark||', "you're", "livin'", 'in', 'the', 'past', '||comma||', 'man', '||exclammark||', "you're", 'hung', 'up', 'on', 'some', 'clown', 'from', 'the', 'sixties', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'very', 'good', '||comma||', 'very', 'good', '||period||', '||period||', '||period||', 'go', 'fold', 'your', 'little', 'balloon', 'animals', '||comma||', 'eric', '||period||', 'eric', '||exclammark||', '||leftparen||', 'chuckles', '||rightparen||', 'what', 'kind', 'of', 'name', 'is', 'that', 'for', 'a', 'clown', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', "robin's", 'mother:', 'excuse', 'me', '||period||', '||period||', '||period||', 'you', 'must', 'be', 'george', '||exclammark||', "i'm", "robin's", 'mother', '||period||', 'oh', '||comma||', 'you', 'seem', 'like', 'such', 'a', 'lovely', 'young', 'man', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'do', 'what', 'i', 'can', '||period||', '||leftparen||', 'robin', 'comes', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'robin:', 'hi', 'mom', '||comma||', "how's", 'everything', '||questionmark||', '||return||', '||return||', "robin's", 'mother:', 'oh', '||comma||', 'this', 'is', 'just', 'a', 'wonderful', 'party', '||exclammark||', '||return||', '||return||', 'robin:', 'the', 'burgers', 'should', 'be', 'ready', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'great', '||comma||', 'great', '||period||', '||leftparen||', 'sniffs', '||rightparen||', "what's", 'that', 'smell', '||questionmark||', 'smoke', '||questionmark||', '||leftparen||', 'walks', 'to', 'the', 'kitchen', '||rightparen||', 'hey', 'everybody', '||comma||', 'i', 'think', 'i', 'smell', 'some', 'smoke', 'back', 'here', '||period||', '||period||', '||period||', '||leftparen||', 'smoke', 'boils', 'into', 'the', 'doorway', '||period||', '||rightparen||', 'fire', '||exclammark||', 'fire', '||exclammark||', 'get', 'out', 'of', 'the', 'way', '||exclammark||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'the', 'emts', '||rightparen||', ':', 'it', 'was', 'an', 'inferno', 'in', 'there', '||exclammark||', 'an', 'inferno', '||exclammark||', '||leftparen||', 'eric', '||comma||', "robin's", 'mother', '||comma||', 'and', 'all', 'the', 'kids', 'rush', 'at', 'george', '||period||', '||rightparen||', '||return||', '||return||', 'eric:', 'there', 'he', 'is', '||exclammark||', "that's", 'him', '||exclammark||', '||leftparen||', 'tries', 'to', 'clobber', 'george', 'with', 'his', 'big', 'shoe', '||period||', '||rightparen||', '||return||', '||return||', "robin's", 'mother:', "that's", 'the', 'coward', 'that', 'left', 'us', 'to', 'die', '||exclammark||', '||return||', '||return||', 'george', '||leftparen||', 'voice', 'is', 'hoarse', 'from', 'screaming', '||rightparen||', ':', 'i', '||period||', '||period||', '||period||', 'was', 'trying', 'to', 'lead', 'the', 'way', '||period||', 'we', 'needed', 'a', 'leader', '||exclammark||', 'someone', 'to', 'lead', 'the', 'way', 'to', 'safety', '||period||', '||return||', '||return||', 'robin:', 'but', 'you', 'yelled', '||quotemark||', 'get', 'out', 'of', 'my', 'way', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', 'because', '||exclammark||', 'because', '||comma||', 'as', 'the', 'leader', '||period||', '||period||', '||period||', 'if', 'i', 'die', '||period||', '||period||', '||period||', 'then', 'all', 'hope', 'is', 'lost', '||exclammark||', 'who', 'would', 'lead', '||questionmark||', 'the', 'clown', '||questionmark||', 'instead', 'of', 'castigating', 'me', '||comma||', 'you', 'should', 'all', 'be', 'thanking', 'me', '||period||', 'what', 'kind', 'of', 'a', 'topsy', '||dash||', 'turvy', 'world', 'do', 'we', 'live', 'in', '||comma||', 'where', '||dash||', 'where', 'heroes', 'are', 'cast', 'as', 'villains', '||questionmark||', 'brave', 'men', 'as', 'cowards', '||questionmark||', '||return||', '||return||', 'robin:', 'but', 'i', 'saw', 'you', 'push', 'the', 'women', 'and', 'children', 'out', 'of', 'the', 'way', 'in', 'a', 'mad', 'panic', '||exclammark||', 'i', 'saw', 'you', 'knock', 'them', 'down', '||exclammark||', 'and', 'when', 'you', 'ran', 'out', '||comma||', 'you', 'left', 'everyone', 'behind', '||exclammark||', '||return||', '||return||', 'george:', 'seemingly', '||period||', 'seemingly', '||comma||', 'to', 'the', 'untrained', 'eye', '||comma||', 'i', 'can', 'fully', 'understand', 'how', 'you', 'got', 'that', 'impression', '||period||', 'what', 'looked', 'like', 'pushing', '||period||', '||period||', '||period||', 'what', 'looked', 'like', 'knocking', 'down', '||period||', '||period||', '||period||', 'was', 'a', 'safety', 'precaution', '||exclammark||', 'in', 'a', 'fire', '||comma||', 'you', 'stay', 'close', 'to', 'the', 'ground', '||comma||', 'am', 'i', 'right', '||questionmark||', 'and', 'when', 'i', 'ran', 'out', 'that', 'door', '||comma||', 'i', 'was', 'not', 'leaving', 'anyone', 'behind', '||exclammark||', 'oh', '||comma||', 'quite', 'the', 'contrary', '||exclammark||', 'i', 'risked', 'my', 'life', 'making', 'sure', 'that', 'exit', 'was', 'clear', '||period||', 'any', 'other', 'questions', '||questionmark||', '||return||', '||return||', 'fireman:', 'how', 'do', 'you', 'live', 'with', 'yourself', '||questionmark||', '||return||', '||return||', 'george:', 'its', 'not', 'easy', '||period||', '||return||', '||return||', 'george:', 'so', 'she', "doesn't", 'want', 'to', 'see', 'me', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'knock', 'her', 'over', 'too', '||comma||', 'or', 'just', 'the', 'kids', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'her', 'too', '||period||', 'and', 'her', 'mother', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'her', 'mother', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'may', 'have', 'stepped', 'on', 'her', 'arm', '||comma||', 'too', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'you', 'probably', "couldn't", 'see', 'because', 'of', 'the', 'smoke', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'but', 'it', 'was', "somebody's", 'arm', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', 'so', 'you', 'feel', '||quotemark||', 'women', 'and', 'children', 'first', '||comma||', '||quotemark||', 'in', 'this', 'day', 'and', 'age', '||comma||', 'is', 'somewhat', 'of', 'an', 'antiquated', 'notion', '||period||', '||return||', '||return||', 'george:', 'to', 'some', 'degree', '||period||', '||return||', '||return||', 'jerry:', 'so', 'basically', '||comma||', "it's", 'every', 'man', '||comma||', 'woman', '||comma||', 'child', '||comma||', 'and', 'invalid', 'for', 'themselves', '||period||', '||return||', '||return||', 'george:', 'in', 'a', 'manner', 'of', 'speaking', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', "it's", 'honest', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'she', 'should', 'be', 'commending', 'me', 'for', 'treating', 'everyone', 'like', 'equals', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'perhaps', 'when', "she's", 'released', 'from', 'the', 'burn', 'center', '||comma||', "she'll", 'see', 'things', 'differently', '||period||', '||return||', '||return||', 'george:', 'perhaps', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'was', 'the', 'fire', '||questionmark||', 'just', 'a', 'couple', 'of', 'greasy', 'hamburgers', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'eric', 'the', 'clown', 'put', 'it', 'out', 'with', 'his', 'big', 'shoe', '||period||', '||return||', '||return||', 'jerry:', 'by', 'the', 'way', '||comma||', 'did', 'you', 'see', 'this', '||questionmark||', '||leftparen||', 'hands', 'george', 'a', 'magazine', '||rightparen||', '||return||', '||return||', 'george:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'the', 'leonard', 'christian', 'article', 'about', 'my', 'show', '||period||', 'plus', 'my', 'gig', 'in', 'miami', 'got', 'cancelled', '||comma||', 'i', 'betcha', "it's", 'because', 'of', 'the', 'article', '||period||', '||return||', '||return||', 'george:', 'wow', '||comma||', 'he', 'really', 'does', 'a', 'number', 'on', 'you', '||period||', '||leftparen||', 'reads', '||rightparen||', '||quotemark||', 'seinfeld', 'froze', 'like', 'a', 'deer', 'in', 'the', 'headlights', 'in', 'the', 'face', 'of', 'incessant', 'heckling', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', 'should', 'have', 'let', 'her', 'have', 'it', '||exclammark||', 'i', 'held', 'back', 'because', 'of', 'kramer', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'you', 'oughta', 'do', '||period||', 'you', 'should', 'go', 'to', 'her', 'office', 'and', 'heckle', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'like', 'all', 'the', 'comedians', 'always', 'say', '||comma||', "'how", 'would', 'you', 'like', 'it', 'if', 'i', 'came', 'to', 'where', 'you', 'work', 'and', 'heckled', 'you', '||questionmark||', "'", '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that'd", 'be', 'something', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'kidding', '||comma||', 'you', 'should', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'but', "wouldn't", 'that', 'be', 'the', 'ultimate', "comedian's", 'revenge', '||questionmark||', "i've", 'always', 'had', 'a', 'fantasy', 'about', 'doing', 'that', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'go', 'ahead', '||exclammark||', 'do', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', "can't", 'i', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'reason', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'i', 'think', "i'm", 'gonna', 'do', 'that', '||exclammark||', 'she', 'came', 'down', 'to', 'where', 'i', 'work', '||comma||', "i'll", 'go', 'down', 'to', 'where', 'she', 'works', '||exclammark||', '||return||', '||return||', 'george:', 'this', 'is', 'unprecedented', '||exclammark||', '||return||', '||return||', 'jerry:', "there's", 'no', 'precedent', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||period||', '||period||', '||period||', 'are', 'you', 'using', 'my', 'babies', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'nice', 'shoes', '||period||', 'what', '||comma||', 'you', 'wear', 'sandals', 'to', 'work', '||questionmark||', "it's", 'always', 'nice', 'to', 'walk', 'into', 'a', 'room', 'and', 'get', 'the', 'aroma', 'of', 'feet', '||period||', "that's", 'real', 'conducive', 'to', 'the', 'work', 'atmosphere', '||period||', "i'm", 'sure', 'your', 'co', '||dash||', 'workers', 'really', 'appreciate', 'it', '||period||', "'hey", '||comma||', "let's", 'go', 'eat', 'in', "toby's", 'office', '||period||', 'great', 'idea', '||exclammark||', 'we', 'can', 'check', 'on', 'her', 'bunions', '||exclammark||', "'", '||return||', '||return||', 'toby:', 'you', 'know', '||comma||', 'i', 'have', 'work', 'to', 'do', 'here', '||exclammark||', "i'm", 'very', 'busy', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'is', 'this', 'disruptive', '||questionmark||', 'you', 'find', 'it', 'hard', 'to', 'work', 'with', 'someone', '||period||', '||period||', '||period||', 'interrupting', '||questionmark||', '||return||', '||return||', 'toby:', 'well', '||comma||', 'how', 'would', 'you', 'like', 'it', 'if', 'i', 'called', 'security', '||questionmark||', '||return||', '||return||', 'jerry:', 'security', '||questionmark||', 'well', '||comma||', 'i', "don't", 'know', 'how', "you're", 'gonna', 'make', 'it', 'in', 'this', 'business', 'if', 'you', "can't", 'take', 'it', '||exclammark||', 'ya', 'gotta', 'be', 'tough', '||exclammark||', 'booo', '||exclammark||', 'boooo', '||exclammark||', '||return||', '||return||', 'toby:', 'no', '||comma||', '||leftparen||', 'gets', 'up', 'out', 'of', 'her', 'chair', '||rightparen||', "that's", 'it', '||period||', '||leftparen||', 'kramer', 'arrives', '||semicolon||', 'to', 'kramer', '||rightparen||', 'get', 'out', 'of', 'the', 'way', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'boo', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", "happenin'", 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'hiss', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'going', 'after', 'toby', '||rightparen||', 'toby', '||exclammark||', 'toby', '||exclammark||', '||return||', '||return||', 'toby:', '||leftparen||', 'voice', '||semicolon||', 'screaming', '||rightparen||', 'my', 'pinky', 'toe', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'voice', '||semicolon||', 'yelling', '||rightparen||', 'toby', '||exclammark||', '||leftparen||', 'shot', 'of', 'a', 'shocked', 'kramer', 'is', 'shown', '||rightparen||', 'oh', '||comma||', 'oh', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'did', 'you', 'go', 'up', 'there', 'to', 'heckle', 'her', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'she', 'came', 'down', 'to', 'the', 'club', 'and', 'heckled', 'me', '||exclammark||', 'give', 'her', 'a', 'taste', 'of', 'her', 'own', 'medicine', '||exclammark||', '||leftparen||', 'george', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||exclammark||', 'you', 'gave', 'her', 'a', 'taste', 'of', 'medicine', '||comma||', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "didn't", 'want', 'her', 'to', 'have', 'an', 'accident', '||period||', '||return||', '||return||', 'george:', 'what', 'accident', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'after', 'he', 'heckled', 'toby', '||comma||', 'she', 'got', 'so', 'upset', '||comma||', 'she', 'ran', 'out', 'of', 'the', 'building', 'and', 'a', 'street', 'sweeper', 'ran', 'over', 'her', 'foot', 'and', 'severed', 'her', 'pinky', 'toe', '||period||', '||return||', '||return||', 'george:', "that's", 'unbelievable', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'then', 'after', 'the', 'ambulance', 'left', '||comma||', 'i', 'found', 'the', 'toe', '||exclammark||', 'so', 'i', 'put', 'it', 'in', 'a', 'cracker', 'jack', 'box', '||comma||', 'filled', 'it', 'with', 'ice', '||comma||', 'and', 'took', 'off', 'for', 'the', 'hospital', '||period||', '||return||', '||return||', 'george:', 'wha', '||period||', '||period||', 'you', 'ran', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'jumped', 'on', 'the', 'bus', '||period||', 'i', 'told', 'the', 'driver', '||comma||', '||quotemark||', 'i', 'got', 'a', 'toe', 'here', '||comma||', 'buddy', '||dash||', 'step', 'on', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'holy', 'cow', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'then', 'all', 'of', 'a', 'sudden', '||comma||', 'this', 'guy', 'pulls', 'out', 'a', 'gun', '||period||', 'well', '||comma||', 'i', 'knew', 'any', 'delay', 'is', 'gonna', 'cost', 'her', 'her', 'pinky', 'toe', '||comma||', 'so', 'i', 'got', 'out', 'of', 'the', 'seat', 'and', 'i', 'started', 'walking', 'towards', 'him', '||period||', 'he', 'says', '||comma||', '||quotemark||', 'where', 'do', 'you', 'think', "you're", 'going', '||comma||', 'cracker', 'jack', '||questionmark||', '||quotemark||', 'i', 'said', '||comma||', '||quotemark||', 'well', '||comma||', 'i', 'got', 'a', 'little', 'prize', 'for', 'ya', '||comma||', 'buddy', '||dash||', '||quotemark||', '||leftparen||', 'kramer', 'throws', 'two', 'quick', 'punches', 'and', 'a', 'massive', 'uppercut', '||rightparen||', '||dash||', 'knocked', 'him', 'out', 'cold', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'could', 'you', 'do', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'then', 'everybody', 'is', 'screamin', '||comma||', "'", 'because', 'the', 'driver', '||comma||', "he's", 'passed', 'out', 'from', 'all', 'the', 'commotion', '||period||', '||period||', '||period||', 'the', 'bus', 'is', 'out', 'of', 'control', '||exclammark||', 'so', '||comma||', 'i', 'grab', 'him', 'by', 'the', 'collar', '||comma||', 'i', 'take', 'him', 'out', 'of', 'the', 'seat', '||comma||', 'i', 'get', 'behind', 'the', 'wheel', 'and', 'now', "i'm", "drivin'", 'the', 'bus', '||period||', '||return||', '||return||', 'george:', "you're", 'batman', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'yeah', '||comma||', 'i', 'am', 'batman', '||period||', 'then', 'the', 'mugger', '||comma||', 'he', 'comes', 'to', '||comma||', 'and', 'he', 'starts', "chokin'", 'me', '||exclammark||', 'so', "i'm", "fightin'", 'him', 'off', 'with', 'one', 'hand', 'and', 'i', 'kept', "drivin'", 'the', 'bus', 'with', 'the', 'other', '||comma||', "y'know", '||questionmark||', 'then', 'i', 'managed', 'to', 'open', 'up', 'the', 'door', '||comma||', 'and', 'i', 'kicked', 'him', 'out', 'the', 'door', 'you', 'know', 'with', 'my', 'foot', '||comma||', 'you', 'know', '||dash||', 'at', 'the', 'next', 'stop', '||period||', '||return||', '||return||', 'jerry:', 'you', 'kept', "makin'", 'all', 'the', 'stops', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'people', 'kept', "ringin'", 'the', 'bell', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'wha', '||dash||', 'what', 'about', 'the', 'toe', '||questionmark||', 'what', 'happened', 'to', 'the', 'toe', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||exclammark||', 'i', 'am', 'happy', 'to', 'say', 'that', 'the', 'little', 'guy', 'is', 'back', 'in', 'place', 'at', 'the', 'end', 'of', 'the', 'line', '||period||', '||return||', '||return||', 'george:', 'you', 'did', 'all', 'this', '||period||', '||period||', '||period||', 'for', 'a', 'pinky', 'toe', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'a', 'valuable', 'appendage', '||period||', '||return||', '||return||', 'joanne:', 'so', '||comma||', 'kramer', 'found', 'the', 'toe', '||comma||', 'and', 'they', 're', '||dash||', 'attached', 'it', '||period||', '||return||', '||return||', 'elaine:', 'really', '||period||', '||return||', '||return||', 'joanne:', 'yea', '||comma||', 'poor', 'kid', '||period||', 'what', 'an', 'ordeal', '||period||', '||return||', '||return||', 'michael:', 'and', 'you', 'know', 'how', 'extremely', 'sensitive', 'she', 'is', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'michael:', "she's", 'gonna', 'need', 'our', 'full', 'support', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'wearily', '||rightparen||', ':', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'other', 'co', '||dash||', 'workers', 'in', 'hallway:', 'look', "who's", 'here', '||exclammark||', 'toby', '||exclammark||', '||leftparen||', 'toby', 'enters', 'on', 'crutches', '||period||', '||rightparen||', '||return||', '||return||', 'michael:', 'toby', '||comma||', 'what', 'can', 'i', 'do', '||questionmark||', 'can', 'i', 'get', 'you', 'something', '||questionmark||', '||return||', '||return||', 'toby:', 'oh', 'no', '||comma||', 'no', 'thank', 'you', '||period||', '||return||', '||return||', 'michael:', 'toby', 'please', 'let', 'us', 'help', '||period||', "we're", 'family', '||period||', '||return||', '||return||', 'toby:', 'oh', 'well', '||comma||', 'i', 'could', 'use', 'some', 'coffee', '||period||', '||return||', '||return||', 'jerry:', 'she', 'got', 'the', 'promotion', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'standing', 'in', 'the', 'doorway', '||rightparen||', ':', 'yep', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'tell', 'ya', 'why', '||period||', 'because', 'of', 'her', 'pinky', 'toe', '||comma||', "that's", 'why', '||period||', 'because', 'lippman', 'felt', 'so', 'sorry', 'for', 'her', '||comma||', 'he', "didn't", 'want', 'to', 'hurt', 'her', 'feelings', '||period||', '||return||', '||return||', 'jerry:', 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'sure', '||comma||', 'the', 'pinky', 'toe', 'is', 'cute', '||exclammark||', 'but', '||comma||', 'i', 'mean', '||comma||', 'what', 'is', 'it', '||questionmark||', "it's", 'useless', '||exclammark||', 'it', 'does', 'nothing', '||period||', "it's", 'got', 'that', 'little', 'nail', 'that', 'is', 'just', 'impossible', 'to', 'cut', '||period||', 'what', 'do', 'we', 'need', 'it', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'elaine', '||comma||', "that's", 'the', 'one', 'that', 'goes', "'wee", '||dash||', 'wee', '||dash||', 'wee', 'all', 'the', 'home', '||period||', "'", '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'just', 'shut', 'the', 'f', '||dash||', '||return||', '||return||', 'kramer', '||leftparen||', 'from', 'his', 'doorway', '||rightparen||', ':', 'hey', 'elaine', '||comma||', 'did', 'you', 'hear', 'the', 'good', 'news', '||questionmark||', 'toby', 'got', 'promoted', '||exclammark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'i', 'heard', '||comma||', 'kramer', '||dash||', 'i', 'work', 'there', '||comma||', 'remember', '||questionmark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', 'you', 'know', 'what', 'she', 'told', 'me', '||questionmark||', 'she', 'said', 'her', 'first', 'order', 'of', 'business', 'is', 'to', 'put', 'my', 'coffee', 'table', 'book', 'into', 'the', 'bookstores', 'as', 'soon', 'as', 'possible', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'wonderful', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'throughout', 'this', 'whole', 'thing', '||comma||', 'she', 'always', 'kept', 'a', 'smile', 'on', 'her', 'face', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'of', 'course', '||exclammark||', "she's", 'deranged', '||period||', '||return||', '||return||', 'jerry:', 'i', 'went', 'down', 'to', 'the', 'magazine', '||comma||', 'i', 'pleaded', 'with', 'him', 'to', 'come', 'and', 'see', 'me', 'again', '||comma||', 'finally', 'he', 'agreed', 'to', 'come', 'down', 'tonight', '||comma||', 'and', "he's", 'going', 'to', 'write', 'another', 'article', '||period||', '||return||', '||return||', 'ronnie:', 'i', 'heard', 'you', 'went', 'down', 'to', "somebody's", 'office', 'and', 'heckled', 'them', '||questionmark||', '||return||', '||return||', 'jerry:', 'damn', 'right', '||exclammark||', "we've", 'been', 'lapdogs', 'long', 'enough', '||exclammark||', '||return||', '||return||', 'ronnie:', 'how', 'could', 'you', 'do', 'that', '||questionmark||', 'i', 'mean', '||comma||', "everybody's", 'talking', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'well', '||comma||', "it's", 'about', 'time', 'one', 'of', 'us', 'drew', 'a', 'line', 'in', 'the', 'sand', '||period||', '||return||', '||return||', 'ronnie:', 'jerry', '||comma||', "you're", 'like', 'rosa', 'parks', '||period||', 'you', 'opened', 'the', 'door', 'for', 'all', 'of', 'us', '||period||', 'i', "can't", 'wait', 'till', 'the', 'next', 'time', 'someone', 'heckles', 'me', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'it', "won't", 'be', 'long', '||period||', '||return||', '||return||', 'announcer:', 'ladies', 'and', 'gentlemen', '||comma||', 'please', 'welcome', 'jerry', 'seinfeld', '||exclammark||', '||return||', '||return||', 'jerry:', 'gotta', 'go', '||period||', '||leftparen||', 'heads', 'out', 'on', 'stage', '||rightparen||', '||return||', '||return||', 'george:', 'robin', '||questionmark||', 'robin', '||exclammark||', '||return||', '||return||', 'robin:', 'george', '||comma||', 'what', 'is', 'it', '||questionmark||', "i'm", 'working', '||period||', '||return||', '||return||', 'george:', 'robin', '||comma||', 'listen', 'to', 'me', '||period||', 'the', 'most', 'amazing', 'thing', 'has', 'happened', '||period||', 'kramer', 'has', 'opened', 'my', 'eyes', '||period||', 'i', 'think', "i've", 'changed', '||period||', '||return||', '||return||', 'robin:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'o', '||period||', 'k', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'is', 'about', 'to', 'explain', '||period||', 'cut', 'to', 'jerry', 'on', '||dash||', 'stage', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'bozo', 'the', 'clown', '||period||', '||period||', '||period||', 'i', 'mean', 'does', 'he', 'really', 'need', '||quotemark||', 'the', 'clown', '||quotemark||', 'in', 'his', 'title', '||comma||', 'as', 'clown', '||questionmark||', 'bozo', '||comma||', '||quotemark||', 'the', '||quotemark||', 'clown', '||questionmark||', 'are', 'we', 'going', 'to', 'confuse', 'him', 'with', 'bozo', 'the', 'district', 'attorney', '||questionmark||', 'bozo', 'the', 'pope', '||questionmark||', "there's", 'no', 'other', 'bozo', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', "you'll", 'see', '||comma||', 'things', 'will', 'be', 'different', 'now', '||dash||', 'if', 'you', 'just', 'give', 'me', 'one', 'more', 'chance', '||period||', '||return||', '||return||', 'robin:', 'l', '||dash||', 'listen', '||comma||', 'listen', '||period||', '||period||', '||period||', 'i', 'gotta', 'think', 'about', 'this', '||period||', '||leftparen||', 'walks', 'away', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'but', "i'm", 'serious', 'about', 'this', '||period||', '||return||', '||return||', 'ronnie', '||leftparen||', 'points', 'his', 'water', 'gun', 'at', 'the', 'bartender', '||rightparen||', ':', 'alright', '||comma||', 'hand', 'it', 'over', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', "that's", 'why', 'men', 'hunt', 'and', 'women', 'nest', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'from', 'backstage', '||rightparen||', ':', "he's", 'got', 'a', 'gun', '||exclammark||', "he's", 'got', 'a', 'gun', '||exclammark||', 'get', 'out', 'of', 'the', 'way', '||exclammark||', '||leftparen||', 'tries', 'to', 'flee', 'the', 'bar', 'in', 'a', 'mad', 'panic', '||period||', 'the', 'audience', 'in', 'the', 'club', 'also', 'goes', 'nuts', 'and', 'heads', 'for', 'the', 'exits', '||period||', 'jerry', 'stands', 'onstage', '||comma||', 'perplexed', '||period||', '||rightparen||', '||return||', '||return||', 'robin:', 'george', '||exclammark||', 'this', 'is', 'ronnie', 'kaye', '||exclammark||', '||return||', '||return||', 'george:', 'the', 'prop', 'comic', '||questionmark||', '||leftparen||', 'ronnie', 'holds', 'up', 'his', 'water', 'gun', 'and', 'smiles', '||period||', '||rightparen||', 'oh', '||comma||', 'hi', '||period||', '||period||', '||period||', 'i', "didn't", 'recognize', 'you', '||comma||', 'what', '||period||', '||period||', '||period||', 'did', 'you', 'get', 'a', 'haircut', '||questionmark||', '||return||', '||return||', 'ronnie', '||leftparen||', 'points', 'to', 'his', 'nose', '||rightparen||', ':', 'nostrils', '||period||', '||return||', '||return||', 'jerry:', 'george', '||dash||', 'could', 'i', 'have', 'a', 'word', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'get', 'off', 'at', 'the', 'next', 'exit', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "i've", 'driven', 'to', 'east', 'hampton', 'many', 'times', '||comma||', 'i', 'know', 'the', 'exit', '||period||', '||return||', '||return||', 'kramer:', "it's", 'a', 'great', 'house', '||comma||', 'pool', '||comma||', 'sun', 'deck', '||questionmark||', 'yeah', '||comma||', "i'll", 'be', 'there', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'sure', "we're", "makin'", 'the', 'right', 'move', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'gotta', 'see', 'the', 'new', 'baby', 'anyway', '||comma||', 'at', 'least', "we'll", 'get', 'a', 'weekend', 'in', 'the', 'hamptons', 'out', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'they', 'just', 'have', 'a', 'baby', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'was', 'two', 'years', 'ago', '||comma||', 'remember', '||questionmark||', "'jeh", '||dash||', 'ree', '||comma||', 'you', 'gotta', 'see', 'the', 'bay', '||dash||', 'bee', '||exclammark||', 'you', 'gotta', 'see', 'the', 'bay', '||dash||', 'bee', '||exclammark||', "'", '||return||', '||return||', 'jerry:', 'is', 'it', 'possible', "they're", 'just', 'having', 'babies', 'to', 'get', 'people', 'to', 'visit', 'them', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||comma||', 'you', 'ever', 'wear', 'silk', 'underwear', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'put', 'that', 'on', 'the', 'top', 'of', 'your', 'list', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'not', 'for', 'me', '||period||', 'a', 'little', 'too', 'delightful', '||period||', 'well', '||comma||', 'george', 'and', 'jane', 'should', 'be', 'almost', 'there', 'by', 'now', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "isn't", 'that', 'weird', 'that', 'george', 'and', 'jane', "haven't", 'had', 'sex', 'yet', '||comma||', 'but', "they're", 'spending', 'a', 'weekend', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'george', 'is', 'pretty', 'pleased', 'about', 'it', '||period||', "it's", 'like', 'she', 'signed', 'a', 'letter', 'of', 'intent', '||period||', '||return||', '||return||', 'elaine:', "when's", 'rachel', "comin'", 'out', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", "makin'", 'the', 'three', "o'clock", 'train', '||period||', '||return||', '||return||', 'elaine:', 'her', 'father', 'is', 'so', 'religious', '||comma||', "i'm", 'just', 'amazed', 'that', "he's", 'letting', 'you', 'see', 'her', 'again', 'after', 'that', "schindler's", 'list', 'make', '||dash||', 'out', 'session', '||period||', '||return||', '||return||', 'jerry:', 'i', 'bought', 'him', 'some', 'kishka', '||period||', '||return||', '||return||', 'kramer:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'kind', 'of', 'a', 'stuffed', 'meat', 'thing', '||period||', 'israeli', 'soldiers', 'carry', 'it', '||period||', 'in', 'case', "they're", 'captured', 'behind', 'enemy', 'lines', '||comma||', 'they', 'eat', 'it', 'and', 'it', 'kills', 'them', '||period||', '||return||', '||return||', 'george:', 'i', 'never', 'tasted', 'a', 'cough', 'medicine', 'i', "didn't", 'love', '||period||', '||return||', '||return||', 'jane:', 'me', 'too', '||period||', 'i', 'love', 'cough', 'medicine', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||questionmark||', 'we', 'were', 'made', 'for', 'each', 'other', '||period||', '||leftparen||', 'thinking', 'to', 'himself', '||rightparen||', "it's", 'amazing', '||period||', 'if', 'i', 'reach', 'out', 'and', 'touch', 'her', 'breast', 'right', 'not', '||comma||', "she'd", 'scream', 'and', 'throw', 'me', 'out', 'of', 'the', 'car', '||period||', 'but', 'at', 'this', 'time', 'tomorrow', '||comma||', 'i', 'could', 'touch', 'it', 'all', 'i', 'want', '||period||', '||return||', '||return||', 'jane:', "what's", 'your', 'favorite', '||questionmark||', '||return||', '||return||', 'george:', 'potussan', '||period||', 'ever', 'try', 'it', 'with', 'club', 'soda', '||questionmark||', '||return||', '||return||', 'jane:', 'no', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'very', 'refreshing', '||period||', '||leftparen||', 'thinking', 'again', '||rightparen||', 'sex', 'is', 'like', 'joining', 'a', 'private', 'club', '||period||', "i'll", 'be', 'the', 'same', 'me', 'tomorrow', '||comma||', 'but', 'suddenly', '||comma||', 'the', 'no', 'trespassing', 'sign', 'will', 'be', 'gone', '||period||', '||return||', '||return||', 'jane:', 'are', 'we', 'almost', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'about', 'ten', '||comma||', 'fifteen', 'minutes', '||period||', 'but', 'i', 'have', 'to', 'stop', 'at', 'a', 'vegetable', 'stand', '||period||', '||return||', '||return||', 'jane:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'mother', 'loves', 'hampton', 'tomatoes', '||period||', "she's", 'nuts', 'for', 'hampton', 'tomatoes', '||period||', '||return||', '||return||', 'jane:', 'can', 'you', 'buy', "'em", 'later', '||questionmark||', 'i', 'really', 'wanna', 'get', 'some', '||period||', '||period||', '||period||', 'sun', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||period||', 'rub', 'some', 'lotion', 'on', 'my', 'back', '||period||', '||return||', '||return||', 'jerry:', 'who', 'are', 'you', '||comma||', 'mrs', '||period||', 'robinson', '||questionmark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', "i'll", 'rub', 'some', 'on', 'yours', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "that's", 'no', "sweet'ning", 'the', 'deal', '||period||', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jane', '||rightparen||', 'you', 'know', '||comma||', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'i', 'once', 'found', 'a', 'dollar', 'and', 'fifty', 'cents', 'in', 'change', 'on', 'the', 'bottom', 'of', 'the', 'pool', '||period||', '||return||', '||return||', 'jane:', '||leftparen||', 'no', 'feeling', 'in', 'her', 'voice', '||rightparen||', 'you', "must've", 'been', 'excited', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hey', '||comma||', 'you', 'know', '||comma||', 'i', 'gotta', 'go', 'get', 'these', 'tomatoes', '||period||', 'you', 'wanna', 'go', 'for', 'a', 'ride', '||questionmark||', '||return||', '||return||', 'jane:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'george:', "'kay", '||period||', "i'll", 'uh', '||comma||', "i'll", 'see', 'you', 'later', '||period||', 'anybody', 'want', 'some', 'tomatoes', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'thanks', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||leftparen||', 'george', 'leaves', 'for', 'the', 'tomatoes', '||rightparen||', '||return||', '||return||', 'jane:', "i'm", 'gonna', 'take', 'a', 'dip', '||period||', '||leftparen||', 'she', 'leaves', 'for', 'beach', '||comma||', 'elaine', 'enters', 'with', 'a', 'shady', 'hat', 'on', '||rightparen||', '||return||', '||return||', 'jerry:', 'and', 'then', "there's", 'maude', '||period||', '||leftparen||', 'she', 'sits', 'down', 'next', 'to', 'jerry', '||rightparen||', '||return||', '||return||', 'elaine:', 'look', 'at', 'my', 'face', '||comma||', 'look', 'at', 'it', '||period||', 'you', 'see', 'any', 'lines', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'lines', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'why', '||questionmark||', 'one', 'word', 'shade', '||period||', '||return||', '||return||', 'jerry:', 'so', 'when', 'are', 'we', 'gonna', 'see', 'this', 'baby', '||questionmark||', 'when', 'is', 'the', 'momentous', 'event', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', "they're", "takin'", 'a', 'nap', 'or', 'something', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'gonna', 'go', 'see', 'if', 'there', 'are', 'any', 'girls', 'on', 'the', 'beach', '||period||', 'elaine', '||comma||', 'you', 'wanna', 'come', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastic', '||rightparen||', 'no', 'thanks', '||period||', 'i', 'got', 'plenty', 'of', 'girlfriends', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'toward', 'beach', '||rightparen||', 'oh', 'this', 'is', 'interesting', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "jane's", 'topless', '||period||', '||leftparen||', 'they', 'all', 'look', '||rightparen||', '||return||', '||return||', 'kramer:', 'yo', 'yo', 'ma', '||period||', '||return||', '||return||', 'jerry:', 'boutros', 'boutros', '||dash||', 'ghali', '||period||', '||return||', '||return||', 'elaine:', 'nice', 'rack', '||period||', '||leftparen||', 'carol', 'and', 'michael', 'inside', 'open', 'back', 'door', '||rightparen||', '||return||', '||return||', 'carol:', 'come', 'on', '||comma||', 'you', 'guys', '||period||', 'you', 'can', 'come', 'and', 'see', 'the', 'bay', '||dash||', 'bee', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'in', 'a', 'minute', '||comma||', 'carol', '||period||', '||return||', '||return||', 'kramer:', "we're", 'gonna', 'be', 'right', 'there', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'weird', 'wild', 'stuff', '||period||', 'george', "hasn't", 'even', 'seen', 'her', 'yet', '||period||', '||return||', '||return||', 'elaine:', 'why', 'do', 'you', 'think', "we're", 'getting', 'the', 'sneak', 'preview', '||questionmark||', '||return||', '||return||', 'kramer:', 'maybe', "she's", 'trying', 'to', 'create', 'a', 'buzz', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'get', 'some', 'good', 'word', 'of', 'mouth', "goin'", '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'here', 'she', 'comes', '||period||', '||leftparen||', 'they', 'pretend', 'to', 'not', 'have', 'watched', 'as', 'jane', 'enters', '||rightparen||', '||return||', '||return||', 'jane:', "i'm", 'thirsty', '||period||', 'anyone', 'want', 'a', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'thanks', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'good', '||period||', '||return||', '||return||', 'kramer:', 'deh', '||dash||', 'deh', '||dash||', 'deh', '||dash||', 'deh', '||dash||', '||leftparen||', 'jane', 'exits', '||rightparen||', 'all', 'right', '||comma||', "show's", 'over', '||period||', "i'm", "goin'", 'to', 'the', 'beach', '||period||', '||return||', '||return||', 'carol:', 'adam', '||leftparen||', 'the', "baby's", 'name', '||rightparen||', '||comma||', 'jerry', 'and', 'elaine', 'are', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'a', 'cute', 'little', 'shnugly', 'baby', '||period||', '||return||', '||return||', 'carol:', "isn't", 'he', 'gorgeous', '||questionmark||', '||leftparen||', 'elaine', 'looks', 'at', 'baby', '||comma||', 'only', 'to', 'be', 'frightened', 'and', 'turn', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'ugghh', '||period||', '||return||', '||return||', 'carol:', 'is', 'she', 'gorgeous', '||questionmark||', '||leftparen||', 'elaine', 'and', 'jerry', 'looking', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'gorgeous', '||comma||', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'so', 'very', 'gorgeous', '||period||', '||return||', '||return||', 'carol:', 'michael', '||comma||', 'shut', 'the', 'door', '||exclammark||', "you're", 'letting', 'bugs', 'in', '||period||', '||return||', '||return||', 'jerry:', 'is', 'it', 'me', 'or', 'was', 'that', 'the', 'ugliest', 'baby', 'you', 'have', 'ever', 'seen', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'i', "couldn't", 'look', '||period||', 'it', 'was', 'like', 'the', 'pekinese', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'a', 'little', 'too', 'much', 'chlorine', 'in', 'that', 'gene', 'pool', '||period||', '||leftparen||', 'they', 'sit', '||rightparen||', 'and', '||comma||', 'you', 'know', '||comma||', 'the', 'thing', 'is', '||comma||', "they're", 'never', 'gonna', 'know', '||comma||', 'no', "one's", 'ever', 'gonna', 'tell', 'them', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'have', 'to', 'lie', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'must', 'lie', 'situation', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "it's", 'a', 'must', 'lie', 'situation', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', "don't", 'think', 'we', 'should', 'tell', 'george', 'we', 'saw', 'jane', 'topless', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'in', 'fact', 'remind', 'me', 'to', 'tell', 'kramer', 'too', '||period||', '||return||', '||return||', 'kramer:', 'oooh', '||comma||', 'lobsters', '||period||', '||return||', '||return||', 'ben:', 'oh', 'this', 'ointment', 'should', 'do', 'it', '||period||', '||return||', '||return||', 'carol:', 'how', 'are', 'you', 'feeling', '||comma||', 'adam', '||questionmark||', '||leftparen||', 'she', 'sees', 'elaine', 'in', 'the', 'hall', '||rightparen||', 'elaine', '||exclammark||', '||leftparen||', 'elaine', 'enters', '||rightparen||', 'this', 'is', 'our', 'pediatrician', '||comma||', 'ben', 'feffa', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'carol:', 'look', 'at', 'him', '||comma||', 'elaine', '||period||', 'how', 'gorgeous', 'is', 'he', '||questionmark||', 'i', 'ask', 'you', '||comma||', 'how', 'gorgeous', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'at', 'ben', '||rightparen||', 'pretty', 'gorgeous', '||period||', '||return||', '||return||', 'ben:', 'elaine', '||comma||', 'you', 'have', 'children', '||questionmark||', '||return||', '||return||', 'elaine:', 'me', '||questionmark||', 'oh', 'no', '||comma||', 'but', "i'd", 'love', 'to', 'have', 'a', 'baby', '||comma||', 'i', 'mean', '||comma||', 'i', "can't", 'wait', 'to', 'have', 'a', 'baby', '||period||', "i'm", 'just', "dyin'", 'to', 'have', 'a', 'baby', '||period||', '||return||', '||return||', 'ben:', 'a', 'beautiful', 'woman', 'like', 'you', 'should', '||period||', "you're", 'quite', 'breathtaking', '||period||', '||return||', '||return||', 'elaine:', 'breathtaking', '||questionmark||', "i'm", 'breathtaking', '||questionmark||', '||return||', '||return||', 'carol:', 'and', "he's", 'very', 'particular', '||period||', 'ben', '||comma||', "you're", 'staying', 'tonight', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'ben:', 'uh', '||comma||', 'sure', '||period||', '||leftparen||', 'elaine', 'celebrates', 'to', 'herself', 'as', 'jerry', 'enters', 'and', 'quickly', 'looks', 'away', 'from', 'the', 'baby', '||rightparen||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "i'm", 'gonna', 'go', 'pick', 'up', 'rachel', 'at', 'the', 'station', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'carol:', 'oh', '||comma||', 'just', 'look', 'at', 'him', '||exclammark||', '||return||', '||return||', 'ben:', 'yeah', '||comma||', 'he', 'really', 'is', 'breathtaking', '||period||', '||leftparen||', 'elaine', 'confused', 'by', 'his', 'comment', '||rightparen||', '||return||', '||return||', 'rachel:', 'train', 'was', 'so', 'crowded', '||period||', 'i', 'had', 'to', 'sit', 'in', 'the', 'seat', 'facing', 'the', 'wrong', 'way', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'i', 'like', 'that', '||period||', "it's", 'like', 'going', 'back', 'in', 'time', '||period||', '||leftparen||', 'george', 'comes', 'outside', '||rightparen||', '||return||', '||return||', 'george:', 'hey', 'rachel', '||exclammark||', '||return||', '||return||', 'rachel:', '||leftparen||', 'quickly', 'gets', 'out', 'of', 'seat', '||rightparen||', 'hi', '||period||', "i'm", 'gonna', 'go', 'in', 'there', 'to', 'change', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'a', 'greeting', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'got', 'greeting', 'problems', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'love', 'hampton', 'tomatoes', '||period||', 'you', 'know', '||comma||', 'you', 'can', 'eat', "'em", 'like', 'apples', '||period||', 'you', 'know', "it's", 'funny', '||comma||', 'the', 'tomato', 'never', 'really', 'took', 'on', 'as', 'a', 'hand', 'fruit', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'the', "tomato's", 'an', 'anomaly', '||period||', 'so', 'successful', 'with', 'the', 'ketchup', 'and', 'the', 'sauce', '||comma||', 'but', 'you', "can't", 'find', 'a', 'good', 'one', '||period||', '||leftparen||', 'kramer', 'enters', 'with', 'a', 'box', 'of', 'lobster', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', 'look', 'at', 'what', 'i', 'got', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'wow', '||comma||', 'the', 'k', '||dash||', 'man', '||exclammark||', '||leftparen||', 'they', 'walk', 'into', 'the', 'kitchen', 'inside', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'got', 'lobster', 'for', 'everybody', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', "they're", 'fresh', '||exclammark||', 'right', 'out', 'of', 'the', 'ocean', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'fantastic', '||period||', 'man', '||comma||', 'what', 'a', 'weekend', '||period||', 'swimming', '||comma||', 'lobster', 'for', 'dinner', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', "it's", 'great', '||period||', 'and', 'i', 'saw', 'jane', 'topless', '||period||', '||leftparen||', 'jerry', 'shows', 'that', "'damn'", 'expression', 'behind', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'saw', 'who', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'saw', 'jane', 'topless', '||period||', 'well', '||comma||', 'we', 'all', 'saw', 'her', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jerry', 'realizes', 'the', 'situation', 'is', 'hopeless', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'you', 'saw', 'jane', 'topless', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'when', 'you', 'went', 'for', 'the', 'tomatoes', 'she', 'lied', 'out', 'topless', '||period||', '||return||', '||return||', 'george:', 'oh', 'you', 'mean', 'face', 'down', 'on', 'her', 'chest', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'face', 'up', 'on', 'her', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'well', "why'd", 'she', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'guess', 'she', 'was', 'hot', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'she', 'just', 'laid', 'there', 'topless', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'she', 'got', 'up', '||comma||', 'she', 'walked', 'around', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'walked', 'around', '||questionmark||', 'and', 'you', 'looked', '||questionmark||', '||return||', '||return||', 'kramer:', 'of', 'course', '||period||', "she's", 'got', 'a', 'great', 'body', '||comma||', 'buddy', '||period||', 'all', 'right', '||comma||', "i'm", 'gonna', 'go', 'upstairs', '||comma||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'that', 'you', 'saw', 'her', 'before', 'me', '||period||', '||return||', '||return||', 'jerry:', 'think', 'of', 'me', 'as', 'a', 'doctor', '||period||', '||leftparen||', 'they', 'go', 'outside', 'again', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'how', 'good', 'a', 'look', 'did', 'you', 'get', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "what'd", 'you', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', 'she', 'was', 'a', 'criminal', 'and', 'you', 'had', 'to', 'describe', 'her', 'to', 'a', 'police', 'sketch', 'artist', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "they'd", 'pick', 'her', 'up', 'in', 'about', 'ten', 'minutes', '||period||', '||return||', '||return||', 'george:', 'great', '||comma||', 'great', '||period||', 'so', 'anytime', 'you', 'want', 'you', 'can', 'just', 'visualize', 'her', 'naked', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'of', 'into', 'the', 'distance', '||rightparen||', 'i', 'guess', "that's", 'true', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'stop', 'it', '||comma||', 'stop', 'it', '||exclammark||', "it's", 'not', 'fair', '||period||', "it's", 'not', 'fair', '||period||', 'i', "don't", 'like', 'this', 'situation', '||comma||', 'jerry', '||period||', 'i', "don't", 'like', 'it', 'one', 'bit', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', 'you', 'wanna', 'see', 'rachel', 'naked', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||exclammark||', 'the', 'punishment', 'should', 'fit', 'the', 'crime', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'see', 'me', 'naked', '||period||', 'i', 'can', 'offer', 'you', 'that', '||period||', '||return||', '||return||', 'george:', "it's", 'like', "i'm", 'neil', 'armstrong', '||period||', 'i', 'turn', 'around', 'for', 'a', 'sip', 'of', 'tang', 'and', 'you', 'jump', 'out', 'first', '||period||', '||return||', '||return||', 'elaine:', 'nobody', 'ever', 'called', 'me', 'breathtaking', 'before', '||period||', '||return||', '||return||', 'jerry:', "i've", 'never', 'been', 'called', 'breathtaking', 'either', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'if', 'he', 'thinks', 'that', 'that', "baby's", 'breathtaking', '||comma||', 'then', "who's", 'not', 'breathtaking', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'he', 'just', 'said', 'it', 'because', 'the', 'mother', 'was', 'in', 'the', 'room', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'right', '||comma||', "that's", 'a', 'possibility', '||period||', 'i', 'have', 'to', 'find', 'out', '||period||', '||return||', '||return||', 'jerry:', 'how', 'are', 'you', 'gonna', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'can', 'be', 'very', 'clever', '||period||', '||return||', '||return||', 'rachel:', "i'm", 'gonna', 'take', 'a', 'swim', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'me', 'too', '||period||', "i'll", 'meet', 'you', 'down', '||period||', '||leftparen||', 'she', 'goes', 'in', 'the', 'hall', 'and', 'sees', 'george', '||rightparen||', 'oh', '||comma||', "don't", 'go', 'in', '||comma||', "rachel's", 'getting', 'undressed', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'okay', '||period||', '||leftparen||', 'starts', 'to', 'walk', 'other', 'way', 'and', 'then', 'walks', 'to', 'their', 'room', 'and', 'goes', 'in', '||rightparen||', '||return||', '||return||', 'rachel:', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sorry', '||period||', '||return||', '||return||', 'rachel:', "don't", 'you', 'knock', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'sorry', '||comma||', 'uh', '||comma||', "it's", 'not', 'like', "i'm", 'gonna', 'see', 'something', "i've", 'never', 'seen', 'before', '||period||', '||return||', '||return||', 'jerry:', 'you', 'might', 'have', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", '||period||', '||return||', '||return||', 'jerry:', 'you', "won't", '||period||', '||return||', '||return||', 'rachel:', "what'd", 'you', 'want', 'anyway', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'george', '||period||', "i'm", 'kind', 'of', 'wondering', 'myself', '||period||', 'what', 'is', 'it', 'what', 'you', 'want', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'was', 'just', 'wondering', '||period||', '||period||', '||period||', 'if', 'you', 'guys', '||comma||', 'uh', '||comma||', 'had', 'any', 'gum', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'so', 'you', 'were', 'swimming', 'in', 'the', 'pool', '||comma||', 'and', 'you', 'wanted', 'some', 'gum', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'because', 'the', 'water', 'was', 'cold', '||period||', '||period||', '||period||', 'and', 'the', 'chewing', 'warms', 'me', 'up', '||period||', '||return||', '||return||', 'rachel:', 'we', "don't", 'have', 'any', 'gum', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||leftparen||', 'chewing', '||rightparen||', 'thanks', 'anyway', '||period||', '||leftparen||', 'continues', 'to', 'chew', 'as', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'rachel:', 'strange', 'man', '||period||', '||return||', '||return||', 'jerry:', "wait'll", 'you', 'get', 'to', 'know', 'him', '||period||', '||return||', '||return||', 'rachel:', 'so', 'where', 'is', 'this', 'baby', '||comma||', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'check', 'it', 'out', '||period||', 'i', 'guarantee', "you've", 'never', 'seen', 'anything', 'quite', 'so', 'objectionable', '||period||', "it's", 'down', 'the', 'hall', '||comma||', 'third', 'door', 'on', 'your', 'left', '||period||', '||leftparen||', 'rachel', 'walks', 'down', 'hall', '||comma||', 'walks', 'in', 'on', 'george', 'changing', 'out', 'of', 'his', 'swimsuit', '||rightparen||', '||return||', '||return||', 'rachel:', '||leftparen||', 'she', 'screams', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', "i'm", 'sorry', '||comma||', 'i', 'thought', 'this', 'was', 'the', "baby's", 'room', '||period||', "i'm", 'really', 'sorry', '||period||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'realizing', 'he', 'was', 'short', 'changed', '||rightparen||', 'i', 'was', 'in', 'the', 'pool', '||exclammark||', 'i', 'was', 'in', 'the', 'pool', '||exclammark||', '||return||', '||return||', 'george:', 'did', 'she', 'do', 'it', 'on', 'purpose', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'my', 'fault', '||comma||', 'i', 'told', 'her', 'the', 'wrong', 'door', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'supposed', 'to', 'see', 'her', '||period||', 'she', "wasn't", 'supposed', 'to', 'see', 'me', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'ordinarily', 'i', "wouldn't", 'mind', '||period||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'just', 'got', 'back', 'from', 'swimming', 'in', 'the', 'pool', '||period||', 'and', 'the', 'water', 'was', 'cold', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'you', 'mean', '||period||', '||period||', '||period||', 'shrinkage', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'significant', 'shrinkage', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'feel', 'you', 'were', 'short', 'changed', '||period||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'i', 'mean', '||comma||', 'if', 'she', 'thinks', "that's", 'me', "she's", 'under', 'a', 'complete', 'misapprehension', '||period||', 'that', 'was', 'not', 'me', '||comma||', 'jerry', '||period||', 'that', 'was', 'not', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'if', 'she', 'discusses', 'it', 'with', 'jane', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "she's", 'not', 'gonna', 'tell', 'jane', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'women', "aren't", 'like', 'us', '||period||', '||return||', '||return||', 'george:', "they're", 'worse', '||exclammark||', "they're", 'much', 'worse', 'than', 'us', '||comma||', 'they', 'talk', 'about', 'everything', '||exclammark||', "couldn't", 'you', 'at', 'least', 'tell', 'her', 'about', 'the', 'shrinkage', 'factor', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'not', 'gonna', 'tell', 'her', 'about', 'your', 'shrinkage', '||period||', 'besides', '||comma||', 'i', 'think', 'women', 'know', 'about', 'shrinkage', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'women', 'know', 'about', 'shrinkage', '||questionmark||', '||return||', '||return||', 'jerry:', "isn't", 'it', 'common', 'knowledge', '||questionmark||', '||return||', '||return||', 'george', '&', 'jerry:', '||leftparen||', 'elaine', 'walking', 'down', 'the', 'hall', 'they', 'notice', 'her', 'and', 'wave', 'her', 'into', 'the', 'room', '||rightparen||', 'elaine', '||exclammark||', 'get', '||exclammark||', '||leftparen||', 'she', 'enters', '||rightparen||', '||return||', '||return||', 'george:', 'do', 'women', 'know', 'about', 'shrinkage', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', '||comma||', 'like', 'laundry', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'like', 'when', 'a', 'man', 'goes', 'swimming', '||period||', '||period||', '||period||', 'afterwards', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'it', 'shrinks', '||questionmark||', '||return||', '||return||', 'jerry:', 'like', 'a', 'frightened', 'turtle', '||exclammark||', '||return||', '||return||', 'elaine:', 'why', 'does', 'it', 'shrink', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'just', 'does', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'how', 'you', 'guys', 'walk', 'around', 'with', 'those', 'things', '||period||', '||return||', '||return||', 'michael:', 'thanks', 'for', 'the', 'lobster', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'rachel', '||comma||', "aren't", 'you', 'gonna', 'have', 'any', '||questionmark||', '||return||', '||return||', 'rachel:', 'oh', '||comma||', 'no', '||comma||', 'i', "can't", '||period||', "i'm", 'kosher', '||comma||', 'we', "don't", 'eat', 'shellfish', '||period||', '||return||', '||return||', 'kramer:', 'you', 'mean', "you've", 'never', 'tasted', 'lobster', '||questionmark||', '||return||', '||return||', 'rachel:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'wow', '||period||', "you're", 'so', 'pious', '||period||', 'i', 'really', 'respect', 'that', '||period||', 'you', 'know', 'when', 'you', 'die', '||comma||', "you're", 'gonna', 'get', 'some', 'special', 'attention', '||period||', '||return||', '||return||', 'carol:', 'oh', '||comma||', 'the', "baby's", 'crying', '||period||', "i'll", 'go', 'get', 'him', '||period||', 'he', 'can', 'sit', 'with', 'us', '||period||', '||return||', '||return||', 'elaine', '&', 'jerry:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', "don't", 'wanna', 'do', 'that', '||period||', "you'll", 'be', 'uncomfortable', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'finish', 'eating', '||period||', 'the', "baby's", 'not', 'gonna', 'have', 'any', 'fun', 'over', 'here', '||period||', "we're", '||dash||', "we're", 'not', 'fun', 'for', 'a', 'baby', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'the', "lobster'll", 'scare', 'him', '||period||', '||return||', '||return||', 'carol:', "i'm", 'gonna', 'get', 'him', '||period||', '||return||', '||return||', 'george:', 'see', '||comma||', 'look', 'at', 'this', '||period||', '||leftparen||', 'wearing', 'a', 'very', 'tight', 'shirt', '||rightparen||', 'rachel', '||comma||', 'my', 't', '||dash||', 'shirt', 'shrunk', '||period||', 'it', 'used', 'to', 'be', 'much', 'bigger', '||comma||', 'and', 'now', 'it', 'shrunk', '||period||', 'you', 'see', '||comma||', "that's", 'what', 'water', 'does', '||period||', 'it', 'shrinks', 'things', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'tell', 'us', 'more', '||comma||', 'mr', '||period||', 'science', '||period||', '||leftparen||', 'rachel', 'whispers', 'in', "jane's", 'ear', '||comma||', 'which', 'prompts', 'jane', 'to', 'laugh', '||rightparen||', '||return||', '||return||', 'george:', "what're", 'you', 'doing', '||questionmark||', "what're", 'you', '||comma||', 'telling', 'secrets', '||questionmark||', "what're", 'you', 'laughing', 'at', '||questionmark||', '||return||', '||return||', 'jane:', "it's", 'nothing', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "it's", 'very', 'impolite', 'to', 'tell', 'secrets', '||period||', 'are', 'you', 'talking', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jane:', 'what', 'is', 'it', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'easy', 'big', 'fella', '||period||', '||return||', '||return||', 'michael:', 'so', 'kramer', '||comma||', "where'd", 'you', 'get', 'all', 'these', 'lobster', '||comma||', 'at', 'the', "fleesher's", 'market', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'got', "'em", 'in', 'the', 'ocean', '||period||', '||return||', '||return||', 'michael:', 'the', 'ocean', '||questionmark||', "what'd", 'you', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'found', 'this', 'rope', 'and', 'i', 'kept', 'tugging', 'on', 'it', '||comma||', 'and', 'all', 'these', 'lobsters', 'came', 'up', '||period||', '||return||', '||return||', 'michael:', 'those', 'are', 'commercial', 'lobster', 'traps', '||period||', 'you', "can't", 'take', 'those', 'lobsters', 'from', 'there', '||period||', "that's", 'against', 'the', 'law', '||period||', '||return||', '||return||', 'kramer:', 'take', 'it', 'easy', '||period||', "there's", 'plenty', 'of', 'lobsters', 'in', 'the', 'ocean', 'for', 'everyone', '||period||', '||return||', '||return||', 'michael:', 'my', 'father', 'was', 'a', 'lobsterman', '||period||', 'he', 'got', 'up', 'every', 'morning', 'at', 'four', 'and', 'came', 'home', 'every', 'night', 'stinking', 'of', 'brine', '||exclammark||', 'he', 'sent', 'me', 'through', 'law', 'school', 'with', 'the', 'lobsters', 'he', 'caught', '||exclammark||', '||leftparen||', 'kramer', 'stands', 'up', 'from', 'table', '||rightparen||', '||return||', '||return||', 'carol:', '||leftparen||', 'entering', 'with', 'baby', '||rightparen||', 'here', 'he', 'is', '||period||', '||return||', '||return||', 'kramer:', 'ahhh', '||exclammark||', '||leftparen||', 'shocked', 'after', 'seeing', 'the', 'baby', '||rightparen||', '||return||', '||return||', 'elaine:', 'some', 'night', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'ben:', 'yeah', '||comma||', 'i', 'wish', 'i', 'had', 'my', 'telescope', '||period||', '||return||', '||return||', 'elaine:', 'some', 'dinner', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'ben:', 'nothing', 'like', 'fresh', 'caught', 'lobster', '||period||', '||return||', '||return||', 'elaine:', 'some', 'house', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'ben:', 'it', 'was', 'built', 'by', 'mark', 'fargman', '||period||', 'he', 'build', 'a', 'lot', 'of', 'these', 'homes', 'here', '||period||', '||return||', '||return||', 'elaine:', 'some', 'ugly', 'baby', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'ben:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'improvising', '||rightparen||', 'i', 'said', '||comma||', 'uh', '||comma||', 'some', 'snuggly', 'baby', '||period||', '||return||', '||return||', 'ben:', 'he', 'is', 'something', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'to', 'tell', 'you', 'the', 'truth', '||comma||', 'dr', '||period||', 'feffa', '||comma||', 'i', '||comma||', 'i', 'was', 'surprised', 'to', 'hear', 'you', 'use', 'a', 'word', 'like', 'breathtaking', 'to', 'describe', 'a', 'baby', '||comma||', 'i', 'mean', '||comma||', 'because', 'you', 'also', 'used', 'it', 'referring', 'to', 'me', '||period||', '||return||', '||return||', 'ben:', 'well', '||comma||', 'you', 'know', 'elaine', '||comma||', 'sometimes', 'you', 'say', 'things', 'just', 'to', 'be', 'nice', '||period||', '||leftparen||', 'elaine', 'relieved', '||comma||', 'then', 'confused', '||comma||', 'not', 'knowing', 'if', 'he', 'was', 'being', 'nice', 'to', 'her', 'or', 'to', 'the', 'baby', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'told', 'her', '||questionmark||', '||return||', '||return||', 'rachel:', 'yeah', '||comma||', "what's", 'the', 'big', 'deal', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||period||', 'this', 'organ', '||comma||', "it's", 'very', '||period||', '||period||', '||period||', 'schizophrenic', '||period||', '||return||', '||return||', 'rachel:', 'jerry', '||comma||', 'what', 'the', 'difference', '||questionmark||', 'you', 'know', '||comma||', "you're", 'the', 'ones', 'obsessed', 'with', 'this', 'stuff', '||comma||', 'not', 'us', '||period||', "i'm", 'sure', 'it', "wouldn't", 'matter', 'to', 'jane', '||period||', '||return||', '||return||', 'george:', "you're", 'going', 'back', 'to', 'new', 'york', 'now', '||questionmark||', '||return||', '||return||', 'jane:', 'yeah', '||comma||', 'i', 'have', 'some', 'things', 'to', 'do', '||period||', '||return||', '||return||', 'george:', 'uh', 'huh', '||period||', 'uh', 'huh', '||exclammark||', 'i', 'think', 'you', 'spoke', 'to', 'your', 'little', 'friend', 'rachel', '||comma||', "that's", 'what', 'i', 'think', '||period||', '||return||', '||return||', 'jane:', 'so', 'what', 'if', 'i', 'did', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'she', "didn't", 'say', 'something', 'to', 'you', 'about', 'a', 'certain', 'something', '||questionmark||', '||return||', '||return||', 'jane:', 'i', "don't", 'know', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'george:', '*i*', 'think', 'that', '*you*', 'think', 'that', 'a', 'certain', '*something*', 'is', 'not', 'all', 'that', 'it', 'could', 'be', '||comma||', 'when', 'in', 'fact', 'it', 'is', 'is', 'all', 'that', 'it', '*should*', 'be', '||comma||', 'and', '*more*', '||exclammark||', '||return||', '||return||', 'jane:', '||leftparen||', 'patronizing', 'george', '||rightparen||', "i'm", 'sure', 'it', 'is', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'you', "don't", 'understand', '||period||', 'there', 'was', 'shrinkage', '||period||', '||return||', '||return||', 'kramer:', 'you', 'looking', 'for', 'this', '||questionmark||', '||leftparen||', 'holding', 'up', 'lobster', '||rightparen||', '||return||', '||return||', 'rachel:', 'oh', '||comma||', 'kramer', '||exclammark||', 'you', 'startled', 'me', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'thought', 'you', 'might', 'wind', 'up', 'around', 'here', '||period||', '||return||', '||return||', 'rachel:', 'yeah', '||comma||', 'well', '||comma||', 'i', "couldn't", 'stop', 'thinking', 'about', 'how', 'everyone', 'was', 'enjoying', 'the', 'lobster', 'so', 'much', "an'", 'well', 'i', 'thought', 'i', 'little', 'taste', "wouldn't", 'hurt', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', "i'm", 'afraid', 'i', "couldn't", 'do', 'that', '||period||', '||return||', '||return||', 'rachel:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', "wouldn't", 'be', 'kosher', '||period||', '||return||', '||return||', 'rachel:', "c'mon", '||comma||', 'kramer', '||period||', 'i', 'really', 'want', 'to', 'try', 'it', '||period||', '||return||', '||return||', 'kramer:', 'nah', '||comma||', "i'm", 'sorry', '||comma||', 'honey', '||period||', 'not', 'on', 'my', 'watch', '||period||', '||return||', '||return||', 'rachel:', 'come', 'on', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'heyahhh', '||exclammark||', '||return||', '||return||', 'rachel:', 'i', 'just', 'heard', 'a', 'car', 'drive', 'out', '||period||', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'just', 'jane', 'driving', 'home', 'to', 'new', 'york', 'in', 'the', 'middle', 'of', 'the', 'night', '||period||', '||leftparen||', 'rachel', 'shocked', '||rightparen||', '||return||', '||return||', 'carol:', 'george', '||comma||', 'thanks', 'so', 'much', 'for', 'making', 'breakfast', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'these', 'are', 'the', 'best', 'scrambled', 'eggs', "i've", 'ever', 'tasted', '||period||', '||return||', '||return||', 'kramer:', 'ya', 'i', "didn't", 'know', 'you', 'could', 'cook', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'just', 'expressing', 'my', 'gratitude', 'to', 'our', 'gracious', 'host', '||period||', '||return||', '||return||', 'ben:', 'yes', '||comma||', 'george', '||comma||', 'the', 'whole', 'breakfast', 'is', 'breathtaking', '||period||', '||leftparen||', 'hearing', 'this', 'elaine', 'looks', 'at', 'him', 'extremely', 'annoyed', '||rightparen||', '||return||', '||return||', 'rachel:', 'good', 'morning', '||period||', '||return||', '||return||', 'all:', 'hey', '||comma||', 'hey', '||period||', 'morning', '||return||', '||return||', 'rachel:', 'kramer', '||comma||', 'i', 'just', 'want', 'to', 'thank', 'you', 'again', 'for', 'last', 'night', '||comma||', 'you', 'really', 'saved', 'me', '||period||', '||return||', '||return||', 'michael:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'rachel:', 'well', '||comma||', 'i', 'almost', 'tried', 'the', 'lobster', '||comma||', 'but', 'kramer', 'stopped', 'me', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'knew', "you'd", 'regret', 'it', 'for', 'the', 'rest', 'of', 'your', 'life', '||period||', '||return||', '||return||', 'rachel:', "you're", 'right', '||comma||', 'i', 'would', 'have', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'referring', 'to', 'george', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'this', 'guy', '||period||', '||return||', '||return||', 'george:', 'a', 'little', 'breakfast', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'rachel', '||rightparen||', 'and', '||comma||', 'uh', '||comma||', 'you', 'eat', 'eggs', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'rachel:', 'yes', '||comma||', 'i', 'do', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'geez', '||comma||', 'these', 'are', 'delicious', '||period||', 'where', 'did', 'you', 'learn', 'to', 'make', 'eggs', 'like', 'this', '||questionmark||', '||return||', '||return||', 'rachel:', 'umm', '||period||', '||period||', '||period||', 'this', 'is', 'so', 'good', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'enjoying', 'them', '||questionmark||', '||return||', '||return||', 'rachel:', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'good', '||period||', 'you', 'know', '||comma||', 'you', 'might', 'wanna', 'try', 'eating', 'it', 'with', 'one', 'of', 'these', '||period||', '||leftparen||', 'holds', 'up', 'lobster', 'bib', '||rightparen||', '||return||', '||return||', 'rachel:', "there's", 'lobster', 'in', 'these', 'eggs', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'that', 'much', '||period||', 'you', 'know', '||comma||', 'they', 'tend', 'to', 'shrink', 'in', 'the', 'water', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'guess', 'i', 'gotta', 'go', '||comma||', 'too', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', 'has', 'turned', 'out', 'to', 'be', 'one', '*helluva*', 'weekend', '||period||', '||leftparen||', 'policeman', 'knocks', 'on', 'door', '||comma||', 'michael', 'answers', '||rightparen||', '||return||', '||return||', 'michael:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'police:', "i'm", 'sorry', 'to', 'bother', 'you', '||comma||', 'but', "we're", 'trying', 'to', 'track', 'down', 'a', 'lobster', 'poacher', 'that', 'uh', 'cleaned', 'out', 'on', 'of', 'the', 'traps', '||period||', '||return||', '||return||', 'kramer:', 'wonder', "what's", "goin'", 'on', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'i', 'guess', 'i', 'should', 'go', 'up', 'and', 'apologize', '||period||', '||return||', '||return||', 'michael:', 'there', 'he', 'is', '||comma||', 'officer', '||period||', '||leftparen||', 'michael', 'points', 'to', 'kramer', '||comma||', 'kramer', 'waves', 'to', 'policeman', '||rightparen||', '||return||', '||return||', 'rachel:', 'ahh', '||exclammark||', "don't", 'you', 'ever', 'knock', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'why', 'rachel', 'had', 'to', 'drive', 'back', 'with', 'michael', 'and', 'carol', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'if', 'you', 'saw', 'me', 'naked', '||comma||', 'i', "wouldn't", 'want', 'to', 'ride', 'back', 'in', 'the', 'same', 'car', 'with', 'you', 'either', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "can't", 'believe', 'michael', 'finked', 'on', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'how', 'is', 'he', 'gonna', 'pay', 'off', 'a', 'thousand', 'dollar', 'fine', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'got', 'some', 'sort', 'of', 'program', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "there's", 'a', 'tomato', 'stand', '||comma||', "let's", 'stop', '||comma||', 'i', 'can', 'get', 'some', 'more', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "isn't", 'that', "michael's", 'car', '||questionmark||', '||return||', '||return||', 'elaine:', "there's", 'rachel', '||period||', '||return||', '||return||', 'george:', 'where', '||questionmark||', '||leftparen||', 'he', 'looks', 'out', 'window', 'and', 'gets', 'hit', 'by', 'a', 'tomato', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'to', 'your', 'promotion', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'thank', 'you', '||exclammark||', '||leftparen||', 'they', 'drink', '||rightparen||', 'mmm', '||comma||', 'oh', '||comma||', 'thank', 'you', '||comma||', 'mr', 'lippman', '||comma||', 'i', "can't", 'tell', 'you', 'how', 'much', 'i', 'appreciate', 'this', '||period||', 'i', 'mean', '||comma||', 'of', 'course', 'i', 'deserve', 'it', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'well', '||comma||', "you're", 'really', 'on', 'your', 'way', 'now', '||period||', '||return||', '||return||', 'elaine:', 'you', 'really', 'oughtta', 'do', 'something', 'about', 'that', 'cold', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'raise', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'fool', 'around', '||comma||', '||leftparen||', 'banging', 'on', 'the', 'table', '||rightparen||', 'baby', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'said', 'pendant', 'was', 'in', 'financial', 'trouble', '||period||', '||return||', '||return||', 'elaine:', 'they', 'were', '||comma||', 'but', "they're", 'being', 'absorbed', 'by', 'matsushimi', '||comma||', 'that', 'big', 'japanese', 'conglomerate', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'when', 'did', 'that', 'happen', '||questionmark||', '||return||', '||return||', 'elaine:', "they're", 'signing', 'the', 'papers', 'next', 'week', '||period||', '||return||', '||return||', 'jerry:', 'does', 'this', 'mean', "they're", 'gonna', 'be', 'publishing', "kramer's", 'coffee', 'table', 'book', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "they'll", 'definitely', 'do', 'it', 'now', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "you're", 'on', 'quite', 'a', 'streak', '||period||', 'job', 'promotion', '||comma||', 'plus', "you're", 'back', 'with', 'jake', 'jarmal', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "it's", "gettin'", 'serious', '||comma||', "we're", 'talking', 'about', 'moving', 'in', 'together', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'you', 'really', 'got', 'it', 'all', '||comma||', "i'm", 'sure', 'helen', '||quotemark||', 'girlie', '||quotemark||', 'brown', 'would', 'be', 'very', 'proud', 'of', 'you', '||period||', '||return||', '||return||', 'jerry:', 'speaking', 'of', 'having', 'it', 'all', '||period||', '||period||', '||period||', 'where', 'were', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'went', 'to', 'the', 'beach', '||period||', '||leftparen||', 'jerry', 'and', 'elaine', 'exchange', 'looks', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'beach', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'working', '||comma||', 'jerry', '||period||', "it's", 'just', 'not', 'working', '||period||', '||leftparen||', 'sits', 'down', 'next', 'to', 'elaine', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', 'that', "isn't", 'working', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'did', 'it', 'all', 'turn', 'out', 'like', 'this', 'for', 'me', '||questionmark||', 'i', 'had', 'so', 'much', 'promise', '||period||', 'i', 'was', 'personable', '||comma||', 'i', 'was', 'bright', '||period||', '||leftparen||', 'elaine', 'turns', 'showing', 'disagreement', '||rightparen||', 'oh', '||comma||', 'maybe', 'not', 'academically', 'speaking', '||comma||', '||leftparen||', 'elaine', 'nods', 'correct', '||rightparen||', 'i', 'was', 'perceptive', '||period||', 'i', 'always', 'know', 'when', "someone's", 'uncomfortable', 'at', 'a', 'party', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'to', 'napkins', '||semicolon||', 'to', 'elaine', '||rightparen||', 'could', 'i', 'get', 'napkin', 'over', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'became', 'very', 'clear', 'to', 'me', 'sitting', 'out', 'there', 'today', '||comma||', 'that', 'every', 'decision', "i've", 'ever', 'made', '||comma||', 'in', 'my', 'entire', 'life', '||comma||', 'has', 'been', 'wrong', '||period||', 'my', 'life', 'is', 'the', 'complete', 'opposite', 'of', 'everything', 'i', 'want', 'it', 'to', 'be', '||period||', 'every', 'instinct', 'i', 'have', '||comma||', 'in', 'every', 'of', 'aspect', 'of', 'life', '||comma||', 'be', 'it', 'something', 'to', 'wear', '||comma||', 'something', 'to', 'eat', '||period||', '||period||', '||period||', "it's", 'all', 'been', 'wrong', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'everywhere', '||period||', '||return||', '||return||', 'waitress', ':', 'tuna', 'on', 'toast', '||comma||', 'coleslaw', '||comma||', 'cup', 'of', 'coffee', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'wait', 'a', 'minute', '||comma||', 'i', 'always', 'have', 'tuna', 'on', 'toast', '||period||', "nothing's", 'ever', 'worked', 'out', 'for', 'me', 'with', 'tuna', 'on', 'toast', '||period||', 'i', 'want', 'the', 'complete', 'opposite', 'of', 'on', 'toast', '||period||', 'chicken', 'salad', '||comma||', 'on', 'rye', '||comma||', 'un', '||dash||', 'toasted', 'with', 'a', 'side', 'of', 'potato', 'salad', '||period||', '||period||', '||period||', 'and', 'a', 'cup', 'of', 'tea', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "there's", 'no', 'telling', 'what', 'can', 'happen', 'from', 'this', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'chicken', 'salad', 'is', 'not', 'the', 'opposite', 'of', 'tuna', '||comma||', 'salmon', 'is', 'the', 'opposite', 'of', 'tuna', '||comma||', "'cuz", 'salmon', 'swim', 'against', 'the', 'current', '||comma||', '||leftparen||', 'hand', 'motion', 'of', 'the', 'salmon', 'swimming', 'against', 'the', 'current', '||rightparen||', 'and', 'the', 'tuna', 'swim', 'with', 'it', '||period||', '||leftparen||', 'hand', 'motion', 'of', 'the', 'tuna', 'swimming', 'with', 'it', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', 'good', 'for', 'the', 'tuna', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'george', '||comma||', 'you', 'know', '||comma||', 'that', 'woman', 'just', 'looked', 'at', 'you', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||questionmark||', 'what', 'am', 'i', 'supposed', 'to', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'go', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'bald', 'men', '||comma||', 'with', 'no', 'jobs', '||comma||', 'and', 'no', 'money', '||comma||', 'who', 'live', 'with', 'their', 'parents', '||comma||', "don't", 'approach', 'strange', 'women', '||period||', '||return||', '||return||', 'jerry:', 'well', "here's", 'your', 'chance', 'to', 'try', 'the', 'opposite', '||period||', 'instead', 'of', 'tuna', 'salad', 'and', 'being', 'intimidated', 'by', 'women', '||comma||', 'chicken', 'salad', 'and', 'going', 'right', 'up', 'to', 'them', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'should', 'do', 'the', 'opposite', '||comma||', 'i', 'should', '||period||', '||return||', '||return||', 'jerry:', 'if', 'every', 'instinct', 'you', 'have', 'is', 'wrong', '||comma||', 'then', 'the', 'opposite', 'would', 'have', 'to', 'be', 'right', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'will', 'do', 'the', 'opposite', '||period||', 'i', 'used', 'to', 'sit', 'here', 'and', 'do', 'nothing', '||comma||', 'and', 'regret', 'it', 'for', 'the', 'rest', 'of', 'the', 'day', '||comma||', 'so', 'now', 'i', 'will', 'do', 'the', 'opposite', '||comma||', 'and', 'i', 'will', 'do', 'something', '||exclammark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'uh', 'i', "couldn't", 'help', 'but', 'notice', 'that', 'you', 'were', 'looking', 'in', 'my', 'direction', '||period||', '||return||', '||return||', 'victoria:', 'oh', '||comma||', 'yes', 'i', 'was', '||comma||', 'you', 'just', 'ordered', 'the', 'same', 'exact', 'lunch', 'as', 'me', '||period||', '||return||', '||return||', 'george:', 'my', 'name', 'is', 'george', '||period||', "i'm", 'unemployed', 'and', 'i', 'live', 'with', 'my', 'parents', '||period||', '||return||', '||return||', 'victoria:', "i'm", 'victoria', '||period||', 'hi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'are', 'you', 'kidding', '||questionmark||', 'they', "can't", 'cancel', 'that', 'show', 'on', 'me', 'now', '||comma||', "it's", 'too', 'late', 'for', 'me', 'to', 'book', 'anything', 'else', 'for', 'that', 'weekend', '||period||', 'alright', '||comma||', 'alright', '||period||', '||period||', '||period||', 'okay', '||comma||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'buddy', '||comma||', "it's", 'all', 'happening', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'happening', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'coffee', 'table', 'book', '||period||', "it's", 'a', 'go', '||dash||', 'oo', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'i', 'heard', 'all', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'this', 'means', '||questionmark||', "i'm", 'starting', 'the', 'book', 'tour', '||period||', 'first', 'stop', 'regis', 'and', 'kathy', 'lee', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'on', 'regis', 'and', 'kathy', 'lee', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'better', 'believe', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', "i'll", 'loan', 'you', 'my', 'puffy', 'shirt', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', 'gonna', 'talk', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'coffee', 'tables', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'what', '||questionmark||', 'yeah', '||comma||', 'sure', '||comma||', "i'll", 'do', 'it', '||period||', 'i', 'just', 'had', 'something', 'cancelled', 'the', 'same', 'weekend', '||period||', 'ok', '||period||', 'great', '||period||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||semicolon||', 'turns', 'to', 'kramer', '||rightparen||', 'you', 'know', '||comma||', 'life', 'is', 'amazing', '||period||', 'i', 'just', 'lost', 'a', 'job', 'and', 'five', 'minutes', 'later', 'get', 'another', '||comma||', 'same', 'weekend', '||comma||', 'same', 'money', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'who', 'you', 'are', '||questionmark||', 'even', 'steven', '||return||', '||return||', 'victoria:', 'are', 'you', 'growing', 'a', 'beard', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'shave', 'every', 'day', '||questionmark||', 'it', 'just', 'grows', 'right', 'back', '||period||', '||return||', '||return||', 'victoria:', 'i', 'guess', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "i'm", 'afraid', "i'm", 'just', 'not', 'interested', 'in', 'how', 'i', 'present', 'myself', '||period||', 'if', 'those', 'kind', 'of', 'superficialities', 'are', 'important', 'to', 'you', '||comma||', 'this', 'probably', "isn't", 'gonna', 'work', '||period||', '||return||', '||return||', 'victoria:', 'hey', 'watch', '||comma||', 'he', 'just', 'cut', 'you', 'off', '||exclammark||', 'did', 'you', 'see', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'take', 'it', 'easy', '||period||', 'take', 'it', 'easy', '||period||', "it's", 'not', 'the', 'end', 'of', 'the', 'world', '||period||', '||return||', '||return||', 'man', '#1', ':', 'hey', 'baby', '||comma||', 'how', 'about', 'a', 'little', 'tongue', 'action', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'man', '#2', ':', 'yeah', '||comma||', 'stick', 'your', 'tongue', 'down', 'his', 'throat', '||exclammark||', '||return||', '||return||', 'victoria:', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', 'should', 'we', 'just', 'move', '||questionmark||', '||return||', '||return||', 'george:', 'that', "won't", 'be', 'necessary', '||period||', '||return||', '||return||', 'george:', 'shut', 'your', 'traps', 'and', 'stop', 'kicking', 'the', 'seats', '||exclammark||', "we're", 'trying', 'to', 'watch', 'the', 'movie', '||exclammark||', 'and', 'if', 'i', 'have', 'to', 'tell', 'you', 'again', '||comma||', "we're", 'gonna', 'take', 'it', 'outside', 'and', "i'm", 'gonna', 'show', 'you', 'what', "it's", 'like', '||exclammark||', 'you', 'understand', 'me', '||questionmark||', 'now', '||comma||', 'shut', 'your', 'mouths', 'or', "i'll", 'shut', "'em", 'for', 'ya', '||comma||', 'and', 'if', 'you', 'think', "i'm", 'kidding', '||comma||', 'just', 'try', 'me', '||period||', 'try', 'me', '||period||', 'because', 'i', 'would', 'love', 'it', '||exclammark||', '||return||', '||return||', 'victoria:', 'are', 'you', 'sure', 'you', "don't", 'wanna', 'come', 'up', '||comma||', 'i', 'mean', '||comma||', "it's", 'only', 'nine', 'thirty', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'we', 'should', '||period||', 'we', 'really', "don't", 'know', 'each', 'other', 'very', 'well', '||period||', '||return||', '||return||', 'victoria:', 'who', 'are', 'you', '||comma||', 'george', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'the', 'opposite', 'of', 'every', 'guy', "you've", 'ever', 'met', '||period||', '||return||', '||return||', 'theater', 'manager:', 'excuse', 'me', '||comma||', 'is', 'your', 'name', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'theater', 'manager:', 'were', 'you', 'suposed', 'to', 'meet', 'a', 'jake', 'jarmal', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'theater', 'manager:', 'well', '||comma||', "i'm", 'afraid', "he's", 'been', 'in', 'an', 'accident', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasp', '||rightparen||', 'an', 'accident', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'theater', 'manager:', 'well', '||dash||', 'he', 'got', 'side', '||dash||', 'swiped', 'by', 'a', 'cab', '||comma||', 'but', "he's", 'alright', '||period||', "he's", 'in', 'st', '||period||', 'vincent', 'hospital', '||comma||', 'room', '907', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'ok', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', 'could', 'i', 'have', 'a', 'box', 'of', 'jujyfruits', '||questionmark||', '||return||', '||return||', 'counterperson:', '||leftparen||', 'handing', 'the', 'jujyfruits', 'to', 'elaine', '||rightparen||', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'jake:', 'so', '||comma||', 'then', '||comma||', 'you', 'know', '||comma||', 'the', 'light', 'was', 'clearly', 'green', '||comma||', 'i', 'started', 'walking', '||comma||', 'he', 'skidded', 'and', 'he', 'went', 'right', 'into', 'my', 'hip', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'with', 'her', 'mouth', 'full', 'of', 'jujyfruit', '||rightparen||', 'oh', '||comma||', 'that', 'is', 'so', 'terrible', '||period||', 'that', 'is', 'so', 'terrible', '||comma||', 'jake', '||period||', 'i', 'mean', '||comma||', 'how', 'can', 'people', 'be', 'so', 'stupid', '||questionmark||', 'just', 'sickening', '||period||', '||return||', '||return||', 'elaine:', 'you', 'want', 'one', '||questionmark||', '||return||', '||return||', 'jake:', 'no', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'so', 'when', 'do', 'you', 'think', "you're", 'gonna', 'get', 'outta', 'here', '||questionmark||', '||return||', '||return||', 'jake:', 'where', 'did', 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'elaine:', 'at', 'the', 'movies', '||period||', '||return||', '||return||', 'jake:', "didn't", 'the', 'theater', 'manager', 'give', 'you', 'the', 'message', 'before', 'you', 'went', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'he', 'did', '||period||', '||return||', '||return||', 'jake:', 'then', 'when', 'did', 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'elaine:', 'right', 'after', '||period||', '||period||', '||period||', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'so', 'you', 'heard', 'that', 'i', 'was', 'in', 'a', 'car', 'accident', '||comma||', 'and', 'then', 'decided', 'to', 'stop', 'off', 'for', 'some', 'jujyfruit', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', 'the', 'counter', '||period||', '||period||', '||period||', 'was', 'right', 'there', '||comma||', 'and', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'i', 'would', 'think', '||comma||', 'under', 'the', 'circumstances', '||comma||', 'it', 'would', 'have', 'sent', 'you', 'running', 'out', 'the', 'building', '||period||', 'apparently', '||comma||', 'it', "didn't", 'have', 'any', 'effect', 'on', 'you', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'it', 'does', '||exclammark||', '||return||', '||return||', 'jake:', '||leftparen||', 'angry', '||rightparen||', 'if', 'you', 'got', 'into', 'a', 'car', 'accident', '||comma||', 'i', 'can', 'guarantee', 'you', 'i', "wouldn't", 'stop', 'for', 'jujyfruit', '||exclammark||', '||return||', '||return||', 'elaine:', 'but', '||period||', '||period||', '||period||', 'jake', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'i', 'would', 'like', 'to', 'be', 'alone', 'now', '||comma||', 'please', '||period||', '||return||', '||return||', 'elaine:', 'but', '||comma||', 'jake', '||comma||', 'i', "didn't", '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'goodnight', '||exclammark||', '||return||', '||return||', 'poker', 'player', '#1:', 'ah', '||comma||', 'whaddya', 'say', 'we', 'call', 'it', 'a', 'night', '||questionmark||', '||return||', '||return||', 'poker', 'player', '#2:', 'good', 'idea', '||comma||', "i'm", 'kinda', 'tired', '||period||', '||return||', '||return||', 'poker', 'player', '#3:', "how'd", 'you', 'do', '||questionmark||', '||return||', '||return||', 'poker', 'player', '#4:', 'won', '50', '||period||', '||return||', '||return||', 'poker', 'player', '#2:', 'lost', '72', '||period||', '||return||', '||return||', 'poker', 'player', '#1:', 'won', '37', '||period||', '||return||', '||return||', 'poker', 'player', '#3:', 'lost', '15', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', '||rightparen||', 'broke', 'even', '||period||', '||return||', '||return||', 'regis:', 'can', 'i', 'bring', 'out', 'our', 'next', 'guest', 'now', '||questionmark||', '||return||', '||return||', 'kathy', 'lee:', 'please', '||comma||', 'please', '||period||', '||return||', '||return||', 'regis:', 'young', 'guy', '||comma||', "he's", 'got', 'a', 'new', 'book', 'coming', 'out', '||comma||', 'and', "it's", 'about', '||comma||', 'and', 'this', 'is', 'the', 'best', 'part', '||dash||', '||return||', '||return||', 'kathy', 'lee:', 'i', 'love', 'this', '||period||', '||return||', '||return||', 'regis:', "it's", 'a', 'coffee', 'table', 'book', 'about', 'coffee', 'tables', '||exclammark||', '||leftparen||', 'holds', 'the', 'book', 'up', 'for', 'the', 'audience', '||rightparen||', '||return||', '||return||', 'kathy', 'lee:', 'yeah', '||period||', 'is', 'that', 'clever', '||questionmark||', 'i', 'think', 'that', 'is', 'so', 'clever', '||exclammark||', '||return||', '||return||', 'regis:', 'i', 'think', 'so', 'too', '||period||', 'did', 'you', 'get', 'to', 'meet', 'him', 'back', 'stage', '||questionmark||', '||return||', '||return||', 'kathy', 'lee:', 'i', 'did', '||period||', '||return||', '||return||', 'regis:', 'i', 'mean', '||comma||', 'he', 'looks', 'like', 'a', 'fun', 'guy', '||comma||', "doesn't", 'he', '||questionmark||', '||return||', '||return||', 'kathy', 'lee:', 'i', 'love', 'his', 'hair', '||period||', '||return||', '||return||', 'regis:', 'yeah', '||comma||', 'oh', '||comma||', 'i', 'do', 'too', '||period||', 'this', 'guy', 'could', 'be', 'a', 'little', 'bonkos', '||period||', 'really', '||period||', 'anyway', '||comma||', 'if', 'you', 'will', '||comma||', 'would', 'you', 'please', 'welcome', 'kramer', '||exclammark||', '||return||', '||return||', 'regis:', '||leftparen||', 'shaking', "kramer's", 'hand', '||rightparen||', 'hello', '||comma||', 'kramer', 'is', 'here', '||period||', '||return||', '||return||', 'kathy', 'lee:', 'i', "don't", 'know', '||comma||', 'maybe', "it's", 'the', 'hair', 'or', 'something', '||exclammark||', '||return||', '||return||', 'regis:', 'ah', '||comma||', 'well', '||comma||', 'yes', 'kramer', '||period||', 'so', '||comma||', 'a', 'coffee', 'table', 'book', 'about', 'coffee', 'tables', '||period||', 'where', 'did', 'you', 'come', 'up', 'with', 'this', 'idea', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'ah', '||comma||', "i'll", 'tell', 'you', '||comma||', 'uh', 'regis', '||period||', '||period||', '||period||', 'actually', '||comma||', 'this', 'is', 'a', 'true', 'story', '||period||', 'i', 'umm', 'i', 'was', 'skiing', 'at', 'the', 'time', '||period||', '||return||', '||return||', 'regis:', 'you', 'know', '||comma||', 'when', "i'm", 'skiing', '||comma||', 'kramer', '||comma||', "i'm", 'trying', 'not', 'to', 'kill', 'myself', '||comma||', "you're", 'writing', 'books', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'now', 'you', 'kids', "don't", 'go', 'out', 'and', 'try', 'that', '||period||', 'you', 'stay', 'in', 'school', '||exclammark||', '||return||', '||return||', 'kathy', 'lee:', 'have', 'you', 'always', 'had', 'an', 'interest', 'in', 'coffee', 'tables', '||comma||', 'because', '||comma||', 'really', '||comma||', 'i', '||dash||', 'i', 'love', 'coffee', 'tables', '||comma||', 'and', 'i', '||dash||', 'i', 'thought', 'i', 'was', 'the', 'only', 'one', '||period||', '||return||', '||return||', 'kramer:', 'you', 'see', 'the', 'beauty', 'of', 'my', 'book', 'is', '||comma||', 'if', 'you', "don't", 'have', 'a', 'coffee', 'table', '||comma||', 'it', 'turns', 'into', 'a', 'coffee', 'table', '||period||', '||return||', '||return||', 'kathy', 'lee:', 'is', 'that', 'fabulous', '||questionmark||', '||return||', '||return||', 'regis:', 'look', 'at', 'this', '||exclammark||', '||return||', '||return||', 'kathy', 'lee:', 'is', 'that', 'fabulous', '||questionmark||', '||return||', '||return||', 'regis:', 'fabulous', '||exclammark||', '||return||', '||return||', 'kathy', 'lee:', 'i', 'want', 'one', 'of', 'these', '||period||', '||return||', '||return||', 'regis:', 'did', 'i', 'tell', 'you', 'this', 'guy', 'was', 'bonkos', '||questionmark||', '||return||', '||return||', 'kathy', 'lee:', 'this', 'coffee', 'table', '||leftparen||', 'book', '||rightparen||', 'is', 'full', 'of', 'pictures', 'of', "celebrities'", 'coffee', 'tables', '||period||', '||return||', '||return||', 'kramer:', "that's", 'true', '||period||', "that's", 'right', '||period||', '||return||', '||return||', 'regis:', 'yeah', '||questionmark||', 'well', '||comma||', "i'm", 'not', 'in', 'there', '||period||', "where's", 'mine', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'on', 'file', '||comma||', 'right', 'here', '||period||', '||leftparen||', 'points', 'to', 'his', 'head', '||rightparen||', '||return||', '||return||', 'regis:', "i'm", "tellin'", 'ya', '||comma||', 'this', "guy's", 'bonkos', '||exclammark||', 'he', 'really', 'is', '||exclammark||', '||return||', '||return||', 'kathy', 'lee:', 'but', "he's", 'adorable', '||period||', '||return||', '||return||', 'regis:', 'ya', 'he', 'is', '||comma||', "he's", 'a', 'nice', 'looking', 'guy', '||period||', '||return||', '||return||', 'kathy', 'lee:', "it's", 'all', 'over', 'my', 'dress', '||period||', '||return||', '||return||', 'regis:', "we'll", 'be', 'right', 'back', 'in', 'a', 'moment', '||period||', '||return||', '||return||', 'jerry:', 'so', "it's", 'all', 'over', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'it', 'got', 'pretty', 'nasty', '||period||', '||return||', '||return||', 'jerry:', 'and', 'what', 'did', 'you', 'go', 'back', 'for', '||questionmark||', 'jujyfruit', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'not', 'like', 'i', 'went', 'across', 'the', 'street', '||period||', 'i', 'bought', 'the', 'jujyfruit', 'and', 'i', 'got', 'in', 'a', 'cab', '||period||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'eat', 'it', 'in', 'the', 'cab', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'i', 'got', 'popcorn', 'too', '||comma||', 'and', 'i', 'ate', 'that', 'first', '||period||', '||return||', '||return||', 'elaine:', "what's", 'all', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'played', 'cards', 'last', 'night', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||questionmark||', "how'd", 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'broke', 'even', '||period||', '||return||', '||return||', 'elaine:', 'you', 'always', 'break', 'even', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||semicolon||', 'like', 'yesterday', 'i', 'lost', 'a', 'job', '||comma||', 'and', 'then', 'i', 'got', 'another', 'one', '||comma||', 'and', 'then', 'i', 'missed', 'a', 'tv', 'show', '||comma||', 'and', 'later', 'on', 'they', 're', '||dash||', 'ran', 'it', '||period||', 'and', 'then', 'today', 'i', 'missed', 'a', 'train', '||comma||', 'went', 'outside', 'and', 'caught', 'a', 'bus', '||period||', 'it', 'never', 'fails', '||exclammark||', 'i', 'always', 'even', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'have', 'twenty', 'bucks', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'gimme', 'twenty', 'bucks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', '||rightparen||', 'what', 'the', 'hell', 'was', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "let's", 'see', 'if', 'you', 'get', 'the', 'twenty', 'bucks', 'back', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'you', "could've", 'thrown', 'a', 'pencil', 'out', 'the', 'window', 'and', 'seen', 'if', 'that', 'came', 'back', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'things', 'were', 'going', 'so', 'good', 'for', 'me', '||comma||', 'you', 'know', '||comma||', 'i', 'got', 'the', 'job', 'promotion', '||comma||', 'we', 'were', 'talking', 'about', 'moving', 'in', 'together', '||dash||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'next', 'time', "someone's", 'in', 'a', 'car', 'accident', 'you', "won't", 'stop', 'off', 'for', 'candy', 'first', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'just', 'found', 'twenty', 'dollars', '||exclammark||', 'i', 'tell', 'you', 'this', '||comma||', 'something', 'is', 'happening', 'in', 'my', 'life', '||period||', 'i', 'did', 'this', 'opposite', 'thing', 'last', 'night', '||period||', 'up', 'was', 'down', '||comma||', 'black', 'was', 'white', '||comma||', 'good', 'was', '||dash||', '||return||', '||return||', 'jerry:', 'bad', '||period||', '||return||', '||return||', 'george:', 'day', 'was', '||dash||', '||return||', '||return||', 'elaine:', 'night', '||period||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'you', 'just', 'did', 'the', 'opposite', 'of', 'everything', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'and', 'listen', 'to', 'this', '||comma||', 'listen', 'to', 'this', '||semicolon||', 'her', 'uncle', 'works', 'for', 'the', 'yankees', 'and', "he's", 'gonna', 'get', 'me', 'a', 'job', 'interview', '||period||', 'a', 'front', 'office', 'kind', 'of', 'thing', '||period||', 'assistant', 'to', 'the', 'traveling', 'secretary', '||period||', 'a', 'job', 'with', 'the', 'new', 'york', 'yankees', '||exclammark||', 'this', 'has', 'been', 'the', 'dream', 'of', 'my', 'life', 'ever', 'since', 'i', 'was', 'a', 'child', '||comma||', 'and', "it's", 'all', 'happening', 'because', "i'm", 'completely', 'ignoring', 'every', 'urge', 'towards', 'common', 'sense', 'and', 'good', 'judgment', 'i', 'have', 'had', '||period||', 'this', 'is', 'no', 'longer', 'just', 'some', 'crazy', 'notion', '||period||', 'elaine', '||comma||', 'jerry', '||comma||', 'this', 'is', 'my', 'religion', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'guess', 'your', 'messiah', 'would', 'be', 'the', 'anti', '||dash||', 'christ', '||period||', '||return||', '||return||', 'george:', 'yes', 'funny', '||leftparen||', 'laughs', '||semicolon||', 'hand', 'clap', '||rightparen||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||period||', '||period||', 'look', '||exclammark||', 'a', 'twenty', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'wanting', 'to', 'believe', 'it', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'boss', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'kramer', '||period||', 'come', 'in', '||period||', '||return||', '||return||', 'kramer:', "how're", 'you', "doin'", 'there', '||comma||', 'big', 'guy', '||questionmark||', '||leftparen||', 'puts', 'his', 'arm', 'around', 'the', 'tobacco', 'store', 'indian', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'uh', '||comma||', 'ya', '||comma||', 'have', 'a', 'seat', '||period||', '||return||', '||return||', 'kramer:', 'al', '||dash||', 'righty', '||leftparen||', 'sits', 'down', '||rightparen||', 'have', 'you', 'got', 'yourself', 'a', 'cold', '||questionmark||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', "that's", 'quite', 'a', 'honk', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'ya', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'get', 'yourself', 'some', 'vitamin', 'c', 'with', 'rose', 'hips', 'and', 'bioflavenoids', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'the', 'reason', 'i', 'asked', 'you', 'in', 'here', '||comma||', 'is', 'i', '||dash||', 'i', 'caught', 'your', 'appearance', 'on', 'uh', '||quotemark||', 'regis', 'and', 'kathy', 'lee', '||quotemark||', 'the', 'other', 'day', 'and', '||dash||', '||return||', '||return||', 'kramer:', 'ya', 'that', 'was', 'pretty', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'an', '||dash||', 'anyway', '||comma||', 'the', 'thinking', 'here', 'is', 'that', 'it', 'would', 'be', 'best', 'i', '||dash||', 'if', 'you', 'uh', "didn't", 'do', 'any', 'more', 'of', 'these', 'shows', '||period||', '||return||', '||return||', 'kramer:', 'because', 'of', 'the', 'coffee', 'thing', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'kramer', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'kramer:', 'what', 'about', '||quotemark||', 'sonia', 'live', '||quotemark||', '||questionmark||', 'now', "you're", 'not', 'cancelling', '||quotemark||', 'sonia', 'live', '||quotemark||', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', "it's", 'out', '||dash||', '||return||', '||return||', 'kramer:', "she's", 'a', 'doctor', '||comma||', 'i', 'got', 'a', 'thing', 'for', 'her', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'kra', '||dash||', 'kramer', '||comma||', 'i', '||dash||', '||return||', '||return||', 'mr', '||period||', 'cushman:', 'why', "don't", 'you', 'tell', 'me', 'about', 'some', 'of', 'your', 'previous', 'work', 'experience', '||questionmark||', '||return||', '||return||', 'george:', 'alrighty', '||period||', 'ah', '||period||', '||period||', '||period||', 'my', 'last', 'job', 'was', 'in', 'publishing', '||period||', '||period||', '||period||', 'i', 'uh', 'got', 'fired', 'for', 'having', 'sex', 'in', 'my', 'office', 'with', 'the', 'cleaning', 'woman', '||period||', '||return||', '||return||', 'mr', '||period||', 'cushman:', 'go', 'on', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'alright', '||comma||', 'before', 'that', '||comma||', 'i', 'was', 'in', 'real', 'estate', '||period||', 'i', 'quit', '||comma||', 'because', 'the', 'boss', "wouldn't", 'let', 'me', 'use', 'his', 'private', 'bathroom', '||period||', 'that', 'was', 'it', '||period||', '||return||', '||return||', 'mr', '||period||', 'cushman:', 'do', 'you', 'talk', 'to', 'everybody', 'like', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', '||return||', '||return||', 'mr', '||period||', 'cushman:', 'my', 'niece', 'told', 'me', 'you', 'were', 'different', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'different', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'mr', '||period||', 'cushman:', 'i', 'gotta', 'tell', 'ya', '||comma||', 'you', 'are', 'the', 'complete', 'opposite', 'of', 'every', 'applicant', "we've", 'seen', '||period||', '||leftparen||', 'gets', 'out', 'of', 'his', 'chair', '||rightparen||', 'ah', '||comma||', 'mr', '||period||', 'steinbrenner', '||comma||', 'sir', '||period||', "there's", 'someone', 'here', "i'd", 'like', 'you', 'to', 'meet', '||period||', '||leftparen||', 'george', 'gets', 'up', 'and', 'goes', 'over', '||rightparen||', 'this', 'is', 'mr', '||period||', 'costanza', '||period||', "he's", 'one', 'of', 'the', 'applicants', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'wish', 'i', 'could', 'say', 'the', 'same', '||comma||', 'but', 'i', 'must', 'say', '||comma||', 'with', 'all', 'due', 'respect', '||comma||', 'i', 'find', 'it', 'very', 'hard', 'to', 'see', 'the', 'logic', 'behind', 'some', 'of', 'the', 'moves', 'you', 'have', 'made', 'with', 'this', 'fine', 'organization', '||period||', 'in', 'the', 'past', 'twenty', 'years', 'you', 'have', 'caused', 'myself', '||comma||', 'and', 'the', 'city', 'of', 'new', 'york', '||comma||', 'a', 'good', 'deal', 'of', 'distress', '||comma||', 'as', 'we', 'have', 'watched', 'you', 'take', 'our', 'beloved', 'yankees', 'and', 'reduced', 'them', 'to', 'a', 'laughing', 'stock', '||comma||', 'all', 'for', 'the', 'glorification', 'of', 'your', 'massive', 'ego', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'hire', 'this', 'man', '||exclammark||', '||return||', '||return||', 'secretary:', 'tina', 'robbins', 'is', 'here', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'man:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', "it's", 'my', 'ex', '||dash||', 'roommate', '||comma||', 'she', 'moved', 'out', 'four', 'years', 'ago', '||comma||', 'i', '||dash||', "i've", 'been', 'sub', '||dash||', 'letting', 'my', 'apartment', 'from', 'her', '||period||', '||return||', '||return||', 'man:', 'alright', '||comma||', 'see', 'ya', '||period||', '||leftparen||', 'meets', 'tina', 'in', 'the', 'door', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'tina:', 'please', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'tina', '||period||', '||return||', '||return||', 'tina:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'i', "haven't", 'seen', 'you', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'tina:', 'elaine', '||comma||', 'we', 'have', 'a', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'tina:', "you're", 'getting', 'kicked', 'out', '||period||', '||return||', '||return||', 'elaine:', 'kicked', 'out', '||questionmark||', '||exclammark||', 'why', '||questionmark||', '||exclammark||', '||return||', '||return||', 'tina:', 'well', '||comma||', "there's", 'been', 'a', 'number', 'of', 'complaints', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'like', 'what', '||questionmark||', '||return||', '||return||', 'tina:', 'well', '||comma||', 'like', 'last', 'thanksgiving', 'you', 'buzzed', 'up', 'a', 'jewel', 'thief', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'i', "didn't", 'know', 'who', 'he', 'was', '||exclammark||', '||return||', '||return||', 'tina:', "that's", 'why', "there's", 'a', 'buzzer', '||period||', '||return||', '||return||', 'elaine:', 'what', 'else', '||questionmark||', '||return||', '||return||', 'tina:', 'well', '||comma||', 'apparently', '||comma||', 'the', 'week', 'after', 'that', '||comma||', 'you', 'buzzed', 'up', 'some', "jehova's", 'witnesses', 'and', 'they', "couldn't", 'get', 'them', 'out', 'of', 'the', 'building', '||period||', '||return||', '||return||', 'elaine:', 'what', 'else', 'have', 'you', 'got', '||questionmark||', '||return||', '||return||', 'tina:', 'well', '||comma||', "let's", 'see', '||period||', '||leftparen||', 'takes', 'out', 'a', 'list', 'from', 'her', 'bag', '||rightparen||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'what', 'the', 'big', 'advantage', 'of', 'homosexuality', 'is', '||period||', 'if', "you're", 'going', 'out', 'with', 'someone', 'your', 'size', '||comma||', 'right', 'there', 'you', 'double', 'your', 'wardrobe', '||period||', '||return||', '||return||', 'rachel:', 'i', 'suppose', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||comma||', "that's", 'a', 'huge', 'feature', '||period||', 'when', 'they', 'approach', 'a', 'new', 'recruit', '||comma||', "i'm", 'sure', "that's", 'one', 'of', 'the', 'big', 'selling', 'points', '||period||', '||return||', '||return||', 'rachel:', '||leftparen||', 'sighs', '||rightparen||', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||questionmark||', '||return||', '||return||', 'rachel:', "i've", 'been', 'doing', 'a', 'lot', 'of', 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||questionmark||', '||return||', '||return||', 'rachel:', 'well', '||comma||', 'i', "don't", 'think', 'we', 'should', 'see', 'each', 'other', 'any', 'more', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'okay', '||period||', '||return||', '||return||', 'rachel:', '||leftparen||', 'confused', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "that's", 'fine', '||period||', 'no', 'problem', '||period||', "i'll", 'meet', 'somebody', 'else', '||period||', '||return||', '||return||', 'rachel:', 'you', 'will', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', 'see', '||comma||', 'things', 'always', 'even', 'out', 'for', 'me', '||period||', '||return||', '||return||', 'rachel:', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'fine', '||period||', 'anyway', '||comma||', "it's", 'been', 'really', 'nice', 'dating', 'you', 'for', 'a', 'while', '||period||', 'and', 'uh', 'good', 'luck', '||exclammark||', '||return||', '||return||', 'rachel:', 'yeah', '||comma||', 'you', 'too', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', '||semicolon||', 'singing', '||rightparen||', "she'll", 'be', 'coming', 'around', 'the', 'mountain', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'the', 'new', 'york', 'yankees', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'the', 'new', 'york', 'yankees', '||exclammark||', '||return||', '||return||', 'jerry:', 'ruth', '||comma||', 'gehrig', '||comma||', 'dimaggio', '||comma||', 'mantle', '||period||', '||period||', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'the', 'assistant', 'to', 'the', 'travelling', 'secretary', '||period||', "i'm", 'going', 'on', 'the', 'road', 'trips', 'with', "'em", '||exclammark||', "i'll", 'be', 'on', 'the', 'plane', '||period||', '||period||', '||period||', "i'm", 'working', 'in', 'yankee', 'stadium', '||exclammark||', 'this', 'is', 'a', 'dream', '||comma||', "i'm", 'busting', '||comma||', 'jerry', '||comma||', "i'm", 'busting', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'it', '||period||', '||return||', '||return||', 'george:', 'ya', '||exclammark||', '||return||', '||return||', 'jerry:', 'ya', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'buzzer', '||rightparen||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'buzzes', 'elaine', 'up', '||rightparen||', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'george:', 'and', "i'm", 'moving', 'out', 'of', 'my', "parents'", 'house', '||comma||', "i'm", 'taking', 'that', 'apartment', 'on', '86th', 'street', '||comma||', 'remember', 'the', 'one', 'we', 'saw', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'a', 'great', 'place', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'back', 'in', 'business', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'i', "wouldn't", 'get', 'too', 'excited', 'about', 'this', 'stuff', '||comma||', 'you', 'know', '||comma||', 'things', 'have', 'a', 'way', 'of', 'evening', 'out', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||leftparen||', 'to', 'elaine', '||comma||', 'who', "doesn't", 'look', 'too', 'cheerful', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', "how're", 'things', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', "how're", 'things', 'going', '||questionmark||', 'you', 'wanna', 'know', 'how', 'things', 'are', 'going', '||questionmark||', "i'll", 'tell', 'you', 'how', 'things', 'are', 'going', '||period||', 'i', 'am', 'getting', 'kicked', 'out', 'of', 'my', 'apartment', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', 'why', 'are', 'they', 'doing', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||exclammark||', 'they', 'have', 'a', 'list', 'of', 'grievances', '||period||', '||return||', '||return||', 'jerry:', 'the', 'jewel', 'thief', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'the', 'jewel', 'thief', '||period||', '||return||', '||return||', 'jerry:', 'what', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'put', 'canadian', 'quarters', 'in', 'the', 'washing', 'machine', '||period||', '||leftparen||', 'disappointed', '||rightparen||', 'i', 'gotta', 'be', 'out', 'by', 'the', 'end', 'of', 'the', 'month', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'could', 'move', 'in', 'with', 'my', 'parents', '||period||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'elaine:', 'was', 'that', 'the', '||period||', '||period||', '||period||', 'opposite', '||period||', '||period||', '||period||', 'of', 'what', 'you', 'were', 'going', 'to', 'say', '||comma||', 'or', 'was', 'that', 'just', 'your', 'natural', 'instinct', '||questionmark||', '||leftparen||', 'she', 'squeezes', "george's", 'mouth', 'between', 'her', 'fingers', '||rightparen||', '||return||', '||return||', 'george:', 'instinct', '||period||', '||return||', '||return||', 'elaine:', 'stick', '||period||', '||period||', '||period||', 'with', 'the', 'opposite', '||period||', '||leftparen||', 'slaps', 'george', 'on', 'the', 'forehead', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "don't", 'get', 'too', 'down', '||period||', "everything'll", 'even', 'out', '||comma||', 'see', '||comma||', 'i', 'have', 'two', 'friends', '||comma||', 'you', 'were', 'up', '||comma||', '||leftparen||', 'has', 'his', 'one', 'hand', 'up', 'and', 'his', 'other', 'hand', 'down', '||rightparen||', 'he', 'was', 'down', '||period||', 'now', "he's", 'up', '||comma||', '||leftparen||', 'switches', 'the', 'positioning', 'of', 'his', 'hands', '||rightparen||', "you're", 'down', '||period||', 'you', 'see', 'how', 'it', 'all', 'evens', 'out', 'for', 'me', '||questionmark||', '||return||', '||return||', 'secretary:', 'mr', '||period||', 'lippman', '||comma||', 'the', 'people', 'from', 'matsushimi', 'are', 'here', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'oh', 'ya', 'alright', '||period||', '||period||', '||period||', 'tell', 'them', "i'll", 'be', 'right', 'there', '||period||', '||leftparen||', 'tosses', 'his', 'handkerchief', 'on', "elaine's", 'desk', 'so', 'he', 'can', 'tie', 'his', 'shoe', '||rightparen||', 'oh', 'man', 'well', '||comma||', 'this', 'is', 'it', '||comma||', 'elaine', '||period||', 'you', 'know', '||comma||', 'without', 'this', 'merger', '||comma||', "we'd", 'be', 'out', 'on', 'the', 'street', '||period||', 'boy', '||comma||', 'they', 'sure', 'saved', 'us', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'noticing', 'the', 'forgotten', 'handkerchief', 'tries', 'to', 'stop', 'call', 'for', 'mr', '||period||', 'lippman', 'with', 'a', 'mouth', 'full', 'of', 'jujifruit', '||rightparen||', 'oh', '||comma||', 'mr', '||period||', 'lippman', 'you', 'forgot', 'your', 'handkerchief', '||period||', 'mr', '||period||', 'lippman', '||comma||', 'you', 'forgot', 'your', 'handkerchief', '||period||', "it's", 'on', 'my', 'desk', '||period||', '||return||', '||return||', 'chairman:', '||leftparen||', 'noticing', 'mr', '||period||', 'lippman', 'in', 'the', 'hallway', '||rightparen||', 'ah', 'lippman', 'son', '||period||', '||leftparen||', 'lippman', 'smiles', 'and', 'is', 'forced', 'to', 'enter', 'his', 'office', '||rightparen||', 'lippman', 'son', '||period||', '||leftparen||', 'speaks', 'some', 'japanese', '||rightparen||', '||return||', '||return||', 'interpreter:', 'mr', 'lippman', '||comma||', 'it', 'is', 'with', 'great', 'pride', 'that', 'we', 'undertake', 'this', 'partnership', 'with', 'your', 'company', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'i', '||period||', '||period||', '||period||', "i'm", 'sorry', '||comma||', 'i', "can't", 'shake', 'your', 'hand', 'right', 'now', '||period||', "it's", 'germs', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'the', 'end', 'of', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "it's", 'the', 'last', 'one', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'estelle:', 'i', "can't", 'believe', "you're", 'moving', 'out', '||period||', '||leftparen||', 'grabs', 'kramer', '||rightparen||', 'kramer', '||comma||', 'is', 'this', 'true', '||questionmark||', 'is', 'it', 'really', 'happening', '||questionmark||', "it's", '||period||', '||period||', '||period||', "it's", 'like', 'a', 'dream', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'true', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'frank:', "don't", 'get', 'in', 'trouble', 'with', 'the', 'yankees', '||period||', 'you', 'be', 'nice', '||period||', '||leftparen||', 'slaps', "george's", 'forehead', '||rightparen||', '||return||', '||return||', 'george:', "i'm", 'not', 'gonna', 'be', 'nice', '||period||', "that's", 'how', 'i', 'got', 'the', 'job', '||period||', '||return||', '||return||', 'estelle:', 'jerry', '||comma||', 'did', 'you', 'hear', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'knows', 'what', "he's", 'doing', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'want', 'the', 'both', 'of', 'you', 'to', 'know', 'how', 'much', 'you', 'mean', 'to', 'me', '||comma||', 'and', 'i', 'love', 'you', 'both', 'very', '||comma||', 'very', 'much', '||period||', '||return||', '||return||', 'jerry:', 'opposite', '||period||', '||return||', '||return||', 'elaine:', 'i', "must've", 'had', 'at', 'least', 'eight', 'in', 'my', 'mouth', '||period||', 'i', "couldn't", 'talk', '||period||', 'i', "couldn't", 'talk', '||exclammark||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'have', 'to', 'eat', 'so', 'many', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "they're", 'jujyfruit', '||period||', 'i', 'like', 'them', '||period||', 'i', "didn't", 'know', 'it', 'would', 'start', 'a', 'chain', 'reaction', 'that', 'would', 'lead', 'to', 'the', 'end', 'of', 'pendant', 'publishing', '||period||', '||return||', '||return||', 'jerry:', 'not', 'to', 'mention', 'the', 'end', 'of', "kramer's", 'coffee', 'table', 'book', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'knew', 'he', 'had', 'a', 'cold', '||period||', "how'd", 'you', 'expect', 'him', 'to', 'blow', 'his', 'nose', '||questionmark||', 'yea', '||exclammark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'know', "what's", 'going', 'on', 'here', '||questionmark||', "can't", 'you', 'see', "what's", 'happened', '||questionmark||', "i've", 'become', 'george', '||period||', '||return||', '||return||', 'jerry:', "don't", 'say', 'that', '||period||', '||return||', '||return||', 'elaine:', "it's", 'true', '||period||', "i'm", 'george', '||exclammark||', "i'm", 'george', '||exclammark||', '||return||', '||return||', 'george:', 'greetings', '||comma||', 'people', '||period||', 'greetings', '||period||', 'greetings', 'and', 'salutations', '||period||', 'what', 'a', 'beautiful', 'day', 'for', 'a', 'ball', 'game', '||period||', "let's", 'play', 'two', '||exclammark||', '||leftparen||', 'sits', 'down', '||comma||', 'says', 'to', 'waitress', '||rightparen||', 'oh', '||comma||', "i'll", 'have', 'the', 'chicken', 'salad', 'on', 'rye', '||comma||', 'my', 'usual', '||comma||', 'you', 'know', 'what', 'i', 'get', '||comma||', "darlin'", '||period||', '||leftparen||', 'turns', 'to', 'the', 'gang', '||rightparen||', 'so', '||comma||', "let's", 'see', '||comma||', 'i', 'had', 'a', 'little', 'conversation', 'today', 'with', 'mr', 'don', 'mattingly', '||dash||', '||leftparen||', 'to', 'elaine', '||rightparen||', "he's", 'the', 'first', 'base', 'man', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', 'we', 'talked', 'about', 'his', 'new', 'batting', 'stance', '||comma||', 'you', 'know', '||comma||', "i'm", 'not', 'crazy', 'about', 'it', '||comma||', 'but', 'i', 'said', '||comma||', "'donny", '||comma||', 'go', 'with', 'it', "'till", 'it', 'stops', "workin'", '||period||', "'", 'donny', 'baseball', '||period||', "he's", 'a', 'helluva', 'guy', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', "that's", 'too', 'much', '||period||', 'mine', 'was', 'more', 'than', 'yours', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', '||period||', "let's", 'call', 'it', 'even', '||period||', '||return||', '||return||', 'george:', 'o', '||period||', 'k', '||period||', '||comma||', 'danny', '||comma||', 'take', 'a', 'swing', '||period||', '||leftparen||', 'tartabull', 'swings', 'the', 'bat', '||period||', '||rightparen||', 'n', '||dash||', 'no', '||exclammark||', 'no', '||exclammark||', 'no', '||exclammark||', "you're", 'opening', 'up', 'your', 'shoulder', '||period||', '||return||', '||return||', 'tartabull:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'really', '||period||', "i'm", 'just', 'saying', 'this', 'to', 'you', 'because', 'i', 'like', 'to', 'hear', 'myself', 'talk', '||period||', 'yes', '||comma||', 'really', '||exclammark||', '||return||', '||return||', 'tartabull', '||leftparen||', 'wiping', 'sweat', 'from', 'his', 'brow', '||rightparen||', ':', 'alright', '||comma||', 'alright', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'all', "sweatin'", 'for', '||questionmark||', '||return||', '||return||', 'tartabull:', "it's", 'hot', 'in', 'this', 'uniform', '||period||', '||return||', '||return||', 'george:', 'hot', '||questionmark||', '||leftparen||', 'feels', "tartabull's", 'material', '||period||', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'tartbull:', 'what', 'is', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'uniform', '||comma||', "what's", 'it', 'made', 'from', '||questionmark||', '||return||', '||return||', 'tartbull:', 'i', "don't", 'know', '||comma||', 'cotton', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'this', 'is', 'not', 'cotton', '||period||', 'here', '||comma||', 'lemme', 'see', '||period||', '||leftparen||', 'tries', 'to', 'look', 'at', 'the', 'tag', 'on', 'the', 'uniform', '||period||', 'tartabull', 'gets', 'creeped', 'out', 'and', 'resists', '||period||', '||rightparen||', 'will', 'you', 'stop', 'it', '||questionmark||', '||leftparen||', 'looks', 'at', 'the', 'tag', '||period||', '||rightparen||', 'oh', '||period||', 'of', 'course', '||period||', 'polyester', '||exclammark||', '||return||', '||return||', 'tartabull:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', "you're", 'not', 'playing', 'in', 'cotton', '||period||', '||return||', '||return||', 'tartabull:', 'well', '||comma||', 'this', 'is', 'what', 'they', 'give', 'us', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'they', 'used', 'to', 'make', 'leisure', 'suits', 'out', 'of', 'this', 'fabric', '||questionmark||', '||return||', '||return||', 'tartabull:', 'you', 'really', 'think', "cotton's", 'better', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', '||exclammark||', 'alright', '||comma||', 'maybe', "i'll", 'say', 'something', 'to', 'buck', '||period||', '||return||', '||return||', 'tartabull:', 'yeah', '||comma||', 'good', 'idea', '||period||', 'catch', 'ya', 'later', '||period||', '||leftparen||', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', "don't", 'embarrass', 'me', 'today', '||period||', 'i', 'got', 'some', 'friends', 'in', 'the', 'stands', '||period||', '||leftparen||', 'george', 'makes', 'a', 'swinging', 'motion', 'with', 'an', 'imaginary', 'bat', 'and', 'pulls', 'something', 'in', 'his', 'back', '||period||', '||rightparen||', '||return||', '||return||', 'hot', 'dog', 'vendor:', 'hot', 'dogs', 'here', '||exclammark||', 'yankee', 'franks', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'want', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'get', 'it', '||period||', '||leftparen||', 'reaches', 'in', 'her', 'bag', 'for', 'money', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "that's", 'alright', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'just', 'because', "i'm", 'not', 'working', "doesn't", 'mean', 'i', "haven't", 'got', 'any', 'money', '||period||', '||leftparen||', 'to', 'vendor', '||rightparen||', 'yo', '||exclammark||', 'dogs', '||exclammark||', 'two', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'announcer', 'on', 'p', '||period||', 'a', '||period||', 'system:', 'your', 'attention', 'please', '||period||', '||period||', '||period||', 'the', 'new', 'york', 'yankees', 'would', 'like', 'to', 'welcome', 'miss', 'connecticut', '||comma||', 'miss', 'rhode', 'island', 'and', 'miss', 'north', 'dakota', '||comma||', 'all', 'of', 'whom', 'will', 'be', 'competing', 'in', 'the', 'miss', 'america', 'pageant', 'this', 'weekend', 'in', 'atlantic', 'city', '||period||', '||leftparen||', 'the', 'three', 'contestants', 'make', 'their', 'way', 'to', 'their', 'seats', '||comma||', 'right', 'across', 'the', 'aisle', 'from', 'jerry', 'and', 'elaine', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'now', '||comma||', "there's", 'a', 'career', 'path', 'you', 'may', 'have', 'overlooked', '||period||', '||return||', '||return||', 'elaine:', 'ooh', '||comma||', 'i', 'gotta', 'check', 'my', 'machine', '||period||', "i'm", 'waiting', 'to', 'hear', 'about', 'an', 'interview', '||period||', 'doubleday', 'is', 'looking', 'for', 'somebody', 'to', 'replace', 'jackie', 'onassis', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'she', 'worked', 'at', 'doubleday', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'she', 'was', 'an', 'editor', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'just', 'like', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'can', 'you', 'hold', 'my', 'seat', '||questionmark||', '||leftparen||', 'elaine', 'gets', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'crowd:', 'hey', '||exclammark||', 'down', 'in', 'front', '||exclammark||', '||leftparen||', 'elaine', 'clambers', 'over', 'jerry', 'and', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'offers', 'a', 'hot', 'dog', 'to', 'miss', 'rhode', 'island', '||rightparen||', ':', 'hot', 'dog', '||questionmark||', '||return||', '||return||', 'miss', 'rhode', 'island:', 'no', '||comma||', 'thanks', '||period||', "i'm", 'watching', 'my', 'weight', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', "i'm", 'watching', 'my', 'height', '||period||', 'my', 'doctor', "doesn't", 'want', 'me', 'to', 'get', 'any', 'taller', '||period||', 'so', "you're", 'miss', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'miss', 'rhode', 'island:', 'rhode', 'island', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'almost', 'mr', '||period||', 'coffee', '||period||', 'they', 'felt', 'i', 'was', 'a', 'little', 'too', 'relaxed', '||period||', '||leftparen||', 'miss', 'rhode', 'island', 'laughs', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'miss', 'rhode', 'island', '||questionmark||', 'when', 'are', 'you', 'seeing', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'tonight', '||period||', 'i', 'have', 'to', 'call', 'her', '||comma||', "she's", 'staying', 'in', 'a', 'hotel', '||period||', '||return||', '||return||', 'george:', "you're", 'incredible', '||period||', '||return||', '||return||', 'jerry:', 'and', 'get', 'this', '||dash||', "i'm", 'working', 'in', 'atlantic', 'city', 'this', 'weekend', '||comma||', 'and', "she's", 'going', 'to', 'be', 'down', 'there', 'for', 'the', 'pageant', '||period||', '||return||', '||return||', 'george:', 'what', 'if', 'she', 'becomes', 'miss', 'america', '||questionmark||', 'you', 'could', 'be', 'dating', 'miss', 'america', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'only', 'bad', 'thing', 'is', '||comma||', 'we', 'have', 'to', 'go', 'out', 'with', 'a', 'chaperone', '||period||', '||return||', '||return||', 'george:', 'chaperone', '||questionmark||', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'part', 'of', 'the', 'contest', 'rules', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'the', 'chaperone', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'she', 'just', 'sits', 'there', '||period||', '||return||', '||return||', 'george:', 'can', 'she', 'talk', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'sure', 'if', "she's", 'allowed', 'to', 'talk', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', 'and', 'dials', '||period||', '||rightparen||', '||return||', '||return||', 'george:', "you're", 'calling', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'sings', '||rightparen||', 'there', 'she', 'is', '||period||', '||period||', '||period||', 'miss', '||dash||', 'yes', '||comma||', 'room', '417', 'please', '||questionmark||', 'karen', 'hanson', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'did', 'you', 'know', 'that', 'the', 'yankees', "don't", 'wear', 'cotton', 'jerseys', '||questionmark||', '||return||', '||return||', 'jerry:', 'of', 'course', '||comma||', "they're", 'polyester', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'is', 'that', '||questionmark||', "that's", 'a', 'crime', '||exclammark||', 'do', 'you', 'know', 'how', 'hot', 'those', 'things', 'get', '||questionmark||', 'they', 'should', 'be', 'wearing', 'cotton', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'they', 'wear', 'polyester', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', "that's", 'all', 'gonna', 'change', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'do', 'something', 'about', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'why', "shouldn't", 'i', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'doubtfully', '||rightparen||', ':', 'no', 'reason', '||period||', '||period||', '||period||', '||return||', '||return||', 'landis:', 'of', 'course', '||comma||', 'jackie', 'o', '||period||', 'was', 'a', 'great', 'lady', '||period||', 'those', 'are', 'going', 'to', 'be', 'some', 'tough', 'shoes', 'to', 'fill', '||period||', 'everyone', 'loved', 'her', '||period||', 'she', 'had', 'such', '||period||', '||period||', '||period||', 'grace', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'gushing', '||rightparen||', ':', 'yes', '||exclammark||', 'grace', '||exclammark||', '||return||', '||return||', 'landis:', 'not', 'many', 'people', 'have', 'grace', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'grace', 'is', 'a', 'tough', 'one', '||period||', 'i', 'like', 'to', 'think', 'i', 'have', 'a', 'little', 'grace', '||period||', '||period||', '||period||', 'not', 'as', 'much', 'as', 'jackie', '||dash||', '||return||', '||return||', 'landis:', 'you', "can't", 'have', '||quotemark||', 'a', 'little', 'grace', '||period||', '||quotemark||', 'you', 'either', 'have', 'grace', '||comma||', 'or', 'you', '||period||', '||period||', '||period||', "don't", '||period||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', '||comma||', 'fine', '||comma||', 'i', 'have', '||period||', '||period||', '||period||', 'no', 'grace', '||period||', '||return||', '||return||', 'landis:', 'and', 'you', "can't", 'acquire', 'grace', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'have', 'no', 'intention', 'of', '||quotemark||', 'getting', '||quotemark||', 'grace', '||period||', '||return||', '||return||', 'landis:', 'grace', "isn't", 'something', 'you', 'can', 'pick', 'up', 'at', 'the', 'market', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'fed', 'up', '||rightparen||', ':', 'alright', '||comma||', 'alright', '||comma||', 'look', '||dash||', 'i', "don't", 'have', 'grace', '||comma||', 'i', "don't", 'want', 'grace', '||period||', '||period||', '||period||', 'i', "don't", 'even', 'say', 'grace', '||comma||', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'landis:', 'thank', 'you', 'for', 'coming', 'in', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'landis:', "we'll", 'make', 'our', 'choice', 'in', 'a', 'few', 'days', '||comma||', 'and', "we'll", 'let', 'you', 'know', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'stands', 'up', '||rightparen||', ':', 'i', 'have', 'no', 'chance', '||comma||', 'do', 'i', '||questionmark||', '||return||', '||return||', 'landis:', 'no', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||period||', '||rightparen||', '||return||', '||return||', "landis's", 'intercom:', 'justin', 'pitt', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', 'justin', 'pitt', '||questionmark||', '||return||', '||return||', 'landis:', 'he', 'was', 'a', 'very', 'close', 'friend', 'of', 'mrs', '||period||', "onassis's", '||period||', '||return||', '||return||', 'elaine:', '||quotemark||', 'mrs', '||period||', "onassis's", '||quotemark||', '||questionmark||', "that's", 'hard', 'to', 'pronounce', '||period||', '||return||', '||return||', 'landis:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', '||leftparen||', 'mr', '||period||', 'pitt', 'comes', 'in', 'with', 'some', 'papers', 'in', 'hand', '||period||', '||rightparen||', '||return||', '||return||', 'pitt:', 'mrs', '||period||', 'landis', '||comma||', "there's", 'something', 'wrong', 'with', 'this', 'copying', 'machine', '||comma||', "it's", 'all', 'coming', 'out', 'slanted', '||period||', 'now', '||comma||', 'i', "don't", 'know', 'if', 'this', 'is', 'your', 'department', 'or', 'not', '||period||', '||return||', '||return||', 'landis:', 'justin', 'pitt', '||comma||', 'this', 'is', 'elaine', 'benes', '||period||', '||leftparen||', 'elaine', 'turns', 'around', '||period||', 'with', 'sunglasses', 'and', 'a', 'scarf', 'on', 'her', 'head', '||comma||', 'she', 'bears', 'a', 'close', 'resemblance', 'to', 'jackie', 'o', '||period||', '||rightparen||', '||return||', '||return||', 'pitt', '||leftparen||', 'clearly', 'affected', 'by', "elaine's", 'appearance', '||rightparen||', ':', 'charmed', '||period||', '||return||', '||return||', 'elaine:', 'i', 'was', 'a', 'great', 'admirer', 'of', 'mrs', '||period||', 'onass', '||dash||', 'sis', '||dash||', 'sis', '||dash||', 'sis', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'karen', '||questionmark||', "it's", 'jerry', 'seinfeld', '||period||', 'oh', '||comma||', "that's", 'very', 'sweet', 'of', 'you', '||period||', 'you', 'know', '||comma||', 'you', 'better', 'be', 'careful', '||comma||', 'you', "don't", 'want', 'to', 'get', 'too', 'congenial', '||period||', "they'll", 'slap', 'that', '||quotemark||', 'miss', 'congeniality', '||quotemark||', 'on', 'you', '||comma||', 'and', "you'll", 'congene', 'yourself', 'right', 'out', 'of', 'the', 'contest', '||period||', 'so', '||comma||', 'what', 'time', 'do', 'you', 'want', 'to', 'get', 'together', 'later', '||questionmark||', 'what', '||questionmark||', 'so', 'what', '||comma||', 'we', "don't", 'need', 'the', 'chaperone', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'the', 'chaperone', "can't", 'make', 'it', '||period||', '||leftparen||', 'to', 'karen', '||rightparen||', 'oh', '||comma||', "you're", 'not', 'gonna', 'get', 'disqualified', '||exclammark||', 'so', '||comma||', "we're", 'not', 'going', '||questionmark||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', 'hold', 'on', 'one', 'second', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'tonight', '||questionmark||', '||return||', '||return||', 'kramer:', 'nothin', '||period||', "'", '||return||', '||return||', 'jerry:', "i'm", 'going', 'out', 'with', 'one', 'of', 'the', 'miss', 'america', 'contestants', '||comma||', 'you', 'wanna', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'state', '||questionmark||', '||return||', '||return||', 'jerry:', 'rhode', 'island', '||period||', '||return||', '||return||', 'kramer:', "they're", 'never', 'in', 'contention', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "i've", 'seen', 'every', 'miss', 'america', 'pageant', 'since', 'i', 'was', 'six', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'do', 'you', 'want', 'to', 'go', 'or', 'not', '||questionmark||', "i'll", 'buy', 'you', 'dinner', '||period||', '||return||', '||return||', 'kramer:', 'giddy', '||dash||', 'up', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'karen', '||rightparen||', ':', 'i', 'think', 'i', 'got', 'someone', '||exclammark||', '||return||', '||return||', 'pitt', '||leftparen||', 'looking', 'at', 'elaine', 'and', 'smiling', '||rightparen||', ':', 'the', 'resemblance', 'is', 'uncanny', '||period||', '||leftparen||', 'elaine', '||comma||', 'sipping', 'soda', 'through', 'a', 'straw', '||comma||', 'looks', 'up', 'with', 'a', 'sour', 'expression', 'on', 'her', 'face', '||period||', '||rightparen||', 'even', 'the', 'brown', 'eyes', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'a', 'lot', 'of', 'people', 'have', 'brown', 'eyes', '||period||', '||return||', '||return||', 'pitt:', 'no', '||comma||', "there's", 'something', 'else', '||period||', 'an', 'indefinable', 'quality', '||period||', '||return||', '||return||', 'elaine:', 'grace', '||questionmark||', '||return||', '||return||', 'pitt:', 'grace', '||comma||', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'you', 'think', 'ihave', 'grace', '||questionmark||', '||return||', '||return||', 'pitt:', 'some', 'grace', '||comma||', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'just', 'some', '||questionmark||', '||return||', '||return||', 'pitt:', 'well', '||comma||', 'you', "don't", 'want', 'too', 'much', 'grace', 'or', 'you', "won't", 'be', 'able', 'to', 'stand', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'laughing', '||rightparen||', ':', 'oh', '||comma||', 'mr', '||period||', 'pitt', '||period||', '||return||', '||return||', 'pitt:', 'elaine', '||comma||', 'i', 'want', 'you', 'to', 'come', 'and', 'work', 'for', 'me', 'as', 'my', 'personal', 'assistant', '||period||', 'now', '||comma||', "i'll", 'pay', 'you', 'the', 'same', 'as', 'pendant', '||comma||', 'but', 'i', 'would', 'need', 'you', 'to', 'start', 'right', 'away', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'buck', '||period||', 'talk', 'to', 'you', 'for', 'a', 'second', '||questionmark||', '||return||', '||return||', 'showalter:', 'sure', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', "how's", 'everything', 'going', '||questionmark||', 'everything', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'showalter:', 'well', '||comma||', 'all', 'of', 'a', 'sudden', "there's", 'a', 'problem', 'with', "tartabull's", 'swing', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'buck', '||comma||', 'i', 'uh', '||period||', '||period||', '||period||', 'obviously', 'i', "don't", 'need', 'to', 'talk', 'to', 'you', 'about', 'the', 'importance', 'of', 'player', 'morale', '||comma||', 'but', 'uh', '||period||', '||period||', '||period||', "i've", 'been', 'talking', 'to', 'some', 'of', 'the', 'guys', '||comma||', 'and', 'some', 'of', 'them', '||dash||', 'i', "don't", 'want', 'to', 'mention', 'any', 'names', '||dash||', 'but', 'some', 'of', 'them', '||period||', '||period||', '||period||', "they're", 'not', 'too', 'happy', 'with', 'the', 'polyester', 'uniforms', '||period||', '||return||', '||return||', 'showalter:', 'how', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'they', 'get', 'very', 'hot', 'in', 'the', 'polyester', '||period||', 'you', 'know', '||comma||', "it's", 'not', 'a', 'natural', 'fibre', '||period||', 'i', 'think', 'they', 'would', 'prefer', 'cotton', '||period||', '||return||', '||return||', 'showalter:', 'cotton', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'cotton', 'breathes', '||comma||', 'you', 'see', '||comma||', "it's", 'much', 'softer', '||period||', 'imagine', 'playing', 'games', 'and', 'your', 'team', 'is', 'five', 'degrees', 'cooler', 'than', 'the', 'other', 'team', '||period||', "don't", 'you', 'think', 'that', 'would', 'be', 'an', 'advantage', '||questionmark||', "they're", 'cooler', '||comma||', "they're", 'more', 'comfortable', '||period||', '||period||', '||period||', "they're", 'happier', '||dash||', "they're", 'gonna', 'play', 'better', '||period||', '||return||', '||return||', 'showalter:', 'you', 'may', 'have', 'something', 'there', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'oh', '||dash||', "i've", 'got', 'something', '||period||', '||return||', '||return||', 'showalter', '||leftparen||', 'considering', '||rightparen||', ':', 'hmm', '||period||', 'cotton', 'uniforms', '||period||', '||return||', '||return||', 'jerry:', 'congratulations', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', 'and', 'the', 'best', 'part', 'is', '||comma||', 'i', 'still', 'get', 'to', 'look', 'for', 'work', 'in', 'publishing', '||period||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'what', 'is', 'it', 'that', 'you', 'do', '||comma||', 'exactly', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'attend', 'to', 'his', 'personal', 'affairs', '||period||', '||return||', '||return||', 'jerry:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'like', 'tomorrow', 'for', 'example', '||comma||', 'i', 'have', 'to', 'uh', '||period||', '||period||', '||period||', 'i', 'have', 'to', 'buy', 'him', 'some', 'socks', '||period||', '||return||', '||return||', 'jerry:', 'really', '||exclammark||', 'socks', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'white', 'ones', '||period||', 'like', 'the', 'ones', 'you', 'wear', 'with', 'sneakers', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'maybe', 'you', 'can', 'pick', 'me', 'up', 'some', 'underwear', '||exclammark||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'shows', 'jerry', 'his', 'outfit', '||rightparen||', ':', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', 'does', 'this', 'work', '||questionmark||', '||return||', '||return||', 'jerry:', 'listen', '||period||', '||period||', '||period||', 'tonight', '||comma||', 'after', 'we', 'finish', 'eating', '||comma||', 'you', 'make', 'like', 'you', 'got', 'something', 'else', 'to', 'do', 'and', 'just', '||quotemark||', 'recede', 'into', 'the', 'night', '||comma||', '||quotemark||', 'if', 'you', 'know', 'what', 'i', 'mean', '||period||', '||return||', '||return||', 'kramer:', 'no', 'way', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'if', 'you', 'think', "i'm", 'just', 'going', 'to', 'step', 'aside', 'and', 'do', 'nothing', 'while', 'you', 'defile', 'this', 'woman', '||comma||', "you're", 'crazy', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'going', 'to', '||quotemark||', 'defile', '||quotemark||', 'her', '||exclammark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||comma||', 'because', "i'm", 'going', 'to', 'see', 'it', "doesn't", 'happen', '||period||', 'look', '||comma||', 'jerry', '||comma||', 'these', 'girls', 'are', 'miss', 'america', 'contestants', '||period||', "it's", 'every', 'little', "girl's", 'dream', '||period||', 'and', "i'm", 'not', 'going', 'to', 'let', 'you', 'trample', 'that', 'dream', 'and', 'make', 'a', 'mockery', 'of', 'everything', 'the', 'pageant', 'stands', 'for', '||period||', '||return||', '||return||', 'jerry:', 'but', '||dash||', '||return||', '||return||', 'kramer', '||leftparen||', 'holds', 'up', 'his', 'hand', '||rightparen||', ':', 'aaah', '||exclammark||', 'no', 'buts', '||exclammark||', 'those', 'are', 'my', 'rules', '||period||', '||return||', '||return||', 'jerry:', 'but', 'wait', 'a', 'minute', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'if', 'you', 'want', 'to', 'go', 'out', 'and', 'have', 'some', 'good', '||comma||', 'wholesome', 'fun', 'with', 'a', 'nice', 'girl', '||comma||', "i'd", 'be', 'glad', 'to', 'help', 'you', 'out', '||period||', '||period||', '||period||', 'if', "you're", 'looking', 'for', 'something', 'more', 'than', 'that', '||comma||', "you've", 'got', 'the', 'wrong', 'guy', '||comma||', 'buddy', '||exclammark||', '||leftparen||', 'jerry', 'tries', 'to', 'get', 'a', 'word', 'in', 'during', 'this', 'entire', 'speech', '||comma||', 'but', 'kramer', "won't", 'budge', 'an', 'inch', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'if', 'you', 'were', 'miss', 'america', '||comma||', 'what', 'would', 'you', 'do', 'to', 'make', 'the', 'world', 'a', 'better', 'place', '||questionmark||', '||return||', '||return||', 'karen:', 'as', 'miss', 'america', '||comma||', 'i', 'would', 'try', 'and', 'bring', 'an', 'end', 'to', 'world', 'hunger', '||period||', 'if', 'every', 'person', 'sacrificed', 'one', 'meal', 'a', 'week', '||comma||', 'there', 'would', 'be', 'enough', 'to', 'feed', 'the', 'whole', 'world', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'a', 'hell', 'of', 'a', 'plan', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'listen', '||dash||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'karen', '||rightparen||', ':', 'what', 'advice', 'would', 'you', 'give', 'young', 'people', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'this', 'is', 'important', 'stuff', '||exclammark||', "she's", 'got', 'to', 'be', 'able', 'to', 'answer', 'these', 'questions', '||period||', "she's", 'not', 'going', 'to', 'have', 'time', 'to', 'think', '||comma||', 'out', 'there', '||comma||', 'with', 'millions', 'of', 'people', 'watching', 'her', '||period||', 'any', 'hesitation', 'could', 'cost', 'her', 'the', 'crown', '||period||', 'you', 'know', '||comma||', 'poise', 'counts', '||period||', '||return||', '||return||', 'karen:', 'you', 'really', 'know', 'a', 'lot', 'about', 'this', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'like', 'last', 'year', '||questionmark||', 'miss', 'texas', '||questionmark||', 'now', '||comma||', 'she', 'should', 'have', 'won', 'easily', '||comma||', 'but', 'she', 'lost', 'points', 'in', 'the', 'swimsuit', 'competition', '||period||', '||return||', '||return||', 'karen:', 'well', '||comma||', 'what', 'could', 'she', 'have', 'done', '||questionmark||', '||return||', '||return||', 'kramer:', 'tape', 'her', 'breasts', 'together', '||period||', '||leftparen||', 'jerry', 'is', 'shocked', '||period||', '||rightparen||', '||return||', '||return||', 'karen:', 'what', 'else', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'take', 'you', 'for', 'example', '||period||', 'now', '||comma||', "you're", 'very', 'attractive', '||comma||', 'but', 'you', 'got', 'a', 'big', 'waist', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'karen:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', "it's", 'o', '||period||', 'k', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'go', 'on', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'd", 'recommend', 'a', 'waist', 'cincher', '||period||', '||return||', '||return||', 'karen:', 'really', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'just', '||dash||', 'thip', '||exclammark||', '||dash||', 'suck', 'you', 'in', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'leaves', 'the', 'table', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "what's", 'your', 'talent', '||questionmark||', '||return||', '||return||', 'karen:', 'magic', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||period||', "i'm", 'thinking', 'of', 'a', 'number', 'from', 'one', 'to', 'ten', '||period||', '||return||', '||return||', 'karen:', 'six', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'five', '||period||', 'but', 'you', 'were', 'close', '||period||', '||return||', '||return||', 'announcer', '#1:', 'and', 'the', 'yankees', 'take', 'the', 'field', '||exclammark||', '||return||', '||return||', 'announcer', '#2:', 'is', 'it', 'my', 'imagination', '||comma||', 'or', 'do', 'the', 'yankees', 'look', 'a', 'little', 'different', 'tonight', '||questionmark||', 'i', "can't", 'put', 'my', 'finger', 'on', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'announcer', '#1:', 'well', '||comma||', 'from', 'what', 'i', 'understand', '||comma||', "they've", 'switched', 'to', 'cotton', 'uniforms', '||period||', '||return||', '||return||', 'announcer', '#2:', 'they', 'seem', 'blousier', '||comma||', 'softer', '||period||', '||period||', '||period||', '||return||', '||return||', 'announcer', '#1:', 'well', '||comma||', 'it', 'is', 'a', 'natural', 'fibre', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "how's", 'your', 'evening', '||questionmark||', '||return||', '||return||', 'karen:', 'well', '||comma||', "i'm", 'wearing', 'this', 'red', 'dress', '||dash||', '||return||', '||return||', 'kramer:', 'stop', 'right', 'there', '||period||', '||return||', '||return||', 'karen:', 'no', 'good', '||questionmark||', '||return||', '||return||', 'kramer:', 'disaster', '||period||', '||return||', '||return||', 'karen:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'got', 'brown', 'eyes', '||period||', 'you', 'want', 'to', 'wear', 'a', 'green', 'dress', '||period||', '||return||', '||return||', 'karen:', 'that', 'makes', 'sense', '||period||', '||leftparen||', 'the', 'limo', 'stops', 'at', "karen's", 'hotel', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'here', 'we', 'are', '||period||', '||period||', '||period||', '||return||', '||return||', 'karen:', 'kramer', '||comma||', 'would', 'you', 'consider', 'being', 'my', 'personal', 'consultant', 'for', 'the', 'pageant', '||questionmark||', '||return||', '||return||', 'kramer:', 'okay', '||period||', 'but', 'if', "i'm", 'going', 'to', 'do', 'this', '||comma||', 'we', 'play', 'by', 'my', 'rules', 'or', 'we', "don't", 'play', 'at', 'all', '||period||', '||return||', '||return||', 'karen:', 'i', 'am', 'in', 'your', 'hands', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||period||', '||rightparen||', 'well', '||exclammark||', 'oh', '||comma||', 'good', 'night', '||comma||', 'jerry', '||period||', '||leftparen||', "they're", 'about', 'to', 'kiss', '||comma||', 'but', 'kramer', 'stops', 'them', 'by', 'clearing', 'his', 'throat', '||period||', '||rightparen||', 'kenneth', 'will', 'take', 'you', 'home', '||period||', '||leftparen||', 'she', 'gets', 'out', '||comma||', 'leaving', 'jerry', 'staring', 'at', 'kramer', 'with', 'an', 'angry', 'expression', 'on', 'his', 'face', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'it', "isn't", 'mr', '||period||', 'blackwell', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'and', 'that', 'waist', 'cincher', '||comma||', 'that', 'was', 'the', 'topper', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "you're", 'poo', '||dash||', 'pooing', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'poo', '||dash||', 'poo', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'let', 'me', 'tell', 'you', 'something', '||period||', "i'm", 'taking', 'this', 'kid', 'to', 'the', 'top', '||period||', 'to', 'the', 'top', '||comma||', 'jerry', '||exclammark||', "we're", 'going', 'for', 'the', 'crown', '||comma||', 'and', 'you', "can't", 'stop', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', 'stop', 'her', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', "can't", 'stop', 'her', '||comma||', 'jerry', '||exclammark||', 'oh', '||comma||', "i've", 'seen', "'em", 'come', 'and', 'go', '||comma||', 'but', 'this', 'kid', 'has', 'got', 'something', '||exclammark||', '||leftparen||', 'turns', 'to', 'leave', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'do', 'you', '||period||', '||leftparen||', 'george', 'enters', 'with', 'a', 'newspaper', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'did', 'you', 'see', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'see', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'uniforms', '||exclammark||', 'did', 'you', 'see', 'how', 'they', 'played', '||questionmark||', 'listen', 'to', 'these', 'comments', '||exclammark||', '||leftparen||', 'reads', 'from', 'the', 'paper', '||rightparen||', '||quotemark||', 'wade', 'boggs', "'what", 'a', 'fabric', '||exclammark||', 'finally', 'we', 'can', 'breathe', '||period||', "'", 'luis', 'palonia', "'cotton", 'is', 'king', '||period||', "'", 'paul', "o'neill", "'i", 'never', 'dreamed', 'anything', 'could', 'be', 'so', 'soft', 'and', 'fluffy', '||period||', "'", '||quotemark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'they', 'really', 'do', 'sound', 'comfortable', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'noticing', "jerry's", 'suitcase', '||rightparen||', ':', 'hey', '||comma||', 'where', 'ya', "goin'", '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'working', 'in', 'atlantic', 'city', '||period||', '||return||', '||return||', 'george:', 'really', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'hey', '||comma||', "you're", 'not', 'working', 'this', 'weekend', '||comma||', 'why', "don't", 'you', 'come', 'down', '||questionmark||', '||return||', '||return||', 'george:', 'atlantic', 'city', '||questionmark||', '||leftparen||', 'thinks', '||rightparen||', 'yes', '||exclammark||', 'yes', '||exclammark||', 'i', 'will', 'go', 'to', 'atlantic', 'city', '||period||', "i'm", 'in', '||period||', "i'm", 'down', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||comma||', 'maybe', 'elaine', 'wants', 'to', 'go', 'too', '||comma||', 'lemme', 'call', 'her', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', '||period||', '||rightparen||', "she's", 'at', 'mr', '||period||', "pitt's", '||comma||', 'i', 'think', 'i', 'got', 'the', 'number', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'pitt', '||leftparen||', 'pulling', 'up', 'the', 'socks', '||rightparen||', ':', 'no', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'like', 'them', '||questionmark||', '||return||', '||return||', 'pitt:', 'no', '||comma||', 'i', "don't", 'like', 'them', '||period||', '||return||', '||return||', 'elaine:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'pitt:', "they're", 'too', 'tight', '||period||', '||return||', '||return||', 'elaine:', 'too', 'tight', '||questionmark||', '||return||', '||return||', 'pitt:', "there's", 'no', 'elastic', '||comma||', 'you', 'need', 'to', 'pull', 'too', 'much', '||leftparen||', 'pulls', 'them', 'up', 'more', '||rightparen||', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'examining', 'the', 'socks', '||rightparen||', ':', 'i', 'think', 'they', 'look', 'good', '||exclammark||', '||return||', '||return||', 'pitt:', "they're", 'cutting', 'off', 'the', 'circulation', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'well', '||comma||', "i'll", 'just', 'take', 'them', 'back', '||period||', '||leftparen||', 'the', 'phone', 'rings', '||period||', '||rightparen||', '||return||', '||return||', 'pitt:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'mr', '||period||', 'pitt', '||exclammark||', 'is', 'elaine', 'there', '||questionmark||', '||return||', '||return||', 'pitt', '||leftparen||', 'hands', 'the', 'phone', 'to', 'elaine', '||rightparen||', ':', "it's", 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'sorry', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'elaine', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'going', 'to', 'atlantic', 'city', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'when', '||questionmark||', '||return||', '||return||', 'jerry:', 'today', '||comma||', 'right', 'now', '||exclammark||', 'are', 'you', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'one', 'second', '||comma||', 'hang', 'on', '||period||', '||leftparen||', 'to', 'mr', '||period||', 'pitt', '||rightparen||', 'excuse', 'me', '||comma||', 'mr', '||period||', 'pitt', '||questionmark||', 'would', 'it', 'be', 'alright', 'if', 'i', 'got', 'you', 'the', 'socks', 'tomorrow', '||questionmark||', '||return||', '||return||', 'pitt:', 'tomorrow', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'pitt:', 'but', 'i', 'was', 'hoping', 'for', 'my', 'new', 'socks', 'today', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'just', 'one', 'more', 'day', '||period||', '||return||', '||return||', 'pitt:', "i'm", 'sorry', '||period||', 'i', 'must', 'have', 'them', 'today', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'i', "can't", 'go', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'i', 'have', 'to', 'return', 'the', 'socks', 'and', 'get', 'different', 'ones', '||period||', '||return||', '||return||', 'pitt:', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'gotta', 'go', '||period||', '||leftparen||', 'hangs', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'alright', '||comma||', 'watch', 'me', 'now', '||period||', '||leftparen||', 'karen', 'sits', 'on', 'the', 'bed', '||period||', 'kramer', 'walks', 'across', 'the', 'room', 'like', 'a', 'miss', 'america', 'contestant', 'with', 'a', 'big', 'smile', 'on', 'his', 'face', '||period||', '||rightparen||', 'turn', '||comma||', 'back', '||comma||', 'head', 'up', '||comma||', 'shoulders', 'back', '||period||', '||period||', '||period||', 'posture', '||period||', 'you', 'see', '||questionmark||', 'posture', '||period||', '||return||', '||return||', 'karen:', 'yes', '||comma||', 'i', 'see', '||period||', 'o', '||period||', 'k', '||period||', '||return||', '||return||', 'kramer:', "let's", 'try', 'a', 'few', 'more', 'questions', '||comma||', 'alright', '||questionmark||', '||leftparen||', 'karen', 'stands', 'up', '||period||', '||rightparen||', 'if', 'you', 'were', 'miss', 'america', '||comma||', 'and', 'the', 'u', '||period||', 's', '||period||', 'was', 'on', 'the', 'brink', 'of', 'a', 'nuclear', 'war', '||comma||', 'and', 'the', 'only', 'way', 'the', 'conflict', 'could', 'be', 'averted', 'was', 'if', 'you', 'agreed', 'to', 'sleep', 'with', 'the', "enemy's", 'leader', '||comma||', 'what', 'would', 'you', 'do', '||questionmark||', '||return||', '||return||', 'karen:', 'kramer', '||comma||', 'are', 'these', 'questions', 'really', 'that', 'important', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', "they're", 'important', '||exclammark||', 'if', 'you', 'stumble', '||comma||', 'if', 'you', 'hesitate', '||comma||', 'you', 'can', 'kiss', 'the', 'crown', 'goodbye', '||period||', 'now', 'if', "i've", 'told', 'you', 'once', '||comma||', "i've", 'told', 'you', 'a', 'thousand', 'times', '||dash||', 'poise', 'counts', '||exclammark||', "it's", 'just', 'as', 'important', 'as', 'the', 'others', '||period||', 'swimsuit', '||exclammark||', 'evening', 'wear', '||exclammark||', 'talent', '||exclammark||', 'poise', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'how', 'was', 'the', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'how', 'was', 'the', 'roulette', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'won', 'fifty', 'bucks', '||exclammark||', 'boy', '||comma||', 'this', 'is', 'great', '||period||', 'too', 'bad', "elaine's", 'not', 'here', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'all', 'she', 'had', 'to', 'do', 'was', 'buy', 'mr', '||period||', 'pitt', 'a', 'pair', 'of', 'socks', '||exclammark||', '||return||', '||return||', 'pitt:', "it's", 'good', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'but', 'what', '||questionmark||', '||questionmark||', '||return||', '||return||', 'pitt:', 'ultimately', 'i', "don't", 'think', "they'll", 'stay', 'up', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'pulling', 'up', "pitt's", 'socks', '||rightparen||', ':', 'no', '||comma||', 'no', '||exclammark||', "they'll", 'stay', 'up', '||exclammark||', '||return||', '||return||', 'pitt:', 'for', 'a', 'while', '||comma||', 'yes', '||comma||', 'but', 'not', 'in', 'the', 'long', 'run', '||period||', '||return||', '||return||', 'elaine:', 'but', "that's", 'why', 'i', 'got', 'you', 'the', 'tighter', 'ones', '||exclammark||', '||leftparen||', 'holds', 'them', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'pitt:', 'oh', '||comma||', 'forget', 'about', 'those', '||exclammark||', '||leftparen||', 'takes', 'the', 'socks', 'from', 'elaine', 'and', 'throws', 'them', 'on', 'the', 'floor', '||period||', '||rightparen||', 'why', 'do', 'you', 'keep', 'mentioning', 'those', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'want', '||exclammark||', '||questionmark||', '||return||', '||return||', 'pitt:', 'i', 'want', 'a', 'decent', 'sock', "that's", 'comfortable', '||comma||', 'that', 'will', 'stay', 'on', 'my', 'foot', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'it', 'sounds', 'like', 'pigeons', 'or', 'something', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'getting', 'out', 'of', 'bed', '||rightparen||', ':', 'well', '||comma||', 'i', "can't", 'sleep', 'with', 'that', 'noise', '||period||', '||return||', '||return||', 'george:', 'me', 'either', '||period||', 'is', 'there', 'anything', 'you', 'can', 'do', 'to', 'shut', 'them', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', '||leftparen||', 'grabs', 'the', 'icebucket', 'off', 'the', 'counter', '||period||', '||rightparen||', "this'll", 'scare', "'em", 'off', '||period||', '||leftparen||', 'dumps', 'the', 'bucket', 'of', 'water', 'over', 'the', 'balcony', '||period||', 'we', 'hear', 'a', 'loud', 'squawking', 'noise', 'and', 'the', 'flapping', 'of', 'wings', '||comma||', 'then', 'the', 'noise', 'is', 'gone', '||period||', 'jerry', 'gets', 'back', 'into', 'bed', '||period||', '||rightparen||', 'well', '||comma||', 'good', 'night', '||comma||', 'ollie', '||period||', '||return||', '||return||', 'george:', 'good', 'night', '||comma||', 'stan', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'karen:', 'my', 'doves', '||exclammark||', "they're", 'dead', '||exclammark||', 'i', 'trained', 'those', 'birds', 'for', 'eight', 'years', '||exclammark||', 'how', 'am', 'i', 'supposed', 'to', 'do', 'my', 'magic', 'act', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'how', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'karen:', 'they', 'like', 'it', 'outside', '||comma||', 'so', 'i', 'kept', 'them', 'in', 'a', 'cage', 'on', 'the', 'terrace', '||period||', '||period||', '||period||', 'then', 'i', 'found', 'them', 'dead', 'in', 'a', 'pool', 'of', 'water', '||exclammark||', '||return||', '||return||', 'kramer', '||leftparen||', 'goes', 'out', 'on', 'the', 'terrace', 'to', 'look', '||comma||', 'and', 'slips', 'in', 'the', 'water', '||rightparen||', ':', 'well', '||comma||', 'how', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'karen:', 'it', 'must', 'have', 'been', 'an', 'accident', '||period||', '||return||', '||return||', 'kramer:', 'accident', '||questionmark||', 'this', 'was', 'no', 'accident', '||period||', 'these', 'doves', 'were', 'murdered', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'it', '||exclammark||', "she's", 'out', 'of', 'the', 'pageant', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'why', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'her', 'birds', 'are', 'dead', '||period||', '||return||', '||return||', 'jerry:', 'birds', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'birds', '||period||', "she's", 'got', 'these', 'trained', 'doves', '||comma||', 'she', 'does', 'this', 'magic', 'act', '||comma||', 'that', 'was', 'her', 'talent', 'for', 'the', 'pageant', '||period||', 'you', 'know', 'what', 'i', 'think', '||comma||', 'jerry', '||questionmark||', 'i', 'think', 'somebody', 'murdered', 'those', 'doves', '||period||', 'somebody', 'wanted', 'her', 'out', 'of', 'that', 'contest', 'bad', '||period||', 'somebody', 'who', 'was', 'just', 'eaten', 'up', 'with', 'jealousy', '||period||', 'somebody', 'who', 'just', "couldn't", 'stand', 'to', 'have', 'the', 'spotlight', 'taken', 'off', 'of', 'them', '||exclammark||', '||leftparen||', 'kramer', 'turns', 'around', 'and', 'notices', 'the', 'empty', 'icebucket', 'on', 'the', 'edge', 'of', "jerry's", 'balcony', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'looking', 'at', '||questionmark||', '||leftparen||', 'kramer', 'goes', 'out', 'onto', 'the', 'terrace', 'and', 'looks', 'down', '||period||', '||rightparen||', 'oh', '||comma||', 'that', '||exclammark||', 'we', 'had', 'to', 'leave', 'that', 'outside', '||comma||', 'last', 'night', '||comma||', 'because', 'the', 'water', 'was', 'making', 'the', 'room', 'too', 'cold', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'comes', 'back', 'inside', 'with', 'his', 'finger', 'pointed', 'at', 'jerry', '||rightparen||', ':', 'you', 'killed', 'them', '||comma||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', "don't", 'understand', '||dash||', "it's", 'not', 'what', 'you', 'think', '||exclammark||', 'it', 'was', 'an', 'accident', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "don't", 'think', "you've", 'won', '||comma||', 'because', 'you', "haven't", '||exclammark||', 'this', 'kid', 'is', 'a', 'fighter', '||exclammark||', 'and', 'if', 'you', 'think', "i'm", 'gonna', 'let', 'a', 'couple', 'of', 'dead', 'birds', 'get', 'in', 'our', 'way', '||comma||', "you're", 'crazy', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', 'gotta', 'explain', 'to', 'her', 'what', 'happened', '||period||', '||period||', '||period||', '||exclammark||', '||leftparen||', 'kramer', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'comes', 'out', 'of', 'the', 'bathroom', 'brushing', 'his', 'teeth', '||rightparen||', ':', 'what', 'was', 'that', 'all', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', 'was', 'just', 'kramer', '||period||', '||period||', '||period||', 'apparently', 'i', 'killed', 'miss', 'rhode', "island's", 'doves', 'with', 'a', 'bucket', 'of', 'water', 'last', 'night', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||leftparen||', 'goes', 'back', 'into', 'the', 'bathroom', '||period||', '||rightparen||', '||return||', '||return||', 'karen:', 'o', '||period||', 'k', '||period||', '||comma||', 'this', 'is', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'how', 'ya', "feelin'", '||questionmark||', '||return||', '||return||', 'karen:', "i'm", 'a', 'little', 'nervous', '||exclammark||', '||return||', '||return||', 'kramer:', "there's", 'nothing', 'to', 'be', 'nervous', 'about', '||period||', '||return||', '||return||', 'karen:', 'but', "i've", 'never', 'sung', 'before', 'in', 'my', 'life', '||exclammark||', '||return||', '||return||', 'philbin:', 'and', 'now', '||comma||', "let's", 'welcome', 'karen', 'ann', 'hanson', '||comma||', 'miss', 'rhode', 'island', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'heard', 'those', 'doves', 'were', 'really', 'incredible', '||period||', '||return||', '||return||', 'george:', "that's", 'a', 'shame', '||period||', '||leftparen||', 'karen', 'is', 'shown', 'singing', 'off', '||dash||', 'key', 'on', 'the', 'television', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "it's", 'like', 'watching', 'an', 'animal', 'get', 'tortured', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||exclammark||', 'yankee', 'game', '||exclammark||', '||leftparen||', 'changes', 'the', 'channel', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'great', '||exclammark||', 'alright', '||period||', '||leftparen||', 'we', 'hear', 'the', 'announcers', 'calling', 'the', 'game', '||period||', '||rightparen||', '||return||', '||return||', 'announcer', '#1:', 'and', 'the', 'yankees', 'take', 'the', 'field', '||exclammark||', '||return||', '||return||', 'announcer', '#2:', 'what', 'is', 'with', 'the', 'yankees', '||questionmark||', 'they', 'look', 'like', "they're", 'having', 'trouble', 'running', '||comma||', 'they', "can't", 'move', '||exclammark||', '||return||', '||return||', 'announcer', '#1:', "it's", 'their', 'uniforms', '||comma||', "they're", 'too', 'tight', '||comma||', "they've", 'shrunk', '||exclammark||', "they're", 'running', 'like', 'penguins', '||exclammark||', 'forget', 'this', 'game', '||exclammark||', '||return||', '||return||', 'announcer', '#2:', 'oh', 'my', 'god', '||comma||', 'mattingly', 'just', 'split', 'his', 'pants', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'kramer:', 'poise', '||period||', 'poise', '||exclammark||', '||return||', '||return||', 'stationer:', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'uh', '||comma||', "i'm", 'looking', 'for', 'a', 'rollamech', '1000', 'mechanical', 'pencil', '||period||', '||return||', '||return||', 'stationer:', 'oh', '||comma||', 'i', 'know', 'the', 'rollamech', '1000', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'm", 'sure', 'you', 'do', '||period||', '||return||', '||return||', 'stationer:', "they're", 'pretty', 'expensive', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'for', 'my', 'boss', '||period||', '||return||', '||return||', 'stationer:', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'ex:', 'whatever', '||period||', '||return||', '||return||', 'stationer:', 'well', '||comma||', 'we', "don't", 'have', 'any', 'in', 'stock', 'right', 'now', 'but', 'i', 'would', 'be', 'happy', 'to', 'order', 'it', 'for', 'you', '||period||', 'just', 'give', 'me', 'your', 'phone', 'number', 'and', 'when', 'it', 'comes', 'in', "i'll", 'give', 'you', 'a', 'call', '||period||', "you're", 'name', 'is', '||questionmark||', '||return||', '||return||', 'elaine:', 'elaine', '||period||', '||return||', '||return||', 'stationer:', 'elaine', '||comma||', '||period||', '||period||', '||period||', 'and', 'your', 'last', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'just', 'elaine', '||comma||', 'like', 'cher', '||period||', 'ha', 'ha', 'ha', '||return||', '||return||', 'stationer:', 'and', 'your', 'number', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'aw', '||comma||', 'kl5', '||dash||', '239o', '||period||', '||return||', '||return||', 'stationer:', 'okay', '||period||', 'thanks', 'a', 'lot', '||period||', "you'll", 'be', 'hearing', 'from', 'me', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'move', 'along', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'why', 'did', 'you', 'give', 'him', 'my', 'number', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', "he's", 'got', 'ideas', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wonder', 'if', 'any', 'woman', 'ever', 'said', 'that', 'about', 'einstein', '||questionmark||', '||return||', '||return||', 'jerry:', 'call', 'me', 'when', 'the', 'pencil', 'comes', 'in', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'just', 'call', 'me', 'when', 'the', 'new', 'pen', 'comes', 'in', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'does', 'mr', '||period||', 'pitt', 'prefer', 'a', 'pencil', 'to', 'a', 'pen', 'anyway', '||questionmark||', 'hey', '||period||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'hey', '||return||', '||return||', 'julie:', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'julie', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'julie', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'julie:', 'hi', '||period||', '||return||', '||return||', 'julie:', 'oh', '||comma||', 'hi', '||period||', "elaine's", 'my', 'middle', 'name', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "mine's", '||quotemark||', 'ike', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'wanna', 'get', 'some', 'lunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'had', 'a', 'big', 'bowl', 'of', 'kix', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'well', '||comma||', "that's", 'very', 'mature', '||period||', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'no', '||period||', '||return||', '||return||', 'julie:', 'please', 'come', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'how', 'about', 'if', 'you', 'bring', 'me', 'back', 'something', '||questionmark||', '||return||', '||return||', 'george:', 'sure', '||comma||', 'all', 'right', '||comma||', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'hum', '||comma||', 'i', "don't", 'know', '||period||', '||period||', '||period||', '||period||', 'a', 'big', 'salad', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'big', 'salad', '||questionmark||', "i'm", 'going', 'to', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'elaine:', 'they', 'have', 'big', 'salads', '||period||', '||return||', '||return||', 'george:', "i've", 'never', 'seen', 'a', 'big', 'salad', '||period||', '||return||', '||return||', 'elaine:', 'they', 'have', 'a', 'big', 'salad', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'what', 'i', 'ask', 'for', '||questionmark||', 'the', 'big', 'salad', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'okay', '||comma||', 'you', "don't", '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'hey', "i'll", 'get', 'it', '||period||', "what's", 'in', 'the', 'big', 'salad', '||questionmark||', '||return||', '||return||', 'jerry:', 'big', 'lettuce', '||comma||', 'big', 'carrots', '||comma||', 'tomatoes', 'like', 'volleyballs', '||period||', '||return||', '||return||', 'george:', '||leftparen||', '||questionmark||', '||questionmark||', '||questionmark||', '||rightparen||', '||comma||', "we'll", 'see', 'you', 'in', 'a', 'little', 'while', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'i', 'should', 'just', 'get', 'married', '||period||', '||return||', '||return||', 'jerry:', 'dating', 'is', 'really', 'starting', 'to', 'get', 'embarrassing', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', 'you', 'know', '||comma||', 'whenever', "i'm", 'on', 'a', 'date', 'i', 'feel', 'people', 'can', 'tell', '||period||', '||return||', '||return||', 'jerry:', 'people', 'on', 'dates', "shouldn't", 'even', 'be', 'allowed', 'out', 'in', 'public', '||period||', '||return||', '||return||', 'elaine:', 'you', 'can', 'say', 'that', 'again', '||period||', '||return||', '||return||', 'jerry:', "it's", 'embarrassing', 'for', 'them', '||period||', "it's", 'painful', 'for', 'us', 'to', 'watch', '||period||', "i'm", 'going', 'out', 'with', 'someone', 'later', '||comma||', "i'm", 'not', 'even', 'taking', 'her', 'out', 'of', 'the', 'house', '||period||', '||return||', '||return||', 'elaine:', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'need', 'a', 'bunch', 'of', 'people', 'staring', 'at', 'us', '||period||', '||return||', '||return||', 'elaine:', 'right', 'on', 'baby', '||period||', '||leftparen||', '||questionmark||', '||questionmark||', '||questionmark||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'gendason', '||comma||', 'what', 'a', 'jerk', '||period||', "i'm", 'never', 'playing', 'golf', 'with', 'him', 'again', '||period||', '||return||', '||return||', 'elaine:', 'who', 'gendason', '||questionmark||', '||return||', '||return||', 'kramer:', 'steve', 'gendason', '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'that', 'name', 'familiar', '||questionmark||', '||return||', '||return||', 'hx:', 'he', 'used', 'to', 'be', 'a', 'baseball', 'player', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'how', 'did', 'you', 'end', 'up', 'playing', 'golf', 'with', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'met', 'him', 'on', 'the', 'course', 'a', 'couple', 'of', 'years', 'ago', '||period||', 'yeah', '||period||', 'played', 'with', 'him', 'a', 'lot', '||period||', 'but', 'today', 'was', 'it', '||exclammark||', "we're", 'on', 'the', 'fifteenth', 'hole', '||comma||', 'ya', '||comma||', "he's", 'beating', 'me', 'by', 'a', 'couple', 'of', 'strokes', '||period||', 'then', '||comma||', "he's", 'about', 'to', 'hit', 'his', 'second', 'shot', '||comma||', 'when', '||comma||', 'he', 'picks', 'up', 'the', 'ball', 'and', 'cleans', 'it', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'umph', '||comma||', 'sorry', '||exclammark||', 'but', 'the', 'rules', 'clearly', 'state', 'that', 'you', 'cannot', 'clean', 'the', 'ball', 'unless', "it's", 'on', 'the', 'green', '||period||', 'the', 'rules', 'are', 'very', 'clear', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'certainly', 'are', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||comma||', 'so', 'i', 'penalized', 'him', 'a', 'stroke', '||period||', '||return||', '||return||', 'kramer:', 'he', 'lost', 'it', '||exclammark||', 'we', 'almost', 'came', 'to', 'blows', '||period||', 'we', 'were', 'face', 'to', 'face', 'like', 'a', 'manager', 'and', 'an', 'umpire', 'like', 'this', '||period||', '||period||', 'kara', 'a', 'pukka', 'ba', 'ya', 'ka', 'ba', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "you're", 'in', 'my', 'face', '||period||', '||return||', '||return||', 'elaine:', 'i', 'still', "don't", 'see', 'what', 'the', 'big', 'deal', 'is', '||period||', '||return||', '||return||', 'kramer:', 'a', 'rule', 'is', 'a', 'rule', '||period||', 'and', "let's", 'face', 'it', '||period||', 'without', 'rules', "there's", 'chaos', '||period||', '||return||', '||return||', 'julie:', 'i', 'like', 'anna', "quindlen's", 'column', 'and', 'safire', '||period||', "don't", 'you', 'like', 'safire', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'safire', '||period||', 'uh', 'ha', '||return||', '||return||', 'julie:', 'although', 'at', 'times', 'can', 'be', 'rather', 'pedantic', '||period||', '||return||', '||return||', 'george:', 'he', 'can', 'be', 'pedantic', '||period||', 'he', 'can', 'be', 'pedantic', '||period||', '||return||', '||return||', 'julie:', 'and', 'bob', "herbert's", 'great', '||period||', "he's", 'the', 'daily', 'news', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'yes', '||period||', 'you', 'know', "what's", 'interesting', '||period||', 'the', 'quarterback', 'for', 'the', 'atlanta', 'falcons', 'is', 'bobby', 'hebert', '||period||', 'no', '||quotemark||', 'r', '||quotemark||', 'which', 'i', 'find', 'fascinating', '||period||', 'you', 'know', "it's", 'herbert', 'h', '||dash||', 'e', '||dash||', 'r', '||dash||', 'b', '||dash||', 'e', '||dash||', 'r', '||dash||', 't', '||comma||', 'hebert', 'h', '||dash||', 'e', '||dash||', 'b', '||dash||', 'e', '||dash||', 'r', '||dash||', 't', '||period||', '||quotemark||', 'hebert', '||quotemark||', "it's", 'a', 'fun', 'name', 'to', 'pronounce', '||period||', 'try', 'and', 'say', 'it', 'hebert', '||period||', 'take', 'a', 'shot', '||period||', 'all', 'right', '||period||', '||leftparen||', 'check', 'arrives', '||rightparen||', 'all', 'right', '||period||', 'i', '||return||', '||return||', 'julie:', 'no', '||comma||', 'no', '||period||', "i'd", 'like', 'to', 'take', 'you', 'out', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'julie', '||comma||', 'julie', '||comma||', "don't", 'insult', 'me', '||period||', 'you', 'know', '||comma||', 'what', 'difference', 'does', 'it', 'make', 'who', 'pays', 'for', 'lunch', '||period||', "it's", 'totally', 'meaningless', '||period||', '||return||', '||return||', 'julie:', 'okay', '||comma||', 'thanks', '||comma||', 'george', '||period||', '||return||', '||return||', 'wx:', "here's", 'your', 'big', 'salad', 'to', 'go', '||period||', '||return||', '||return||', 'julie:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'phone', '||rightparen||', 'hello', '||period||', 'no', "she's", 'not', 'here', '||period||', 'okay', '||comma||', 'fine', '||comma||', 'whatever', '||period||', "i'll", 'tell', 'her', '||period||', 'okay', '||period||', 'goodbye', '||period||', 'the', 'stationery', 'store', 'guy', 'called', 'to', 'say', 'he', 'ordered', 'your', 'pencil', '||period||', '||return||', '||return||', 'elaine:', 'i', 'told', "ya'", '||period||', 'he', 'has', 'ideas', '||period||', '||return||', '||return||', 'jerry:', 'he', "doesn't", 'even', 'care', 'if', 'a', 'man', 'answers', '||period||', '||return||', '||return||', 'elaine:', 'or', 'you', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'julie:', 'sorry', "e're", 'late', '||period||', '||return||', '||return||', 'elaine:', 'no', 'problem', '||period||', '||return||', '||return||', 'julie:', "here's", 'your', 'big', 'salad', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||comma||', 'julie', '||period||', '||return||', '||return||', 'julie:', 'oh', '||comma||', "you're", 'very', 'welcome', '||period||', 'so', '||comma||', 'i', 'guess', 'i', 'better', 'get', 'going', '||period||', 'gotta', 'meet', 'mother', 'a', 't', 'the', 'guggenheim', '||period||', 'sure', 'you', "don't", 'want', 'to', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'go', 'guggenheim', '||period||', "i'm", 'not', 'much', 'of', 'a', 'guggenheim', '||period||', '||return||', '||return||', 'julie:', 'sure', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'ya', '||comma||', 'you', 'go', '||period||', '||return||', '||return||', 'julie:', 'okay', '||comma||', "i'll", 'see', 'you', 'later', '||period||', 'goodbye', '||period||', '||return||', '||return||', 'jerry:', 'bye', 'bye', '||return||', '||return||', 'george:', 'did', 'you', 'see', 'what', 'just', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'that', 'all', 'depends', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'happen', 'to', 'notice', 'that', 'julie', 'handed', 'the', 'big', 'salad', 'to', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'she', "didn't", 'buy', 'the', 'big', 'salad', '||period||', 'i', 'bought', 'the', 'big', 'salad', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'a', 'fact', '||questionmark||', '||return||', '||return||', 'george:', 'yes', 'it', 'is', '||period||', 'she', 'just', 'took', 'credit', 'for', 'my', 'salad', '||period||', "that's", 'not', 'right', '||period||', '||return||', '||return||', 'jerry:', 'no', 'it', "isn't", '||period||', '||return||', '||return||', 'george:', 'i', 'mean', "i'm", 'the', 'one', 'who', 'bought', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'you', 'did', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'she', 'should', 'have', 'said', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'could', 'have', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'imagine', '||comma||', 'her', 'taking', 'credit', 'for', 'your', 'big', 'salad', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'you', 'buy', 'a', 'big', 'salad', 'for', 'somebody', 'it', 'would', 'be', 'nice', 'if', 'they', 'knew', 'it', '||period||', '||return||', '||return||', 'jerry:', 'obviously', '||period||', '||return||', '||return||', 'kramer:', 'turn', 'on', 'the', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'puttin', 'it', 'on', '||return||', '||return||', 'tv:', '||period||', '||period||', '||period||', 'the', 'district', "attorney's", 'office', 'and', 'the', 'police', 'department', 'have', 'not', 'answered', 'any', 'questions', 'as', 'yet', '||period||', 'to', 'repeat', 'in', 'case', "you're", 'just', 'joining', 'us', '||period||', 'former', 'baseball', 'start', 'steve', 'genderson', '||comma||', 'has', 'been', 'taken', 'to', 'police', 'headquarters', 'for', 'questioning', 'the', 'murder', 'of', 'bobby', 'pinkus', 'the', 'owner', 'of', 'royal', 'dry', 'cleaners', 'at', '2759', 'amsterdam', 'avenue', '||period||', 'according', 'to', "pinkus'", 'wife', '||comma||', 'gendeson', 'had', 'been', 'involved', 'in', 'a', 'dispute', 'with', 'the', 'cleaner', 'about', 'a', 'stain', 'on', 'a', 'pair', 'of', 'gray', 'sans', '||dash||', 'a', '||dash||', 'belt', 'slacks', '||period||', 'we', 'also', 'have', 'a', 'report', 'that', 'earlier', 'in', 'the', 'day', 'a', 'groundskeeper', 'at', "vancourtland's", 'golf', 'course', 'saw', 'an', 'irate', 'gendeson', 'leaving', 'the', 'clubhouse', 'in', 'a', 'huff', '||period||', 'whether', 'there', 'is', 'a', 'possible', 'connection', 'between', 'the', 'two', 'is', 'something', "we'll", 'just', 'have', 'to', 'wait', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'has', 'nothing', 'to', 'do', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'maybe', 'he', 'was', 'so', 'mad', 'from', 'the', 'penalty', 'stroke', 'that', 'he', 'murdered', 'the', 'dry', 'cleaner', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'generally', 'speaking', 'you', "don't", 'need', 'any', 'extra', 'incentive', 'to', 'murder', 'a', 'dry', 'cleaner', '||period||', 'i', "wouldn't", 'worry', 'about', 'that', '||period||', '||return||', '||return||', 'elaine:', 'i', 'like', 'julie', '||period||', "she's", 'very', 'personable', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "she's", 'very', 'lovely', '||period||', '||return||', '||return||', 'elaine:', "that's", 'great', 'george', '||period||', '||return||', '||return||', 'george:', 'so', 'did', 'you', 'enjoy', 'your', 'lunch', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'a', 'big', 'salad', '||period||', 'very', 'good', '||period||', 'actually', 'it', 'was', 'too', 'big', '||period||', 'ha', 'ha', 'ha', 'wht', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', '||period||', '||period||', '||period||', 'because', 'she', 'handed', 'you', 'the', 'bag', '||period||', 'i', 'could', 'have', 'handed', 'you', 'the', 'bag', '||period||', 'she', 'happened', 'to', 'pick', 'it', 'up', 'at', 'the', 'restaurant', 'even', 'though', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'even', 'though', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'naw', '||comma||', "it's", 'just', 'you', 'thanked', 'her', '||comma||', 'and', 'and', 'oh', '||comma||', '||period||', '||period||', '||period||', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'are', 'you', 'trying', 'to', 'say', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'just', 'that', 'i', 'was', 'the', 'one', 'who', 'actually', 'paid', 'for', 'the', 'big', 'salad', '||period||', 'she', 'just', 'happened', 'to', 'hand', 'it', 'to', 'you', '||period||', 'but', "it's", 'no', 'big', 'deal', '||period||', '||return||', '||return||', 'elaine:', 'you', 'want', 'the', 'money', 'for', 'the', 'big', 'salad', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', '||return||', '||return||', 'elaine:', 'what', 'is', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'there', 'is', 'no', 'problem', '||period||', '||period||', '||period||', 'just', 'a', 'small', 'miscommunication', '||period||', 'whereby', 'you', 'thanked', 'her', 'instead', 'of', 'the', 'person', 'actually', 'responsible', 'for', 'purchasing', 'the', 'big', 'salad', '||period||', '||return||', '||return||', 'jerry:', 'and', 'kramer', 'thinks', 'a', 'penalty', 'stroke', 'may', 'have', 'driven', 'him', 'to', 'it', '||period||', '||return||', '||return||', 'margaret:', 'well', '||comma||', 'they', "haven't", 'even', 'arrested', 'him', 'yet', '||period||', 'come', 'on', '||comma||', "let's", 'go', 'out', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'margaret:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', "don't", 'need', 'a', 'bunch', 'of', 'people', 'staring', 'at', 'us', '||period||', '||return||', '||return||', 'margaret:', 'who', 'is', 'staring', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "they're", 'staring', '||period||', 'they', 'know', "we're", 'on', 'a', 'date', '||period||', "they're", 'making', 'fun', '||period||', 'come', 'on', '||period||', "it's", 'embarrassing', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'no', "she's", 'not', 'here', '||period||', 'yes', 'i', 'will', 'tell', 'her', '||period||', 'no', 'i', "don't", 'know', 'what', 'time', 'she', 'might', 'be', 'coming', 'back', '||period||', 'look', 'i', "gotta'", 'go', '||period||', 'goodbye', '||period||', '||period||', '||period||', '||period||', 'that', '||comma||', "that's", 'a', 'long', 'story', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'margaret:', 'hello', 'jerry', '||comma||', 'i', 'was', 'wondering', 'if', 'you', 'knew', 'where', 'kramer', 'was', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'i', "don't", '||period||', 'why', '||questionmark||', '||return||', '||return||', 'margaret:', 'you', 'know', '||comma||', 'genderson', '||period||', 'this', 'is', 'something', 'big', '||period||', '||return||', '||return||', 'jerry:', 'i', 'suppose', '||period||', '||return||', '||return||', 'margaret:', 'what', 'did', 'kramer', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'nothing', '||period||', '||questionmark||', '||return||', '||return||', 'margaret:', 'come', 'on', 'jerry', '||period||', 'you', 'know', 'something', 'tell', 'me', '||exclammark||', 'tell', 'me', '||exclammark||', '||comma||', 'oh', '||comma||', 'chocolates', '||period||', '||period||', '||period||', 'margaret', '||questionmark||', '||return||', '||return||', 'margaret:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'you', 'two', 'know', 'each', 'other', '||questionmark||', '||return||', '||return||', 'newman:', 'you', 'might', 'say', 'that', '||period||', '||return||', '||return||', 'margaret:', 'we', 'used', 'to', 'go', 'out', '||period||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'tootle', 'loo', '||period||', 'and', 'nice', 'seeing', 'you', 'again', 'margaret', '||comma||', 'goodbye', 'jerry', '||period||', 'have', 'fun', '||period||', 'hehe', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'you', 'went', 'out', 'with', '||period||', '||period||', '||period||', 'newman', '||questionmark||', '||return||', '||return||', 'margaret:', 'just', 'a', 'few', 'times', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'margaret:', 'i', 'liked', 'him', '||period||', '||return||', '||return||', 'jerry:', 'you', 'liked', '||comma||', 'newman', '||questionmark||', '||return||', '||return||', 'margaret:', 'look', "i'm", 'a', 'little', 'uncomfortable', 'talking', 'about', 'this', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'sorry', '||period||', "i'm", 'just', 'a', 'little', 'curious', '||period||', 'i', 'mean', 'why', 'did', 'you', 'stop', 'seeing', 'him', '||period||', '||return||', '||return||', 'margaret:', 'he', 'ended', 'it', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'he', 'ended', 'it', '||questionmark||', '||return||', '||return||', 'margaret:', 'yes', '||exclammark||', '||exclammark||', 'yes', '||exclammark||', 'it', 'was', 'a', 'couple', 'of', 'years', 'ago', '||period||', 'why', 'does', 'it', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'of', 'course', 'not', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'jerry', 'they', 'found', 'a', 'tee', '||period||', '||return||', '||return||', 'jerry:', 'what', 'tee', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'golf', 'tee', '||period||', 'in', 'the', 'dry', 'cleaner', '||period||', '||return||', '||return||', 'jerry:', 'newman', '||exclammark||', 'she', 'went', 'out', 'with', 'newman', '||exclammark||', '||return||', '||return||', 'elaine:', 'it', 'must', 'be', 'a', 'mistake', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'it', "isn't", 'and', 'the', 'most', 'distressing', 'part', 'of', 'it', 'is', '||comma||', 'not', 'that', 'she', 'went', 'out', 'with', 'him', 'but', 'that', 'he', 'stopped', 'seeing', 'her', '||period||', 'do', 'you', 'understand', '||questionmark||', 'he', '||comma||', 'newman', '||semicolon||', 'newman', 'stopped', 'seeing', 'her', '||period||', 'newman', 'never', 'stopped', 'seeing', 'anybody', '||period||', 'newman', 'will', 'see', 'whoever', 'is', 'willing', 'to', 'see', 'him', '||period||', 'not', 'so', 'much', 'why', 'she', 'did', 'see', 'him', 'as', 'disturbing', 'as', 'that', 'is', '||period||', 'but', 'why', '||comma||', 'did', 'he', '||comma||', 'newman', '||comma||', 'stop', 'seeing', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'perhaps', "there's", 'more', 'to', 'him', 'than', 'meets', 'the', 'eye', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "there's", 'less', '||period||', '||return||', '||return||', 'elaine:', "it's", 'possible', '||period||', '||return||', '||return||', 'jerry:', 'no', 'it', "isn't", '||period||', "i've", 'looked', 'into', 'his', 'eyes', '||period||', "he's", 'pure', 'evil', '||period||', '||return||', '||return||', 'elaine:', "he's", 'an', 'enigma', '||comma||', 'a', 'mystery', 'wrapped', 'in', 'a', 'riddle', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'a', 'mystery', 'wrapped', 'in', 'a', 'twinkie', '||period||', '||return||', '||return||', 'wx:', 'would', 'you', 'like', 'some', 'more', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', '||comma||', 'but', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'your', 'stationery', 'store', 'guy', 'called', 'and', "he's", 'got', 'your', 'pencil', '||period||', '||return||', '||return||', 'elaine:', 'ugh', '||exclammark||', 'you', 'are', 'kidding', 'me', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'he', 'left', 'the', 'store', 'early', '||comma||', 'made', 'a', 'special', 'trip', 'to', 'the', 'distributor', 'and', 'got', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', 'bought', 'mine', 'yesterday', 'on', '14th', 'street', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'did', 'you', 'do', 'that', 'for', '||questionmark||', 'you', 'ordered', 'it', '||period||', '||return||', '||return||', 'elaine:', 'to', 'please', 'mr', '||period||', 'pitt', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'better', 'go', 'down', 'there', 'and', 'tell', 'this', 'guy', '||period||', "he's", 'very', 'excited', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'great', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', 'julie', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'julie', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'how', 'are', 'you', '||comma||', 'elaine', '||questionmark||', "i'm", 'meeting', 'george', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', 'then', 'i', 'better', 'get', 'going', 'otherwise', 'george', 'will', 'make', 'me', 'buy', 'him', 'lunch', 'to', 'make', 'up', 'for', 'that', 'big', 'salad', 'he', 'bought', 'me', 'yesterday', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'newman:', 'who', 'is', 'it', '||period||', '||return||', '||return||', 'jerry:', "it's", 'jerry', '||period||', '||return||', '||return||', 'newman:', "you've", 'come', 'at', 'a', 'bad', 'time', 'now', '||period||', 'could', 'you', 'come', 'back', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', 'newman', '||period||', 'open', 'the', 'door', '||exclammark||', '||return||', '||return||', 'newman:', 'hellooo', 'jerry', '||period||', 'what', 'a', 'rare', 'treat', '||period||', 'what', 'brings', 'you', 'down', 'to', 'the', 'east', 'wing', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'pudgy', '||comma||', 'lets', 'stop', 'playing', 'games', '||period||', 'what', 'happened', 'with', 'margaret', '||questionmark||', '||return||', '||return||', 'newman:', "there's", 'no', 'need', 'to', 'get', 'excited', '||period||', "can't", 'we', 'discuss', 'this', 'like', 'gentlemen', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'we', "can't", '||period||', 'my', 'skin', 'is', 'crawling', 'just', 'being', 'inside', 'your', 'little', "rat's", 'nest', '||period||', 'now', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'newman:', 'do', 'you', 'really', 'want', 'to', 'know', 'what', 'happened', '||questionmark||', "i'll", 'tell', 'you', 'what', 'happened', '||period||', 'she', "wasn't", 'my', 'type', '||period||', '||return||', '||return||', 'jerry:', 'noit', 'your', 'type', '||questionmark||', '||return||', '||return||', 'newman:', 'not', 'really', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'how', 'come', '||questionmark||', '||return||', '||return||', 'newman:', 'ah', '||comma||', 'she', 'just', "didn't", 'do', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'what', 'is', 'wrong', 'with', 'her', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'h', 'ha', 'ha', '||dash||', 'if', "you're", 'happy', 'with', 'her', '||comma||', "that's", 'all', 'that', 'matters', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'think', "she's", 'attractive', '||questionmark||', '||return||', '||return||', 'newman:', 'no', '||period||', 'i', 'need', 'a', 'really', 'pretty', 'face', '||period||', 'but', '||comma||', 'hey', '||comma||', "that's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'newman', '||comma||', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'newman:', 'care', 'for', 'some', 'lemonade', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'newman:', 'drop', 'bye', 'anytime', '||comma||', 'jerry', '||period||', 'hah', '||comma||', 'ha', 'ha', '||return||', '||return||', 'kramer:', 'listen', 'to', 'this', '||comma||', '||quotemark||', 'if', 'a', 'player', 'cleans', 'his', 'ball', 'during', 'the', 'play', 'of', 'a', 'hole', 'accept', 'on', 'the', 'putting', 'green', 'he', 'shall', 'incur', 'a', 'penalty', 'of', 'one', 'stroke', '||period||', '||quotemark||', "that's", 'a', 'rule', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'but', "it's", 'just', 'a', 'friendly', 'game', '||period||', 'why', 'do', 'you', 'have', 'to', 'be', 'such', 'a', 'stickler', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "that's", 'the', 'way', 'i', 'weas', 'raised', '||period||', 'you', 'know', 'when', 'i', 'was', 'growing', 'up', 'i', 'had', 'to', 'be', 'in', 'bed', 'every', 'night', 'by', 'nine', "o'clock", '||period||', 'and', 'if', 'i', "wasn't", '||comma||', 'well', 'i', "don't", 'have', 'to', 'tell', 'you', 'what', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'so', 'worried', 'about', 'this', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'he', 'talked', 'about', 'pinkus', 'on', 'the', 'course', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'did', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'he', 'said', 'he', 'brought', 'a', 'pair', 'of', 'pants', 'into', "pinkus'", 'and', 'they', 'came', 'back', 'stained', 'with', 'some', 'kind', 'of', 'dry', 'cleaning', 'fluid', '||period||', 'and', 'pinkus', 'denied', 'responsibility', '||period||', 'you', 'see', 'he', 'was', 'very', 'upset', 'with', 'pinkus', '||period||', '||return||', '||return||', 'jerry:', 'so', 'it', 'had', 'nothing', 'to', 'do', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'maybe', 'i', 'pushed', 'him', 'over', 'the', 'edge', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'poor', 'pinkus', '||comma||', 'poor', 'little', 'pinkus', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'you', 'met', 'margaret', '||period||', 'doo', 'you', 'think', "margaret's", 'good', 'looking', '||questionmark||', 'um', '||comma||', "she's", 'a', 'natural', 'beauty', '||period||', 'oh', '||comma||', 'no', 'makeup', '||period||', 'i', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'the', 'curls', '||period||', 'you', 'like', 'the', 'curls', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'love', 'curls', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', "genderson's", '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'see', 'genderson', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'weighing', 'on', 'my', 'conscience', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'think', 'i', 'could', 'have', 'played', 'with', 'dolls', 'if', 'their', 'were', 'dolls', 'in', 'the', 'house', '||period||', 'it', 'seems', 'like', 'fun', 'to', 'me', '||period||', 'it', "doesn't", 'seem', 'like', 'a', 'gender', 'thing', '||period||', 'i', 'think', 'i', 'would', 'like', 'to', 'play', 'with', 'dolls', '||period||', "what's", 'so', 'terrible', '||questionmark||', '||return||', '||return||', 'julie:', 'ha', '||period||', 'so', '||comma||', 'george', '||comma||', 'i', 'was', 'talking', 'to', 'elaine', 'before', '||period||', '||return||', '||return||', 'george:', 'a', 'ha', '||exclammark||', "we're", 'just', 'friends', '||period||', '||return||', '||return||', 'julie:', 'yes', '||comma||', 'well', 'anyway', '||comma||', 'she', 'said', 'something', 'that', 'was', 'kind', 'of', 'intriguing', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'share', '||period||', '||return||', '||return||', 'julie:', 'well', '||comma||', 'when', 'i', 'came', 'over', 'to', 'the', 'table', 'she', 'mentioned', 'something', 'about', 'how', 'she', 'better', 'hurry', 'up', 'and', 'leave', 'or', "you'd", 'make', 'her', 'buy', 'lunch', 'to', 'make', 'up', 'for', 'the', 'one', 'you', 'bought', 'yesterday', '||period||', '||return||', '||return||', 'george:', 'ha', '||comma||', 'ha', 'ha', 'uh', '||comma||', "i'm", 'not', 'following', 'that', '||period||', '||return||', '||return||', 'julie:', 'well', '||comma||', 'my', 'question', 'is', '||comma||', 'how', 'could', 'elaine', 'be', 'under', 'the', 'impression', 'that', 'you', 'bought', 'the', 'big', 'salad', '||comma||', 'when', 'i', 'was', 'the', 'one', 'who', 'handed', 'it', 'to', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'she', 'probably', 'just', 'assumed', '||period||', '||return||', '||return||', 'julie:', 'um', '||comma||', 'did', 'she', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'uh', '||comma||', '||period||', '||period||', '||period||', 'wait', 'a', 'second', '||period||', 'are', 'you', 'suggesting', 'that', 'i', 'went', 'out', 'of', 'my', 'way', 'to', 'tell', 'elaine', 'that', 'even', 'though', 'you', 'handed', 'her', 'the', 'big', 'salad', '||comma||', 'that', 'it', 'came', 'from', 'me', '||questionmark||', '||return||', '||return||', 'julie:', "that's", 'what', "i'm", 'suggesting', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'well', 'it', 'was', 'a', 'big', 'salad', '||period||', 'and', 'what', 'i', 'would', 'like', 'to', 'know', 'is', '||comma||', 'how', 'does', 'a', 'person', 'who', 'has', 'nothing', 'to', 'do', 'with', 'the', 'big', 'salad', 'claim', 'responsibility', 'for', 'that', 'salad', 'and', 'accept', 'the', 'thank', 'you', 'under', 'false', 'pretenses', '||dash||', 'ah', '||dash||', 'ah', '||questionmark||', '||return||', '||return||', 'julie:', 'george', '||comma||', 'all', 'i', 'did', 'was', 'hand', 'someone', 'a', 'bag', '||period||', '||return||', '||return||', 'elaine:', "it's", 'just', 'that', 'my', 'boss', 'is', 'very', 'demanding', 'and', 'he', 'needed', 'the', 'pencil', 'right', 'away', '||period||', '||return||', '||return||', 'stationer:', 'well', '||comma||', '||comma||', 'why', 'did', 'you', 'tell', 'me', 'to', 'order', 'it', 'if', 'you', 'knew', 'you', 'were', 'going', 'to', 'get', 'one', 'someplace', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', 'no', 'i', "didn't", 'know', '||period||', 'i', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'stationer:', 'i', 'went', 'all', 'the', 'way', 'down', 'to', 'the', 'warehouse', '||period||', 'it', 'took', 'me', 'three', 'hours', '||period||', 'i', 'had', 'a', 'big', 'fight', 'with', 'the', 'foreman', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'a', 'fight', 'with', 'the', 'foreman', '||questionmark||', '||return||', '||return||', 'stationer:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'again', '||comma||', "i'm", 'just', 'awfully', 'sorry', '||period||', '||return||', '||return||', 'stationer:', 'yeah', '||questionmark||', 'well', '||comma||', 'then', 'how', 'about', 'going', 'out', 'with', 'me', 'tonight', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'margaret:', 'i', 'mean', 'they', 'found', 'a', 'tee', 'and', 'he', 'played', 'golf', 'that', 'day', '||period||', 'nobody', 'walks', 'into', 'a', 'dry', "cleaner's", 'with', 'a', 'tee', '||period||', 'the', 'circumstantial', 'evidence', 'is', 'overwhelming', '||period||', '||return||', '||return||', 'jerry:', 'you', 'had', 'how', 'many', 'dates', 'with', 'him', '||questionmark||', 'three', '||questionmark||', '||return||', '||return||', 'margaret:', 'around', 'three', '||period||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'and', '||period||', '||period||', '||return||', '||return||', 'margaret:', 'i', 'told', 'you', '||period||', 'he', 'stopped', 'calling', 'me', '||period||', 'i', 'moved', 'on', '||period||', "i'm", 'not', 'hung', 'up', 'on', 'him', '||period||', 'what', 'are', 'you', 'looking', 'at', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', "i'm", 'not', 'looking', '||period||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'looking', 'at', 'my', 'face', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', 'am', 'i', 'going', 'to', 'look', '||questionmark||', '||return||', '||return||', 'margaret:', 'kiss', 'me', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'i', "can't", '||period||', '||return||', '||return||', 'jerry:', 'newman', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'i', 'could', 'think', 'of', 'was', 'when', 'i', 'was', 'looking', 'at', 'her', 'face', 'was', '||semicolon||', 'newman', 'found', 'this', 'unacceptable', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', '||comma||', "i'm", 'going', 'out', 'with', 'the', 'stationery', 'store', 'guy', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'out', 'with', 'the', 'stationery', 'store', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'felt', 'so', 'guilty', 'about', 'the', 'pencil', 'i', "couldn't", 'say', 'no', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'well', '||comma||', 'well', '||comma||', "i'm", 'not', 'treating', 'you', 'to', 'lunch', 'anymore', '||exclammark||', 'you', 'had', 'to', 'tell', 'julie', 'that', 'i', 'made', 'a', 'special', 'point', 'of', 'telling', 'you', 'that', 'i', 'bought', 'you', 'the', 'big', 'salad', '||period||', "didn't", "ya'", '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'uh', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'if', 'it', 'was', 'a', 'regular', 'salad', 'i', "wouldn't", 'have', 'said', 'anything', '||period||', 'but', 'you', 'had', 'to', 'have', 'the', 'big', 'salad', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'what', '||questionmark||', "you're", 'kidding', '||period||', "i'm", 'turning', 'it', 'on', '||period||', 'oh', '||comma||', 'my', 'god', '||period||', 'get', 'out', 'of', 'here', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'hey', 'listen', 'to', 'this', '||period||', 'they', 'issued', 'a', 'warrant', 'for', "genderson's", 'arrest', '||period||', 'he', 'escaped', 'and', 'the', 'police', 'spotted', 'him', 'on', 'the', 'new', 'jersey', 'turnpike', '||period||', '||return||', '||return||', 'tv:', 'as', 'you', 'can', 'see', 'white', 'bronco', '||period||', 'the', 'police', 'have', 'cleared', 'the', 'highway', 'traffic', 'in', 'front', 'of', 'him', 'but', 'they', 'are', 'keeping', 'their', 'distance', 'and', "don't", 'want', 'the', 'situation', 'to', 'escalate', '||period||', 'and', 'we', 'have', 'gotten', 'an', 'identification', 'on', 'the', 'driver', 'of', 'the', 'vehicle', '||period||', 'his', 'name', 'is', '||semicolon||', 'kramer', '||comma||', 'one', 'of', "genderson's", 'golfing', 'buddies', '||period||', '||return||', '||return||', 'police:', '9', '||dash||', '1', '||dash||', '1', 'what', 'are', 'you', 'reporting', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'this', 'is', 'kramer', '||period||', 'i', 'got', 'genderson', 'in', 'the', 'car', '||period||', 'he', 'wants', 'to', 'see', 'his', 'fish', '||period||', "i'm", 'taking', 'him', 'to', 'see', 'his', 'fish', '||period||', 'so', 'tell', 'the', 'police', 'to', 'back', 'off', '||period||', '||return||', '||return||', 'police:', 'okay', '||comma||', 'sir', '||comma||', 'and', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'name', 'is', 'kramer', '||period||', 'you', 'know', 'who', 'i', 'am', 'dammit', '||exclammark||', '||return||', '||return||', 'genderson:', 'i', 'told', 'you', 'not', 'to', 'take', 'the', 'turnpike', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'we', 'would', 'blend', 'in', '||period||', '||return||', '||return||', 'genderson:', 'if', 'we', 'took', 'the', 'palisades', 'this', 'never', 'have', 'happened', '||period||', '||return||', '||return||', 'kramer:', 'we', 'would', 'have', 'had', 'all', 'that', 'bridge', 'traffic', '||period||', '||return||', '||return||', 'genderson:', 'ah', '||comma||', 'just', 'drive', '||period||', '||return||', '||return||', 'elaine:', 'she', 'was', 'hitting', 'on', 'you', '||questionmark||', 'my', 'friend', 'noreen', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'friend', '||comma||', 'noreen', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'sure', "you're", 'not', 'just', 'flattering', 'yourself', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'i', 'was', 'flattering', 'myself', '||comma||', 'i', 'think', "i'd", 'come', 'up', 'with', 'someone', 'a', 'little', 'less', 'annoying', 'than', 'noreen', '||period||', '||return||', '||return||', 'elaine:', 'i', 'cannot', 'believe', 'that', 'she', 'was', 'hitting', 'on', 'you', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', "don't", 'believe', 'me', '||comma||', 'ask', 'her', '||period||', '||return||', '||return||', 'elaine:', 'i', 'will', '||period||', 'besides', '||comma||', "she's", 'got', 'a', 'boyfriend', '||comma||', 'jerry', '||comma||', 'you', 'know', 'him', '||period||', 'dan', '||period||', 'remember', '||comma||', 'we', 'went', 'to', 'that', 'party', 'at', 'his', 'house', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||period||', 'the', 'guy', 'who', 'talks', 'with', 'a', 'really', 'high', 'voice', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'did', 'you', 'get', 'my', 'fortune', 'magazine', 'in', 'your', 'mail', '||questionmark||', '||return||', '||return||', 'jerry:', 'check', 'the', 'pile', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leafing', 'through', "jerry's", 'mail', '||rightparen||', 'oh', '||comma||', 'who', 'sent', 'you', 'a', 'card', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'open', 'it', '||comma||', "it's", 'from', 'hallmark', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||comma||', 'darling', '||period||', '||return||', '||return||', 'jerry:', "isn't", 'that', 'cute', '||comma||', 'a', "'thank", "you'", 'card', 'from', 'kristin', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'see', '||period||', '||return||', '||return||', 'elaine:', "who's", 'kristin', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'works', 'for', 'pbs', '||comma||', 'i', 'met', 'her', 'when', 'i', 'agreed', 'to', 'do', 'that', 'pledge', 'drive', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'ask', 'her', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'in', 'fact', 'she', 'said', 'that', 'you', 'could', 'be', 'one', 'of', 'those', 'people', 'that', 'sits', 'in', 'the', 'back', 'and', 'answers', 'the', 'phone', '||period||', '||return||', '||return||', 'kramer:', 'giddy', '||dash||', 'up', '||exclammark||', 'alright', '||exclammark||', 'so', 'now', '||comma||', 'how', 'does', 'that', 'work', '||questionmark||', 'now', '||comma||', 'what', '||comma||', 'i', 'get', 'a', 'percentage', 'of', 'every', 'pledge', 'i', 'bring', 'in', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'not', 'aluminum', 'siding', '||comma||', "it's", 'volunteer', 'work', '||period||', 'all', 'the', 'money', 'goes', 'to', 'the', 'station', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'yeah', '||comma||', 'alright', '||comma||', 'that', 'sounds', 'good', '||comma||', 'but', 'i', 'still', 'get', 'a', 'tote', 'bag', 'though', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'one', 'of', 'those', 'foam', 'beer', 'can', 'holders', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dialing', 'the', 'phone', '||rightparen||', 'you', 'know', 'what', "i'm", 'doing', '||questionmark||', "i'm", 'calling', 'noreen', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sure', 'you', "don't", 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'like', "she's", 'really', 'going', 'to', 'admit', 'she', 'was', 'flirting', 'with', 'me', '||period||', '||return||', '||return||', 'high', 'pitched', 'voice:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', "it's", 'elaine', '||period||', 'listen', '||comma||', 'i', 'was', 'just', 'talking', 'to', 'jerry', '||period||', '||return||', '||return||', 'high', 'pitched', 'voice:', 'jerry', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'high', 'pitched', 'voice:', 'oh', '||comma||', 'i', 'like', 'jerry', 'a', 'lot', '||period||', '||return||', '||return||', 'elaine:', 'you', 'mean', 'like', 'like', '||questionmark||', '||return||', '||return||', 'high', 'pitched', 'voice:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'noreen', '||comma||', 'were', 'you', 'hitting', 'on', 'him', '||questionmark||', '||return||', '||return||', 'high', 'pitched', 'voice:', "noreen's", 'not', 'here', '||comma||', 'this', 'is', 'dan', '||period||', '||return||', '||return||', 'elaine:', 'ooh', '||period||', '||return||', '||return||', 'dan:', 'you', 'say', 'that', 'noreen', 'was', 'hitting', 'on', 'jerry', 'seinfeld', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'so', 'was', 'i', 'right', '||questionmark||', 'she', 'likes', 'me', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'sorry', 'mr', '||period||', 'pitt', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'high', 'pitched', 'voice:', 'elaine', '||questionmark||', 'what', 'is', 'going', 'on', '||questionmark||', 'why', 'did', 'you', 'tell', 'dan', 'i', 'was', 'hitting', 'on', 'jerry', 'seinfeld', '||questionmark||', '||return||', '||return||', 'elaine:', 'is', 'this', 'noreen', '||questionmark||', '||return||', '||return||', 'high', 'pitched', 'voice:', '||leftparen||', 'noreen', '||rightparen||', 'what', 'would', 'ever', 'possess', 'you', 'to', 'make', 'up', 'a', 'story', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'listen', '||comma||', 'jerry', 'mentioned', 'it', '||comma||', 'and', '||comma||', 'i', "don't", 'know', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'noreen', '||comma||', 'are', 'you', 'crying', '||questionmark||', '||return||', '||return||', 'dan:', 'no', '||comma||', 'this', 'is', 'dan', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'dan', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'elaine', '||questionmark||', 'work', '||questionmark||', '||return||', '||return||', 'elaine:', 'tell', 'noreen', "i'll", 'just', 'call', 'her', 'back', 'later', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'who', 'was', 'crying', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'one', '||period||', "i'm", 'sorry', 'mr', '||period||', 'pitt', '||comma||', 'that', "won't", 'happen', 'again', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'unwrapping', 'a', 'candy', 'bar', '||comma||', 'placing', 'it', 'on', 'a', 'plate', 'and', 'cutting', 'it', 'with', 'knife', 'and', 'fork', '||rightparen||', "i'm", 'sure', 'it', "won't", '||comma||', 'but', 'someone', 'was', 'crying', 'and', 'i', 'want', 'to', 'know', 'who', 'it', 'was', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'a', 'long', 'story', '||comma||', 'okay', '||questionmark||', 'but', 'my', 'stupid', 'friend', 'jerry', 'told', 'my', 'other', 'friend', 'noreen', 'that', 'she', 'was', '||dash||', '||dash||', '||leftparen||', 'noticing', 'mr', '||period||', 'pitt', 'eating', 'the', 'candy', 'bar', 'with', 'knife', 'and', 'fork', 'and', 'becoming', 'distracted', '||rightparen||', 'you', 'know', '||comma||', 'hitting', 'on', 'him', 'and', 'so', 'i', 'called', 'her', 'to', 'see', 'what', 'was', '||comma||', 'uh', '||comma||', 'going', 'on', 'and', 'i', 'accidentally', 'got', 'her', 'boyfriend', '||comma||', 'who', 'is', 'this', '||comma||', 'you', 'know', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', "i'm", 'jerry', 'seinfeld', '||comma||', 'i', 'tell', 'jokes', 'for', 'a', 'living', '||comma||', 'but', "there's", 'no', 'joking', 'about', 'the', 'financial', 'crisis', 'at', 'pbs', '||period||', 'show', 'us', 'you', 'care', '||period||', 'call', 'in', 'your', 'pledge', 'now', '||period||', '||return||', '||return||', 'kristin:', 'jerry', '||comma||', 'i', 'am', 'so', 'grateful', 'that', "you're", 'doing', 'this', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'know', 'you', 'are', '||period||', '||return||', '||return||', 'kristin:', 'you', 'got', 'the', 'card', 'i', 'sent', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'did', '||period||', '||return||', '||return||', 'kristin:', 'so', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kristin:', 'the', 'card', '||period||', 'is', 'this', 'it', 'in', 'the', 'trash', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||questionmark||', '||return||', '||return||', 'kristin:', 'this', 'is', 'my', 'card', '||comma||', 'you', 'threw', 'it', 'away', '||period||', '||return||', '||return||', 'jerry:', 'well', '||dash||', '||dash||', '||return||', '||return||', 'kristin:', 'i', 'put', 'a', 'lot', 'of', 'thought', 'into', 'this', 'card', '||period||', '||return||', '||return||', 'jerry:', 'you', 'signed', 'your', 'name', 'and', 'you', 'addressed', 'the', 'envelope', '||comma||', "it's", 'not', 'like', 'you', 'painted', 'the', 'picture', 'and', 'wrote', 'the', 'poem', '||period||', '||return||', '||return||', 'kristin:', 'fine', '||period||', 'i', 'gotta', 'get', 'back', 'to', 'the', 'office', '||period||', '||return||', '||return||', 'jerry:', 'why', '||comma||', 'because', 'i', 'threw', 'the', 'card', 'out', '||questionmark||', 'how', 'long', 'was', 'i', 'supposed', 'to', 'save', 'it', '||questionmark||', '||return||', '||return||', 'kristin:', 'you', 'have', 'no', 'sentimentality', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'sentimentality', '||comma||', 'really', '||comma||', "i'm", 'sentimental', '||period||', 'here', '||comma||', 'look', '||period||', "here's", 'some', 'cards', "i've", 'saved', '||comma||', 'these', 'are', 'birthday', 'cards', 'from', 'my', 'grandmother', '||comma||', 'see', '||comma||', "i'm", 'not', 'a', 'bad', 'guy', '||period||', '||return||', '||return||', 'kristin:', 'oh', '||comma||', 'so', 'you', 'save', 'her', 'cards', 'but', 'not', 'mine', '||exclammark||', 'oh', 'great', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'kristin', 'is', 'storming', 'out', '||rightparen||', 'well', '||comma||', 'but', '||comma||', 'you', 'see', '||comma||', 'i', 'saved', 'something', '||exclammark||', 'see', '||questionmark||', 'i', 'can', 'save', '||period||', "i'll", 'see', 'you', 'at', 'the', 'pledge', 'drive', '||comma||', 'ok', '||questionmark||', '||return||', '||return||', 'kramer:', 'new', 'cards', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "they're", 'old', 'cards', 'from', 'my', 'grandmother', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'well', '||comma||', "i'll", 'tell', 'you', '||comma||', 'a', 'nice', 'greeting', 'card', 'can', 'really', 'lift', 'a', "person's", 'spirits', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'opening', 'a', 'card', '||rightparen||', 'oh', '||comma||', 'a', 'check', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'she', 'puts', 'ten', 'dollars', 'in', 'every', 'card', 'for', 'my', 'birthday', '||comma||', "that's", 'why', 'i', 'save', 'them', '||period||', '||return||', '||return||', 'kramer:', "there's", 'a', 'check', 'in', 'all', 'these', '||questionmark||', 'why', "don't", 'you', 'cash', 'them', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', "it's", 'ten', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'but', 'you', 'got', 'a', 'whole', 'pile', 'here', '||period||', '1987', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'so', 'what', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'your', 'grandmother', 'gave', 'you', 'this', 'gift', '||period||', 'she', 'wants', 'you', 'to', 'spend', 'the', 'money', '||comma||', 'to', 'have', 'the', 'fun', 'that', 'she', "can't", 'have', '||period||', 'oh', '||comma||', 'this', 'is', 'tantamount', 'to', 'a', 'slap', 'in', 'the', 'face', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'a', 'gift', 'not', 'enjoyed', 'is', 'like', 'a', 'flower', 'that', "doesn't", 'blossom', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||comma||', "i'll", 'cash', 'the', 'checks', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', "'thank", "you'", 'card', 'from', 'kristin', 'because', "i'm", 'doing', 'the', 'pbs', 'drive', '||period||', 'i', 'mean', '||comma||', 'how', 'long', 'am', 'i', 'supposed', 'to', 'keep', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'rule', 'is', 'a', 'minimum', 'of', 'two', 'days', '||period||', '||return||', '||return||', 'jerry:', 'you', 'making', 'that', 'up', 'or', 'do', 'you', 'know', 'what', "you're", 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'making', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'really', '||comma||', "what's", 'the', 'point', 'of', 'saving', 'it', '||questionmark||', 'i', 'could', 'see', 'if', 'i', 'had', 'a', 'mantel', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||comma||', 'a', "mantel's", 'a', 'whole', 'different', 'story', '||period||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', '||return||', '||return||', 'george:', 'if', 'my', 'parents', 'had', 'a', 'mantel', '||comma||', 'i', 'might', 'be', 'a', 'completely', 'different', 'person', '||period||', '||return||', '||return||', 'jerry:', 'so', 'anyway', '||comma||', "she's", 'kind', 'of', 'upset', 'about', 'it', 'so', 'i', 'need', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'george:', "let's", 'have', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'doing', 'the', 'pbs', 'show', '||comma||', 'so', 'during', 'the', 'show', "they're", 'gonna', 'be', 'running', 'the', 'ken', 'burns', 'baseball', 'thing', '||period||', 'so', 'i', 'thought', 'if', 'i', 'could', 'get', 'a', 'baseball', 'player', 'to', 'come', 'on', 'the', 'show', 'with', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'want', 'me', 'to', 'ask', 'one', 'of', 'the', 'yankees', '||period||', '||return||', '||return||', 'jerry:', 'could', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||period||', "i'll", 'run', 'it', 'by', 'a', 'few', 'people', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'do', 'your', 'thing', '||comma||', 'where', 'you', 'lie', 'to', 'everyone', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'entering', 'and', 'sitting', 'down', '||rightparen||', 'i', 'should', 'never', 'have', 'made', 'that', 'phone', 'call', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'did', 'you', 'ever', 'get', 'to', 'talk', 'to', 'noreen', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "she's", 'very', 'upset', '||period||', '||return||', '||return||', 'jerry:', 'so', 'was', 'i', 'right', 'about', 'the', 'flirting', '||questionmark||', 'was', 'it', 'true', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', 'never', 'asked', '||period||', 'she', 'was', 'yelling', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'who', 'was', 'flirting', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'remember', 'when', 'we', 'were', 'in', 'the', 'bookstore', '||comma||', 'that', 'woman', 'came', 'up', 'to', 'us', '||questionmark||', '||return||', '||return||', 'george:', 'she', "wasn't", 'flirting', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sure', 'she', 'was', '||semicolon||', 'asked', 'me', 'where', 'the', "'humor'", 'section', 'was', '||questionmark||', 'humor', '||questionmark||', 'come', 'on', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'her', 'brother', 'just', 'had', 'a', 'book', 'of', 'political', 'cartoons', 'published', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'so', 'maybe', 'she', "wasn't", 'flirting', 'with', 'me', '||period||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'yeah', '||comma||', "that's", 'funny', '||period||', 'hey', '||comma||', 'you', 'wanna', 'hear', 'something', 'weird', '||questionmark||', 'mr', '||period||', 'pitt', 'eats', 'his', 'snickers', 'bars', 'with', 'a', 'knife', 'and', 'fork', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'why', 'does', 'he', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'probably', "doesn't", 'want', 'to', 'get', 'chocolate', 'on', 'his', 'fingers', '||period||', "that's", 'the', 'way', 'these', 'society', 'types', 'eat', 'their', 'candy', 'bars', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'think', 'i', 'eat', 'all', 'my', 'meals', 'with', 'you', '||questionmark||', '||leftparen||', 'to', 'waitress', '||rightparen||', 'excuse', 'me', '||comma||', 'sweetheart', '||questionmark||', 'i', 'think', 'you', 'may', 'have', 'overcharged', 'us', '||period||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'waitress:', "that's", 'the', 'extra', 'toast', '||period||', 'get', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'got', 'it', '||period||', '||leftparen||', 'the', 'waitress', 'walks', 'away', '||rightparen||', 'did', 'you', 'just', 'see', 'what', 'happened', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'see', 'the', 'way', 'she', 'pointed', 'at', 'the', 'check', '||questionmark||', 'she', 'gave', 'me', 'the', 'finger', '||period||', '||return||', '||return||', 'jerry:', "that's", 'how', 'waitress', 'types', 'express', 'derision', '||period||', 'they', "don't", 'want', 'to', 'get', 'their', 'mouths', 'dirty', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'morgan:', 'a', 'pbs', 'fundraiser', '||questionmark||', "i'm", 'not', 'gonna', 'waste', 'any', 'of', 'the', "players'", 'time', 'with', 'that', '||comma||', 'besides', 'the', 'team', 'already', 'does', 'so', 'much', 'promotion', 'for', 'channel', 'eleven', '||period||', '||return||', '||return||', 'george:', 'channel', 'eleven', '||questionmark||', 'forgive', 'me', 'for', 'trying', 'to', 'class', 'up', 'this', 'place', '||comma||', 'for', 'trying', 'to', 'have', 'the', 'yankees', 'reach', 'another', 'strata', 'of', 'society', 'that', 'might', 'not', 'watch', 'channel', 'eleven', '||period||', '||return||', '||return||', 'mr', '||period||', 'morgan:', 'uh', '||comma||', 'what', 'the', 'hell', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'am', 'eating', 'my', 'dessert', '||period||', 'how', 'do', 'you', 'eat', 'it', '||comma||', 'with', 'your', 'hands', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'morgan:', 'you', 'know', '||comma||', 'maybe', 'george', 'has', 'something', 'here', 'about', 'pbs', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'sixty', 'bucks', 'from', 'nana', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', 'yeah', '||period||', '||return||', '||return||', 'nana:', 'hello', '||questionmark||', '||return||', '||return||', 'voice:', 'hello', '||comma||', 'this', 'is', 'chemical', 'bank', '||period||', 'just', 'wanted', 'you', 'to', 'know', 'that', 'your', 'checking', 'account', 'is', 'overdrawn', '||period||', '||return||', '||return||', 'nana:', 'chemical', 'bank', '||questionmark||', 'i', "haven't", 'used', 'that', 'account', 'in', 'months', '||period||', '||return||', '||return||', 'voice:', 'well', '||comma||', "someone's", 'been', 'cashing', 'the', 'checks', 'and', "you're", 'overdrawn', '||period||', '||return||', '||return||', 'nana:', 'oh', 'dear', '||period||', "i'll", 'be', 'down', 'there', 'first', 'thing', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'voice:', '||leftparen||', 'unheard', 'by', 'nana', 'as', 'she', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'wait', '||comma||', 'we', 'can', 'do', 'this', 'over', 'the', 'phone', '||period||', '||return||', '||return||', '||leftparen||', 'fade', 'to', 'the', 'next', 'morning', '||comma||', 'the', 'alarm', 'clock', 'goes', 'off', '||comma||', "it's", '5:', '30', '||comma||', 'nana', 'turns', 'off', 'the', 'alarm', '||comma||', 'fully', 'dressed', '||comma||', 'gathers', 'her', 'coat', 'and', 'purse', '||comma||', 'sighs', '||comma||', 'and', 'heads', 'for', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'got', 'danny', 'tartabull', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'wanted', 'a', 'yankee', '||comma||', 'i', 'got', 'you', 'a', 'yankee', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'you', 'really', 'came', 'through', '||period||', "kristin's", 'gonna', 'be', 'thrilled', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'the', 'bull', 'owes', 'me', 'one', '||comma||', 'i', 'helped', 'him', 'with', 'his', 'swing', '||period||', '||return||', '||return||', 'kramer:', 'so', "you're", 'bringing', 'danny', 'tartabull', 'to', 'the', 'fundraiser', 'tonight', '||period||', '||return||', '||return||', 'george:', 'absolutely', '||period||', 'pending', 'approval', 'of', 'the', 'script', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "i'm", 'yankee', 'management', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'd", 'like', 'to', 'see', 'the', 'script', 'too', '||period||', '||return||', '||return||', 'jerry:', "you're", 'just', 'answering', 'phones', '||exclammark||', '||return||', '||return||', 'kramer:', 'it', 'would', 'put', 'me', 'at', 'ease', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'when', 'you', 'order', 'from', 'the', 'waitress', '||comma||', 'get', 'her', 'to', 'point', 'to', 'the', 'menu', '||period||', 'i', 'want', 'to', 'see', 'what', 'finger', 'she', 'uses', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'say', '||comma||', 'i', 'wanted', 'a', 'side', 'order', 'of', 'fruit', 'but', 'i', "didn't", 'see', 'it', 'on', 'the', 'men', '||return||', '||return||', 'waitress:', 'oh', '||comma||', "you're", 'getting', 'it', '||leftparen||', 'pointing', 'to', 'menu', 'with', 'index', 'finger', '||rightparen||', '||comma||', 'it', 'comes', 'with', 'your', 'breakfast', 'special', '||period||', '||return||', '||return||', 'jerry:', 'right', 'you', 'are', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'get', 'the', 'special', '||comma||', 'but', "i'd", 'also', 'like', 'the', 'fresh', 'fruit', 'too', '||period||', '||return||', '||return||', 'waitress:', '||leftparen||', 'scratching', 'cheek', 'with', 'middle', 'finger', '||rightparen||', "i'll", 'check', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'after', 'waitress', 'walks', 'away', '||rightparen||', 'i', "don't", 'believe', 'it', '||comma||', 'she', 'did', 'it', 'again', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'she', 'had', 'an', 'itch', '||period||', '||return||', '||return||', 'george:', 'she', 'had', 'an', 'itch', '||period||', 'she', 'could', 'have', 'used', 'any', 'one', 'of', 'those', 'fingers', '||period||', 'that', 'finger', 'was', 'meant', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'by', 'the', 'way', '||comma||', 'lunch', 'is', 'on', 'me', '||period||', 'i', 'just', 'cashed', 'my', "nana's", 'birthday', 'checks', '||period||', '||return||', '||return||', 'street', 'tough:', 'looking', 'for', 'something', '||comma||', 'lady', '||questionmark||', '||return||', '||return||', 'nana:', "isn't", 'the', 'chemical', 'bank', 'on', 'this', 'block', '||questionmark||', '||return||', '||return||', 'street', 'tough:', 'the', 'bank', '||questionmark||', 'it', 'burned', '||period||', "it's", 'gone', '||exclammark||', '||return||', '||return||', 'nana:', 'oh', 'dear', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||questionmark||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||exclammark||', '||return||', '||return||', 'uncle', 'leo:', 'listen', '||comma||', 'i', "don't", 'want', 'to', 'alarm', 'you', '||comma||', 'but', 'your', 'nana', 'is', 'missing', '||period||', '||return||', '||return||', 'jerry:', "nana's", 'missing', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'came', 'to', 'pick', 'her', 'up', 'for', 'a', "doctor's", 'appointment', '||comma||', 'she', "wasn't", 'here', '||period||', 'i', 'called', 'the', 'doctor', '||comma||', 'nobody', 'knows', 'where', 'she', 'is', '||period||', 'she', "hasn't", 'left', 'the', 'apartment', 'in', 'twenty', '||dash||', 'five', 'years', '||exclammark||', '||return||', '||return||', 'jerry:', "i've", 'been', 'thinking', 'about', 'her', '||comma||', 'i', 'just', 'cashed', 'some', 'of', 'her', 'checks', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "that's", 'right', '||period||', 'you', 'did', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'kind', 'of', 'checks', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'chemical', 'bank', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'they', 'were', 'chemical', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'chemical', '||questionmark||', '||exclammark||', 'she', "hasn't", 'used', 'that', 'account', 'since', 'her', 'branch', 'closed', '||period||', 'what', 'are', 'you', 'doing', 'cashing', 'her', 'checks', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'kramer', 'thought', 'it', 'would', 'make', 'her', 'happy', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'never', 'should', 'have', 'cashed', 'those', 'checks', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', "didn't", 'twist', 'your', 'arm', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'your', "grandmother's", 'on', 'a', 'very', 'fixed', 'income', '||period||', 'what', '||comma||', 'are', 'you', 'broke', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'call', 'me', 'if', 'you', 'hear', 'anything', '||period||', '||leftparen||', 'hangs', 'up', 'and', 'faces', 'kramer', '||rightparen||', 'well', '||questionmark||', 'i', 'cashed', 'the', 'checks', '||comma||', 'the', 'checks', 'bounced', 'and', 'now', 'my', "nana's", 'missing', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "don't", 'look', 'at', 'me', '||period||', '||return||', '||return||', 'jerry:', "it's", 'your', 'fault', '||exclammark||', '||return||', '||return||', 'kramer:', 'my', 'fault', '||questionmark||', 'your', 'nana', 'is', 'missing', 'because', "she's", 'been', 'passing', 'those', 'bum', 'checks', 'all', 'over', 'town', 'and', 'she', 'finally', 'pissed', 'off', 'the', 'wrong', 'people', '||period||', '||return||', '||return||', 'noreen:', 'so', 'anyway', '||comma||', "it's", 'caused', 'a', 'lot', 'of', 'problems', '||period||', 'dan', 'thinks', "i'm", 'interested', 'in', 'jerry', '||comma||', 'he', "won't", 'let', 'up', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'really', 'sorry', '||comma||', 'but', 'you', 'can', 'see', 'why', "i'd", 'make', 'a', 'mistake', 'like', 'that', '||period||', '||return||', '||return||', 'noreen:', 'no', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'because', "he's", 'a', 'high', 'talker', '||period||', '||return||', '||return||', 'noreen:', 'he', 'does', 'raise', 'his', 'voice', 'occasionally', '||comma||', 'but', "that's", 'normal', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'not', 'a', 'loud', 'talker', '||comma||', 'a', 'high', 'talker', '||period||', '||return||', '||return||', 'noreen:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "don't", 'think', 'his', 'voice', 'sounds', 'a', 'lot', 'like', 'yours', '||questionmark||', '||return||', '||return||', 'noreen:', 'i', 'never', 'noticed', 'that', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'no', 'big', 'deal', '||comma||', 'you', 'know', '||comma||', "it's", 'just', 'that', 'he', 'can', 'sound', 'like', 'a', 'woman', '||comma||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'noreen:', 'great', '||period||', "i'm", 'going', 'out', 'with', 'a', 'man', 'who', 'sounds', 'like', 'a', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', 'looks', 'like', 'a', 'man', '||period||', '||return||', '||return||', 'noreen:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "he's", 'bald', '||period||', 'i', 'know', "that's", 'a', 'guy', 'thing', '||period||', '||return||', '||return||', 'noreen:', 'i', 'guess', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', 'he', 'belches', 'a', 'lot', '||period||', '||return||', '||return||', 'noreen:', 'well', '||comma||', "that's", 'something', '||period||', 'so', '||comma||', 'jerry', 'thought', 'i', 'was', 'flirting', 'with', 'him', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'noreen:', '||leftparen||', 'cutting', 'into', 'a', 'cookie', 'with', 'a', 'knife', 'and', 'fork', '||rightparen||', 'hm', '||period||', "he's", 'kind', 'of', 'a', 'baritone', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'noreen:', "i'm", 'eating', 'this', 'cookie', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'but', 'why', 'are', 'you', 'using', 'a', 'knife', 'and', 'a', 'fork', '||questionmark||', 'did', 'you', 'just', '||return||', '||return||', 'noreen:', 'no', '||comma||', "i've", 'seen', 'people', 'do', 'it', '||period||', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'danny', 'tartabull:', 'this', "isn't", 'gonna', 'take', 'long', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', 'in', 'and', 'out', '||comma||', 'i', 'made', 'sure', 'of', 'that', '||period||', 'and', "you'll", 'be', 'happy', 'to', 'know', 'i', 'perused', 'the', 'script', 'and', "it's", 'met', 'with', 'my', 'approval', '||period||', '||return||', '||return||', 'danny', 'tartabull:', "i'm", 'sure', "it's", 'fine', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'swerving', '||rightparen||', 'hey', '||exclammark||', 'watch', 'it', '||exclammark||', 'did', 'you', 'see', 'that', 'guy', '||questionmark||', 'he', 'just', 'gave', 'me', 'the', 'finger', '||exclammark||', '||return||', '||return||', 'danny', 'tartabull:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||exclammark||', 'middle', 'finger', '||comma||', 'straight', 'up', '||comma||', 'at', 'me', '||exclammark||', 'at', 'us', '||exclammark||', '||return||', '||return||', 'danny', 'tartabull:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'following', 'him', '||period||', '||return||', '||return||', 'banker:', "i'm", 'sorry', '||comma||', 'the', 'account', 'had', 'insufficient', 'funds', '||period||', 'we', 'had', 'to', 'return', 'the', '||return||', '||return||', 'nana:', 'oh', 'dear', '||comma||', "that's", 'my', 'grandson', '||period||', 'may', 'i', 'call', 'him', 'now', 'and', 'explain', '||questionmark||', '||return||', '||return||', 'banker:', 'oh', '||comma||', 'certainly', '||period||', '||return||', '||return||', 'elaine:', 'and', 'now', 'i', 'think', 'she', 'might', 'really', 'be', 'interested', 'in', 'you', '||period||', 'and', 'dan', 'is', '||return||', '||return||', 'jerry:', 'would', 'you', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'answering', '||rightparen||', ':', 'hello', '||questionmark||', '||return||', '||return||', 'nana:', 'hello', '||comma||', 'i', 'need', 'to', 'speak', 'to', 'jerry', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'thinking', "it's", 'dan', '||rightparen||', ':', 'oh', '||comma||', "it's", 'you', '||period||', 'we', 'were', 'just', 'talking', 'about', 'you', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'hanging', 'up', '||rightparen||', ':', 'heh', '||questionmark||', '||return||', '||return||', 'kramer:', 'any', 'word', 'from', 'nana', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'nana', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'my', "grandma's", 'missing', '||period||', '||return||', '||return||', 'elaine:', 'missing', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'think', 'it', 'might', 'have', 'something', 'to', 'do', 'with', 'those', 'checks', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'what', 'does', 'nana', 'sound', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'like', 'a', 'grandmother', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'hung', 'up', 'on', 'my', 'nana', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'jerry:', 'you', 'told', 'nana', 'to', 'drop', 'dead', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', "it's", 'possible', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'it', 'is', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'alright', '||period||', 'look', '||comma||', 'jerry', '||comma||', 'we', 'gotta', 'get', 'down', 'to', 'pbs', '||comma||', 'pdq', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'george:', 'no', 'one', 'gives', 'us', 'the', 'finger', '||exclammark||', "we're", 'yankees', '||exclammark||', '||return||', '||return||', 'danny', 'tartabull:', 'want', 'this', 'last', 'donut', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', 'can', 'have', 'it', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'where', 'are', 'all', 'the', 'tote', 'bags', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'not', 'leaving', 'the', 'premises', 'without', 'tote', 'bags', '||period||', 'i', 'was', 'promised', 'tote', 'bags', 'and', 'tote', 'bags', 'i', 'shall', 'have', '||period||', '||return||', '||return||', 'kristin:', 'jerry', '||comma||', 'this', 'man', 'wants', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'jerry:', 'leo', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'wanted', 'to', 'tell', 'you', 'that', 'your', 'grandmother', 'is', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'uncle', 'leo:', "she's", 'had', 'quite', 'a', 'day', 'but', "she's", 'gonna', 'watch', 'you', 'tonight', 'on', 'the', 'tv', '||period||', '||return||', '||return||', 'kristin:', 'jerry', '||comma||', "i'm", 'dying', 'to', 'meet', 'danny', 'tartabull', '||period||', 'where', 'is', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', "he'll", 'be', 'here', 'any', 'second', '||period||', '||return||', '||return||', 'kristin:', 'you', 'know', 'you', 'guys', 'are', 'both', 'on', 'in', 'five', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kristin:', '||leftparen||', 'leaving', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'why', "didn't", 'you', 'tell', 'me', 'you', 'were', 'a', 'little', 'short', '||questionmark||', 'here', '||period||', 'if', 'anybody', 'asks', 'you', 'where', 'you', 'got', 'it', '||comma||', 'you', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "that's", 'ok', '||comma||', 'i', 'really', "don't", 'need', 'any', 'money', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'please', '||dash||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'want', '||dash||', '||return||', '||return||', 'jerry:', "it's", 'not', 'necessary', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||comma||', 'would', 'you', 'please', 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||comma||', 'i', "can't", 'take', 'it', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'want', 'you', 'to', 'have', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||comma||', 'i', "don't", 'want', 'to', 'have', 'it', '||exclammark||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||comma||', 'take', 'the', 'money', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'it', '||exclammark||', '||exclammark||', '||return||', '||return||', 'high', 'pitched', 'voice:', 'jerry', '||comma||', 'open', 'up', '||period||', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'kramer:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'it', 'sounds', 'like', 'the', 'friend', 'of', "elaine's", 'that', 'was', 'hitting', 'on', 'me', 'in', 'the', 'book', 'store', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "i'll", 'take', 'care', 'of', 'it', '||period||', '||return||', '||return||', 'dan:', 'is', 'jerry', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', "can't", 'be', 'disturbed', 'now', '||period||', '||return||', '||return||', 'dan:', 'well', 'this', 'situation', 'is', 'driving', 'me', 'crazy', '||period||', "he's", 'all', 'i', 'think', 'about', '||period||', 'i', "can't", 'get', 'him', 'out', 'of', 'my', 'mind', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'sorry', '||period||', 'i', 'mean', '||comma||', 'i', 'know', 'what', "it's", 'like', 'to', 'be', 'in', 'love', '||period||', 'ties', 'you', 'up', 'in', 'knots', '||period||', 'and', 'jerry', 'is', 'a', 'very', 'sexy', 'man', '||period||', '||return||', '||return||', 'dan:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', "i'm", 'not', 'judging', 'you', '||period||', 'in', 'fact', '||comma||', 'we', 'here', 'at', 'pbs', '||comma||', 'we', 'have', 'many', 'programs', 'celebrating', 'your', 'lifestyle', '||period||', 'armistead', "maupin's", 'tales', 'of', 'the', 'city', '||comma||', 'gender', 'bending', 'and', 'swinging', 'in', 'san', 'francisco', '||period||', 'before', 'stonewall', 'about', 'those', 'dark', 'ages', 'when', 'you', "couldn't", 'come', 'out', 'of', 'the', 'closet', '||comma||', 'lest', 'you', 'be', 'persecuted', 'because', 'of', 'your', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'dan:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'kristin:', '||leftparen||', 'running', 'up', '||rightparen||', 'are', 'you', 'danny', 'tartabull', '||questionmark||', '||return||', '||return||', 'dan:', 'no', '||comma||', "i'm", 'not', '||period||', '||return||', '||return||', 'george:', "i'll", 'take', 'care', 'of', 'this', '||comma||', 'danny', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', '||return||', '||return||', 'man:', "what's", 'the', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'believe', 'you', 'cut', 'me', 'off', '||comma||', 'and', 'then', 'made', 'an', 'obscene', 'gesture', '||period||', '||return||', '||return||', 'man:', 'i', 'did', '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', 'george:', 'outside', 'of', 'manhattan', '||comma||', 'about', 'an', 'hour', 'ago', '||period||', '||return||', '||return||', 'man:', 'wow', '||exclammark||', 'is', 'that', 'danny', 'tartabull', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||comma||', 'of', 'the', 'new', 'york', 'yankees', '||period||', '||return||', '||return||', 'man:', "i'd", 'like', 'to', 'shake', 'his', 'hand', 'but', 'i', "can't", '||period||', '||return||', '||return||', 'jerry:', "i'm", 'jerry', 'seinfeld', '||comma||', 'i', 'tell', 'jokes', 'for', 'a', 'living', '||comma||', 'but', "there's", 'no', 'joking', 'about', 'the', 'financial', 'crisis', 'here', 'at', 'pbs', '||period||', 'our', 'lines', 'are', 'open', '||comma||', 'so', 'please', 'call', 'the', 'number', 'you', 'see', 'on', 'your', 'screen', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'the', 'only', 'time', 'this', 'year', "we'll", 'be', 'asking', 'for', 'donations', '||period||', "you've", 'been', 'enjoying', 'ken', "burns'", 'baseball', '||dash||', '||return||', '||return||', 'kramer:', '||leftparen||', 'answering', '||rightparen||', 'pbs', 'pledge', 'drive', '||period||', '||return||', '||return||', 'nana:', 'hello', '||comma||', "i'd", 'like', 'to', 'speak', 'with', 'jerry', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'again', '||period||', 'buddy', '||comma||', 'look', '||comma||', 'forget', 'about', 'jerry', '||period||', "it's", 'not', 'gonna', 'happen', '||period||', '||return||', '||return||', 'nana:', 'this', 'is', 'his', 'grandmother', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'uh', '||comma||', 'nana', '||period||', 'hello', '||period||', '||return||', '||return||', 'nana:', 'tell', 'jerry', "i'm", 'sorry', '||comma||', "i'm", 'going', 'to', 'have', 'to', 'write', 'him', 'some', 'new', 'checks', '||period||', '||return||', '||return||', 'kramer:', 'as', 'long', 'as', "you've", 'got', 'your', 'checkbook', 'out', '||comma||', 'how', 'about', 'forking', 'a', 'little', 'over', 'to', 'pbs', '||questionmark||', 'you', 'watch', 'the', 'station', '||comma||', "don't", 'you', '||questionmark||', 'you', "don't", 'want', 'to', 'be', 'a', 'freeloader', '||period||', '||return||', '||return||', 'jerry:', '||dash||', 'programs', 'like', 'ken', "burns'", 'baseball', '||period||', 'and', 'if', 'danny', 'tartabull', 'were', 'here', '||comma||', "i'm", 'sure', "he'd", 'say', '||comma||', "'that's", 'correct', '||comma||', 'jerry', '||period||', "'", '||return||', '||return||', 'kramer:', 'jerry', '||questionmark||', 'i', 'have', 'an', 'announcement', '||period||', 'your', 'grandmother', 'is', 'on', 'the', 'line', '||period||', '||return||', '||return||', 'jerry:', 'my', 'nana', '||questionmark||', '||return||', '||return||', 'kramer:', 'and', 'as', 'we', 'speak', '||comma||', "she's", 'generously', 'writing', 'pbs', 'a', 'check', 'for', 'fifteen', 'hundred', 'dollars', '||exclammark||', '||return||', '||return||', 'uncle', 'leo:', 'she', "can't", 'do', 'that', '||comma||', "she's", 'on', 'a', 'very', 'fixed', 'income', '||exclammark||', 'stop', 'the', 'show', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'another', 'card', 'from', 'kristin', '||period||', 'not', 'quite', 'as', 'chipper', 'as', 'the', 'first', 'one', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||period||', "isn't", 'this', 'little', 'bunny', 'giving', 'you', 'the', '||dash||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'he', 'is', '||period||', '||return||', '||return||', 'elaine:', 'you', 'should', 'show', 'this', 'to', 'georgie', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'waitress:', '||leftparen||', 'at', 'the', 'next', 'table', '||rightparen||', "here's", 'your', 'knife', 'and', 'fork', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', "she's", 'cutting', 'up', 'an', 'almond', 'joy', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', "don't", 'get', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'saw', 'someone', 'on', 'the', 'street', 'eating', 'm&ms', 'with', 'a', 'spoon', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'wrong', 'with', 'everybody', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surveying', 'the', 'restaurant', '||rightparen||', 'look', '||comma||', "they're", 'doing', 'it', '||period||', "they're", 'all', 'doing', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'standing', 'up', '||rightparen||', 'what', 'is', 'wrong', 'with', 'all', 'you', 'people', '||questionmark||', '||exclammark||', 'have', 'you', 'all', 'gone', 'mad', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'i', 'think', 'the', 'thing', 'i', 'admire', 'most', 'about', 'the', 'chinese', 'is', 'that', "they're", 'hanging', 'in', 'there', 'with', 'the', 'chopsticks', '||period||', 'because', '||comma||', 'if', 'you', 'think', 'about', 'it', '||comma||', 'you', 'know', '||comma||', "they've", 'seen', 'the', 'fork', '||period||', '||period||', '||period||', 'by', 'now', '||period||', "i'm", 'sure', "they've", 'seen', 'the', 'spoon', '||comma||', "they're", 'going', '||comma||', '||quotemark||', 'yeah', '||comma||', 'yeah', '||comma||', "they're", 'ok', '||period||', '||period||', '||period||', "we're", 'going', 'to', 'stay', 'with', 'the', 'sticks', '||period||', '||quotemark||', 'i', 'mean', '||comma||', 'i', "don't", 'know', 'how', "they've", 'missed', 'it:', 'thousands', 'of', 'years', 'ago', '||comma||', 'chinese', 'farmer', 'gets', 'up', '||comma||', 'has', 'his', 'breakfast', 'with', 'the', 'chopsticks', '||comma||', 'goes', 'out', 'and', 'works', 'all', 'day', 'in', 'the', 'field', 'with', 'a', 'shovel', '||period||', '||period||', '||period||', 'hello', '||questionmark||', '||period||', '||period||', '||period||', 'shovel', '||exclammark||', 'not', 'going', 'out', 'there', 'ploughing', '40', 'acres', 'with', 'a', 'couple', 'of', 'pool', 'cues', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'feeling', 'face', '||rightparen||', 'good', 'shave', 'today', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastic', '||rightparen||', "don't", 'worry', '||comma||', 'jerry', '||comma||', 'i', 'can', 'manage', 'these', 'bags', '||semicolon||', 'really', "i'm", 'fine', '||period||', '||return||', '||return||', 'jerry:', "i'm", "thinkin'", 'of', "lettin'", 'my', 'sideburns', 'grow', 'in', 'a', 'little', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'can', 'we', 'rest', 'here', 'a', 'second', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'yeah', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'so', "how's", 'noreen', '||questionmark||', '||return||', '||return||', 'elaine:', 'mmm', '||exclammark||', "she's", 'got', 'a', 'new', 'boyfriend', 'paul', '||period||', '||return||', '||return||', 'jerry:', 'already', '||questionmark||', 'that', 'was', 'fast', '||period||', '||period||', '||period||', 'i', 'assume', "he's", 'not', 'a', 'high', 'talker', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', '||period||', '||period||', '||period||', 'he', 'has', '||period||', '||period||', '||period||', 'the', 'worst', 'habit', '||period||', 'whenever', 'he', 'answers', 'the', 'phone', '||comma||', 'he', "won't", 'put', 'noreen', 'right', 'on', '||period||', 'ya', "have'ta", 'go', 'through', '||comma||', 'like', '||comma||', 'ten', 'minutes', 'of', 'chit', '||dash||', 'chat', '||period||', '||return||', '||return||', 'jerry:', 'a', 'long', 'talker', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', 'and', 'he', 'is', 'so', 'boring', '||exclammark||', 'but', 'now', '||comma||', 'whenever', 'he', 'answers', 'the', 'phone', 'i', 'just', 'hang', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'all', 'right', '||semicolon||', "let's", 'move', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "isn't", 'that', "george's", 'father', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'it', 'is', '||exclammark||', 'shall', 'we', 'say', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'never', 'seen', 'him', 'in', 'manhattan', 'before', '||semicolon||', "it's", 'weird', '||period||', 'so', 'out', 'of', 'context', '||period||', '||return||', '||return||', 'elaine:', 'that', 'man', "he's", 'with', 'is', 'he', 'wearing', 'a', 'cape', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'believe', 'he', 'is', 'wearing', 'a', 'cape', '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'mr', '||period||', 'costanza', 'with', 'a', 'man', 'in', 'a', 'cape', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'is', 'good', 'cape', 'weather', '||period||', 'cool', '||period||', 'breezy', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'why', 'a', 'cape', '||questionmark||', 'who', 'wears', 'a', 'cape', '||questionmark||', 'where', 'do', 'you', 'even', 'get', 'a', 'cape', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'right', '||semicolon||', 'it', 'is', 'strange', '||period||', 'in', 'fact', '||comma||', "let's", 'cross', 'to', 'the', 'other', 'side', 'of', 'the', 'street', '||period||', 'cover', 'me', '||period||', '||return||', '||return||', 'jerry:', 'just', '||comma||', 'uh', '||comma||', 'plop', 'it', 'on', 'the', 'counter', 'there', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'i', 'got', 'a', 'message', '||period||', '||leftparen||', 'presses', 'button', 'on', 'answer', 'machine', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'tape', '||comma||', 'lifeless', '||rightparen||', 'hey', '||comma||', "it's", 'george', '||period||', 'i', 'got', "nothin'", 'to', 'say', '||period||', '||period||', '||period||', '||leftparen||', 'beep', '||rightparen||', '||return||', '||return||', 'elaine:', 'that', 'sounds', 'urgent', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'call', 'him', 'back', '||period||', '||period||', '||period||', 'hello', '||questionmark||', 'who', 'is', 'this', '||questionmark||', 'donna', 'chang', '||questionmark||', 'oh', '||comma||', "i'm", 'sorry', '||comma||', 'i', 'must', "o'", 'dialed', 'the', 'wrong', 'number', '||period||', '||return||', '||return||', 'elaine:', 'donna', 'chang', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'is', 'redialing', '||rightparen||', 'i', "should've", 'talked', 'to', 'her', '||semicolon||', 'i', 'love', 'chinese', 'women', '||period||', '||return||', '||return||', 'elaine:', "isn't", 'that', 'a', 'little', 'racist', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'i', 'like', 'their', 'race', '||comma||', 'how', 'can', 'that', 'be', 'racist', '||questionmark||', '||period||', '||period||', '||period||', 'hellooo', '||questionmark||', '||questionmark||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'is', 'this', 'donna', 'chang', 'again', '||questionmark||', '||exclammark||', '||period||', '||period||', '||period||', 'yyy', '||dash||', 'yes', '||comma||', 'i', 'am', 'calling', 'george', '||period||', '||period||', '||period||', 'oh', '||comma||', 'the', 'lines', 'are', 'crossed', '||exclammark||', "you're", 'getting', 'his', 'calls', '||period||', 'well', '||comma||', 'what', 'do', 'you', 'know', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'listen', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', "i'm", "goin'", 'through', 'this', 'stuff', 'like', 'water', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'who', 'you', "talkin'", 'to', '||questionmark||', '||leftparen||', 'jerry', 'waves', 'him', 'away', 'and', 'moves', 'towards', 'the', 'bedroom', '||comma||', 'still', 'on', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'elaine:', "he's", 'on', 'with', 'a', 'chinese', 'woman', '||period||', '||return||', '||return||', 'kramer:', 'oooo', '||comma||', 'ooooo', '||period||', 'you', 'know', '||comma||', 'i', 'dig', 'asian', 'women', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'a', 'comfort', 'problem', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'think', 'these', 'jockeys', 'shrunk', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'wore', 'silk', 'underwear', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'n', '||dash||', '||dash||', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'wore', "'em", 'for', 'about', 'a', 'month', 'but', 'i', "couldn't", 'stick', 'with', 'it', '||period||', 'no', '||comma||', 'i', 'need', 'the', 'secure', 'packaging', 'of', 'jockeys', '||period||', '||leftparen||', "he's", 'serious', '||period||', 'then', 'he', 'makes', 'a', 'hand', 'gesture', 'of', 'grabbing', 'up', '||rightparen||', 'my', 'boys', 'need', 'a', 'house', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'charmed', '||rightparen||', "that's", 'nice', '||period||', 'listen', '||comma||', 'kramer', '||comma||', 'you', 'know', '||comma||', 'if', 'you', 'ever', 'want', 'to', 'have', 'kids', 'you', "shouldn't", 'wear', 'briefs', '||period||', 'boxers', 'are', 'much', 'better', 'for', 'your', 'sperm', 'count', '||period||', '||return||', '||return||', 'kramer:', 'sperm', 'count', '||questionmark||', 'well', 'how', 'many', 'ssssperm', 'should', 'i', 'have', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'lot', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'a', 'date', '||exclammark||', '||return||', '||return||', 'elaine:', 'with', 'the', 'chinese', 'woman', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'knew', 'who', 'i', 'was', '||exclammark||', 'she', 'saw', 'me', 'in', 'a', 'club', 'one', 'time', '||exclammark||', 'my', 'first', 'date', 'ever', 'with', 'the', 'pacific', 'rim', '||period||', "i'm", 'very', 'excited', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', 'did', 'ya', 'ever', 'have', 'your', 'sperm', 'count', 'checked', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'why', 'should', 'i', '||questionmark||', 'i', 'wear', 'boxers', '||period||', '||return||', '||return||', 'kramer:', 'you', 'ever', 'get', 'a', 'woman', 'pregnant', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'kramer', '||period||', 'those', 'records', 'are', 'permanently', 'sealed', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', 'would', 'you', 'say', 'if', 'i', 'told', 'you', 'i', 'never', 'impregnated', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'you', 'never', 'slipped', 'one', 'past', 'the', 'goalie', 'in', 'all', 'these', 'years', '||questionmark||', '||questionmark||', '||period||', '||period||', '||period||', 'boy', '||comma||', "i'm", 'surprised', '||period||', "you've", 'slept', 'with', 'a', 'lot', 'of', 'women', '||exclammark||', '||return||', '||return||', 'kramer:', 'a', 'lot', 'of', "'em", '||exclammark||', '||leftparen||', 'wild', 'gesture', '||comma||', 'freaked', 'out', '||rightparen||', 'do', 'you', 'think', 'maybe', "i'm", '||period||', '||period||', '||period||', 'depleted', '||questionmark||', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'sure', "you're", 'not', '||period||', '||period||', '||period||', 'totally', 'depleted', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'but', 'what', 'if', 'i', 'am', '||questionmark||', "i'm", 'the', 'last', '||period||', '||period||', '||period||', 'male', 'kramer', '||exclammark||', "we're", 'facing', 'extinction', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'go', 'to', 'a', 'fertility', 'clinic', '||period||', 'have', 'your', 'sperm', 'count', 'checked', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'then', "i'd", 'have', 'to', '||period||', '||period||', '||period||', '||leftparen||', 'glances', 'at', 'elaine', '||rightparen||', 'well', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'into', 'a', 'cup', 'in', 'the', 'middle', 'of', 'the', 'day', '||questionmark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'does', 'that', 'conflict', 'with', 'your', 'regular', 'schedule', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'going', 'to', 'the', 'phone', '||rightparen||', 'all', 'right', '||period||', "i'm", 'gonna', 'try', 'noreen', 'again', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'very', 'excited', 'about', 'this', 'date', '||exclammark||', "we're", "goin'", 'to', 'hunan', 'balcony', '||exclammark||', '||return||', '||return||', 'elaine:', "she's", 'chinese', 'so', 'you', 'suggest', 'chinese', 'food', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'suggested', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'chinese', "don't", 'eat', 'chinese', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "she's", 'very', 'assimilated', '||period||', '||return||', '||return||', 'jerry:', 'paul', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'matter', 'of', 'fact', '||rightparen||', 'you', "can't", 'get', 'one', 'ring', 'past', 'him', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', 'you', "don't", 'call', 'me', 'back', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'tried', '||exclammark||', 'your', "line's", 'crossed', 'with', 'a', 'chinese', 'woman', '||exclammark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'george', '||comma||', 'we', 'saw', 'your', 'father', 'on', 'the', 'street', 'before', '||period||', '||return||', '||return||', 'george:', 'hmm', '||comma||', "what's", 'he', "doin'", 'in', 'the', 'city', 'today', '||questionmark||', '||return||', '||return||', 'george:', 'you', "didn't", 'ask', 'him', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'suspicious', '||rightparen||', 'you', "didn't", 'say', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', 'was', 'with', 'someone', '||period||', 'a', 'man', '||period||', '||period||', '||period||', 'in', 'a', 'cape', '||period||', '||return||', '||return||', 'george:', 'why', 'was', 'he', 'wearing', 'a', 'cape', '||questionmark||', '||return||', '||return||', 'george:', 'was', 'my', 'father', 'wearing', 'a', 'cape', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'jacket', 'and', 'tie', 'no', 'cape', '||period||', '||return||', '||return||', 'george:', 'huh', '||period||', '||period||', '||period||', 'cape', '||period||', '||period||', '||period||', '||leftparen||', 'turns', '||comma||', 'distracted', '||comma||', 'heads', 'slowly', 'towards', 'door', '||rightparen||', 'what', 'was', 'a', 'man', 'with', 'a', 'cape', "doin'", 'with', 'my', 'father', '||questionmark||', '||period||', '||period||', '||period||', 'what', 'was', 'my', 'father', 'doing', 'with', 'a', 'man', 'in', 'a', 'cape', '||questionmark||', '||period||', '||period||', '||period||', '||leftparen||', 'opens', 'door', '||rightparen||', 'why', 'a', 'cape', '||questionmark||', 'hmm', '||exclammark||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'doctor:', 'the', 'results', 'of', 'your', 'sperm', 'test', 'are', 'in', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||questionmark||', '||return||', '||return||', 'doctor:', 'ummm', '||period||', '||period||', '||period||', 'are', 'you', 'planning', 'to', 'start', 'a', 'family', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', 'i', 'would', 'like', 'to', 'very', 'much', '||exclammark||', '||period||', '||period||', '||period||', 'well', '||comma||', "i'm", 'low', '||comma||', "aren't", 'i', '||questionmark||', 'i', 'ca', '||dash||', '||dash||', 'i', 'can', 'feel', 'it', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'doctor:', 'yes', '||comma||', "i'm", 'afraid', "you're", 'a', 'little', 'low', '||period||', '||return||', '||return||', 'kramer:', 'ohhh', '||comma||', 'maaan', '||exclammark||', '||exclammark||', "it's", 'over', '||exclammark||', 'the', 'kramer', 'name', 'is', 'finished', '||exclammark||', "i'm", 'never', "goin'", 'to', 'procreate', '||dash||', '||dash||', '||return||', '||return||', 'doctor:', 'ah', '||dash||', '||dash||', "that's", 'not', 'necessarily', 'true', '||period||', '||return||', '||return||', 'kramer:', 'what', '||return||', '||return||', 'doctor:', 'there', 'are', 'measures', 'you', 'can', 'take', 'to', 'improve', 'your', 'fertility', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'what', '||period||', 'what', '||period||', 'you', 'tell', 'me', '||semicolon||', "i'll", 'do', 'anything', '||period||', 'come', 'on', '||comma||', 'doc', '||comma||', 'tell', 'me', '||period||', '||return||', '||return||', 'doctor:', 'first', 'thing', 'you', 'should', 'wear', 'boxer', 'shorts', '||period||', '||return||', '||return||', 'kramer:', 'all', 'the', 'time', '||questionmark||', '||return||', '||return||', 'doctor:', 'all', 'the', 'time', '||period||', 'ya', 'have', 'to', 'get', 'off', 'jockeys', 'right', 'away', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', "i've", 'always', 'worn', 'jockeys', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'paul', '||exclammark||', "it's", 'elaine', 'calling', '||exclammark||', 'yeah', '||comma||', "i'm", 'calling', 'from', 'a', 'car', 'phone', 'so', 'i', "don't", 'really', 'have', 'time', 'to', 'talk', '||period||', 'is', '||comma||', 'is', '||comma||', 'uh', '||comma||', 'noreen', 'there', '||questionmark||', '||exclammark||', '||period||', '||period||', '||period||', 'oh', '||period||', "she's", 'not', '||questionmark||', '||exclammark||', '||leftparen||', 'hurries', 'to', 'put', 'phone', 'down', '||rightparen||', 'okay', '||comma||', 'great', '||period||', 'well', 'you', 'can', 'just', 'tell', 'her', 'i', 'called', '||comma||', 'then', '||comma||', "an'", '||dash||', '||dash||', 'well', '||comma||', 'yes', '||period||', 'it', 'has', 'been', 'unseasonably', 'cool', 'lately', '||period||', '||period||', '||period||', 'oh', '||comma||', 'okay', '||comma||', 'well', '||comma||', 'look', "i'm", 'pulling', 'up', 'to', 'the', 'building', 'now', '||period||', 'so', '||comma||', "i'm", 'gonna', '||period||', '||period||', '||period||', '||leftparen||', 'a', 'little', 'later', '||comma||', 'elaine', 'is', 'sitting', 'and', 'looking', 'very', 'bored', '||rightparen||', 'yeah', '||comma||', 'i', 'took', '20%', 'too', '||period||', '||period||', '||period||', 'um', '||period||', 'look', 'it', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'turns', 'hair', 'dryer', 'on', 'and', 'off', '||rightparen||', 'paul', '||period||', 'the', '||period||', '||period||', '||period||', 'car', 'seems', 'to', 'be', 'running', 'out', 'of', 'gas', 'so', '||period||', '||period||', '||period||', "i'm", 'gonna', '||period||', '||period||', '||period||', 'have', 'to', 'get', 'off', 'the', 'phone', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'hostess:', 'please', 'let', 'me', 'know', 'when', 'the', 'rest', 'of', 'your', 'party', 'has', 'arrived', '||comma||', 'sir', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'will', '||period||', '||return||', '||return||', 'guy:', '||leftparen||', 'indicating', 'a', 'cigarette', '||rightparen||', 'do', 'you', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'go', 'ahead', '||comma||', 'i', 'second', '||dash||', 'hand', 'smoke', 'two', 'packs', 'a', 'day', '||period||', '||return||', '||return||', 'donna:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||period||', 'stops', 'tapping', 'his', 'leg', '||rightparen||', "'scuse", 'me', '||questionmark||', '||return||', '||return||', 'donna:', 'hi', '||period||', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'jerry:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'donna:', "i'm", 'donna', 'chang', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stands', '||comma||', 'puzzled', '||comma||', "it's", 'not', 'sinking', 'in', '||rightparen||', 'w', '||dash||', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'donna:', 'i', 'mean', "i'm", 'donna', 'chang', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', "you're", 'donna', 'chang', '||questionmark||', '||return||', '||return||', 'donna:', 'did', 'you', 'think', 'i', 'was', 'chinese', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'no', '||period||', 'what', '||comma||', 'you', 'mean', 'because', 'of', 'the', '||quotemark||', 'chang', '||quotemark||', '||questionmark||', '||return||', '||return||', 'donna:', 'actually', '||comma||', 'the', 'family', 'name', "wasn't", 'originally', 'chang', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'think', 'so', '||period||', '||return||', '||return||', 'donna:', 'used', 'to', 'be', '||quotemark||', 'changstein', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', "she's", 'not', 'chinese', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'not', 'chinese', '||period||', 'not', 'even', 'asian', '||period||', '||return||', '||return||', 'elaine:', 'so', '||period||', 'what', 'is', 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "she's", '||period||', '||period||', '||period||', 'like', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||comma||', 'annoyed', '||rightparen||', 'oh', '||comma||', 'how', 'disappointed', 'you', 'must', 'have', 'been', '||period||', '||leftparen||', 'walks', 'to', 'couch', '||comma||', 'with', 'her', 'cereal', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'false', 'advertising', '||comma||', 'see', '||questionmark||', 'and', 'the', 'thing', 'is', '||comma||', 'i', 'think', 'she', 'likes', 'people', "thinkin'", "she's", 'chinese', '||period||', 'she', 'suggests', 'chinese', 'food', '||period||', 'she', 'always', 'introduces', 'herself', 'as', '||quotemark||', 'donna', 'chang', '||quotemark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', 'then', 'why', 'are', 'you', 'seeing', 'her', 'again', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'she', 'is', 'a', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'i', 'spoke', 'to', 'paul', "an'", 'noreen', '||period||', 'they', 'might', 'be', "breakin'", 'up', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||leftparen||', 'sits', 'on', 'couch', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "wouldn't", 'it', 'be', 'funny', 'if', 'paul', "an'", 'noreen', 'broke', 'up', 'because', "o'", 'you', 'kept', "hangin'", 'up', 'on', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', 'if', 'paul', 'thought', 'it', 'was', 'some', 'guy', '||period||', '||period||', '||period||', "hangin'", 'up', 'because', 'he', 'was', 'having', 'an', 'affair', 'with', 'noreen', '||questionmark||', '||return||', '||return||', 'kramer:', 'here', '||comma||', 'take', 'my', 'jockey', 'shorts', '||period||', '||return||', '||return||', 'elaine:', 'whoa', '||exclammark||', 'whoa', '||exclammark||', '||return||', '||return||', 'jerry:', 'here', '||comma||', 'what', 'is', 'that', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'you', 'gotta', 'help', 'me', '||period||', 'i', 'have', 'to', 'get', 'off', 'jockey', 'shorts', '||period||', '||return||', '||return||', 'jerry:', 'wha', '||dash||', '||dash||', 'you', 'have', 'a', 'low', 'sperm', 'count', '||questionmark||', '||return||', '||return||', 'kramer:', 'very', 'low', '||exclammark||', 'come', 'on', '||comma||', 'jerry', '||period||', 'take', "'em", '||period||', '||return||', '||return||', 'jerry:', 'nnnoo', '||dash||', '||dash||', 'i', "don't", 'want', "'em", '||period||', '||leftparen||', 'starts', 'backing', 'away', 'as', 'kramer', 'follows', 'him', 'around', 'the', 'room', 'carrying', 'the', 'underwear', '||rightparen||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'look', '||exclammark||', 'you', 'gotta', 'help', 'me', '||exclammark||', 'i', "can't", 'have', "'em", 'near', 'me', '||exclammark||', 'if', 'i', 'have', 'one', 'pair', 'in', 'my', 'house', '||comma||', "i'm", 'gonna', 'wear', 'them', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||exclammark||', 'i', "don't", 'want', "'em", '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'it', 'takes', 'is', 'one', 'pair', '||exclammark||', 'now', '||comma||', 'come', 'on', '||exclammark||', 'j', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'gonna', 'be', 'able', 'to', 'sleep', 'if', 'those', 'are', 'in', 'the', 'house', '||exclammark||', '||return||', '||return||', 'kramer:', 'boxers', '||exclammark||', 'how', 'do', 'you', 'wear', 'these', 'things', '||exclammark||', '||exclammark||', 'look', 'at', 'that', '||dash||', '||dash||', "they're", "baggin'", 'up', '||comma||', "they're", 'rising', 'in', '||exclammark||', "an'", "there's", 'nothing', 'holding', 'me', 'in', 'place', '||exclammark||', "i'm", "flippin'", '||exclammark||', "i'm", "floppin'", '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'am', 'i', 'gonna', 'do', '||exclammark||', '||questionmark||', 'jerry', '||exclammark||', "i'm", "goin'", 'crazy', 'in', 'these', 'things', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 're', 'the', 'underwear', 'pile', '||rightparen||', 'well', '||comma||', "i'm", 'gonna', 'have', 'to', 'move', 'now', '||period||', '||return||', '||return||', 'frank:', 'ya', 'know', 'what', 'i', 'like', 'about', 'manhattan', '||questionmark||', "there's", 'no', 'mosquitoes', '||period||', '||return||', '||return||', 'george:', 'plenty', 'of', 'mosquitoes', '||period||', '||return||', '||return||', 'frank:', 'queens', 'is', 'full', 'of', 'mosquitoes', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'dad', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'gnats', '||comma||', 'too', '||period||', 'if', "i'm", 'not', 'mistaken', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pause', '||rightparen||', 'dad', '||exclammark||', 'i', 'heard', 'you', 'were', 'in', 'the', 'city', 'the', 'other', 'day', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'angry', '||rightparen||', 'your', 'mother', 'has', 'to', 'tell', 'you', 'every', 'move', 'i', 'make', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', 'and', 'elaine', 'saw', 'you', '||period||', '||return||', '||return||', 'frank:', 'they', "didn't", 'say', 'hello', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'they', 'were', 'in', 'a', 'rush', '||period||', '||return||', '||return||', 'frank:', 'they', "couldn't", 'just', 'say', 'hello', '||questionmark||', '||exclammark||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'to', 'hell', 'with', 'them', '||period||', '||return||', '||return||', 'george:', 'they', '||comma||', 'uh', '||period||', '||period||', '||period||', 'said', 'you', 'were', 'with', 'some', 'guy', 'who', 'was', 'wearing', 'a', 'cape', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'elaine', '||comma||', 'i', 'can', 'see', '||comma||', 'not', "sayin'", 'hello', '||period||', "she's", 'very', '||dash||', '||dash||', "what's", 'the', 'word', '||dash||', '||dash||', 'uh', '||comma||', 'supercilious', '||period||', '||return||', '||return||', 'george:', 'so', 'dad', '||comma||', '||dash||', '||dash||', '||return||', '||return||', 'frank:', '||leftparen||', 'shouting', 'and', 'clapping', 'hands', 'in', 'anger', '||rightparen||', 'how', 'could', 'jerry', 'not', 'say', 'hello', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'they', 'uncross', 'the', 'lines', 'yet', '||questionmark||', '||return||', '||return||', 'donna:', 'no', '||comma||', 'they', "can't", 'find', 'the', 'problem', '||period||', "it's", 'really', 'getting', 'ridicurous', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'long', 'pause', '||dash||', '||dash||', 'did', 'he', 'hear', '||quotemark||', 'ridicurous', '||quotemark||', '||dash||', '||dash||', 'should', 'he', 'say', 'something', '||dash||', '||dash||', "can't", 'decide', 'if', 'he', 'should', '||period||', 'finally', '||period||', '||period||', '||period||', '||rightparen||', 'did', 'you', 'say', '||comma||', '||quotemark||', 'ridicurous', '||quotemark||', '||questionmark||', '||return||', '||return||', 'donna:', 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'i', 'thought', 'you', 'said', '||period||', '||period||', '||period||', '||quotemark||', 'ridicurous', '||period||', '||quotemark||', '||leftparen||', 'donna', 'looks', 'puzzled', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||dash||', '||dash||', '||leftparen||', 'spots', 'donna', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'wanted', 'to', 'talk', 'to', 'you', '||dash||', '||dash||', "i'm", 'sorry', '||comma||', 'i', '||dash||', '||dash||', "didn't", 'know', 'you', '||period||', '||period||', '||period||', '||leftparen||', 're', 'donna', '||rightparen||', 'had', 'company', '||period||', '||leftparen||', 'jerry', 'indicates', 'he', 'should', 'stay', '||rightparen||', 'hiya', '||comma||', "i'm", 'george', '||period||', '||return||', '||return||', 'donna:', 'oh', '||exclammark||', 'hi', '||exclammark||', '||leftparen||', 'they', 'shake', 'hands', '||rightparen||', "i'm", 'donna', 'chang', '||period||', '||leftparen||', 'george', 'to', 'himself', 'registers', 'that', 'as', 'weird', '||period||', 'he', 'and', 'jerry', 'exchange', 'sideways', 'glances', '||rightparen||', 'i', 'just', 'spoke', 'to', 'your', 'mother', 'before', '||period||', '||return||', '||return||', 'george:', 'you', 'spoke', 'to', 'my', 'mother', '||questionmark||', '||return||', '||return||', 'donna:', 'she', 'was', 'trying', 'to', 'call', 'you', '||comma||', 'but', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'the', 'rines', 'are', 'crossed', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'say', '||comma||', '||quotemark||', 'the', 'rines', 'are', 'crossed', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'did', 'i', '||questionmark||', '||return||', '||return||', 'donna:', '||leftparen||', 'pause', '||rightparen||', 'george', '||comma||', "she's", 'so', 'sweet', '||period||', 'we', 'talked', 'for', 'an', 'hour', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'smile', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'donna:', 'anyway', '||comma||', "i'm", 'really', 'sorry', '||period||', '||return||', '||return||', 'george:', 'sorry', '||questionmark||', 'why', 'sorry', '||questionmark||', 'what', 'you', 'got', 'to', 'be', 'sorry', 'about', '||questionmark||', '||return||', '||return||', 'donna:', 'well', '||comma||', 'she', 'told', 'me', 'she', 'and', 'your', 'father', 'are', 'getting', 'divorced', '||period||', '||return||', '||return||', 'elaine:', 'ay', '||comma||', 'divorced', '||period||', "that's", 'really', 'too', 'bad', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'know', "it's", 'a', 'shame', 'his', 'parents', "didn't", 'get', 'divorced', 'thirty', 'years', 'ago', '||period||', 'he', 'could', 'have', 'been', 'normal', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||exclammark||', '||leftparen||', 'coming', 'out', 'of', 'bathroom', '||rightparen||', 'you', 'know', 'what', 'i', 'just', 'realized', '||questionmark||', '||exclammark||', 'if', 'they', 'get', 'divorced', "an'", 'live', 'in', 'two', 'separate', 'places', '||questionmark||', "that's", 'twice', 'as', 'many', 'visits', '||exclammark||', '||return||', '||return||', 'jerry:', 'gee', '||comma||', 'i', 'never', 'thought', 'of', 'that', '||period||', '||return||', '||return||', 'george:', 'imagine', 'if', 'i', 'had', 'to', 'see', 'them', 'both', 'on', 'the', 'same', 'day', '||questionmark||', '||leftparen||', 'mirthless', '||rightparen||', 'haha', '||exclammark||', "it's", 'like', "runnin'", 'a', 'double', 'marathon', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', 'georgie', '||comma||', 'did', 'you', 'have', 'any', 'idea', 'that', 'anything', 'was', 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'you', 'ever', 'spent', 'any', 'time', 'with', 'these', 'people', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'this', 'has', 'to', 'do', 'with', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'man', 'in', 'the', 'cape', '||dash||', '||dash||', 'i', 'bet', 'you', 'he', 'is', 'mixed', 'up', 'in', 'this', '||exclammark||', 'i', "don't", 'trust', 'men', 'in', 'capes', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', "can't", 'cast', 'aspersions', 'on', 'someone', 'just', 'because', "they're", "wearin'", 'a', 'cape', '||period||', '||period||', '||period||', 'superman', 'wore', 'a', 'cape', '||period||', '||period||', '||period||', "an'", "i'll", 'be', 'damned', 'if', "i'm", 'gonna', 'stand', 'here', "an'", 'let', 'you', 'say', 'something', 'bad', 'about', 'him', '||period||', '||return||', '||return||', 'george:', 'all', 'right', "superman's", 'the', 'exception', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||exclammark||', 'elaine', '||comma||', 'i', 'just', 'heard', 'that', 'noreen', 'and', 'paul', 'are', 'breaking', 'up', '||period||', 'i', 'want', 'you', 'to', 'put', 'in', 'a', 'good', 'word', 'for', 'me', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', "i've", 'always', 'had', 'a', 'thing', 'for', 'noreen', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'kramer', '||period||', 'you', "don't", 'understand', '||period||', 'this', 'could', 'be', 'my', 'fault', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'if', "she's", 'available', 'now', '||comma||', "i'm", 'not', 'gonna', 'let', 'her', 'slip', 'through', 'my', 'fingers', 'this', 'time', '||period||', 'nooope', '||period||', '||leftparen||', 'does', 'a', 'little', 'dance', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', 'it', 'looks', 'like', "you've", 'adjusted', 'to', 'the', 'boxers', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'wellll', '||comma||', 'i', "wouldn't", 'go', 'as', 'far', 'as', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', 'went', 'back', 'to', 'the', 'jockeys', '||questionmark||', '||return||', '||return||', 'kramer:', 'wrong', 'again', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', 'as', 'he', 'realizes', '||rightparen||', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'see', "what's", "goin'", 'on', 'here', '||questionmark||', '||questionmark||', '||questionmark||', '||period||', '||period||', '||period||', 'no', 'boxers', '||comma||', 'no', 'jockeys', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'backing', 'away', 'from', 'kramer', '||rightparen||', 'eeaawww', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'the', 'only', 'thing', 'between', 'him', 'and', 'us', 'is', 'a', 'thin', 'layer', 'of', 'gabardine', '||period||', '||period||', '||period||', 'kramer', '||comma||', 'say', 'it', "isn't", 'so', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'it', 'be', 'so', '||period||', "i'm", 'out', 'there', '||comma||', 'jerry', '||comma||', "an'", "i'm", "lllovin'", 'every', 'minute', 'of', 'it', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', "don't", 'you', 'need', 'a', 'little', '||period||', '||period||', '||period||', 'help', '||questionmark||', '||return||', '||return||', 'kramer:', 'surprisingly', '||comma||', 'no', '||period||', "i'm", 'freee', '||comma||', "i'm", 'unfettered', '||period||', '||period||', '||period||', '||leftparen||', 'opens', 'door', 'to', 'leave', '||comma||', 'still', 'very', 'happy', '||comma||', 'then', '||rightparen||', 'feel', 'like', 'a', 'naked', 'innocent', 'boy', "rrroamin'", 'the', 'countryside', '||exclammark||', '||exclammark||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'you', 'guys', 'are', "tryin'", 'to', 'work', 'it', 'out', '||exclammark||', "that's", 'great', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'noreen:', 'yeah', '||comma||', 'well', '||period||', '||period||', '||period||', "we're", 'trying', '||period||', '||period||', '||period||', 'but', 'he', 'just', 'went', 'insane', 'there', 'for', 'a', 'while', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'he', 'went', 'insane', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'noreen:', 'believe', 'it', 'or', 'not', '||comma||', 'paul', 'was', 'convinced', 'i', 'was', 'having', 'an', 'affair', 'because', 'somebody', 'kept', 'calling', 'and', 'hanging', 'up', 'whenever', 'he', 'answered', '||exclammark||', 'what', 'kind', 'of', 'a', 'sick', 'person', 'calls', 'and', 'hangs', 'up', 'over', 'and', 'over', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'awkward', '||comma||', 'increasingly', 'avoiding', 'eye', 'contact', '||rightparen||', 'well', '||period||', 'uh', '||period||', 'i', "don't", 'know', 'about', 'sick', '||period||', 'i', 'mean', '||comma||', 'maybe', 'it', 'was', 'somebody', 'who', '||comma||', "didn't", 'wanna', 'talk', 'to', 'whoever', 'was', 'answering', 'because', 'whoever', 'was', 'answering', 'was', 'always', 'making', 'boring', 'chit', '||dash||', 'chat', '||comma||', "an'", 'was', 'completely', 'oblivious', 'to', 'the', 'fact', 'that', 'the', 'person', 'who', 'was', 'calling', '||comma||', "didn't", 'want', 'to', 'speak', 'to', 'them', '||comma||', 'ah', '||exclammark||', '||return||', '||return||', 'noreen:', '||leftparen||', 'has', 'been', 'growing', 'increasingly', 'slackjawed', 'in', 'amazement', '||rightparen||', 'i', "can't", 'believe', 'that', 'was', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looks', 'at', 'noreen', '||rightparen||', "i'm", 'really', 'sorry', '||comma||', 'noreen', '||period||', '||period||', '||period||', '||return||', '||return||', 'noreen:', '||leftparen||', 'reconsidering', "paul's", 'worth', '||rightparen||', '||period||', '||period||', '||period||', 'so', 'you', 'thought', 'he', 'was', 'boring', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'noreen', '||comma||', "don't", 'go', 'by', 'me', '||exclammark||', 'ha', 'ha', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', "doin'", 'to', 'this', 'woman', '||questionmark||', '||exclammark||', 'this', 'is', 'the', 'second', 'relationship', "you've", 'ruined', 'for', 'her', 'in', 'a', 'few', 'weeks', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'head', 'in', 'arms', '||rightparen||', 'i', 'know', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'first', 'you', 'ruin', 'her', 'relationship', 'with', 'the', 'high', 'talker', '||period||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', 'i', 'got', 'confused', '||comma||', 'they', 'sound', 'exactly', 'the', 'same', '||period||', '||return||', '||return||', 'jerry:', 'so', 'she', 'breaks', 'up', 'with', 'him', '||period||', 'somehow', 'picks', 'up', 'the', 'pieces', 'of', 'her', 'life', '||period||', 'miraculously', 'meets', '||period||', '||period||', '||period||', 'a', 'new', 'guy', '||exclammark||', 'ya', 'bust', 'that', 'up', '||exclammark||', "an'", 'then', '||comma||', 'just', 'as', "they're", 'reconciling', '||comma||', 'you', 'announce', 'to', 'the', 'world', "he's", 'boring', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'apologetically', '||rightparen||', 'i', "didn't", 'know', "she'd", 'take', 'it', 'so', 'seriously', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'apparently', 'you', 'have', 'a', 'tremendous', 'influence', 'over', 'this', 'woman', 'anything', 'you', 'say', 'she', 'does', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'donna:', "it's", 'donna', 'chang', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hits', 'button', '||rightparen||', 'come', 'on', 'up', '||period||', '||leftparen||', 'opens', 'door', 'a', 'little', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'guess', 'i', 'just', "didn't", 'realize', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "let's", 'look', 'back', 'at', 'your', 'history', 'with', 'this', 'woman', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'like', 'a', 'little', 'girl', '||rightparen||', 'okay', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'first', '||comma||', 'you', 'encouraged', 'her', 'to', 'join', 'the', 'army', '||period||', '||period||', '||period||', 'she', 'did', '||period||', '||return||', '||return||', 'elaine:', 'she', 'was', 'lost', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'then', '||comma||', 'you', 'suggest', 'she', 'goes', '||period||', '||period||', '||period||', 'awol', '||exclammark||', 'she', 'did', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'she', "didn't", 'seem', 'to', 'be', "havin'", 'so', 'much', 'fun', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||period||', '||period||', '||period||', 'you', 'better', 'make', 'sure', 'and', 'never', 'tell', 'this', 'woman', 'to', 'jump', 'off', 'the', 'brooklyn', 'bridge', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'if', 'i', 'have', 'this', 'much', 'influence', 'over', 'her', '||comma||', 'why', "don't", 'i', 'just', 'call', 'her', "an'", 'tell', 'her', 'to', 'get', 'back', 'together', 'with', 'him', '||dash||', '||dash||', "that's", 'aalll', '||exclammark||', '||return||', '||return||', 'donna:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'miss', 'changstein', '||exclammark||', 'this', 'is', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', '||leftparen||', 'at', 'the', 'same', 'time', '||dash||', '||dash||', 'donna:', 'helllo', '||period||', '||period||', '||period||', '||dash||', '||dash||', 'elaine', 'hi', '||exclammark||', 'how', 'are', 'you', '||questionmark||', '||rightparen||', '||return||', '||return||', 'donna:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'guess', 'what', '||questionmark||', 'mrs', '||period||', 'costanza', 'called', 'me', '||comma||', "they're", 'not', 'getting', 'divorced', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'happy', 'gasp', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'donna:', 'well', '||comma||', 'she', 'was', 'trying', 'to', 'call', 'george', 'last', 'night', '||comma||', 'she', 'got', 'me', '||comma||', 'we', 'spoke', 'for', 'an', 'hour', 'and', 'she', 'changed', 'her', 'mind', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', "that's", 'amazing', '||exclammark||', '||return||', '||return||', 'donna:', 'anyway', '||comma||', 'she', 'wants', 'to', 'meet', 'me', '||exclammark||', 'she', 'invited', 'me', 'over', 'for', 'dinner', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'off', 'camera', '||rightparen||', 'huh', '||period||', '||return||', '||return||', 'donna:', 'she', 'said', 'you', 'should', 'come', 'too', '||period||', '||return||', '||return||', 'jerry:', 'tonight', '||questionmark||', '||return||', '||return||', 'donna:', 'yeah', '||dash||', '||dash||', 'i', 'just', 'remembered', '||comma||', "i'm", 'gonna', 'have', 'to', 'cancel', 'my', 'acupuncture', 'class', '||period||', '||leftparen||', 'goes', 'to', 'phone', '||rightparen||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||leftparen||', 'tearing', 'his', 'jacket', 'off', '||rightparen||', 'let', 'me', 'just', 'say', 'one', 'thing', 'there', 'is', 'no', 'way', 'that', 'this', 'is', 'gonna', 'happen', '||period||', 'you', 'hear', 'me', '||questionmark||', 'no', 'way', '||exclammark||', 'because', 'if', 'you', 'think', "i'm", "going'", 'to', 'two', 'thanksgivings', '||comma||', "you're", 'out', 'of', 'your', 'mind', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'calmly', '||rightparen||', "we're", 'not', 'getting', 'divorced', '||period||', '||return||', '||return||', 'frank:', 'your', 'mother', 'changed', 'her', 'mind', '||period||', '||period||', '||period||', '||leftparen||', 'tries', 'to', 'catch', 'a', 'fly', 'with', 'his', 'hand', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'gleeful', '||comma||', 'to', 'estelle', '||rightparen||', 'you', 'did', '||questionmark||', '||exclammark||', "that's", 'goood', '||exclammark||', "that's", 'very', 'good', '||exclammark||', "i'm", 'very', 'glad', 'to', 'hear', 'that', '||period||', '||return||', '||return||', 'frank:', 'yeah', '||comma||', 'we', 'worked', 'it', 'out', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'so', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'who', 'was', 'the', 'man', 'in', 'the', 'cape', '||questionmark||', '||return||', '||return||', 'frank:', 'he', 'was', 'my', 'lawyer', '||period||', '||return||', '||return||', 'george:', 'your', 'lawyer', 'wears', 'a', 'cape', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'frank:', 'yeah', '||period||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'who', 'wears', 'a', 'cape', '||questionmark||', '||return||', '||return||', 'frank:', "he's", 'very', 'independent', '||semicolon||', 'he', "doesn't", 'follow', 'the', 'trends', '||period||', '||return||', '||return||', 'estelle:', 'he', 'looks', 'ridiculous', 'in', 'that', 'thing', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'shouting', '||rightparen||', 'you', 'have', 'no', 'eye', 'for', 'fashion', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'shouting', '||rightparen||', 'i', 'have', 'no', 'eye', 'for', 'fashion', '||questionmark||', '||exclammark||', '||questionmark||', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||exclammark||', 'come', 'on', '||exclammark||', "let's", 'not', 'fight', '||period||', '||return||', '||return||', 'frank', 'and', 'estelle:', 'all', 'right', '||exclammark||', 'all', 'right', '||exclammark||', '||return||', '||return||', 'estelle:', "georgie's", 'right', '||period||', '||leftparen||', 'pats', 'him', 'on', 'the', 'cheek', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'quietly', '||rightparen||', 'ehh', '||period||', '||leftparen||', 'pausing', 'to', 'look', 'at', 'both', 'of', 'them', '||rightparen||', 'so', 'what', 'made', 'you', 'change', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'estelle:', 'it', 'was', 'that', 'chinese', 'woman', '||period||', '||return||', '||return||', 'jerry:', 'so', "i'm", 'curious', '||period||', "what'd", 'you', 'tell', 'mrs', '||period||', 'costanza', 'that', 'changed', 'her', 'mind', '||questionmark||', '||return||', '||return||', 'donna:', 'i', 'mentioned', 'a', 'few', 'bits', 'of', 'wisdom', 'from', 'confucius', '||period||', '||return||', '||return||', 'jerry:', 'confucius', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'donna:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'you', 'know', '||comma||', "you're", 'not', 'chinese', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'i', 'heard', 'the', 'good', 'news', '||exclammark||', '||return||', '||return||', 'frank:', 'jerry', '||comma||', 'how', 'come', 'you', "didn't", 'say', 'hello', 'to', 'me', 'the', 'other', 'day', '||comma||', 'huh', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', 'was', '||period||', '||period||', '||period||', 'in', 'a', 'rush', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'to', 'george', '||comma||', 'pointing', '||rightparen||', 'i', 'knew', 'it', 'was', 'elaine', '||exclammark||', '||exclammark||', '||return||', '||return||', 'donna:', 'you', 'must', 'be', 'estelle', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'giggles', '||rightparen||', 'yes', '||period||', 'who', 'are', 'you', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'donna:', "i'm", 'donna', 'chang', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'steps', 'back', '||comma||', 'appalled', '||rightparen||', "you're", 'not', 'chinese', '||exclammark||', '||return||', '||return||', 'kramer:', "y'ello", '||questionmark||', '||return||', '||return||', 'elaine:', 'paul', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pause', '||rightparen||', 'yeahh', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', "doin'", 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'wellll', '||comma||', "isn't", 'it', 'obvious', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'scoffs', '||rightparen||', 'uh', '||comma||', 'is', 'noreen', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', 'she', 'is', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'well', '||period||', '||period||', '||period||', 'can', 'i', 'talk', 'to', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'what', '||questionmark||', 'am', 'i', '||period||', '||period||', '||period||', 'tooo', 'boring', 'for', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'losing', 'patience', '||rightparen||', 'alright', '||dash||', '||dash||', 'would', 'you', 'just', 'put', 'her', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'feel', 'that', 'it', 'would', 'be', 'best', 'that', 'you', "didn't", 'talk', 'to', 'noreen', 'for', 'a', 'while', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'feel', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||exclammark||', 'she', "an'", 'i', 'have', 'had', 'a', 'very', 'long', 'talk', '||period||', "an'", 'i', 'was', 'appalled', 'to', 'learn', 'of', 'the', 'destructive', 'influence', "you've", 'had', 'over', 'her', 'life', '||comma||', 'lo', 'these', 'many', 'years', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'are', 'you', 'insane', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'from', 'now', 'on', '||comma||', "i'll", 'be', 'calling', 'the', 'shots', 'around', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||exclammark||', 'ho', '||dash||', 'ho', '||period||', "an'", 'what', 'are', 'you', 'gonna', 'tell', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||period||', "i've", 'encouraged', 'her', 'to', 'go', 'back', 'into', 'the', 'army', '||period||', '||period||', '||period||', '||leftparen||', 'noreen', 'sighs', 'a', 'little', '||rightparen||', 'there', "she'll", 'get', 'the', 'structure', "an'", 'the', 'discipline', 'she', 'needs', 'right', 'now', '||period||', '||period||', '||period||', 'and', "she'll", 'have', 'qualified', 'officers', 'telling', 'her', 'what', 'to', 'do', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', '||rightparen||', 'kramer', '||exclammark||', 'you', 'have', 'got', 'to', 'let', 'me', 'talk', 'to', 'her', '||exclammark||', '||return||', '||return||', 'kramer:', "can't", 'help', 'ya', '||comma||', 'kid', '||period||', '||return||', '||return||', 'elaine:', 'get', 'the', '||dash||', '||dash||', '||leftparen||', 'kramer', 'puts', 'phone', 'down', '||rightparen||', '||return||', '||return||', 'estelle:', "you're", 'not', 'chinese', '||exclammark||', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'donna:', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'estelle:', 'i', 'thought', 'you', 'were', 'chinese', '||exclammark||', '||exclammark||', '||return||', '||return||', 'donna:', "i'm", 'from', 'long', 'island', '||period||', '||return||', '||return||', 'estelle:', 'long', 'island', '||questionmark||', '||exclammark||', '||questionmark||', '||exclammark||', 'i', 'thought', 'i', 'was', "gettin'", 'advice', 'from', 'a', 'chinese', 'woman', '||exclammark||', '||exclammark||', '||return||', '||return||', 'donna:', "i'm", 'sorry', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'estelle:', 'well', '||period||', '||period||', '||period||', 'then', '||period||', '||period||', '||period||', 'that', 'changes', 'everything', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', "she's", 'not', 'chinese', '||semicolon||', 'i', 'was', 'duped', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'what', '||questionmark||', '||exclammark||', 'she', 'still', 'gave', 'you', 'advice', '||semicolon||', "what's", 'the', 'difference', 'if', "she's", 'not', 'chinese', '||questionmark||', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', "i'm", 'not', 'taking', 'advice', 'from', 'some', 'girl', 'from', 'long', 'island', '||exclammark||', '||exclammark||', '||leftparen||', 'goes', 'into', 'another', 'room', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'chases', 'after', 'her', '||rightparen||', 'wait', 'a', 'minute', '||exclammark||', "you're", '||dash||', '||dash||', 'now', "you're", 'getting', 'a', 'divorce', 'because', "she's", 'from', 'long', 'island', '||questionmark||', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'shouts', 'after', 'them', '||rightparen||', 'you', 'want', 'a', 'divorce', '||questionmark||', '||exclammark||', '||exclammark||', '||questionmark||', 'you', 'got', 'one', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||comma||', 'to', 'donna', '||rightparen||', 'you', 'know', '||comma||', 'you', 'might', 'wanna', 'think', 'about', "changin'", 'your', 'name', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'ever', 'since', 'she', 'started', 'dating', 'kramer', '||comma||', 'she', "won't", 'even', 'talk', 'to', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||dash||', '||dash||', 'noreen', 'listened', 'to', 'you', 'like', "george's", 'mother', 'listened', 'to', 'the', 'chinese', '||period||', '||leftparen||', 'buys', 'a', 'newspaper', 'out', 'of', 'a', 'machine', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'you', 'know', '||comma||', 'everybody', 'listens', 'to', 'the', 'chinese', '||period||', 'i', 'mean', '||comma||', 'look', 'at', 'the', 'fortune', 'cookie', '||period||', 'you', "couldn't", 'get', 'away', 'with', 'that', 'in', 'any', 'other', 'restaurant', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'hu_uh', '||comma||', '||leftparen||', 'pause', '||rightparen||', 'you', 'know', '||comma||', 'everybody', 'listens', 'to', 'the', 'chinese', '||period||', 'i', 'mean', '||comma||', 'look', 'at', 'the', 'fortune', 'cookie', '||period||', 'you', "couldn't", 'get', 'away', 'with', 'that', 'in', 'any', 'other', 'restaurant', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'no', "one's", 'reading', 'any', 'rolled', '||dash||', 'up', 'messages', 'in', 'a', 'knish', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'it', 'had', 'to', 'happen', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'i', 'knew', 'it', '||exclammark||', '||exclammark||', '||leftparen||', 'shuts', 'cab', 'door', '||rightparen||', 'i', 'predicted', 'it', '||exclammark||', '||leftparen||', 'hits', 'cab', 'roof', 'twice', '||comma||', 'it', 'drives', 'off', '||rightparen||', 'saw', 'both', 'of', 'them', 'today', '||exclammark||', 'what', 'a', 'disaster', '||exclammark||', "i'm", "runnin'", 'all', 'over', 'queens', '||period||', 'first', 'i', 'saw', 'my', 'mother', '||period||', 'we', 'had', 'lunch', 'together', '||period||', 'never', 'had', '||period||', '||period||', '||period||', 'lunch', 'with', 'my', 'mother', 'before', '||dash||', '||dash||', "it's", 'like', 'a', 'date', '||exclammark||', 'then', 'we', 'drive', 'down', 'to', 'kew', 'gardens', '||exclammark||', 'tons', 'of', 'traffic', '||exclammark||', 'i', 'see', 'my', 'father', '||period||', 'we', 'played', '||quotemark||', 'clue', '||quotemark||', '||exclammark||', 'all', 'day', 'with', 'this', '||exclammark||', '[kew', 'gardens', '||leftparen||', 'see', 'links', 'at', 'end', 'of', 'script', '||rightparen||', ']', '||return||', '||return||', 'kramer:', '||leftparen||', 'triumphant', '||rightparen||', 'hey', '||comma||', 'jerry', '||exclammark||', 'guess', 'what', '||exclammark||', 'the', 'kramer', 'name', 'might', 'live', 'on', '||exclammark||', "noreen's", 'late', '||exclammark||', "she's", 'laaate', '||exclammark||', '||exclammark||', '||leftparen||', 'give', 'two', 'thumbs', 'up', '||rightparen||', '||return||', '||return||', 'noreen:', '||leftparen||', 'surprised', '||rightparen||', 'who', 'are', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'man:', "i'm", 'frank', "costanza's", 'lawyer', '||period||', '||leftparen||', 'he', 'starts', 'pulling', 'her', 'to', 'safety', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'she', 'got', 'you', 'to', 'join', 'a', 'book', 'club', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'feeling', "i'm", 'gonna', 'be', 'much', 'smarter', 'than', 'you', 'pretty', 'soon', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'think', 'that', 'statement', 'alone', 'reflects', 'your', 'burgeoning', 'intelligence', '||period||', '||leftparen||', 'sits', 'on', 'a', 'couch', '||period||', '||rightparen||', 'hey', '||comma||', 'what', 'about', 'this', 'one', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'i', "don't", 'like', 'that', 'one', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "what's", 'your', 'first', 'book', '||questionmark||', '||return||', '||return||', 'george:', '||quotemark||', 'breakfast', 'at', "tiffany's", '||period||', '||quotemark||', '90', 'pages', '||period||', '||leftparen||', 'waves', 'a', 'hand', 'like', "it's", 'nothing', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "it's", 'kinda', 'old', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'wanted', 'to', 'read', 'a', 'truman', 'capote', 'book', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'standing', '||rightparen||', ':', 'oh', '||comma||', 'sure', '||period||', '||period||', '||period||', 'truman', 'capote', '||period||', '||return||', '||return||', 'george:', "he's", 'a', 'great', 'writer', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'ever', 'read', 'anything', 'by', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'sees', 'a', 'white', 'couch', 'by', 'the', 'wall', '||rightparen||', ':', 'oh', '||comma||', 'what', 'about', 'this', 'one', '||questionmark||', 'look', 'at', 'this', '||comma||', 'this', 'is', 'it', '||exclammark||', 'this', 'is', 'what', "i'm", 'looking', 'for', '||period||', '||leftparen||', 'sits', 'on', 'the', 'couch', '||period||', '||rightparen||', 'oh', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'new', 'couch', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'elaine:', 'new', 'couch', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'love', 'this', 'couch', '||period||', 'you', 'know', 'what', 'the', 'best', 'part', 'about', 'it', 'is', '||questionmark||', 'it', "doesn't", 'fold', 'out', '||comma||', 'so', 'no', 'one', 'can', 'sleep', 'over', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'carl', '||comma||', 'flirtatiously', '||rightparen||', ':', 'hello', '||period||', '||return||', '||return||', 'carl:', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'let', 'me', 'get', 'the', 'door', 'for', 'you', '||period||', '||leftparen||', 'they', 'carry', 'the', 'couch', 'out', 'the', 'door', '||period||', '||rightparen||', 'ooh', '||comma||', 'be', 'careful', '||exclammark||', '||return||', '||return||', 'jerry:', 'wait', 'till', 'you', 'see', 'it', '||comma||', "it's", 'perfect', '||period||', 'the', 'guy', 'told', 'me', "it's", 'one', 'of', 'a', 'kind', '||comma||', 'they', 'stopped', 'making', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', 'with', 'your', 'old', 'couch', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||comma||', 'the', 'moving', 'guys', 'are', 'taking', 'it', '||period||', 'why', '||comma||', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'll", 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'sure', 'that', 'they', 'can', 'deliver', 'it', 'to', 'your', 'apartment', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'they', 'can', '||period||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'couch', 'is', 'comin', '||period||', "'", '||return||', '||return||', 'jerry:', "it's", 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||exclammark||', 'yeah', '||period||', 'you', 'know', '||comma||', "i'm", 'excited', 'about', 'this', '||comma||', 'jerry', '||period||', 'in', 'a', 'way', '||comma||', 'i', 'feel', 'like', "i'm", 'getting', 'a', 'new', 'couch', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'nonplussed', '||rightparen||', ':', 'yeah', '||period||', 'so', 'do', 'i', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||exclammark||', 'remember', 'poppie', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'mean', 'from', "poppie's", 'restaurant', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'anyway', '||comma||', 'uh', '||period||', '||period||', '||period||', "we're", 'going', 'into', 'business', 'together', '||period||', 'remember', 'that', 'idea', 'i', 'had', 'a', 'few', 'years', 'ago', 'about', 'the', 'pizza', 'place', 'where', 'you', 'make', 'your', 'own', 'pizza', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'what', 'was', 'that', 'again', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', 'pizza', 'place', 'where', 'you', 'make', 'your', 'own', 'pie', '||exclammark||', 'we', 'give', 'you', 'the', 'dough', '||comma||', 'the', 'sauce', '||comma||', 'the', 'cheese', '||period||', '||period||', '||period||', 'you', 'pound', 'it', '||comma||', 'slap', 'it', '||comma||', 'you', 'flip', 'it', 'up', 'into', 'the', 'air', '||period||', '||period||', '||period||', 'you', 'put', 'your', 'toppings', 'on', 'and', 'you', 'slide', 'it', 'into', 'the', 'oven', '||exclammark||', 'sounds', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'in', 'a', 'southern', 'accent', '||rightparen||', ':', 'ooh', '||comma||', 'i', "can't", 'wait', 'to', 'get', 'me', 'a', 'fella', 'and', 'make', 'mah', 'own', 'pie', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'made', 'you', 'resurrect', 'that', 'old', 'idea', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'happened', 'to', 'be', 'eating', 'at', "poppie's", 'when', 'i', 'told', 'him', 'the', '||quotemark||', 'old', '||quotemark||', 'idea', '||comma||', 'and', 'his', 'eyes', '||dash||', 'waaaaaah', '||exclammark||', '||dash||', 'just', 'lit', 'up', '||period||', 'you', 'know', '||comma||', 'he', 'wants', 'to', 'back', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', 'heard', "poppie's", 'was', 'good', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', "goin'", 'there', '||period||', "didn't", 'he', 'get', 'busted', 'by', 'the', 'board', 'of', 'health', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'was', 'in', 'the', 'past', '||comma||', 'jerry', '||period||', 'as', 'it', 'happens', '||comma||', 'new', 'york', 'magazine', 'just', 'judged', 'his', 'kitchen', 'to', 'be', 'one', 'of', 'the', 'cleanest', 'in', 'the', 'city', '||period||', 'they', 'got', 'a', 'duck', 'there', '||comma||', 'you', 'think', 'you', 'died', 'and', 'went', 'to', 'heaven', '||period||', '||return||', '||return||', 'elaine:', 'ooh', '||exclammark||', 'i', 'love', 'duck', '||period||', "c'mon", '||comma||', "c'mon", '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'you', 'gotta', 'order', 'it', 'two', 'days', 'in', 'advance', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'know', '||comma||', "i'm", 'gonna', 'call', 'him', '||comma||', "i'm", 'gonna', 'order', 'the', 'duck', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'kramer', '||comma||', 'i', '||dash||', '||return||', '||return||', 'jerry:', 'right', 'there', '||comma||', 'guys', '||period||', "that's", 'perfect', '||period||', 'ah', '||questionmark||', 'whatta', 'ya', 'think', '||comma||', 'lainie', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', '||period||', "i'll", 'have', 'to', 'sit', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', 'i', "don't", 'want', 'anyone', 'sitting', 'on', 'it', '||period||', '||return||', '||return||', 'carl', '||leftparen||', 'hands', 'jerry', 'an', 'invoice', '||rightparen||', ':', 'sign', 'here', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'carl', '||rightparen||', ':', 'excuse', 'me', '||comma||', 'i', 'was', 'wondering', 'if', 'would', 'it', 'be', 'possible', 'if', 'you', 'could', 'deliver', 'the', 'old', 'couch', 'to', 'my', 'apartment', '||questionmark||', "it's", 'not', 'very', 'far', '||period||', '||return||', '||return||', 'carl:', 'sure', '||period||', '||return||', '||return||', 'elaine:', "'kay", '||period||', 'you', '||comma||', 'uh', '||period||', '||period||', '||period||', 'you', 'got', 'room', 'in', 'the', 'truck', 'for', 'me', '||questionmark||', '||return||', '||return||', 'carl:', 'yeah', '||comma||', 'i', 'think', 'we', 'can', 'squeeze', 'you', 'in', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'goody', '||period||', 'okay', '||comma||', 'well', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'jerry', 'and', 'kramer', '||rightparen||', '||period||', '||period||', '||period||', "i'll", 'see', 'you', 'chumps', 'later', '||period||', '||leftparen||', 'elaine', 'and', 'carl', 'exit', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'did', 'you', 'offer', 'those', 'guys', 'a', 'drink', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'no', '||period||', 'should', 'i', 'have', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'kind', 'of', 'a', 'person', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||quotemark||', 'breakfast', 'at', "tiffany's", '||period||', '||quotemark||', '||leftparen||', 'begins', 'to', 'read', '||comma||', 'but', 'gradually', 'his', 'attention', 'is', 'drawn', 'to', 'the', 'tv', 'guide', 'on', 'the', 'end', 'table', '||period||', 'george', 'realizes', "there's", 'a', 'show', 'on', 'he', 'wants', 'to', 'see', 'by', 'looking', 'at', 'his', 'watch', '||comma||', 'and', "doesn't", 'start', 'the', 'book', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'he', 'puts', 'the', 'couch', 'down', '||comma||', 'and', 'just', 'as', "he's", 'about', 'to', 'leave', 'he', 'says', '||comma||', '||quotemark||', 'do', 'you', 'date', 'moving', 'men', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'ah', 'ha', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'wanna', 'know', 'what', 'i', 'said', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'wait', '||period||', '||return||', '||return||', 'elaine:', '||quotemark||', 'i', 'do', 'now', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'clever', '||period||', '||return||', '||return||', 'elaine:', 'is', 'that', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'is', 'that', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'something', '||period||', 'so', 'anyway', '||comma||', 'when', 'they', 'were', 'in', 'my', 'house', 'before', '||comma||', 'i', "didn't", 'offer', 'them', 'anything', 'to', 'drink', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "they're", 'real', 'men', '||comma||', 'jerry', '||period||', 'they', 'get', 'sweaty', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'anyone', 'sweaty', 'comes', 'into', 'your', 'house', 'has', 'to', 'be', 'offered', 'a', 'drink', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'would', 'you', 'apologize', 'for', 'me', '||questionmark||', '||leftparen||', 'elaine', 'nods', '||period||', 'poppie', 'comes', 'out', 'of', 'the', 'kitchen', '||period||', '||rightparen||', '||return||', '||return||', 'poppie:', 'hello', '||exclammark||', 'jerry', '||comma||', 'so', 'good', 'to', 'see', 'you', 'again', '||exclammark||', '||leftparen||', 'puts', 'his', 'hand', 'out', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'clearly', 'creeped', 'out', 'by', 'having', 'to', 'shake', "poppie's", 'hand', '||rightparen||', ':', 'hello', '||comma||', 'poppie', '||period||', 'this', 'is', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'nice', 'to', 'meet', 'you', '||comma||', 'poppie', '||period||', '||return||', '||return||', 'poppie:', 'let', 'me', 'show', 'you', 'to', 'your', 'table', '||period||', '||leftparen||', 'leads', 'jerry', 'and', 'elaine', 'to', 'the', 'table', '||period||', '||rightparen||', 'your', 'duck', 'is', 'cooking', 'as', 'we', 'speak', '||period||', 'it', 'is', 'so', 'succulent', '||period||', '||period||', '||period||', 'so', 'succulent', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'kramer', 'told', 'us', 'all', 'about', 'your', 'business', 'venture', 'together', '||period||', '||return||', '||return||', 'poppie:', 'your', 'friend', 'and', 'i', 'are', 'going', 'to', 'make', 'a', 'lot', 'of', 'money', '||period||', 'of', 'course', '||comma||', 'i', 'already', 'have', 'a', 'lot', 'of', 'money', '||period||', 'poppie', 'does', 'very', 'well', '||period||', '||period||', '||period||', 'very', 'well', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'your', 'mother', 'must', 'be', 'very', 'proud', 'of', 'you', '||period||', '||return||', '||return||', 'poppie:', 'my', 'mother', '||period||', '||period||', '||period||', 'was', 'taken', 'from', 'my', 'house', 'by', 'the', 'communists', 'in', 'the', 'middle', 'of', 'the', 'night', 'when', 'i', 'was', 'ten', 'years', 'old', '||period||', 'she', 'was', 'sent', 'to', 'a', 'slave', 'labor', 'camp', '||comma||', 'where', 'she', 'labored', 'for', 'twelve', 'years', '||period||', 'finally', '||comma||', 'they', 'released', 'her', 'and', 'she', 'was', 'on', 'a', 'boat', 'to', 'america', 'to', 're', '||dash||', 'unite', 'with', 'us', '||period||', '||period||', '||period||', 'but', 'she', 'was', 'served', 'some', 'bad', 'fish', '||comma||', 'and', 'she', 'died', '||period||', '||period||', '||period||', 'on', 'the', 'high', 'seas', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "what's", 'good', 'tonight', '||questionmark||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', "i'm", 'really', 'looking', 'forward', 'to', 'this', 'duck', '||period||', "i've", 'never', 'had', 'food', 'ordered', 'in', 'advance', 'before', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', "could've", 'stayed', 'home', 'and', 'ordered', 'a', 'pizza', 'from', "paccino's", '||period||', '||return||', '||return||', 'elaine:', "paccino's", '||questionmark||', 'oh', 'no', '||period||', 'you', 'should', 'never', 'order', 'pizza', 'from', "paccino's", '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', '||comma||', 'the', 'owner', 'contributes', 'a', 'lot', 'of', 'money', 'to', 'those', 'fanatical', '||comma||', 'anti', '||dash||', 'abortion', 'groups', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', "won't", 'eat', 'the', 'pizza', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'way', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'if', 'poppie', 'felt', 'the', 'same', 'way', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'guess', 'i', "wouldn't", 'eat', 'here', '||comma||', 'then', '||period||', '||return||', '||return||', 'jerry:', 'really', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'perhaps', 'we', 'should', 'inquire', '||period||', 'poppie', '||exclammark||', 'oh', '||comma||', 'poppie', '||period||', 'could', 'i', 'have', 'a', 'word', '||questionmark||', '||leftparen||', 'poppie', 'comes', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'poppie:', 'yes', '||comma||', 'jerry', '||period||', 'i', 'just', 'checked', 'your', 'duck', '||period||', '||period||', '||period||', 'it', 'is', 'more', 'succulent', 'than', 'even', 'i', 'had', 'hoped', '||period||', '||return||', '||return||', 'jerry:', 'poppie', '||comma||', 'i', 'was', 'just', 'curious', '||period||', '||period||', '||period||', 'where', 'do', 'you', 'stand', 'on', 'the', 'abortion', 'issue', '||questionmark||', '||return||', '||return||', 'poppie:', 'when', 'my', 'mother', 'was', 'abducted', 'by', 'the', 'communists', '||comma||', 'she', 'was', 'with', 'child', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'boy', '||period||', '||return||', '||return||', 'poppie:', '||period||', '||period||', '||period||', 'but', 'the', 'communists', '||comma||', 'they', 'put', 'an', 'end', 'to', 'that', '||exclammark||', 'so', '||comma||', 'on', 'this', 'issue', 'there', 'is', 'no', 'debate', '||exclammark||', 'and', 'no', 'intelligent', 'person', 'can', 'think', 'differently', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'offended', '||rightparen||', ':', 'well', '||period||', '||period||', '||period||', 'poppie', '||period||', 'i', 'think', 'differently', '||period||', '||return||', '||return||', 'poppie:', 'and', 'what', 'gives', 'you', 'the', 'right', 'to', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'standing', 'up', '||rightparen||', ':', 'the', 'supreme', 'court', 'gives', 'me', 'the', 'right', 'to', 'do', 'that', '||exclammark||', "let's", 'go', 'jerry', '||comma||', "c'mon", '||period||', '||return||', '||return||', 'woman', 'at', 'next', 'table', '||leftparen||', 'to', 'her', 'date', '||rightparen||', ':', 'i', 'heard', 'that', '||period||', "let's", 'go', '||comma||', 'henry', '||period||', '||return||', '||return||', 'henry:', 'but', 'we', 'just', 'got', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'woman', 'at', 'another', 'table:', "i'm", 'with', 'you', '||comma||', 'poppie', '||exclammark||', '||return||', '||return||', 'woman', 'at', 'yet', 'another', 'table', '||leftparen||', 'to', 'her', 'date', '||rightparen||', ':', "let's", 'go', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'poppie', '||rightparen||', ':', 'and', 'i', 'am', 'not', 'coming', 'back', '||exclammark||', '||return||', '||return||', 'poppie:', "you're", 'not', 'welcome', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'certainly', 'glad', 'i', 'brought', 'it', 'up', '||period||', '||leftparen||', 'gets', 'up', 'and', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'should', 'have', 'seen', 'it', '||period||', 'it', 'was', 'quite', 'a', 'scene', 'over', 'there', '||period||', '||return||', '||return||', 'george:', "i'm", 'sorry', 'i', 'missed', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'really', 'missed', 'something', '||period||', 'and', 'i', 'have', 'to', 'say', '||period||', '||period||', '||period||', 'it', 'was', 'pretty', 'much', 'all', 'my', 'fault', '||period||', '||leftparen||', 'jerry', 'smiles', '||period||', 'george', 'laughs', '||period||', '||rightparen||', 'so', '||comma||', "how's", 'the', 'book', 'coming', '||questionmark||', '||leftparen||', "george's", 'laughs', 'taper', 'off', '||period||', '||period||', '||period||', '||rightparen||', 'i', 'say', '||comma||', "how's", 'the', 'book', "comin'", '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "what's", 'it', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'about', 'holly', 'go', '||dash||', 'lightly', '||period||', '||return||', '||return||', 'jerry:', 'holly', 'go', '||dash||', 'lightly', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "she's", 'quite', 'a', 'character', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'you', "haven't", 'read', 'a', 'page', '||comma||', 'have', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'big', 'surprise', '||period||', '||return||', '||return||', 'george:', 'i', "couldn't", '||period||', 'you', 'know', '||comma||', 'if', "it's", 'not', 'about', 'sports', '||comma||', 'i', 'find', 'it', 'very', 'hard', 'to', 'concentrate', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'very', 'bright', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "i'm", 'not', '||period||', 'i', 'would', 'like', 'to', 'be', '||comma||', 'but', "i'm", 'not', '||period||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', 'the', 'book', 'club', 'meets', 'in', 'a', 'few', 'days', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'rent', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'george:', "'why", "don't", 'i', 'rent', 'the', 'movie', '||period||', "'", 'see', '||comma||', 'this', 'is', 'when', 'i', 'like', 'you', '||period||', 'alright', '||comma||', 'now', "i'm", 'relieved', '||period||', '||leftparen||', 'kramer', 'enters', 'and', 'comes', 'over', 'to', 'the', 'booth', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'scanning', 'a', 'menu', '||rightparen||', ':', 'so', '||period||', '||period||', '||period||', 'how', 'was', 'the', 'dinner', 'last', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'enjoy', 'the', 'duck', '||questionmark||', '||leftparen||', 'elaine', 'comes', 'back', 'from', 'the', 'bathroom', '||period||', '||rightparen||', 'oh', '||comma||', 'elaine', '||exclammark||', 'i', 'was', 'just', 'asking', 'how', 'dinner', 'went', 'last', 'night', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'sitting', 'down', '||rightparen||', ':', 'oh', '||period||', '||period||', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'what', 'did', 'you', 'do', 'to', 'poppie', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "he's", 'in', 'the', 'hospital', '||period||', 'and', 'the', 'cook', 'says', 'you', 'put', 'him', 'there', '||period||', '||return||', '||return||', 'elaine:', "what's", 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||exclammark||', "i'm", 'gonna', 'go', 'and', 'visit', 'him', 'later', '||period||', '||leftparen||', 'angrily', '||rightparen||', 'it', 'would', 'be', 'nice', 'if', 'you', 'got', 'him', 'something', '||period||', '||leftparen||', 'punches', 'the', 'the', 'table', 'to', 'accentuate', 'this', '||comma||', 'and', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'we', 'should', 'get', 'him', 'something', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', "you're", 'right', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'know', 'that', 'i', 'have', 'been', 'using', 'the', 'same', 'bottle', 'of', 'shampoo', 'for', 'a', 'year', '||questionmark||', 'and', 'i', 'shampoo', 'every', 'day', '||period||', '||leftparen||', 'carl', 'smiles', '||period||', '||rightparen||', 'so', '||comma||', 'what', 'do', 'you', 'think', 'of', 'my', 'conversation', '||questionmark||', '||return||', '||return||', 'carl:', 'not', 'much', '||exclammark||', '||leftparen||', 'they', 'both', 'laugh', '||period||', '||rightparen||', 'i', '||comma||', 'uh', '||comma||', 'would', 'have', 'invited', 'you', 'up', '||comma||', 'but', 'i', "don't", 'have', 'any', 'furniture', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'have', 'any', 'furniture', '||questionmark||', '||return||', '||return||', 'carl:', 'no', '||comma||', 'i', 'hate', 'furniture', '||period||', 'i', "can't", 'look', 'at', 'it', '||period||', '||leftparen||', 'they', 'laugh', 'again', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'can', 'understand', 'that', '||period||', 'pretty', 'good', 'date', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'carl:', 'yeah', '||exclammark||', 'no', 'heavy', 'lifting', '||period||', '||leftparen||', 'elaine', 'and', 'carl', 'look', 'into', 'each', 'others', 'eyes', '||comma||', 'then', 'kiss', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'anyway', '||comma||', 'jerry', 'and', 'elaine', 'felt', 'very', 'badly', 'about', 'what', 'happened', 'to', 'you', '||comma||', 'and', 'they', 'wanted', 'you', 'to', 'have', 'this', '||period||', '||return||', '||return||', 'poppie', '||leftparen||', 'opening', 'the', 'gift', 'basket', '||rightparen||', ':', "what's", 'this', '||questionmark||', 'a', 'bottle', 'of', 'wine', 'and', 'a', 'five', '||dash||', 'alarm', 'chili', '||questionmark||', "they're", 'trying', 'to', 'kill', 'poppie', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'why', '||comma||', 'what', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'poppie:', "don't", 'they', 'know', 'i', 'have', 'a', 'gastro', '||dash||', 'intestinal', 'disorder', '||questionmark||', 'if', 'i', 'would', 'have', 'any', 'of', 'this', '||comma||', 'i', 'would', 'die', '||period||', 'then', "poppie's", 'no', 'good', 'to', 'anyone', '||exclammark||', 'this', 'is', 'a', 'sick', '||comma||', 'sick', 'joke', 'on', 'poppie', '||period||', 'how', 'could', 'you', 'be', 'friends', 'with', 'those', 'two', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "we're", 'not', 'very', 'close', '||period||', '||return||', '||return||', 'poppie:', 'they', 'owe', 'me', 'for', 'those', 'ducks', '||period||', 'they', 'were', 'flown', 'in', 'from', 'newfoundland', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'they', 'got', 'good', 'ducks', 'there', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'poppie:', 'oh', '||comma||', 'very', 'good', 'ducks', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'in', 'looove', '||exclammark||', '||return||', '||return||', 'jerry:', 'whoa', '||exclammark||', '||return||', '||return||', 'elaine:', 'this', 'is', 'it', '||comma||', 'jerry', '||exclammark||', 'this', 'is', 'it', '||exclammark||', 'he', 'is', 'such', 'an', 'incredible', 'person', '||exclammark||', "he's", 'real', '||comma||', "he's", 'honest', '||comma||', "he's", 'unpretentious', '||period||', '||period||', '||period||', 'oh', '||comma||', "i'm", 'really', 'lucky', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'tell', 'him', 'i', 'was', 'sorry', 'i', "didn't", 'offer', 'him', 'the', 'drink', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'forgot', '||period||', 'and', '||comma||', 'the', 'best', 'part', 'is', '||comma||', 'he', "doesn't", 'play', 'games', '||period||', 'you', 'know', '||questionmark||', 'there', 'are', 'no', 'games', '||exclammark||', '||leftparen||', 'sits', 'down', 'on', 'the', 'couch', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', 'games', '||questionmark||', 'what', 'is', 'the', 'point', 'of', 'dating', 'without', 'games', '||questionmark||', 'how', 'do', 'you', 'know', 'if', "you're", 'winning', 'or', 'losing', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'putting', 'on', 'lipstick', '||rightparen||', ':', 'well', '||comma||', 'all', 'i', 'know', 'is', '||comma||', 'he', "doesn't", 'like', 'games', 'and', 'he', "doesn't", 'play', 'games', '||comma||', 'you', 'know', '||questionmark||', 'he', 'has', 'too', 'much', 'character', 'and', 'integrity', '||period||', '||return||', '||return||', 'jerry:', 'ah', 'ha', '||period||', 'and', 'what', 'is', 'his', 'stand', 'on', 'abortion', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'looks', 'at', 'jerry', 'and', 'smears', 'lipstick', 'across', 'her', 'face', '||rightparen||', ':', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'his', 'stand', '||period||', '||period||', '||period||', 'on', 'abortion', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'sure', "he's", 'pro', '||dash||', 'choice', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'he', '||comma||', 'well', '||period||', '||period||', '||period||', "he's", 'just', 'so', 'good', '||dash||', 'looking', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'should', 'probably', 'ask', '||comma||', 'because', 'if', "he's", 'gonna', 'be', 'coming', 'over', 'with', 'those', "paccino's", 'pizzas', '||period||', '||period||', '||period||', 'could', 'be', 'trouble', '||period||', '||return||', '||return||', 'george:', "i'd", 'like', 'to', 'rent', 'breakfast', 'at', "tiffany's", '||period||', '||return||', '||return||', 'clerk', '||leftparen||', 'checking', 'the', 'computer', '||rightparen||', ':', 'uh', '||comma||', 'this', 'is', 'out', '||period||', 'someone', 'has', 'it', '||period||', '||return||', '||return||', 'george:', 'out', '||questionmark||', 'oh', 'no', '||comma||', "i've", 'been', 'to', 'four', 'other', 'places', '||comma||', "you're", 'the', 'only', 'ones', 'that', 'have', 'had', 'it', '||period||', '||return||', '||return||', 'clerk:', 'well', '||comma||', 'i', 'could', 'put', 'it', 'on', 'reserve', 'for', 'you', '||comma||', 'if', "you'd", 'like', '||period||', '||return||', '||return||', 'george:', 'maybe', 'we', 'could', 'call', 'them', 'and', 'ask', 'them', 'to', 'return', 'it', '||period||', '||return||', '||return||', 'clerk:', 'oh', '||comma||', 'sorry', '||period||', 'we', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'maybe', "they're", 'done', 'with', 'it', '||period||', 'i', 'could', 'go', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'clerk:', 'i', "don't", 'think', 'so', '||period||', 'it', "doesn't", 'work', 'that', 'way', '||period||', '||return||', '||return||', 'voice', 'on', 'intercom:', 'yes', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'are', 'you', 'joe', 'temple', '||questionmark||', '||return||', '||return||', 'intercom:', 'yes', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'yes', '||comma||', 'uh', '||period||', '||period||', '||period||', 'you', "don't", 'know', 'me', '||comma||', 'my', 'name', 'is', 'george', 'costanza', '||period||', '||period||', '||period||', 'did', 'you', 'happen', 'to', 'rent', 'breakfast', 'at', "tiffany's", '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "what's", 'happenin', '||period||', "'", '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', "poppie's", 'over', 'at', 'my', 'place', '||period||', "tonight's", 'the', 'big', 'night', '||period||', "i'm", 'gonna', 'make', 'the', 'first', 'test', 'pizza', 'at', 'the', 'restaurant', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'regular', "'manhattan", "project'", 'going', 'on', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'anyway', '||comma||', "he's", 'about', 'to', 'leave', '||comma||', 'he', 'wants', 'the', 'duck', 'money', '||period||', '||leftparen||', 'poppie', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'hi', '||comma||', 'poppie', '||period||', '||return||', '||return||', 'poppie:', 'hello', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', 'about', 'the', 'gift', '||comma||', 'i', "didn't", 'know', 'about', 'your', 'condition', '||period||', '||return||', '||return||', 'poppie:', "that's", 'fine', '||period||', 'if', 'you', 'just', 'give', 'me', 'my', 'duck', 'money', '||comma||', "i'll", 'be', 'on', 'my', 'way', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', "i'll", 'get', 'it', '||period||', '||leftparen||', 'goes', 'into', 'the', 'bedroom', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'sit', 'down', '||comma||', 'poppie', '||questionmark||', "you're", 'still', 'recuperating', '||period||', '||leftparen||', 'poppie', 'moves', 'to', 'the', 'sofa', 'and', 'sits', 'down', '||comma||', 'and', 'exhales', 'a', 'loud', 'sigh', 'of', 'relief', '||period||', '||rightparen||', 'what', '||comma||', 'are', 'you', 'tired', '||comma||', 'poppie', '||questionmark||', '||return||', '||return||', 'poppie:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'poppie', '||period||', '||period||', '||period||', 'you', 'really', 'think', 'people', 'wanna', 'make', 'their', 'own', 'pizza', '||questionmark||', '||return||', '||return||', 'poppie:', 'kramer', '||comma||', 'did', 'i', 'ever', 'tell', 'you', 'about', 'my', 'mother', '||questionmark||', 'my', 'mother', '||dash||', '||return||', '||return||', 'jerry', '||leftparen||', 'comes', 'out', 'of', 'the', 'bedroom', 'with', "poppie's", 'money', '||rightparen||', ':', 'here', 'you', 'go', '||period||', '||leftparen||', 'poppie', 'stands', 'up', 'and', 'takes', 'the', 'money', '||period||', '||rightparen||', 'anyway', '||comma||', "i'm", 'sorry', 'again', 'about', 'the', '||period||', '||period||', '||period||', '||leftparen||', 'notices', 'a', 'large', '||comma||', 'wet', 'stain', 'on', 'his', 'couch', '||rightparen||', '||period||', '||period||', '||period||', 'the', '||period||', '||period||', '||period||', 'the', '||period||', '||period||', '||period||', '||return||', '||return||', 'poppie:', 'the', 'what', '||questionmark||', '||leftparen||', 'looks', 'at', 'kramer', '||comma||', 'and', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'the', '||period||', '||period||', '||period||', 'the', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'poppie', '||rightparen||', ':', 'so', 'long', '||period||', "i'll", 'see', 'you', 'tonight', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'frantic', '||rightparen||', ':', 'kramer', '||comma||', 'kramer', '||comma||', 'what', 'is', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'is', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'puddle', 'on', 'my', 'sofa', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'puddle', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'points', '||rightparen||', ':', 'that', 'puddle', '||exclammark||', '||leftparen||', 'kramer', 'sees', 'the', 'puddle', 'and', 'does', 'a', 'double', '||dash||', 'take', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'looking', 'at', 'the', 'puddle', 'with', 'kramer', '||rightparen||', ':', 'is', 'it', '||period||', '||period||', '||period||', '||questionmark||', 'could', 'it', '||period||', '||period||', '||period||', '||questionmark||', 'could', 'he', 'have', '||period||', '||period||', '||period||', '||questionmark||', 'it', 'is', '||exclammark||', '||leftparen||', 'grabs', 'kramer', '||period||', '||rightparen||', 'poppie', 'peed', 'on', 'my', 'sofa', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'is', 'it', 'then', '||questionmark||', '||exclammark||', 'my', 'new', 'sofa', '||exclammark||', 'poppie', 'peed', 'on', 'my', 'new', 'sofa', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'sure', "it'll", 'come', 'out', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', 'if', 'it', 'comes', 'out', '||comma||', 'i', "can't", 'sit', 'on', 'that', 'anymore', '||exclammark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', "you're", 'making', 'too', 'much', 'of', 'it', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'sarcastic', '||rightparen||', ':', 'yeah', '||comma||', "you're", 'right', '||period||', "it's", 'just', 'a', 'natural', 'human', 'function', '||period||', '||period||', '||period||', 'happens', 'to', 'be', 'on', 'my', 'sofa', '||comma||', 'instead', 'of', 'in', 'the', 'toilet', '||comma||', 'where', 'it', 'would', 'normally', 'be', '||period||', '||return||', '||return||', 'kramer:', 'right', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'anyway', '||comma||', 'the', 'book', 'club', 'meets', 'tomorrow', '||comma||', 'mr', '||period||', 'temple', '||period||', '||return||', '||return||', 'joe:', 'well', '||comma||', 'i', 'was', 'going', 'to', 'watch', 'it', 'with', 'my', 'daughter', '||period||', 'she', 'likes', 'audrey', 'hepburn', 'very', 'much', '||period||', '||return||', '||return||', 'george:', 'she', 'was', 'a', 'delicate', 'flower', '||period||', '||return||', '||return||', 'joe:', 'why', "didn't", 'you', 'just', 'read', 'the', 'book', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'as', 'i', 'say', '||comma||', 'the', 'pink', '||dash||', 'eye', 'made', 'my', 'vision', '||period||', '||period||', '||period||', 'quite', 'blurry', '||period||', '||period||', '||period||', '||leftparen||', "joe's", 'daughter', 'comes', 'to', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'joe:', 'remy', '||comma||', 'this', 'is', 'george', '||period||', 'would', 'you', 'mind', 'if', 'he', 'watched', 'breakfast', 'at', "tiffany's", 'with', 'us', '||questionmark||', '||leftparen||', 'george', 'smiles', 'at', 'remy', '||period||', 'remy', 'looks', 'at', 'joe', 'doubtfully', '||period||', '||rightparen||', '||return||', '||return||', 'carl:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||leftparen||', 'they', 'kiss', '||period||', '||rightparen||', '||return||', '||return||', 'carl:', 'i', 'missed', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'missed', 'you', '||exclammark||', '||return||', '||return||', 'carl:', 'i', "don't", 'remember', 'the', 'last', 'time', 'i', 'felt', 'this', 'way', '||period||', '||return||', '||return||', 'elaine:', 'me', '||comma||', 'either', '||exclammark||', '||return||', '||return||', 'carl:', 'i', 'think', 'about', 'you', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', 'you', 'do', '||questionmark||', '||return||', '||return||', 'carl:', 'do', 'you', 'think', 'about', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'all', 'the', 'time', '||comma||', 'all', 'the', 'time', '||period||', '||period||', '||period||', 'although', '||comma||', 'recently', "i've", 'been', 'thinking', 'about', 'this', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'carl:', 'what', 'friend', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'just', 'this', 'woman', '||period||', '||period||', '||period||', 'she', 'got', 'impregnated', 'by', 'her', 'troglodytic', 'half', '||dash||', 'brother', '||comma||', 'and', 'decided', 'to', 'have', 'an', 'abortion', '||period||', '||leftparen||', 'waits', 'in', 'suspense', 'for', 'what', "carl's", 'response', 'will', 'be', '||period||', '||rightparen||', '||return||', '||return||', 'carl:', 'you', 'know', '||comma||', 'someday', '||period||', '||period||', '||period||', "we're", 'going', 'to', 'get', 'enough', 'people', 'in', 'the', 'supreme', 'court', 'to', 'change', 'that', 'law', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'anything', 'to', 'uh', '||comma||', 'nosh', '||questionmark||', '||return||', '||return||', 'joe:', 'what', 'did', 'you', 'want', '||questionmark||', '||return||', '||return||', 'george:', 'popcorn', '||questionmark||', '||return||', '||return||', 'remy:', 'popcorn', '||questionmark||', 'where', 'do', 'you', 'think', 'you', 'are', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'a', 'lot', 'of', 'people', 'keep', 'popcorn', 'in', 'the', 'house', '||period||', '||return||', '||return||', 'remy:', 'well', '||comma||', 'we', "don't", '||period||', '||return||', '||return||', 'george:', 'you', 'might', 'want', 'to', 'try', 'it', '||period||', '||period||', '||period||', 'makes', 'the', 'movie', 'more', 'enjoyable', '||comma||', "that's", 'all', '||period||', '||return||', '||return||', 'joe', '||leftparen||', 'passes', 'george', 'a', 'bowl', '||rightparen||', ':', "here's", 'some', 'nuts', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'nuts', '||exclammark||', 'excellent', '||exclammark||', 'you', 'know', 'what', 'i', 'love', '||questionmark||', 'how', "there's", 'two', 'nuts', 'named', 'after', 'people', '||period||', 'hazel', '||period||', '||period||', '||period||', 'and', 'filbert', '||period||', '||return||', '||return||', 'remy', '||leftparen||', 'to', 'joe', '||rightparen||', ':', 'can', 'we', 'watch', 'the', 'movie', 'now', '||comma||', 'daddy', '||questionmark||', '||leftparen||', 'joe', 'presses', 'play', 'on', 'the', 'remote', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', "let's", 'turn', 'off', 'the', 'lights', '||comma||', 'get', 'some', 'real', "'movie", 'atmosphere', '||period||', "'", '||return||', '||return||', 'joe:', 'the', 'lights', 'are', 'fine', '||period||', '||leftparen||', 'george', 'shrugs', '||comma||', 'and', 'the', 'movie', 'begins', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'in', 'a', "chef's", 'hat', 'and', 'apron', '||rightparen||', ':', 'see', '||comma||', 'anybody', 'can', 'do', 'this', '||period||', '||leftparen||', 'tosses', 'pizza', 'dough', 'into', 'the', 'air', '||period||', '||rightparen||', '||return||', '||return||', 'poppie:', 'use', 'your', 'wrist', '||exclammark||', "it's", 'all', 'in', 'the', 'wrist', '||period||', '||leftparen||', 'kramer', 'tosses', 'the', 'dough', 'way', 'up', 'there', '||period||', '||rightparen||', 'not', 'too', 'high', '||exclammark||', '||return||', '||return||', 'kramer', '||leftparen||', 'puts', 'the', 'dough', 'on', 'the', 'counter', '||rightparen||', ':', 'alright', '||comma||', 'put', 'a', 'little', 'sauce', 'on', 'here', '||period||', '||period||', '||period||', '||leftparen||', 'speaks', 'some', 'unintelligible', 'words', 'in', 'an', 'italian', 'accent', 'while', 'spreading', 'the', 'sauce', 'around', '||period||', '||rightparen||', 'some', 'cheese', '||period||', '||period||', '||period||', '||return||', '||return||', 'poppie:', 'not', 'too', 'much', '||exclammark||', '||return||', '||return||', 'kramer:', 'and', '||period||', '||period||', '||period||', 'cucumbers', '||exclammark||', '||leftparen||', 'grabs', 'a', 'large', 'handful', 'and', 'puts', 'them', 'on', 'the', 'pizza', '||period||', '||rightparen||', '||return||', '||return||', 'poppie:', 'wait', 'a', 'second', '||period||', '||period||', '||period||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'cucumbers', '||period||', '||return||', '||return||', 'poppie:', 'no', '||comma||', 'no', '||period||', 'you', "can't", 'put', 'cucumbers', 'on', 'a', 'pizza', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'not', '||questionmark||', 'i', 'like', 'cucumbers', '||period||', '||return||', '||return||', 'poppie:', "that's", 'not', 'a', 'pizza', '||period||', "it'll", 'taste', 'terrible', '||period||', '||return||', '||return||', 'kramer:', 'but', "that's", 'the', 'idea', '||comma||', 'you', 'make', 'your', 'own', 'pie', '||period||', '||return||', '||return||', 'poppie:', 'yes', '||comma||', 'but', 'we', 'cannot', 'give', 'the', 'people', 'the', 'right', 'to', 'choose', 'any', 'topping', 'they', 'want', '||exclammark||', 'now', 'on', 'this', 'issue', 'there', 'can', 'be', 'no', 'debate', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'gives', 'you', 'the', 'right', 'to', 'tell', 'me', 'how', 'i', 'would', 'make', 'my', 'pie', '||questionmark||', '||return||', '||return||', 'poppie:', 'because', "it's", 'a', 'pizza', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'not', 'a', 'pizza', 'until', 'it', 'comes', 'out', 'of', 'the', 'oven', '||exclammark||', '||return||', '||return||', 'poppie:', "it's", 'a', 'pizza', 'the', 'moment', 'you', 'put', 'your', 'fists', 'in', 'the', 'dough', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'it', "isn't", '||exclammark||', '||return||', '||return||', 'poppie:', 'yes', '||comma||', 'it', 'is', '||exclammark||', '||return||', '||return||', "joe's", 'wife:', "i'm", 'home', '||period||', '||return||', '||return||', 'joe:', 'hey', '||comma||', 'honey', '||period||', '||return||', '||return||', 'remy:', 'hi', '||comma||', 'mom', '||period||', '||return||', '||return||', "joe's", 'wife:', 'hi', '||comma||', 'baby', '||period||', '||leftparen||', 'to', 'george', '||period||', '||rightparen||', 'hello', '||period||', 'breakfast', 'at', "tiffany's", '||questionmark||', '||return||', '||return||', 'joe:', 'yeah', '||period||', '||return||', '||return||', "joe's", 'wife:', 'well', '||comma||', 'i', 'just', 'came', 'back', 'from', "angela's", '||comma||', "it's", 'not', 'looking', 'very', 'good', 'for', 'duncan', '||period||', '||return||', '||return||', 'joe:', 'aw', '||comma||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', "joe's", 'wife:', 'yeah', '||comma||', 'the', 'doctor', 'thinks', "it's", 'just', 'a', 'matter', 'of', 'time', '||dash||', '||return||', '||return||', 'george', '||leftparen||', 'clears', 'his', 'throat', '||comma||', 'annoyed', 'that', 'the', "movie's", 'being', 'interrupted', '||rightparen||', ':', 'joe', '||period||', '||period||', '||period||', 'could', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', "joe's", 'wife:', 'poor', 'guy', '||comma||', 'i', 'hate', 'to', 'see', 'him', 'suffer', 'like', 'this', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "i'm", 'sorry', '||comma||', 'i', '||period||', '||period||', '||period||', 'i', 'hate', 'to', 'be', 'one', 'of', 'those', 'people', '||comma||', 'but', "we're", 'right', 'in', 'the', 'middle', 'of', 'this', 'thing', '||period||', '||period||', '||period||', 'i', "can't", 'hear', '||period||', '||return||', '||return||', "joe's", 'wife:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'joe:', 'this', 'is', 'george', 'costanza', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'irritated', '||rightparen||', ':', 'this', 'is', 'very', 'hard', 'to', 'follow', 'with', 'all', 'the', 'talking', '||period||', '||return||', '||return||', 'joe:', "i'll", 'pause', 'it', '||comma||', 'okay', '||questionmark||', '||leftparen||', 'pauses', 'the', 'tape', 'with', 'the', 'remote', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'any', 'more', 'grape', 'juice', '||questionmark||', '||leftparen||', 'gets', 'up', 'and', 'goes', 'to', 'the', 'kitchen', '||period||', 'remy', 'moves', 'to', 'the', 'end', 'of', 'the', 'couch', 'where', 'george', 'was', 'sitting', '||period||', '||rightparen||', '||return||', '||return||', "joe's", 'wife:', 'who', 'is', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'remy:', "he's", 'in', 'some', 'book', 'club', '||period||', '||return||', '||return||', "joe's", 'wife:', 'and', "what's", 'he', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'remy:', 'cheating', 'on', 'his', 'test', '||period||', '||leftparen||', 'george', 'returns', 'from', 'the', 'kitchen', 'with', 'a', 'glass', 'of', 'grape', 'juice', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||comma||', 'we', 'watching', 'the', 'movie', '||comma||', 'or', 'are', 'we', 'still', 'talking', '||questionmark||', '||leftparen||', "joe's", 'wife', 'shakes', 'her', 'head', 'and', 'goes', 'into', 'the', 'other', 'room', '||period||', 'george', 'gestures', 'to', 'remy', 'to', 'move', '||period||', '||rightparen||', 'okay', '||comma||', "c'mon", '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'remy:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "c'mon", '||comma||', 'you', 'took', 'my', 'seat', '||period||', '||return||', '||return||', 'remy:', "it's", 'not', 'your', 'seat', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'sitting', 'there', '||comma||', "c'mon", '||period||', '||return||', '||return||', 'remy:', 'you', "didn't", 'save', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'the', 'arm', '||exclammark||', 'joe', '||period||', '||period||', '||period||', '||return||', '||return||', 'joe:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'was', 'very', 'comfortable', '||exclammark||', "i've", 'got', 'my', 'nuts', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'remy:', "it's", 'my', 'couch', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "c'mon", '||comma||', 'scooch', 'over', '||period||', '||leftparen||', 'tries', 'to', 'squeeze', 'into', 'the', 'corner', 'seat', 'of', 'the', 'couch', 'and', 'struggles', 'with', 'remy', '||period||', 'he', 'spills', 'his', 'glass', 'of', 'grape', 'juice', 'all', 'over', 'the', 'couch', 'in', 'the', 'process', '||period||', '||rightparen||', '||return||', '||return||', 'remy:', 'look', '||exclammark||', 'look', 'what', 'you', 'did', '||exclammark||', 'you', 'got', 'grape', 'juice', 'all', 'over', 'our', 'couch', '||comma||', "you've", 'ruined', 'our', 'couch', '||exclammark||', '||leftparen||', 'joe', 'slowly', 'walks', 'toward', 'george', 'with', 'his', 'hands', 'on', 'his', 'hips', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'joe', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'you', 'see', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "you're", 'gonna', 'get', 'a', 'new', 'couch', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'guess', 'i', 'have', 'no', 'choice', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'want', 'your', 'old', 'couch', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'hoping', "you'd", 'offer', '||period||', '||leftparen||', 'the', 'intercom', 'buzzes', '||comma||', 'jerry', 'answers', 'it', '||period||', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'intercom:', "it's", 'the', 'movers', '||period||', '||return||', '||return||', 'jerry:', "'kay", '||period||', '||leftparen||', 'buzzes', 'them', 'in', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'boyfriend', '||comma||', "he's", 'taking', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', "he's", 'not', 'my', 'boyfriend', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'take', 'a', 'guess', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'really', '||period||', '||leftparen||', 'carl', 'and', 'another', 'moving', 'guy', 'come', 'in', 'and', 'pick', 'up', 'the', 'couch', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'carl:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'carl', '||comma||', 'i', 'also', 'need', 'you', 'to', 'go', 'to', "elaine's", 'and', 'bring', 'my', 'old', 'couch', 'back', '||period||', '||return||', '||return||', 'carl:', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'could', 'you', '||questionmark||', '||return||', '||return||', 'carl:', 'sure', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'what', 'are', 'you', 'doing', 'with', 'this', 'couch', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'is', 'taking', 'it', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'tell', 'him', 'it', 'was', 'peed', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'said', 'he', "doesn't", 'care', '||comma||', "he'll", 'just', 'turn', 'the', 'cushion', 'over', '||period||', '||return||', '||return||', 'carl:', "i'm", 'sorry', 'you', 'feel', 'that', 'way', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'carl:', "it's", 'just', 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'it', 'is', '||period||', '||return||', '||return||', 'carl:', 'well', '||comma||', 'i', 'better', 'get', 'this', 'couch', 'back', 'to', "jerry's", '||period||', '||return||', '||return||', 'elaine:', 'can', 'i', 'offer', 'you', 'anything', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'carl', '||leftparen||', 'off', '||dash||', 'camera', '||rightparen||', ':', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'looking', 'in', 'the', 'fridge', '||rightparen||', ':', 'all', "i've", 'got', 'is', 'grape', 'juice', '||period||', '||return||', '||return||', 'carl:', 'throw', 'it', '||exclammark||', '||return||', '||return||', 'carl:', 'the', 'couch', '||exclammark||', '||return||', '||return||', 'marie', '||leftparen||', 'describing', 'holly', 'go', '||dash||', 'lightly', 'in', '||quotemark||', 'breakfast', 'at', "tiffany's", '||quotemark||', '||rightparen||', ':', 'she', "didn't", 'want', 'the', 'constraints', 'of', 'any', 'relationship', '||comma||', "that's", 'why', 'she', 'got', 'rid', 'of', 'the', 'cat', '||period||', 'the', 'most', 'important', 'thing', 'in', "holly's", 'life', 'was', 'her', 'independence', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'not', 'really', '||period||', 'after', 'all', '||comma||', 'she', 'did', 'get', 'together', 'with', 'george', 'peppard', '||period||', 'i', 'mean', '||comma||', 'fred', '||period||', '||return||', '||return||', 'marie:', 'george', '||period||', '||period||', '||period||', "fred's", 'gay', '||period||', '||return||', '||return||', 'jerry:', "i've", 'never', 'been', 'able', 'to', 'figure', 'out', 'why', 'they', 'make', 'these', 'bizarre', 'toilet', 'seats', 'that', 'they', 'have', '||period||', 'you', 'know', '||comma||', 'like', 'those', 'clear', 'lucite', 'ones', '||comma||', 'with', 'all', 'the', '||comma||', 'the', 'coins', 'in', 'it', '||questionmark||', "it's", 'a', 'lovely', 'tribute', 'to', 'our', 'past', 'president', '||comma||', 'by', 'the', 'way', '||period||', "it's", 'not', 'bad', 'enough', 'lincoln', 'got', 'shot', 'in', 'the', 'head', '||comma||', 'we', 'gotta', 'pull', 'down', 'our', 'pants', 'and', 'sit', 'on', 'him', '||comma||', 'too', '||period||', "it's", 'just', 'incomprehensible', 'that', 'you', 'would', 'buy', 'a', 'thing', 'like', 'this', '||comma||', 'you', 'install', 'it', 'on', 'your', 'toilet', 'seat', '||comma||', 'and', 'this', 'says', 'what', 'about', 'you', '||questionmark||', '||quotemark||', 'well', '||comma||', 'i', "can't", 'afford', 'to', 'just', 'throw', 'money', 'down', 'the', 'toilet', '||comma||', 'but', 'look', 'how', 'close', 'i', 'am', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', 'cannot', 'believe', "lindsay's", 'still', 'seeing', 'you', 'after', 'that', '||quotemark||', 'breakfast', 'at', "tiffany's", '||quotemark||', 'thing', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'she', 'finds', 'my', 'stupidity', 'charming', '||period||', '||return||', '||return||', 'jerry:', 'as', 'we', 'all', 'do', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'anyway', '||comma||', "she's", 'uh', '||comma||', 'having', 'some', 'kind', 'of', 'a', 'family', 'lunch', '||comma||', "i'll", 'swing', 'by', 'after', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', "you're", 'gonna', 'meet', 'the', 'mother', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "i'll", 'zip', 'in', '||comma||', '||quotemark||', 'how', 'do', 'you', 'do', '||questionmark||', '||quotemark||', '||comma||', 'zip', 'out', '||period||', "she'll", 'love', 'me', '||period||', '||return||', '||return||', 'jerry:', "you're", 'good', 'with', 'the', 'mothers', '||period||', '||return||', '||return||', 'george:', "y'know", '||comma||', "i'm", 'better', 'with', 'the', 'mothers', 'than', 'i', 'am', 'with', 'the', 'daughters', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'should', 'date', 'the', 'mothers', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', 'i', 'could', 'talk', 'to', 'the', 'mothers', 'and', 'have', 'sex', 'with', 'the', 'daughters', '||comma||', 'then', "i'd", 'really', 'have', 'something', "goin'", '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'got', 'something', "goin'", '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', 'apartment', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||leftparen||', 'heads', 'toward', 'bathroom', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'got', 'a', 'hammer', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'need', 'a', 'hammer', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'got', 'this', 'new', 'poster', '||period||', '3', '||dash||', 'd', 'art', '||questionmark||', 'computers', 'generate', "'em", '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||exclammark||', 'i', 'wanna', 'see', 'that', '||period||', 'bring', 'it', 'over', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'i', "don't", 'have', 'it', 'now', '||period||', 'i', 'gotta', 'pick', 'it', 'up', 'at', 'mr', '||period||', "pitt's", '||period||', 'elaine', 'was', 'framing', 'a', 'bunch', 'of', 'stuff', 'for', 'him', '||comma||', 'so', 'she', 'did', 'me', 'a', 'favor', '||period||', 'what', '||comma||', 'you', 'wanna', 'take', 'a', 'ride', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouting', 'to', 'the', 'bathroom', 'door', '||rightparen||', 'george', '||comma||', 'you', 'wanna', 'go', 'for', 'a', 'ride', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'inside', 'bathroom', '||rightparen||', 'nah', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'could', 'you', 'wait', 'until', 'the', 'man', 'finishes', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i've", 'had', 'it', 'with', 'you', 'two', '||period||', '||leftparen||', 'opens', 'apartment', 'door', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'guess', 'what', '||questionmark||', 'remember', 'that', 'woman', 'you', 'saw', 'me', 'with', 'the', 'other', 'day', '||questionmark||', 'you', 'know', '||comma||', 'she', 'used', 'to', 'be', 'an', 'olympic', 'gymnast', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'gymnast', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "she's", 'romanian', '||comma||', 'she', 'won', 'a', 'silver', 'at', 'the', "'84", 'olympics', '||period||', '||return||', '||return||', 'kramer:', 'a', 'gymnast', '||comma||', 'jerry', '||period||', 'think', 'of', 'the', 'flexibility', '||period||', 'mmm', '||comma||', 'that', "sex'll", 'melt', 'your', 'face', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'think', "i'm", 'bailing', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shuts', 'door', '||rightparen||', '||quotemark||', 'bailing', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'know', '||comma||', 'kramer', '||comma||', "there's", 'always', 'a', 'price', 'to', 'pay', 'for', 'just', 'a', 'sexual', 'dalliance', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'should', 'pay', 'that', 'price', '||period||', '||return||', '||return||', 'jerry:', "she's", 'romanian', '||period||', 'what', 'am', 'i', 'gonna', 'talk', 'to', 'her', 'about', '||comma||', 'ceausescu', '||questionmark||', '||return||', '||return||', 'kramer:', 'ch', '||dash||', 'oo', '||dash||', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'emerging', 'from', 'bathroom', '||comma||', 'buttoning', 'his', 'shirt', '||rightparen||', 'a', 'gymnast', '||exclammark||', 'i', "can't", 'believe', 'it', '||comma||', 'you', "didn't", 'tell', 'me', 'she', 'was', 'a', 'gymnast', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'watching', 'george', 'buttoning', 'his', 'shirt', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', "i'm", "puttin'", 'my', 'shirt', 'back', 'on', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stares', 'at', 'george', '||comma||', 'incredulous', '||rightparen||', '||quotemark||', 'back', 'on', '||quotemark||', '||questionmark||', 'what', 'was', 'it', 'doing', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'take', 'it', 'off', 'when', 'i', 'go', 'to', 'the', '||comma||', 'uh', '||comma||', "y'know", '||comma||', 'to', 'the', '||quotemark||', 'office', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'laughing', '||rightparen||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'frees', 'me', 'up', '||period||', 'no', 'encumbrances', '||period||', '||return||', '||return||', 'jerry:', 'unbuttoned', '||comma||', 'or', 'all', 'the', 'way', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'the', 'way', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'convulses', 'in', 'pain', '||rightparen||', 'yeow', '||exclammark||', 'whoa', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'again', '||questionmark||', 'kramer', '||comma||', 'if', 'you', 'keep', 'getting', 'these', 'attacks', '||comma||', 'you', 'should', 'see', 'the', 'doctor', 'and', 'have', 'it', 'checked', 'out', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'exiting', 'apartment', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picks', 'up', 'newspaper', '||comma||', 'turns', 'to', 'george', '||rightparen||', 'you', 'always', 'take', 'the', 'shirt', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'always', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'tell', "ya'", '||comma||', 'knowing', 'you', 'is', 'like', 'going', 'out', 'in', 'the', 'jungle', '||period||', 'i', 'never', 'know', 'what', "i'm", 'going', 'to', 'find', 'next', '||comma||', 'and', "i'm", 'real', 'scared', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'elaine', '||comma||', 'i', 'need', 'you', 'to', 'proofread', 'this', 'report', 'for', 'my', 'meeting', 'with', 'the', 'poland', 'creek', 'bottled', 'water', 'people', '||period||', '||return||', '||return||', 'elaine:', 'what', 'meeting', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'told', 'you', '||period||', 'i', 'sit', 'on', 'the', 'board', 'of', 'trustees', 'for', 'morgan', 'springs', '||comma||', 'and', "we're", 'trying', 'to', 'acquire', 'poland', 'creek', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||leftparen||', 'tries', 'to', 'take', 'paper', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'pulls', 'away', '||rightparen||', 'are', 'you', 'using', 'a', 'fountain', 'pen', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'they', 'smear', '||exclammark||', 'under', 'no', 'circumstances', 'is', 'ink', 'to', 'be', 'used', 'in', 'this', 'office', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||exclammark||', "i'll", 'use', 'a', 'pencil', '||comma||', 'mr', '||period||', 'pitt', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'come', 'in', '||comma||', 'come', 'in', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'enters', '||comma||', 'points', 'at', 'package', '||rightparen||', 'yah', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'right', 'there', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'rips', 'open', 'package', '||rightparen||', 'yeah', '||comma||', "that's", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', "it's", '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holds', 'up', 'framed', 'picture', '||rightparen||', 'there', 'she', 'blows', '||exclammark||', '||leftparen||', 'throws', 'paper', 'around', '||rightparen||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'kramer', '||comma||', 'can', 'you', 'do', 'this', 'at', 'home', '||questionmark||', "i've", 'got', '||comma||', "i've", 'got', 'work', 'to', 'do', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'these', 'are', 'nice', 'corners', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'elaine', '||comma||', 'did', 'i', 'hear', '||period||', '||period||', '||period||', '||leftparen||', 'sees', 'kramer', '||rightparen||', 'oh', '||comma||', 'this', 'is', 'very', 'odd', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', 'picture', '||rightparen||', 'yeah', '||comma||', "it's", '3', '||dash||', 'd', 'art', '||period||', 'computers', 'generate', "'em", '||period||', 'big', 'computers', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'yes', '||comma||', "i've", 'heard', 'about', 'these', '||period||', 'how', 'do', 'they', 'work', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'blur', 'your', 'eyes', 'like', "you're", "starin'", 'straight', 'through', 'the', 'picture', '||period||', 'and', 'you', 'keep', 'your', 'eyes', 'unfocused', '||period||', 'and', 'then', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'and', 'pitt', 'stare', 'at', 'picture', '||rightparen||', 'oh', '||comma||', 'oh', '||comma||', 'oh', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', "don't", 'see', 'it', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'a', 'spaceship', '||comma||', 'surrounded', 'by', 'planets', '||comma||', 'asteroids', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'still', "don't", 'see', 'it', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'kramer', '||comma||', "that's", 'enough', '||period||', 'mr', '||period||', 'pitt', 'has', 'got', 'work', 'to', 'do', '||period||', '||return||', '||return||', 'kramer:', "ya'", 'ever', 'dream', 'in', '3', '||dash||', 'd', '||questionmark||', "it's", 'like', 'the', 'boogeyman', 'is', "comin'", 'right', 'at', 'you', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'a', 'spaceship', '||comma||', 'where', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', '||rightparen||', 'right', 'in', 'here', '||period||', 'just', 'keep', 'your', 'eyes', 'unfocused', '||period||', '||leftparen||', 'convulses', 'in', 'pain', '||rightparen||', 'waahh', '||exclammark||', 'oh', '||comma||', 'mama', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', 'mama', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'kramer', '||comma||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'think', 'i', 'gotta', 'go', 'to', 'the', 'doctor', '||exclammark||', '||leftparen||', 'exits', '||rightparen||', 'oh', '||comma||', 'mama', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'still', 'staring', 'at', 'picture', '||rightparen||', 'how', 'long', 'does', 'it', 'usually', 'take', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'enright:', 'oh', '||comma||', 'george', '||comma||', 'it', 'is', 'so', 'nice', 'to', 'finally', 'meet', 'you', '||period||', 'and', "i'm", 'sorry', "we've", 'kept', 'lindsay', 'so', 'long', '||period||', '||return||', '||return||', 'lindsay:', 'mother', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'not', 'at', 'all', '||period||', 'no', '||comma||', 'i', 'have', 'always', 'felt', 'that', 'the', 'most', 'important', 'thing', 'in', 'the', 'world', 'is', 'spending', 'time', 'with', 'family', '||period||', '||return||', '||return||', 'mrs', '||period||', 'enright:', 'oh', '||questionmark||', 'are', 'you', 'and', 'your', 'family', 'close', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'hesitates', '||rightparen||', 'very', 'close', '||comma||', 'yes', '||period||', 'almost', 'painfully', 'close', '||period||', '||return||', '||return||', 'lindsay:', 'mother', '||comma||', "i'm", 'going', 'to', 'walk', 'nana', 'and', 'aunt', 'phyllis', 'to', 'the', 'elevator', '||period||', 'george', '||comma||', 'do', 'you', 'mind', 'waiting', 'just', 'one', 'more', 'minute', '||questionmark||', '||return||', '||return||', 'george:', 'mind', '||questionmark||', 'why', 'would', 'i', 'mind', '||questionmark||', 'i', 'would', 'love', 'to', 'wait', '||exclammark||', '||leftparen||', 'shakes', 'hands', 'with', 'nana', '||rightparen||', 'nana', '||comma||', 'nice', 'to', 'see', 'you', '||period||', 'ni', '||dash||', 'ni', '||dash||', 'ni', '||dash||', 'ni', '||dash||', 'nana', '||exclammark||', '||leftparen||', 'embraces', 'another', 'guest', '||comma||', 'kisses', 'her', '||rightparen||', 'aunt', 'phyllis', '||comma||', 'always', 'a', 'pleasure', '||period||', 'what', 'a', 'pleasure', '||exclammark||', 'hey', '||comma||', "let's", 'do', 'this', 'again', 'real', 'soon', '||period||', 'i', 'had', 'fun', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'enright:', 'can', 'i', 'offer', 'you', 'anything', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', '||comma||', "i'm", 'fine', '||period||', 'let', 'me', 'help', 'you', 'with', 'these', 'dishes', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'enright:', 'oh', 'no', '||comma||', 'george', '||comma||', 'you', "don't", 'have', 'to', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'know', 'i', "don't", 'have', 'to', '||comma||', 'i', 'want', 'to', '||period||', '||return||', '||return||', 'mrs', '||period||', 'enright:', 'george', '||comma||', 'you', 'are', 'such', 'a', 'gentleman', '||period||', '||return||', '||return||', 'george:', "i'd", 'argue', 'if', 'i', 'could', '||comma||', 'mrs', '||period||', 'enright', '||period||', '||leftparen||', 'exits', '||rightparen||', 'here', 'we', 'go', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'mrs', '||period||', 'enright:', '||leftparen||', 'wide', '||dash||', 'eyed', '||rightparen||', 'oh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'spits', 'out', 'mouthful', 'of', 'food', '||rightparen||', 'mrs', '||period||', 'enright', '||exclammark||', 'mrs', '||period||', 'enright', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'at', '3', '||dash||', 'd', 'picture', '||rightparen||', 'look', '||comma||', "there's", 'a', 'spaceship', '||exclammark||', 'that', 'is', 'so', 'cool', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', '||rightparen||', 'right', 'here', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', "i'm", 'looking', 'there', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'unfocus', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'am', 'unfocused', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'answering', 'phone', '||rightparen||', 'hello', '||questionmark||', 'oh', '||comma||', 'yeah', '||comma||', 'okay', 'fine', '||period||', 'uh', '||comma||', "he'll", 'be', 'right', 'down', '||period||', '||leftparen||', 'to', 'pitt', '||rightparen||', "car's", 'here', 'to', 'pick', 'you', 'up', 'and', 'take', 'you', 'to', 'the', 'meeting', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'still', 'staring', 'at', 'picture', '||rightparen||', 'meeting', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'the', 'poland', 'creek', 'merger', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'why', "don't", 'you', 'go', 'for', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'can', 'i', 'go', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'oh', '||comma||', 'all', "they're", 'gonna', 'do', 'is', 'read', 'the', 'report', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||comma||', 'i', 'do', 'not', 'think', 'that', 'is', 'such', 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'oh', '||comma||', 'damn', 'this', 'thing', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'desperately', 'to', 'make', 'conversation', '||rightparen||', 'so', '||comma||', 'ceausescu', '||period||', 'he', "must've", 'been', 'some', 'dictator', '||period||', '||return||', '||return||', 'katya:', 'oh', 'yes', '||period||', 'he', 'was', 'not', 'shy', 'about', 'dictating', '||period||', '||return||', '||return||', 'jerry:', 'he', '||comma||', 'uh', '||comma||', 'he', "must've", 'been', 'dictating', 'first', 'thing', 'in', 'the', 'morning', '||period||', '||quotemark||', 'i', 'want', 'a', 'cup', 'of', 'coffee', 'and', 'a', 'muffin', '||exclammark||', '||quotemark||', '||return||', '||return||', 'katya:', 'and', 'you', 'could', 'not', 'refuse', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "you'd", 'have', 'to', 'be', 'crazy', '||period||', '||return||', '||return||', 'katya:', 'he', 'was', 'a', 'very', 'bad', 'dictator', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'very', 'bad', '||period||', 'very', '||comma||', 'very', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'so', 'lemme', 'get', 'this', 'straight', 'you', 'find', 'yourself', 'in', 'the', 'kitchen', '||period||', 'you', 'see', 'an', 'clair', '||comma||', 'in', 'the', 'receptacle', '||period||', 'and', 'you', 'think', 'to', 'yourself', '||comma||', '||quotemark||', 'what', 'the', 'hell', '||comma||', "i'll", 'just', 'eat', 'some', 'trash', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'it', 'was', 'not', 'trash', '||exclammark||', '||return||', '||return||', 'jerry:', 'was', 'it', 'in', 'the', 'trash', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'then', 'it', 'was', 'trash', '||period||', '||return||', '||return||', 'george:', 'it', "wasn't", 'down', 'in', '||comma||', 'it', 'was', 'sort', 'of', 'on', 'top', '||period||', '||return||', '||return||', 'jerry:', 'but', 'it', 'was', 'in', 'the', 'cylinder', '||exclammark||', '||return||', '||return||', 'george:', 'above', 'the', 'rim', '||period||', '||return||', '||return||', 'jerry:', 'adjacent', 'to', 'refuse', '||comma||', 'is', 'refuse', '||period||', '||return||', '||return||', 'george:', 'it', 'was', 'on', 'a', 'magazine', '||exclammark||', 'and', 'it', 'still', 'had', 'the', 'doily', 'on', '||period||', '||return||', '||return||', 'jerry:', 'was', 'it', 'eaten', '||questionmark||', '||return||', '||return||', 'george:', 'one', 'little', 'bite', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'garbage', '||period||', '||return||', '||return||', 'george:', 'but', 'i', 'know', 'who', 'took', 'the', 'bite', '||period||', 'it', 'was', 'her', 'aunt', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', '||comma||', 'my', 'friend', '||comma||', 'have', 'crossed', 'the', 'line', 'that', 'divides', 'man', 'and', 'bum', '||period||', 'you', 'are', 'now', 'a', 'bum', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'a', 'stone', '||period||', '||return||', '||return||', 'jerry:', 'what', 'stone', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'kidney', 'stone', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||comma||', 'anyway', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', '||comma||', "it's", 'a', 'stony', 'mineral', 'concretion', '||comma||', 'formed', 'abnormally', 'in', 'the', 'kidney', '||period||', 'and', 'this', 'jagged', 'shard', 'of', 'calcium', 'pushes', 'its', 'way', 'through', 'the', 'ureter', 'into', 'the', 'bladder', '||period||', "it's", 'forced', 'out', 'through', 'the', 'urine', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'gotta', 'hurt', '||period||', '||return||', '||return||', 'aronson:', 'our', 'shareholders', 'have', 'given', 'basic', 'approval', 'for', 'the', 'merger', '||comma||', 'including', 'the', 'stock', 'swap', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', 'the', '||quotemark||', 'stock', 'swap', '||quotemark||', '||period||', "let's", 'swap', 'some', 'stock', '||period||', '||leftparen||', 'giggles', '||rightparen||', '||return||', '||return||', 'beck:', 'and', 'if', "you'll", 'just', 'give', 'this', 'to', 'mr', '||period||', 'pitt', '||comma||', 'and', 'tell', 'him', 'we', 'expect', 'to', 'be', 'in', 'full', '||dash||', 'scale', 'production', 'by', 'the', 'spring', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', '||leftparen||', 'standing', 'up', '||rightparen||', 'hey', '||comma||', 'you', 'guys', '||dash||', '||dash||', "what's", 'the', 'name', 'of', 'the', 'new', 'company', 'gonna', 'be', '||questionmark||', '||return||', '||return||', 'beck:', 'moland', 'spring', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'making', 'a', 'face', '||rightparen||', '||quotemark||', 'moland', '||quotemark||', '||questionmark||', '||return||', '||return||', 'aronson:', 'yes', '||comma||', 'we', 'combined', 'morgan', 'and', 'poland', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'know', '||comma||', 'but', '||period||', '||period||', '||period||', '||quotemark||', 'moland', '||quotemark||', '||questionmark||', 'i', "wouldn't", 'drink', 'anything', 'called', '||quotemark||', 'moland', '||quotemark||', '||period||', '||return||', '||return||', 'aronson:', 'but', 'it', 'was', 'mr', '||period||', "pitt's", 'idea', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'well', '||comma||', 'ah', '||comma||', "what's", 'in', 'a', 'name', '||questionmark||', 'i', 'mean', '||comma||', "water's", 'water', '||period||', 'right', '||questionmark||', '||return||', '||return||', 'aronson:', '||leftparen||', 'to', 'beck', '||rightparen||', "we've", 'got', 'to', 'do', 'something', 'about', 'that', 'name', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'phone', '||comma||', 'as', 'jerry', 'gestures', 'beside', 'him', '||rightparen||', 'no', '||comma||', 'lindsay', '||comma||', 'it', 'was', 'not', 'in', 'the', 'garbage', '||period||', 'it', 'was', 'above', 'the', 'garbage', '||period||', 'hovering', '||period||', 'like', 'an', 'angel', '||period||', 'of', 'course', 'i', 'know', 'your', 'aunt', 'bit', 'it', '||period||', 'i', 'kissed', 'her', 'goodbye', '||period||', 'listen', '||comma||', 'can', 'i', 'tell', 'you', 'something', 'else', '||questionmark||', 'in', 'my', 'family', '||comma||', 'we', 'used', 'to', 'eat', 'out', 'of', 'the', 'garbage', 'all', 'the', 'time', '||period||', '||leftparen||', 'jerry', 'makes', 'a', 'face', '||rightparen||', 'it', 'was', 'no', 'big', 'thing', '||period||', "that's", 'right', '||period||', 'oh', '||comma||', 'okay', '||period||', 'buh', '||dash||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', 'phone', '||rightparen||', "i'm", 'back', 'in', '||comma||', 'she', 'gave', 'me', 'a', 'second', 'chance', '||period||', '||return||', '||return||', 'jerry:', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'good', 'for', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', "y'know", 'what', 'you', 'should', 'do', 'now', '||questionmark||', 'get', 'her', 'some', 'flowers', '||comma||', 'smooth', 'it', 'out', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'flowers', '||period||', 'i', 'will', 'get', 'her', 'flowers', '||comma||', 'i', 'will', 'go', 'to', 'the', 'florist', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', 'apartment', '||comma||', 'holding', 'up', 'videotape', '||rightparen||', 'behold', '||exclammark||', 'the', 'games', 'of', 'the', "'84", 'olympiad', '||exclammark||', "katya's", 'silver', 'medal', 'performance', '||exclammark||', '||leftparen||', 'inserts', 'tape', 'into', 'vcr', '||comma||', 'sets', 'up', 'tv', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'are', 'you', 'still', 'on', 'this', '||questionmark||', "i've", 'seen', 'gymnasts', '||period||', 'i', 'know', 'what', 'they', 'do', '||period||', "it's", 'not', 'going', 'to', 'make', 'any', 'difference', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'what', 'is', 'your', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "y'know", '||comma||', 'guys', 'like', 'you', '||comma||', 'with', 'no', 'conscience', '||comma||', "don't", 'know', 'what', "it's", 'like', 'for', 'guys', 'like', 'me', '||period||', "i'm", 'in', 'the', 'unfortunate', 'position', 'of', 'having', 'to', 'consider', "people's", 'feelings', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'jerry', '||dash||', '||dash||', 'are', 'you', 'familiar', 'with', 'the', 'kama', 'sutra', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'tantric', 'yoga', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'stand', 'on', 'the', 'threshold', 'to', 'the', 'magical', 'world', 'of', 'sensual', 'delights', 'that', 'most', 'men', 'dare', 'not', 'dream', 'of', '||exclammark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'you', 'can', 'really', 'talk', 'some', 'trash', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'i', 'guess', "that's", 'better', 'than', 'eating', 'it', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'why', "don't", 'we', 'just', 'watch', 'the', 'tape', '||questionmark||', '||leftparen||', 'starts', 'playback', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'pass', 'your', 'stone', 'yet', '||questionmark||', '||return||', '||return||', 'kramer:', 'not', 'yet', '||period||', 'but', 'the', 'suspense', 'is', 'killing', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'at', 'tv', '||rightparen||', 'hey', '||comma||', "that's", 'her', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'oh', 'yeah', '||comma||', "that's", 'her', '||period||', '||leftparen||', 'feminine', 'grunts', 'and', 'sighs', 'can', 'be', 'heard', 'as', 'they', 'watch', 'the', 'tape', '||rightparen||', 'look', 'at', 'the', 'height', '||comma||', 'jerry', '||comma||', 'the', 'extension', '||exclammark||', 'now', 'watch', 'the', 'tuck', '||period||', 'handstand', '||comma||', 'half', '||dash||', 'turn', '||comma||', 'giant', 'into', 'a', 'straddle', '||comma||', 'back', 'into', 'another', 'handstand', '||period||', 'nice', 'kip', '||period||', 'reverse', 'hecht', '||period||', 'oh', '||comma||', 'nice', 'leg', 'extension', '||comma||', 'good', 'form', '||exclammark||', 'now', '||comma||', 'here', 'comes', 'the', 'big', 'dismount', '||period||', 'look', 'at', 'the', 'rotation', '||comma||', 'full', 'in', '||comma||', 'double', 'back', '||comma||', 'and', 'she', 'sticks', 'the', 'landing', '||exclammark||', '||leftparen||', 'gets', 'up', 'to', 'leave', 'as', 'george', 'and', 'jerry', 'continue', 'to', 'watch', '||comma||', 'mouths', 'agape', '||rightparen||', 'perhaps', "you'd", 'like', 'to', 'keep', 'the', 'tape', '||questionmark||', '||leftparen||', 'silence', '||rightparen||', 'well', '||comma||', "i'll", 'take', 'that', 'as', 'a', 'yes', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', 'and', 'excited', '||rightparen||', 'well', '||comma||', 'here', 'we', 'are', '||period||', '||return||', '||return||', 'katya:', 'yes', '||period||', 'we', 'are', 'here', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'stay', 'on', 'that', 'beam', 'like', 'that', '||questionmark||', '||leftparen||', 'holds', 'up', 'hand', '||rightparen||', 'i', 'mean', '||comma||', "it's", 'only', 'this', 'wide', '||exclammark||', '||return||', '||return||', 'katya:', 'i', 'can', 'balance', 'myself', 'in', 'any', 'position', '||period||', '||return||', '||return||', 'katya:', 'it', 'is', 'amazing', 'after', 'years', 'of', 'training', 'how', 'one', 'can', 'contort', "one's", 'body', '||period||', 'of', 'course', '||comma||', 'it', 'is', 'only', 'useful', 'in', 'gymnastics', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'boy', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "couldn't", 'believe', 'it', '||period||', 'uh', '||comma||', 'i', 'mean', 'i', 'thought', 'i', 'was', 'entering', 'a', '||quotemark||', 'magical', 'world', '||quotemark||', 'of', 'sensual', 'delights', '||comma||', 'but', 'it', 'was', 'just', 'so', 'ordinary', '||period||', 'i', 'mean', '||comma||', 'there', 'was', 'nothing', 'gymnastic', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'did', 'you', 'think', 'she', 'was', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||period||', 'i', 'mean', '||period||', '||period||', '||period||', 'i', 'dunno', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'obviously', 'i', 'prefer', 'not', 'to', 'mention', 'any', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'think', '||comma||', 'she', 'was', 'going', 'to', 'take', 'some', 'of', 'that', 'chalk', 'and', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'see', '||comma||', 'now', 'i', 'really', "don't", 'want', 'to', 'get', 'into', 'this', '||comma||', 'any', 'kind', 'of', 'specifics', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||period||', 'one', 'thing', '||questionmark||', 'one', 'thing', '||exclammark||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', 'frankly', '||comma||', 'i', 'thought', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'gonna', "kinda'", 'be', 'like', 'the', 'apparatus', '||period||', '||return||', '||return||', 'kramer:', 'you', 'mean', 'like', 'the', 'uneven', 'parallel', 'bars', '||questionmark||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'again', '||comma||', 'i', 'really', "don't", 'feel', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'the', 'balance', 'beam', '||questionmark||', '||return||', '||return||', 'jerry:', 'could', 'we', 'stop', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gasps', 'in', 'mock', 'surprise', '||rightparen||', 'not', 'the', 'pommel', 'horse', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "let's", 'just', 'drop', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'lemme', 'ask', 'you', 'this', 'how', 'long', 'would', 'you', 'say', 'i', 'have', 'to', 'put', 'in', 'now', 'because', 'of', '||comma||', 'you', 'know', '||comma||', 'last', 'night', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dunno', '||comma||', 'at', 'least', 'three', 'weeks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'great', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'that', 'is', 'such', 'small', 'potatoes', '||period||', 'i', 'think', 'that', 'i', 'may', 'have', 'single', '||dash||', 'handedly', 'put', 'the', 'kibosh', 'on', 'the', 'big', 'water', 'merger', '||period||', '||return||', '||return||', 'jerry:', 'between', 'poland', 'and', 'morgan', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'started', 'a', 'big', 'name', 'controversy', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', 'the', 'stone', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||comma||', 'did', 'you', 'pass', 'the', 'stone', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'off', '||dash||', 'screen', '||rightparen||', 'no', '||comma||', 'i', 'tried', 'to', 'do', 'a', 'reverse', 'hecht', 'off', 'my', 'couch', 'and', 'i', "didn't", 'make', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'singing', 'as', 'he', 'exits', 'florist', 'with', 'bouquet', 'and', 'a', 'cup', 'of', 'coffee', '||rightparen||', '||quotemark||', '||period||', '||period||', '||period||', 'tootsie', '||comma||', 'good', '||dash||', 'bye', '||period||', 'too', '||dash||', 'too', '||comma||', 'tootsie', '||period||', '||period||', '||period||', '||quotemark||', '||leftparen||', 'takes', 'a', 'drink', '||comma||', 'makes', 'a', 'face', '||comma||', 'shouts', 'back', 'at', 'shop', '||rightparen||', 'you', 'call', 'this', 'coffee', '||questionmark||', '||leftparen||', 'dumps', 'out', 'coffee', 'behind', 'him', '||comma||', 'accidentally', 'hitting', 'a', 'parked', "car's", 'windshield', '||rightparen||', '||return||', '||return||', 'man', 'in', 'car:', 'hey', '||exclammark||', 'what', 'the', 'hell', 'was', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'sorry', '||exclammark||', "i'm", 'terribly', 'sorry', '||exclammark||', 'i', '||dash||', 'i', '||dash||', '||return||', '||return||', 'man', 'in', 'car:', 'clean', 'that', 'up', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sure', '||period||', 'of', 'course', '||period||', '||leftparen||', 'looks', 'for', 'place', 'to', 'set', 'down', 'flowers', '||rightparen||', 'um', '||comma||', 'uh', '||comma||', 'could', 'you', 'hold', 'these', '||questionmark||', 'for', 'just', 'a', 'second', '||comma||', 'just', 'a', 'second', '||period||', '||leftparen||', 'grabs', 'newspapers', 'from', 'trash', 'bin', '||comma||', 'begins', 'wiping', 'windshield', '||rightparen||', 'here', 'you', 'go', '||comma||', 'now', "don't", 'worry', 'about', 'a', 'thing', '||period||', "it's", 'gonna', 'be', 'fine', '||period||', 'here', 'we', 'go', '||period||', 'look', 'at', 'this', 'shine', '||period||', '||return||', '||return||', 'mrs', '||period||', 'enright:', '||leftparen||', 'sees', 'george', 'cleaning', 'car', 'windshield', '||comma||', 'looks', 'appalled', '||rightparen||', '||return||', '||return||', 'george:', 'look', 'at', 'this', 'sparkle', '||period||', '||leftparen||', 'looks', 'up', '||comma||', 'sees', "lindsay's", 'mother', '||rightparen||', 'mrs', '||period||', 'enright', '||exclammark||', '||leftparen||', 'runs', 'after', 'her', '||rightparen||', 'mrs', '||period||', 'enright', '||exclammark||', 'mrs', '||period||', 'enright', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'phone', '||comma||', 'as', 'jerry', 'gestures', 'beside', 'him', '||rightparen||', 'no', '||comma||', 'lindsay', '||comma||', 'i', 'had', 'accidentally', 'spilled', 'coffee', 'on', 'the', "gentleman's", 'windshield', '||period||', 'why', 'would', 'i', 'do', 'that', '||questionmark||', 'i', 'have', 'a', 'job', '||exclammark||', 'well', '||comma||', 'did', 'she', 'see', 'a', 'squeegee', '||questionmark||', 'well', '||comma||', "you're", 'not', 'going', 'to', 'make', 'a', 'dime', 'without', 'a', 'squeegee', '||period||', "that's", 'right', '||comma||', "that's", 'right', '||comma||', 'just', 'tell', 'your', 'mother', 'it', 'was', 'all', 'a', 'big', 'misunderstanding', '||period||', 'you', "won't", 'regret', 'it', '||period||', 'okay', '||comma||', "i'll", 'see', 'you', 'later', '||period||', 'buh', '||dash||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'strike', 'two', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'think', "i'm", 'going', 'down', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'behind', 'in', 'the', 'count', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', 'apartment', '||comma||', 'points', 'at', 'jerry', '||rightparen||', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'out', 'with', 'katya', '||comma||', 'thanks', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', 'you', 'should', 'try', 'again', '||period||', 'you', 'know', 'what', 'happens', 'the', 'first', 'time', 'people', 'are', 'a', 'little', 'shy', '||comma||', 'a', 'little', 'reticent', '||period||', '||return||', '||return||', 'jerry:', 'if', 'i', 'do', 'it', 'again', '||comma||', 'that', 'extends', 'my', 'payment', 'book', 'another', 'two', 'weeks', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'going', 'to', 'the', 'circus', '||period||', 'one', 'of', 'her', 'old', 'olympic', 'teammates', 'is', 'an', 'acrobat', '||period||', 'i', "don't", 'even', 'feel', 'like', 'going', 'out', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'jerry', '||comma||', "it's", 'your', 'obligation', '||period||', "c'mon", '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', "y'know", 'what', '||questionmark||', 'if', 'i', 'gotta', 'go', '||comma||', 'and', 'spend', 'time', 'with', 'this', 'girl', '||comma||', 'then', "you're", 'coming', 'with', 'me', '||comma||', 'dr', '||period||', 'cyclops', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', "don't", 'wanna', 'go', 'to', 'the', 'circus', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', "you're", 'going', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', "i'm", 'afraid', 'of', 'clowns', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'in', 'polo', 'outfit', '||comma||', 'complete', 'with', 'jacket', 'and', 'high', 'boots', '||rightparen||', 'i', "didn't", 'send', 'you', 'over', 'there', 'to', 'complain', 'about', 'the', 'name', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "couldn't", 'help', 'it', '||period||', '||quotemark||', 'moland', 'spring', '||quotemark||', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'like', 'the', 'name', '||quotemark||', 'moland', '||quotemark||', '||period||', 'i', 'picked', 'it', 'out', '||period||', 'after', 'all', 'those', 'months', 'of', 'negotiating', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'so', 'sorry', '||exclammark||', 'i', '||dash||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'well', '||comma||', "i'm", 'going', 'riding', '||period||', 'i', "haven't", 'been', 'on', 'jenny', 'for', 'three', 'days', '||comma||', 'all', 'because', 'of', 'this', 'blasted', 'painting', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'sorry', '||period||', '||leftparen||', 'picks', 'up', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'walks', 'by', '3', '||dash||', 'd', 'poster', '||comma||', 'stops', '||rightparen||', 'wait', 'a', 'minute', '||exclammark||', 'wait', 'a', 'minute', '||period||', 'ah', '||exclammark||', '||return||', '||return||', 'katya:', 'so', '||comma||', 'jerry', '||comma||', "you're", 'enjoying', 'the', 'circus', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'greatest', 'show', 'on', 'earth', '||quotemark||', '||exclammark||', '||return||', '||return||', 'katya:', 'my', 'father', 'used', 'to', 'take', 'me', 'to', 'the', 'circus', '||period||', 'when', 'the', 'elephants', 'came', 'by', '||comma||', 'he', 'would', 'scream', 'curses', 'at', 'them', '||comma||', 'blaming', 'them', 'for', 'all', 'the', 'ills', 'of', 'society', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'they', 'certainly', 'take', 'up', 'a', 'lot', 'of', 'space', '||period||', '||return||', '||return||', 'katya:', 'ah', '||comma||', 'misha', '||exclammark||', '||return||', '||return||', 'misha:', 'katya', '||exclammark||', '||return||', '||return||', 'katya:', 'misha', '||comma||', 'this', 'is', 'jerry', '||period||', '||return||', '||return||', 'misha:', 'ah', '||comma||', 'yes', '||period||', 'the', '||quotemark||', 'co', '||dash||', 'me', '||dash||', 'dian', '||quotemark||', '||comma||', 'eh', '||questionmark||', '||leftparen||', 'speaks', 'in', 'romanian', 'to', 'katya', '||rightparen||', '||return||', '||return||', 'katya:', '||leftparen||', 'laughs', '||comma||', 'replies', 'in', 'romanian', 'while', 'pointing', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'phone', '||rightparen||', 'oh', '||comma||', 'yes', '||comma||', 'yes', "i'll", 'tell', 'him', '||period||', 'yes', '||comma||', 'thank', 'you', '||period||', 'um', '||comma||', 'um', 'hold', 'on', '||period||', '||leftparen||', 'to', 'pitt', '||rightparen||', 'mr', '||period||', 'pitt', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'staring', 'at', '3', '||dash||', 'd', 'poster', '||rightparen||', 'i', 'think', "i'm", 'on', 'to', 'something', '||exclammark||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||exclammark||', 'the', 'board', 'of', 'directors', 'is', 'on', 'the', 'phone', '||period||', "they've", 'called', 'an', 'emergency', 'meeting', '||period||', 'they', 'want', 'you', 'to', 'be', 'there', 'to', 'discuss', 'the', 'merger', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'you', 'said', 'keep', 'your', 'eyes', 'out', 'of', 'focus', '||comma||', 'which', 'is', 'misleading', '||period||', 'you', 'want', 'deep', 'focus', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'phone', '||rightparen||', 'yes', '||comma||', 'hi', '||period||', 'okay', '||comma||', 'fine', '||comma||', 'yeah', '||comma||', 'hold', 'on', 'just', 'a', 'second', '||period||', 'lemme', 'just', '||period||', '||period||', '||period||', '||leftparen||', 'reaches', 'into', 'purse', '||rightparen||', 'yeah', '||comma||', "i've", 'got', 'it', '||period||', '||period||', '||period||', '||leftparen||', 'pulls', 'out', 'both', 'hands', 'completely', 'covered', 'in', 'black', 'ink', '||rightparen||', 'oh', '||exclammark||', 'oh', '||exclammark||', 'yeah', '||comma||', 'yeah', '||comma||', "he'll", 'be', 'there', '||period||', '||leftparen||', 'drops', 'phone', '||comma||', 'rushes', 'to', 'pitt', '||rightparen||', 'mr', '||period||', 'pitt', '||comma||', 'you', 'have', 'got', 'to', 'stop', 'staring', 'at', 'that', 'poster', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'see', 'something', 'that', 'could', 'be', 'a', 'spaceship', '||period||', 'is', 'it', 'round', '||questionmark||', 'is', 'it', 'pointy', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grabs', 'poster', '||comma||', 'smashes', 'it', '||rightparen||', 'no', '||comma||', 'you', "don't", 'see', 'it', '||comma||', 'and', "you're", 'never', 'going', 'to', 'see', 'it', '||exclammark||', '||leftparen||', 'grabs', 'pitt', 'by', 'the', 'lapels', '||comma||', 'getting', 'ink', 'all', 'over', 'his', 'jacket', '||rightparen||', 'mr', '||period||', 'pitt', '||comma||', 'you', 'have', 'to', 'meet', 'with', 'the', 'shareholders', '||comma||', 'you', 'have', 'to', 'leave', 'now', '||period||', 'do', 'you', 'hear', 'me', '||questionmark||', 'do', 'you', 'hear', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'hmm', '||comma||', "what's", 'happened', 'to', 'me', '||questionmark||', '||leftparen||', 'straightens', 'lapels', '||rightparen||', "when's", 'the', 'meeting', '||questionmark||', '||return||', '||return||', 'elaine:', 'in', 'about', 'twenty', 'minutes', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'oh', '||exclammark||', '||leftparen||', 'puts', 'finger', 'to', 'face', '||comma||', 'smearing', 'ink', 'on', 'his', 'upper', 'lip', 'which', 'now', 'resembles', 'an', '||quotemark||', 'adolph', 'hitler', '||quotemark||', '||dash||', 'style', 'moustache', '||rightparen||', 'do', 'i', 'have', 'time', 'to', 'change', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'no', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'well', '||comma||', 'excuse', 'me', '||comma||', "i'd", 'better', 'get', 'straight', 'over', 'there', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'mr', '||period||', 'pitt', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'yes', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', "there's", 'a', 'just', '||period||', '||period||', '||period||', '||leftparen||', 'points', 'at', 'her', 'own', 'upper', 'lip', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'sees', "elaine's", 'hands', 'covered', 'in', 'ink', '||rightparen||', 'is', 'that', 'ink', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'here', 'we', 'are', '||period||', '||return||', '||return||', 'lindsay:', 'do', 'you', 'want', 'to', 'come', 'in', '||questionmark||', 'my', "mother's", 'having', 'a', 'little', 'party', '||period||', '||return||', '||return||', 'george:', 'maybe', 'i', 'could', 'just', 'use', 'the', 'bathroom', '||period||', '||return||', '||return||', 'lindsay:', 'sure', '||period||', '||return||', '||return||', 'announcer:', '||leftparen||', 'voiceover', '||rightparen||', 'ladies', 'and', 'gentlemen', '||comma||', 'could', 'i', 'direct', 'your', 'attention', 'to', 'the', 'center', 'ring', '||comma||', 'where', 'the', 'incomparable', 'misha', 'will', 'balance', 'ten', 'stories', 'above', 'the', 'circus', 'floor', 'on', 'a', 'wire', 'no', 'wider', 'than', 'a', 'human', 'thumb', '||period||', '||return||', '||return||', 'misha:', 'it', 'is', 'time', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'break', 'a', 'leg', '||period||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'show', 'biz', '||period||', '||period||', '||period||', '||return||', '||return||', 'announcer:', 'ladies', 'and', 'gentlemen', '||comma||', 'the', 'incomparable', 'misha', '||exclammark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'those', 'capes', 'are', 'really', 'coming', 'back', '||period||', '||return||', '||return||', 'party', 'guest:', '||leftparen||', 'exits', 'bathroom', '||comma||', 'finds', 'george', 'waiting', '||rightparen||', 'oh', '||comma||', 'sorry', 'i', 'took', 'so', 'long', '||period||', "they've", 'got', 'one', 'of', 'those', '3', '||dash||', 'd', 'art', 'posters', 'in', 'there', '||period||', '||leftparen||', 'wipes', 'eyes', '||rightparen||', "it's", 'mesmerizing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'sound', '||questionmark||', '||return||', '||return||', 'katya:', '||leftparen||', 'covering', 'ears', '||rightparen||', 'it', 'is', 'horrible', '||exclammark||', '||return||', '||return||', 'george:', 'whew', '||exclammark||', 'anybody', 'see', 'that', 'poster', 'in', 'there', '||questionmark||', 'that', 'is', 'weird', '||comma||', 'wild', 'stuff', '||comma||', 'huh', '||questionmark||', 'whew', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'have', 'been', 'accused', 'of', 'wrong', '||dash||', 'doing', '||period||', 'but', 'these', 'false', 'accusations', 'will', 'not', 'deter', 'us', '||period||', 'we', 'will', 'annex', 'poland', 'by', 'the', 'spring', '||comma||', 'at', 'any', 'cost', '||exclammark||', 'and', '||period||', '||period||', '||period||', 'our', 'stock', 'will', 'rise', 'high', '||exclammark||', '||leftparen||', 'raises', 'hand', '||rightparen||', '||return||', '||return||', 'katya:', "he'll", 'be', 'all', 'right', '||period||', 'i', 'must', 'go', 'and', 'be', 'with', 'misha', 'now', '||period||', 'i', "don't", 'want', 'you', 'to', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'katya:', 'it', 'has', 'been', 'three', 'days', 'since', 'our', 'night', 'together', '||period||', 'misha', 'said', 'that', 'was', 'all', 'the', 'time', 'i', 'needed', 'to', 'put', 'in', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'katya:', 'in', 'my', 'country', '||comma||', 'they', 'speak', 'of', 'a', 'man', 'so', 'virile', '||comma||', 'so', 'potent', '||comma||', 'that', 'to', 'spend', 'a', 'night', 'with', 'such', 'a', 'man', 'is', 'to', 'enter', 'a', 'world', 'of', 'such', 'sensual', 'delights', 'most', 'women', 'dare', 'not', 'dream', 'of', '||period||', 'this', 'man', 'is', 'known', 'as', 'the', '||quotemark||', 'comedian', '||quotemark||', '||period||', 'you', 'may', 'tell', 'jokes', '||comma||', 'mr', '||period||', 'jerry', 'seinfeld', '||comma||', 'but', 'you', 'are', 'no', 'comedian', '||period||', '||leftparen||', 'walks', 'off', '||rightparen||', '||return||', '||return||', 'waitress:', 'o', '||period||', 'k', '||period||', 'cowboys', '||comma||', '||leftparen||', 'taps', 'pencil', 'on', 'her', 'pad', '||rightparen||', "what'll", 'you', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'ill', 'have', 'the', '||comma||', 'ah', '||comma||', 'turkey', 'club', 'without', 'the', 'bacon', '||period||', '||return||', '||return||', 'george:', 'and', 'ah', '||comma||', 'ill', 'have', 'the', 'bacon', 'club', 'without', 'the', 'turkey', '||period||', '||leftparen||', 'raises', 'eyebrows', '||rightparen||', '||return||', '||return||', 'waitress:', 'george', '||comma||', "don't", 'make', 'me', 'get', 'tough', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'why', '||comma||', 'you', 'think', 'you', 'can', '||comma||', 'beat', 'me', 'up', '||questionmark||', '||return||', '||return||', 'waitress:', 'you', "wouldn't", 'want', 'me', 'to', 'mess', 'up', 'the', 'beautiful', 'face', 'of', 'yours', '||period||', '||return||', '||return||', 'george:', 'huh', '||comma||', 'nggh', '[snort]', 'stop', '||period||', '||leftparen||', 'flirting', 'with', 'her', 'he', 'playfully', 'hits', 'her', 'arm', 'with', 'the', 'menu', '||comma||', 'then', 'flicks', 'it', 'into', 'the', 'air', '||rightparen||', '||return||', '||return||', 'waitress:', 'you', "don't", 'want', 'bacon', 'ill', 'surprise', 'you', '||period||', '||leftparen||', 'she', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', 'wow', '||comma||', 'is', 'she', 'not', 'terrific', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'does', 'have', 'a', 'way', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'she', 'thinks', 'i', 'have', 'a', 'beautiful', 'face', '||comma||', 'or', 'is', 'she', 'just', 'saying', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'they', 'do', 'work', 'on', 'tips', '||period||', '||return||', '||return||', 'george:', 'george', '||comma||', "don't", 'make', 'me', 'get', 'tough', 'with', 'you', '||period||', 'whu', '||comma||', 'hu', '||comma||', 'hu', '||comma||', 'hu', 'huuuu', '||leftparen||', 'raises', 'arms', '||rightparen||', 'who', 'says', 'that', '||questionmark||', 'she', 'is', 'really', 'cool', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', 'you', 'think', 'she', 'likes', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', 'should', 'have', 'got', 'the', 'egg', 'white', 'omelet', '||period||', '||return||', '||return||', 'george:', 'why', 'should', 'she', 'like', 'me', '||questionmark||', 'who', 'am', 'i', '||questionmark||', 'huh', '||comma||', "there's", 'a', 'million', 'people', 'to', 'like', '||period||', '||return||', '||return||', 'jerry:', 'the', 'omelet', '||period||', 'damn', '||period||', '||return||', '||return||', 'george:', 'maybe', 'she', 'could', 'like', 'me', '||questionmark||', 'is', 'it', 'that', 'far', 'fetched', '||questionmark||', 'maybe', 'she', 'sees', 'something', '||questionmark||', 'is', 'it', 'possible', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'not', 'possible', '||period||', '||return||', '||return||', 'george:', 'not', 'possible', '||period||', '||return||', '||return||', 'elaine:', 'heyyyyyy', '||leftparen||', 'leaning', 'in', '||comma||', 'very', 'friendly', 'and', 'happy', '||rightparen||', '||return||', '||return||', 'george:', 'hey', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'lannie', '||comma||', 'how', 'was', 'the', 'trip', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'trip', '||questionmark||', 'you', 'were', 'gone', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'went', 'to', 'england', '||period||', '||period||', '||period||', 'with', 'mr', '||period||', 'pitt', '||comma||', 'for', '5', 'days', '||period||', '||return||', '||return||', 'george:', 'hunh', '||comma||', 'pph', '||leftparen||', 'raises', 'hands', 'slightly', '||comma||', 'in', 'amazement', '||rightparen||', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'actually', 'it', 'was', 'great', '||period||', 'i', 'met', 'an', 'englishman', '||comma||', 'and', 'we', 'really', '||comma||', 'hit', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', 'that', 'relationships', 'really', 'got', 'a', 'lot', 'of', 'potential', '||period||', '||return||', '||return||', 'george:', 'he', 'he', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'elaine:', 'yeah', 'well', 'jerome', '||comma||', 'i', '||comma||', 'happen', 'to', 'be', 'flying', 'him', 'in', 'on', 'my', 'frequent', 'flyer', 'miles', '||period||', '||return||', '||return||', 'george:', 'flying', 'him', 'in', '||questionmark||', 'how', 'longs', 'he', 'staying', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'an', 'open', 'ended', 'ticket', '||period||', 'he', 'can', 'return', 'any', 'time', 'he', 'wants', '||period||', '||return||', '||return||', 'george:', 'all', 'this', 'in', '5', 'days', '||period||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', "it's", 'kenny', 'bania', '||period||', '||return||', '||return||', 'george:', "who's", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', '||rightparen||', 'oh', '||comma||', "he's", 'this', 'awful', 'comedian', '||period||', '||return||', '||return||', 'bania:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'kenny', '||period||', '||leftparen||', 'with', 'some', 'fake', 'enthusiasm', '||comma||', 'just', 'to', 'be', 'polite', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'george', '||leftparen||', 'introducing', 'them', 'to', 'bania', 'with', 'less', 'enthusiasm', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||leftparen||', 'she', 'flips', 'her', 'hair', '||rightparen||', '||return||', '||return||', 'george:', 'hi', '||leftparen||', 'raises', 'his', 'left', 'hand', 'in', 'a', 'slight', 'gesture', 'to', 'say', 'hi', '||rightparen||', '||return||', '||return||', 'bania:', 'hi', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', '||return||', '||return||', 'jerry:', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'bania:', 'great', '||period||', "i've", 'been', 'working', 'out', '||period||', 'went', 'from', 'a', 'size', '40', '||comma||', 'to', 'a', '42', '||period||', '||return||', '||return||', 'jerry:', 'no', 'kidding', '||period||', '||return||', '||return||', 'bania:', 'yeah', '||comma||', 'im', 'huge', '||leftparen||', 'ducks', 'his', 'head', 'into', 'his', 'right', 'shoulder', 'with', 'false', 'modesty', '||rightparen||', 'well', '||comma||', 'ill', 'leave', 'you', 'guys', 'alone', '||period||', '||leftparen||', 'raps', 'his', 'knuckle', 'twice', 'on', 'the', 'table', '||comma||', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', 'thanks', '||period||', '||return||', '||return||', 'bania:', 'oh', '||period||', 'jerry', '||comma||', 'you', 'know', 'what', 'just', 'hit', 'me', '||questionmark||', 'i', 'was', 'thinking', '||dash||', '||dash||', 'what', 'size', 'suit', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'ahh', '||comma||', 'im', 'a', '40', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'bania:', 'i', 'just', 'got', 'a', 'brand', 'new', 'armani', 'suit', '||dash||', '||dash||', "doesn't", 'fit', 'me', 'anymore', '||period||', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', "don't", 'know', 'if', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'bania:', 'oh', 'come', 'on', '||period||', 'why', 'should', 'it', 'just', 'sit', 'in', 'the', 'closet', '||questionmark||', '||return||', '||return||', 'elaine:', 'an', 'armani', 'suit', '||questionmark||', '||return||', '||return||', 'george:', 'take', 'the', 'suit', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', 'ok', '||comma||', 'i', 'guess', '||leftparen||', 'voice', 'trailing', 'off', '||rightparen||', '||return||', '||return||', 'bania:', 'you', 'gonna', 'be', 'home', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'bania:', 'ill', 'drop', 'it', 'off', '||period||', '||leftparen||', 'raps', 'his', 'knuckle', 'twice', 'on', 'the', 'table', 'again', '||comma||', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', 'heh', 'heh', 'heh', 'hey', '||comma||', 'new', 'suit', '||leftparen||', 'raises', 'coffee', 'cup', 'as', 'a', 'salute', '/', 'toast', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'lucky', 'me', '||period||', '||leftparen||', 'sips', 'coffee', '||rightparen||', '||return||', '||return||', 'waitress:', '||leftparen||', 'to', 'george', '||rightparen||', 'here', 'i', 'personally', 'made', 'you', 'a', 'cold', 'chicken', 'sandwich', '||period||', "it's", 'not', 'even', 'on', 'the', 'menu', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'takes', 'a', 'large', 'bite', '||dash||', 'with', 'his', 'mouth', 'still', 'full', '||comma||', 'his', 'speech', 'is', 'muffled', '||rightparen||', 'oh', '||comma||', 'this', 'is', 'fabulous', '||period||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'she', 'is', 'nice', '||period||', 'i', 'like', 'her', '||comma||', 'i', 'like', 'her', 'jerry', '||period||', "she's", 'got', 'substance', '||period||', 'she', 'oozes', 'substance', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'go', 'in', 'there', 'and', 'talk', 'to', 'her', '||period||', "she's", 'not', 'going', 'to', 'put', 'em', 'on', 'the', 'glass', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'a', 'walk', 'back', 'in', '||questionmark||', "that's", 'the', 'toughest', 'move', 'in', 'the', 'business', '||period||', "you're", 'sending', 'me', 'out', 'into', 'no', '||dash||', 'mans', '||dash||', 'land', '||comma||', 'and', 'if', 'i', 'get', 'shot', 'down', 'i', 'have', 'to', 'crawl', 'all', 'the', 'way', 'back', '||period||', 'well', 'i', "can't", 'do', 'it', '||exclammark||', 'i', "can't", 'do', 'it', '||comma||', 'i', 'tell', 'ya', '||exclammark||', '||return||', '||return||', 'jerry:', 'pull', 'yourself', 'together', '||period||', 'your', 'going', 'in', 'there', 'soldier', '||exclammark||', "that's", 'an', 'order', '||exclammark||', '||return||', '||return||', 'jerry:', 'get', 'in', 'there', '||period||', '||leftparen||', 'he', 'pushes', 'george', 'in', 'the', 'direction', 'of', 'the', 'restaurant', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||leftparen||', 'walking', 'over', 'to', 'jerry', '||comma||', 'who', 'sits', 'at', 'the', 'table', 'reading', 'the', 'newspaper', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'i', 'need', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'need', 'you', 'to', 'help', 'me', 'move', 'my', 'refrigerator', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'cause', 'im', 'getting', 'rid', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||leftparen||', 'speaking', 'loudly', 'so', 'the', 'visitor', 'can', 'hear', 'him', 'through', 'the', 'intercom', '||rightparen||', '||return||', '||return||', 'bania:', "[it's", 'k', '||period||', 'b', '||period||', '||comma||', 'i', 'have', 'the', 'suit]', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'come', 'on', 'up', '||leftparen||', 'jerry', 'puts', 'his', 'head', 'down', '||dash||', "he's", 'not', 'looking', 'forward', 'to', 'kenny', 'bania', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'claps', 'hands', '||rightparen||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'well', '||comma||', 'why', 'are', 'you', 'getting', 'rid', 'of', 'your', 'refrigerator', '||questionmark||', '||leftparen||', 'he', 'gets', 'up', 'from', 'the', 'table', 'and', 'carries', 'a', 'dish', 'into', 'the', 'kitchen', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', 'after', 'that', 'kidney', 'stone', 'i', 'only', 'want', 'fresh', 'food', '||period||', "it's", 'gotta', 'be', 'fresh', '||period||', 'im', 'not', 'eating', 'any', 'more', 'stored', 'food', '||period||', 'plus', 'you', 'know', 'i', 'want', 'the', 'space', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'could', 'put', 'a', '||comma||', 'dresser', 'in', 'there', '||period||', 'i', 'could', 'get', 'dressed', 'while', 'im', 'making', 'breakfast', '||period||', '||return||', '||return||', 'bania:', 'hey', '||leftparen||', 'holds', 'the', 'armani', 'suit', 'up', '||rightparen||', 'here', 'you', 'go', '||period||', '||leftparen||', 'walks', 'into', 'the', 'apt', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'bania:', 'you', 'didnt', 'think', 'i', 'was', 'really', 'going', 'to', 'give', 'you', 'a', 'suit', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', "you're", 'giving', 'him', 'this', 'suit', '||questionmark||', '||return||', '||return||', 'bania:', "that's", 'right', '||comma||', 'and', "it's", 'an', 'armani', '||period||', '||return||', '||return||', 'kramer:', 'armani', '||questionmark||', 'hey', '||comma||', 'armani', 'jerry', '||period||', '||leftparen||', 'kramer', 'takes', 'the', 'suit', 'and', 'looks', 'it', 'over', '||rightparen||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'yes', '||comma||', 'i', 'heard', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'try', 'it', 'on', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'ok', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'i', 'want', 'to', 'see', 'how', 'it', 'fits', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||leftparen||', 'trying', 'on', 'the', 'suit', 'jacket', '||rightparen||', '||return||', '||return||', 'kramer:', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'yeah', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'boy', '||comma||', 'that', 'looks', 'great', '||period||', 'i', "can't", 'believe', "you're", 'giving', 'him', 'this', '||period||', '||return||', '||return||', 'bania:', 'i', "don't", 'even', 'want', 'anything', 'for', 'it', '||period||', '||return||', '||return||', 'kramer:', "he's", 'very', 'generous', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'yes', '||comma||', 'he', 'is', '||period||', '||return||', '||return||', 'bania:', 'ill', 'tell', 'you', 'what', '||dash||', '||dash||', 'you', 'can', 'take', 'me', 'out', 'to', 'dinner', 'sometime', '||period||', '||return||', '||return||', 'jerry:', 'dinner', '||questionmark||', '||return||', '||return||', 'bania:', 'yeah', '||period||', 'you', 'buy', 'me', 'a', 'meal', '||dash||', '||dash||', 'you', "can't", 'get', 'a', 'better', 'deal', 'than', 'that', '||leftparen||', 'pats', 'jerry', 'on', 'the', 'shoulder', '||rightparen||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "you'll", 'never', 'get', 'a', 'better', 'deal', 'than', 'that', '||period||', '||return||', '||return||', 'bania:', 'all', 'right', '||period||', 'ill', 'leave', 'you', 'alone', '||period||', '||leftparen||', 'turns', 'and', 'walks', 'out', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'ill', 'see', 'you', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'ooh', 'look', 'at', 'that', 'armani', '||comma||', 'huh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'a', 'deal', '||period||', "that's", 'a', 'terrible', 'deal', '||period||', 'i', "don't", 'want', 'to', 'go', 'out', 'to', 'dinner', 'with', 'him', '||period||', 'id', 'rather', 'make', 'my', 'own', 'suit', '||period||', '||return||', '||return||', 'george:', 'i', 'did', 'it', '||exclammark||', "it's", 'all', 'done', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||leftparen||', 'raises', 'hands', 'into', 'fists', 'of', 'encouragement', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'did', 'it', '||period||', 'hunh', '||comma||', "we're", 'going', 'out', 'as', 'soon', 'as', 'she', 'gets', 'off', 'of', 'work', 'and', "it'll", 'still', 'be', 'daytime', '||period||', 'you', 'know', 'i', '||comma||', 'im', 'much', 'better', 'in', 'the', 'daytime', 'then', 'i', 'am', 'at', 'night', '||period||', "it's", 'less', 'pressure', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'the', 'day', 'date', '||period||', 'no', 'wine', '||comma||', 'no', 'shower', '||period||', '||return||', '||return||', 'george:', 'there', 'ya', 'go', '||period||', '||return||', '||return||', 'elaine:', 'so', 'the', 'trip', 'was', 'good', '||questionmark||', '||return||', '||return||', 'simon:', 'yes', '||leftparen||', 'nice', 'english', 'accent', '||rightparen||', 'apart', 'from', 'that', '||comma||', 'dreadful', 'airline', 'food', '||period||', 'it', 'tends', 'to', 'reek', 'havoc', 'with', 'my', 'stomach', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'i', '||comma||', 'i', 'have', 'to', 'say', '||comma||', "i've", 'never', 'admitted', 'this', 'to', 'anyone', '||comma||', 'but', 'um', '||comma||', 'i', 'kind', 'of', 'like', 'airline', 'food', '||period||', '||leftparen||', 'leans', 'in', 'and', 'laughs', '||comma||', 'flirting', 'with', 'him', '||rightparen||', '||return||', '||return||', 'simon:', "that's", 'probably', 'because', 'of', '||period||', '||period||', '||period||', '[muttering]', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'simon:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'simon:', '[sighs]', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'simon:', 'where', 'i', 'come', 'from', '||comma||', 'we', "don't", 'say', 'what', '||questionmark||', "it's", 'proper', 'to', 'say', 'pardon', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||leftparen||', 'muttering', '||rightparen||', 'this', 'should', 'be', 'interesting', '||period||', '||return||', '||return||', 'simon:', 'pardon', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', '||return||', '||return||', 'kelly:', 'so', 'then', 'about', 'a', 'year', 'ago', 'i', 'started', 'selling', '||comma||', 'these', 'funky', 'little', 'hair', 'clips', '||period||', "it's", 'going', 'pretty', 'good', '||period||', 'i', 'make', 'them', 'in', 'my', 'apartment', '||period||', '||return||', '||return||', 'kelly:', 'im', 'just', 'doing', 'this', 'waitress', 'thing', 'for', 'a', 'while', '||comma||', 'because', 'i', 'wanted', 'to', 'go', 'to', 'europe', 'this', 'summer', '||return||', '||return||', 'george:', '||leftparen||', 'quietly', '||rightparen||', 'ahh', '||period||', '||return||', '||return||', 'kelly:', 'and', 'i', 'could', 'use', 'a', 'few', 'extra', '||period||', '||period||', '||period||', 'careful', '||return||', '||return||', 'george:', 'oh', '||period||', "it's", 'just', 'horse', 'manure', '||leftparen||', 'huh', 'huh', '||dash||', 'laughs', '||comma||', 'he', 'points', 'back', 'at', 'the', 'horse', 'that', 'walked', 'by', '||rightparen||', 'horse', "manure's", 'not', 'that', 'bad', '||period||', 'i', "don't", 'even', 'mind', 'the', 'word', 'manure', '||period||', 'you', 'know', '||comma||', "it's", '||comma||', "it's", 'nure', '||comma||', 'which', 'is', 'good', '||period||', 'and', 'a', 'ma', 'in', 'front', 'of', 'it', '||period||', 'ma', '||dash||', 'nure', '||period||', 'i', 'mean', 'when', 'you', 'consider', 'the', 'other', 'choices', '||comma||', 'manure', 'is', 'actually', 'pretty', 'refreshing', '||period||', '||return||', '||return||', 'kelly:', "that's", 'a', 'nice', 'watch', 'george', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kelly:', 'you', 'know', '||comma||', 'my', 'boyfriend', 'has', 'the', 'same', 'one', '||period||', '||return||', '||return||', 'george:', 'huh', '||period||', 'really', '||questionmark||', '||return||', '||return||', 'kelly:', 'yeah', '||comma||', 'he', 'loves', 'watches', '||period||', "he's", 'a', 'real', 'watch', 'freak', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'how', 'about', 'that', '||questionmark||', '||return||', '||return||', 'kelly:', 'ooh', 'look', 'out', '||period||', '||leftparen||', 'pointing', 'at', 'the', 'ground', '||dash||', 'squishing', 'sound', '||rightparen||', 'you', 'stepped', 'right', 'in', 'it', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'sure', 'did', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'just', 'pretended', 'it', 'didnt', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||comma||', 'boyfriend', '||questionmark||', 'i', "don't", 'understand', 'that', '||period||', 'what', '||comma||', 'what', 'does', 'she', 'think', 'i', 'asked', 'her', 'out', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "it's", 'the', 'way', 'they', 'just', 'slip', 'it', 'in', 'there', 'too', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'like', "it's", 'just', 'part', 'of', 'the', 'conversation', '||period||', 'oh', 'my', 'boyfriend', 'really', 'likes', 'watches', '||period||', "he's", 'a', 'real', 'watch', 'freak', '||period||', 'we', '||dash||', 'e', '||dash||', 'ell', "that's", 'fabulous', '||period||', '||leftparen||', 'snaps', 'fingers', 'in', 'the', 'air', 'a', 'couple', 'of', 'times', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', 'let', 'me', 'ask', 'you', 'this', '||period||', 'what', 'exactly', 'did', 'you', 'say', 'when', 'you', 'asked', 'her', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'said', '||comma||', 'would', 'you', 'like', 'to', 'go', 'for', 'a', 'walk', 'or', 'something', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'a', 'walk', '||comma||', 'well', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'or', 'something', '||period||', 'i', 'said', '||comma||', 'or', 'something', '||exclammark||', '||return||', '||return||', 'jerry:', 'or', 'something', '||period||', 'yeah', '||comma||', "that's", 'a', 'date', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'snaps', 'fingers', '||rightparen||', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'course', 'you', 'know', 'there', 'is', 'always', 'the', 'possibility', '||comma||', 'that', 'she', 'called', 'an', 'audible', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'she', 'got', 'up', 'to', 'the', 'line', 'of', 'scrimmage', '||comma||', 'didnt', 'like', 'the', 'looks', 'of', 'the', 'defense', 'and', 'changed', 'the', 'play', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'things', 'were', 'going', 'ok', '||period||', 'we', 'were', 'having', 'a', 'nice', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', 'i', 'mentioned', 'how', 'i', 'liked', 'horse', 'manure', '||period||', '||return||', '||return||', 'jerry:', 'you', 'did', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'you', 'said', 'you', 'liked', 'horse', 'manure', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', '||rightparen||', 'mm', '||dash||', 'hm', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'about', 'how', 'when', 'you', 'break', 'it', 'down', '||comma||', "it's", 'really', 'a', 'very', 'positive', 'thing', '||period||', 'you', 'know', '||comma||', 'you', 'have', 'a', 'nure', '||comma||', 'with', 'a', 'ma', 'in', 'front', 'of', 'it', '||period||', 'ma', '||dash||', 'nure', '||period||', 'iz', 'not', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'and', 'it', 'was', 'around', 'this', 'point', 'that', 'she', 'mentioned', 'the', 'boyfriend', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'jerry', 'nodding', '||rightparen||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'you', 'think', 'because', 'of', 'what', 'i', 'said', 'about', 'the', 'manure', '||period||', 'i', 'wa', '||comma||', 'wa', '||comma||', 'was', 'just', 'saying', 'how', 'it', 'takes', 'a', 'negative', 'thing', '||comma||', 'and', 'puts', 'it', 'on', 'a', 'positive', 'spin', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'im', 'just', 'saying', "there's", 'a', 'chance', 'she', 'may', 'not', 'have', 'been', 'enamored', 'with', 'your', 'thoughts', 'and', 'feelings', 'on', 'manure', '||period||', '||return||', '||return||', 'george:', 'so', 'you', "don't", 'think', 'she', 'really', 'has', 'a', 'boyfriend', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'honest', 'opinion', '||comma||', 'i', 'think', 'she', 'made', 'it', 'up', '||period||', '||return||', '||return||', 'george:', 'well', 'then', "she's", 'just', 'a', 'liar', '||comma||', "isn't", 'she', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'aaa', '||period||', 'well', '||period||', '||period||', '||period||', 'you', 'want', 'something', 'to', 'eat', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'ahh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'you', 'got', 'me', 'all', 'wrong', 'buddy', '||period||', 'i', 'am', 'loving', 'this', 'no', 'refrigerator', '||period||', 'you', 'know', 'what', 'i', 'discovered', '||questionmark||', 'i', 'really', 'like', 'depriving', 'myself', 'of', 'things', '||period||', "it's", 'fun', '||period||', 'very', 'monastic', '||period||', '||return||', '||return||', 'george:', 'well', 'what', 'do', 'you', 'eat', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'all', 'fresh', '||period||', 'fresh', 'fish', '||comma||', 'fresh', 'foul', '||comma||', 'fresh', 'fruit', '||period||', 'i', 'buy', 'it', '||comma||', 'i', 'omniga', 'nominga', '||comma||', 'i', 'eat', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', 'im', 'glad', "it's", 'working', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "it's", 'working', 'out', '||period||', 'and', 'i', 'got', 'a', 'date', 'with', 'that', 'waitress', 'who', 'works', 'at', 'reggies', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'if', 'i', 'could', 'meet', 'a', 'hostess', '||comma||', 'we', 'could', 'open', 'up', 'our', 'own', 'place', '||period||', '||return||', '||return||', 'kramer:', 'ha', 'ha', 'ha', 'ha', '||period||', 'yeah', '||comma||', 'well', '||comma||', 'ill', 'tell', 'you', '||comma||', "she's", 'a', 'full', '||dash||', 'figured', 'gal', '||period||', '||return||', '||return||', 'jerry:', 'is', 'she', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'you', 'better', 'believe', 'it', 'buddy', '||period||', 'hey', 'george', '||comma||', 'we', 'could', 'double', 'sometime', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', 'we', 'could', '||period||', 'you', 'know', '||comma||', 'ah', '||comma||', 'kramer', '||comma||', 'the', 'next', 'time', 'you', 'talk', 'to', 'her', '||comma||', 'find', 'out', 'if', 'she', 'knows', 'kelly', '||comma||', 'from', "monk's", '||period||', 'i', 'wanna', 'know', 'if', 'she', 'really', 'has', 'a', 'boyfriend', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', "it's", 'done', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'bania:', 'hi', '||comma||', 'jerry', '||period||', "it's", 'kenny', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'bania:', 'you', 'know', '||comma||', 'i', 'was', 'thinking', 'if', "you're", 'not', 'busy', '||comma||', 'maybe', 'i', 'can', 'get', 'my', 'meal', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'wanna', 'get', 'that', 'meal', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'bania:', 'how', 'about', 'mendys', '||comma||', 'ooh', '||comma||', 'ever', 'been', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "haven't", '||questionmark||', '||return||', '||return||', 'bania:', 'ah', 'youre', 'gonna', 'love', 'it', '||period||', 'ill', 'meet', 'you', 'there', 'around', '700', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'bania:', 'ahh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'yeah', '||comma||', 'i', 'really', 'needed', 'that', 'suit', '||period||', '||return||', '||return||', 'bania:', 'i', 'start', 'off', 'with', 'curls', '||period||', "that's", 'good', 'for', 'the', 'bicep', '||period||', '||leftparen||', 'motions', 'with', '2', 'fingers', 'along', 'his', 'right', 'bicep', '||rightparen||', 'i', 'do', '10', 'reps', '||comma||', '2', 'sets', '||period||', '||return||', '||return||', 'jerry:', 'mm', '||period||', "that's", 'fantastic', '||period||', '||leftparen||', 'he', 'could', 'care', 'less', '||rightparen||', '||return||', '||return||', 'bania:', 'you', 'work', 'out', 'with', 'weights', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "don't", '||period||', '||return||', '||return||', 'bania:', 'you', 'should', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'bania:', 'you', 'worn', 'the', 'suit', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'not', 'yet', '||period||', '||return||', '||return||', 'waiter:', 'have', 'you', 'decided', '||questionmark||', '||return||', '||return||', 'bania:', 'oh', '||comma||', 'get', 'the', 'swordfish', '||period||', 'best', 'swordfish', 'in', 'the', 'city', '||period||', 'the', 'best', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'have', 'the', 'salmon', '||period||', '||return||', '||return||', 'waiter:', 'and', 'you', '||questionmark||', '||return||', '||return||', 'bania:', 'ahh', '||comma||', 'you', 'know', 'what', 'i', 'think', '||period||', 'im', 'just', 'going', 'to', 'have', 'soup', '||period||', 'yeah', '||comma||', 'ill', 'save', 'the', 'meal', 'for', 'another', 'time', '||period||', '||return||', '||return||', 'jerry:', 'another', 'time', '||questionmark||', 'what', 'other', 'time', '||questionmark||', '||return||', '||return||', 'bania:', 'i', 'had', 'a', 'hot', 'dog', 'earlier', '||period||', 'im', 'not', 'that', 'hungry', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'bania', '||comma||', 'no', '||period||', 'this', 'is', 'the', 'dinner', '||period||', 'the', 'soup', 'counts', '||period||', '||return||', '||return||', 'bania:', "soup's", 'not', 'a', 'meal', '||period||', "you're", 'supposed', 'to', 'buy', 'me', 'a', 'meal', '||period||', '||return||', '||return||', 'jerry:', 'im', 'not', 'stopping', 'you', 'from', 'eating', '||period||', 'go', 'ahead', 'and', 'eat', '||period||', 'get', 'anything', 'you', 'want', '||period||', '||return||', '||return||', 'bania:', 'but', 'i', "don't", 'want', 'anything', 'but', 'soup', '||period||', '||return||', '||return||', 'jerry:', 'then', "that's", 'the', 'meal', '||period||', '||return||', '||return||', 'bania:', 'but', 'i', 'had', 'the', 'hot', 'dog', '||period||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'tell', 'you', 'to', 'have', 'a', 'hot', 'dog', '||period||', 'who', 'told', 'you', 'to', 'have', 'a', 'hot', 'dog', '||questionmark||', '||return||', '||return||', 'bania:', 'hey', '||comma||', 'i', 'give', 'you', 'a', 'brand', '||dash||', 'new', 'armani', 'suit', '||comma||', 'and', 'you', "won't", 'even', 'buy', 'me', 'a', 'meal', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'fine', '||period||', 'get', 'the', 'soup', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'he', 'just', 'gets', 'soup', '||period||', 'he', 'wants', 'to', 'save', 'the', 'meal', '||period||', 'so', 'now', 'i', 'got', 'to', 'do', 'it', 'all', 'over', 'again', '||period||', '||return||', '||return||', 'elaine:', 'what', 'kind', 'of', 'soup', 'did', 'he', 'get', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||questionmark||', 'consomm', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'consomm', '||comma||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "that's", 'not', 'really', 'a', 'meal', 'jerry', '||period||', 'i', 'mean', '||comma||', 'if', 'he', 'had', 'gotten', '||comma||', 'chicken', 'gumbo', '||comma||', 'or', 'matzah', 'ball', '||comma||', 'even', 'mushroom', 'barley', '||period||', 'then', 'i', 'would', 'agree', 'with', 'you', '||period||', 'those', 'are', 'very', 'hardy', 'soups', '||period||', '||return||', '||return||', 'jerry:', 'elaine', "you're", 'missing', 'the', 'whole', 'point', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'meal', 'is', 'the', 'act', 'of', 'sitting', 'down', 'with', 'him', '||period||', 'it', "doesn't", 'matter', 'what', 'you', 'get', '||comma||', 'as', 'long', 'as', "he's", 'sitting', 'in', 'that', 'restaurant', '||comma||', 'its', 'a', 'meal', '||period||', '||return||', '||return||', 'elaine:', 'was', 'it', 'a', 'cup', 'or', 'a', 'bowl', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'see', '||dash||', '||dash||', 'ah', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'im', 'just', 'curious', '||period||', '||return||', '||return||', 'jerry:', 'a', 'bowl', '||comma||', 'ok', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'he', 'crumble', 'any', 'crackers', 'in', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reiterating', 'the', 'question', '||rightparen||', 'did', 'he', 'crumble', '||comma||', 'any', 'crackers', 'in', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'as', 'a', 'mater', 'of', 'fact', '||comma||', 'he', 'did', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||period||', 'crackers', 'in', 'a', 'bowl', '||period||', 'that', '||dash||', '||dash||', 'that', 'could', 'be', 'a', 'meal', '||period||', '||return||', '||return||', 'jerry:', "it's", 'like', 'im', 'talking', 'to', 'my', 'aunt', 'sylvia', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'simon', '||period||', 'this', 'is', 'jerry', '||period||', '||return||', '||return||', 'simon:', 'hello', '||period||', '||leftparen||', 'to', 'jerry', '||comma||', 'politely', '||dash||', '||dash||', 'then', 'quickly', 'turns', 'to', 'elaine', '||rightparen||', 'elaine', '||comma||', 'do', 'you', 'have', 'any', 'cash', 'on', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'yeah', 'in', 'my', 'purse', '||period||', '||return||', '||return||', 'simon:', 'no', '||period||', 'there', 'was', 'only', 'six', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'have', 'some', 'money', '||period||', 'what', 'do', 'you', 'need', '||questionmark||', '||leftparen||', 'pulls', 'out', 'some', 'bills', '||rightparen||', '||return||', '||return||', 'simon:', 'well', '||comma||', '20', 'should', 'cover', 'me', '||period||', '||leftparen||', 'snatches', 'the', 'cash', '||rightparen||', 'thanks', 'mate', '||period||', '||leftparen||', 'he', 'walks', 'down', 'the', 'stairs', 'to', 'the', 'sidewalk', '||rightparen||', '||return||', '||return||', 'elaine:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'simon:', '||leftparen||', 'starts', 'to', 'turn', 'back', 'to', 'elaine', '||rightparen||', 'just', 'visiting', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'ok', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'simon:', 'i', "won't", 'be', 'back', 'for', 'dinner', '||period||', '||leftparen||', 'turns', 'and', 'walks', 'off', 'down', 'the', 'street', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'english', 'accent', '||rightparen||', 'pardon', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'is', 'she', 'working', '||questionmark||', 'is', 'she', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', "she's", 'here', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'said', 'anything', 'to', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'but', 'im', 'very', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'going', 'to', 'say', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'there', 'she', 'is', '||period||', '||leftparen||', 'waiving', 'his', 'arms', 'quickly', 'above', 'the', 'table', '||dash||', 'to', 'nix', 'the', 'conversation', '||rightparen||', 'no', 'no', 'no', 'no', 'no', 'no', '||period||', '||return||', '||return||', 'kelly:', 'hello', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'kelly:', 'well', '||comma||', "what's", 'it', 'going', 'to', 'be', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'it', 'gonna', 'be', '||questionmark||', '||return||', '||return||', 'kelly:', 'yes', '||period||', "what'll", 'you', 'have', '||questionmark||', 'are', 'you', 'eating', '||questionmark||', "it's", 'in', 'that', 'vein', '||period||', '||return||', '||return||', 'george:', 'ill', 'eh', '||comma||', 'ill', 'just', 'have', 'a', 'bowl', 'of', 'chili', '||period||', '||return||', '||return||', 'jerry:', 'ill', 'have', 'an', 'egg', 'white', 'omelet', '||period||', '||return||', '||return||', 'george:', "what's", 'it', 'gonna', 'be', '||questionmark||', '||period||', '||period||', '||period||', 'you', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'that', 'was', 'bad', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'feel', 'that', 'tension', '||questionmark||', 'we', 'use', 'to', 'have', 'banter', '||dash||', '||leftparen||', 'puts', 'menu', 'back', 'with', 'frustration', '||rightparen||', '||dash||', "there's", 'no', 'more', 'banter', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', "it's", 'kenny', '||period||', 'slide', 'out', 'so', 'he', "can't", 'sit', 'down', '||period||', '||leftparen||', 'george', '&', 'jerry', 'each', 'slide', 'to', 'the', 'end', 'of', 'their', 'booth', 'seats', '||rightparen||', '||return||', '||return||', 'bania:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'bania:', 'you', 'worn', 'the', 'suit', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'i', 'did', '||period||', 'i', 'put', 'it', 'on', 'last', 'night', 'and', 'slept', 'in', 'it', '||period||', '||return||', '||return||', 'bania:', 'you', 'did', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'oh', '||comma||', 'im', 'joking', '||period||', '||return||', '||return||', 'bania:', 'oh', '||exclammark||', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||period||', 'can', 'i', 'squeeze', 'in', '||questionmark||', '||leftparen||', 'to', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'sure', 'you', 'can', '||period||', '||return||', '||return||', 'kelly:', 'can', 'i', 'take', 'your', 'order', '||questionmark||', '||return||', '||return||', 'bania:', 'what', 'kind', 'of', 'soup', 'do', 'you', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'get', 'a', 'sandwich', '||questionmark||', '||return||', '||return||', 'bania:', 'ok', '||comma||', 'ill', 'have', 'tomato', 'soup', 'and', 'ah', '||comma||', 'tuna', 'on', 'toast', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||period||', '||period||', '||leftparen||', 'nodding', 'his', 'head', 'up', 'and', 'down', '||rightparen||', 'this', 'is', 'it', 'cha', 'know', '||return||', '||return||', 'jerry:', 'this', 'is', 'the', 'meal', '||period||', '||period||', '||period||', 'so', 'stock', 'up', 'buddy', 'boy', '||period||', '||return||', '||return||', 'bania:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'this', "isn't", 'a', 'meal', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'it', 'is', '||period||', 'soup', 'and', 'sandwich', '||period||', 'that', 'is', 'a', 'meal', '||period||', '||return||', '||return||', 'bania:', "you're", 'supposed', 'to', 'buy', 'me', 'dinner', 'in', 'a', 'nice', 'restaurant', '||comma||', 'like', 'mendys', '||period||', '||return||', '||return||', 'jerry:', 'i', 'tried', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'bania:', 'this', 'is', 'lunch', 'in', 'a', 'coffee', 'shop', '||return||', '||return||', 'jerry:', "doesn't", 'matter', '||comma||', 'this', 'is', 'it', '||period||', 'this', 'completes', 'the', 'transaction', '||period||', '||return||', '||return||', 'bania:', 'ah', '||comma||', 'soup', 'and', 'a', 'sandwich', 'for', 'a', 'brand', '||dash||', 'new', 'armani', 'suit', '||period||', 'is', 'that', 'any', 'kind', 'of', 'gesture', '||questionmark||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', '||return||', '||return||', 'bania:', 'im', 'really', 'not', 'comfortable', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', '||comma||', 'i', 'just', 'spoke', 'to', 'ah', '||comma||', 'hilde', 'about', 'your', 'friend', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'she', "doesn't", 'have', 'a', 'boyfriend', '||period||', 'she', 'made', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', "where's", 'simon', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he'll", 'be', 'right', 'up', '||period||', "he's", 'just', 'getting', 'some', 'beer', '||period||', 'and', 'im', 'not', 'expecting', '||period||', '||period||', '||period||', 'any', 'change', '||period||', '||leftparen||', 'leans', 'forward', 'as', 'she', 'brings', 'her', 'hands', 'together', 'in', 'front', 'of', 'her', '||comma||', 'then', 'sits', 'on', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'jerry:', "when's", 'he', 'leaving', '||questionmark||', '||leftparen||', 'putting', 'some', 'items', 'into', 'the', 'refrigerator', '||rightparen||', '||return||', '||return||', 'elaine:', 'about', '2', 'days', '||period||', 'although', "he's", 'hinting', 'at', 'how', "he'd", 'like', 'to', 'stay', '||period||', 'fortunately', 'he', 'has', 'no', 'money', '||comma||', 'and', 'no', 'prospects', '||period||', '||leftparen||', 'she', 'smiles', '||rightparen||', '||return||', '||return||', 'simon:', 'hey', 'mate', '||period||', 'fancy', 'a', 'beer', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'no', 'thanks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', 'no', '||comma||', 'im', 'sorry', 'bania', '||period||', '||period||', '||period||', 'im', 'not', 'going', 'over', 'this', 'again', '||period||', 'well', 'who', 'told', 'you', 'to', 'order', 'soup', '||questionmark||', '||period||', '||period||', '||period||', 'no', '||exclammark||', "there's", 'no', 'dinner', '||period||', "there's", 'not', 'going', 'to', 'be', 'any', 'dinner', '||period||', "you've", 'had', 'a', 'sandwich', 'and', '2', 'bowls', 'of', 'soup', 'and', "that's", 'it', '||period||', 'good', '||dash||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'size', 'suit', 'are', 'you', '||questionmark||', '||return||', '||return||', 'simon:', '40', '||period||', '||return||', '||return||', 'jerry:', '40', '||period||', 'perfect', '||period||', 'brand', '||dash||', 'new', 'armani', 'suit', '||comma||', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'simon:', 'absolutely', '||period||', '||return||', '||return||', 'jerry:', 'great', '||comma||', 'its', 'yours', '||period||', 'i', "can't", 'stand', 'the', 'sight', 'of', 'it', '||period||', 'elaine', '||comma||', 'heres', 'the', 'car', 'keys', '||period||', '||leftparen||', 'tosses', 'her', 'the', 'keys', '||rightparen||', '||return||', '||return||', 'elaine:', 'thanks', '||return||', '||return||', 'jerry:', 'yo', '||questionmark||', '||return||', '||return||', 'bania:', 'listen', 'jerry', '||comma||', "i've", 'been', 'doing', 'some', 'thinking', '||period||', 'i', 'want', 'my', 'suit', 'back', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'your', 'suit', '||period||', 'i', 'gave', 'it', 'away', '||period||', '||return||', '||return||', 'bania:', 'well', "it's", 'my', 'suit', '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'gone', '||period||', 'im', 'sorry', '||period||', 'good', '||dash||', 'bye', 'bania', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'um', '||comma||', 'yeah', '||period||', '||leftparen||', 'glances', 'around', 'the', 'apt', '||period||', '||rightparen||', 'oh', '||comma||', 'uh', '||period||', '||period||', '||period||', 'well', '||comma||', "how's", 'everything', '||questionmark||', '||leftparen||', 'clap', '||rightparen||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'kramer:', 'good', '||comma||', 'ah', '||comma||', '||leftparen||', 'clap', '||rightparen||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'really', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'food', '||comma||', "don't", 'cha', '||questionmark||', '||leftparen||', 'nodding', 'his', 'head', 'up', 'and', 'down', '||rightparen||', '||return||', '||return||', 'kramer:', "it's", 'not', 'for', 'me', '||period||', "it's", 'for', 'hilde', '||dash||', '||dash||', 'the', 'waitress', 'i', 'was', 'telling', 'you', 'about', '||period||', "she's", 'hungry', '||comma||', 'she', 'wants', 'food', '||period||', 'if', 'i', 'go', 'back', 'in', 'there', 'without', 'any', 'food', '||period||', '||period||', '||period||', "there's", 'gonna', 'be', 'trouble', '||period||', '||leftparen||', 'his', 'voice', 'gets', 'really', 'high', 'pitched', 'on', 'his', 'last', 'sentence', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'go', 'ahead', '||return||', '||return||', 'kramer:', 'thanks', 'buddy', '||period||', '||leftparen||', 'goes', 'over', 'to', 'the', 'fridge', 'and', 'pulls', 'out', 'a', 'few', 'things', '||rightparen||', '||return||', '||return||', 'hilde:', 'did', 'you', 'find', 'anything', '||exclammark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||comma||', 'ah', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "there's", 'a', 'few', 'things', 'in', 'here', '||comma||', 'ah', '||comma||', 'peanut', 'butter', '||comma||', 'cheese', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'hilde:', 'cheese', 'is', 'good', '||period||', 'yeah', '||comma||', 'what', 'kind', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'swiss', '||period||', '||return||', '||return||', 'hilde:', 'all', 'right', '||comma||', "it'll", 'have', 'to', 'do', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'we', 'doing', 'out', 'here', '||questionmark||', "aren't", 'we', 'going', 'to', 'go', 'in', 'and', 'eat', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'go', 'in', 'there', '||period||', 'im', 'too', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'w', '||dash||', 'what', 'are', 'you', 'saying', '||questionmark||', 'so', "we're", 'not', 'going', 'to', 'go', 'in', 'there', 'anymore', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'out', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', "can't", 'eat', 'here', 'anymore', '||comma||', 'because', 'he', 'took', 'a', 'waitress', 'out', 'for', 'a', 'walk', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'difference', '||questionmark||', "let's", 'go', 'to', 'reggies', '||period||', '||return||', '||return||', 'elaine:', 'reggies', '||questionmark||', 'i', "can't", 'eat', 'anything', 'there', '||period||', '||return||', '||return||', 'george:', "it's", 'the', 'same', 'menu', '||period||', '||return||', '||return||', 'elaine:', "there's", 'no', 'big', 'salad', '||period||', '||return||', '||return||', 'george:', "they'll", 'make', 'you', 'a', 'big', 'salad', '||period||', 'what', 'do', 'you', 'think', '||comma||', "they're", 'the', 'only', "one's", 'that', 'make', 'a', 'big', 'salad', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', "let's", 'go', '||comma||', 'to', 'reggies', '||period||', '||return||', '||return||', 'jerry:', 'so', "what's", 'going', 'on', 'with', 'simon', '||questionmark||', 'did', 'he', 'leave', '||questionmark||', '||return||', '||return||', 'elaine:', 'ahh', '||period||', '||period||', '||period||', 'wait', 'till', 'you', 'hear', 'this', '||period||', '||return||', '||return||', 'elaine:', 'so', 'simon', 'picks', 'this', 'woman', 'up', '||comma||', 'right', 'in', 'front', 'of', 'me', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', '||period||', 'they', 'make', 'a', 'point', 'of', 'saying', 'on', 'the', 'menu', '||comma||', 'no', 'egg', 'white', 'omelets', '||period||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||exclammark||', 'have', 'a', 'yoke', '||exclammark||', 'it', "won't", 'kill', 'you', '||period||', '||return||', '||return||', 'hilde:', '||leftparen||', 'walks', 'up', 'to', 'the', 'table', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'hilde', '||period||', 'can', 'i', 'get', 'an', 'egg', 'white', 'omelet', '||questionmark||', '||return||', '||return||', 'hilde:', 'did', 'you', 'read', 'the', 'menu', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'just', 'give', 'me', 'a', 'western', '||period||', '||leftparen||', 'unhappy', '||rightparen||', '||return||', '||return||', 'elaine:', 'how', 'bout', 'a', 'big', 'salad', '||questionmark||', '||return||', '||return||', 'hilde:', 'a', 'big', 'salad', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', 'ya', 'see', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'tell', 'her', 'whatcha', 'want', '||comma||', "they'll", 'make', 'it', 'for', 'ya', '||period||', '||return||', '||return||', 'elaine:', "it's", 'a', 'salad', '||comma||', 'only', 'bigger', '||comma||', 'with', 'lots', 'of', 'stuff', 'in', 'it', '||period||', '||return||', '||return||', 'hilde:', 'i', 'can', 'bring', 'you', '2', 'small', 'salads', '||period||', '||return||', '||return||', 'elaine:', 'could', 'you', 'put', 'it', 'in', 'a', 'big', 'bowl', '||questionmark||', '||return||', '||return||', 'hilde:', 'we', "don't", 'have', 'big', 'bowls', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'just', 'give', 'me', 'a', 'cup', 'of', 'decaf', '||period||', '||return||', '||return||', 'hilde:', 'we', 'have', 'sanka', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', "it's", 'not', 'fair', '||period||', "i've", 'been', 'going', 'there', 'for', '7', 'years', '||period||', "she's", 'been', 'there', '3', 'weeks', '||period||', '||return||', '||return||', 'jerry:', 'not', 'fair', '||period||', '||return||', '||return||', 'george:', 'if', 'anyone', 'should', 'be', 'forced', 'to', 'leave', 'that', 'place', '||comma||', 'it', 'should', 'be', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', "she's", 'on', 'your', 'turf', '||period||', '||return||', '||return||', 'george:', 'if', 'only', 'she', 'could', 'get', 'fired', '||period||', 'is', 'there', 'any', 'way', 'that', 'could', 'happen', '||questionmark||', 'i', 'mean', 'i', 'know', 'how', 'to', 'get', 'myself', 'fired', '||period||', '||return||', '||return||', 'jerry:', "you're", 'the', 'best', '||period||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'but', 'how', 'do', 'i', 'get', 'someone', 'else', 'fired', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'as', 'i', 'see', 'it', '||comma||', "you've", 'got', 'to', 'apply', 'the', 'same', 'principles', 'that', 'get', 'you', 'fired', '||comma||', 'but', 'redirected', '||comma||', 'outwardly', '||period||', '||return||', '||return||', 'kramer:', 'h', '||dash||', 'hey', '||period||', "she's", 'hungry', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "there's", 'nothing', 'left', '||period||', "there's", 'no', 'food', '||period||', '||return||', '||return||', 'kramer:', 'no', 'food', '||questionmark||', 'well', 'you', 'gotta', 'have', 'something', '||dash||', '||dash||', '||leftparen||', 'rummages', 'through', "jerry's", 'cupboards', 'and', 'refrigerator', '||rightparen||', '||dash||', '||dash||', 'i', "can't", 'go', 'back', 'in', 'there', 'with', 'no', 'food', '||period||', "she's", 'expecting', 'something', 'jerry', '||period||', 'you', "don't", 'know', 'what', "she's", 'like', 'when', 'that', 'blood', 'sugar', 'drops', '||period||', '||return||', '||return||', 'hilde:', '||leftparen||', 'from', "kramer's", 'apartment', '||rightparen||', 'food', '||exclammark||', '||return||', '||return||', 'kramer:', 'there', '||comma||', 'you', 'see', '||period||', "she's", 'already', 'in', 'a', 'bad', 'mood', '||period||', 'she', 'just', 'got', 'fired', '||period||', '||return||', '||return||', 'jerry:', "why'd", 'she', 'get', 'fired', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'because', 'i', 'called', 'over', 'there', 'a', 'couple', 'of', 'times', 'and', 'the', 'manager', 'didnt', 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'simon', 'is', 'definitely', 'going', 'back', 'now', '||period||', "he's", 'meeting', 'me', 'here', 'to', 'return', 'my', 'keys', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "he's", 'a', 'real', 'bounder', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', "he's", 'one', 'of', 'those', 'bounders', '||period||', '||return||', '||return||', 'kelly:', 'egg', 'white', 'omelet', 'and', 'big', 'salad', '||period||', '||return||', '||return||', 'elaine:', 'ahhh', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'kelly:', 'i', 'just', 'wanted', 'you', 'guys', 'know', 'that', "friday's", 'my', 'last', 'day', '||period||', 'bloomingdales', 'ordered', 'a', 'bunch', 'of', 'my', 'clips', '||comma||', 'thank', 'god', '||comma||', 'i', "don't", 'have', 'to', 'do', 'this', 'any', 'more', '||period||', '||leftparen||', 'turns', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'ah', '||leftparen||', 'hu', 'ha', '||dash||', 'small', 'laugh', '||rightparen||', '||return||', '||return||', 'bania:', 'hey', 'jerry', '||comma||', "where's", 'my', 'suit', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'it', '||period||', 'you', 'want', 'half', 'my', 'omelet', '||questionmark||', '||leftparen||', 'holds', 'his', 'omelet', 'plate', 'up', 'to', 'bania', '||rightparen||', '||return||', '||return||', "monk's", 'manager:', '||leftparen||', 'on', 'the', 'phone', '||comma||', 'we', 'assume', "it's", 'george', 'calling', '||rightparen||', 'i', 'told', 'you', '||comma||', "she's", 'busy', '||period||', 'she', "can't", 'come', 'to', 'the', 'phone', 'now', '||exclammark||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', "monk's", 'manager:', 'you', 'better', 'tell', 'your', 'boyfriend', 'to', 'stop', 'calling', 'here', '||period||', '||return||', '||return||', 'kelly:', 'oh', "he's", 'not', 'my', 'boyfriend', '||period||', "it's", 'that', 'bald', 'guy', 'with', 'the', 'glasses', '||comma||', "who's", 'always', 'here', 'with', 'them', '||period||', "he's", 'trying', 'to', 'get', 'me', 'in', 'trouble', '||period||', '||return||', '||return||', "monk's", 'manager:', 'hey', '||exclammark||', 'yeah', '||period||', 'i', 'got', 'a', 'message', 'for', 'you', '||period||', 'you', 'tell', 'your', 'friend', 'george', '||comma||', 'that', 'the', 'next', 'time', 'i', 'see', 'him', 'around', 'here', '||comma||', 'im', 'going', 'to', 'turn', 'him', 'into', 'my', 'own', '||comma||', 'personal', '||comma||', 'hand', '||dash||', 'puppet', '||period||', '||return||', '||return||', 'simon:', 'well', '||comma||', 'hello', '||period||', 'here', 'you', 'are', 'as', 'promised', '||period||', 'you', 'see', '||comma||', 'im', 'a', 'man', 'of', 'my', 'word', '||period||', '||leftparen||', 'drops', 'keys', 'into', "elaine's", 'extended', 'palm', '||rightparen||', '||return||', '||return||', 'elaine:', 'when', 'are', 'you', 'leaving', '||questionmark||', '||return||', '||return||', 'simon:', 'elaine', '||comma||', 'are', 'you', 'trying', 'to', 'get', 'rid', 'of', 'me', '||questionmark||', 'aha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||period||', 'i', 'was', 'supposed', 'to', 'leave', 'tomorrow', '||comma||', 'but', 'all', 'of', 'a', 'sudden', '||comma||', "i've", 'been', 'set', 'up', 'with', 'a', 'job', 'interview', 'that', 'might', 'enable', 'me', 'to', 'extend', 'my', 'visit', 'indefinitely', '||period||', 'and', 'it', 'is', 'all', 'due', '||comma||', 'to', 'this', 'suit', '||period||', 'how', 'do', 'i', 'look', '||questionmark||', 'im', 'a', 'shoe', '||dash||', 'in', "aren't", 'i', '||period||', 'thanks', 'again', 'love', '||period||', '||leftparen||', 'touches', 'the', 'table', '||comma||', 'turns', 'and', 'walks', 'to', 'the', 'exit', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'turns', 'towards', 'the', 'lunch', 'counter', '||rightparen||', 'hey', 'kenny', '||period||', 'you', 'still', 'want', 'to', 'get', 'that', 'suit', 'back', '||questionmark||', '||return||', '||return||', 'bania:', '||leftparen||', 'leans', 'backwards', 'from', 'the', 'counter', '||rightparen||', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'there', 'it', 'goes', '||period||', '||leftparen||', 'pointing', 'at', 'simon', 'walking', 'out', 'the', 'door', '||rightparen||', '||return||', '||return||', 'bania:', 'hey', '||exclammark||', 'hey', '||exclammark||', '||leftparen||', 'he', 'runs', 'out', 'the', 'door', 'after', 'simon', '||semicolon||', 'from', 'outside', '||rightparen||', 'come', 'here', 'you', '||exclammark||', '||return||', '||return||', 'simon:', '||leftparen||', 'from', 'outside', "monk's", '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', 'unhand', 'me', '||exclammark||', '||return||', '||return||', 'bania:', '||leftparen||', 'from', 'outside', "monk's", '||rightparen||', 'take', 'it', 'off', '||exclammark||', '||return||', '||return||', 'car', 'salesman:', 'george', '||comma||', 'are', 'you', 'sure', 'i', "can't", 'show', 'you', 'any', 'other', 'cars', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'so', '||comma||', 'vic', '||period||', "i've", 'done', 'my', 'homework', '||period||', "'89", 'volvo', '||comma||', "that's", 'the', 'car', 'for', 'me', '||comma||', "it's", 'the', 'one', 'i', 'want', '||period||', '||return||', '||return||', 'salesman:', 'i', 'got', 'a', 'lebaron', 'convertible', 'right', 'here', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'chuckles', '||rightparen||', ':', 'n', '||period||', 'i', '||period||', 'not', 'interested', '||period||', '||return||', '||return||', 'salesman:', "it's", 'got', 'a', 'few', 'more', 'miles', 'on', 'it', '||comma||', 'but', 'the', 'previous', 'owner', 'was', 'john', 'voight', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'suddenly', 'interested', '||rightparen||', ':', 'jon', 'voight', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'tim', '||period||', "you're", 'welcome', '||period||', '||leftparen||', 'hangs', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'was', 'that', 'tim', 'whatley', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'it', 'was', '||period||', 'he', 'wanted', 'your', 'address', '||dash||', 'you', '||comma||', 'my', 'friend', '||comma||', 'are', 'going', 'to', 'be', 'invited', 'to', 'his', 'night', '||dash||', 'before', '||dash||', 'thanksgiving', 'party', '||period||', '||leftparen||', 'elaine', 'raises', 'her', 'hands', 'triumphantly', '||comma||', 'then', 'gleefully', 'struts', 'her', 'way', 'to', 'the', 'kitchen', '||period||', '||rightparen||', 'you', 'know', '||comma||', "he's", 'got', 'that', 'great', 'apartment', 'on', '77th', 'street', '||comma||', 'and', 'they', 'overlook', 'where', 'they', 'inflate', 'all', 'those', 'huge', 'balloons', 'for', 'the', "macy's", 'thankgiving', 'day', 'parade', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'have', 'always', 'had', 'a', 'big', 'crush', 'on', 'tim', 'whatley', '||period||', 'why', "can't", 'he', 'ask', 'me', 'out', '||questionmark||', '||leftparen||', 'punctuates', 'this', 'by', 'shoving', 'jerry', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "he's", 'a', 'dentist', '||period||', 'you', "don't", 'want', 'to', 'go', 'out', 'with', 'a', 'dentist', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', "he'll", 'always', 'be', 'criticizing', 'your', 'brushing', 'technique', '||comma||', "it'll", 'drive', 'you', 'crazy', '||period||', '||leftparen||', 'mimics', 'brushing', 'his', 'teeth', '||rightparen||', 'away', 'from', 'the', 'gums', '||period||', '||period||', '||period||', '||leftparen||', 'the', 'door', 'opens', 'a', 'little', '||comma||', 'george', 'jangles', 'the', 'keys', 'to', 'his', 'new', 'car', 'at', 'jerry', 'and', 'elaine', '||comma||', 'then', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'new', 'car', '||exclammark||', '||return||', '||return||', 'elaine:', 'ohhh', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'did', 'you', 'get', 'the', 'volvo', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'decided', 'to', 'go', 'with', 'an', "'89", 'lebaron', '||period||', '||return||', '||return||', 'elaine:', 'a', 'lebaron', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'consumer', 'said', 'volvo', 'was', 'the', 'car', '||period||', '||return||', '||return||', 'george:', 'what', 'consumer', '||questionmark||', "i'm", 'the', 'consumer', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'seems', 'like', '||period||', '||period||', '||period||', 'a', 'strange', 'choice', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'maybe', 'so', '||period||', '||period||', '||period||', 'but', 'it', 'was', 'good', 'enough', 'for', 'mr', '||period||', 'jon', 'voight', '||period||', '||return||', '||return||', 'elaine:', 'jon', 'voight', '||questionmark||', 'the', 'actor', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'boasting', '||rightparen||', ':', "that's", 'right', '||period||', 'he', 'just', 'happened', 'to', 'be', 'the', 'previous', 'owner', 'of', 'the', 'vehicle', '||period||', '||return||', '||return||', 'jerry:', 'you', 'bought', 'a', 'car', 'because', 'it', 'belonged', 'to', 'jon', 'voight', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'defensive', '||rightparen||', ':', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'yes', '||comma||', 'yes', '||period||', 'you', 'like', 'the', 'idea', 'of', 'telling', 'people', "you're", 'driving', 'jon', "voight's", 'car', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'maybe', 'i', 'do', '||period||', 'so', 'what', '||period||', '||return||', '||return||', 'elaine:', "i've", 'never', 'even', 'seen', 'him', 'in', 'a', 'car', '||period||', 'i', 'mean', '||comma||', 'look', 'at', 'his', 'movies', '||period||', 'no', 'cars', '||period||', 'deliverance', '||dash||', 'canoe', '||period||', 'midnight', 'cowboy', '||dash||', 'boots', '||period||', 'runaway', 'train', '||period||', '||period||', '||period||', 'runaway', 'train', '||period||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'know', 'that', 'shoe', 'repair', 'place', 'at', 'the', 'end', 'of', 'the', 'block', '||questionmark||', 'well', '||comma||', 'if', 'they', "don't", 'get', 'some', 'business', '||comma||', "they're", 'gonna', 'have', 'to', 'shut', 'down', 'and', 'make', 'way', 'for', 'one', 'of', 'those', 'gourmet', 'coffee', 'or', 'cookie', 'stores', '||period||', '||return||', '||return||', 'elaine:', 'i', 'like', 'coffee', '||period||', '||return||', '||return||', 'george:', 'i', 'like', '||leftparen||', 'imitates', 'kramer', '||rightparen||', '||quotemark||', 'cookies', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'of', 'course', 'you', 'do', '||period||', 'and', 'do', 'you', 'know', 'why', '||questionmark||', 'because', "you're", 'a', 'bunch', 'of', 'yuppies', '||period||', "it's", 'your', 'go', '||dash||', 'go', 'corporate', 'takeover', 'lifestyles', 'that', 'are', 'driving', 'out', 'these', 'mom', 'and', 'pop', 'stores', 'and', 'destroying', 'the', 'fabric', 'of', 'this', 'neighborhood', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "what's", 'so', 'great', 'about', 'a', 'mom', 'and', 'pop', 'store', '||questionmark||', 'let', 'me', 'tell', 'you', 'something', '||period||', 'if', 'my', 'mom', 'and', 'pop', 'ran', 'a', 'store', '||comma||', 'i', "wouldn't", 'shop', 'there', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'bogambo', '||dash||', "they've", 'been', 'in', 'the', 'neighborhood', 'for', '48', 'years', '||period||', 'now', '||comma||', 'come', 'on', '||comma||', 'jerry', '||period||', "you've", 'gotta', 'have', 'a', 'pair', 'of', 'shoes', 'in', 'need', 'of', 'a', 'cobblin', '||period||', "'", '||return||', '||return||', 'jerry:', 'i', 'really', "don't", 'wear', 'the', 'kind', 'of', 'shoes', 'that', 'have', 'to', 'be', 'cobbled', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'about', 'sneakers', '||questionmark||', 'you', 'know', '||comma||', "they'll", 'clean', "'em", '||period||', 'they', 'do', 'complete', 'detailing', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'take', "'em", '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'happily', '||rightparen||', ':', 'yeah', '||dash||', 'yah', '||period||', '||return||', '||return||', 'pop:', 'kramer', '||comma||', 'without', 'you', '||comma||', "we'd", 'be', 'out', 'of', 'business', '||period||', '||return||', '||return||', 'kramer:', 'well', 'you', 'know', '||comma||', 'these', 'sneakers', '||comma||', 'they', 'belong', 'to', 'my', 'neighbor', '||comma||', 'jerry', 'seinfeld', '||questionmark||', 'the', 'comedian', '||period||', '||return||', '||return||', 'mom:', 'so', 'many', 'sneakers', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "he's", 'got', 'a', 'peter', 'pan', 'complex', '||period||', '||return||', '||return||', 'pop:', "they'll", 'be', 'ready', 'a', 'week', 'from', 'thursday', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||comma||', 'no', 'rush', '||period||', '||leftparen||', 'wipes', 'his', 'nose', '||rightparen||', 'uh', 'oh', '||period||', '||return||', '||return||', 'mom:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'keep', 'getting', 'these', 'nosebleeds', '||period||', '||return||', '||return||', 'mom:', 'oh', '||comma||', 'lie', 'down', '||comma||', 'and', 'put', 'your', 'head', 'back', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'lies', 'on', 'the', 'couch', 'and', 'cracks', 'the', 'back', 'of', 'his', 'head', 'against', 'the', 'armrest', '||period||', '||rightparen||', 'hey', '||comma||', "what's", 'with', 'your', 'ceiling', '||questionmark||', '||leftparen||', 'mom', 'and', 'pop', 'look', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'pop:', 'what', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'stuffing', 'tissue', 'up', 'his', 'nose', '||rightparen||', ':', 'well', '||comma||', 'you', 'got', 'wires', 'sticking', 'out', 'every', 'which', 'way', '||period||', 'that', 'looks', 'dangerous', '||comma||', 'you', 'should', 'call', 'the', 'electrician', '||period||', '||return||', '||return||', 'pop:', 'you', 'know', '||comma||', 'in', 'the', '48', 'years', "we've", 'been', 'here', '||comma||', 'i', "don't", 'think', "we've", 'ever', 'called', 'an', 'electrician', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'well', '||comma||', 'you', 'should', '||period||', 'this', 'place', 'could', 'blow', 'any', 'minute', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'mr', '||period||', 'pitt', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'have', 'you', 'gotten', 'all', 'the', 'salt', 'off', 'those', 'pretzels', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'm", 'still', 'working', 'on', 'it', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'what', 'in', 'blazes', 'are', 'you', 'listening', 'to', '||questionmark||', '||return||', '||return||', 'elaine:', 'artie', 'shaw', '||period||', '||quotemark||', 'honeysuckle', 'jump', '||period||', '||quotemark||', '||leftparen||', 'the', 'song', 'ends', '||period||', '||rightparen||', '||return||', '||return||', 'dj', 'on', 'radio:', 'that', 'was', 'artie', 'shaw', '||comma||', '||quotemark||', 'honeysuckle', 'jump', '||period||', '||quotemark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'elaine', '||exclammark||', 'how', 'did', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'my', 'father', 'used', 'have', 'a', 'huge', 'collection', 'of', 'big', 'band', 'records', '||period||', '||return||', '||return||', 'dj', 'on', 'radio:', 'congratulations', 'to', 'our', 'listener', 'wayne', 'hopper', 'for', 'identifying', 'it', '||period||', 'and', 'by', 'doing', 'so', '||comma||', 'he', 'becomes', 'our', 'seventh', 'person', 'to', 'land', 'the', 'wfbb', '||dash||', 'sponsored', 'woody', 'woodpecker', 'balloon', 'in', 'the', "macy's", 'thanksgiving', 'day', 'parade', '||period||', '||leftparen||', 'mr', '||period||', 'pitt', 'hears', 'this', 'and', 'is', 'intrigued', '||semicolon||', 'mouths', 'the', 'words', '||quotemark||', 'woody', 'woodpecker', '||period||', '||quotemark||', '||rightparen||', 'there', 'are', 'only', 'three', 'spots', 'left', '||period||', "we're", 'going', 'to', 'take', 'a', 'little', 'break', 'now', '||semicolon||', 'when', 'we', 'come', 'back', '||comma||', "you'll", 'have', 'three', 'more', 'chances', 'to', 'win', 'a', 'spot', 'holding', 'a', 'rope', 'under', 'woody', 'woodpecker', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt', '||leftparen||', 'to', 'elaine', '||comma||', 'excited', '||rightparen||', ':', 'could', 'you', 'identify', 'the', 'next', 'song', '||questionmark||', 'could', 'you', '||questionmark||', 'could', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||comma||', 'why', 'would', 'you', 'want', 'to', 'hold', 'onto', 'the', 'ropes', 'on', 'the', 'woody', 'woodpecker', 'balloon', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'my', 'father', 'was', 'a', 'stern', 'man', '||period||', 'he', 'forbad', 'us', 'to', 'participate', 'in', 'any', 'activities', 'that', 'he', 'thought', 'were', 'associated', 'with', 'the', 'common', 'man', '||period||', 'the', 'thanksgiving', 'day', 'parade', 'was', 'first', 'on', 'the', 'list', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'alright', '||comma||', "i'll", 'do', 'the', 'best', 'i', 'can', '||period||', '||leftparen||', 'turns', 'up', 'the', 'radio', '||period||', '||rightparen||', '||return||', '||return||', 'dj', 'on', 'radio:', 'alright', '||comma||', 'here', 'we', 'go', 'for', 'the', 'next', 'spot', 'under', 'the', 'balloon', '||period||', 'if', 'you', 'know', 'the', 'name', 'of', 'this', 'song', '||comma||', 'call', '555', '||dash||', 'band', '||period||', '||leftparen||', 'the', 'music', 'starts', '||period||', 'elaine', 'listens', 'intently', '||period||', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'pitt', '||leftparen||', 'impatiently', '||rightparen||', ':', 'well', '||comma||', 'elaine', '||questionmark||', 'do', 'you', 'know', 'it', '||questionmark||', 'what', 'song', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'will', 'you', 'shut', 'up', '||questionmark||', 'i', "can't", 'hear', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', "i'm", 'sorry', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', "i've", 'got', 'it', '||exclammark||', "it's", '||quotemark||', 'next', 'stop', 'pottersville', '||quotemark||', '||exclammark||', '||leftparen||', 'grabs', 'the', 'phone', 'to', 'call', 'it', 'in', '||period||', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'pitt', '||leftparen||', 'overjoyed', '||rightparen||', ':', 'goody', '||exclammark||', 'yes', '||exclammark||', 'yes', '||exclammark||', 'yes', '||exclammark||', '||leftparen||', 'dances', 'back', 'and', 'forth', '||comma||', 'elated', '||rightparen||', 'next', 'stop', 'pottersville', '||comma||', 'next', 'stop', 'pottersville', '||exclammark||', 'you', 'are', 'a', 'genius', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'are', 'gonna', 'love', 'this', 'car', '||period||', 'even', 'if', 'you', "don't", 'like', 'jon', 'voight', '||period||', '||return||', '||return||', 'jerry:', 'i', 'like', 'jon', 'voight', '||period||', 'just', 'seems', 'like', "kind've", 'a', 'strange', 'reason', 'to', 'buy', 'a', 'car', '||comma||', 'because', 'he', 'might', 'have', 'driven', 'it', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||quotemark||', 'might', '||quotemark||', '||questionmark||', 'you', "don't", 'think', 'he', 'really', 'owned', 'this', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'why', 'would', 'the', 'guy', 'make', 'up', 'something', 'like', 'that', '||questionmark||', 'of', 'all', 'the', 'names', 'he', 'could', 'pick', '||comma||', 'why', 'settle', 'on', 'jon', 'voight', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'you', 'see', '||comma||', "that's", 'the', 'genius', 'of', 'it', '||period||', 'if', 'he', 'had', 'said', 'liam', 'neeson', '||comma||', "you'd", 'know', "he's", 'making', 'it', 'up', '||period||', '||return||', '||return||', 'george:', 'neeson', '||questionmark||', 'how', 'are', 'you', 'comparing', 'liam', 'neeson', 'with', 'jon', 'voight', '||questionmark||', 'jerry', '||comma||', "we're", 'talking', 'about', 'joe', 'buck', '||period||', 'if', 'you', 'can', 'play', 'joe', 'buck', '||comma||', 'oskar', "schindler's", 'a', 'cake', 'walk', '||period||', '||leftparen||', 'opens', 'the', 'car', 'door', 'for', 'jerry', '||comma||', "jerry's", 'about', 'to', 'get', 'in', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'look', 'at', 'this', '||comma||', 'i', 'stepped', 'in', 'gum', '||period||', '||return||', '||return||', 'george:', 'whoa', '||comma||', 'whoa', '||comma||', "you're", 'not', 'getting', 'in', 'my', 'car', 'with', 'gummy', 'shoes', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'shuts', 'the', 'car', 'door', '||rightparen||', ':', 'alright', '||comma||', "i'll", 'change', 'my', 'shoes', '||period||', '||leftparen||', 'heads', 'back', 'to', 'his', 'apartment', '||period||', 'george', 'follows', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'unimpressed', '||rightparen||', ':', 'liam', 'neeson', '||period||', 'you', 'know', '||comma||', "he's", 'not', 'american', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'get', 'a', 'clean', 'pair', '||period||', '||leftparen||', 'goes', 'into', 'his', 'room', '||period||', 'george', 'strides', 'over', 'to', 'the', 'window', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'singing', '||rightparen||', ':', "everybody's", "talkin'", 'at', 'me', '||period||', '||period||', '||period||', 'i', "can't", 'hear', 'a', 'word', "they're", "sayin'", '||period||', '||period||', '||period||', 'just', "drivin'", 'around', 'in', 'jon', "voight's", 'car', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'yelling', 'from', 'his', 'room', '||rightparen||', ':', 'kramer', '||exclammark||', '||leftparen||', 'we', 'hear', "kramer's", 'door', 'slam', 'open', 'and', 'shut', '||period||', 'kramer', 'enters', '||period||', 'jerry', 'comes', 'out', 'of', 'his', 'room', '||period||', '||rightparen||', 'hey', '||exclammark||', "where's", 'all', 'my', 'sneakers', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'said', 'take', "'em", '||period||', '||return||', '||return||', 'jerry:', 'not', 'all', 'of', "'em", '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'obviously', 'there', 'was', 'a', 'miscommunication', '||period||', '||return||', '||return||', 'jerry:', 'obviously', '||period||', 'so', 'what', 'am', 'i', 'supposed', 'to', 'wear', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'left', 'you', 'a', 'pair', 'right', 'here', '||period||', '||period||', '||period||', '||leftparen||', 'goes', 'into', "jerry's", 'room', 'and', 'comes', 'out', 'with', 'a', 'pair', 'of', 'cowboy', 'boots', '||period||', '||rightparen||', "c'mon", '||period||', 'there', '||comma||', 'put', 'on', 'those', 'boots', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'wear', 'these', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'uncomfortable', '||period||', '||return||', '||return||', 'kramer:', "c'mon", 'here', '||comma||', 'try', "'em", 'on', '||period||', '||leftparen||', 'jerry', 'sits', 'down', 'and', 'puts', 'the', 'boots', 'on', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'where', 'did', 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'worked', 'a', 'club', 'in', 'dallas', 'one', 'time', 'and', 'they', "couldn't", 'afford', 'to', 'pay', 'me', 'so', 'they', 'gave', 'me', 'these', '||period||', 'oh', '||comma||', 'i', "can't", 'wear', 'these', '||exclammark||', '||leftparen||', 'stands', 'up', '||period||', '||rightparen||', 'they', 'look', 'ridiculous', '||exclammark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'you', 'look', 'like', 'a', 'cowboy', '||exclammark||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', 'i', "don't", 'wanna', 'be', 'a', 'cowboy', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'stop', 'it', '||period||', 'you', 'know', 'that', 'friend', 'of', 'yours', '||comma||', 'tim', 'the', 'dentist', '||questionmark||', 'i', 'got', 'an', 'invitation', 'to', 'his', 'thanksgiving', 'eve', 'party', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'got', 'one', 'too', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||questionmark||', 'huh', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'just', 'that', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', "didn't", 'get', 'one', '||period||', '||return||', '||return||', 'george:', 'you', "didn't", 'get', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'but', 'he', 'called', 'me', 'up', 'and', 'he', 'asked', 'for', 'yours', 'and', "elaine's", 'addresses', '||comma||', "i'm", 'sure', 'that', 'means', "i'm", 'invited', '||period||', '||return||', '||return||', 'kramer:', 'not', 'necessarily', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'why', 'would', 'you', 'call', 'someone', 'up', 'and', 'ask', 'them', 'for', 'two', 'addresses', 'if', "you're", 'not', 'invited', 'to', 'the', 'party', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'mocking', 'jerry', '||rightparen||', ':', "that's", 'the', 'genius', 'of', 'it', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'picks', 'up', 'the', 'phone', '||rightparen||', ':', "i'm", "callin'", 'elaine', '||period||', 'see', 'if', 'she', 'can', 'find', 'out', 'anything', 'from', 'tim', 'whatley', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'hey', '||period||', 'i', 'got', 'jon', "voight's", 'lebaron', '||period||', '||leftparen||', 'jingles', 'the', 'keys', '||period||', '||rightparen||', '||return||', '||return||', 'kramer', '||leftparen||', 'impressed', '||rightparen||', ':', 'boss', '||exclammark||', '||return||', '||return||', 'pop:', 'four', 'thousand', 'dollars', '||questionmark||', 'we', "can't", 'afford', 'that', '||exclammark||', '||return||', '||return||', 'electrician:', 'well', "i'm", 'afraid', "you're", 'gonna', 'have', 'to', 'do', 'something', 'about', 'it', '||comma||', 'because', "it's", 'in', 'violation', 'of', 'the', 'building', 'code', '||period||', 'otherwise', '||comma||', "they're", 'gonna', 'close', 'you', 'up', '||period||', '||return||', '||return||', 'pop:', 'but', 'what', 'if', 'we', "can't", 'pay', 'for', 'it', '||questionmark||', '||return||', '||return||', 'electrician:', 'then', 'i', 'have', 'to', 'report', 'you', '||period||', 'otherwise', '||comma||', 'i', 'lose', 'my', 'license', '||period||', 'sorry', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'pop:', '48', 'years', '||comma||', 'mom', '||exclammark||', 'and', 'now', 'we', 'have', 'to', 'close', '||exclammark||', 'all', 'because', 'of', 'that', 'idiot', 'and', 'his', 'bloody', 'nose', '||exclammark||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'afternoon', '||comma||', 'mom', '||exclammark||', 'afternoon', '||comma||', 'pop', '||period||', 'you', 'know', 'you', 'got', 'a', 'crack', 'in', 'the', 'sidewalk', 'out', 'there', '||questionmark||', 'now', '||comma||', 'you', 'oughta', 'get', 'that', 'fixed', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'put', 'the', 'top', 'up', '||comma||', "it's", 'november', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'feel', 'alive', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "let's", 'check', 'out', 'the', 'glove', 'box', '||period||', '||leftparen||', 'opens', 'the', 'glove', 'compartment', '||comma||', 'takes', 'out', 'a', 'pencil', '||period||', '||rightparen||', 'ah', '||period||', 'pencil', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||period||', '||period||', 'you', "don't", 'think', '||period||', '||period||', '||period||', 'sure', '||comma||', "that's", 'jon', "voight's", 'pencil', '||exclammark||', '||return||', '||return||', 'jerry:', 'with', 'jon', "voight's", 'teeth', 'marks', '||period||', '||leftparen||', 'looks', 'at', 'the', "owner's", 'manual', '||period||', '||rightparen||', "owner's", 'manual', '||period||', '||period||', '||period||', 'you', 'know', 'what', '||questionmark||', 'this', 'car', 'was', 'owned', 'by', 'jon', 'voight', '||period||', '||return||', '||return||', 'george:', 'ah', '||exclammark||', 'see', '||questionmark||', 'i', 'told', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'except', 'jon', 'is', 'spelled', 'with', 'an', 'h', '||period||', 'j', '||dash||', 'o', '||dash||', 'h', '||dash||', 'n', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', "doesn't", 'jon', 'voight', 'spell', 'his', 'name', 'j', '||dash||', 'o', '||dash||', 'n', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'pulls', 'over', '||rightparen||', ':', 'so', '||comma||', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', "i'm", 'sure', '||quotemark||', 'jon', '||quotemark||', 'probably', 'mispelled', 'his', 'own', 'name', '||period||', 'i', 'know', 'sometimes', 'i', 'spell', 'jerry', 'with', 'a', 'g', '||period||', '||period||', '||period||', 'and', 'an', 'i', '||exclammark||', '||leftparen||', 'laughs', 'uproariously', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'angrily', '||rightparen||', ':', 'get', 'out', 'of', 'the', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||comma||', 'you', 'heard', 'me', '||period||', 'get', 'out', '||exclammark||', 'you', 'are', 'ruining', 'this', 'whole', 'experience', 'for', 'me', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'sarcastically', '||rightparen||', ':', 'oh', '||comma||', 'look', '||exclammark||', "there's", 'gregory', "peck's", 'bicycle', '||exclammark||', '||return||', '||return||', 'george:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'and', 'barbara', "mandrell's", 'skateboard', '||exclammark||', '||return||', '||return||', 'george:', 'get', 'out', '||exclammark||', '||exclammark||', '||leftparen||', 'jerry', 'gets', 'out', 'and', 'george', 'drives', 'away', '||period||', 'a', 'couple', 'of', 'guys', 'notice', 'jerry', 'in', 'his', 'cowboy', 'boots', '||period||', '||rightparen||', '||return||', '||return||', 'tough', 'guy', '||leftparen||', 'threatingly', '||rightparen||', ':', 'hey', '||comma||', 'cowboy', '||period||', "where's", 'your', 'horse', '||questionmark||', '||leftparen||', 'jerry', 'slips', 'and', 'slides', 'in', 'his', 'cowboy', 'boots', 'and', 'runs', 'away', '||period||', '||rightparen||', 'yeah', '||comma||', 'you', 'better', 'run', '||exclammark||', '||return||', '||return||', 'george:', 'did', 'they', 'take', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'they', "didn't", 'even', 'touch', 'me', '||period||', 'i', 'tripped', 'because', 'of', 'these', 'stupid', 'cowboy', 'boots', '||period||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'again', '||comma||', "i'm", 'sorry', 'about', 'throwing', 'you', 'out', 'of', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', 'you', 'really', 'seemed', 'to', 'enjoy', 'it', '||period||', '||return||', '||return||', 'george:', 'it', 'was', 'kinda', 'fun', '||period||', '||leftparen||', 'elaine', 'gives', 'jerry', 'a', 'cold', 'cloth', 'for', 'his', 'jaw', '||period||', '||rightparen||', 'you', 'know', '||comma||', 'maybe', 'his', 'name', 'really', 'is', 'j', '||dash||', 'o', '||dash||', 'h', '||dash||', 'n', '||comma||', 'but', 'he', 'changed', 'it', 'to', 'j', '||dash||', 'o', '||dash||', 'n', 'for', 'show', 'business', '||period||', 'well', '||comma||', 'you', 'know', '||comma||', 'j', '||dash||', 'o', '||dash||', 'n', 'is', 'a', 'lot', 'zippier', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'sarcastic', '||rightparen||', ':', 'yeah', '||comma||', "that's", 'possible', '||period||', '||return||', '||return||', 'george:', 'how', 'would', 'you', 'find', 'out', 'something', 'like', 'that', '||period||', '||period||', '||period||', 'wait', 'a', 'minute', '||comma||', 'what', 'am', 'i', 'thinking', '||questionmark||', "i've", 'got', 'the', 'entire', 'yankee', 'organization', 'at', 'my', 'disposal', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', "he'll", 'dispose', 'of', 'it', '||period||', '||return||', '||return||', 'george:', 'heh', '||comma||', "that's", 'right', '||period||', 'see', 'ya', 'later', '||period||', '||leftparen||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'jerome', '||comma||', 'i', 'did', 'a', 'little', 'snooping', 'around', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||exclammark||', "what'd", 'you', 'find', 'out', '||comma||', 'lois', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'talked', 'to', 'tim', 'whatley', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'and', 'i', 'asked', 'him', '||comma||', '||quotemark||', 'should', 'jerry', 'bring', 'anything', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'so', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'mmmm', '||period||', '||period||', '||period||', 'and', 'he', 'said', '||comma||', '||quotemark||', 'why', 'would', 'jerry', 'bring', 'anything', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'but', 'let', 'me', 'ask', 'you', 'this', 'question', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'which', 'word', 'did', 'he', 'emphasize', '||questionmark||', 'did', 'he', 'say', '||comma||', '||quotemark||', 'why', 'would', 'jerry', 'bring', 'anything', '||questionmark||', '||quotemark||', 'or', '||comma||', '||quotemark||', 'why', 'would', 'jerry', 'bring', 'anything', '||questionmark||', '||quotemark||', 'you', 'emphasize', '||quotemark||', 'jerry', '||quotemark||', 'or', '||quotemark||', 'bring', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'he', 'emphasized', '||quotemark||', 'would', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'the', 'hell', 'with', 'this', 'party', '||comma||', 'i', "don't", 'even', 'want', 'to', 'go', 'to', 'begin', 'with', '||period||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'so', "where's", 'my', 'sneakers', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'what', 'i', 'wanna', 'know', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'saw', 'mom', 'and', 'pop', 'this', 'morning', '||comma||', 'but', 'when', 'i', 'went', 'by', 'the', 'store', 'on', 'my', 'way', 'home', '||questionmark||', 'the', 'place', 'was', 'empty', '||period||', 'everything', 'is', 'gone', '||period||', 'mom', 'and', 'pop', '||dash||', 'vrooop', '||dash||', 'vanished', '||period||', '||return||', '||return||', 'jerry:', 'so', 'all', 'my', 'sneakers', 'are', 'gone', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'afraid', 'so', '||period||', 'and', "that's", 'just', 'the', 'tip', 'of', 'the', 'iceberg', '||period||', "i've", 'been', 'asking', 'around', '||dash||', 'they', "didn't", 'even', 'have', 'any', 'kids', '||period||', '||return||', '||return||', 'jerry:', 'mom', 'and', 'pop', "aren't", 'even', 'a', 'mom', 'and', 'pop', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'all', 'an', 'act', '||comma||', 'jerry', '||period||', 'they', 'conned', 'us', '||comma||', 'and', 'they', 'scored', '||comma||', 'big', 'time', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'amused', '||rightparen||', ':', 'so', '||period||', 'mom', 'and', "pop's", 'plan', 'was', 'to', 'move', 'into', 'the', 'neighborhood', '||period||', '||period||', '||period||', 'establish', 'trust', '||period||', '||period||', '||period||', 'for', '48', 'years', '||period||', 'and', 'then', '||comma||', 'run', 'off', 'with', "jerry's", 'sneakers', '||period||', '||return||', '||return||', 'kramer:', 'apparently', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', "that's", 'enough', 'of', 'this', '||period||', '||return||', '||return||', 'jerry:', 'where', 'ya', "goin'", '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'gotta', 'go', 'to', 'the', 'dixieland', 'deli', 'to', 'pick', 'up', 'mr', '||period||', "pitt's", 'security', 'pass', 'for', 'the', 'parade', '||period||', '||return||', '||return||', 'jerry:', 'why', 'does', 'he', 'want', 'to', 'hold', 'a', 'rope', 'underneath', 'woody', 'woodpecker', 'in', 'the', 'thanksgiving', 'day', 'parade', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'finds', 'his', 'laugh', '||quotemark||', 'intoxicating', '||period||', '||quotemark||', '||leftparen||', 'laughs', 'like', 'woody', 'woodpecker', '||comma||', 'and', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'morgan:', 'so', 'george', '||comma||', 'what', 'kind', 'of', 'promotional', 'events', 'are', 'we', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'think', 'we', 'need', 'more', 'special', 'days', 'at', 'the', 'stadium', '||comma||', 'you', 'know', '||questionmark||', 'like', '||comma||', 'uh', '||period||', '||period||', '||period||', 'joe', 'pepitone', 'day', '||period||', 'or', '||comma||', 'uh', '||period||', '||period||', '||period||', 'jon', 'voight', 'day', '||period||', '||return||', '||return||', 'mr', '||period||', 'morgan:', 'jon', 'voight', '||questionmark||', 'the', 'actor', '||questionmark||', '||leftparen||', 'rubs', 'his', 'eyes', 'wearily', '||period||', '||rightparen||', 'uh', '||comma||', 'i', 'make', 'a', 'motion', 'that', 'we', 'have', 'no', 'more', 'of', 'these', 'meetings', 'that', 'have', 'been', 'initiated', 'by', 'george', 'costanza', '||period||', '||return||', '||return||', 'george:', 'i', 'suppose', 'if', 'i', 'had', 'suggested', 'liam', 'neeson', 'day', '||comma||', "you'd", 'all', 'be', 'patting', 'me', 'on', 'the', 'back', '||period||', '||return||', '||return||', 'contest', 'winner', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'i', 'guessed', 'stan', "herman's", '||quotemark||', 'boomtown', 'blues', '||period||', '||quotemark||', "what'd", 'you', 'guess', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'it', 'was', '||comma||', 'uh', '||period||', '||period||', '||period||', '||quotemark||', 'next', 'stop', 'pottersville', '||period||', '||quotemark||', '||leftparen||', 'the', 'group', 'is', 'unimpressed', '||period||', '||rightparen||', 'uh', '||comma||', 'do', 'you', 'know', 'when', "they're", 'giving', 'out', 'the', 'passes', '||questionmark||', '||return||', '||return||', 'contest', 'winner:', 'after', 'the', 'music', '||period||', '||leftparen||', 'the', 'band', 'starts', 'playing', 'directly', 'behind', 'elaine', '||period||', 'she', 'is', 'deafened', 'by', 'the', 'loudness', 'of', 'the', 'horns', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'oh', 'man', '||period||', '||leftparen||', 'takes', 'out', 'a', 'kleenex', 'and', 'puts', 'his', 'head', 'back', '||period||', 'jon', 'voight', 'comes', 'out', 'of', 'a', 'doorway', 'and', 'hails', 'a', 'cab', '||period||', '||rightparen||', '||return||', '||return||', 'voight:', 'taxi', '||exclammark||', '||leftparen||', 'walks', 'right', 'by', 'kramer', '||period||', '||rightparen||', 'taxi', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'jon', 'voight', '||exclammark||', 'jon', 'voight', '||exclammark||', '||leftparen||', 'voight', 'waves', 'at', 'kramer', 'and', 'hurriedly', 'gets', 'in', 'the', 'cab', '||period||', 'kramer', 'runs', 'over', 'to', 'the', 'car', '||period||', '||rightparen||', 'hey', '||comma||', 'listen', '||comma||', 'can', 'i', 'ask', 'you', 'something', '||questionmark||', 'listen', '||comma||', 'listen', '||period||', '||period||', '||period||', '||leftparen||', 'leans', 'in', 'the', 'the', 'open', 'back', 'window', 'of', 'the', 'cab', '||period||', 'defensively', '||comma||', 'voight', 'grabs', "kramer's", 'arm', 'and', 'bites', 'it', '||period||', 'kramer', 'screams', '||period||', 'the', 'cab', 'speeds', 'off', 'leaving', 'kramer', 'in', 'the', 'street', '||comma||', 'stunned', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', 'jon', 'voight', 'day', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'now', "i'll", 'always', 'have', 'this', 'doubt', 'about', 'the', 'car', '||period||', 'what', '||comma||', 'your', 'jaw', 'still', 'hurts', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'all', 'swollen', '||period||', 'i', 'think', 'i', 'may', 'have', 'chipped', 'a', 'tooth', 'when', 'i', 'fell', 'yesterday', '||period||', '||return||', '||return||', 'george:', 'you', 'should', 'have', 'somebody', 'take', 'a', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'calling', 'dentists', 'all', 'day', 'here', '||comma||', "there's", 'nobody', 'working', 'the', 'day', 'before', 'thanksgiving', '||period||', '||return||', '||return||', 'george:', 'you', 'going', 'to', 'the', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'know', 'if', "i'm", 'invited', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "there's", 'going', 'to', 'be', 'a', 'lot', 'of', 'dentists', 'there', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "you're", 'right', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'want', 'to', 'suffer', 'with', 'this', 'all', 'weekend', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'gotta', 'see', 'a', 'dentist', '||comma||', 'this', 'is', "killin'", 'me', '||period||', 'well', '||comma||', "i'll", 'take', 'a', 'chance', '||period||', "we'll", 'go', 'together', '||period||', '||return||', '||return||', 'george:', 'maybe', "i'll", 'just', 'meet', 'you', 'there', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'want', 'to', 'go', 'with', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'for', 'all', 'i', 'know', 'this', 'guy', 'went', 'out', 'of', 'his', 'way', 'to', 'not', 'invite', 'you', '||period||', 'how', 'am', 'i', 'gonna', 'feel', 'if', 'i', 'show', 'up', 'with', 'an', 'uninvited', '||comma||', 'unwelcome', 'intruder', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'way', 'i', 'feel', 'when', 'i', 'go', 'places', 'with', 'you', '||questionmark||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', 'hey', '||comma||', "so'd", 'you', 'find', 'my', 'sneakers', 'yet', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'but', 'i', 'did', 'run', 'into', 'somebody', 'you', 'might', 'be', 'interested', 'in', '||comma||', 'a', 'mr', '||period||', 'jon', 'voight', '||comma||', 'the', 'actor', '||questionmark||', '||return||', '||return||', 'george:', 'jon', 'voight', '||exclammark||', 'are', 'you', "kiddin'", 'me', '||questionmark||', 'did', 'you', 'talk', 'to', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'was', 'a', 'little', 'standoffish', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "didn't", 'ask', 'him', 'about', 'the', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', "couldn't", '||comma||', 'his', 'cab', 'pulled', 'away', '||period||', 'but', 'he', 'did', '||comma||', 'however', '||comma||', 'make', 'an', 'impression', 'on', 'me', '||period||', '||leftparen||', 'pulls', 'up', 'his', 'sleeve', 'and', 'shows', 'george', 'his', 'arm', '||period||', '||rightparen||', 'look', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'his', 'tooth', 'marks', '||period||', 'he', 'bit', 'me', '||period||', '||return||', '||return||', 'george:', 'jon', 'voight', 'bit', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'is', 'he', '||comma||', 'a', 'vampire', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "it's", 'justifiable', '||period||', 'he', 'thought', 'i', 'was', 'going', 'for', 'his', 'wallet', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'looking', 'at', "kramer's", 'arm', '||rightparen||', ':', 'he', 'left', 'perfect', 'imprints', '||period||', '||return||', '||return||', 'kramer:', 'that', 'he', 'did', '||period||', 'now', '||comma||', 'you', 'got', 'that', 'pencil', 'with', 'the', 'bite', 'marks', 'on', 'it', '||questionmark||', 'we', 'get', 'a', 'trained', 'eye', 'to', 'match', "'em", 'up', '||comma||', 'and', "we'll", 'see', 'whether', 'or', 'not', "you're", 'driving', 'jon', "voight's", 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'please', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'wait', '||comma||', "it's", 'not', 'that', 'stupid', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'stupid', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'why', "isn't", 'it', 'possible', '||questionmark||', 'i', 'mean', '||comma||', "they're", 'both', 'bite', 'marks', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'gonna', 'show', 'up', 'at', 'that', 'party', 'with', 'a', 'chewed', '||dash||', 'up', 'pencil', 'and', "kramer's", 'gnarled', 'arm', '||period||', '||return||', '||return||', 'george:', "it's", 'worth', 'a', 'shot', '||period||', '||leftparen||', 'goes', 'to', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'kramer', '||comma||', 'you', 'wanna', 'go', 'to', 'the', 'party', 'together', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'look', '||comma||', 'come', 'on', '||comma||', "i'm", 'an', 'invited', 'guest', '||period||', 'i', "can't", 'be', 'aiding', 'and', 'abetting', 'some', '||period||', '||period||', '||period||', 'party', '||dash||', 'crasher', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'under', 'his', 'breath', '||comma||', 'to', 'a', 'man', 'at', 'the', 'party', '||rightparen||', ':', 'excuse', 'me', '||comma||', 'uh', '||period||', '||period||', '||period||', 'dentist', '||questionmark||', 'you', 'a', 'dentist', '||questionmark||', '||leftparen||', 'the', 'guy', 'shakes', 'his', 'head', '||period||', 'jerry', 'moves', 'on', 'to', 'another', 'guy', '||period||', '||rightparen||', 'dentist', '||questionmark||', 'are', 'you', 'a', 'dentist', '||questionmark||', '||return||', '||return||', 'george:', 'these', 'are', 'the', 'balloons', '||questionmark||', 'big', 'deal', '||comma||', 'all', 'i', 'see', 'is', 'woody', 'woodpecker', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'a', 'problem', 'with', 'woody', 'woodpecker', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'what', 'is', 'he', '||questionmark||', 'some', 'sort', 'of', 'an', 'instigator', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', "he's", 'a', 'troublemaker', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', '||period||', 'did', 'you', 'get', 'my', 'message', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'i', "can't", 'hear', 'a', 'word', "you're", 'saying', '||period||', 'i', 'was', 'stuck', 'at', 'the', 'dixieland', 'deli', 'all', 'day', '||period||', 'my', 'head', 'is', 'still', 'ringing', '||period||', "where's", 'tim', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'pointing', 'at', 'the', 'trophy', '||rightparen||', ':', 'what', 'is', 'that', '||comma||', 'the', 'empire', 'state', 'building', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'i', "can't", 'hear', 'you', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'would', 'you', 'marry', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'told', 'you', '||comma||', 'i', "can't", 'hear', 'a', 'word', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'forget', 'it', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'tim', '||period||', '||return||', '||return||', 'tim:', 'hey', '||comma||', 'george', '||period||', 'kramer', '||comma||', 'how', 'ya', 'doin', '||period||', "'", '||leftparen||', 'they', 'shake', 'hands', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'watch', 'the', 'arm', '||exclammark||', 'tim', '||comma||', 'listen', '||comma||', 'we', "don't", 'want', 'to', 'bother', 'you', '||comma||', 'we', 'know', "you're", 'busy', 'here', '||period||', '||return||', '||return||', 'tim:', 'no', '||comma||', "it's", 'no', 'problem', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'let', 'me', 'show', 'you', 'something', '||comma||', 'take', 'a', 'look', 'at', 'this', '||period||', '||period||', '||period||', '||leftparen||', 'another', 'guy', 'at', 'the', 'party', 'interrupts', '||period||', '||rightparen||', '||return||', '||return||', 'guy:', 'alright', 'tim', '||comma||', "i'm", 'gonna', 'get', 'goin', '||period||', "'", '||return||', '||return||', 'tim:', 'alright', '||comma||', 'let', 'me', 'take', 'down', 'your', 'number', '||period||', '||leftparen||', 'grabs', "george's", 'pencil', '||comma||', 'then', 'notices', 'jerry', 'sitting', 'on', 'the', 'couch', '||period||', '||rightparen||', 'is', 'that', 'jerry', 'seinfeld', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', "didn't", 'come', 'with', 'us', '||period||', '||leftparen||', 'tim', 'walks', 'over', 'to', 'jerry', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'tim', '||comma||', 'the', 'pencil', '||period||', '||period||', '||period||', '||return||', '||return||', 'tim:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'tim', '||period||', '||return||', '||return||', 'tim:', 'jerry', '||period||', 'i', "didn't", 'think', "you'd", 'show', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'say', '||comma||', '||quotemark||', 'jerry', '||comma||', 'i', "didn't", 'think', "you'd", 'show', '||quotemark||', 'or', '||comma||', '||quotemark||', 'jerry', '||comma||', 'i', "didn't", 'think', "you'd", 'show', '||quotemark||', '||questionmark||', '||leftparen||', 'elaine', 'comes', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'tim:', 'elaine', '||exclammark||', 'hi', '||exclammark||', '||return||', '||return||', 'elaine:', 'tim', '||period||', '||return||', '||return||', 'tim:', 'well', '||period||', "i'm", 'really', 'glad', 'you', 'came', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'tim:', 'really', 'glad', 'you', 'came', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'deaf', '||rightparen||', ':', 'uh', 'huh', '||period||', '||return||', '||return||', 'tim', '||leftparen||', 'picks', 'up', 'a', 'bowl', 'of', 'nuts', '||rightparen||', ':', 'listen', '||comma||', 'elaine', '||comma||', "i've", 'been', 'wanting', 'to', 'ask', 'you', '||period||', '||period||', '||period||', 'would', 'you', 'like', 'to', 'go', 'out', 'with', 'me', 'new', 'years', 'eve', '||questionmark||', '||leftparen||', 'elaine', 'thinks', 'tim', 'is', 'offering', 'her', 'a', 'nut', '||comma||', 'and', 'shakes', 'her', 'head', 'no', '||period||', 'tim', '||comma||', 'rejected', '||comma||', 'walks', 'away', '||period||', '||rightparen||', 'thanks', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'puzzled', '||rightparen||', ':', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'something', '||period||', 'could', 'you', 'tell', 'if', 'teeth', 'marks', 'on', "someone's", 'arm', 'matched', 'teeth', 'marks', 'on', 'a', 'pencil', '||questionmark||', '||return||', '||return||', 'dentist:', "it's", 'possible', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'roll', 'up', 'your', 'sleeve', '||period||', '||return||', '||return||', 'dentist:', 'somebody', 'bit', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'not', 'just', 'someone', '||period||', 'jon', 'voight', '||period||', '||return||', '||return||', 'dentist:', 'jon', 'voight', 'bit', 'you', '||questionmark||', '||leftparen||', 'george', 'notices', 'tim', 'across', 'the', 'room', 'with', 'the', 'pencil', 'in', 'his', 'mouth', '||period||', '||rightparen||', 'the', 'pencil', '||exclammark||', 'hey', '||comma||', 'hey', '||exclammark||', 'get', 'the', 'pencil', 'out', 'of', 'your', 'mouth', '||comma||', "you're", 'destroying', 'jon', "voight's", 'teeth', 'marks', '||exclammark||', '||return||', '||return||', 'tim:', "that's", 'john', "voight's", 'pencil', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', 'i', 'got', 'his', 'whole', 'car', 'downstairs', '||period||', '||return||', '||return||', 'tim:', 'are', 'you', 'the', 'one', 'who', 'bought', 'his', 'lebaron', 'convertible', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'overjoyed', 'to', 'find', 'out', '||rightparen||', ':', 'yes', '||exclammark||', 'yes', '||comma||', "i'm", 'the', 'one', '||exclammark||', 'hey', '||exclammark||', 'so', '||comma||', 'you', 'know', 'jon', 'voight', '||exclammark||', '||return||', '||return||', 'tim:', 'yes', '||exclammark||', 'yes', '||comma||', 'i', 'went', 'to', 'dental', 'school', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'jon', 'voight', '||comma||', 'the', 'actor', '||questionmark||', '||return||', '||return||', 'tim:', 'no', '||period||', 'the', 'periodontist', '||period||', '||leftparen||', 'george', 'snaps', 'the', 'pencil', 'in', 'two', '||period||', '||rightparen||', '||return||', '||return||', 'dentist:', "can't", 'this', 'wait', 'until', 'monday', '||questionmark||', 'come', 'by', 'my', 'office', '||period||', '||return||', '||return||', 'jerry:', 'just', 'a', 'quick', 'peek', '||period||', "i'm", 'in', 'agony', '||period||', '||return||', '||return||', 'dentist:', 'alright', '||period||', 'sit', 'down', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'sits', 'down', '||rightparen||', ':', "it's", 'this', 'one', 'here', 'in', 'the', 'back', '||period||', '||leftparen||', 'tilts', 'his', 'head', 'back', '||comma||', 'and', 'knocks', "elaine's", 'trophy', 'out', 'the', 'window', '||period||', 'a', 'loud', 'hissing', 'sound', 'and', 'commotion', 'is', 'heard', 'from', 'the', 'street', 'below', '||period||', 'everyone', 'runs', 'to', 'the', 'windows', 'to', 'look', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'you', 'popped', 'woody', 'woodpecker', '||exclammark||', '||return||', '||return||', 'tim', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'hey', '||comma||', 'who', 'invited', 'you', '||comma||', 'anyway', '||questionmark||', "you're", 'a', 'troublemaker', '||exclammark||', '||leftparen||', 'jerry', 'nervously', 'laughs', 'like', 'woody', 'woodpecker', 'as', 'the', 'breeze', 'from', 'the', 'popped', 'balloon', 'blows', 'in', 'the', 'window', '||period||', '||rightparen||', '||return||', '||return||', 'announcer', 'on', 'tv:', 'hey', '||comma||', 'it', 'looks', 'like', 'woody', 'woodpecker', 'is', 'running', 'out', 'of', 'air', '||period||', 'in', 'fact', '||comma||', "he's", 'collapsing', '||period||', '||return||', '||return||', 'kramer:', 'those', 'kids', 'look', 'pretty', 'disappointed', '||period||', '||return||', '||return||', 'jerry:', 'especially', 'that', 'big', 'kid', 'up', 'in', 'the', 'front', '||period||', '||leftparen||', 'mr', '||period||', 'pitt', 'is', 'shown', 'on', 'the', 'television', '||comma||', 'trying', 'to', 'hold', 'up', 'the', 'deflating', 'woody', 'balloon', '||period||', '||rightparen||', 'how', 'old', 'is', 'he', '||questionmark||', '||leftparen||', 'the', 'phone', 'rings', '||period||', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'guy', 'on', 'phone:', 'hello', '||comma||', 'is', 'this', 'jerry', 'seinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'guy', 'on', 'phone:', 'you', "don't", 'know', 'me', '||comma||', 'but', 'a', 'really', 'strange', 'thing', 'happened', '||period||', 'i', 'was', 'at', 'a', 'garage', 'sale', '||comma||', 'and', 'this', 'old', 'couple', 'sold', 'me', 'a', 'used', 'pair', 'of', 'sneakers', 'they', 'claimed', 'belonged', 'to', 'jerry', 'seinfeld', '||comma||', 'the', 'comedian', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'have', 'the', 'address', 'of', 'that', 'garage', 'sale', '||questionmark||', 'okay', '||comma||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'found', 'mom', 'and', 'pop', '||comma||', "they're", "sellin'", 'my', 'sneakers', '||exclammark||', '||return||', '||return||', 'kramer:', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'jerry:', 'parsippany', '||comma||', 'new', 'jersey', '||period||', '||return||', '||return||', 'kramer:', "let's", 'go', '||exclammark||', '||return||', '||return||', 'jerry:', 'my', "car's", 'in', 'the', 'shop', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'how', 'are', 'we', 'getting', 'to', 'parsippany', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||period||', 'jerry', '||period||', 'these', 'nosebleeds', 'are', 'starting', 'again', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'wipes', "kramer's", 'brow', '||rightparen||', ':', 'maybe', 'we', 'should', 'get', 'you', 'to', 'a', 'hospital', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'a', 'la', 'ratso', 'rizzo', 'in', 'midnight', 'cowboy', '||rightparen||', ':', 'hey', '||comma||', 'i', "ain't", "goin'", 'to', 'no', 'bellevue', '||exclammark||', 'look', 'at', 'me', '||comma||', "i'm", "fallin'", 'apart', 'here', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'am', 'actually', 'going', 'to', 'have', 'a', 'secretary', 'and', 'i', 'get', 'to', 'do', 'the', 'interview', '||period||', '||return||', '||return||', 'jerry:', "that's", 'incredible', '||period||', 'six', 'months', 'ago', 'you', 'were', 'taking', 'messages', 'for', 'your', 'mother', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'and', 'now', "someone's", 'going', 'to', 'be', 'taking', 'messages', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'from', 'your', 'mother', '||period||', '||return||', '||return||', 'jerry:', 'so', 'this', 'ah', '||comma||', 'woman', 'you', 'plan', 'on', 'hiring', '||comma||', 'is', 'she', 'going', 'to', 'be', 'in', 'the', 'spokes', 'model', 'category', '||questionmark||', '||return||', '||return||', 'george:', 'sure', '||period||', 'i', 'could', 'go', 'the', 'tomato', 'route', '||period||', 'but', 'eh', '||comma||', "i've", 'given', 'this', 'a', 'lot', 'of', 'thought', 'jerry', '||period||', 'all', 'that', 'frustration', '||period||', 'ill', 'never', 'get', 'any', 'work', 'done', '||period||', 'so', 'im', 'doing', 'a', 'complete', '360', '||period||', 'im', 'going', 'for', 'total', 'efficiency', 'and', 'ability', '||period||', '||return||', '||return||', 'jerry:', "that's", 'a', '180', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'whatever', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'willie', '||period||', '||return||', '||return||', 'willie:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'this', 'stuff', 'and', 'ah', 'my', "mother's", 'fur', 'coat', 'for', 'storage', '||period||', '||return||', '||return||', 'willie:', 'what', 'are', 'you', 'doing', 'with', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'she', 'keeps', 'it', 'in', 'my', 'apartment', 'for', 'when', 'she', 'comes', 'up', 'from', 'florida', '||period||', '||return||', '||return||', 'donna:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'willie:', 'hey', 'jerry', '||comma||', 'you', 'know', 'my', 'wife', 'donna', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'why', 'i', 'said', 'hi', '||period||', '||return||', '||return||', 'willie:', 'hey', '||comma||', 'nice', 'jacket', '||period||', '||leftparen||', 'looking', 'over', 'the', 'jacket', '||rightparen||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', "it's", 'hounds', '||dash||', 'tooth', '||period||', '||return||', '||return||', 'willie:', 'whoa', '||comma||', 'this', 'is', 'a', 'beauty', '||period||', 'great', 'cut', '||period||', "it's", 'probably', 'very', 'flattering', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yes', '||comma||', 'it', 'really', 'accentuates', 'my', 'bust', 'line', '||period||', '||return||', '||return||', 'applicant:', 'well', '||comma||', 'i', 'type', 'about', '90', 'words', 'a', 'minute', '||period||', 'im', 'completely', 'well', '||dash||', 'versed', 'in', 'all', 'ibm', 'and', 'macintosh', 'programs', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'over', 'her', 'resume', '||rightparen||', 'well', 'miss', 'coggins', "you're", 'ah', '||comma||', 'obviously', 'qualified', 'for', 'the', 'job', '||period||', "you've", 'all', 'the', 'necessary', 'skills', 'and', 'experience', '||period||', 'but', "you're", 'extremely', 'attractive', '||period||', "you're", 'gorgeous', '||period||', 'im', 'looking', 'at', 'you', '||comma||', 'i', "can't", 'even', 'remember', 'my', 'name', '||period||', 'so', 'ah', '||comma||', 'im', 'afraid', 'this', 'is', 'not', 'going', 'to', 'work', 'out', '||leftparen||', 'he', 'crumples', 'her', 'resume', 'into', 'a', 'ball', '||rightparen||', 'thanks', 'for', 'coming', 'in', '||period||', '||return||', '||return||', 'george:', "you're", 'luscious', '||period||', "you're", 'ravishing', '||period||', 'i', 'would', 'give', 'up', 'red', 'meat', 'just', 'to', 'get', 'a', 'glimpse', 'of', 'you', 'in', 'a', 'bra', '||period||', 'im', 'terribly', 'sorry', '||period||', '||leftparen||', 'both', 'george', 'and', 'the', 'attractive', 'female', 'applicant', 'stand', 'up', 'as', 'george', 'reaches', 'across', 'the', 'desk', 'and', 'shakes', 'her', 'hand', 'for', 'coming', 'in', '||rightparen||', '||return||', '||return||', 'ade:', 'as', 'you', 'can', 'see', 'my', 'references', 'are', 'impeccable', '||period||', 'i', 'think', 'id', 'be', 'a', 'real', 'asset', 'here', '||period||', 'my', 'only', 'concern', 'is', '||comma||', 'i', 'do', 'take', 'care', 'of', 'my', 'mother', '||period||', 'so', 'will', 'there', 'be', 'any', 'late', 'nights', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'imagine', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'so', 'barneys', 'is', 'having', 'this', 'huge', 'sale', '||period||', 'i', 'try', 'this', 'dress', 'on', '||dash||', '||dash||', '||leftparen||', 'holds', 'the', 'garment', 'bag', 'out', 'towards', 'jerry', '||rightparen||', '||dash||', '||dash||', 'stunning', '||period||', 'stunning', '||period||', 'i', "couldn't", 'take', 'my', 'eyes', 'off', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'so', 'then', 'i', 'put', 'it', 'on', 'at', 'home', '||period||', 'it', 'looks', 'like', 'im', 'carrying', 'twins', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'saying', '||comma||', 'store', '||dash||', '||dash||', 'hotsy', '||dash||', 'totsy', '||comma||', 'home', '||dash||', '||dash||', 'hotsy', '||dash||', 'notsy', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'exactly', '||period||', 'anyway', "i've", 'got', 'to', 'go', 'over', 'there', 'and', 'return', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'we', 'were', 'going', 'to', 'the', 'movies', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', 'ill', 'try', 'it', 'on', 'again', '||period||', 'you', 'tell', 'me', 'what', 'you', 'think', '||period||', '||leftparen||', 'she', 'turns', 'and', 'goes', 'into', 'the', 'bedroom', 'to', 'change', 'clothes', '||rightparen||', '||return||', '||return||', 'george:', 'hey', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'george', '||return||', '||return||', 'george:', 'hey', 'elaine', '||period||', '||leftparen||', 'george', 'hangs', 'up', 'his', 'raincoat', 'next', 'to', 'the', 'door', '||rightparen||', 'im', 'telling', 'you', 'jerry', '||comma||', 'having', 'a', 'secretary', 'is', 'incredible', '||period||', '||leftparen||', 'george', 'claps', 'hands', '||rightparen||', 'i', "don't", 'know', 'why', 'i', 'didnt', 'have', 'one', 'before', '||period||', '||return||', '||return||', 'jerry:', 'because', 'you', 'didnt', 'have', 'a', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'perhaps', '||period||', '||leftparen||', 'hehe', '||rightparen||', 'i', 'walk', 'in', '||comma||', 'everything', 'is', 'organized', '||dash||', '||dash||', 'messages', '||comma||', 'appointments', '||period||', 'and', 'i', "can't", 'tell', 'you', 'how', 'proud', 'i', 'am', 'of', 'myself', 'for', 'going', 'with', 'ade', '||period||', '||return||', '||return||', 'jerry:', 'a', 'lesser', 'man', 'would', 'have', 'crumbled', '||period||', 'they', 'would', 'have', 'gone', 'for', 'the', 'dish', 'and', 'the', 'sure', 'fire', 'sexual', '||dash||', 'harassment', 'suit', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'little', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||exclammark||', '||leftparen||', 'throws', 'arms', 'down', '||rightparen||', 'you', 'answered', 'it', 'right', 'there', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'no', 'waist', 'in', 'that', 'thing', '||period||', '||return||', '||return||', 'george:', 'you', 'arms', 'look', 'like', 'something', 'hanging', 'in', 'a', 'kosher', 'deli', '||period||', '||return||', '||return||', 'elaine:', 'i', 'said', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'well', 'whad', 'you', 'buy', 'it', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'did', 'i', 'buy', 'it', '||comma||', 'because', 'in', 'the', 'mirror', '||comma||', 'at', 'barneys', '||comma||', 'i', 'looked', 'fabulous', '||period||', 'this', 'woman', 'was', 'just', 'walking', 'by', 'said', 'i', 'looked', 'like', 'demi', '||leftparen||', 'the', '||quotemark||', 'i', '||quotemark||', 'sounds', 'like', 'an', '||quotemark||', 'e', '||quotemark||', '||rightparen||', 'moore', 'in', 'indecent', 'proposal', '||period||', '||return||', '||return||', 'jerry:', 'how', 'fast', 'was', 'she', 'walking', '||questionmark||', '||return||', '||return||', 'george:', 'demi', '||leftparen||', 'the', '||quotemark||', 'i', '||quotemark||', 'sounds', 'like', 'an', '||quotemark||', 'e', '||quotemark||', '||rightparen||', '||questionmark||', 'i', 'thought', 'it', 'was', 'demi', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'think', "it's", 'demi', '||period||', '||leftparen||', 'the', '||quotemark||', 'i', '||quotemark||', 'sounds', 'like', 'an', '||quotemark||', 'e', '||quotemark||', '||rightparen||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'i', 'never', 'heard', 'of', 'a', 'semi', '||leftparen||', 'the', '||quotemark||', 'i', '||quotemark||', 'sounds', 'like', 'an', '||quotemark||', 'e', '||quotemark||', '||rightparen||', 'tractor', '||dash||', 'trailer', '||period||', '||leftparen||', 'jerry', 'nods', 'in', 'agreement', '||rightparen||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'minute', '||leftparen||', 'claps', 'hands', '||rightparen||', 'wait', 'a', 'minute', '||period||', 'i', 'know', "what's", 'going', 'on', 'here', '||period||', 'skinny', 'mirrors', '||exclammark||', '||leftparen||', 'she', 'pushes', 'george', 'and', 'jerry', 'in', 'their', 'respective', 'chests', '||comma||', 'with', 'her', 'arms', 'extended', '||dash||', '||dash||', 'one', 'arm', 'for', 'each', 'of', 'them', '||dash||', '||dash||', 'they', 'recoil', 'with', 'surprise', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'skinny', 'mirrors', '||exclammark||', 'barneys', 'has', 'skinny', 'mirrors', '||comma||', 'they', 'make', 'you', 'look', '||comma||', 'like', '||comma||', '10', 'pounds', 'lighter', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you're", 'crazy', '||period||', '||return||', '||return||', 'elaine:', 'am', 'i', '||questionmark||', '||leftparen||', 'hands', 'on', 'hips', '||rightparen||', 'do', 'you', 'think', 'i', 'would', 'have', 'bought', 'this', 'dress', 'if', 'i', 'looked', 'like', 'this', 'at', 'barneys', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||comma||', 'as', 'jerry', 'nods', 'in', 'agreement', '||rightparen||', 'you', 'know', 'i', 'think', 'she', 'might', 'have', 'something', 'there', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||period||', 'what', 'are', 'you', 'all', 'dressed', 'up', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'im', 'returning', 'this', 'dress', 'to', 'barneys', '||period||', '||return||', '||return||', 'kramer:', 'good', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'do', 'it', 'tomorrow', '||period||', 'well', 'go', 'to', 'the', 'movies', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'yeah', '||comma||', 'ok', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'look', '||comma||', 'if', "you're", 'going', 'there', '||comma||', 'maybe', 'you', 'could', 'pick', 'me', 'up', 'some', 'of', 'this', 'super', 'hydrating', '||comma||', "it's", 'a', 'total', '||dash||', 'protection', 'moisturizer', 'with', 'uva', '||period||', '||return||', '||return||', 'elaine:', 'moisturizer', '||questionmark||', "that's", 'girls', 'stuff', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', '||comma||', 'look', '||period||', 'ill', 'tell', 'you', 'what', '||dash||', '||dash||', "they're", 'having', 'a', 'sale', 'right', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'ill', 'meetcha', 'down', 'there', '||comma||', 'well', 'have', 'lunch', '||period||', '||return||', '||return||', 'elaine:', 'well', 'we', 'could', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'well', 'get', 'to', 'know', 'each', 'other', '||period||', 'we', 'never', 'get', 'to', 'spend', 'any', 'time', 'together', '||period||', 'oh', 'sure', 'we', 'have', 'our', 'little', 'group', 'here', '||comma||', 'but', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'looks', 'and', 'gestures', 'out', 'towards', 'george', 'and', 'jerry', '||comma||', 'as', 'elaine', 'walks', 'back', 'into', 'the', 'bedroom', 'to', 'change', 'out', 'of', 'the', 'dress', '||dash||', '||dash||', 'kramer', 'scratches', 'his', 'head', 'in', 'sort', 'of', 'disbelief', '||rightparen||', '||return||', '||return||', 'george:', 'and', 'then', 'assuming', 'the', 'strike', 'is', 'resolved', '||comma||', 'on', 'april', '14th', '||comma||', 'we', '||comma||', 'ah', '||comma||', 'play', 'the', 'angels', '||period||', 'so', 'lets', 'clear', 'a', 'floor', 'at', 'the', 'anaheim', 'hotel', '||period||', '||return||', '||return||', 'ade:', 'anaheim', 'hotel', '||period||', '||leftparen||', 'george', 'picks', 'up', 'a', 'container', 'of', 'chinese', 'food', 'from', 'the', 'credenza', '||rightparen||', 'you', 'may', 'want', 'to', 'reconsider', '||period||', 'i', 'believe', 'they', 'only', 'have', 'room', 'service', 'until', '10', 'p', '||period||', 'm', '||period||', 'and', 'then', "it's", 'only', 'finger', 'foods', '||period||', '||return||', '||return||', 'george:', 'ade', '||comma||', "you're", 'a', 'wonder', '||period||', '||leftparen||', 'he', 'he', '||dash||', '||dash||', 'george', 'laughs', '||rightparen||', '||return||', '||return||', 'ade:', 'ok', '||comma||', 'now', 'i', 'projected', 'some', 'of', 'those', 'figures', 'for', 'you', 'regarding', 'the', 'switch', 'to', 'canola', 'oil', 'for', 'the', 'stadium', 'popcorn', 'and', 'surprisingly', 'it', 'will', 'only', 'come', 'to', '1/2', 'a', 'cent', 'more', 'per', 'bag', '||comma||', 'so', 'it', 'is', 'definitely', 'doable', '||period||', '||return||', '||return||', 'george:', 'ade', '||comma||', 'i', 'have', 'to', 'tell', 'you', '||comma||', 'i', '||comma||', 'i', 'have', 'never', 'met', 'anybody', 'so', '||period||', '||period||', '||period||', 'efficient', '||period||', '||return||', '||return||', 'ade:', 'well', 'thank', 'you', '||comma||', 'im', 'flattered', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', "you're", 'just', '||comma||', "you're", 'just', 'a', 'marvel', 'of', 'organization', '||period||', '||return||', '||return||', 'ade:', 'well', 'im', 'just', '||comma||', 'hm', '||comma||', 'doing', 'my', 'job', '||period||', '||return||', '||return||', 'george:', "it's", 'like', 'im', 'thinking', 'of', 'something', '||comma||', 'and', "you're", '||leftparen||', 'snaps', 'fingers', '||rightparen||', 'one', 'step', 'ahead', 'of', 'me', '||period||', '||return||', '||return||', 'ade:', 'what', 'can', 'i', 'say', '||questionmark||', 'im', '||period||', '||period||', '||period||', 'im', 'good', 'at', 'what', 'i', 'do', '||period||', '||leftparen||', 'smiling', 'and', 'quietly', 'laughing', 'proudly', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'coyly', '||comma||', 'he', 'looks', 'down', 'and', 'runs', 'his', 'finger', 'along', 'the', 'top', 'of', 'the', 'chair', 'back', 'in', 'front', 'of', 'him', '||rightparen||', 'do', 'you', '||comma||', 'uh', '||period||', '||period||', '||period||', 'do', 'you', 'know', 'what', 'im', '||period||', '||period||', '||period||', 'thinking', 'about', 'now', '||questionmark||', '||return||', '||return||', 'ade:', '||leftparen||', 'thinking', 'about', 'the', 'question', '||comma||', 'she', 'stops', 'writing', '||rightparen||', 'yes', '||comma||', 'i', 'think', 'i', 'do', '||period||', '||leftparen||', 'she', 'turns', 'her', 'head', 'slowly', 'and', 'looks', 'directly', 'at', 'him', '||rightparen||', '||return||', '||return||', 'george:', 'is', 'it', '||comma||', 'uh', '||comma||', 'doable', '||questionmark||', '||return||', '||return||', 'ade:', "it's", 'definitely', 'doable', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'that', 'was', 'the', 'worst', '||period||', '||return||', '||return||', 'elaine:', 'i', 'cant', 'believe', 'they', 'made', 'the', 'wife', 'the', 'killer', '||period||', '||leftparen||', 'putting', 'on', 'gloves', '||rightparen||', 'gimme', 'a', 'break', '||period||', '||return||', '||return||', 'man:', '||leftparen||', 'waiting', 'in', 'line', 'for', 'tickets', '||comma||', 'he', 'overhears', 'elaine', '||rightparen||', 'hey', '||comma||', 'give', 'us', 'a', 'break', '||period||', 'we', "haven't", 'seen', 'it', 'yet', '||period||', 'thanks', 'a', 'lot', 'big', 'mouth', '||exclammark||', '||return||', '||return||', 'another', 'man:', '||leftparen||', 'waiting', 'in', 'line', '||comma||', 'closer', 'to', 'the', 'box', 'office', '||rightparen||', 'yeah', '||exclammark||', '||leftparen||', 'in', 'agreement', 'with', 'the', 'other', 'guy', '||rightparen||', '||return||', '||return||', 'kramer:', 'you', 'got', 'a', 'pen', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'think', 'i', 'do', '||period||', '||return||', '||return||', 'kramer:', 'and', 'i', 'need', 'something', 'to', 'write', 'on', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'all', 'i', 'got', 'is', 'my', 'dry', '||dash||', 'cleaning', 'stub', '||period||', '||return||', '||return||', 'kramer:', 'i', 'gust', 'met', 'uma', 'therman', '||period||', "she's", 'giving', 'me', 'her', 'telephone', 'number', '||period||', 'uma', 'jerry', '||comma||', 'uma', '||period||', '||return||', '||return||', 'jerry:', 'uma', 'therman', '||questionmark||', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "how'd", 'you', 'manage', 'that', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'well', 'i', "don't", 'have', 'any', 'time', 'to', 'talk', 'now', '||period||', '||leftparen||', 'he', 'rushes', 'back', 'into', 'the', 'theater', '||rightparen||', '||return||', '||return||', 'jerry:', "he's", 'got', 'the', 'kavorca', '||period||', '||leftparen||', 'looking', 'towards', 'the', 'theater', 'door', '||comma||', 'jerry', 'notices', 'one', 'of', 'the', 'movie', 'goers', '||rightparen||', 'hey', '||comma||', "isn't", 'that', 'willie', '||comma||', 'my', 'dry', '||dash||', 'cleaner', '||questionmark||', '||return||', '||return||', 'elaine:', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'just', 'went', 'in', '||period||', 'you', 'know', '||comma||', 'i', 'think', 'he', 'was', 'wearing', 'my', 'hounds', '||dash||', 'tooth', 'jacket', '||period||', '||return||', '||return||', 'elaine:', 'what', 'would', 'he', 'be', 'doing', 'wearing', 'your', 'jacket', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'looked', 'just', 'like', 'the', 'jacket', 'i', 'brought', 'in', 'to', 'be', 'dry', '||dash||', 'cleaned', '||period||', 'he', 'complimented', 'me', 'on', 'it', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'it', '||period||', 'uma', '||comma||', 'uma', '||comma||', 'uma', '||period||', '||leftparen||', 'looking', 'at', 'the', 'ticket', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'are', 'amazing', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'all', 'right', '||period||', "taxi's", 'on', 'me', '||period||', '||leftparen||', 'he', 'walks', 'off', 'camera', '||rightparen||', '||return||', '||return||', 'ade:', 'ah', 'no', 'no', 'no', 'no', 'no', '||period||', 'a', 'better', 'way', 'to', 'reach', 'the', 'bra', 'would', 'be', 'to', 'undo', 'the', 'jacket', '||comma||', 'then', 'go', 'around', 'the', 'back', 'of', 'the', 'shirt', '||period||', '||return||', '||return||', 'george:', 'ade', 'you', 'are', 'incredible', '||return||', '||return||', 'ade:', 'oh', '||period||', '||period||', '||period||', 'oh', '||period||', '||period||', '||period||', 'oh', '||period||', '||period||', '||period||', 'here', '||comma||', 'i', 'want', 'to', 'show', 'you', 'something', '||period||', 'hand', 'me', 'that', 'pillow', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'ade:', 'mr', '||period||', 'co', 'stan', 'za', '||exclammark||', '||return||', '||return||', 'george:', 'ade', '||comma||', 'ahh', '||comma||', 'ahh', '||comma||', 'ah', '||period||', '||period||', '||period||', 'im', 'giving', 'you', 'a', 'raise', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "you're", 'having', 'sex', 'and', 'then', 'all', 'of', 'a', 'sudden', '||comma||', 'you', 'just', 'blurt', 'out', 'im', 'giving', 'you', 'a', 'raise', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'just', 'a', 'quick', 'sidebar', 'here', '||dash||', '||dash||', 'are', 'you', 'in', 'anyway', 'authorized', 'to', 'give', 'raises', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'that', 'im', 'aware', 'of', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'so', 'grateful', 'to', 'have', 'sex', '||comma||', 'that', "you'll", 'just', 'shout', 'out', 'anything', 'that', 'comes', 'into', 'your', 'head', '||period||', '||return||', '||return||', 'george:', 'i', 'didnt', 'think', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'well', 'maybe', "she'll", 'just', 'think', 'it', 'was', 'bawdy', 'talk', '||period||', '||return||', '||return||', 'george:', 'i', 'didnt', 'say', 'any', 'other', 'bawdy', 'things', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'could', 'have', 'sex', 'with', 'her', 'again', 'and', 'then', 'take', 'it', 'back', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'you', 'know', "you're", 'not', 'any', 'help', 'at', 'all', 'here', '||period||', 'i', "don't", 'know', 'what', 'even', 'the', 'point', 'is', 'of', 'talking', 'to', 'you', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'im', 'sorry', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'guess', 'the', 'only', 'thing', 'i', 'can', 'do', 'is', 'go', 'into', 'george', 'steinbrenners', 'office', 'and', 'tell', 'him', 'he', 'has', 'to', 'give', 'her', 'a', 'raise', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'has', 'she', 'been', 'there', '||questionmark||', '||return||', '||return||', 'george:', '3', 'days', '||period||', '||return||', '||return||', 'jerry:', "it's", 'almost', 'a', 'week', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'movie', 'stub', 'from', 'the', '930', 'show', '||period||', 'george', '||comma||', 'i', 'think', 'willie', 'the', 'dry', '||dash||', 'cleaner', 'has', 'been', 'wearing', 'my', 'clothes', '||period||', '||return||', '||return||', 'elaine:', 'these', 'mirrors', 'are', 'skinny', 'mirrors', '||period||', 'this', 'is', 'false', '||period||', '||period||', '||period||', 'reflecting', '||period||', 'and', 'i', 'think', '||comma||', 'that', 'the', 'department', 'of', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'whatever', '||comma||', 'would', 'be', 'very', 'interested', 'to', 'know', "what's", 'going', 'on', 'here', '||period||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'well', '||comma||', "we're", 'more', 'than', 'happy', 'to', 'exchange', 'it', 'for', 'something', 'else', '||period||', '||return||', '||return||', 'elaine:', 'ok', 'fine', '||period||', '||leftparen||', 'smiling', '||rightparen||', 'i', 'did', 'like', 'that', 'little', 'calvin', 'klein', 'number', 'right', 'by', 'the', 'elevator', '||period||', 'you', 'know', 'the', 'little', '||period||', '||period||', '||period||', '||leftparen||', 'motions', 'in', 'the', 'direction', 'of', 'the', 'elevator', '||rightparen||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'ill', 'bring', 'it', 'to', 'your', 'dressing', 'room', '||period||', '||return||', '||return||', 'elaine:', 'ok', 'thanks', 'so', 'much', '||period||', '||leftparen||', 'the', 'barneys', 'sales', 'associate', 'turns', 'and', 'walks', 'away', '||period||', 'elaine', 'turns', 'to', 'kramer', 'as', 'he', 'admires', 'himself', 'in', 'the', 'mirror', '||rightparen||', 'what', 'are', 'you', 'all', 'dressed', 'up', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'elaine', '||comma||', 'when', "you're", 'shopping', 'on', 'madison', 'avenue', '||comma||', 'you', "don't", 'want', 'to', 'skip', 'on', 'the', '||comma||', 'swank', '||period||', '||return||', '||return||', 'elaine:', 'i', 'like', 'your', 'little', 'bag', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||comma||', 'oh', 'hey', '||comma||', 'look', 'at', 'this', '||period||', '||leftparen||', 'he', 'pulls', 'a', 'little', 'tube', 'out', 'of', 'the', 'bag', '||rightparen||', "it's", 'the', 'super', 'hydrating', '||comma||', 'triple', '||dash||', 'action', 'moisturizer', '||comma||', 'hmm', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'till', 'that', 'uma', 'smells', 'this', 'uva', '||period||', '||return||', '||return||', 'bania:', 'hey', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'bania', '||comma||', "what's", 'happening', '||questionmark||', '||leftparen||', 'kramer', '||comma||', 'looking', 'into', 'the', 'mirror', '||comma||', 'is', 'putting', 'moisturizer', 'under', 'his', 'eyes', '||rightparen||', '||return||', '||return||', 'bania:', 'im', 'looking', 'for', 'a', 'new', 'suit', '||period||', 'i', 'cant', 'find', 'anything', 'i', 'like', '||period||', "that's", 'a', 'nice', 'suit', '||period||', '||leftparen||', 'admiring', 'kramers', 'suit', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'bania:', 'did', 'you', 'get', 'that', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'this', 'is', 'vintage', '||period||', 'they', "don't", 'make', 'this', 'stuff', 'anymore', '||period||', '||return||', '||return||', 'bania:', "you're", 'telling', 'me', '||period||', '||return||', '||return||', 'kramer:', 'i', 'sure', 'am', '||period||', '||return||', '||return||', 'bania:', "it's", 'hard', 'for', 'me', 'to', 'find', 'pants', 'that', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interrupting', 'bania', '||rightparen||', 'that', "don't", 'make', 'you', 'look', 'high', '||dash||', 'waisted', '||period||', '||return||', '||return||', 'bania:', 'yes', '||return||', '||return||', 'kramer:', 'me', 'too', '||period||', '||return||', '||return||', 'bania:', 'what', 'size', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', '42', '||period||', '||return||', '||return||', 'bania:', '42', '||comma||', "that's", 'what', 'i', 'am', 'now', '||period||', "i've", 'been', 'working', 'out', '||comma||', 'im', 'huge', '||period||', "how'd", 'you', 'like', 'to', 'sell', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'make', 'me', 'an', 'offer', '||period||', '||return||', '||return||', 'bania:', '100', 'bucks', '||return||', '||return||', 'kramer:', 'surely', 'you', 'jest', '||period||', '||leftparen||', 'walks', 'away', 'from', 'bania', '||rightparen||', '||return||', '||return||', 'bania:', '175', '||return||', '||return||', 'kramer:', 'look', 'at', 'the', 'stitching', '||leftparen||', 'takes', 'the', 'jacket', 'off', 'to', 'show', 'bania', '||rightparen||', 'this', 'is', 'old', 'world', 'craftsmanship', '||period||', '||return||', '||return||', 'bania:', '300', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'sold', '||period||', 'follow', 'me', 'into', 'the', 'dressing', 'room', '||period||', '||return||', '||return||', 'bania:', 'you', 'throw', 'the', 'shirt', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'bania', '||comma||', "you're", 'killing', 'me', '||period||', '||return||', '||return||', 'bania:', 'hey', "that's", 'the', "women's", 'dressing', 'room', '||period||', '||return||', '||return||', 'kramer:', "there's", 'nothing', 'in', 'there', 'that', 'i', "haven't", 'seen', 'before', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'opens', 'the', 'door', '||comma||', 'looks', 'in', 'and', 'then', 'knocks', '5', 'times', '||rightparen||', 'mr', '||period||', 'steinbrenner', '||comma||', '||leftparen||', 'waves', '||rightparen||', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'second', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'yes', 'yes', 'george', '||period||', 'can', 'you', 'talk', 'to', 'me', 'for', 'a', 'second', '||questionmark||', 'of', 'course', 'you', 'can', '||dash||', '||dash||', 'im', 'a', 'very', 'accessible', 'man', '||period||', 'i', 'just', 'wanted', 'to', 'say', "you're", 'doing', 'great', 'work', 'on', 'that', 'canola', 'oil', 'stuff', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', 'to', 'be', 'honest', 'sir', '||dash||', '||dash||', 'my', '||comma||', 'my', 'new', 'secretary', 'ade', '||comma||', 'came', 'up', 'with', 'that', 'one', '||period||', '||return||', '||return||', 'steinbrenner:', 'ade', '||comma||', 'ade', '||comma||', 'i', 'like', 'that', 'name', 'george', '||period||', '||return||', '||return||', 'george:', 'she', 'supports', 'her', 'whole', 'family', '||period||', '||leftparen||', 'walking', 'slowly', 'into', 'the', 'room', '||rightparen||', '||return||', '||return||', 'steinbrenner:', 'is', 'that', 'a', 'fact', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'in', 'fact', '||comma||', 'her', 'mother', 'is', 'in', 'the', 'hospital', 'right', 'now', '||period||', "it's", 'some', 'kind', 'of', 'a', 'diverticulitis', '||period||', '||leftparen||', 'he', 'continues', 'walking', 'slowly', 'towards', 'steinbrenners', 'desk', '||rightparen||', '||return||', '||return||', 'steinbrenner:', 'i', 'had', 'a', 'bout', 'of', 'that', 'myself', 'one', 'time', '||dash||', '||dash||', 'knocked', 'me', 'right', 'on', 'my', 'ass', '||period||', '||return||', '||return||', 'george:', 'she', 'cant', 'even', 'afford', 'to', 'go', 'out', 'to', 'lunch', '||period||', "she's", 'been', 'eating', 'in', 'a', 'high', 'school', 'cafeterias', 'she', 'pretends', 'to', 'be', 'a', 'teacher', '||period||', "it's", 'pathetic', '||period||', '||return||', '||return||', 'steinbrenner:', "what's", 'that', 'cost', 'her', '||comma||', 'like', '||comma||', 'two', 'and', 'a', 'quarter', '||questionmark||', '||leftparen||', '$2', '||period||', '25', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'i', 'was', 'just', 'thinking', '||dash||', '||dash||', 'she', 'could', 'really', 'use', 'a', 'raise', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', 'know', '||comma||', "she'd", 'be', 'better', 'off', 'making', 'a', 'sandwich', 'at', 'home', 'and', 'bringing', 'it', 'in', '||period||', '||leftparen||', 'picks', 'up', 'the', 'telephone', 'hand', 'set', '||rightparen||', 'hello', '||comma||', 'ah', '||comma||', 'george', 'will', 'you', 'excuse', 'me', '||period||', '||return||', '||return||', 'kramer:', 'psst', '||period||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'i', 'need', 'you', 'to', 'get', 'me', 'some', 'clothes', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'just', 'sold', 'my', 'suit', 'to', 'bania', 'for', 'a', 'cool', 'three', '||dash||', 'hundred', '||period||', '||return||', '||return||', 'elaine:', 'so', 'go', 'buy', 'a', 'new', 'one', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'at', 'this', 'place', '||questionmark||', 'it', 'would', 'destroy', 'my', 'whole', 'profit', 'margin', '||period||', '||return||', '||return||', 'elaine:', 'so', '||period||', '||return||', '||return||', 'kramer:', 'listen', 'do', 'me', 'a', 'favor', '||dash||', '||dash||', 'just', 'call', 'jerry', '||comma||', 'tell', 'him', 'to', 'bring', 'me', 'some', 'clothes', '||period||', '||return||', '||return||', 'elaine:', 'ouhhh', '||leftparen||', 'kramer', 'disappears', 'back', 'behind', 'his', 'wall', 'as', 'elaine', 'opens', 'the', 'dressing', 'room', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'willie', '||period||', '||return||', '||return||', 'willie:', 'hey', '||comma||', 'jerry', '||period||', 'you', 'dropping', 'off', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'ah', '||comma||', 'seen', 'any', 'good', 'movies', 'lately', '||questionmark||', '||return||', '||return||', 'willie:', 'you', 'came', 'by', 'to', 'ask', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'specifically', '930', 'shows', '||period||', 'seen', 'any', 'good', '930', 'shows', 'at', 'the', 'paragon', '||comma||', 'willie', '||questionmark||', '||return||', '||return||', 'willie:', 'what', 'are', 'you', 'gettin', 'at', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'saw', 'you', 'the', 'other', 'night', 'stepping', 'out', 'with', 'my', 'hounds', '||dash||', 'tooth', 'jacket', '||period||', '||return||', '||return||', 'willie:', 'jerry', "that's", 'a', 'breach', 'of', 'the', 'dry', '||dash||', 'cleaners', 'code', '||period||', '||return||', '||return||', 'jerry:', 'you', 'need', 'a', 'code', 'to', 'tell', 'you', 'not', 'to', 'wear', 'peoples', 'clothes', '||return||', '||return||', 'willie:', 'i', "wasn't", 'wearing', 'your', 'jacket', '||period||', 'jerry', "you're", 'imagining', 'things', '||period||', '||leftparen||', 'he', 'makes', 'the', 'circular', 'motion', 'next', 'to', 'his', 'ears', '||dash||', 'the', 'international', 'symbol', 'for', 'insane', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeahhh', '||comma||', 'am', 'i', 'imagining', 'this', '||questionmark||', '||leftparen||', 'he', 'whips', 'out', 'the', 'movie', 'stub', 'and', 'holds', 'it', 'up', 'to', 'willie', '||rightparen||', 'found', 'this', 'little', 'cutie', 'in', 'the', 'pocket', '||period||', '||leftparen||', 'throws', 'the', 'stub', 'on', 'the', 'counter', '||rightparen||', '||return||', '||return||', 'willie:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', 'well', '||comma||', 'now', 'that', 'we', 'understand', 'each', 'other', '||dash||', '||dash||', 'ill', 'be', 'taking', 'my', 'business', 'elsewhere', '||period||', 'and', 'i', 'want', 'my', "mother's", 'fur', 'coat', 'back', 'too', '||period||', '||return||', '||return||', 'willie:', 'jerry', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'now', '||period||', '||return||', '||return||', 'willie:', 'now', '||questionmark||', '||leftparen||', 'willie', 'looks', 'off', 'with', 'his', 'eyes', 'to', 'his', 'left', '||dash||', '||dash||', 'he', 'is', 'thinking', 'about', 'his', 'wife', 'donna', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'want', 'that', 'coat', '||period||', '||leftparen||', 'jerry', 'opens', 'his', 'wallet', '||comma||', 'looking', 'for', 'the', 'dry', '||dash||', 'cleaning', 'ticket', '||rightparen||', '||return||', '||return||', 'willie:', 'well', '||period||', '||period||', '||period||', 'ahh', '||period||', '||leftparen||', 'apprehensively', '||rightparen||', '||return||', '||return||', 'jerry:', "where's", 'that', 'ticket', '||questionmark||', 'oh', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'willie:', 'wait', '||comma||', 'you', '||comma||', 'you', 'mean', 'to', 'tell', 'me', 'you', "don't", 'have', 'a', 'ticket', 'for', 'the', 'coat', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'not', 'on', 'me', '||period||', '||return||', '||return||', 'willie:', 'well', '||comma||', 'i', '||comma||', 'i', 'need', 'to', 'see', 'that', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', "i've", 'got', 'my', 'cleaning', 'before', 'without', 'a', 'ticket', '||period||', '||return||', '||return||', 'willie:', 'yeah', '||comma||', 'but', 'this', 'is', 'different', '||period||', 'those', 'fur', 'storage', 'warehouses', 'are', 'huge', '||period||', 'you', 'cant', '||comma||', 'get', 'anything', 'without', 'a', 'number', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'ill', 'be', 'back', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'it', 'looks', 'good', 'here', '||comma||', 'but', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'so', '||comma||', 'uh', '||comma||', 'do', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', 'have', 'to', 'think', 'about', 'it', '||period||', '||leftparen||', 'the', 'sales', 'associate', 'walks', 'away', '||rightparen||', 'i', 'need', 'a', 'nonpartisan', 'mirror', '||period||', '||return||', '||return||', 'ade:', 'i', 'cant', 'thank', 'you', 'enough', '||comma||', 'mr', '||period||', 'costanza', '||period||', 'im', 'so', 'grateful', '||return||', '||return||', 'george:', 'yes', '||comma||', 'well', '||comma||', 'i', 'sat', 'down', 'with', 'mr', '||period||', 'steinbrenner', '||period||', 'i', 'told', 'him', 'you', 'have', 'been', 'doing', 'great', 'work', '||period||', 'i', 'said', 'that', 'you', 'deserved', 'a', 'raise', '||comma||', 'and', 'if', 'you', 'didnt', 'get', 'it', '||comma||', 'that', 'i', '||comma||', 'was', 'leaving', '||period||', '||leftparen||', 'motions', 'with', 'both', 'arms', 'in', 'a', 'circular', 'motion', 'to', 'his', 'right', '||rightparen||', '||return||', '||return||', 'ade:', 'it', 'was', 'just', 'so', 'generous', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||comma||', "don't", 'worry', 'about', 'it', '||dash||', '||dash||', "he's", 'got', 'plenty', 'of', 'money', '||period||', '||leftparen||', 'spins', 'his', 'chair', 'away', 'from', 'her', '||rightparen||', '||return||', '||return||', 'ade:', 'oh', 'i', 'know', '||comma||', 'but', 'twenty', 'five', 'thousand', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'spins', 'his', 'chair', 'back', 'to', 'face', 'her', '||rightparen||', 'so', 'you', 'got', 'a', '$25', '||comma||', '000', 'a', 'year', 'raise', '||period||', '||return||', '||return||', 'ade:', 'yes', '||comma||', 'i', 'tell', 'you', '||comma||', 'mr', '||period||', 'steinbrenner', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "you're", 'making', 'more', 'than', 'i', 'am', '||period||', '||return||', '||return||', 'ade:', 'i', 'am', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', "you're", 'making', 'more', 'than', 'i', 'am', '||period||', 'a', 'secretary', 'cannot', 'make', 'more', 'than', 'her', 'boss', '||period||', '||return||', '||return||', 'ade:', 'well', 'apparently', 'they', 'can', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'this', 'is', 'insanity', '||period||', 'im', 'not', 'this', 'hippie', '||period||', '||leftparen||', 'meaning', 'her', 'hips', 'are', 'not', 'that', 'large', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'do', 'you', 'think', 'of', 'this', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'with', 'disbelief', '||rightparen||', "you'll", 'never', 'pull', 'it', 'off', '||period||', '||return||', '||return||', 'female', 'customer:', 'hey', '||comma||', "what's", 'going', 'on', 'in', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'barneys', 'sales', 'associate', '||rightparen||', 'excuse', 'me', '||comma||', 'could', 'you', 'tell', 'me', 'where', 'i', 'could', 'find', '||comma||', 'like', '||comma||', "women's", 'moisturizer', 'lotions', '||questionmark||', '||return||', '||return||', 'female', 'customer:', 'this', 'woman', 'has', 'been', 'in', 'there', 'for', 'over', 'an', 'hour', '||period||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'excuse', 'me', 'miss', '||period||', '||comma||', 'is', 'everything', 'ok', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', '[yeah]', '||leftparen||', 'through', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'jerry', '||comma||', 'you', 'got', 'my', 'clothes', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'clothes', '||questionmark||', '||return||', '||return||', 'kramer:', 'didnt', 'elaine', 'call', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'well', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'doing', 'here', '||questionmark||', "you're", 'in', 'the', "women's", 'dressing', 'room', '||period||', 'i', 'need', 'that', 'ticket', 'stub', 'back', 'so', 'i', 'can', 'get', 'my', "mother's", 'fur', 'coat', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'the', 'stub', '||comma||', 'yeah', '||period||', 'i', 'left', 'it', 'in', 'my', '||comma||', 'my', 'pants', '||return||', '||return||', 'jerry:', 'where', 'are', 'your', 'pants', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'sold', 'them', 'to', 'bania', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'you', 'sold', 'your', 'pants', 'to', 'bania', '||period||', 'let', 'me', 'in', '||period||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'sell', 'your', 'pants', 'to', 'bania', '||questionmark||', '||return||', '||return||', 'kramer:', 'ouhhh', '||dash||', '||dash||', 'i', 'had', 'uma', 'thermans', 'number', 'written', 'on', 'that', 'stub', '||period||', 'i', 'lost', 'umas', 'number', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'your', 'clothes', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', 'i', 'sold', 'them', 'to', 'bania', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'what', 'you', 'were', 'wearing', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "how'd", 'you', 'expect', 'to', 'get', 'out', 'of', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'didnt', 'think', 'ahead', '||period||', '||return||', '||return||', 'elaine:', 'this', "isn't", 'going', 'to', 'work', 'for', 'me', '||period||', '||period||', '||period||', 'so', 'if', 'you', 'could', 'show', 'me', 'something', 'else', '||period||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'no', '||questionmark||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'no', '||comma||', 'because', "you're", 'taking', 'that', 'one', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', '||questionmark||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'yes', '||period||', 'because', 'you', 'wore', 'it', 'out', 'of', 'the', 'store', '||period||', '||return||', '||return||', 'elaine:', 'ha', '||exclammark||', "that's", 'preposterous', '||period||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'i', 'suppose', 'that', 'salt', 'stain', 'came', 'from', 'all', 'the', 'snow', 'in', 'the', 'store', '||period||', '||return||', '||return||', "barney's", 'sales', 'associate:', 'shall', 'i', 'wrap', 'it', 'or', 'will', 'you', 'wear', 'it', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'you', 'can', 'wrap', 'it', '||period||', '||leftparen||', 'dejected', '||period||', 'elaine', 'puts', 'her', 'head', 'down', 'and', 'her', 'hand', 'to', 'her', 'forehead', 'as', 'she', 'walks', 'into', 'the', 'dressing', 'room', 'area', '||rightparen||', 'kramer', '||comma||', 'are', 'you', 'still', 'in', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', '[elaine]', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', '||return||', '||return||', 'bania:', 'elaine', '||comma||', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'bania', '||questionmark||', '||return||', '||return||', 'bania:', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'im', 'going', 'out', '||period||', '||leftparen||', 'he', 'comes', 'out', 'of', 'the', 'dressing', 'room', '||comma||', 'while', 'kramer', 'remains', 'inside', '||rightparen||', '||return||', '||return||', 'bania:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'bania', '||period||', '||return||', '||return||', 'bania:', 'kramer', '||comma||', 'i', 'want', 'my', 'money', 'back', 'for', 'this', 'suit', '||period||', "you're", 'nancy', '||dash||', 'boy', 'cream', 'leaked', 'all', 'over', 'the', 'pockets', '||dash||', '||dash||', 'suits', 'ruined', '||period||', '||return||', '||return||', 'kramer:', 'well', "you're", 'not', 'getting', 'any', 'money', 'back', '||period||', '||leftparen||', 'kramer', 'opens', 'the', 'door', '||rightparen||', 'jerry', '||comma||', 'come', 'back', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'bania', '||rightparen||', 'excuse', 'me', '||period||', '||leftparen||', 'he', 'goes', 'back', 'in', 'the', 'dressing', 'room', '||rightparen||', '||return||', '||return||', 'kramer:', 'umas', 'number', 'is', 'on', 'that', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'never', 'mind', 'uma', '||comma||', 'i', 'need', 'that', 'ticket', 'to', 'get', 'my', "mother's", 'fur', 'coat', 'back', '||period||', 'why', "don't", 'you', 'just', 'give', 'him', 'the', 'money', 'for', 'the', 'suit', '||questionmark||', '||return||', '||return||', 'kramer:', 'im', 'not', 'going', 'to', 'give', 'him', '$300', 'now', 'for', 'a', 'suit', 'with', 'moisturizer', 'cream', 'all', 'over', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'an', 'idea', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'cant', 'believe', 'im', 'gonna', 'do', 'this', '||period||', '||leftparen||', 'jerry', 'opens', 'the', 'door', 'and', 'exits', 'the', 'dressing', 'room', '||period||', 'he', 'walks', 'over', 'to', 'bania', '||rightparen||', '||return||', '||return||', 'jerry:', 'bania', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'second', '||questionmark||', "how's", 'everything', 'going', '||questionmark||', '||return||', '||return||', 'bania:', 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'see', 'the', 'thing', 'of', 'it', 'is', '||comma||', 'im', 'in', 'a', 'bit', 'of', 'an', 'awkward', 'position', 'here', '||period||', 'because', '||comma||', 'uhh', '||comma||', 'i', "don't", 'want', 'to', 'get', 'in', 'between', 'you', 'two', 'guys', 'but', '||period||', '||period||', '||period||', 'i', 'need', 'a', 'dry', '||dash||', 'cleaning', 'ticket', "that's", 'in', 'the', 'pocket', 'of', 'those', 'pants', '||period||', '||return||', '||return||', 'bania:', 'well', 'all', 'you', 'gotta', 'do', 'is', 'tell', 'kramer', 'to', 'give', 'me', 'my', 'money', 'back', '||comma||', 'and', "you'll", 'get', 'your', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', 'all', 'right', '||comma||', 'well', 'uh', '||period||', '||period||', '||period||', 'tell', 'you', 'what', 'i', 'will', 'do', 'bania', '||dash||', '||dash||', 'you', 'give', 'me', 'the', 'ticket', '||comma||', 'and', 'uh', '||comma||', 'i', 'will', 'take', 'you', 'out', 'for', 'a', 'nice', 'dinner', '||period||', '||return||', '||return||', 'bania:', 'can', 'we', 'go', 'back', 'to', 'mendys', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'go', 'to', 'mendys', '||comma||', 'ill', 'take', 'you', 'to', 'mendys', '||period||', '||return||', '||return||', 'bania:', 'twice', '||questionmark||', 'i', 'wanna', 'go', 'twice', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', 'lets', 'be', 'reasonable', '||comma||', 'bania', '||period||', 'im', 'taking', 'you', 'out', 'for', 'a', 'nice', 'dinner', '||period||', 'all', 'i', 'want', 'is', 'a', 'little', 'ticket', 'in', 'that', 'pocket', '||period||', 'i', 'think', "it's", 'a', 'pretty', 'good', 'deal', '||period||', '||return||', '||return||', 'bania:', 'two', 'mendys', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'all', 'right', '||leftparen||', 'gritting', 'teeth', '||rightparen||', 'just', 'give', 'me', 'the', 'ticket', '||period||', '||return||', '||return||', 'bania:', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'ohh', '||period||', '||period||', '||period||', '||leftparen||', 'takes', 'the', 'ticket', 'and', 'heads', 'for', 'the', 'dressing', 'room', '||rightparen||', '||return||', '||return||', 'george:', 'but', 'mr', '||period||', 'steinbrenner', '||comma||', 'how', 'can', 'i', 'be', 'expected', 'to', 'perform', 'my', 'job', 'properly', '||comma||', 'knowing', 'that', 'my', 'uh', '||comma||', 'subordinate', 'is', 'making', 'more', 'money', 'than', 'i', 'am', '||questionmark||', 'with', 'all', 'due', 'respect', 'sir', '||comma||', "it's", 'outta', 'whack', '||period||', '||return||', '||return||', 'steinbrenner:', 'uh', 'huh', '||comma||', 'i', 'understand', 'what', "you're", 'saying', 'george', 'and', 'i', 'know', 'what', "it's", 'like', 'to', 'be', 'financially', 'strapped', '||period||', 'when', 'i', 'was', 'a', 'young', 'man', 'in', 'cleveland', 'i', 'use', 'to', 'hitchhike', 'to', 'work', '||period||', 'one', 'time', 'i', 'got', 'picked', 'up', 'by', 'a', 'bakery', 'truck', '||period||', 'you', 'think', 'that', 'stuff', 'smells', 'good', '||questionmark||', 'try', 'being', 'cooped', 'up', 'in', 'the', 'back', 'of', 'one', 'of', 'those', 'babies', '||period||', '||return||', '||return||', 'steinbrenner:', 'i', "couldn't", 'look', 'at', 'a', 'donut', 'for', 'the', 'next', 'two', 'years', '||period||', 'well', 'not', 'that', 'i', 'was', 'ever', 'one', 'for', 'the', 'sweets', '||period||', '||return||', '||return||', 'steinbrenner:', 'sure', 'i', 'like', 'a', 'cup', 'cake', 'every', 'now', 'and', 'then', '||comma||', 'like', 'everybody', 'else', '||period||', 'you', 'know', 'i', 'like', 'it', 'when', 'they', 'have', 'a', 'little', 'cream', 'on', 'the', 'inside', '||comma||', "it's", 'a', 'surprise', '||period||', "that's", 'good', '||comma||', 'plus', 'the', 'chocolate', 'ones', 'are', 'good', 'too', '||period||', 'sometimes', 'i', 'just', 'cant', 'even', 'make', 'up', 'my', 'mind', '||period||', 'a', 'lot', 'of', 'times', 'ill', 'mix', 'the', 'two', 'together', '||comma||', 'make', 'a', 'vanilla', 'fudge', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'in', '||comma||', "it's", 'me', '||period||', '||leftparen||', 'kramer', 'opens', 'the', 'door', '||comma||', 'jerry', 'goes', 'in', 'the', 'dressing', 'room', '||rightparen||', 'here', '||period||', 'you', "don't", 'know', 'what', 'this', 'is', 'costing', 'me', '||period||', '||leftparen||', 'hands', 'kramer', 'the', 'ticket', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'closes', 'the', 'door', '||rightparen||', 'all', 'right', '||comma||', 'nice', 'work', '||period||', '||leftparen||', 'he', 'looks', 'at', 'the', 'ticket', '||comma||', 'flips', 'it', 'over', '||comma||', 'and', 'then', 'over', 'again', '||rightparen||', "where's", 'umas', 'number', '||questionmark||', 'the', 'moisturizer', 'smudged', 'out', 'the', 'phone', 'number', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'takes', 'the', 'ticket', 'back', 'and', 'looks', 'at', 'it', '||comma||', 'flips', 'it', 'over', '||rightparen||', 'the', 'dry', '||dash||', 'cleaning', 'numbers', 'are', 'gone', 'too', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'grabs', 'the', 'ticket', 'back', 'and', 'holds', 'it', 'up', 'to', 'the', 'light', '||rightparen||', 'it', 'must', 'have', 'been', 'the', 'botanical', 'extracts', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grabs', 'the', 'ticket', 'back', '||rightparen||', 'give', 'me', 'that', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'bania', '||comma||', 'the', 'dinners', 'off', '||period||', 'the', "ticket's", 'no', 'good', '||period||', 'the', 'numbers', 'are', 'all', 'smudged', 'out', '||period||', '||leftparen||', 'holds', 'out', 'the', 'ticket', 'and', 'hands', 'it', 'to', 'bania', '||rightparen||', '||return||', '||return||', 'bania:', '||leftparen||', 'looking', 'at', 'the', 'ticket', 'then', 'quickly', 'looks', 'up', 'at', 'jerry', '||rightparen||', 'you', 'trying', 'to', 'get', 'out', 'of', 'mendys', '||questionmark||', 'you', 'cant', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'the', 'ticket', 'is', 'worthless', '||period||', '||return||', '||return||', 'bania:', 'you', 'promised', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "isn't", 'that', 'my', "mother's", 'fur', 'coat', '||questionmark||', '||return||', '||return||', 'donna:', 'no', "it's", 'not', '||period||', '||leftparen||', 'the', 'coat', '||rightparen||', '||return||', '||return||', 'jerry:', 'it', 'is', '||exclammark||', '||leftparen||', 'jerry', 'walks', 'forcefully', 'into', 'the', 'dressing', 'room', 'and', 'closes', 'the', 'door', '||rightparen||', 'give', 'me', 'that', 'back', '||period||', '||return||', '||return||', 'donna:', 'no', '||comma||', 'what', 'are', 'you', 'talking', 'about', '||period||', '||return||', '||return||', 'donna:', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', "don't", 'you', '||period||', '||period||', '||period||', 'take', 'your', 'hands', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'cant', 'have', 'that', 'coat', '||comma||', "it's", 'not', 'yours', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', 'the', 'dry', '||dash||', 'cleaners', 'is', 'your', 'own', 'personal', 'closet', '||exclammark||', '||return||', '||return||', 'elaine:', 'donna', '||comma||', 'do', 'you', 'think', 'you', 'can', 'get', 'the', 'salt', 'stain', 'out', 'of', 'this', '||questionmark||', '||return||', '||return||', 'donna:', 'let', 'me', 'see', '||period||', '||leftparen||', 'looking', 'at', 'the', 'stain', '||rightparen||', 'piece', 'of', 'cake', '||period||', 'bring', 'it', '||return||', '||return||', 'elaine:', '||leftparen||', 'tilts', 'her', 'head', 'down', '||comma||', 'looking', 'over', 'her', 'glasses', 'in', 'amazement', 'of', '||return||', '||return||', 'bania:', 'mmm', '||period||', 'this', 'soup', 'is', 'great', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'very', 'good', '||period||', '||leftparen||', 'reluctantly', '||rightparen||', '||return||', '||return||', 'bania:', 'i', 'told', 'you', 'mendys', 'had', 'the', 'best', 'pea', 'soup', '||period||', 'the', 'best', 'jerry', '||comma||', 'the', 'best', '||period||', 'are', 'you', 'enjoying', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'im', 'having', 'a', 'wonderful', 'time', '||period||', '||leftparen||', "it's", 'obvious', 'he', "isn't", '||rightparen||', '||return||', '||return||', 'bania:', 'wait', 'till', 'you', 'try', 'the', 'swordfish', '||period||', 'you', 'know', 'jerry', '||comma||', 'i', 'was', 'thinking', '||period||', 'for', 'our', 'next', 'meal', '||comma||', 'do', 'you', 'think', 'we', 'should', 'come', 'here', '||period||', '||period||', '||period||', 'or', 'should', 'we', 'go', 'someplace', 'else', '||questionmark||', 'you', 'know', 'it', 'has', "it's", 'pros', 'and', 'cons', '||period||', 'on', 'the', 'one', 'hand', '||comma||', 'here', '||comma||', "you're", 'guaranteed', 'a', 'great', 'meal', '||period||', 'on', 'the', 'other', 'hand', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupting', 'bania', '||rightparen||', 'yeah', '||comma||', 'yeah', 'i', 'know', '||period||', 'this', 'would', 'be', 'good', '||comma||', 'but', 'it', 'would', 'be', 'the', 'same', '||period||', 'but', 'if', 'we', 'go', 'some', 'place', 'else', '||comma||', 'it', 'would', 'be', 'different', '||comma||', 'but', 'it', 'might', 'not', 'be', 'as', 'good', '||period||', "it's", 'a', 'gamble', '||period||', 'i', 'get', 'it', '||period||', '||return||', '||return||', 'bania:', 'yeah', '||period||', 'well', '||comma||', 'lets', 'hurry', 'up', 'and', 'eat', 'i', 'gotta', 'get', 'out', 'of', 'here', '||period||', 'im', 'meeting', 'a', 'woman', 'for', 'a', 'drink', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'and', 'who', 'might', 'that', 'be', '||questionmark||', '||return||', '||return||', 'bania:', 'some', 'woman', 'named', 'uma', '||period||', 'i', 'got', 'her', 'number', 'off', 'of', 'that', 'ticket', 'before', 'it', 'was', 'smudged', '||period||', 'hope', "she's", 'good', '||dash||', 'looking', '||period||', '||leftparen||', 'crosses', 'his', 'fingers', 'in', 'the', 'air', '||rightparen||', '||return||', '||return||', 'jerry:', 'if', 'you', 'are', 'a', 'waitress', 'and', 'you', 'ever', 'see', 'me', 'in', 'a', 'restaurant', '||comma||', 'im', 'telling', 'you', 'right', 'now', '||comma||', 'i', "don't", 'want', 'to', 'hear', 'about', 'the', 'specials', '||period||', 'i', "don't", 'want', 'to', 'know', 'about', 'the', 'specials', '||period||', 'im', 'sick', 'of', 'the', 'specials', '||period||', 'i', 'hate', 'the', 'specials', '||period||', 'my', 'feeling', 'is', '||comma||', 'if', 'the', 'specials', 'were', 'so', 'special', '||comma||', "they'd", 'be', 'on', 'the', 'menu', '||period||', 'you', 'know', "what's", 'special', 'about', 'them', '||questionmark||', 'they', "don't", 'know', 'if', 'anybody', 'likes', 'them', '||period||', 'they', 'always', 'have', 'these', 'overly', 'creative', 'descriptions', 'of', 'the', 'specials', 'too', '||comma||', 'you', 'know', '||period||', 'the', 'veil', 'is', 'lightly', 'slapped', '||comma||', 'and', 'then', 'sequestered', 'in', 'a', 'one', '||dash||', 'bedroom', 'suite', 'with', 'a', 'white', 'wine', 'intravenous', '||period||', '||return||', '||return||', 'jerry:', 'ready', 'to', 'go', 'lois', '||questionmark||', '||return||', '||return||', 'lois:', 'you', 'really', 'like', 'to', 'say', 'my', 'name', '||questionmark||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', 'lois', '||period||', 'stand', 'back', 'lois', '||period||', "jimmy's", 'in', 'trouble', 'lois', '||period||', '||return||', '||return||', 'lois:', 'oh', '||comma||', 'mr', '||period||', 'meyers', 'this', 'is', 'my', 'friend', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'duncan:', 'jerry', 'seinfeld', '||exclammark||', '||return||', '||return||', 'jerry:', 'duncan', 'meyers', '||exclammark||', '||return||', '||return||', 'lois:', 'you', 'two', 'know', 'each', 'other', '||questionmark||', '||return||', '||return||', 'duncan:', 'yeah', '||exclammark||', 'we', 'uh', '||comma||', 'went', 'to', 'high', 'school', 'together', '||period||', "didn't", 'we', 'jerry', '||questionmark||', 'gee', 'i', 'hope', "you're", 'not', 'leaving', 'now', '||period||', 'we', 'still', 'have', 'a', 'lot', 'of', 'work', 'left', 'to', 'do', '||period||', '||return||', '||return||', 'lois:', 'would', 'you', 'be', 'able', 'to', 'come', 'all', 'the', 'way', 'downtown', 'again', 'in', 'rush', 'hour', 'to', 'pick', 'me', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'd", 'have', 'to', 'be', 'superman', 'to', 'do', 'that', 'lois', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', 'this', 'is', 'all', 'wrong', '||period||', "where's", 'the', 'chicken', 'cashew', '||questionmark||', '||return||', '||return||', 'lew:', 'you', 'no', 'order', 'chicken', 'cashew', '||period||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'order', 'any', 'of', 'this', '||period||', "i'm", 'not', 'paying', 'for', 'this', '||period||', '||return||', '||return||', 'lew:', 'fine', 'benes', '||period||', 'we', 'are', 'putting', 'you', 'on', 'our', 'list', '||period||', '||return||', '||return||', 'elaine:', 'what', 'list', '||questionmark||', '||return||', '||return||', 'lew:', 'the', '||quotemark||', 'do', 'not', 'deliver', '||quotemark||', 'list', '||period||', '||return||', '||return||', 'elaine:', 'merry', 'christmas', 'to', 'you', '||exclammark||', 'well', '||comma||', 'i', 'guess', "we'll", 'just', 'go', 'out', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'what', 'are', 'you', 'doing', 'with', 'the', 'daily', 'worker', '||questionmark||', '||return||', '||return||', 'elaine:', 'ned', 'must', 'have', 'left', 'it', 'here', '||period||', '||return||', '||return||', 'george:', 'your', 'boyfriend', 'reads', 'the', 'daily', 'worker', '||questionmark||', 'what', 'is', 'he', '||questionmark||', 'a', 'communist', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'reads', 'everything', '||comma||', 'you', 'know', '||comma||', "ned's", 'very', 'well', 'read', '||period||', '||return||', '||return||', 'george:', 'maybe', "he's", 'just', '||quotemark||', 'very', 'well', 'red', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'communist', '||questionmark||', "don't", 'you', 'think', 'he', 'probably', 'would', 'have', 'told', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'does', 'he', 'wear', 'bland', '||comma||', 'drab', '||comma||', 'olive', 'colored', 'clothing', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', '||period||', '||period||', '||period||', 'yes', 'he', 'does', 'dress', 'a', 'little', 'drab', '||period||', '||return||', '||return||', 'george:', 'huh', '||comma||', "he's", 'a', 'communist', '||period||', '||period||', '||period||', '||period||', 'look', 'at', 'this', '||period||', '||quotemark||', 'exciting', 'uninhibited', 'woman', 'seeks', 'forward', 'thinking', 'comrade', 'and', 'appearance', 'not', 'important', '||period||', '||quotemark||', '||period||', '||period||', '||period||', 'appearance', 'not', 'important', '||exclammark||', 'this', 'is', 'unbelievable', '||period||', 'finally', 'this', 'is', 'an', 'ideology', 'i', 'can', 'embrace', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'oh', '||period||', '||return||', '||return||', 'elaine', '&', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', "where's", 'lois', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', "couldn't", 'make', 'it', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', "you're", 'really', 'going', 'out', 'with', 'a', 'woman', 'named', 'lois', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'finally', '||period||', 'but', 'george', '||comma||', 'guess', 'who', 'her', 'boss', 'is', '||period||', 'duncan', 'meyers', '||period||', '||return||', '||return||', 'george:', 'duncan', 'meyers', '||questionmark||', '||return||', '||return||', 'elaine:', "who's", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'only', 'one', 'other', 'person', 'in', 'the', 'world', 'knows', 'what', 'i', 'am', 'about', 'to', 'tell', 'you', 'and', "that's", 'george', '||period||', 'when', 'we', 'were', 'in', 'the', 'ninth', 'grade', 'they', 'had', 'us', 'all', 'line', 'up', 'at', 'one', 'end', 'of', 'the', 'school', 'yard', 'for', 'this', 'big', 'race', 'to', 'see', 'who', 'was', 'going', 'to', 'represent', 'the', 'school', 'in', 'this', 'track', 'meet', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'uh', '||return||', '||return||', 'jerry:', 'i', 'was', 'the', 'last', 'one', 'on', 'the', 'end', '||period||', 'george', 'was', 'next', 'to', 'me', '||period||', 'and', 'mr', '||period||', 'bevilacqua', '||comma||', 'the', 'gym', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'mr', '||period||', 'bevilacqua', '||comma||', 'the', 'gym', 'teacher', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'down', 'at', 'the', 'other', 'end', '||period||', 'so', 'he', 'yells', 'out', '||comma||', '||quotemark||', 'ready', '||comma||', 'on', 'your', 'mark', '||comma||', 'get', 'set', '||comma||', '||quotemark||', 'and', 'i', 'was', 'so', 'keyed', 'up', 'i', 'just', 'took', 'off', '||period||', 'by', 'the', 'time', 'he', 'said', 'go', 'i', 'was', 'ten', 'yards', 'ahead', 'of', 'everybody', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'george:', 'i', 'looked', 'up', '||period||', 'i', "couldn't", 'believe', 'it', '||period||', '||return||', '||return||', 'jerry:', 'by', 'the', 'time', 'the', 'race', 'was', 'over', 'i', 'had', 'won', '||period||', 'i', 'was', 'shocked', 'nobody', 'had', 'noticed', 'the', 'head', 'start', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'i', 'had', 'won', 'by', 'so', 'much', 'a', 'myth', 'began', 'to', 'grow', 'about', 'my', 'speed', '||period||', 'only', 'duncan', 'suspected', 'something', 'was', 'a', 'miss', '||period||', "he's", 'hated', 'me', 'ever', 'since', '||period||', 'now', "he's", 'back', '||period||', '||return||', '||return||', 'elaine:', 'well', 'what', 'happened', 'when', 'you', 'raced', 'him', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'never', 'did', '||period||', 'in', 'four', 'years', 'of', 'high', 'school', 'i', 'would', 'never', 'race', 'anyone', 'again', '||period||', 'not', 'even', 'to', 'the', 'end', 'of', 'the', 'block', 'to', 'catch', 'a', 'bus', '||period||', 'and', 'so', 'the', 'legend', 'grew', '||period||', 'everyone', 'wanted', 'me', 'to', 'race', '||period||', 'they', 'begged', 'me', '||period||', 'the', 'track', 'coach', 'called', 'my', 'parents', '||period||', 'pleading', '||period||', 'telling', 'them', 'it', 'was', 'a', 'sin', 'to', 'waste', 'my', 'god', 'given', 'talent', '||period||', 'but', 'i', 'answered', 'him', 'in', 'the', 'same', 'way', 'i', 'answered', 'everyone', '||period||', 'i', 'chose', 'not', 'to', 'run', '||period||', '||return||', '||return||', 'elaine:', 'so', 'now', 'duncan', 'is', 'back', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'back', '||period||', 'and', 'i', 'knew', 'he', 'would', 'be', 'someday', '||period||', '||leftparen||', 'drinks', '||rightparen||', 'man', "that's", 'some', 'tart', 'cider', '||exclammark||', '||return||', '||return||', 'lois:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'lois:', 'sorry', 'i', 'missed', 'the', 'chinese', 'food', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', 'am', 'i', '||period||', 'uh', '||comma||', "how's", 'duncan', '||questionmark||', '||return||', '||return||', 'lois:', "he's", 'okay', '||period||', '||return||', '||return||', 'jerry:', 'he', 'say', 'anything', '||questionmark||', '||return||', '||return||', 'lois:', 'about', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'nothing', 'in', 'particular', '||period||', '||return||', '||return||', 'lois:', '||period||', '||period||', '||period||', 'why', 'did', 'you', 'cheat', 'in', 'that', 'race', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'did', 'not', 'cheat', '||period||', '||return||', '||return||', 'lois:', 'he', 'said', 'that', 'you', 'got', 'a', 'head', 'start', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "he's", 'just', 'jealous', 'because', 'he', 'came', 'in', 'second', '||period||', '||return||', '||return||', 'lois:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||return||', '||return||', 'lois:', 'so', 'you', 'were', 'the', 'fastest', 'kid', 'in', 'school', '||period||', '||return||', '||return||', 'jerry:', 'faster', 'than', 'a', 'speeding', 'bullet', 'lois', '||period||', '||return||', '||return||', 'elaine:', 'so', 'how', 'was', 'work', '||questionmark||', 'another', 'day', '||comma||', 'another', 'dollar', '||questionmark||', '||return||', '||return||', 'ned:', 'i', 'guess', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'well', 'nothing', 'wrong', 'with', 'that', '||period||', 'gotta', 'make', 'those', 'big', 'bucks', '||period||', '||period||', '||period||', '||period||', 'money', 'money', 'money', 'money', 'money', 'money', 'money', '||period||', '||period||', '||period||', 'ha', 'ha', 'ha', 'ha', 'ah', '||period||', '||period||', '||period||', 'are', 'you', 'a', 'communist', '||questionmark||', '||return||', '||return||', 'ned:', 'yes', '||comma||', 'as', 'a', 'matter', 'of', 'fact', 'i', 'am', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'ah', '||exclammark||', 'oh', '||exclammark||', 'wow', '||exclammark||', 'whoa', '||exclammark||', 'a', 'commie', '||exclammark||', 'wow', '||comma||', 'gee', '||comma||', 'man', 'it', 'must', 'be', 'a', 'bummer', 'for', 'you', 'guys', 'what', 'with', 'the', 'fall', 'of', 'the', 'soviet', 'empire', 'and', 'everything', '||period||', '||return||', '||return||', 'ned:', 'yeah', '||comma||', 'well', '||comma||', 'we', 'still', 'got', 'china', '||comma||', 'and', 'cuba', '||comma||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'come', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'ned:', 'i', 'know', "it's", 'not', 'the', 'same', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'had', 'a', 'good', 'run', '||comma||', 'what', 'was', 'it', '75', '||comma||', '80', 'years', '||questionmark||', 'wreaking', 'havoc', '||comma||', 'making', 'everybody', 'nervous', '||period||', '||return||', '||return||', 'ned:', 'yeah', '||comma||', 'we', 'had', 'a', 'good', 'run', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'so', 'enjoy', 'yourself', '||period||', '||leftparen||', 'clink', 'glasses', '||rightparen||', 'ha', 'ha', 'uh', 'ha', '||return||', '||return||', 'george:', 'so', 'you', 'lied', 'to', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'couldnt', 'tell', 'her', 'the', 'truth', '||period||', 'i', "don't", 'know', "what's", 'going', 'to', 'happen', 'between', 'us', '||period||', 'what', 'if', 'we', 'have', 'a', 'bad', 'breakup', '||period||', "she'll", 'go', 'straight', 'to', 'duncan', '||period||', 'and', 'i', 'want', 'him', 'to', 'go', 'to', 'his', 'grave', 'never', 'being', 'certain', 'i', 'got', 'that', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'dating', 'a', 'communist', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'a', 'communist', '||period||', "that's", 'something', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'pretty', 'cool', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'did', 'i', 'tell', 'you', 'i', 'called', 'one', 'of', 'those', 'girls', 'from', 'the', 'personal', 'ads', 'in', 'the', 'daily', 'worker', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'daily', 'worker', 'has', 'personal', 'ads', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'they', 'say', 'appearance', 'is', 'not', 'important', '||period||', '||return||', '||return||', 'jerry:', 'yours', 'or', 'hers', '||questionmark||', '||return||', '||return||', 'kramer:', 'ho', 'ho', 'ho', 'ho', 'ho', 'merry', 'christmas', 'everyone', '||period||', 'merry', 'christmas', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'look', 'at', 'you', '||period||', 'so', 'you', 'got', 'the', 'job', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "you're", 'looking', 'at', 'the', 'new', 'santa', 'at', "coleman's", 'department', 'store', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'congratulations', '||return||', '||return||', 'mickey:', 'come', 'on', 'get', 'your', 'bead', 'on', '||period||', "we're", 'going', 'to', 'be', 'late', '||period||', '||return||', '||return||', 'kramer:', 'on', 'prancer', 'on', 'dasher', '||comma||', 'on', 'donna', '||period||', '||return||', '||return||', 'mickey:', 'not', 'donna', '||comma||', "it's", 'donner', '||period||', '||return||', '||return||', 'kramer:', 'donna', '||exclammark||', '||return||', '||return||', 'mickey:', 'yeah', '||comma||', 'right', '||exclammark||', '||period||', 'on', 'prancer', '||comma||', 'on', 'dancer', '||comma||', 'on', 'donna', '||comma||', 'on', 'ethyl', '||comma||', 'on', 'harriet', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'oh', 'hi', 'lois', '||comma||', 'you', 'want', 'to', 'get', 'together', '||comma||', 'what', 'for', '||questionmark||', 'i', "don't", 'know', 'about', 'that', '||comma||', "i'll", 'have', 'to', 'think', 'about', 'it', '||period||', "i'll", 'let', 'you', 'know', '||period||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'george:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'duncan', 'wants', 'to', 'get', 'together', 'with', 'her', 'and', 'me', 'for', 'lunch', 'tomorrow', '||period||', 'he', 'obviously', 'wants', 'me', 'to', 'admit', 'i', 'got', 'a', 'head', 'start', '||period||', 'and', 'i', "don't", 'think', 'she', 'believes', 'me', '||period||', '||return||', '||return||', 'george:', 'he', 'wants', 'to', 'meet', 'you', '||questionmark||', "i'll", 'tell', 'you', 'what', '||period||', "i'll", 'show', 'up', '||period||', 'he', "doesn't", 'know', "we're", 'friends', '||period||', "i'll", 'pretend', 'i', "haven't", 'seen', 'you', 'since', 'high', 'school', '||period||', "i'll", 'back', 'up', 'the', 'story', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'bad', '||period||', '||return||', '||return||', 'george:', 'not', 'bad', '||questionmark||', "it's", 'gorgeous', '||exclammark||', '||return||', '||return||', 'kramer:', 'ho', 'ho', 'ho', 'well', 'come', 'on', 'little', 'princess', '||comma||', 'tell', 'santa', 'what', 'you', 'want', '||period||', "don't", 'be', 'shy', '||period||', '||return||', '||return||', 'mom:', 'she', "doesn't", 'speak', 'english', '||leftparen||', 'with', 'a', 'swedish', 'accent', '||rightparen||', '||period||', '||return||', '||return||', 'kramer:', 'santa', 'speaks', 'the', 'language', 'of', 'all', 'children', '||period||', 'a', 'notchie', 'watchie', 'dotchie', 'do', '||period||', '||return||', '||return||', 'kramer:', 'a', 'dotchie', 'cotchie', 'dochie', '||comma||', '||return||', '||return||', 'kramer:', 'het', '||comma||', 'mickey', 'when', 'do', 'we', 'get', 'a', 'break', '||questionmark||', 'my', 'lap', 'is', 'killing', 'me', '||period||', '||return||', '||return||', 'mickey:', 'there', 'is', 'no', 'break', '||period||', '||return||', '||return||', 'kramer:', 'a', 'sweat', 'shop', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', '||return||', '||return||', 'ada:', 'natalie', 'on', 'line', '2', '||period||', '||return||', '||return||', 'george:', 'natalie', '||questionmark||', '||return||', '||return||', 'ada:', 'from', 'the', 'daily', 'worker', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'hello', '||comma||', "it's", 'natalie', '||questionmark||', 'yeah', '||comma||', 'this', 'is', 'a', 'business', 'office', 'but', "i'm", 'not', 'a', 'business', 'man', 'per', 'se', '||period||', "i'm", 'here', 'working', 'for', 'the', 'people', '||period||', 'yes', '||comma||', "i'm", 'causing', 'dissent', '||period||', 'stirring', 'the', 'pot', '||period||', 'getting', 'people', 'to', 'question', 'the', 'whole', 'rotten', 'system', '||period||', '||return||', '||return||', 'ilene:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'ilene', '||period||', '||return||', '||return||', 'ilene:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'ilene:', 'doing', 'a', 'little', 'christmas', 'shopping', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', 'oh', '||comma||', 'this', 'is', 'ned', '||period||', "he's", 'a', 'communist', '||period||', '||return||', '||return||', 'ilene:', 'oh', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yep', '||period||', '||period||', '||period||', 'a', 'big', 'communist', '||comma||', 'a', 'big', 'big', 'communist', '||period||', '||return||', '||return||', 'ilene:', 'oh', '||comma||', 'well', '||comma||', "it's", 'awfully', 'nice', 'to', 'see', 'you', '||period||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'bye', 'bye', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'listen', 'while', "we're", 'here', 'why', "don't", 'we', 'do', 'a', 'little', 'shirt', 'shopping', '||questionmark||', '||return||', '||return||', 'ned:', 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'elaine:', 'um', '||period||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hi', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'oh', 'hi', 'mickey', '||comma||', 'this', 'is', 'ned', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'hi', 'buddy', '||period||', '||return||', '||return||', 'elaine:', 'you', 'guys', 'stay', 'here', '||comma||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'kramer:', 'eight', 'hours', 'of', 'jingle', 'belling', 'and', 'ho', 'ho', 'hoing', '||period||', 'boy', '||comma||', 'i', 'am', "ho'd", 'out', '||period||', '||return||', '||return||', 'ned:', 'anyone', 'who', 'works', 'here', 'is', 'a', 'sap', '||period||', '||return||', '||return||', 'mickey:', 'watch', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', 'woah', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'ned:', 'you', 'understand', 'the', "santa's", 'at', 'bloomfields', 'are', 'making', 'double', 'what', 'you', 'are', '||questionmark||', '||return||', '||return||', 'kramer:', 'double', '||questionmark||', '||return||', '||return||', 'ned:', 'i', 'bet', 'the', 'beard', 'itches', "doesn't", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'got', 'that', 'straight', '||period||', '||return||', '||return||', 'ned:', 'so', 'when', 'you', 'get', 'a', 'rash', 'all', 'over', 'your', 'face', 'in', 'january', 'do', 'you', 'think', "coleman's", 'will', 'be', 'there', 'with', 'a', 'medical', 'plan', '||questionmark||', '||return||', '||return||', 'mickey:', 'look', '||comma||', 'you', 'take', 'that', 'commie', 'crap', 'out', 'into', 'the', 'street', '||period||', '||return||', '||return||', 'ned:', 'kramer', '||comma||', "i've", 'got', 'some', 'literature', 'in', 'my', 'car', 'that', 'will', 'change', 'your', 'whole', 'way', 'of', 'thinking', '||period||', '||return||', '||return||', 'kramer:', 'talk', 'to', 'me', 'baby', '||period||', '||return||', '||return||', 'mickey:', "don't", 'listen', 'to', 'him', 'kramer', '||comma||', "you've", 'got', 'a', 'good', 'job', 'here', '||period||', '||return||', '||return||', 'duncan:', 'but', "there's", 'no', 'way', 'you', 'could', 'have', 'beaten', 'me', 'by', 'that', 'much', '||period||', 'i', 'already', 'beaten', 'you', 'in', 'junior', 'high', 'school', 'three', 'times', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'hit', 'puberty', 'til', 'the', '9th', 'grade', '||period||', "that's", 'what', 'gave', 'me', 'my', 'speed', '||period||', 'besides', '||comma||', 'if', 'i', 'got', 'a', 'head', 'start', 'why', "didn't", 'mr', '||period||', 'bevilacqua', 'stop', 'the', 'race', '||questionmark||', '||return||', '||return||', 'duncan:', "that's", 'what', "i've", 'always', 'wondered', 'about', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', '||period||', '||period||', '||period||', '[sees', 'george]', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||comma||', 'no', '||comma||', 'oh', 'my', 'god', '||comma||', '||period||', '||period||', '||period||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||comma||', 'uh', '||comma||', '||return||', '||return||', 'george:', 'george', '||comma||', 'george', 'costanza', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'george', 'costanza', '||comma||', 'kennedy', 'high', '||period||', '||return||', '||return||', 'george:', 'yes', 'yes', 'yes', 'this', 'is', 'unbelievable', '||period||', '||return||', '||return||', 'duncan:', 'hi', '||comma||', 'george', '||return||', '||return||', 'george:', 'oh', '||comma||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||comma||', "don't", 'tell', 'me', '||comma||', "don't", 'tell', 'me', '||period||', 'it', 'starts', 'with', 'a', '||period||', '||period||', '||period||', 'duncan', 'meyers', '||period||', 'oh', '||comma||', 'wow', '||comma||', 'this', 'is', 'something', '||period||', 'i', "haven't", 'seen', 'you', 'guys', 'in', 'what', '||comma||', 'twenty', 'years', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'lois', '||period||', '||return||', '||return||', 'lois:', 'hello', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'have', 'you', 'been', 'doing', 'with', 'yourself', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", "i'm", 'a', 'comedian', '||period||', '||return||', '||return||', 'george:', 'ah', 'ha', '||comma||', 'well', '||comma||', 'i', 'really', "wouldn't", 'know', 'about', 'that', '||period||', 'i', "don't", 'watch', 'much', 'tv', '||period||', 'i', 'like', 'to', 'read', '||period||', 'so', 'what', 'do', 'you', 'do', '||comma||', 'a', 'lot', 'of', 'that', '||quotemark||', 'did', 'you', 'ever', 'notice', '||questionmark||', '||quotemark||', 'this', 'kind', 'of', 'stuff', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||return||', '||return||', 'george:', 'it', 'strikes', 'me', 'a', 'lot', 'of', 'guys', 'are', 'doing', 'that', 'kind', 'of', 'humor', 'now', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'well', '||comma||', 'you', 'really', 'got', 'bald', 'there', '||comma||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'really', 'used', 'to', 'have', 'a', 'think', 'full', 'head', 'of', 'hair', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'well', '||comma||', 'i', 'guess', 'i', 'started', 'losing', 'it', 'when', 'i', 'was', 'about', 'twenty', '||dash||', 'eight', 'right', 'around', 'the', 'time', 'i', 'made', 'my', 'first', 'million', '||period||', 'you', 'know', 'what', 'they', 'say', '||period||', 'the', 'first', 'million', 'is', 'the', 'hardest', 'one', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'lois:', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'an', 'architect', '||period||', '||return||', '||return||', 'lois:', 'have', 'you', 'designed', 'any', 'buildings', 'in', 'new', 'york', '||questionmark||', '||return||', '||return||', 'george:', 'have', 'you', 'seen', 'the', 'new', 'addition', 'to', 'the', 'guggenheim', '||questionmark||', '||return||', '||return||', 'lois:', 'you', 'did', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yep', '||period||', 'and', 'it', "didn't", 'take', 'very', 'long', 'either', '||period||', '||return||', '||return||', 'jerry:', 'well', "you've", 'really', 'built', 'yourself', 'up', 'into', 'something', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'well', '||comma||', 'i', 'had', 'a', 'dream', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'one', 'cannot', 'help[', 'but', 'wonder', 'what', 'brings', 'you', 'into', 'a', 'crummy', 'little', 'coffee', 'shop', 'like', 'this', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'like', 'to', 'stay', 'in', 'touch', 'with', 'the', 'people', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'you', 'know', 'you', 'have', 'a', 'hole', 'in', 'your', 'sneaker', 'there', '||period||', 'what', 'is', 'that', 'canvas', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'my', "driver's", 'waiting', '||comma||', 'i', 'really', 'should', 'get', 'running', '||period||', 'good', 'to', 'see', 'you', 'guys', 'again', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'george', '||comma||', 'hang', 'on', '||period||', 'i', "haven't", 'seen', 'you', 'in', 'so', 'long', '||period||', '||return||', '||return||', 'george:', 'ha', '||comma||', 'uh', '||comma||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'we', 'might', 'reminisce', 'a', 'little', 'more', '||period||', 'you', 'know', 'duncan', 'and', 'i', 'were', 'just', 'taking', 'about', 'the', 'big', 'race', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'big', 'race', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||comma||', '||period||', '||return||', '||return||', 'lois:', 'you', 'were', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'sure', '||comma||', 'surely', 'was', '||period||', 'yeah', '||comma||', "i'll", 'remember', 'that', 'day', '||period||', 'well', "i'll", 'never', 'forget', 'it', 'because', 'that', 'was', 'the', 'day', 'that', 'i', 'uh', '||comma||', 'lost', 'my', 'virginity', 'to', 'miss', '||period||', 'stafford', '||comma||', 'the', 'uh', '||comma||', 'voluptuous', 'home', 'room', 'teacher', '||period||', '||return||', '||return||', 'duncan:', 'miss', 'stafford', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||comma||', 'you', 'know', 'i', 'was', 'in', 'detention', 'and', 'she', 'came', 'up', 'behind', 'me', 'while', 'i', 'was', 'erasing', 'the', 'blackboard', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'but', 'i', 'digress', '||period||', 'let', 'me', 'see', '||comma||', 'now', '||period||', 'you', 'were', 'standing', 'at', 'one', 'end', 'of', 'the', 'line', 'and', 'i', 'was', 'right', 'next', 'to', 'you', '||period||', 'and', 'i', 'remember', 'we', 'were', 'even', 'for', 'like', '||comma||', 'the', 'first', 'five', 'yards', 'and', 'then', '||comma||', 'boom', '||comma||', '||period||', '||period||', '||period||', 'you', 'were', 'gone', '||period||', '||return||', '||return||', 'jerry:', 'did', 'i', 'get', 'a', 'head', 'start', '||questionmark||', '||return||', '||return||', 'george:', 'head', 'start', '||comma||', 'oh', 'no', 'absolutely', 'not', '||period||', '||return||', '||return||', 'jerry:', 'you', 'satisfied', '||questionmark||', 'so', 'you', 'see', '||questionmark||', '||return||', '||return||', 'duncan:', 'no', '||comma||', "i'm", 'still', 'not', 'convinced', 'and', 'i', 'never', 'will', 'be', '||period||', '||return||', '||return||', 'lois:', 'why', "don't", 'the', 'two', 'of', 'you', 'just', 'race', 'again', '||questionmark||', '||return||', '||return||', 'duncan:', "that's", 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'another', 'race', '||dash||', 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'duncan:', 'i', 'know', '||comma||', "you've", 'been', 'saying', 'that', 'for', 'twenty', 'years', 'because', 'you', 'know', 'you', "can't", 'beat', 'me', '||period||', 'you', "couldn't", 'beat', 'me', 'then', 'and', 'you', "can't", 'beat', 'me', 'now', '||period||', '||return||', '||return||', 'lois:', 'race', 'him', 'jerry', '||period||', 'race', 'him', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||exclammark||', "i'll", 'do', 'it', '||period||', 'the', 'race', 'is', 'on', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'shut', 'up', '||exclammark||', '||leftparen||', '||questionmark||', '||rightparen||', '||return||', '||return||', 'jerry:', 'and', "he's", 'calling', 'all', 'these', 'people', 'from', 'high', 'school', 'to', 'come', 'and', 'watch', '||period||', 'i', 'knew', 'this', 'day', 'would', 'come', '||period||', 'i', "can't", 'do', 'it', '||period||', 'i', "can't", 'go', 'through', 'with', 'it', '||period||', "i'm", 'calling', 'it', 'off', '||period||', 'i', "can't", 'let', 'the', 'legend', 'die', '||period||', "it's", 'like', 'a', 'kid', 'finding', 'out', "there's", 'no', 'santa', 'claus', '||return||', '||return||', 'kramer:', 'each', 'according', 'to', 'his', 'ability', '||comma||', 'to', 'each', 'according', 'to', 'his', 'needs', '||period||', '||return||', '||return||', 'mickey:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'if', "you've", 'got', 'needs', 'and', 'abilities', "that's", 'a', 'pretty', 'good', 'combination', '||period||', '||return||', '||return||', 'mickey:', 'so', 'what', 'if', 'i', 'want', 'to', 'open', 'up', 'a', 'delicatessen', '||questionmark||', '||return||', '||return||', 'kramer:', 'there', 'are', 'no', 'delicatessens', 'under', 'communism', '||period||', '||return||', '||return||', 'mickey:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'because', 'the', 'meats', 'are', 'divided', 'into', 'a', 'class', 'system', '||period||', 'you', 'got', 'pastrami', 'and', 'corned', 'beef', 'in', 'one', 'class', 'and', 'salami', 'and', 'bologna', 'in', 'another', '||period||', "that's", 'not', 'right', '||period||', '||return||', '||return||', 'mickey:', 'so', 'you', "can't", 'get', 'corned', 'beef', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'if', "you're", 'in', 'the', 'politburo', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'phone', '||rightparen||', '||period||', "it's", 'george', 'costanza', '||period||', '||period||', 'are', 'there', 'any', 'messages', 'for', 'me', '||questionmark||', 'why', 'does', 'mr', '||period||', 'steinbrenner', 'want', 'to', 'see', 'me', 'in', 'his', 'office', '||questionmark||', '||period||', '||period||', '||period||', 'communist', '||questionmark||', "i'm", 'not', 'a', 'communist', '||period||', '||period||', '||period||', '||period||', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'all', 'right', '||comma||', "i'll", 'be', 'there', '||period||', '||dash||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'my', 'secretary', 'ada', '||comma||', 'told', 'mr', 'steinbrenner', "i'm", 'a', 'communist', 'now', 'he', 'wants', 'to', 'see', 'me', 'in', 'his', 'office', '||period||', '||return||', '||return||', 'jerry:', 'so', "you'll", 'just', 'explain', 'to', 'him', "you're", 'not', 'a', 'communist', '||period||', 'you', 'just', 'called', 'the', 'woman', 'for', 'a', 'date', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'oh', 'hi', 'duncan', '||comma||', '400', "o'clock", 'tomorrow', '||questionmark||', 'that', 'is', 'not', 'going', 'to', 'work', '||period||', '||period||', '||period||', '||period||', 'why', '||questionmark||', "i'll", 'tell', 'you', 'why', '||period||', 'because', 'i', 'chose', 'not', 'to', 'run', '||exclammark||', '||return||', '||return||', 'ned:', "i'm", 'sorry', 'elaine', '||period||', 'the', "shirt's", 'too', 'fancy', '||period||', '||return||', '||return||', 'elaine:', 'just', 'because', "you're", 'a', 'communist', '||comma||', 'does', 'that', 'mean', 'you', "can't", 'wear', 'anything', 'nice', '||questionmark||', 'you', 'look', 'like', 'trotsky', '||period||', "it's", 'gorgeous', '||period||', 'fine', '||comma||', 'you', 'want', 'to', 'be', 'a', 'communist', '||comma||', 'be', 'a', 'communist', '||period||', "can't", 'you', 'at', 'least', 'look', 'like', 'a', 'successful', 'communist', '||questionmark||', '||return||', '||return||', 'ned:', 'all', 'right', '||comma||', "i'll", 'try', 'it', 'on', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'to', 'order', 'chinese', 'food', '||period||', '||return||', '||return||', 'ned:', "you're", 'ordering', 'from', 'hop', "sing's", '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'ugh', '||comma||', 'does', 'it', 'have', 'to', 'be', 'hop', "sing's", '||period||', 'i', 'kind', 'of', 'had', 'a', 'fight', 'with', 'him', '||period||', '||return||', '||return||', 'ned:', 'elaine', '||comma||', 'when', 'my', 'father', 'was', 'black', 'listed', 'he', "couldn't", 'work', 'for', 'years', '||period||', 'he', 'and', 'his', 'friends', 'used', 'to', 'sit', 'at', 'hop', "sing's", 'every', 'day', 'figuring', 'out', 'how', 'to', 'survive', '||period||', '||return||', '||return||', 'elaine:', "you're", 'father', 'was', 'blacklisted', '||questionmark||', '||return||', '||return||', 'ned:', 'yes', 'he', 'was', '||comma||', 'and', 'you', 'know', 'why', '||questionmark||', 'because', 'he', 'was', 'betrayed', 'by', 'people', 'he', 'trusted', '||period||', 'they', '||quotemark||', 'named', 'names', '||quotemark||', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'okay', '||period||', '||leftparen||', 'phones', '||rightparen||', 'um', '||comma||', 'yeah', '||comma||', 'hi', '||comma||', "i'd", 'like', 'delivery', 'please', 'to', '16', 'west', '75th', 'st', '||period||', 'apartment', '2g', '||period||', '||return||', '||return||', 'lew:', 'i', 'know', 'that', 'address', '||period||', "you're", 'benes', '||comma||', 'right', '||period||', "you're", 'on', 'our', 'list', '||period||', 'no', 'more', 'delivery', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', '||comma||', 'she', "doesn't", 'live', 'here', 'anymore', '||period||', 'this', 'is', 'someone', 'else', '||period||', '||return||', '||return||', 'lew:', 'oh', '||comma||', 'yeah', '||period||', "what's", 'the', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'do', 'you', 'need', 'the', 'name', '||questionmark||', 'you', 'already', 'have', 'the', 'address', '||period||', '||return||', '||return||', 'lew:', 'we', 'need', 'a', 'name', '||period||', 'give', 'us', 'a', 'name', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'okay', '||comma||', 'ned', 'isakoff', '||period||', '||return||', '||return||', 'kid:', 'i', 'want', 'a', 'racing', 'car', 'set', '||period||', '||return||', '||return||', 'kramer:', 'ho', 'ho', 'ho', 'ho', 'a', 'racing', 'car', 'set', '||exclammark||', 'those', 'are', 'assembled', 'in', 'tai', 'wan', 'by', 'kids', 'like', 'you', '||period||', 'and', 'these', 'coleman', 'pigs', '||comma||', 'they', 'sell', 'it', 'at', 'triple', 'the', 'cost', '||period||', '||return||', '||return||', 'kid:', 'but', 'i', 'want', 'a', 'racing', 'car', 'set', '||period||', '||return||', '||return||', 'kramer:', 'you', 'see', 'kid', '||comma||', "you're", 'being', 'bamboozaled', '||period||', 'these', 'capatalist', 'fat', 'cats', 'are', 'inflating', 'the', 'profit', 'margin', 'and', 'reducing', 'your', 'total', 'number', 'of', 'toys', '||period||', '||return||', '||return||', 'kid:', 'hey', '||comma||', 'this', "guy's", 'a', 'commie', '||exclammark||', '||return||', '||return||', 'mickey:', 'hey', '||comma||', 'kid', '||comma||', 'quiet', '||period||', 'were', 'did', 'a', 'nice', 'little', 'boy', 'like', 'you', 'learn', 'such', 'a', 'bad', 'word', 'like', 'that', '||questionmark||', 'huh', '||questionmark||', '||return||', '||return||', 'kid:', 'commie', '||comma||', 'commie', '||comma||', 'commie', '||period||', '||period||', '||period||', '||leftparen||', 'unknown', '||rightparen||', '||period||', '||return||', '||return||', 'mickey:', 'santa', 'is', 'not', 'a', 'commie', '||period||', 'he', 'just', 'forgot', 'how', 'his', 'good', 'friend', 'stuck', 'his', 'neck', 'out', 'for', 'him', 'to', 'get', 'him', 'a', 'good', 'job', 'like', 'this', '||period||', "didn't", 'he', 'santa', '||exclammark||', '||return||', '||return||', 'store', 'manager:', 'is', 'there', 'a', 'problem', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'ho', 'ho', 'ho', 'ho', '||period||', '||return||', '||return||', 'kid:', 'this', "guy's", 'a', 'commie', '||period||', "he's", 'spreading', 'propoganda', '||period||', '||return||', '||return||', 'store', 'manager:', 'oh', 'yeah', '||questionmark||', 'well', "that's", 'enough', 'pinko', '||exclammark||', "you're", 'through', '||period||', 'the', 'both', 'of', "ya'", '||return||', '||return||', 'mickey:', 'i', 'got', 'two', 'kids', 'in', 'college', '||period||', '||return||', '||return||', 'kramer:', 'you', "can't", 'fire', 'me', '||comma||', "i'm", 'santa', 'claus', '||period||', '||return||', '||return||', 'store', 'manager:', 'not', 'anymore', '||period||', 'get', 'your', 'skinny', 'ass', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'lois:', '||period||', '||period||', '||period||', 'fine', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'lois:', 'i', 'just', 'spoke', 'to', 'duncan', '||period||', 'he', 'said', 'if', 'you', "don't", 'race', '||comma||', "he's", 'going', 'to', 'fire', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'he', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'lois:', 'yes', 'he', 'can', '||period||', 'he', 'controls', 'the', 'means', 'of', 'production', '||period||', 'what', 'are', 'you', 'going', 'to', 'do', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', "don't", 'worry', 'lois', '||period||', "i'll", 'think', 'of', 'something', '||period||', '||return||', '||return||', 'lew:', 'ah', '||comma||', 'i', 'knew', 'it', 'was', 'you', '||exclammark||', 'you', 'tried', 'to', 'trick', 'hop', 'sing', '||exclammark||', 'you', 'are', 'onour', 'list', '||semicolon||', 'elaine', 'benes', '||exclammark||', 'and', 'now', 'you', 'are', 'on', 'our', 'list', '||semicolon||', 'ned', 'isakoff', '||period||', '||return||', '||return||', 'ned:', 'you', 'got', 'me', 'blacklisted', 'from', 'hop', "sing's", '||questionmark||', '||return||', '||return||', 'lew:', 'she', 'named', 'name', '||exclammark||', '||return||', '||return||', 'george:', 'you', '||comma||', 'uh', '||comma||', 'wanted', 'to', 'see', 'me', '||comma||', 'mr', '||period||', 'steinbrenner', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'yes', 'george', '||comma||', 'i', 'did', '||period||', 'come', 'in', '||comma||', 'come', 'in', '||period||', 'george', '||comma||', 'the', 'wordaround', 'the', 'office', 'is', 'that', "you're", 'a', 'communist', '||period||', '||return||', '||return||', 'george:', 'c', '||dash||', 'communist', '||questionmark||', 'i', 'am', 'a', 'yankee', '||comma||', 'sir', '||comma||', 'first', 'and', 'foremost', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', 'know', 'george', '||comma||', 'it', 'struck', 'me', 'today', 'me', 'that', 'a', 'communistpipeline', 'into', 'the', 'vast', 'reservoir', 'of', 'cuban', 'baseball', 'talent', 'could', 'be', 'thegreatest', 'thing', 'ever', 'to', 'happen', 'to', 'this', 'organization', '||period||', '||return||', '||return||', 'george:', 'sir', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'you', 'could', 'be', 'invaluable', 'to', 'this', 'franchise', '||period||', 'george', '||comma||', "there's", 'a', 'southpaw', 'down', 'there', "nobody's", 'been', 'able', 'to', 'get', 'a', 'look', 'at', '||semicolon||', 'something', 'rodriguez', '||comma||', 'i', "don't", 'really', 'know', 'his', 'name', '||period||', 'you', 'get', 'yourselfdown', 'to', 'havana', 'right', 'away', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'sir', '||period||', 'yes', 'sir', '||comma||', 'do', 'my', 'best', '||period||', '||return||', '||return||', 'steinbrenner:', 'good', '||comma||', 'merry', 'christmas', 'george', '||period||', 'and', 'bring', 'me', 'back', 'some', 'of', 'those', 'cigars', 'in', 'the', 'cedar', 'boxes', '||comma||', 'you', 'know', 'the', 'ones', 'with', 'the', 'fancy', 'rings', '||questionmark||', 'i', 'love', 'those', 'fancy', 'rings', '||period||', 'they', 'kind', 'of', 'distract', 'you', 'while', "you're", 'smoking', '||period||', 'the', 'red', 'and', 'yellow', 'are', 'nice', '||period||', 'it', 'looks', 'good', 'against', 'the', 'brown', 'of', 'the', 'cigar', '||period||', 'the', 'maduro', '||comma||', 'i', 'like', 'the', 'maduro', 'wrapper', '||period||', 'the', 'darker', 'the', 'better', '||comma||', "that's", 'what', 'i', 'say', '||period||', 'of', 'course', '||comma||', 'the', "claro's", 'good', 'too', '||period||', "that's", 'more', 'of', 'a', 'pale', 'brown', '||comma||', 'almost', 'like', 'a', 'milky', 'coffee', '||period||', '||leftparen||', 'george', 'exits', '||rightparen||', 'i', 'find', 'the', 'ring', 'size', 'very', 'confusing', '||period||', 'they', 'have', 'it', 'in', 'centimeters', 'which', 'i', "don't", 'really', 'understand', 'that', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'mickey:', 'that', 'was', 'quick', '||exclammark||', 'nice', 'job', '||comma||', 'santa', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', '||return||', '||return||', 'mickey:', 'i', 'knew', 'that', 'commie', 'stuff', 'was', 'going', 'to', 'get', 'us', 'in', 'trouble', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'i', "didn't", 'realize', 'that', 'was', 'such', 'a', 'sensitive', 'issue', '||period||', '||return||', '||return||', 'mickey:', 'communism', '||comma||', 'you', "didn't", 'realize', 'communism', 'was', 'a', 'sensitive', 'issue', '||questionmark||', 'what', 'do', 'you', 'think', 'has', 'been', 'going', 'on', 'in', 'the', 'world', 'for', 'the', 'past', '60', 'years', '||questionmark||', 'wake', 'up', 'and', 'smell', 'the', 'coffee', '||period||', '||return||', '||return||', 'kramer:', 'i', 'guess', 'i', 'screwed', 'up', '||exclammark||', '||return||', '||return||', 'mickey:', 'you', 'sure', 'did', '||period||', 'big', 'time', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'feel', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'need', 'a', 'miracle', '||period||', '||return||', '||return||', 'duncan:', 'now', "you're", 'going', 'to', 'see', 'what', 'kind', 'of', 'liar', "you're", 'mixed', 'up', 'with', '||period||', '||return||', '||return||', 'lois:', 'if', 'he', 'beats', 'you', 'i', 'want', 'a', 'big', 'raise', '||period||', '||return||', '||return||', 'duncan:', 'if', 'he', 'beats', 'me', '||comma||', "i'll", 'not', 'only', 'give', 'you', 'a', 'raise', '||comma||', "i'll", 'send', 'you', 'to', 'hawaii', 'for', 'two', 'weeks', '||period||', '||return||', '||return||', 'kramer:', 'i', 'parked', 'in', 'front', 'of', 'that', 'restaurant', '||period||', 'as', 'soon', 'as', 'this', 'race', 'is', 'over', 'i', 'got', 'to', 'go', 'to', 'the', 'airport', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'mr', '||period||', 'bevilacqua:', 'you', 'ready', 'boys', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'mr', '||period||', 'beviacqua', '||return||', '||return||', 'mr', '||period||', 'bevilacqua:', 'okay', '||comma||', 'this', 'is', 'hoiw', 'it', 'works', '||period||', 'you', 'take', 'your', 'marks', '||comma||', 'i', 'say', '||comma||', 'ready', '||dash||', 'on', 'your', 'mark', '||dash||', 'get', 'set', '||dash||', 'and', 'then', 'fire', '||period||', 'you', 'got', 'it', '||questionmark||', '||return||', '||return||', 'duncan', '&', 'jerry:', 'yes', 'mr', '||period||', 'bevilacqua', '||period||', '||return||', '||return||', 'mr', '||period||', 'bevilacqua:', 'ready', '||dash||', 'on', 'your', 'mark', '||return||', '||return||', 'lois:', 'so', 'will', 'you', 'come', 'to', 'hawaii', 'with', 'me', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'will', '||comma||', 'lois', '||period||', 'maybe', 'i', 'will', '||period||', '||return||', '||return||', 'george:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'el', 'presidente', '||questionmark||', '||return||', '||return||', 'castro:', 'si', '||comma||', 'si', '||period||', '||leftparen||', 'a', 'spanish', 'word', 'i', "can't", 'figure', 'out', '||rightparen||', 'come', 'here', '||period||', 'i', 'understand', 'you', 'are', 'very', 'interested', 'in', 'one', 'of', 'our', 'players', '||comma||', 'eh', '||questionmark||', '||return||', '||return||', 'george:', 'si', '||comma||', 'si', '||period||', '||return||', '||return||', 'castro:', 'ordinarily', 'i', 'would', 'not', 'grant', 'such', 'a', 'request', 'but', "i've", 'heard', 'you', 'are', '||comma||', 'uh', '||comma||', 'how', 'you', 'say', '||comma||', 'communista', 'simpatico', '||comma||', 'eh', '||questionmark||', '||return||', '||return||', 'george:', 'muy', 'sumpatico', '||period||', 'muy', 'muy', 'muy', '||period||', '||return||', '||return||', 'castro:', 'well', 'good', '||comma||', 'then', 'you', 'can', 'have', 'your', 'pick', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'oh', '||exclammark||', '||return||', '||return||', 'castro:', 'they', 'will', 'play', 'for', 'your', 'yankees', '||period||', '||return||', '||return||', 'george:', 'oh', 'well', '||comma||', 'gracias', 'el', 'commandante', '||comma||', 'gracias', '||period||', 'muy', 'muy', '||period||', '||return||', '||return||', 'castro:', 'and', 'i', 'would', 'be', 'honored', 'if', 'you', 'would', 'be', 'my', 'guest', 'for', 'dinner', 'tonight', 'at', 'the', 'presidential', 'palace', '||period||', 'there', 'will', 'be', 'girls', 'there', 'and', '||comma||', 'i', 'hear', '||comma||', 'some', 'pretty', 'good', 'food', '||period||', 'of', 'course', 'the', 'problem', 'with', 'parties', 'is', 'you', 'invariably', 'have', 'to', 'eat', 'standing', 'up', 'which', 'i', "don't", 'care', 'for', 'but', 'on', 'the', 'other', 'hand', 'i', "don't", 'like', 'to', 'balance', 'a', 'plate', 'on', 'my', 'lap', 'either', '||period||', 'once', 'when', 'i', 'was', 'at', 'a', 'party', '||comma||', 'i', 'put', 'my', 'plate', 'on', "someone's", 'piano', '||period||', 'i', 'assure', 'you', '||comma||', 'if', 'i', 'had', 'not', 'been', 'a', 'dictator', '||comma||', 'i', 'would', 'not', 'have', 'been', 'able', 'to', 'get', 'away', 'with', 'that', 'one', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'lets', 'go', '||return||', '||return||', 'elaine:', 'no', 'wait', '||comma||', 'i', 'gotta', 'go', 'in', 'here', 'and', 'pick', 'up', 'mr', '||period||', "pitt's", 'tennis', 'recquet', '||period||', '||return||', '||return||', 'jerry:', "what's", 'it', 'doin', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'wanted', 'to', 'have', 'it', 'restrung', '||period||', '||leftparen||', 'to', 'clerk', '||rightparen||', 'here', 'i', 'need', 'to', 'pick', 'that', 'up', '||return||', '||return||', 'landis:', 'hello', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'landis:', 'jocylin', 'landis', 'from', 'doubleday', '||period||', 'i', 'interviewed', 'you', 'for', 'a', 'position', 'a', 'couple', 'of', 'months', 'ago', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'yes', '||comma||', 'the', 'one', 'i', "didn't", 'get', '||period||', '||leftparen||', 'they', 'giggle', '||rightparen||', '||return||', '||return||', 'landis:', 'i', 'was', 'watching', 'you', 'play', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'not', 'very', 'good', '||period||', '||return||', '||return||', 'landis:', 'no', '||period||', 'you', 'exhibited', 'a', 'lot', 'of', 'grace', 'out', 'there', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'grace', '||questionmark||', '||return||', '||return||', 'landis:', 'yes', '||period||', 'so', 'have', 'you', 'found', 'anything', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'no', '||period||', 'not', 'really', '||period||', '||return||', '||return||', 'landis:', 'you', 'know', 'you', 'should', 'keep', 'in', 'touch', '||period||', 'something', 'may', 'be', 'opening', 'up', 'in', 'a', 'few', 'weeks', '||period||', 'is', 'that', 'a', 'bruline', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'bruline', '||period||', "newman's", 'got', 'the', 'same', 'one', '||period||', '||return||', '||return||', 'elaine:', 'newman', 'plays', 'tennis', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'fantastic', '||period||', '||return||', '||return||', 'landis:', 'would', 'you', 'mind', 'if', 'i', 'tried', 'this', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'no', '||period||', '||period||', '||period||', 'take', 'it', '||period||', '||return||', '||return||', 'landis:', 'how', 'will', 'you', 'get', 'it', 'back', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'i', 'could', 'come', 'by', 'your', 'office', 'and', 'pick', 'it', 'up', 'tomorrow', '||period||', '||return||', '||return||', 'landis:', "that's", 'so', 'generous', 'of', 'you', '||period||', '||return||', '||return||', 'elaine:', 'thanks', '||return||', '||return||', 'jerry:', 'you', 'loaned', 'her', "pitt's", 'racquet', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'could', 'i', 'do', '||questionmark||', 'she', 'said', 'there', 'might', 'be', 'something', 'for', 'me', 'at', 'doubleday', '||period||', 'oh', "wouldn't", 'that', 'be', 'great', 'i', "wouldn't", 'have', 'to', 'work', 'for', 'mr', '||period||', 'pitt', 'anymore', '||period||', '||return||', '||return||', 'sandy:', 'i', 'gotta', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'ok', '||period||', 'next', 'time', 'lets', 'play', 'ping', 'pong', '||period||', "it's", 'easier', 'to', 'jump', 'over', 'the', 'net', '||period||', '||return||', '||return||', 'sandy:', '||leftparen||', 'nods', 'silently', '||rightparen||', '||return||', '||return||', 'elaine:', 'bye', '||return||', '||return||', 'jerry:', 'bye', 'bye', '||return||', '||return||', 'elaine:', 'have', 'you', 'noticed', 'she', 'never', 'laughs', '||return||', '||return||', 'jerry:', 'hm', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'george:', 'check', 'that', 'out', '||leftparen||', 'showing', 'newspaper', '||rightparen||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', "you're", 'dating', 'this', 'woman', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "you're", 'becoming', 'one', 'of', 'the', 'gliterratti', '||return||', '||return||', 'george:', "what's", 'that', '||period||', '||return||', '||return||', 'kramer:', "ya'", 'know', '||comma||', 'people', 'who', 'glitter', '||period||', "she's", 'a', 'slim', 'gal', '||period||', '||return||', '||return||', 'george:', 'and', 'the', 'amazing', 'thing', 'is', 'she', 'eats', 'like', "there's", 'no', "tomorra'", '||period||', 'i', 'mean', "i've", 'never', 'seen', 'an', 'appetite', 'like', 'this', '||period||', 'desserts', '||period||', 'everything', '||period||', 'i', "don't", 'know', 'how', 'she', 'does', 'it', '||period||', '||return||', '||return||', 'kramer:', 'maybe', "she's", 'bulimic', '||return||', '||return||', 'george:', 'wa', '||questionmark||', '||return||', '||return||', 'kramer:', 'bulimic', '||comma||', '||return||', '||return||', 'george:', 'kramer', '||comma||', "she's", 'a', 'model', '||period||', '||return||', '||return||', 'kramer:', 'exactly', '||return||', '||return||', 'george:', 'i', 'have', 'noticed', 'she', 'does', 'tend', 'to', 'go', 'to', 'the', 'bathroom', 'right', 'after', 'we', 'finish', 'eating', '||period||', '||return||', '||return||', 'kramer:', 'there', 'you', 'go', 'monkey', 'boy', '||period||', '||return||', '||return||', 'nina:', 'mmm', '||comma||', 'mmmm', 'oh', '||comma||', 'so', 'good', '||comma||', 'mmm', '||comma||', 'mmm', '||period||', "aren't", 'you', 'hungry', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'enjoying', 'watching', 'you', '||period||', '||return||', '||return||', 'sandy:', 'so', 'did', 'you', 'like', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'was', 'ok', '||period||', 'frankenstein', "didn't", 'seem', 'quite', 'right', 'to', 'me', '||period||', 'i', 'missed', 'the', 'sport', 'jacket', '||period||', '||return||', '||return||', 'sandy:', '||leftparen||', 'nods', 'silently', '||rightparen||', '||return||', '||return||', 'jerry:', 'not', 'that', 'it', 'was', 'that', 'nice', 'of', 'a', 'jacket', '||period||', 'i', 'mean', 'it', "didn't", 'fit', 'him', 'that', 'well', '||period||', 'to', 'me', "there's", 'just', 'something', 'about', 'a', 'monster', 'in', 'a', 'blazer', '||period||', 'it', 'shows', 'at', 'least', "he's", 'making', 'an', 'effort', '||period||', '||return||', '||return||', 'sandy:', '||leftparen||', 'nods', 'silently', '||rightparen||', "that's", 'funny', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'glad', 'you', 'enjoyed', 'it', '||period||', '||return||', '||return||', 'nina:', 'oh', '||comma||', "i'm", 'so', 'full', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'full', '||period||', 'i', 'love', 'to', 'be', 'full', '||period||', '||period||', '||period||', 'love', 'to', 'sit', 'back', '||comma||', 'loosen', 'the', 'old', 'belt', 'and', 'digest', 'away', 'for', 'hours', '||period||', 'let', 'those', 'enzymes', 'do', 'their', 'work', '||period||', '||return||', '||return||', 'nina:', 'will', 'you', 'excuse', 'me', '||period||', '||return||', '||return||', 'george:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'nina:', 'i', 'just', 'need', 'to', 'freshen', 'up', '||period||', '||return||', '||return||', 'george:', "you're", 'fresh', '||leftparen||', 'grabs', 'her', 'arm', '||rightparen||', "you're", 'very', 'fresh', '||period||', 'you', 'seem', 'very', 'fresh', 'to', 'me', '||period||', "you're", 'very', 'vital', '||period||', 'i', "couldn't", 'take', 'you', 'any', 'fresher', '||period||', '||return||', '||return||', 'nina:', 'george', 'i', 'need', 'to', 'freshen', '||period||', '||comma||', 'george', '||comma||', 'george', '||comma||', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'unbelievable', '||period||', "you're", 'right', 'the', 'jokes', 'kept', 'bouncing', 'off', 'her', 'like', 'superman', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'what', 'did', 'i', 'tell', 'ya', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'even', 'when', 'she', 'did', 'like', 'something', '||comma||', 'she', "doesn't", 'laugh', '||period||', 'she', 'says', '||comma||', '||quotemark||', "that's", 'funny', '||period||', '||quotemark||', '||period||', '||period||', '||period||', "that's", 'funny', '||exclammark||', '||return||', '||return||', 'elaine:', 'oo', '||comma||', 'i', 'better', 'call', 'that', 'woman', 'at', 'doubleday', 'and', 'see', 'when', 'i', 'can', 'pick', 'up', 'mr', '||period||', "pitt's", 'racquet', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'how', 'can', 'i', 'be', 'with', 'someone', 'that', "doesn't", 'laugh', '||period||', "it's", 'like', '||period||', '||period||', '||period||', 'well', "it's", 'like', 'something', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'phone', '||rightparen||', 'hello', '||comma||', 'yeah', '||comma||', 'hi', '||period||', 'uh', '||comma||', 'is', 'miss', '||period||', 'landis', 'there', 'please', '||period||', 'wa', '||questionmark||', 'oh', '||comma||', 'gosh', '||comma||', 'ah', 'ok', '||comma||', "she'll", 'be', 'in', 'later', '||questionmark||', 'ok', '||comma||', 'thank', 'you', '||period||', 'uh', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'this', 'guy', 'said', 'she', 'hurt', 'her', 'arm', 'playing', 'tennis', '||period||', '||period||', '||period||', '||period||', 'pretty', 'bad', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'heard', 'a', 'noise', '||period||', '||return||', '||return||', 'jerry:', 'what', 'noise', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', '||period||', '||period||', 'blah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'blah', '||questionmark||', '||return||', '||return||', 'george:', 'from', 'the', 'bathroom', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'think', 'she', 'was', 'refunding', '||questionmark||', '||return||', '||return||', 'george:', 'every', 'time', 'we', 'go', 'out', 'to', 'eat', 'the', 'minute', 'we', "we're", 'done', 'eating', "she's", 'runnin', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'elaine:', 'so', "you're", 'concerned', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'of', 'course', "i'm", 'concerned', '||period||', "i'm", "payin'", 'for', 'those', 'meals', '||period||', "it's", 'like', 'throwing', 'money', 'down', 'the', 'toilet', '||period||', '||return||', '||return||', 'jerry:', 'in', 'a', 'manner', 'of', 'speaking', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'digest', 'it', '||period||', 'let', 'me', 'get', 'my', "money's", 'worth', '||period||', "y'know", 'what', 'would', 'be', 'good', 'is', 'if', 'there', 'was', 'someone', 'else', 'in', 'the', 'bathroom', 'that', 'could', 'tell', 'me', '||period||', '||return||', '||return||', 'kramer:', "here's", 'your', 'scrubber', 'back', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'maybe', 'i', 'could', 'bribe', 'one', 'of', 'those', 'women', 'that', 'hand', 'out', 'the', 'towels', 'in', 'the', 'powder', 'room', '||period||', '||return||', '||return||', 'jerry:', 'a', 'matron', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'well', 'i', "can't", 'help', 'you', 'there', '||leftparen||', 'weakly', '||rightparen||', '||period||', '||return||', '||return||', 'george:', 'wha', '||questionmark||', '||return||', '||return||', 'kramer:', "nothin'", '||return||', '||return||', 'george:', 'you', 'know', 'a', 'matron', '||questionmark||', '||return||', '||return||', 'kramer:', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'you', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'now', 'look', '||comma||', 'just', 'leave', 'me', 'alone', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "don't", '||comma||', "don't", 'make', 'me', '||return||', '||return||', 'george:', 'wha', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', "can't", '||comma||', 'all', 'right', 'i', "can't", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'my', "mother's", 'a', 'matron', '||exclammark||', '||return||', '||return||', 'elaine:', 'babs', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'there', '||comma||', 'all', 'right', 'i', 'said', 'it', 'there', '||period||', '||period||', "ya'", 'satisfied', '||questionmark||', 'anything', 'else', 'you', 'want', 'to', 'know', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'kramer', '||comma||', 'i', 'need', 'to', 'know', 'if', 'nina', 'is', 'refunding', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'george', '||comma||', 'i', "can't", 'help', 'ya', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'let', 'me', 'go', '||period||', 'let', 'me', 'go', '||period||', 'because', 'i', "haven't", 'talked', 'to', 'my', 'mother', 'in', 'five', 'years', '||period||', 'we', 'just', "don't", 'see', 'eye', 'to', 'eye', '||period||', 'i', "don't", 'even', 'want', 'to', 'get', 'into', 'my', 'childhood', '||period||', "i'm", 'still', 'carrying', 'a', 'lot', 'of', 'pain', '||period||', 'a', 'lot', 'of', 'pain', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'i', "can't", 'i', "can't", '||return||', '||return||', 'jerry:', 'kramer', "you're", 'going', 'to', 'have', 'to', 'face', 'her', 'some', 'time', '||return||', '||return||', 'kramer:', '||leftparen||', 'mumbles', '||rightparen||', "b'd", "b'd", '||return||', '||return||', 'elaine:', 'hello', '||leftparen||', 'sees', 'landis', '||rightparen||', 'oh', '||comma||', 'my', 'goodness', '||period||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'landis:', 'i', 'tore', 'my', 'umeral', 'epicondilitist', '||return||', '||return||', 'elaine:', 'oh', '||return||', '||return||', 'landis:', 'my', 'doctor', 'said', 'it', 'might', 'never', 'fully', 'heal', '||period||', 'i', 'may', 'never', 'play', 'again', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "you'll", 'be', 'playing', '||period||', '||period||', '||period||', '||return||', '||return||', 'landis:', 'if', 'i', "can't", 'play', 'tennis', 'i', "don't", 'know', 'what', "i'll", 'do', '||period||', '||return||', '||return||', 'elaine:', 'there', 'are', 'plenty', 'of', 'things', 'you', 'can', 'do', '||comma||', "there's", 'chess', 'and', 'uh', 'uh', 'mah', 'jong', '||comma||', '||return||', '||return||', 'landis:', 'you', "don't", 'know', 'how', 'lucky', 'you', 'are', 'to', 'be', 'healthy', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'and', 'biking', 'and', '||period||', '||period||', '||return||', '||return||', 'landis:', 'what', 'am', 'i', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'hiking', '||period||', '||period||', '||period||', '||return||', '||return||', 'landis:', '||leftparen||', 'wimpers', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sees', 'racquet', '||rightparen||', 'could', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'landis:', 'if', 'i', "can't", 'play', 'tennis', 'i', 'have', 'no', 'reason', 'to', 'live', '||period||', '||period||', '||leftparen||', 'cries', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sees', 'racquet', '||rightparen||', '||comma||', 'you', 'know', "it's", 'not', 'important', "i'm", 'gonna', '||comma||', 'ok', '||comma||', 'well', '||comma||', 'you', 'know', '||period||', 'take', 'care', 'of', 'that', 'condolitis', '||return||', '||return||', 'kramer:', 'ma', '||questionmark||', '||return||', '||return||', 'babs:', 'cosmo', '||exclammark||', '||return||', '||return||', 'george:', 'cosmo', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'just', 'ask', 'her', 'for', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'told', 'you', 'i', "couldn't", '||period||', 'the', 'woman', 'was', 'crying', 'about', 'how', 'she', 'might', 'never', 'play', 'tennis', 'again', '||return||', '||return||', 'jerry:', 'yeah', '||return||', '||return||', 'george:', 'hey', 'di', 'ho', '||return||', '||return||', 'jerry:', "c'mon", 'up', '||period||', '||return||', '||return||', 'jerry:', 'so', 'when', 'do', 'you', 'have', 'to', 'get', 'the', 'racquet', 'back', 'to', 'mr', '||period||', 'pitt', '||questionmark||', '||return||', '||return||', 'elaine:', 'augh', '||comma||', "he's", 'got', 'a', 'big', 'match', 'tomorrow', 'with', 'ethyl', 'kennedy', '||return||', '||return||', 'jerry:', 'he', 'needs', 'a', 'three', 'hundred', '||dash||', 'dollar', 'bruline', 'to', 'beat', 'ethyl', 'kennedy', '||questionmark||', '||return||', '||return||', 'elaine:', "he'll", 'only', 'play', 'with', 'his', 'racquet', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'why', "don't", 'you', 'wait', "'til", "she's", 'not', 'there', 'on', 'her', 'lunch', 'hour', 'and', 'just', 'take', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'stealing', '||questionmark||', '||return||', '||return||', 'jerry:', 'stealing', '||questionmark||', 'you', 'loaned', 'her', 'the', 'racquet', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'hey', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'jerry', 'hey', '||return||', '||return||', 'jerry:', 'so', 'what', 'happened', 'with', "kramer's", 'mother', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'all', 'worked', 'out', '||period||', 'nina', 'and', 'i', 'will', 'have', 'dinner', 'thursday', 'at', 'the', 'restaurant', 'where', 'babs', 'works', '||period||', '||return||', '||return||', 'jerry:', "what's", 'she', 'like', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "she's", 'a', 'kramer', '||period||', 'and', 'uh', '||comma||', 'while', 'i', 'was', 'there', 'i', 'uh', 'happened', 'to', 'pick', 'up', 'another', 'juicy', 'little', 'nugget', 'about', 'our', 'friend', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', "i'm", 'ready', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'uh', 'got', 'the', 'first', 'name', '||period||', '||return||', '||return||', 'elaine:', 'you', 'found', 'out', "kramer's", 'first', 'name', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', "we've", 'been', 'trying', 'to', 'get', 'it', 'out', 'of', 'him', 'for', 'ten', 'years', '||period||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'cosmo', '||return||', '||return||', 'elaine:', 'jerry', 'cosmo', '||questionmark||', '||return||', '||return||', 'george:', 'cosmo', '||return||', '||return||', 'elaine:', 'jerry', 'cosmo', '||return||', '||return||', 'elaine:', 'cosmo', '||comma||', 'cosmo', '||questionmark||', '||return||', '||return||', 'kramer:', "what's", 'so', 'funny', '||questionmark||', '||period||', '||period||', '||period||', 'wha', '||questionmark||', '||return||', '||return||', 'elaine:', 'cosmo', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'ok', 'so', 'you', 'the', 'name', 'now', '||period||', 'the', 'cat', 'is', '||period||', 'a', 'a', 'a', '||period||', '||period||', 'out', 'of', 'the', 'bag', '||period||', '||return||', '||return||', 'elaine:', "it's", 'not', 'such', 'a', 'bad', 'name', '||period||', '||return||', '||return||', 'kramer:', 'well', 'you', 'know', 'all', 'my', 'life', "i've", 'been', 'running', 'away', 'from', 'that', 'name', '||period||', "that's", 'why', 'i', "wouldn't", 'tell', 'anybody', '||period||', 'but', "i've", 'been', 'thinking', 'about', 'it', '||period||', 'all', 'this', 'time', "i'm", 'trying', 'not', 'to', 'be', 'me', '||period||', "i'm", 'afraid', 'to', 'face', 'who', 'i', 'was', '||period||', 'but', "i'm", 'cosmo', 'jerry', '||period||', "i'm", 'cosmo', 'kramer', '||period||', 'and', "that's", 'who', "i'm", 'going', 'to', 'be', '||period||', 'from', 'now', 'on', "that's", 'who', "i'm", 'going', 'to', 'be', '||period||', "i'm", 'cosmo', '||exclammark||', '||return||', '||return||', 'laura:', 'yes', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'is', 'sandy', 'here', '||questionmark||', '||return||', '||return||', 'laura:', 'hi', '||comma||', 'you', 'must', 'be', 'jerry', '||period||', "sandy's", 'in', 'the', 'shower', '||period||', 'do', 'you', 'want', 'to', 'come', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'would', 'except', 'i', 'forgot', 'to', 'bring', 'a', 'towel', '||period||', '||return||', '||return||', 'laura:', '||leftparen||', 'laughs', 'nicely', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'the', 'roommate', 'laughed', 'at', 'everything', 'i', 'said', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'great', 'sounding', 'laugh', 'too', '||comma||', 'kind', 'of', 'lilting', 'and', 'feminine', '||dash||', '||dash||', 'none', 'of', 'those', 'big', 'coarse', '||quotemark||', "ha's", '||period||', '||quotemark||', 'you', 'know', 'those', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', 'ha', '||dash||', 'a', '||dash||', 'a', '||comma||', 'ha', '||dash||', 'a', '||dash||', 'a', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hate', 'the', 'big', 'coarse', '||quotemark||', 'ha', '||period||', '||quotemark||', 'hate', 'those', '||period||', '||return||', '||return||', 'jerry:', 'and', 'the', 'worst', 'part', 'of', 'course', 'is', 'that', 'she', 'also', 'possessed', 'many', 'of', 'the', 'other', 'qualities', 'prized', 'by', 'the', 'superficial', 'man', '||period||', '||return||', '||return||', 'george:', 'i', 'see', '||period||', '||return||', '||return||', 'jerry:', 'so', 'as', 'you', 'can', 'see', '||comma||', "i've", 'got', 'a', 'bit', 'of', 'a', 'problem', 'here', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', 'i', 'hear', 'you', 'correctly', '||dash||', '||dash||', 'and', 'i', 'think', 'that', 'i', 'do', '||dash||', '||dash||', 'my', 'advice', 'to', 'you', 'is', 'to', 'finish', 'your', 'meal', '||comma||', 'pay', 'your', 'check', '||comma||', 'leave', 'here', '||comma||', 'and', 'never', 'mention', 'this', 'to', 'anyone', 'again', '||period||', '||return||', '||return||', 'jerry:', "can't", 'be', 'done', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'switch', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'the', 'switch', '||period||', '||quotemark||', '||return||', '||return||', 'george:', "can't", 'be', 'done', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wonder', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'realize', 'in', 'the', 'entire', 'history', 'of', 'western', 'civilization', 'no', 'one', 'has', 'successfully', 'accomplished', 'the', 'roommate', 'switch', '||questionmark||', 'in', 'the', 'middle', 'ages', 'you', 'could', 'get', 'locked', 'up', 'for', 'even', 'suggesting', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'they', "didn't", 'have', 'roommates', 'in', 'the', 'middle', 'ages', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'sure', 'at', 'some', 'point', 'between', 'the', 'years', '800', 'and', '1200', '||dash||', '||dash||', 'somewhere', '||dash||', '||dash||', 'there', 'were', 'two', 'women', 'living', 'together', '||period||', '||return||', '||return||', 'jerry:', 'the', 'point', 'is', 'i', 'intend', 'to', 'undertake', 'this', '||period||', 'and', "i'll", 'do', 'it', 'with', 'or', 'without', 'you', '||period||', 'so', 'if', "you're", 'scared', '||comma||', 'if', 'you', "haven't", 'got', 'the', 'stomach', 'for', 'this', '||comma||', "let's", 'get', 'it', 'out', 'right', 'now', '||exclammark||', 'and', "i'll", 'go', 'on', 'my', 'own', '||period||', 'if', 'not', '||comma||', 'you', 'can', 'get', 'on', 'board', 'and', 'we', 'can', 'get', 'to', 'work', '||exclammark||', 'now', "what's", 'it', 'going', 'to', 'be', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'dammit', '||comma||', "i'm", 'in', '||period||', '||return||', '||return||', 'jerry:', 'i', "couldn't", 'do', 'it', 'without', 'you', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "let's", 'get', 'to', 'work', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "that's", 'enough', 'for', 'today', '||period||', "you're", 'tired', '||period||', 'get', 'some', 'sleep', '||period||', "i'll", 'see', 'you', 'first', 'thing', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'we', "can't", 'do', 'it', '||comma||', 'who', 'are', 'we', 'kidding', '||questionmark||', "it's", 'impossible', '||exclammark||', "it's", 'true', '||exclammark||', 'you', "can't", 'do', 'the', 'switch', '||exclammark||', 'nobody', 'can', 'do', 'the', 'switch', '||exclammark||', 'it', 'was', 'a', 'stupid', 'idea', 'to', 'begin', 'with', '||exclammark||', "let's", 'face', 'it', '||period||', "i'm", 'stuck', 'with', 'the', 'non', '||dash||', 'laugher', 'and', "that's", 'that', '||exclammark||', '||return||', '||return||', 'george:', "we'll", 'come', 'up', 'with', 'something', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'sure', 'we', 'will', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'see', 'you', 'tomorrow', '||period||', '||leftparen||', 'george', 'sighs', '||comma||', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', 'i', 'got', 'it', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "let's", 'go', 'over', 'it', 'again', '||comma||', 'one', 'more', 'time', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'so', 'i', 'tell', 'sandy', 'that', 'i', 'want', 'to', 'have', 'a', 'mnage', 'trois', 'with', 'her', 'and', 'her', 'roommate', '||period||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'believe', 'this', 'course', 'of', 'action', 'will', 'have', 'a', 'two', '||dash||', 'pronged', 'effect', '||period||', 'firstly', '||comma||', 'the', 'very', 'mention', 'of', 'the', 'idea', 'will', 'cause', 'sandy', 'to', 'recoil', 'in', 'disgust', '||comma||', 'whereupon', 'she', 'will', 'insist', 'that', 'i', 'remove', 'myself', 'from', 'the', 'premises', '||period||', '||return||', '||return||', 'george:', 'keep', 'going', '||period||', '||return||', '||return||', 'jerry:', 'at', 'this', 'point', '||comma||', 'it', 'is', 'inevitable', 'that', 'she', 'will', 'seek', 'out', 'the', 'roommate', 'to', 'apprise', 'her', 'of', 'this', 'abhorrent', 'turn', 'of', 'events', '||period||', '||return||', '||return||', 'george:', 'continue', '||period||', '||return||', '||return||', 'jerry:', 'the', 'roommate', 'will', 'then', 'offer', 'her', 'friend', 'the', 'requisite', 'sympathy', 'even', 'as', 'part', 'of', 'her', 'cannot', 'help', 'but', 'feel', 'somewhat', 'flattered', 'by', 'her', 'inclusion', 'in', 'the', 'unusual', 'request', '||period||', '||return||', '||return||', 'george:', 'a', 'few', 'days', 'go', 'by', 'and', 'a', 'call', 'is', 'placed', 'at', 'a', 'time', 'when', 'sandy', 'is', 'known', 'to', 'be', 'busy', 'at', 'work', '||period||', 'once', 'the', 'initial', 'awkwardness', 'is', 'relieved', 'with', 'a', 'little', 'playful', 'humor', '||comma||', 'which', 'she', '[laura]', 'of', 'course', 'cannot', 'resist', '||comma||', 'an', 'invitation', 'to', 'a', 'friendly', 'dinner', 'is', 'proffered', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||period||', 'well', '||comma||', 'it', 'all', 'sounds', 'pretty', 'good', '||period||', "there's", 'only', 'one', 'flaw', 'in', 'it', "they're", 'roommates', '||period||', "she'd", 'have', 'to', 'go', 'out', 'with', 'me', 'behind', "sandy's", 'back', '||period||', "she's", 'not', 'gonna', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'you', 'disappoint', 'me', '||comma||', 'my', 'friend', '||period||', 'sandy', 'wants', 'nothing', 'to', 'do', 'with', 'you', '||period||', 'she', 'tells', 'laura', '||comma||', '||quotemark||', 'if', 'you', 'want', 'to', 'waste', 'your', 'time', 'with', 'that', 'pervert', '||comma||', "that's", 'your', 'problem', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'perfect', 'plan', '||period||', 'so', 'inspired', '||period||', 'so', 'devious', '||period||', 'yet', 'so', 'simple', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'george', '||comma||', 'finger', 'in', 'the', 'peanut', 'butter', 'jar', '||rightparen||', 'this', 'is', 'what', 'i', 'do', '||period||', '||return||', '||return||', 'keith:', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'no', '||comma||', "i'm", 'ok', '||period||', '||return||', '||return||', 'keith:', 'well', 'then', 'what', 'are', 'you', 'doing', 'with', 'that', 'racquet', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', "it's", 'mine', '||period||', 'miss', '||period||', 'landis', 'borrowed', 'it', '||period||', '||return||', '||return||', 'keith:', 'well', '||comma||', "i'm", 'sorry', 'you', "can't", 'take', 'that', '||comma||', 'no', 'no', 'no', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', '||comma||', 'i', 'can', '||period||', 'i', 'can', '||period||', "it's", 'mine', '||period||', "it's", 'my', 'racquet', '||period||', '||return||', '||return||', 'keith:', 'look', 'sweetheart', 'i', "don't", 'know', 'who', 'you', 'are', '||period||', 'i', "don't", 'know', 'what', "you're", 'doing', 'here', '||period||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', "i'm", 'going', "i'm", 'going', '||return||', '||return||', 'keith:', 'not', 'with', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'give', 'it', 'give', 'it', '||period||', '||period||', '||return||', '||return||', 'keith:', 'leave', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', 'all', 'right', 'forget', 'it', '||period||', 'you', "don't", 'have', 'to', 'mention', 'any', 'of', 'this', 'to', 'miss', '||period||', 'landis', 'do', 'you', '||questionmark||', '||return||', '||return||', 'keith:', 'i', "don't", 'have', 'to', 'but', 'i', 'will', '||period||', '||return||', '||return||', 'clotworthy:', 'morning', 'cosmo', '||return||', '||return||', 'kramer:', 'hi', 'mr', '||period||', 'clotworthy', '||return||', '||return||', 'clotworthy:', 'how', 'are', 'you', 'today', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', "couldn't", 'be', 'better', '||period||', 'hi', 'lorraine', '||period||', '||return||', '||return||', 'landis:', 'hi', 'cosmo', '||return||', '||return||', 'kramer:', 'my', 'mom', 'babs', '||period||', '||return||', '||return||', 'landis:', 'hi', 'mrs', '||period||', 'kramer', '||return||', '||return||', 'babs:', 'lorraine', '||return||', '||return||', 'kramer:', 'yes', '||comma||', "it's", 'a', 'fine', 'day', '||return||', '||return||', 'voice:', '||leftparen||', 'larry', "david's", 'voice', '||rightparen||', 'what', 'do', 'you', 'say', 'cosmo', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'everything', 'my', 'man', '||period||', '||return||', '||return||', 'sandy:', 'what', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', "don't", 'know', 'the', 'exact', 'pronunciation', 'but', 'i', 'believe', 'its', 'manage', 'a', 'trois', '||period||', '||return||', '||return||', 'sandy:', 'oooo', '||comma||', 'that', 'is', 'a', 'wild', 'idea', '||return||', '||return||', 'jerry:', 'uh', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'ma', '||comma||', 'know', "i've", 'been', 'thinking', '||period||', 'i', 'want', 'you', 'to', 'quit', 'that', 'matron', 'job', '||period||', '||return||', '||return||', 'babs:', 'yes', '||comma||', 'well', "isn't", 'that', 'just', 'easy', 'for', 'you', 'to', 'say', '||period||', 'what', 'the', 'hell', 'do', 'you', 'think', "i'm", 'going', 'to', 'do', 'with', 'myself', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'maybe', 'we', 'could', 'go', 'into', 'business', 'together', '||period||', 'if', "you're", 'clean', '||questionmark||', '||return||', '||return||', 'babs:', "i've", 'been', 'clean', 'for', 'two', 'years', '||period||', 'anyway', 'what', 'would', 'we', 'do', 'together', '||questionmark||', '||return||', '||return||', 'kramer:', "i've", 'got', 'plenty', 'of', 'ideas', '||period||', '||return||', '||return||', 'babs:', "i've", 'always', 'believed', 'in', 'you', 'cosmo', '||period||', 'you', 'know', 'that', '||period||', 'so', 'i', 'want', 'you', 'to', 'call', 'that', 'place', 'today', 'and', 'tell', 'then', 'tha', "you're", 'through', '||period||', '||return||', '||return||', 'babs:', 'all', 'right', '||period||', "i'll", 'do', 'it', '||period||', '||return||', '||return||', 'nina:', 'mmmm', 'mm', 'so', 'good', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'so', 'glad', '||period||', '||return||', '||return||', 'nina:', 'will', 'you', 'excuse', 'me', "i've", 'got', 'to', 'freshen', 'up', '||period||', '||return||', '||return||', 'george:', 'and', 'why', "shouldn't", 'you', '||questionmark||', 'be', 'fresh', 'stay', 'fresh', '||return||', '||return||', 'woman:', "i'll", 'be', 'back', '||period||', "i'm", 'not', 'feeling', 'very', 'well', '||period||', '||return||', '||return||', 'waitress:', 'care', 'to', 'see', 'our', 'dessert', 'menu', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'yeah', '||period||', 'do', 'you', 'know', 'babs', '||questionmark||', '||return||', '||return||', 'waitress:', 'oh', '||comma||', 'yeah', 'i', 'was', 'sorry', 'to', 'hear', 'she', 'left', '||period||', '||return||', '||return||', 'george:', 'babs', 'left', '||questionmark||', '||return||', '||return||', 'waitress:', 'she', 'quit', 'today', '||period||', '||return||', '||return||', 'george:', 'ah', 'ha', '||period||', '||return||', '||return||', 'nina:', 'what', 'are', 'you', 'doing', 'here', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'just', 'wondering', 'what', 'it', 'was', 'you', 'wanted', 'for', 'dessert', '||period||', '||return||', '||return||', 'george:', 'how', "'ya", "feelin'", '||questionmark||', '||return||', '||return||', 'babs:', 'hi', 'newman', '||return||', '||return||', 'newman:', 'hi', 'babs', '||return||', '||return||', 'babs:', 'what', 'are', 'you', "doin'", '||return||', '||return||', 'newman:', 'minding', 'my', 'own', 'business', '||period||', '||return||', '||return||', 'babs:', "you'll", 'never', 'get', 'into', 'trouble', 'that', 'way', '||period||', '||return||', '||return||', 'newman:', 'what', 'makes', 'you', 'think', "i'm", "lookin'", 'for', 'trouble', '||questionmark||', '||return||', '||return||', 'babs:', 'from', 'what', 'i', 'hear', 'you', 'postmen', "don't", 'have', 'to', 'look', 'too', 'far', '||period||', '||return||', '||return||', 'newman:', 'ha', 'ha', 'ha', 'well', 'you', 'know', 'sometimes', 'it', 'just', 'has', 'a', 'way', 'of', 'finding', 'you', '||period||', 'cigarette', '||questionmark||', '||return||', '||return||', 'babs:', "don't", 'mind', 'if', 'i', 'do', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'babs', '||period||', 'she', 'never', 'showed', 'up', 'last', 'night', '||period||', 'the', 'whole', 'thing', 'blew', 'up', 'in', 'my', 'face', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'what', 'happened', 'with', 'sandy', '||period||', 'i', 'forgot', 'all', 'about', 'it', '||period||', 'did', 'you', 'call', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'did', '||period||', 'in', 'fact', 'i', 'went', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'happened', '||questionmark||', 'she', 'throw', 'you', 'out', '||questionmark||', 'eh', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'actually', '||comma||', 'she', 'took', 'it', 'pretty', 'well', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'into', 'it', '||period||', '||return||', '||return||', 'george:', 'into', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'manage', '||period||', 'and', 'not', 'only', 'that', '||period||', 'she', 'just', 'called', 'me', 'and', 'said', 'she', 'talked', 'to', 'the', 'roommate', 'and', 'the', "roomate's", 'into', 'the', 'manage', 'too', '||period||', '||return||', '||return||', 'george:', "that's", 'unbelievable', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'a', 'scene', 'man', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'ever', 'just', 'get', 'down', 'on', 'your', 'knees', 'and', 'thank', 'god', 'that', 'you', 'know', 'me', 'and', 'have', 'access', 'to', 'my', 'dementia', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', "i'm", 'not', "goin'", 'to', 'do', 'it', '||period||', '||return||', '||return||', 'george:', "you're", 'not', 'goin', 'to', 'do', 'it', '||questionmark||', 'what', 'do', 'you', 'mean', '||comma||', "you're", 'not', 'goin', 'to', 'do', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', "i'm", 'not', 'an', 'orgy', 'guy', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'crazy', '||questionmark||', 'this', 'is', 'like', 'discovering', 'plutonium', '||period||', '||period||', '||period||', 'by', 'accident', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'know', 'what', 'it', 'means', 'to', 'become', 'an', 'orgy', 'guy', '||questionmark||', 'it', 'changes', 'everything', '||period||', "i'd", 'have', 'to', 'dress', 'different', '||period||', "i'd", 'have', 'to', 'act', 'different', '||period||', "i'd", 'have', 'to', 'grow', 'a', 'mustache', 'and', 'get', 'all', 'kinds', 'of', 'robes', 'and', 'lotions', 'and', "i'd", 'need', 'a', 'new', 'bedspread', 'and', 'new', 'curtains', "i'd", 'have', 'to', 'get', 'thick', 'carpeting', 'and', 'weirso', 'lighting', '||period||', "i'd", 'have', 'to', 'get', 'new', 'friends', '||period||', "i'd", 'have', 'to', 'get', 'orgy', 'friends', '||period||', '||period||', '||period||', '||period||', 'naw', '||comma||', "i'm", 'not', 'ready', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'if', 'only', 'something', 'like', 'that', 'could', 'happen', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'shut', 'up', 'you', "couldn't", 'do', 'it', 'either', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'happened', '||questionmark||', 'did', 'you', 'get', 'your', 'racquet', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'got', 'caught', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'you', 'got', 'caught', '||questionmark||', '||return||', '||return||', 'elaine:', 'her', 'assistant', 'caught', 'me', '||period||', 'and', 'now', "i'm", 'probably', 'not', 'going', 'to', 'get', 'a', 'job', '||period||', "he's", 'going', 'to', 'tell', 'landis', 'that', 'i', 'was', 'sneakin', 'around', 'her', 'office', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "don't", 'understand', 'how', 'you', 'can', 'get', 'in', 'trouble', 'for', 'taking', 'your', 'own', 'racquet', '||period||', '||return||', '||return||', 'elaine:', 'meanwhile', 'mr', '||period||', "pitt's", 'got', 'this', 'match', 'with', 'ethyl', 'kennedy', 'this', 'afternoon', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'cosmo', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'cosmo', '||return||', '||return||', 'kramer:', 'thanks', 'man', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "doesn't", 'newman', 'have', 'a', 'bruline', 'racquet', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'but', "he's", 'on', 'vacation', '||period||', 'went', 'to', 'baltimore', '||period||', '||return||', '||return||', 'jerry:', 'hum', '||comma||', 'but', "you've", 'got', 'the', 'key', 'to', 'his', 'place', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||return||', '||return||', 'jerry:', 'well', 'elaine', 'needs', 'to', 'borrow', 'his', 'racquet', '||period||', 'just', 'for', 'today', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', 'all', 'right', '||period||', 'come', 'on', "i'll", 'take', 'you', 'over', 'to', "newman's", '||return||', '||return||', 'george:', 'hey', '||comma||', 'cosmo', 'what', 'happened', 'to', 'your', 'mother', 'last', 'night', '||period||', 'she', 'hung', 'me', 'out', 'to', 'dry', '||period||', '||return||', '||return||', 'kramer:', 'she', 'quit', '||period||', '||return||', '||return||', 'george:', 'it', 'would', 'have', 'been', 'nice', 'if', 'someone', 'told', 'me', 'about', 'it', '||period||', 'i', 'just', 'think', 'you', 'could', 'have', 'said', 'something', '||period||', "that's", 'all', '||period||', '||return||', '||return||', 'kramer:', "don't", 'talk', 'to', 'me', 'george', '||comma||', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'well', 'where', 'is', 'she', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'ma', '||exclammark||', '||return||', '||return||', 'babs:', 'cosmo', '||exclammark||', '||return||', '||return||', 'newman:', 'we', 'din', '||comma||', 'we', "didn't", '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'cosmo', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'sure', 'you', "don't", 'want', 'the', 'tickets', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', "i'm", 'having', 'trouble', 'getting', 'rid', 'of', 'super', 'bowl', 'tickets', '||period||', '||return||', '||return||', 'george:', "i'm", 'telling', 'you', '||comma||', 'skip', 'the', "drake's", 'wedding', '||comma||', 'go', 'to', 'the', 'game', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||comma||', 'the', 'drake', 'put', 'me', 'in', 'the', 'wedding', 'party', '||period||', '||return||', '||return||', 'george:', 'well', 'who', 'schedules', 'his', 'wedding', 'on', 'super', 'bowl', 'sunday', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'he', "didn't", 'know', '||questionmark||', '||return||', '||return||', 'george:', 'lemme', 'see', '||period||', 'i', "can't", 'believe', 'you', 'got', 'these', 'for', 'free', '||period||', '||leftparen||', 'looking', 'at', 'the', 'tickets', '||rightparen||', 'row', 'f', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'row', 'f', '||comma||', 'in', 'front', 'of', 'the', 'gs', '||comma||', 'hobnobbing', 'with', 'the', 'ds', 'and', 'es', '||period||', '||return||', '||return||', 'george:', 'howbout', 'kramer', 'or', 'elaine', '||comma||', 'they', "don't", 'want', 'them', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'asked', '||period||', 'elaine', 'laughed', 'at', 'me', '||comma||', "kramer's", 'only', 'interested', 'in', 'canadian', 'football', '||period||', '||return||', '||return||', 'george:', 'wish', 'i', 'could', 'help', 'you', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'take', 'them', '||period||', 'you', 'could', 'take', 'bonnie', '||period||', '||return||', '||return||', 'george:', 'you', 'paying', 'my', 'hotel', 'and', 'airfare', 'to', 'miami', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'in', 'order', 'to', 'use', 'these', '||comma||', 'i', 'gotta', 'spend', 'like', 'fifteen', '||dash||', 'hundred', 'bucks', '||period||', 'this', 'is', 'a', 'bill', 'for', 'fifteen', '||dash||', 'hundred', 'dollars', '||period||', 'plus', '||comma||', "she'd", 'ask', 'about', 'the', 'sleeping', 'arrangements', '||comma||', 'that', 'whole', 'sleeping', 'arrangement', 'conversation', 'is', 'depressing', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'sleeping', 'arrangements', '||period||', 'so', '||comma||', 'you', "haven't", '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', '||comma||', 'i', "haven't", 'even', 'seen', 'her', 'apartment', 'yet', '||period||', 'tomorrow', "night's", 'the', 'first', 'night', '||period||', '||return||', '||return||', 'jerry:', 'aah', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'is', 'that', 'tim', 'whatley', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'dentist', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'is', 'he', 'still', 'mad', 'at', 'you', 'for', 'crashing', 'his', 'thanksgiving', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', 'i', 'explained', 'the', 'whole', 'thing', 'to', 'him', '||comma||', 'he', 'was', 'fine', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', 'good', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'blamed', 'it', 'on', 'you', '||period||', 'hi', 'tim', '||period||', '||return||', '||return||', 'tim:', 'hey', 'jerry', '||exclammark||', 'george', '||period||', 'what', 'are', 'you', 'up', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'just', 'a', 'couple', 'of', 'gals', 'out', 'on', 'the', 'town', '||comma||', 'shopping', 'and', 'gabbing', '||period||', '||return||', '||return||', 'george:', "i'm", 'getting', 'a', 'makeover', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'how', 'would', 'you', 'like', 'to', 'go', 'to', 'the', 'super', 'bowl', '||questionmark||', '||return||', '||return||', 'tim:', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', '||return||', '||return||', 'jerry:', 'here', '||period||', 'two', 'tickets', '||period||', 'have', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'tim:', 'how', 'can', 'i', 'think', 'you', '||questionmark||', "i'll", 'tell', 'you', 'what', '||comma||', "i'll", 'take', 'you', 'to', 'dinner', 'sometime', '||period||', 'you', 'ever', 'been', 'to', 'mendys', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'no', 'no', '||period||', 'no', 'dinner', '||period||', '||return||', '||return||', 'jerry:', 'tim', '||comma||', 'you', "didn't", 'have', 'to', 'get', 'me', 'a', 'thank', 'you', 'gift', '||period||', 'i', 'know', '||comma||', "it's", 'a', 'label', 'maker', '||period||', 'the', 'label', 'baby', 'junior', '||period||', 'yeah', '||comma||', 'i', 'hear', "they're", 'good', '||period||', 'well', '||comma||', 'label', 'me', 'thankful', '||period||', 'okay', '||comma||', 'well', 'you', 'enjoy', 'those', 'tickets', '||period||', 'buh', '||dash||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'come', 'in', '||period||', '||return||', '||return||', 'kramer:', 'where', 'can', 'i', 'put', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'risk', '||comma||', 'jerry', '||period||', 'the', 'game', 'of', 'world', 'conquest', '||period||', '||leftparen||', 'brushing', 'newspapers', 'off', 'the', 'table', 'with', 'his', 'foot', 'and', 'setting', 'the', 'game', 'board', 'down', '||rightparen||', 'alright', '||comma||', "that's", 'perfect', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'why', 'do', 'you', 'have', 'to', '||leftparen||', 'noticing', 'newman', '||rightparen||', 'hello', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', '||comma||', 'jerry', '||period||', 'will', 'he', 'take', 'it', '||questionmark||', 'i', 'gotta', 'go', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', 'take', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'board', '||comma||', 'jerry', '||period||', "we've", 'been', 'playing', 'at', "newman's", 'for', 'six', 'hours', 'but', "he's", 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'so', 'why', "don't", 'you', 'leave', 'it', 'at', "newman's", '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'wanted', 'to', '||comma||', 'he', "won't", 'let', 'me', '||period||', '||return||', '||return||', 'kramer:', 'we', 'have', 'to', 'put', 'the', 'board', 'in', 'a', 'neutral', 'place', 'where', 'no', 'one', 'will', 'tamper', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', "that's", 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||period||', "you're", 'like', 'switzerland', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'wanna', 'be', 'switzerland', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'newman', 'and', 'i', 'are', 'engaged', 'in', 'a', 'epic', 'struggle', 'for', 'world', 'domination', '||period||', "it's", 'winner', 'take', 'all', '||period||', 'people', 'cannot', 'be', 'trusted', '||period||', '||return||', '||return||', 'newman:', "don't", 'look', 'at', 'me', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'looking', 'right', 'at', 'you', '||comma||', 'big', 'daddy', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'soldier', 'boys', '||comma||', "let's", 'fall', 'out', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'so', "you're", 'gonna', 'look', 'after', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'stay', 'strong', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'watch', 'it', 'good', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'oh', '||comma||', 'is', 'that', 'a', 'label', 'maker', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'it', 'is', '||period||', 'i', 'got', 'it', 'as', 'a', 'gift', '||comma||', "it's", 'a', 'label', 'baby', 'junior', '||period||', '||return||', '||return||', 'elaine:', 'love', 'the', 'label', 'baby', '||comma||', 'baby', '||period||', 'you', 'know', 'those', 'things', 'make', 'great', 'gifts', '||comma||', 'i', 'just', 'got', 'one', 'of', 'those', 'for', 'tim', 'whatley', 'for', 'christmas', '||period||', '||return||', '||return||', 'jerry:', 'tim', 'whatley', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'who', 'sent', 'you', 'that', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'one', 'tim', 'whatley', '||exclammark||', '||return||', '||return||', 'elaine:', 'not', '||comma||', 'my', 'tim', 'whatley', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'same', '||comma||', 'he', 'sent', 'it', 'as', 'a', 'thank', 'you', 'for', 'my', 'super', 'bowl', 'tickets', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', 'this', 'is', 'the', 'same', 'one', 'i', 'gave', 'him', '||period||', 'he', 'recycled', 'this', 'gift', '||period||', "he's", 'a', 'regifter', '||exclammark||', '||return||', '||return||', 'jerry:', 'or', 'maybe', 'he', 'liked', 'your', 'gift', 'so', 'much', '||comma||', 'he', 'decided', 'to', 'get', 'me', 'the', 'same', 'thing', '||period||', 'perhaps', "it's", 'an', 'homage', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'perhaps', '||period||', '||return||', '||return||', 'jerry:', 'well', 'how', 'did', 'he', 'react', 'when', 'you', 'gave', 'it', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'he', 'said', '||comma||', '||quotemark||', 'oh', '||period||', 'a', 'label', 'maker', '||period||', 'howbout', 'that', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'he', 'repeated', 'the', 'name', 'of', 'the', 'gift', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||comma||', 'if', 'you', 'repeat', 'the', 'name', 'of', 'the', 'gift', '||comma||', 'you', "can't", 'possibly', 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'know', '||comma||', 'like', 'when', 'someone', 'opens', 'something', 'up', 'and', 'they', 'go', '||comma||', '||quotemark||', 'oh', '||period||', 'tube', 'socks', '||period||', '||quotemark||', 'what', 'are', 'you', 'gonna', 'do', 'about', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', 'guess', "i'll", 'just', 'get', 'invited', 'up', 'to', 'his', 'apartment', 'and', 'see', 'if', "he's", 'got', 'a', 'label', 'maker', '||period||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'get', 'him', 'a', 'gift', 'anyway', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'he', 'did', 'some', 'dental', 'work', 'for', 'me', 'and', 'he', "didn't", 'charge', 'me', 'so', 'i', 'thought', "i'd", 'get', 'him', 'a', 'christmas', 'present', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'if', "you're", 'getting', 'him', 'anything', 'for', 'his', 'birthday', '||comma||', "i'm", 'alarge', '||period||', '||return||', '||return||', 'bonnie:', 'well', '||comma||', 'here', 'we', 'are', '||period||', 'this', 'is', 'the', 'place', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', '||return||', '||return||', 'bonnie:', 'do', 'you', 'like', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'love', 'it', '||exclammark||', 'this', 'is', 'fantastic', '||exclammark||', 'look', 'at', 'this', 'couch', '||comma||', 'is', 'this', 'velvet', '||questionmark||', '||exclammark||', '||return||', '||return||', 'bonnie:', 'are', 'you', 'a', 'velvet', 'fan', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'fan', '||questionmark||', 'i', 'would', 'drape', 'myself', 'in', 'velvet', 'if', 'it', 'were', 'socially', 'acceptable', '||period||', 'and', 'look', 'at', 'this', '||comma||', 'hardwood', 'floors', '||exclammark||', '||return||', '||return||', 'bonnie:', "aren't", 'they', 'great', '||questionmark||', '||leftparen||', 'sees', 'a', 'man', 'enter', 'from', 'the', 'bedroom', '||rightparen||', 'oh', '||comma||', 'scott', '||comma||', 'hi', '||period||', 'this', 'is', 'george', '||period||', 'george', '||comma||', 'this', 'is', 'scott', '||comma||', 'my', 'roommate', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'bewildered', '||rightparen||', 'heh', 'heh', '||period||', '||return||', '||return||', 'bonnie:', 'here', '||comma||', 'check', 'out', 'this', 'view', '||period||', 'if', 'you', 'lean', 'out', 'this', 'window', '||comma||', 'you', 'can', 'see', 'the', 'river', '||period||', '||return||', '||return||', 'george:', 'so', "scott's", 'your', 'roommate', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'bonnie:', 'yes', '||period||', 'oh', '||comma||', "i'm", 'sure', "i've", 'mentioned', 'him', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', "didn't", 'mention', 'it', '||period||', '||return||', '||return||', 'bonnie:', "he's", 'a', 'great', 'guy', '||comma||', "you'll", 'really', 'like', 'him', '||period||', '||return||', '||return||', 'george:', "i'm", 'sure', 'i', 'will', '||period||', '||return||', '||return||', 'jerry:', 'male', 'roommate', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'a', 'male', 'roommate', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'huge', 'problem', '||comma||', 'jerry', '||period||', 'the', 'hardest', 'part', 'about', 'having', 'sex', 'with', 'a', 'woman', 'is', 'getting', 'her', 'to', 'come', 'back', 'to', 'your', 'place', '||exclammark||', "he's", 'already', 'got', 'that', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', "he's", '||dash||', '||dash||', '||return||', '||return||', 'george:', 'no', '||period||', 'believe', 'me', '||comma||', "he's", 'not', '||period||', '||return||', '||return||', 'jerry:', 'so', "he's", 'an', 'eligible', 'receiver', '||period||', '||return||', '||return||', 'george:', "she's", 'confiding', 'in', 'him', 'about', 'our', 'dates', '||period||', 'you', 'always', 'like', 'the', 'person', 'you', 'talk', 'to', 'about', 'the', 'date', 'more', 'than', 'the', 'date', '||exclammark||', "it's", 'just', 'a', 'matter', 'of', 'time', 'till', 'they', 'realize', '||comma||', "'hey", '||comma||', 'we', 'could', 'have', 'sex', '||period||', "'", '||return||', '||return||', 'jerry:', "what's", 'stopping', 'them', '||questionmark||', '||return||', '||return||', 'george:', 'exactly', '||exclammark||', 'you', 'know', 'how', 'they', 'get', 'animals', 'to', 'reproduce', 'in', 'captivity', '||questionmark||', 'they', 'just', 'put', 'them', 'in', 'the', 'same', 'cage', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'he', 'look', 'like', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'the', 'worst', 'part', 'of', 'it', '||period||', 'he', 'looks', 'just', 'like', 'me', '||period||', '||return||', '||return||', 'jerry:', 'he', 'looks', 'like', 'you', 'and', "he's", 'working', 'from', 'the', 'inside', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'look', 'like', 'me', 'and', "i'm", 'working', 'from', 'the', 'outside', '||period||', 'who', 'do', 'you', 'think', 'is', 'in', 'the', 'better', 'position', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'you', '||period||', '||return||', '||return||', 'george:', 'ho', 'ho', '||period||', 'this', 'bizarre', '||questionmark||', 'harrod', '||questionmark||', 'experiment', 'must', 'end', '||exclammark||', '||return||', '||return||', 'jerry:', "we'll", 'take', 'a', 'check', 'please', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'find', 'a', 'way', 'to', 'work', 'this', 'out', '||comma||', 'i', 'love', 'that', 'apartment', '||period||', "it's", 'so', 'cozy', '||comma||', "i'm", 'ensconced', 'in', 'velvet', '||period||', 'you', 'know', '||comma||', 'if', 'it', 'were', 'socially', 'acceptable', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'you', 'would', 'drape', 'yourself', 'in', 'velvet', '||period||', '||return||', '||return||', 'george:', "i've", 'said', 'that', 'before', '||questionmark||', '||return||', '||return||', 'jerry:', 'many', 'times', '||period||', 'you', 'love', 'velvet', '||comma||', 'you', 'want', 'to', 'live', 'in', 'velvet', '||comma||', 'everything', 'with', 'the', 'velvet', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'entering', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'guess', 'what', '||questionmark||', 'i', 'saw', 'newman', 'talking', 'to', 'the', 'super', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'super', 'has', 'keys', 'to', 'your', 'apartment', '||period||', "don't", 'you', 'see', "what's", 'going', 'on', '||questionmark||', 'newman', 'is', 'planning', 'a', 'sneak', 'attack', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'maybe', "he's", 'got', 'no', 'hot', 'water', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'alright', '||comma||', 'fine', '||period||', 'you', 'sit', 'there', 'and', 'you', 'watch', 'while', 'newman', 'takes', 'over', 'the', 'world', '||period||', 'but', "he'd", 'be', 'a', 'horrible', 'leader', '||period||', 'and', 'you', 'know', "who's", 'gonna', 'suffer', '||questionmark||', 'the', 'little', 'people', '||semicolon||', 'you', 'and', 'george', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'through', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'i', 'talked', 'to', 'arthur', 'jobanian', '||period||', 'yeah', '||comma||', 'the', "drake's", 'wedding', '||questionmark||', "that's", 'off', '||period||', '||return||', '||return||', 'jerry:', 'the', 'wedding', 'is', 'off', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'drake', '||comma||', 'he', 'found', 'out', 'that', 'the', 'wedding', 'is', 'on', 'the', 'same', 'day', 'as', 'the', 'super', 'bowl', '||period||', 'so', 'he', 'wanted', 'to', 'postpone', 'it', '||comma||', 'they', 'got', 'in', 'a', 'big', 'argument', 'and', '*phlf*', "it's", 'over', '||period||', '||return||', '||return||', 'george:', 'the', 'wedding', 'is', 'off', '||period||', 'now', 'you', 'can', 'go', 'to', 'the', 'super', 'bowl', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'call', 'tim', 'whatley', 'and', 'ask', 'for', 'the', 'tickets', 'back', '||period||', '||return||', '||return||', 'george:', 'you', 'just', 'gave', 'them', 'to', 'him', 'two', 'days', 'ago', '||comma||', "he's", 'gotta', 'give', 'you', 'a', 'grace', 'period', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'even', 'vaguely', 'familiar', 'with', 'the', 'concept', 'of', 'giving', '||questionmark||', "there's", 'no', 'grace', 'period', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "didn't", 'he', 'regift', 'the', 'label', 'maker', '||questionmark||', '||return||', '||return||', 'jerry:', 'possibly', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', 'he', 'can', 'regift', '||comma||', 'why', "can't", 'you', 'degift', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'may', 'have', 'a', 'point', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'a', 'point', '||comma||', 'i', 'have', 'a', 'point', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'call', 'him', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'risk', '||comma||', "it's", 'a', 'game', 'of', 'world', 'domination', 'being', 'played', 'by', 'two', 'guys', 'who', 'can', 'barely', 'run', 'their', 'own', 'lives', '||period||', '||leftparen||', 'picks', 'up', 'phone', 'and', 'dials', '||rightparen||', 'hello', 'tim', '||questionmark||', 'yeah', '||comma||', 'hi', '||comma||', "it's", 'jerry', 'seinfeld', '||comma||', 'remember', 'those', 'tickets', 'i', 'gave', 'you', '||questionmark||', 'well', 'it', 'turns', 'out', 'i', 'can', 'use', 'them', '||period||', 'oh', '||comma||', 'you', 'do', '||questionmark||', 'i', 'understand', '||period||', 'okay', '||period||', 'bye', '||period||', 'he', 'already', 'made', 'plans', '||comma||', 'he', "can't", 'change', 'them', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'eating', 'a', 'pickle', '||rightparen||', 'well', "they're", 'his', 'tickets', '||comma||', 'he', 'can', 'do', 'what', 'he', 'wants', 'with', 'them', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'i', 'gotta', 'go', '||period||', "i'm", 'heading', 'over', 'to', "bonnie's", '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'gonna', 'do', 'about', 'the', 'roommate', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'gotta', 'try', 'and', 'find', 'a', 'way', 'to', 'switch', 'places', 'with', 'him', '||period||', "it's", 'like', 'a', 'sigfried', 'and', 'roy', 'trick', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'the', 'pickle', 'breath', 'is', 'a', 'good', 'start', '||period||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||comma||', 'may', 'i', 'come', 'in', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'squeezing', 'himself', 'through', 'the', 'narrow', 'space', '||rightparen||', 'nothing', '||comma||', 'just', 'being', 'neighborly', '||period||', 'do', 'you', 'wanna', 'hang', 'out', '||questionmark||', 'shoot', 'the', 'breeze', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'letting', 'you', 'cheat', '||comma||', 'newman', '||period||', "you're", 'not', 'getting', 'anywhere', 'near', 'that', 'board', '||period||', '||return||', '||return||', 'newman:', 'jerry', '||questionmark||', "i'm", 'a', 'little', 'insulted', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'a', 'little', 'anything', '||comma||', 'newman', '||period||', 'so', 'just', 'pack', 'it', 'up', 'and', 'move', 'it', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'leaving', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'what', 'are', 'you', 'doing', 'for', 'the', 'super', 'bowl', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||comma||', 'watch', 'it', 'on', 'tv', 'i', 'guess', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'newman:', 'well', 'if', 'you', 'watch', 'closely', 'enough', '||comma||', 'you', 'just', 'might', 'see', 'me', '||period||', "i'll", 'be', 'the', 'one', 'waving', 'to', 'the', 'camera', 'from', 'my', 'seat', 'on', 'the', 'forty', 'yard', 'line', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'the', 'super', 'bowl', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', 'i', 'am', '||comma||', 'a', 'guy', 'on', 'my', 'mail', 'route', 'just', 'got', 'a', 'couple', 'of', 'tickets', 'and', 'he', 'offered', 'one', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', "what's", 'his', 'name', '||questionmark||', '||return||', '||return||', 'newman:', 'tim', 'whatley', '||period||', '||return||', '||return||', 'jerry:', "that's", 'my', 'ticket', '||exclammark||', '||return||', '||return||', 'newman:', 'is', 'it', '||questionmark||', '||exclammark||', 'ohhh', '||comma||', 'well', 'if', 'only', "you'd", 'known', '||comma||', 'you', 'could', 'have', 'saved', 'some', 'time', 'and', 'given', 'it', 'directly', 'to', 'me', '||exclammark||', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'newman', 'leaves', '||rightparen||', 'newman', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'a', 'movie', '||period||', 'good', 'choice', '||period||', '||return||', '||return||', 'bonnie:', 'thank', 'scott', '||period||', 'he', 'recommended', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'scott', '||comma||', 'scott', '||period||', "he's", 'really', 'great', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'bonnie:', 'yes', 'he', 'is', '||period||', '||return||', '||return||', 'george:', 'yes', 'he', 'is', '||period||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'when', 'you', 'come', 'out', 'of', 'the', 'shower', 'and', 'you', 'put', 'your', 'robe', 'on', '||comma||', 'do', 'you', 'cinch', 'it', 'real', 'tight', '||comma||', 'are', 'you', 'concerned', 'about', 'that', '||questionmark||', '||return||', '||return||', 'bonnie:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'you', 'hold', 'the', 'neck', 'together', 'with', 'one', 'hand', '||comma||', 'or', 'are', 'you', 'just', 'letting', 'it', 'flap', 'in', 'the', 'breeze', '||questionmark||', '||return||', '||return||', 'bonnie:', 'george', '||comma||', "you're", 'being', 'ridiculous', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'massage', 'situation', '||questionmark||', '||return||', '||return||', 'bonnie:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'is', 'there', 'any', 'work', 'being', 'done', '||questionmark||', 'is', 'there', 'any', 'rubbing', '||comma||', 'touching', '||comma||', 'finger', 'manipulation', 'on', 'the', 'other', 'person', '||comma||', 'and', 'if', 'so', '||comma||', "who's", 'making', 'the', 'request', '||questionmark||', '||return||', '||return||', 'bonnie:', 'george', '||comma||', 'would', 'you', 'just', 'stop', '||questionmark||', '||return||', '||return||', 'george:', 'say', 'you', 'go', 'to', 'the', 'bathroom', 'at', 'two', "o'clock", 'in', 'the', 'morning', '||comma||', "what's", 'the', 'outfit', '||questionmark||', 'i', 'mean', '||comma||', 'you', 'dressing', 'up', 'or', 'is', 'it', 'come', 'as', 'you', 'are', '||questionmark||', '||return||', '||return||', 'bonnie:', 'george', '||comma||', 'what', 'is', 'wrong', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', "what's", 'wrong', '||comma||', 'a', 'grown', 'woman', 'with', 'a', 'male', 'roommate', '||exclammark||', "it's", 'unnatural', '||comma||', "it's", 'an', 'abomination', '||exclammark||', '||return||', '||return||', 'scott:', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||return||', '||return||', 'scott:', 'how', 'ya', 'going', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'good', '||period||', '||return||', '||return||', 'scott:', '||leftparen||', 'to', 'bonnie', '||rightparen||', 'are', 'you', 'gonna', 'need', 'the', 'bathroom', '||questionmark||', "'cause", "i'm", 'gonna', 'jump', 'in', 'the', 'shower', '||period||', '||return||', '||return||', 'bonnie:', 'no', '||comma||', 'just', 'throw', 'my', 'bras', 'out', 'of', 'the', 'way', '||period||', '||return||', '||return||', 'tim:', 'well', '||comma||', 'this', 'is', 'my', 'building', '||period||', '||return||', '||return||', 'elaine:', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'tim:', 'this', 'was', 'fun', '||comma||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'tim:', 'so', '||comma||', "i'll", 'call', '||period||', '||return||', '||return||', 'elaine:', "aren't", 'you', 'gonna', 'invite', 'me', 'upstairs', '||questionmark||', '||return||', '||return||', 'tim:', 'upstairs', '||questionmark||', 'you', 'wanna', 'go', 'upstairs', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'would', 'love', 'to', 'go', 'upstairs', '||period||', '||return||', '||return||', 'tim:', 'elaine', '||comma||', 'you', 'are', 'something', 'else', '||period||', 'no', 'one', 'can', 'ever', 'put', 'a', 'label', 'on', 'you', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', "we'll", 'see', '||period||', '||return||', '||return||', 'jerry:', 'newman', '||period||', "he's", 'going', 'with', 'newman', '||period||', '||return||', '||return||', 'george:', 'how', 'does', 'tim', 'whatley', 'even', 'know', 'newman', '||questionmark||', '||return||', '||return||', 'jerry:', "newman's", 'his', 'mailman', '||period||', '||return||', '||return||', 'george:', 'who', 'goes', 'to', 'the', 'super', 'bowl', 'with', 'their', 'mailman', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', 'goes', '*anywhere*', 'with', 'newman', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', "he's", 'merry', '||period||', '||return||', '||return||', 'jerry:', 'he', 'is', 'merry', '||comma||', "i'll", 'give', 'him', 'that', '||period||', '||leftparen||', 'notices', 'a', 'cactus', 'on', 'the', 'table', '||rightparen||', "what's", 'this', 'plant', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'had', 'a', 'little', 'tiff', 'with', 'bonnie', 'about', 'the', 'roommate', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', 'the', 'cactus', 'will', 'smooth', 'things', 'over', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'guess', 'what', '||questionmark||', "i'm", 'going', 'to', 'the', 'super', 'bowl', 'with', 'tim', 'whatley', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'went', 'out', 'for', 'coffee', 'last', 'night', 'and', 'he', 'offered', 'me', 'a', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'the', 'label', 'maker', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'well', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'minute', '||comma||', "that's", 'my', 'ticket', '||exclammark||', 'you', "didn't", 'even', 'want', 'to', 'go', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'totally', 'out', 'of', 'the', 'blue', '||period||', 'we', 'went', 'upstairs', 'to', 'his', 'apartment', '||comma||', 'you', 'know', '||comma||', 'to', 'look', 'for', 'the', 'label', 'maker', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'how', 'did', 'you', 'get', 'up', 'there', '||questionmark||', 'did', 'you', 'say', 'you', 'had', 'to', 'use', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'then', "how'd", 'you', 'get', 'up', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'said', '||comma||', '||quotemark||', 'do', 'you', 'wanna', 'go', 'upstairs', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', 'and', "there's", 'you', 'ticket', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'why', "you're", 'going', 'to', 'the', 'super', 'bowl', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'go', 'out', 'with', 'a', 'guy', 'one', 'time', '||comma||', 'you', 'ask', 'him', 'to', 'go', 'upstairs', 'like', "you're", 'mae', 'west', '||questionmark||', 'of', 'course', "he's", 'gonna', 'try', 'and', 'get', 'you', 'alone', 'for', 'the', 'weekend', '||period||', '||return||', '||return||', 'elaine:', 'you', 'mean', 'just', 'because', 'i', 'asked', 'him', 'to', 'go', 'upstairs', '||comma||', 'he', 'thinks', "he's", 'going', 'downtown', '||questionmark||', '||return||', '||return||', 'jerry:', 'obviously', '||period||', '||return||', '||return||', 'elaine:', "you're", 'crazy', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'what', 'happened', 'when', 'you', 'got', 'upstairs', '||questionmark||', '||return||', '||return||', 'elaine:', 'as', 'soon', 'as', 'we', 'walked', 'in', '||comma||', 'he', 'got', 'a', 'call', 'from', 'one', 'of', 'his', 'patients', 'with', 'an', 'impacted', 'molar', 'or', 'something', 'so', 'he', 'had', 'to', 'leave', '||period||', 'i', "didn't", 'even', 'get', 'a', 'chance', 'to', 'look', 'for', 'the', 'label', 'maker', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', 'i', "don't", 'trust', 'this', 'guy', '||period||', 'i', 'think', 'he', 'regifted', '||comma||', 'he', 'degifted', '||comma||', 'and', 'now', "he's", 'using', 'an', 'upstairs', 'invite', 'as', 'a', 'springboard', 'to', 'a', 'super', 'bowl', 'sex', 'romp', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'watching', 'your', 'door', '||period||', '||return||', '||return||', 'jerry:', 'my', 'door', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'from', 'my', 'peephole', '||period||', 'fisheye', '||comma||', 'sees', 'all', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'outside', '||rightparen||', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'newman', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'fleeing', 'to', 'the', 'bedroom', '||rightparen||', 'damn', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'after', 'entering', '||rightparen||', 'the', 'bedroom', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'see', 'you', '||comma||', 'newman', '||exclammark||', 'i', 'see', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'taking', 'the', 'congo', 'as', 'a', 'penalty', '||exclammark||', '||return||', '||return||', 'elaine:', "i've", 'got', 'a', 'confession', 'to', 'make', '||period||', '||return||', '||return||', 'tim:', 'oh', '||questionmark||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'got', 'super', 'bowl', 'fever', '||period||', '||return||', '||return||', 'tim:', 'oh', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'elaine:', 'so', 'where', 'are', 'we', 'staying', '||questionmark||', '||return||', '||return||', 'tim:', 'oh', '||comma||', 'the', 'ambassador', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'big', 'room', '||questionmark||', '||return||', '||return||', 'tim:', "it's", 'a', 'regular', 'room', '||comma||', 'but', "it's", 'right', 'downtown', '||period||', '||return||', '||return||', 'elaine:', 'downtown', '||questionmark||', '||return||', '||return||', 'tim:', 'right', 'downtown', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'they', 'have', 'there', '||comma||', 'a', 'couple', 'of', 'beds', '||questionmark||', '||return||', '||return||', 'tim:', 'why', '||questionmark||', 'you', 'bringing', 'someone', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', "don't", 'you', 'think', 'there', 'should', 'be', 'two', 'beds', '||questionmark||', "there's", 'two', 'of', 'us', '||period||', '||return||', '||return||', 'bonnie:', 'oh', '||comma||', 'a', 'cactus', '||period||', '||return||', '||return||', 'george:', 'they', "don't", 'need', 'any', 'water', '||comma||', 'so', 'you', "don't", 'have', 'to', 'keep', 'taking', 'them', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'scott:', 'well', '||comma||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'bonnie:', 'i', 'asked', 'scott', 'to', 'move', 'out', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'oh', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'she', 'kicked', 'him', 'out', 'of', 'the', 'apartment', '||period||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', "it's", 'just', 'me', 'and', 'her', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'she', 'rearranged', 'her', 'whole', 'life', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'i', 'guess', 'she', 'did', '||period||', "he's", 'gone', '||comma||', 'now', "i'm", 'the', 'man', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'a', 'good', 'role', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "it's", 'not', '||period||', '||return||', '||return||', 'jerry:', 'you', 'unwittingly', 'made', 'a', 'major', 'commitment', '||period||', "that's", 'a', 'lot', 'of', 'pressure', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'you', 'wanted', 'to', 'be', 'ensconced', 'in', 'velvet', '||comma||', "you're", 'buried', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'the', 'perfect', 'situation', 'here', '||comma||', 'he', 'was', 'shouldering', 'half', 'the', 'load', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'shouldering', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'walking', 'towards', 'the', 'door', '||rightparen||', 'i', "couldn't", 'leave', 'well', 'enough', 'alone', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'gotta', 'go', 'help', 'her', 'tape', 'up', 'all', 'his', 'boxes', 'and', 'get', 'them', 'ready', 'for', 'shipping', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', 'here', '||period||', 'take', "whatley's", 'label', 'maker', '||comma||', 'i', "don't", 'want', 'to', 'see', 'it', 'again', '||period||', '||return||', '||return||', 'george:', 'thanks', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'rolling', 'the', 'dice', '||rightparen||', 'yeah', '||period||', 'i', 'am', 'taking', 'over', 'south', 'america', 'and', 'there', "ain't", 'nothing', 'you', 'can', 'do', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'too', 'bad', 'about', 'that', 'super', 'bowl', 'ticket', '||comma||', 'eh', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', 'yeah', '||period||', 'i', 'just', 'hope', 'tim', "whatley's", 'electric', 'bills', "don't", 'suddenly', 'get', 'lost', 'in', 'the', 'mail', '||comma||', 'or', 'it', 'could', 'be', 'lights', 'out', 'for', 'him', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'out', '||rightparen||', 'thanks', 'for', 'having', 'me', 'over', '||comma||', 'guys', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'tim:', 'hey', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'tim', 'whatley', '||period||', 'out', 'scalping', '||questionmark||', '||return||', '||return||', 'tim:', 'ah', '||comma||', 'see', '||comma||', 'now', "i've", 'been', 'thinking', 'a', 'lot', 'about', 'what', 'happened', 'and', 'i', 'feel', 'horrible', '||period||', 'listen', '||comma||', 'i', 'want', 'to', 'give', 'you', 'a', 'ticket', 'back', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'serious', '||comma||', 'what', 'about', 'elaine', '||questionmark||', '||return||', '||return||', 'tim:', 'oh', '||comma||', 'elaine', '||period||', 'yeah', '||comma||', 'well', '||comma||', 'things', 'just', "didn't", 'work', 'out', 'like', 'i', 'thought', 'they', 'would', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'notices', 'a', 'car', 'being', 'jacked', 'up', 'by', 'a', 'tow', 'truck', '||rightparen||', 'hey', '||comma||', "isn't", 'this', "kramer's", 'car', '||questionmark||', '||leftparen||', 'yelling', 'up', '||rightparen||', 'hey', '||comma||', 'cosmo', '||exclammark||', '||exclammark||', "they're", 'towing', 'your', 'car', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'running', 'to', 'the', 'window', '||rightparen||', 'what', '||questionmark||', '||exclammark||', 'not', 'my', 'car', '||exclammark||', '||exclammark||', 'hey', '||exclammark||', '||exclammark||', "they're", 'towing', 'my', 'car', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'taking', 'the', 'board', 'with', 'me', '||period||', '||return||', '||return||', 'tim:', 'so', '||comma||', 'i', 'guess', "i'll", 'see', 'you', 'at', 'the', 'game', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'see', 'you', 'there', '||period||', '||return||', '||return||', 'bonnie:', 'hi', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'what', 'happened', '||questionmark||', "where's", '||comma||', "where's", 'all', 'the', 'stuff', '||questionmark||', '||return||', '||return||', 'bonnie:', "it's", 'gone', '||period||', 'it', 'was', 'all', 'his', '||period||', 'is', 'this', 'a', 'label', 'maker', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'table', '||comma||', 'the', 'stereo', '||comma||', 'the', 'vcr', '||comma||', 'the', 'velvet', 'couch', '||comma||', "where's", 'the', 'velvet', '||questionmark||', '||return||', '||return||', 'bonnie:', 'they', 'were', 'his', '||period||', 'besides', '||comma||', 'we', "don't", 'need', 'any', 'of', 'those', 'things', '||period||', 'we', 'have', 'each', 'other', '||period||', '||return||', '||return||', 'newman:', 'are', 'you', 'sure', 'you', 'know', 'where', 'the', 'impound', 'yard', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'stop', 'stalling', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'newman:', 'i', "can't", 'think', '||comma||', "there's", 'all', 'this', 'noise', '||period||', '||return||', '||return||', 'kramer:', 'or', 'is', 'it', 'because', "i've", 'built', 'a', 'stronghold', 'around', 'greenland', '||questionmark||', "i've", 'driven', 'you', 'out', 'of', 'western', 'europe', 'and', "i've", 'left', 'you', 'teetering', 'on', 'the', 'brink', 'of', 'complete', 'annihilation', '||period||', '||return||', '||return||', 'newman:', "i'm", 'not', 'beaten', 'yet', '||period||', 'i', 'still', 'have', 'armies', 'in', 'the', 'ukraine', '||period||', '||return||', '||return||', 'kramer:', 'ha', 'ha', '||comma||', 'the', 'ukraine', '||period||', 'do', 'you', 'know', 'what', 'the', 'ukraine', 'is', '||questionmark||', "it's", 'a', 'sitting', 'duck', '||period||', 'a', 'road', 'apple', '||comma||', 'newman', '||period||', 'the', 'ukraine', 'is', 'weak', '||period||', "it's", 'feeble', '||period||', 'i', 'think', "it's", 'time', 'to', 'put', 'the', 'hurt', 'on', 'the', 'ukraine', '||period||', '||return||', '||return||', 'ukrainian:', 'i', 'come', 'from', 'ukraine', '||period||', 'you', 'not', 'say', 'ukraine', 'weak', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', "we're", 'playing', 'a', 'game', 'here', '||comma||', 'pal', '||period||', '||return||', '||return||', 'ukrainian:', 'ukraine', 'is', 'game', 'to', 'you', '||questionmark||', '||exclammark||', 'howbout', 'i', 'take', 'your', 'little', 'board', 'and', 'smash', 'it', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||comma||', 'tim', '||period||', '||return||', '||return||', 'tim:', '||leftparen||', 'startled', '||rightparen||', 'elaine', '||comma||', 'hi', '||period||', '||return||', '||return||', 'elaine:', "don't", 'worry', '||comma||', 'tim', '||period||', 'i', "didn't", 'come', 'by', 'to', 'yell', 'at', 'you', '||comma||', 'i', "didn't", 'come', 'by', 'for', 'that', 'at', 'all', '||period||', 'i', 'just', 'came', 'by', 'to', 'pick', 'up', 'my', 'label', 'maker', '||period||', 'i', 'gave', 'you', 'a', 'label', 'maker', 'and', 'now', 'i', 'would', 'like', 'to', 'have', 'it', 'back', '||period||', '||return||', '||return||', 'tim:', 'but', 'you', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', 'but', 'you', 'gave', 'me', 'a', 'ticket', 'to', 'the', 'super', 'bowl', '||period||', 'hand', 'it', 'over', '||comma||', 'whatley', '||period||', '||return||', '||return||', 'tim:', 'uh', '||comma||', 'ok', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'have', 'the', 'label', 'maker', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'tim:', 'uh', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'i', 'knew', 'it', '||exclammark||', "you're", 'a', 'regifter', '||exclammark||', '||return||', '||return||', 'tim:', 'oh', '||comma||', 'yeah', '||comma||', 'some', 'gift', '||period||', 'that', 'thing', "didn't", 'work', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'tim:', 'you', 'put', 'a', 'label', 'on', 'something', '||comma||', 'then', 'ten', 'minutes', 'later', 'it', 'would', 'peel', 'right', 'off', '||period||', 'it', 'was', 'the', 'worst', 'gift', 'i', 'ever', 'got', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'visibly', 'upset', '||rightparen||', 'well', '||comma||', 'i', 'bought', 'it', 'for', 'you', 'because', 'you', 'were', 'so', 'nice', 'to', 'me', 'for', 'not', 'charging', 'me', 'for', 'the', 'dental', 'work', '||period||', 'the', 'way', 'you', 'worked', 'on', 'my', 'filling', '||comma||', 'you', 'were', 'so', '||comma||', 'so', 'gentle', 'and', 'so', 'caring', 'and', 'so', 'sensitive', '||period||', '||return||', '||return||', 'tim:', 'oh', '||comma||', 'elaine', '||exclammark||', '||return||', '||return||', 'jerry:', 'h', '||period||', '||period||', '||period||', 'g', '||period||', '||period||', '||period||', 'f', '||period||', 'seat', 'four', '||period||', 'one', '||comma||', 'two', '||comma||', 'three', '||period||', '||period||', '||period||', 'f', '||dash||', '||dash||', 'hello', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', '||comma||', 'jerry', '||period||', 'tim', "couldn't", 'make', 'it', '||comma||', "he's", 'in', 'love', '||period||', "isn't", 'that', 'wonderful', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'enchanting', '||period||', '||return||', '||return||', 'bonnie:', 'hi', '||period||', '||return||', '||return||', 'george:', "here's", 'the', 'tv', '||period||', 'i', 'know', 'you', 'wanted', 'to', 'watch', 'the', 'super', 'bowl', '||period||', 'do', 'you', 'at', 'least', 'have', 'some', 'towels', 'we', 'could', 'sit', 'on', '||questionmark||', "it's", '||comma||', 'like', '||comma||', 'a', 'four', 'hour', 'game', '||period||', '||return||', '||return||', 'bonnie:', 'george', '||comma||', "scott's", 'gonna', 'drop', 'by', '||period||', 'he', 'said', 'he', 'never', 'got', 'his', 'boxes', '||period||', "i'll", 'get', 'the', 'towels', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'internally', '||rightparen||', 'how', 'am', 'i', 'gonna', 'get', 'out', 'of', 'this', '||questionmark||', 'think', 'costanza', '||comma||', 'think', '||exclammark||', '||return||', '||return||', 'bonnie:', 'here', 'we', 'are', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'do', 'you', 'know', '||comma||', 'bonnie', '||comma||', 'i', 'just', 'had', 'a', 'pretty', 'wild', 'idea', '||period||', '||return||', '||return||', 'bonnie:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', '||comma||', 'uh', '||comma||', "i'm", 'not', 'sure', 'how', 'you', 'pronounce', 'it', 'or', 'anything', '||comma||', 'but', 'i', '||comma||', 'uh', '||comma||', 'i', 'believe', "it's", 'mnage', 'trois', '||questionmark||', '||return||', '||return||', 'bonnie:', 'what', '||questionmark||', '||return||', '||return||', 'scott:', 'hi', '||period||', '||return||', '||return||', 'bonnie:', 'scott', '||exclammark||', 'remember', 'what', 'we', 'talked', 'about', 'the', 'other', 'day', '||questionmark||', 'george', 'is', 'into', 'it', '||period||', '||return||', '||return||', 'scott:', 'oh', 'really', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', 'great', 'streak', 'of', 'luck', "i'm", 'having', '||period||', 'first', '||comma||', 'kramer', 'almost', 'beat', 'me', 'at', 'risk', 'but', 'i', 'narrowly', 'escaped', '||comma||', 'and', 'then', 'tim', 'whatley', 'gives', 'me', 'his', 'super', 'bowl', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'move', 'over', 'at', 'all', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', 'and', 'then', '||comma||', 'just', 'as', "i'm", 'about', 'to', 'go', '||comma||', 'these', 'boxes', 'show', 'up', 'at', 'the', 'post', 'office', 'with', 'no', 'labels', '||period||', 'no', 'labels', '||comma||', 'jerry', '||period||', 'you', 'know', 'what', 'that', 'means', '||questionmark||', 'freebies', '||exclammark||', '||exclammark||', 'i', 'got', 'this', 'great', 'mini', '||dash||', 'tv', 'and', 'a', 'vcr', '||comma||', 'oh', "it's", 'unbelievable', '||period||', '||return||', '||return||', 'jerry:', 'an', 'inch', '||exclammark||', 'can', 'you', 'move', 'over', 'an', 'inch', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'gary:', 'hey', 'george', '||period||', '||return||', '||return||', 'george:', 'gary', '||questionmark||', 'well', '||comma||', 'well', '||comma||', 'well', 'well', '||period||', 'where', 'the', "hell've", 'you', 'been', '||questionmark||', "i've", 'been', 'leaving', 'you', 'phone', 'messages', 'for', 'months', '||period||', '||return||', '||return||', 'gary:', 'i', 'know', '||period||', "i've", 'been', 'pretty', 'busy', '||period||', '||return||', '||return||', 'george:', 'busy', '||period||', "don't", 'give', 'me', 'busy', '||period||', "who's", 'not', 'busy', '||questionmark||', "i'm", 'busy', '||comma||', "we're", 'all', 'busy', '||comma||', "everybody's", 'busy', '||period||', 'all', 'right', '||comma||', 'tell', 'me', '||comma||', "what's", 'kept', 'you', 'so', 'busy', '||questionmark||', '||return||', '||return||', 'gary:', 'mostly', 'chemotherapy', '||period||', "'kay", '||comma||', "i'll", 'see', 'you', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'car', 'as', 'it', 'accelerates', 'away', '||rightparen||', 'hey', 'pig', '||exclammark||', '||return||', '||return||', 'cop:', '||leftparen||', 'at', 'car', '||rightparen||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'you', 'called', 'the', 'cop', 'a', 'pig', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'was', 'yelling', 'at', 'the', 'litterbug', '||period||', 'i', 'mean', 'this', 'is', 'my', 'town', '||period||', 'you', "don't", 'throw', 'trash', 'on', 'the', 'streets', 'of', 'my', 'town', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'you', 'explain', 'that', 'to', 'the', 'cop', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'fled', 'the', 'scene', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', 'buddy', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'i', '||comma||', 'i', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'i', 'need', 'to', 'talk', 'to', 'jerry', 'privately', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'what', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'aw', 'come', 'on', 'george', '||comma||', 'you', 'can', 'share', 'it', 'with', 'me', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', "you're", 'hurting', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'gonna', 'share', 'it', 'with', 'me', 'next', 'time', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'swear', '||comma||', 'i', 'swear', '||exclammark||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', 'all', 'right', '||comma||', "i'm", 'looking', 'forward', 'to', 'it', '||period||', '||return||', '||return||', 'george:', 'right', '||comma||', 'i', 'got', 'news', '||period||', 'you', 'ready', '||questionmark||', '||leftparen||', 'deep', 'breath', '||rightparen||', 'gary', 'fogel', 'had', 'cancer', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'i', 'knew', '||period||', '||return||', '||return||', 'george:', 'you', 'knew', '||questionmark||', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'told', 'me', 'a', 'few', 'months', 'ago', '||period||', '||return||', '||return||', 'george:', 'why', 'did', 'he', 'tell', 'you', 'and', 'not', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'how', 'are', 'you', 'closer', 'to', 'him', 'than', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'is', 'he', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', "he's", 'fine', '||comma||', 'fine', '||period||', 'he', 'was', 'in', 'bad', 'shape', 'for', 'a', 'while', 'though', '||period||', '||return||', '||return||', 'george:', 'huh', '||comma||', 'really', '||questionmark||', 'how', 'bad', '||questionmark||', 'was', 'he', 'on', 'his', 'death', 'bed', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'he', 'was', 'on', 'his', 'regular', 'bed', '||period||', '||return||', '||return||', 'george:', 'so', 'why', "didn't", 'you', 'tell', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'swore', 'me', 'to', 'secrecy', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'like', "you're", 'my', 'wife', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'still', 'think', 'you', 'shoulda', 'told', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'believe', 'me', '||comma||', 'you', 'were', 'better', 'off', 'not', 'knowing', '||period||', "it's", 'not', 'easy', 'to', 'deal', 'with', 'someone', 'in', 'a', 'situation', 'like', 'this', '||period||', 'i', 'was', 'so', 'nice', 'to', 'him', 'i', 'almost', 'made', 'myself', 'sick', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'wanna', 'talk', 'to', 'him', 'about', 'this', '||period||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'you', 'let', 'him', 'have', 'it', '||period||', '||return||', '||return||', 'george:', 'mmm', '||dash||', 'mm', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'he', 'not', 'to', 'tell', 'you', 'about', 'his', 'life', '||dash||', 'threatening', 'illness', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'what', "i'm", 'saying', '||period||', '||return||', '||return||', 'jerry:', 'his', 'illness', 'is', 'your', 'business', '||period||', '||return||', '||return||', 'george:', 'if', 'not', 'mine', '||comma||', 'whose', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'not', 'now', '||comma||', 'when', '||questionmark||', '||return||', '||return||', 'elaine:', 'were', 'you', 'just', 'talking', 'about', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'an', 'old', 'friend', 'of', 'ours', '||comma||', 'gary', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'the', 'guy', 'with', 'cancer', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||comma||', 'yelling', '||rightparen||', 'you', 'told', 'her', '||questionmark||', "she's", 'not', 'your', 'wife', '||exclammark||', '||return||', '||return||', 'jerry:', 'if', 'i', 'told', 'you', '||comma||', 'you', 'woulda', 'given', 'it', 'away', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'think', 'i', 'can', 'keep', 'a', 'secret', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'he', "would've", 'read', 'your', 'face', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'trust', 'my', 'poker', 'face', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'ever', 'win', 'at', 'poker', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shamefaced', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'oh', '||comma||', 'i', 'just', 'saw', 'your', 'old', 'boyfriend', 'on', 'tv', '||period||', '||return||', '||return||', 'elaine:', 'egh', '||comma||', 'jake', 'jarmel', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'i', 'really', 'liked', 'those', 'glasses', 'he', 'was', 'wearing', '||period||', "where'd", 'he', 'get', 'those', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'you', "don't", 'wear', 'glasses', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'but', 'i', 'need', 'a', 'new', 'look', '||comma||', "i'm", 'stagnating', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'say', '||comma||', 'as', 'a', 'glasses', 'wearer', 'i', 'take', 'exception', 'to', 'that', '||period||', "that's", 'like', 'me', 'buying', 'a', 'wheelchair', 'to', 'cruise', 'around', 'in', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i've", 'considered', 'that', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'look', '||comma||', 'how', 'do', 'i', 'get', 'in', 'touch', 'with', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "he's", 'having', 'a', 'two', 'day', 'book', 'signing', 'at', 'waldens', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'we', 'had', 'a', 'really', 'bad', 'break', '||dash||', 'up', '||period||', '||return||', '||return||', 'jerry:', 'the', 'jujy', 'fruits', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'upset', '||rightparen||', 'yeah', '||comma||', 'the', 'jujy', 'fruits', '||period||', '||return||', '||return||', 'jake:', 'okay', '||comma||', 'k', '||dash||', 'man', '||comma||', 'enjoy', 'the', 'book', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'thank', 'you', '||period||', 'listen', 'jake', '||comma||', 'uh', '||comma||', 'where', 'did', 'you', 'get', 'those', 'eyeglass', 'frames', '||questionmark||', '||return||', '||return||', 'jake:', 'i', "can't", 'tell', 'you', 'that', '||period||', '||return||', '||return||', 'kramer:', 'so', 'you', "don't", 'know', 'where', 'you', 'got', "'em", '||questionmark||', '||return||', '||return||', 'jake:', 'yes', 'i', 'do', '||period||', 'but', 'i', "don't", 'want', 'anyone', 'else', 'to', 'have', 'them', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'peculiar', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'eh', '||comma||', "there's", 'that', 'woman', 'that', 'never', 'talks', 'to', 'anybody', '||period||', '||return||', '||return||', 'gary:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'every', 'day', 'she', 'comes', 'in', '||comma||', 'she', 'sits', 'at', 'that', 'table', 'and', 'reads', '||period||', 'never', 'talks', 'to', 'anybody', '||period||', '||return||', '||return||', 'gary:', 'oh', '||comma||', 'i', 'talked', 'to', 'debby', 'bibelo', '||period||', 'she', 'said', 'to', 'say', 'hi', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleasant', 'surprise', '||rightparen||', 'really', '||questionmark||', '||leftparen||', 'admonishing', '||rightparen||', 'you', 'know', 'gary', '||comma||', 'i', 'really', 'have', 'to', 'say', '||comma||', "i'm", 'a', 'little', 'bit', 'hurt', 'that', 'you', "didn't", 'decide', 'to', 'confide', 'in', 'me', '||period||', '||return||', '||return||', 'gary:', 'well', 'frankly', '||comma||', 'you', "can't", 'keep', 'a', 'secret', '||period||', 'you', 'know', '||comma||', "you'd", 'get', 'two', 'pair', '||comma||', 'the', 'whole', 'table', 'knows', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'still', 'think', 'it', 'was', 'wrong', '||period||', '||return||', '||return||', 'gary:', 'right', '||comma||', 'well', "i'm", 'sorry', '||comma||', 'all', 'right', '||period||', 'i', 'guess', 'i', 'was', 'just', 'thinking', 'of', 'myself', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'well', '||comma||', 'obviously', '||rightparen||', 'yes', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'so', 'i', 'called', 'the', 'litterbug', 'a', 'pig', '||comma||', 'not', 'you', '||period||', 'i', 'like', 'policeman', '||period||', 'i', 'wanted', 'to', 'be', 'a', 'policeman', '||period||', '||return||', '||return||', 'cop:', 'yeah', '||questionmark||', 'so', 'why', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'scared', 'of', 'being', 'shot', '||period||', '||return||', '||return||', 'cop:', 'mr', 'kramer', '||comma||', 'let', 'me', 'tell', 'you', 'a', 'story', '||period||', 'in', 'nineteen', '||dash||', 'seventy', '||dash||', 'nine', 'i', 'ticketed', 'a', 'brown', 'dodge', 'diplomat', 'for', 'parking', 'in', 'a', 'church', 'zone', '||period||', 'that', 'fine', 'was', 'never', 'paid', '||comma||', 'and', 'since', 'then', 'that', 'scofflaw', 'has', 'piled', 'up', 'more', 'parking', 'tickets', 'than', 'anyone', 'in', 'new', 'york', 'city', '||period||', 'for', 'sixteen', 'years', 'i', 'pursued', 'him', '||comma||', 'only', 'to', 'see', 'him', 'give', 'me', 'the', 'slip', 'time', 'and', 'time', 'again', '||period||', 'i', 'never', 'got', 'a', 'clean', 'look', 'at', 'his', 'face', '||comma||', 'but', "he's", 'become', 'my', "'white", "whale'", '||period||', 'mr', 'kramer', '||comma||', 'that', 'day', 'was', 'yesterday', '||exclammark||', 'but', 'thanks', 'to', 'you', '||comma||', 'i', "don't", 'know', 'if', "i'll", 'ever', 'get', 'that', 'chance', 'again', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'like', 'that', 'eye', 'patch', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', '||rightparen||', 'all', 'right', '||comma||', "i'm", 'gonna', 'move', 'my', 'car', '||comma||', 'my', "meter's", 'up', '||period||', "can't", 'park', 'in', 'this', 'city', '||period||', '||return||', '||return||', 'gary:', '||leftparen||', 'standing', '||rightparen||', 'hey', '||comma||', 'george', '||comma||', 'listen', '||period||', 'you', 'know', 'that', 'company', 'i', 'work', 'for', '||comma||', 'they', 'own', 'that', 'parking', 'lot', 'around', 'the', 'corner', '||period||', '||return||', '||return||', 'george:', 'wha', '||comma||', "that's", 'a', 'kinney', 'lot', '||questionmark||', '||return||', '||return||', 'gary:', 'yeah', '||comma||', 'and', "there's", 'a', 'space', 'opening', 'up', '||comma||', 'and', 'i', 'could', 'get', 'it', 'for', 'you', '||period||', 'you', 'just', 'have', 'to', 'pay', 'the', 'tax', 'on', 'it', '||period||', "it'd", 'be', 'like', '||comma||', 'fifty', 'a', 'month', '||period||', '||return||', '||return||', 'george:', 'fifty', 'bucks', 'a', 'month', '||comma||', "that's", 'incredible', '||exclammark||', 'okay', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'gary:', 'all', 'right', '||comma||', 'i', 'got', 'lunch', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'you', 'still', 'owe', 'me', 'a', 'secret', '||period||', '||return||', '||return||', 'gary:', 'all', 'right', '||comma||', 'listen', '||period||', 'there', 'is', 'something', 'i', "haven't", 'told', 'you', '||comma||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'gary:', 'yeah', '||comma||', 'but', 'uhm', '||comma||', 'you', "can't", 'tell', 'jerry', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'think', 'i', 'tell', 'jerry', 'everything', '||questionmark||', "it's", 'not', 'like', "he's", 'my', 'wife', '||period||', '||return||', '||return||', 'gary:', 'okay', '||period||', 'well', '||comma||', 'the', 'thing', 'is', '||comma||', "i've", 'been', 'living', 'a', 'lie', '||period||', '||return||', '||return||', 'george:', 'just', 'one', '||questionmark||', "i'm", 'living', 'like', 'twenty', '||period||', '||leftparen||', 'chuckles', '||rightparen||', "what's", 'yours', '||questionmark||', '||return||', '||return||', 'gary:', 'well', '||comma||', 'i', '||leftparen||', 'laughs', '||rightparen||', 'i', 'never', 'actually', 'had', 'cancer', '||period||', '||leftparen||', 'laughs', '||rightparen||', "i'll", 'see', 'you', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'he', 'refused', 'to', 'tell', 'you', 'where', 'he', 'got', 'the', 'glasses', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'rising', '||rightparen||', 'flat', 'out', 'refused', '||exclammark||', '||leftparen||', 'walks', 'past', 'jerry', '||comma||', 'who', 'moves', 'his', 'legs', '||rightparen||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "isn't", 'that', 'just', 'like', 'him', '||questionmark||', '||leftparen||', 'she', 'steps', 'over', "jerry's", 'legs', '||rightparen||', 'you', 'know', '||comma||', 'he', 'has', 'to', 'be', 'the', 'only', 'one', 'who', 'has', "'em", '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'tell', 'me', 'about', 'it', '||comma||', 'soul', 'sister', '||period||', '||leftparen||', 'he', 'opens', 'the', 'door', 'to', 'leave', '||rightparen||', 'anyway', '||comma||', 'i', 'told', 'jake', 'that', 'you', 'said', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||leftparen||', 'she', 'slams', 'the', 'door', 'shut', 'before', 'kramer', 'can', 'exit', '||rightparen||', 'you', 'told', 'jake', 'i', 'said', 'hi', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'you', 'did', 'that', '||exclammark||', 'why', 'did', 'you', 'tell', 'him', 'i', 'said', 'hi', '||questionmark||', 'i', 'never', 'said', 'hi', '||exclammark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'when', 'did', 'i', 'say', 'hi', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'never', 'heard', 'her', 'say', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'uh', '||comma||', 'common', 'courtesy', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||leftparen||', 'stamps', 'foot', '||rightparen||', 'kramer', '||comma||', 'you', "don't", 'understand', '||period||', 'he', 'made', 'the', 'last', 'contact', 'between', 'us', '||period||', 'i', 'had', 'the', 'upper', 'hand', 'in', 'the', 'post', '||dash||', 'breakup', 'relationship', '||period||', 'if', 'he', 'thinks', 'that', 'i', 'said', 'hi', '||comma||', 'then', 'i', 'lose', 'the', 'upper', 'hand', '||period||', '||return||', '||return||', 'jerry:', "it's", 'like', 'a', 'game', 'of', 'tag', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'nowhere', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'the', 'book', 'store', 'to', 'see', 'jake', 'jarmel', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'what', 'if', 'i', 'do', '||questionmark||', '||leftparen||', 'heads', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'exiting', 'elaine', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', 'listen', '||period||', 'if', "you're", 'going', 'there', '||comma||', '||leftparen||', 'following', 'her', 'out', 'the', 'door', '||rightparen||', 'maybe', 'you', 'can', 'get', 'him', 'to', 'tell', 'you', 'where', 'he', 'got', 'those', 'glasses', '||period||', '||leftparen||', 'shouting', 'after', 'her', '||rightparen||', 'elaine', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "how'd", 'it', 'go', 'with', 'gary', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shifty', '||comma||', 'avoiding', "jerry's", 'eyes', '||rightparen||', 'fine', '||comma||', 'fine', '||period||', '||leftparen||', 'he', 'removes', 'his', 'coat', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'suspicious', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shifty', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'look', 'like', "something's", 'on', 'your', 'mind', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'nothing', '||period||', 'fine', '||period||', '||leftparen||', 'he', 'sits', 'at', 'the', 'table', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "that's", 'your', 'poker', 'face', '||period||', '||return||', '||return||', 'george:', 'my', 'regular', 'face', '||period||', '||return||', '||return||', 'jerry:', 'no', 'it', "isn't", '||period||', "i've", 'seen', 'your', 'regular', 'face', '||period||', 'that', 'is', 'not', 'it', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', 'george', '||comma||', "c'mon", '||comma||', 'what', "d'you", 'got', '||questionmark||', '||leftparen||', 'sits', 'opposite', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'got', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'you', 'got', '||comma||', 'a', 'pair', 'of', 'bullets', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'two', 'pair', '||questionmark||', 'three', 'of', 'a', 'kind', '||questionmark||', '||return||', '||return||', 'george:', 'will', 'you', 'stop', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'you', 'got', 'a', 'flush', '||exclammark||', "you're", 'holding', 'a', 'flush', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'have', 'a', 'flush', '||period||', '||return||', '||return||', 'jerry:', 'a', 'full', 'house', '||questionmark||', 'you', 'got', 'a', 'full', 'house', '||questionmark||', 'turn', "'em", 'over', 'george', '||comma||', 'i', 'wanna', 'see', "'em", '||period||', 'come', 'on', '||comma||', "i'm", 'calling', '||exclammark||', '||leftparen||', 'thumps', 'hand', 'on', 'table', '||rightparen||', 'what', "d'you", 'got', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'broken', '||comma||', 'shouts', '||rightparen||', 'gary', 'fogel', 'never', 'had', 'cancer', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'you', 'see', '||comma||', 'kramer', 'took', 'it', 'upon', 'himself', 'to', 'say', 'hi', 'to', 'you', 'from', 'me', '||period||', 'when', 'in', 'fact', 'it', 'was', 'an', 'unauthorised', 'hi', '||period||', '||return||', '||return||', 'jake:', "you're", 'saying', 'you', "didn't", 'say', 'hi', '||period||', '||return||', '||return||', 'elaine:', "that's", 'what', "i'm", 'saying', '||period||', '||return||', '||return||', 'jake:', 'so', "that's", 'what', 'you', 'came', 'down', 'here', 'to', 'tell', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'correct', '||period||', '||return||', '||return||', 'jake:', 'you', 'never', 'said', 'hi', '||questionmark||', '||return||', '||return||', 'elaine:', 'correct', '||period||', '||return||', '||return||', 'jake:', 'you', 'still', 'like', 'me', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'correct', '||period||', '||leftparen||', 'catches', 'herself', '||rightparen||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'man:', 'hey', '||comma||', 'i', 'have', 'been', 'trying', 'to', 'get', 'this', 'book', 'signed', 'all', 'day', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'takes', 'the', 'book', 'from', 'the', 'guy', 'and', 'signs', 'it', 'herself', '||rightparen||', 'how', 'can', 'you', 'say', 'that', 'i', 'still', 'like', 'you', '||comma||', 'when', 'i', "didn't", 'even', 'say', 'hi', 'to', 'you', '||questionmark||', '||return||', '||return||', 'jake:', 'elaine', '||comma||', 'coming', 'down', 'here', 'to', 'say', 'that', 'you', "didn't", 'say', 'hi', 'is', 'more', 'of', 'a', 'gesture', 'than', 'if', 'you', 'did', 'say', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'jake', '||period||', '||period||', '||period||', '||leftparen||', 'realises', 'his', 'logic', '||rightparen||', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'the', 'doctors', 'thought', 'he', 'had', 'cancer', '||comma||', 'but', 'the', 'surgery', 'revealed', 'he', 'never', 'actually', 'had', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'was', 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "he's", 'been', 'lying', 'to', 'me', 'for', 'two', 'months', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'person', 'is', 'this', '||questionmark||', "there's", 'only', 'one', 'other', 'person', 'who', 'might', 'be', 'able', 'to', 'do', 'something', 'like', 'this', '||comma||', 'and', "that's", 'you', '||period||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'think', 'you', 'could', 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'could', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'guess', 'you', 'could', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'snorts', '||rightparen||', "c'mon", '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'know', 'he', 'was', 'so', 'worried', 'about', 'losing', 'more', 'hair', 'if', 'he', 'had', 'to', 'get', 'chemo', 'treatment', '||comma||', 'i', 'bought', 'him', 'an', 'unlimited', 'gift', 'certificate', 'at', 'the', 'hair', 'team', 'for', 'men', '||comma||', 'just', 'to', 'put', 'his', 'mind', 'at', 'ease', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'did', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'oh', '||comma||', 'i', "can't", 'wait', 'to', 'talk', 'to', 'this', 'guy', '||period||', '||leftparen||', 'moves', 'to', 'pick', 'up', 'phone', '||rightparen||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', 'you', "can't", 'say', 'anything', '||period||', '||leftparen||', 'rushes', 'to', 'take', 'phone', 'from', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'puts', 'down', 'handset', '||rightparen||', 'because', "he'll", 'know', 'i', 'told', 'you', '||period||', 'besides', '||comma||', "he's", 'giving', 'me', 'a', 'parking', 'spot', 'around', 'the', 'corner', 'for', 'practically', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'telling', 'me', '||comma||', 'because', "you're", 'getting', 'free', 'parking', '||comma||', 'i', 'gotta', 'pretend', 'this', 'guy', 'had', 'cancer', 'when', 'he', "didn't", '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', "don't", 'like', 'it', '||period||', 'i', "don't", 'like', 'it', 'one', 'bit', '||exclammark||', 'and', '||comma||', "i'm", 'supposed', 'to', 'see', 'him', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', 'you', 'have', 'to', 'maintain', 'the', 'same', 'disposition', 'too', '||period||', 'you', "can't", 'start', 'acting', 'any', 'differently', '||period||', 'you', 'have', 'to', 'be', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'he', 'tell', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'you', 'were', 'being', 'so', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'i', 'can', 'be', 'that', 'nice', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouts', '||rightparen||', 'you', 'be', 'nice', '||exclammark||', '||return||', '||return||', 'jerry:', 'gary', '||questionmark||', '||return||', '||return||', 'gary:', 'what', "d'you", 'think', '||questionmark||', 'check', 'it', 'out', '||period||', '||leftparen||', 'he', 'tries', 'a', 'number', 'of', 'expressions', '||comma||', 'turning', 'his', 'head', 'side', 'to', 'side', '||comma||', 'to', 'show', 'off', 'the', 'hairpiece', '||rightparen||', '||return||', '||return||', 'jerry:', 'is', 'that', 'from', 'my', 'gift', 'certificate', '||questionmark||', '||return||', '||return||', 'gary:', 'yeah', 'buddy', '||period||', 'you', 'really', 'came', 'through', 'for', 'me', 'man', '||period||', "you've", 'been', 'so', 'nice', '||period||', '||leftparen||', 'shakes', 'jerry', 'by', 'the', 'hand', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'through', 'gritted', 'teeth', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', "i'm", 'glad', 'you', 'could', 'take', 'advantage', '||period||', '||return||', '||return||', 'gary:', 'hey', '||comma||', 'you', 'know', 'what', "i'm", 'thinking', 'of', 'doing', '||questionmark||', "i'm", 'getting', 'rid', 'of', 'all', 'my', 'fillings', '||comma||', "'cos", 'that', "mercury's", 'toxic', '||period||', 'hey', '||comma||', 'let', 'me', 'see', 'your', 'fillings', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'gary:', 'oh', 'come', 'on', '||comma||', 'open', 'up', '||period||', 'let', 'me', 'take', 'a', 'look', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'you', 'be', 'nice', '||exclammark||', "he's", 'giving', 'me', 'a', 'parking', 'space', '||leftparen||', 'echoes', '||rightparen||', 'parking', 'space', '||period||', '||period||', '||period||', 'parking', 'space', '||period||', '||period||', '||period||', '||return||', '||return||', 'gary:', '||leftparen||', 'peering', 'in', '||rightparen||', 'well', '||comma||', 'what', "d'you", 'know', '||period||', 'hey', '||comma||', 'lookee', 'there', '||comma||', "you're", 'loaded', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||leftparen||', 'shuts', 'mouth', '||rightparen||', '||return||', '||return||', 'gary:', 'hey', '||comma||', 'look', "who's", 'over', 'there', '||period||', 'miss', 'cool', '||dash||', 'toes', '||period||', 'check', 'this', 'out', '||comma||', 'jack', '||exclammark||', '||leftparen||', 'rises', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'look', 'at', 'you', '||period||', 'wha', '||period||', '||period||', '||period||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'an', 'eyepatch', '||period||', '||return||', '||return||', 'jerry:', 'you', 'look', 'like', 'a', 'pirate', '||period||', '||return||', '||return||', 'kramer:', 'i', 'wanna', 'be', 'a', 'pirate', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gesturing', '||rightparen||', 'this', 'is', 'gary', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'gary', '||rightparen||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'gary:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'tell', 'you', "there's", 'only', 'one', 'problem', '||period||', '||return||', '||return||', 'jerry:', "can't", 'see', 'on', 'your', 'right', 'side', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', "it's", 'uh', '||comma||', '||leftparen||', 'swaps', 'patch', 'to', 'the', 'other', 'eye', '||rightparen||', "it's", 'itchy', '||return||', '||return||', 'debby:', 'nice', 'car', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'once', 'belonged', 'to', 'jon', 'voight', '||period||', '||return||', '||return||', 'debby:', 'so', '||comma||', 'what', 'made', 'you', 'just', 'call', 'me', 'out', 'of', 'the', 'blue', 'like', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||comma||', 'uh', '||period||', 'gary', 'told', 'me', 'you', 'said', 'hi', '||period||', '||return||', '||return||', 'debby:', 'i', "didn't", 'say', 'hi', '||period||', '||return||', '||return||', 'george:', 'you', "didn't", '||questionmark||', '||return||', '||return||', 'debby:', 'uh', '||comma||', 'no', '||period||', 'i', 'told', 'him', 'to', 'send', 'you', 'my', 'regards', '||period||', 'i', "didn't", 'say', 'hi', '||period||', '||return||', '||return||', 'george:', 'regards', '||questionmark||', '||return||', '||return||', 'debby:', 'yeah', '||comma||', 'regards', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', 'i', 'admit', 'i', 'was', 'dumb', 'to', 'go', 'to', 'the', 'bookstore', 'to', 'tell', 'him', 'i', "didn't", 'say', 'hi', '||comma||', 'but', 'he', "didn't", 'have', 'to', 'act', 'so', 'smug', '||period||', 'oh', '||comma||', 'i', 'hate', 'smugness', '||period||', "don't", 'you', 'hate', 'smugness', '||questionmark||', '||return||', '||return||', 'cabbie:', '||leftparen||', 'heavy', 'accent', '||rightparen||', 'smugness', 'is', 'not', 'a', 'good', 'quality', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'out', 'of', 'window', '||rightparen||', 'oh', 'my', 'god', '||period||', 'that', 'man', 'over', 'there', '||period||', 'i', 'think', "he's", 'wearing', 'glasses', 'that', 'look', 'just', 'like', "jake's", '||period||', 'pull', 'over', '||comma||', 'stop', 'the', 'car', '||period||', '||leftparen||', 'hands', 'money', 'to', 'cabbie', 'as', 'she', 'exits', '||rightparen||', 'here', '||comma||', 'here', '||period||', 'i', 'think', 'i', 'got', 'a', 'way', 'of', 'getting', 'back', 'at', 'my', 'ex', '||dash||', 'boyfriend', '||period||', '||return||', '||return||', 'cabbie:', 'good', '||period||', 'revenge', 'is', 'very', 'good', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'calling', 'down', 'street', '||rightparen||', "'scuse", 'me', '||exclammark||', "'scuse", 'me', '||period||', '||leftparen||', 'catches', 'up', 'to', 'guy', '||rightparen||', 'excuse', 'me', '||comma||', 'sir', '||period||', 'sir', '||questionmark||', '||return||', '||return||', 'guy:', 'yes', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||period||', 'ah', '||comma||', 'if', 'you', "don't", 'mind', 'my', 'asking', '||comma||', 'could', 'you', 'tell', 'me', 'where', 'you', 'got', 'your', 'glasses', '||questionmark||', '||return||', '||return||', 'guy:', 'malaysia', '||period||', '||return||', '||return||', 'elaine:', 'malaysia', '||questionmark||', '||return||', '||return||', 'guy:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'uhm', '||comma||', 'look', '||comma||', 'i', 'know', "this'll", 'sound', 'odd', '||comma||', 'but', 'can', 'i', 'buy', 'them', 'from', 'you', '||questionmark||', '||return||', '||return||', 'guy:', 'actually', '||comma||', 'i', 'was', 'gonna', 'buy', 'a', 'new', 'pair', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'positive', '||rightparen||', 'oh', '||exclammark||', '||leftparen||', 'little', 'chuckle', '||rightparen||', '||return||', '||return||', 'guy:', 'but', 'i', '||comma||', 'i', 'can', 'barely', 'see', 'without', 'these', '||period||', '||return||', '||return||', 'elaine:', "c'mon", '||period||', '||return||', '||return||', 'guy:', 'well', '||comma||', 'these', 'were', 'expensive', '||period||', '||return||', '||return||', 'elaine:', "let's", 'start', 'the', 'bidding', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', "didn't", 'think', 'this', 'was', 'a', 'date', '||questionmark||', '||return||', '||return||', 'debby:', 'n', '||period||', '||period||', '||period||', 'no', '||comma||', 'not', 'really', '||period||', 'why', '||comma||', 'is', 'it', '||period||', '||period||', '||period||', 'a', 'date', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'thought', 'it', 'was', 'a', 'date', '||period||', '||return||', '||return||', 'debby:', 'no', '||period||', "it's", 'not', 'a', 'date', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'regards', '||questionmark||', '||return||', '||return||', 'debby:', 'regards', "don't", 'mean', 'anything', '||period||', 'i', 'mean', '||comma||', "it's", 'not', 'like', 'i', 'said', 'hi', '||period||', 'hey', '||comma||', 'the', 'fact', 'is', '||period||', '||period||', '||period||', '||leftparen||', 'sighs', '||rightparen||', 'i', "shouldn't", 'say', 'anything', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'tell', 'me', '||period||', '||return||', '||return||', 'debby:', 'can', 'you', 'keep', 'a', 'secret', '||questionmark||', '||return||', '||return||', 'george:', 'me', '||questionmark||', 'oh', 'yeah', '||period||', '||return||', '||return||', 'debby:', '||leftparen||', 'deep', 'breath', '||rightparen||', 'i', 'never', 'had', 'feelings', 'for', 'gary', 'until', 'he', 'got', 'sick', '||period||', 'but', '||comma||', 'h', '||period||', '||period||', '||period||', 'he', 'was', 'so', 'brave', 'and', '||period||', '||period||', '||period||', 'and', 'gained', 'such', 'a', 'wonderful', 'perspective', 'on', 'life', '||period||', 'i', '||period||', '||period||', '||period||', 'i', 'fell', 'in', 'love', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', "guy's", 'got', 'some', 'perspective', 'there', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'do', 'you', 'know', 'what', 'the', 'whip', 'does', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'whip', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'whip', '||period||', 'in', 'the', 'senate', '||comma||', 'in', 'the', 'house', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', 'in', 'the', 'old', 'days', '||comma||', 'when', 'the', 'senators', "didn't", 'vote', 'the', 'way', 'that', 'the', 'party', 'leaders', 'wanted', "'em", 'to', '||period||', '||period||', '||period||', 'they', 'whipped', 'them', '||period||', '||leftparen||', 'holds', 'imaginary', 'whip', '||rightparen||', 'you', 'better', 'vote', 'the', 'way', 'we', 'want', 'you', 'to', '||comma||', 'or', "there's", 'gonna', 'be', 'big', 'trouble', '||period||', '||leftparen||', 'cracks', 'invisible', 'whip', 'and', 'makes', 'sound', 'effect', '||rightparen||', '||return||', '||return||', 'gary:', 'she', "won't", 'talk', 'to', 'anyone', '||comma||', 'huh', '||questionmark||', 'oh', 'no', '||comma||', 'she', "won't", 'say', 'a', 'word', 'to', 'anybody', '||period||', 'well', '||comma||', "she's", 'talking', 'a', 'blue', 'streak', 'now', '||comma||', 'jack', '||exclammark||', '||return||', '||return||', 'cop:', 'well', '||comma||', 'well', '||period||', 'the', "'white", "whale'", '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'oh', '||comma||', 'look', 'at', 'this', '||period||', "there's", 'no', 'place', 'to', 'park', 'around', 'here', '||period||', 'i', "don't", 'even', 'know', 'why', 'they', 'sell', 'cars', 'in', 'manhattan', '||period||', '||return||', '||return||', 'debby:', "don't", 'complain', '||comma||', 'at', 'least', 'you', 'have', 'your', 'health', '||period||', '||return||', '||return||', 'debby:', 'george', '||comma||', 'look', 'out', 'for', 'that', 'man', '||exclammark||', '||return||', '||return||', 'cop:', '||leftparen||', 'to', 'escaping', 'car', '||rightparen||', 'hey', '||exclammark||', 'hey', '||comma||', 'get', 'back', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'after', 'fleeing', 'car', '||rightparen||', 'newman', '||exclammark||', 'the', 'white', 'whale', '||exclammark||', '||return||', '||return||', 'george:', 'can', 'you', 'believe', 'he', 'sold', 'his', 'glasses', 'on', 'the', 'street', '||questionmark||', '||return||', '||return||', 'jerry:', 'can', 'you', 'believe', 'someone', 'would', 'lie', 'about', 'chemotherapy', 'to', 'get', 'a', 'wig', '||questionmark||', 'would', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'definitely', 'not', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', "i'm", 'pretty', 'sure', 'i', "wouldn't", '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'know', 'what', 'else', '||questionmark||', 'he', 'picked', 'up', 'that', 'woman', 'in', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'george:', 'the', 'one', 'who', 'always', 'sits', 'by', 'herself', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'did', 'he', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'he', 'was', 'brimming', 'with', 'confidence', 'from', 'the', 'toupee', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'and', 'debby', 'told', 'me', 'that', 'she', 'fell', 'in', 'love', 'with', 'him', 'because', 'he', 'has', 'all', 'this', 'perspective', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'thinks', 'a', 'guy', 'who', 'lies', 'about', 'a', 'life', '||dash||', 'threatening', 'illness', '||comma||', 'so', 'he', 'can', 'get', 'some', 'phony', 'hair', 'has', 'perspective', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'opening', 'door', 'to', 'leave', '||rightparen||', 'he', 'picked', 'her', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'walked', 'right', 'over', 'to', 'her', 'table', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', '||leftparen||', 'he', 'runs', 'his', 'fingers', 'through', 'his', 'hair', '||comma||', 'and', 'then', 'brushes', 'the', 'resulting', 'fallout', 'off', 'his', 'jacket', '||rightparen||', '||return||', '||return||', 'elaine:', 'jake', '||comma||', 'jake', '||period||', 'take', 'a', 'look', '||period||', '||leftparen||', 'puts', 'on', 'the', 'frames', 'she', 'bought', '||rightparen||', 'aaw', '||comma||', 'see', '||comma||', "you're", 'not', 'the', 'only', 'one', 'who', 'has', "'em", '||period||', 'i', 'have', 'them', 'too', '||period||', '||return||', '||return||', 'jake:', 'where', 'did', 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'elaine:', 'malaysia', '||period||', 'i', 'was', 'in', 'the', 'area', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'surprised', '||rightparen||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'just', 'drive', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'now', 'you', 'listen', '||comma||', 'and', 'you', 'listen', 'good', '||period||', 'i', 'know', 'who', 'you', 'are', '||period||', "you're", 'the', 'scofflaw', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'defensive', '||rightparen||', "what're", 'you', 'talking', 'about', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interrupting', '||rightparen||', 'ah', '||comma||', "don't", 'play', 'dumb', '||period||', "it's", 'me', '||comma||', 'cosmo', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', 'so', "it's", 'me', '||period||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', "don't", 'think', 'i', 'know', 'how', "you're", 'feeling', '||comma||', 'every', 'second', 'of', 'the', 'day', '||questionmark||', 'looking', 'over', 'your', 'shoulder', 'to', 'see', 'if', "someone's", 'coming', 'up', 'from', 'behind', '||period||', 'sitting', 'alone', 'at', 'night', '||comma||', 'knowing', 'they', 'could', 'be', 'closing', 'in', '||period||', '||return||', '||return||', 'newman:', 'i', "can't", 'sleep', '||comma||', 'i', 'tell', 'you', '||exclammark||', 'i', "can't", 'sleep', '||exclammark||', '||return||', '||return||', 'kramer:', 'ga', '||comma||', 'of', 'course', 'you', "can't", '||comma||', 'you', 'poor', 'sap', '||exclammark||', 'now', 'why', "didn't", 'you', 'tell', 'me', '||questionmark||', '||return||', '||return||', 'newman:', 'i', "couldn't", '||period||', 'i', "couldn't", 'tell', 'anyone', '||period||', '||return||', '||return||', 'kramer:', 'so', 'you', 'been', 'living', 'this', 'secret', 'the', 'whole', 'time', 'by', 'yourself', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'sobbing', '||rightparen||', 'yes', '||comma||', "it's", 'been', 'awful', '||period||', 'i', 'wanted', 'to', 'tell', 'somebody', '||period||', '||leftparen||', 'pleading', '||rightparen||', 'help', 'me', 'kramer', '||exclammark||', 'help', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', "i'm", 'gonna', 'help', 'you', '||period||', '||return||', '||return||', 'george:', "i'll", 'try', 'some', 'on', 'and', 'see', 'how', 'they', 'look', '||period||', "it's", 'just', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ever', 'see', 'what', 'that', 'thing', 'looks', 'like', 'in', 'the', 'back', '||questionmark||', 'you', 'got', 'your', 'natural', 'little', 'curls', 'on', 'the', 'bottom', '||comma||', 'and', 'then', 'that', 'big', 'phony', 'mat', 'coming', 'down', 'on', 'top', 'of', "'em", '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'some', 'of', "'em", 'look', 'good', '||period||', 'the', 'ones', 'that', 'look', 'good', 'you', "don't", 'even', 'know', 'about', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'you', 'get', 'involved', 'with', 'a', 'woman', '||questionmark||', "how're", 'you', 'gonna', 'tell', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'way', 'they', 'make', "'em", 'these', 'days', '||comma||', "i'll", 'never', 'have', 'to', 'tell', 'her', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'keep', 'it', 'a', 'secret', 'your', 'whole', 'life', '||comma||', 'then', 'at', 'your', 'funeral', 'the', 'mortician', 'comes', 'out', '||leftparen||', 'as', 'mortician', '||rightparen||', "'here", '||comma||', 'mrs', 'costanza', '||comma||', 'i', 'thought', 'you', 'might', 'want', "this'", '||period||', '||leftparen||', 'as', 'mrs', 'costanza', '||comma||', 'horrified', '||rightparen||', 'aahh', '||exclammark||', '||return||', '||return||', 'lippman:', "it's", 'no', 'secret', 'that', "it's", 'my', 'dream', 'to', 'have', 'my', 'own', 'publishing', 'house', '||comma||', 'and', 'if', 'this', 'jake', 'jarmel', 'book', 'does', '||comma||', 'you', 'know', '||comma||', 'what', 'i', 'think', "it's", 'gonna', 'do', '||period||', 'if', 'i', 'can', 'get', 'this', 'whole', 'thing', 'off', 'the', 'ground', '||comma||', 'then', '||comma||', 'you', 'know', '||comma||', 'i', 'think', "i'll", 'have', 'something', 'for', 'you', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'mr', 'lippman', '||period||', '||leftparen||', 'joins', 'laughter', '||rightparen||', 'that', 'is', 'so', 'exciting', '||period||', 'i', 'mean', '||comma||', 'you', 'have', 'no', 'idea', 'how', 'sick', 'i', 'am', 'of', 'running', 'around', 'town', 'looking', 'for', 'socks', '||period||', '||return||', '||return||', 'lippman:', 'yeah', '||comma||', 'by', 'the', 'way', '||comma||', 'those', 'are', 'great', 'glasses', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'really', '||comma||', 'you', 'like', "'em", '||questionmark||', '||return||', '||return||', 'lippman:', 'uh', 'huh', '||period||', 'very', 'unusual', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', 'what', '||questionmark||', '||leftparen||', 'removes', 'glasses', '||rightparen||', '||return||', '||return||', 'lippman:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'hands', 'them', 'over', '||rightparen||', 'you', 'can', 'have', "'em", '||period||', '||return||', '||return||', 'lippman:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', '||leftparen||', 'waves', 'them', 'away', '||rightparen||', 'please', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', '||period||', 'go', 'to', 'that', 'place', 'on', 'the', 'corner', '||comma||', "they'll", 'change', 'the', 'prescription', 'in', 'an', 'hour', '||period||', 'take', "'em", '||period||', '||return||', '||return||', 'lippman:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i've", 'no', 'use', 'for', 'them', 'anymore', '||period||', 'honestly', '||period||', '||return||', '||return||', 'lippman:', '||leftparen||', 'accepting', '||rightparen||', 'i', 'could', 'use', 'a', 'new', 'pair', 'of', 'reading', 'glasses', '||period||', '||return||', '||return||', 'elaine:', "they're", 'from', 'malaysia', '||period||', '||return||', '||return||', 'lippman:', '||leftparen||', 'putting', 'on', 'spectacles', '||rightparen||', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'admiring', 'gasp', '||rightparen||', 'fabulous', '||period||', '||return||', '||return||', 'judge:', 'well', 'mr', 'newman', '||comma||', 'in', 'all', 'my', 'years', 'on', 'the', 'bench', '||comma||', 'i', 'have', 'never', 'come', 'across', 'anything', 'quite', 'like', 'this', '||period||', 'i', 'have', 'given', 'this', 'matter', 'some', 'very', 'serious', 'consideration', 'and', "i've", 'decided', 'that', "what's", 'best', 'for', 'the', 'city', 'and', 'possibly', 'for', 'yourself', '||comma||', 'is', 'for', 'you', 'to', 'keep', 'your', 'car', '||comma||', 'in', 'a', 'garage', '||period||', '||period||', '||period||', '||return||', '||return||', 'judge:', '||period||', '||period||', '||period||', 'convenient', 'to', 'your', 'home', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'sobbing', '||rightparen||', 'i', "can't", 'afford', 'that', '||exclammark||', '||return||', '||return||', 'judge:', 'afford', 'it', 'you', 'will', '||comma||', 'mr', 'newman', '||period||', 'or', 'this', 'court', 'will', 'see', 'that', 'your', 'car', 'is', 'impounded', '||period||', '||period||', '||period||', '||return||', '||return||', 'judge:', '||period||', '||period||', '||period||', 'and', 'sold', 'at', 'auction', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "don't", 'you', 'worry', '||comma||', 'your', 'honour', '||period||', "he's", 'in', 'my', 'custody', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'well', '||comma||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unimpressed', '||rightparen||', 'i', '||comma||', 'really', "can't", 'say', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'say', '||period||', 'i', 'want', 'you', 'to', 'say', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'good', '||comma||', 'okay', '||period||', "it's", 'not', 'good', '||period||', 'you', 'look', '||leftparen||', 'searches', 'for', 'word', '||rightparen||', 'stupid', '||period||', '||leftparen||', 'to', 'salesman', '||rightparen||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'salesman:', 'you', 'have', 'to', 'realise', 'this', 'has', 'not', 'been', 'custom', '||dash||', 'fitted', 'to', 'his', 'scalp', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'examining', 'reflection', '||rightparen||', 'i', 'really', 'think', 'this', 'looks', 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'get', 'a', 'pair', 'of', 'white', 'shoes', '||comma||', 'move', 'down', 'to', 'miami', 'beach', 'and', 'get', 'the', 'whole', 'thing', 'over', 'with', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'salesman', '||rightparen||', 'well', '||comma||', 'maybe', 'you', 'could', 'show', 'me', 'something', 'else', '||period||', '||return||', '||return||', 'salesman:', 'as', 'i', 'said', '||comma||', "it'll", 'be', 'different', 'once', 'we', 'design', 'something', 'specifically', 'for', 'you', '||period||', 'but', 'i', "don't", 'think', 'your', 'friend', 'here', 'is', 'being', 'very', 'helpful', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hey', '||comma||', "i'm", 'being', 'helpful', '||period||', 'i', 'am', 'the', 'only', 'one', 'being', 'helpful', '||exclammark||', '||return||', '||return||', 'salesman:', '||leftparen||', 'getting', 'annoyed', '||rightparen||', 'no', '||comma||', 'i', "don't", 'think', "you're", 'being', 'helpful', '||exclammark||', 'i', 'think', "you're", 'being', 'disruptive', '||comma||', 'and', 'you', 'make', 'it', 'very', 'difficult', 'for', 'your', 'friend', 'here', 'to', 'improve', 'his', 'life', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', "i'm", 'trying', 'to', 'prevent', 'my', 'friend', 'from', 'becoming', 'one', 'of', 'those', 'guys', 'people', 'snicker', 'at', 'behind', 'their', 'back', '||comma||', 'because', 'they', 'look', 'ridiculous', '||exclammark||', 'no', 'offence', 'to', 'you', 'personally', '||exclammark||', '||return||', '||return||', 'salesman:', '||leftparen||', 'angry', '||rightparen||', 'all', 'you', 'people', 'with', 'hair', 'think', "you're", 'so', 'damn', 'superior', '||exclammark||', 'you', 'have', 'no', 'idea', 'what', "it's", 'like', '||period||', 'you', 'ever', 'look', 'down', 'in', 'the', 'bottom', 'of', 'your', 'tub', 'and', 'see', 'a', 'fist', 'fulla', 'hair', '||questionmark||', "how'd", 'you', 'like', 'to', 'start', 'your', 'day', 'with', 'that', '||questionmark||', '||exclammark||', '||leftparen||', 'looks', 'ready', 'to', 'punch', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||exclammark||', 'take', 'it', 'easy', '||exclammark||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'leaps', 'to', 'feet', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', 'please', '||period||', '||leftparen||', 'sits', 'again', '||rightparen||', '||return||', '||return||', 'gary:', 'hey', 'jerry', '||comma||', 'th', '||period||', '||period||', '||period||', '||leftparen||', 'spots', 'george', '||rightparen||', 'george', '||comma||', 'you', 'decided', 'to', 'get', 'a', 'rug', '||exclammark||', 'good', 'for', 'you', '||comma||', 'jack', '||exclammark||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", '||comma||', "i'm", 'just', 'looking', '||period||', '||return||', '||return||', 'gary:', 'oh', '||period||', '||leftparen||', 'to', 'salesman', '||rightparen||', 'uh', '||comma||', 'tommy', '||comma||', "i'm", 'gonna', 'need', 'a', 'little', 'adjustment', '||period||', '||return||', '||return||', 'salesman:', "i'll", 'be', 'right', 'with', 'you', '||period||', '||return||', '||return||', 'gary:', 'listen', '||comma||', 'george', '||comma||', 'i', 'got', 'some', 'bad', 'news', '||period||', "i'm", 'not', 'gonna', 'be', 'able', 'to', 'give', 'you', 'that', 'parking', 'space', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'gary:', 'this', 'judge', 'has', 'to', 'use', 'it', 'for', 'some', 'scofflaw', '||period||', 'and', 'you', 'know', 'you', "can't", 'fight', 'city', 'hall', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'gary', '||leftparen||', 'slams', 'shut', 'the', 'door', '||rightparen||', 'i', 'had', 'a', 'little', 'chat', 'with', 'george', 'the', 'other', 'day', '||period||', '||period||', '||period||', '||return||', '||return||', 'gary:', '||leftparen||', 'to', 'george', '||rightparen||', 'you', "didn't", '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'admiring', 'himself', 'in', 'mirror', '||rightparen||', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'advancing', 'on', 'gary', '||rightparen||', '||period||', '||period||', '||period||', 'and', 'he', 'told', 'me', 'that', 'that', '||period||', '||period||', '||period||', '||leftparen||', 'becomes', 'indistinct', '||rightparen||', '||return||', '||return||', 'gary:', '||leftparen||', 'indistinct', '||rightparen||', "i'm", 'not', 'a', 'hundred', 'percent', 'recovered', 'yet', '||exclammark||', '||return||', '||return||', 'jerry:', 'gimme', 'that', 'thing', '||exclammark||', '||return||', '||return||', 'george:', "how's", 'your', 'life', '||questionmark||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'woman:', 'yeah', '||comma||', 'not', 'bad', 'at', 'all', '||period||', '||return||', '||return||', 'lippman:', '||leftparen||', 'at', 'lectern', '||rightparen||', 'and', 'now', '||comma||', 'uh', '||comma||', 'ladies', 'and', 'gentlemen', 'of', 'the', 'press', '||comma||', 'it', 'is', 'my', 'pleasure', 'to', 'introduce', 'you', 'to', 'mr', 'jake', 'jarmel', '||period||', '||leftparen||', 'he', 'applauds', 'jake', 'as', 'he', 'vacates', 'the', 'lectern', 'in', 'his', 'favour', '||rightparen||', '||return||', '||return||', 'reporter:', 'so', 'jake', '||comma||', "what's", 'your', 'percentage', 'on', 'this', 'book', '||questionmark||', '||return||', '||return||', 'lippman:', 'oh', '||comma||', 'actually', 'i', '||comma||', 'uh', '||comma||', 'i', 'have', 'some', 'very', 'interesting', 'information', 'on', 'that', '||period||', '||leftparen||', 'puts', 'on', 'glasses', '||rightparen||', 'you', 'know', '||comma||', 'uh', '||comma||', 'this', 'is', 'a', 'co', '||dash||', 'venture', 'and', 'as', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', '||leftparen||', 'notices', 'glasses', '||rightparen||', 'where', 'did', 'you', 'get', 'those', '||questionmark||', '||return||', '||return||', 'lippman:', '||period||', '||period||', '||period||', 'as', 'such', '||comma||', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'jake:', 'those', 'glasses', '||comma||', 'where', 'did', 'you', 'get', 'those', 'glasses', '||questionmark||', '||return||', '||return||', 'lippman:', '||leftparen||', 'confused', '||rightparen||', 'where', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'jake:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'is', 'this', 'supposed', 'to', 'be', 'some', 'kind', 'of', 'a', 'joke', 'on', 'me', '||questionmark||', 'because', "it's", 'not', 'very', 'funny', '||period||', '||leftparen||', 'to', 'the', 'nonplussed', 'lippman', '||rightparen||', 'give', 'me', 'those', '||exclammark||', '||leftparen||', 'yelling', '||rightparen||', 'i', 'want', 'the', 'glasses', '||exclammark||', 'give', 'me', 'those', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mouths', '||rightparen||', "'scuse", 'me', '||period||', 'have', 'to', 'go', '||leftparen||', 'audible', '||rightparen||', 'look', 'for', 'some', 'socks', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'you', '||period||', 'why', "don't", 'you', 'use', 'a', 'fork', '||questionmark||', "you're", 'no', 'good', 'with', 'the', 'sticks', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', 'i', 'need', 'a', 'lesson', '||period||', '||return||', '||return||', 'jerry:', 'you', 'stink', '||period||', 'you', 'know', 'you', 'stink', '||period||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'my', 'ballet', 'tickets', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'your', 'ballet', 'tickets', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'have', 'you', 'ever', 'been', 'to', 'the', 'ballet', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', "i've", 'seen', 'people', 'on', 'tiptoes', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', "i'm", 'going', 'as', 'a', 'beard', '||period||', '||return||', '||return||', 'jerry:', 'a', 'beard', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'this', 'friend', 'of', 'a', 'friend', 'knows', 'this', 'banker', 'guy', '||comma||', "he's", '||comma||', 'i', "don't", 'know', '||comma||', '30', 'years', '||comma||', 'unbelievably', 'gorgeous', '||comma||', 'of', 'course', "he's", 'gay', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'so', 'anyway', 'his', 'boss', 'has', 'a', 'box', 'at', 'the', 'met', 'and', 'he', 'invited', 'us', 'to', 'see', 'swan', 'lake', '||comma||', 'which', 'is', 'fine', '||comma||', 'but', "he's", 'afraid', 'that', 'his', 'boss', "can't", 'handle', 'his', 'orientation', '||comma||', 'so', "i'm", 'going', 'along', 'as', 'his', 'date', '||period||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'swan', 'lake', '||comma||', 'at', 'the', 'met', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'chinese', 'food', '||period||', 'i', 'knew', 'i', 'smelled', 'something', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'is', 'george', 'still', 'wearing', 'that', 'toupee', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "doesn't", 'he', 'know', 'how', 'ridiculous', 'he', 'looks', 'in', 'that', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'think', 'he', 'looks', 'fantastic', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'never', 'realized', 'what', 'an', 'attractive', 'man', 'he', 'is', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'people', '||comma||', 'people', '||comma||', 'people', '||comma||', 'people', '||comma||', 'people', '||period||', 'not', 'bad', '||comma||', 'huh', '||questionmark||', 'excuse', 'me', '||period||', '||return||', '||return||', 'elaine:', 'you', 'look', 'ridiculous', 'in', 'that', 'thing', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'so', '||questionmark||', 'or', 'could', 'it', 'be', 'that', "you're", 'just', 'a', '*little*', 'bit', 'worried', 'that', 'you', 'may', 'have', 'missed', 'the', 'boat', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'i', 'think', 'they', 'might', 'have', 'sutured', 'that', 'thing', 'to', 'your', 'brain', '||period||', '||return||', '||return||', 'george:', 'ha', 'ha', 'ha', 'ha', '||comma||', 'oh', 'all', 'right', '||comma||', 'go', 'ahead', '||comma||', 'deride', '||comma||', 'deride', 'if', 'you', 'must', '||period||', 'but', 'let', 'me', 'tell', 'you', 'something', '||comma||', 'with', 'my', 'personality', 'and', 'this', 'set', 'of', 'hair', '||comma||', 'you', 'know', 'what', 'i', 'am', 'now', '||questionmark||', 'i', 'am', 'in', 'the', 'game', '||period||', 'i', 'no', 'longer', 'defer', 'to', 'the', 'coifed', '||period||', "i'm", 'a', 'player', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'i', 'just', 'thought', 'of', 'something', '||period||', 'i', 'know', 'this', 'gorgeous', 'woman', '||comma||', 'she', 'called', 'me', 'up', 'this', 'morning', '||comma||', "she's", 'moving', 'into', 'the', 'city', '||comma||', 'and', 'she', 'asked', 'me', 'if', 'i', 'know', 'of', 'anyone', 'she', 'could', 'meet', '||period||', 'now', 'you', 'can', 'go', 'out', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'i', 'think', "he's", 'got', 'you', 'beat', 'buddy', '||period||', '||return||', '||return||', 'george:', 'so', "she's", 'gorgeous', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'last', 'time', 'i', 'saw', 'her', 'she', 'was', '||comma||', 'five', 'years', 'ago', '||period||', '||return||', '||return||', 'george:', 'well', 'have', 'you', 'got', 'a', 'picture', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'have', 'to', 'see', 'her', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'know', 'what', 'we', 'can', 'do', '||period||', "i've", 'got', 'a', 'friend', 'who', 'works', 'over', 'at', 'the', 'police', 'station', '||period||', "he's", 'a', 'composite', 'artist', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'maybe', 'i', 'can', 'get', 'him', 'to', 'draw', 'a', 'picture', 'of', 'her', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'would', 'love', 'that', '||period||', 'you', 'think', "he'd", 'really', 'do', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'think', 'he', 'will', '||period||', '||return||', '||return||', 'jerry:', 'it', 'sounds', 'like', 'an', 'excellent', 'idea', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||comma||', 'you', 'want', 'this', '||comma||', 'cause', "i'm", 'going', 'to', 'give', 'it', 'to', 'a', 'homeless', 'person', '||period||', '||return||', '||return||', 'george:', 'well', "i'm", 'very', 'excited', 'about', 'this', '||period||', "i've", 'always', 'wanted', 'to', 'see', 'how', 'those', 'sketch', 'artists', 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', 'here', 'you', 'go', 'brother', '||period||', 'some', 'food', 'for', 'you', '||period||', '||return||', '||return||', 'homeless', 'man:', 'thank', 'you', '||period||', "you're", 'a', 'good', 'man', '||period||', 'bless', 'you', '||period||', '||return||', '||return||', 'kramer:', 'now', 'are', 'you', 'going', 'to', 'be', 'here', 'in', 'an', 'hour', '||questionmark||', '||return||', '||return||', 'homeless', 'man:', 'where', 'am', 'i', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', "that's", 'good', '||comma||', "that's", 'good', '||period||', 'make', 'the', 'eyes', '||comma||', 'uh', '||comma||', "what's", 'that', 'nut', '||questionmark||', '||return||', '||return||', 'lou:', 'almond', '||questionmark||', '||return||', '||return||', 'kramer:', 'almond', '||period||', 'yeah', '||period||', 'make', 'the', 'lips', 'fuller', '||period||', 'poutier', '||period||', '||return||', '||return||', 'george:', 'pouty', '||questionmark||', 'i', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'go', 'wrong', 'with', 'pouty', '||period||', '||return||', '||return||', 'george:', "i'm", 'excited', 'about', 'the', 'pouty', '||period||', '||return||', '||return||', 'lou:', 'all', 'right', 'i', 'think', 'that', 'about', 'does', 'it', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', 'george', '||comma||', 'come', 'on', '||comma||', 'take', 'a', 'look', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'you', 'were', 'right', '||period||', "she's", 'gorgeous', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'lou', '||comma||', "who's", 'that', 'woman', 'over', 'there', '||questionmark||', '||return||', '||return||', 'lou:', 'oh', '||comma||', "that's", 'sergeant', 'tierney', '||period||', 'nice', 'officer', '||period||', 'you', 'want', 'to', 'meet', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'this', 'worked', 'out', 'okay', '||period||', 'so', 'are', 'you', 'going', 'to', 'see', 'the', 'police', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'think', 'i', 'will', '||period||', 'i', 'like', 'the', 'idea', 'of', 'having', 'the', 'law', 'on', 'my', 'side', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'man', '||period||', 'enjoy', 'the', 'food', '||questionmark||', '||return||', '||return||', 'homeless', 'man:', 'yes', 'i', 'did', '||period||', 'where', 'did', 'the', 'chinese', 'learn', 'to', 'cook', 'like', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'listen', '||comma||', "i'll", 'take', 'that', 'tupperware', 'now', '||period||', '||return||', '||return||', 'homeless', 'man:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', 'woah', '||comma||', "that's", 'mine', '||period||', '||return||', '||return||', 'homeless', 'man:', 'you', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'i', "didn't", 'say', 'you', 'could', 'keep', 'it', '||period||', 'you', 'see', 'i', "don't", 'give', 'away', 'tupperware', '||period||', '||return||', '||return||', 'homeless', 'man:', 'you', 'should', 'have', 'said', 'something', '||period||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'think', 'i', 'had', 'to', '||period||', 'look', 'with', 'a', 'piece', 'of', 'tupperware', 'you', 'just', 'assume', '||period||', '||return||', '||return||', 'robert:', "i've", 'really', 'got', 'to', 'thank', 'you', 'for', 'this', '||period||', '||return||', '||return||', 'elaine:', 'well', 'by', 'now', '||comma||', 'you', 'think', 'people', 'would', 'be', 'a', 'little', 'more', 'open', 'minded', '||period||', '||return||', '||return||', 'robert:', 'really', '||period||', 'would', 'you', 'excuse', 'me', '||questionmark||', 'i', 'have', 'to', 'run', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', "boss'", 'wife:', 'so', '||comma||', 'um', '||comma||', 'you', 'and', 'robert', '||period||', '||return||', '||return||', 'elaine:', 'yes', 'indeed', '||period||', '||return||', '||return||', 'boss:', "i'm", 'surprised', '||period||', '||return||', '||return||', 'elaine:', 'really', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'boss:', 'no', 'reason', '||period||', '||return||', '||return||', 'elaine:', 'well', 'believe', 'me', 'this', "didn't", 'happen', 'overnight', '||period||', "robert's", 'not', 'exactly', 'a', '*one*', '*woman*', '*man*', '||comma||', 'if', 'you', 'know', 'what', 'i', 'mean', '||period||', 'no', 'sirree', 'bob', '||period||', 'sure', '||comma||', 'i', 'mean', 'in', 'a', 'lot', 'of', 'ways', '||comma||', "he's", 'a', 'typical', 'guy', '||comma||', 'he', 'likes', 'his', 'sports', '||comma||', 'but', 'he', 'counters', 'that', 'side', 'with', 'the', 'side', 'you', 'see', 'here', 'tonight', 'at', 'the', 'ballet', '||comma||', 'or', 'the', 'pleasure', 'he', 'gets', 'in', 'watching', 'ms', '||period||', 'liza', 'minelli', 'belt', 'out', 'a', 'few', 'choice', 'numbers', '||period||', "it's", 'those', 'two', 'halves', 'of', 'his', 'personality', 'that', 'just', 'come', 'together', 'to', 'make', 'him', 'the', 'very', 'special', 'guy', 'that', 'he', 'is', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'honey', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'it', 'was', 'such', 'a', 'great', 'night', '||period||', '||return||', '||return||', 'jerry:', 'and', 'did', 'they', 'suspect', 'anything', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'was', 'a', 'fantastic', 'beard', '||period||', 'i', 'held', 'hands', '||comma||', 'i', 'called', 'him', 'honey', '||period||', '||return||', '||return||', 'jerry:', 'and', 'we', 'discover', 'yet', 'another', 'talent', '||period||', 'posing', 'as', 'a', 'girlfriend', 'for', 'homosexuals', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'it', 'was', 'such', 'a', 'great', 'night', '||period||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'you', 'said', 'that', 'already', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'i', 'did', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||period||', "don't", 'tell', 'me', '||period||', 'you', 'like', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'incredible', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'conversion', '||period||', "you're", 'thinking', 'conversion', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'it', 'did', 'occur', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', 'you', 'can', 'get', 'him', 'to', 'just', 'change', 'teams', '||questionmark||', "he's", 'not', 'going', 'to', 'suddenly', 'switch', 'sides', '||period||', 'forget', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'is', 'it', 'irrevocable', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'when', 'you', 'join', 'that', 'team', "it's", 'not', 'a', 'whim', '||period||', 'he', 'likes', 'his', 'team', '||period||', "he's", 'set', 'with', 'that', 'team', '||period||', '||return||', '||return||', 'elaine:', "we've", 'got', 'a', 'good', 'team', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'we', 'do', '||period||', 'we', 'do', 'have', 'a', 'good', 'team', '||period||', '||return||', '||return||', 'elaine:', 'why', "can't", 'he', 'play', 'for', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'only', 'comfortable', 'with', '*their*', 'equipment', '||period||', '||return||', '||return||', 'elaine:', 'we', 'just', 'got', 'along', '*so*', 'great', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'you', 'did', '||period||', 'everyone', 'gets', 'along', 'great', 'when', "there's", 'no', 'possibility', 'of', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'sensed', 'something', '||period||', 'i', 'did', 'sense', 'something', '||period||', 'i', 'perceived', 'a', 'possibility', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'you', 'realize', "you're", 'venturing', 'into', 'uncharted', 'waters', '||period||', '||return||', '||return||', 'elaine:', 'i', 'realize', 'that', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'that', 'desperate', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'so', 'are', 'you', 'going', 'to', 'bring', 'your', 'gun', '||questionmark||', '||period||', '||period||', '||period||', 'all', 'right', '||comma||', 'then', "it's", 'settled', '||period||', 'first', 'date', '||comma||', 'no', 'weapons', '||period||', '||period||', '||period||', 'all', 'right', "i'll", 'see', 'you', 'then', '||period||', '||period||', '||period||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'looking', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'tupperware', '||period||', '||return||', '||return||', 'jerry:', 'sorry', '||period||', 'i', "don't", 'have', 'any', 'tupperware', '||period||', '||return||', '||return||', 'kramer:', 'i', 'knew', 'this', 'was', 'going', 'to', 'happen', '||period||', 'i', 'just', 'made', 'a', 'delicious', 'casserole', '||comma||', 'but', 'now', 'it', "won't", 'keep', 'because', 'i', 'have', 'no', 'tupperware', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'a', 'plastic', 'bag', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'must', 'be', 'kidding', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'the', 'difference', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'patented', 'burp', '||comma||', 'jerry', '||period||', 'it', 'locks', 'in', 'freshness', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'spoke', 'a', 'little', 'to', 'your', 'little', 'friend', 'denise', 'last', 'night', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'you', 'talked', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'yeah', 'for', 'two', 'hours', '||period||', "she's", 'nuts', 'about', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'well', 'we', 'go', 'way', 'back', '||period||', '||return||', '||return||', 'george:', 'why', "didn't", 'anything', 'happen', 'between', 'you', 'two', '||questionmark||', '||return||', '||return||', 'kramer:', "who's", 'to', 'say', 'it', "didn't", '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'did', 'you', 'describe', 'yourself', 'to', 'her', 'over', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'george:', 'yes', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'say', 'to', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'think', 'i', 'said', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'her', 'the', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'as', 'you', 'see', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'as', 'i', 'see', 'it', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'tell', 'her', 'about', '||comma||', 'uh', '||comma||', 'your', 'little', 'hat', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'hat', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "you're", 'little', 'hair', 'hat', 'there', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'think', 'she', 'could', 'tell', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', 'she', "can't", 'tell', '||period||', "it's", 'a', 'perfect', 'match', '||period||', 'beautiful', 'job', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'kidding', '||questionmark||', 'i', 'could', 'spot', 'that', "bird's", 'nest', 'two', 'blocks', 'away', '||period||', '||return||', '||return||', 'george:', 'you', 'only', 'think', 'that', 'because', 'you', 'know', 'me', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'noticed', 'people', 'staring', 'at', 'your', 'head', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'noticed', 'people', 'staring', 'at', 'my', 'head', 'because', 'they', 'like', 'what', 'they', 'see', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'think', 'you', 'should', 'either', 'take', 'it', 'off', 'or', 'tell', 'her', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'no', "he's", 'not', 'going', 'to', 'take', 'it', 'off', '||period||', 'if', 'he', 'was', 'going', 'to', 'go', 'over', 'there', 'bald', '||comma||', 'i', 'never', 'would', 'have', 'introduced', 'him', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'i', 'guarantee', 'she', "won't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'yeah', "that's", 'it', '||period||', 'all', 'right', '||comma||', "i'm", 'going', 'to', 'go', 'down', 'to', 'the', 'precinct', '||period||', "i'm", 'going', 'to', 'have', 'lunch', 'with', 'lou', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'll", 'split', 'a', 'cab', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hey', "i'm", 'really', 'sorry', 'about', 'the', 'other', 'day', '||period||', 'really', 'sorry', '||period||', '||return||', '||return||', 'homeless', 'man:', 'hey', "that's", 'my', 'coffee', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', 'sarge', '||period||', '||return||', '||return||', 'tierney:', 'hi', '||comma||', "i'm", 'sorry', "i'm", 'late', '||period||', 'some', 'of', 'our', 'lineup', 'decoys', "didn't", 'show', '||period||', 'hey', 'any', 'of', 'you', 'guys', 'want', 'to', 'be', 'in', 'the', 'lineup', '||questionmark||', 'make', 'a', 'quick', '50', 'bucks', '||questionmark||', '||return||', '||return||', 'kramer:', 'sure', '||period||', 'i', 'will', '||period||', '||return||', '||return||', 'tierney:', 'perfect', '||period||', 'just', 'go', 'over', 'there', 'with', 'officer', 'lampert', '||period||', '||return||', '||return||', 'speaker:', 'all', 'of', 'you', '||comma||', 'turn', 'to', 'the', 'left', '||period||', '||return||', '||return||', 'speaker:', 'the', 'left', '||period||', '||return||', '||return||', 'speaker:', 'now', 'turn', 'to', 'the', 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thinking', 'to', 'himself', '||rightparen||', 'oh', 'my', 'god', '||comma||', 'there', 'she', 'is', '||period||', "that's", 'the', 'face', '||comma||', 'just', 'like', 'the', 'picture', '||period||', '||return||', '||return||', 'denise:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hi', '||period||', "it's", 'great', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'denise:', 'likewise', '||period||', 'have', 'you', 'been', 'waiting', 'long', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'i', 'just', 'got', 'here', '||period||', 'a', 'few', 'minutes', 'ago', '||period||', '||return||', '||return||', 'denise:', 'good', '||comma||', 'good', '||period||', '||return||', '||return||', 'george:', 'well', 'why', "don't", 'you', 'take', 'off', 'your', 'hat', 'and', 'stay', 'awhile', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'tierney:', 'a', 'polygraph', '||period||', "it's", 'what', 'you', 'civilians', 'call', 'a', 'lie', 'detector', 'test', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'let', 'me', 'ask', 'you', '||comma||', 'when', 'someone', 'is', 'lying', '||comma||', 'is', 'it', 'true', 'that', 'their', 'pants', 'are', 'actually', 'on', 'fire', '||questionmark||', '||return||', '||return||', 'tierney:', 'if', 'i', 'could', 'tell', 'you', 'the', 'famous', 'faces', 'that', 'have', 'been', 'up', 'here', '||period||', 'a', 'certain', 'cast', 'member', 'of', 'melrose', 'place', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'tierney:', 'have', 'you', 'ever', 'seen', 'the', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'tierney:', 'you', 'can', 'admit', 'it', 'jerry', '||period||', "it's", 'okay', '||period||', '||return||', '||return||', 'jerry:', 'i', 'admit', 'it', '||period||', 'i', "don't", 'watch', 'it', '||period||', '||return||', '||return||', 'tierney:', 'hey', 'lou', '||comma||', 'maybe', 'we', 'should', 'put', 'him', 'on', 'the', 'poly', '||period||', '||return||', '||return||', 'jerry:', 'the', 'poly', '||questionmark||', '||return||', '||return||', 'tierney:', 'yeah', '||period||', 'i', 'think', "you've", 'seen', 'it', '||period||', '||return||', '||return||', 'elaine:', 'melrose', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'melrose', 'place', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', "didn't", 'know', 'you', 'watched', 'that', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'do', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', 'every', 'time', 'i', 'mention', 'it', 'you', 'never', 'say', 'anything', 'or', 'join', 'in', 'the', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'well', 'maybe', 'i', 'was', 'a', 'little', 'embarrassed', '||period||', '||return||', '||return||', 'elaine:', 'you', 'mean', 'this', 'whole', 'time', 'we', 'could', 'have', 'been', 'discussing', 'sydney', 'and', 'michael', 'and', 'jane', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'and', 'billy', 'and', 'jake', 'and', 'allison', '||comma||', 'yes', 'we', 'could', 'have', 'discussed', 'it', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'why', 'were', 'you', 'so', 'embarrassed', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'point', 'is', "i'm", 'going', 'to', 'be', 'taking', 'this', 'lie', 'detector', 'test', 'and', 'that', "needle's", 'going', 'to', 'be', 'going', 'wild', '||period||', '||return||', '||return||', 'elaine:', 'that', 'is', '*so*', 'stupid', '||period||', 'why', "don't", 'you', 'just', 'confess', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'too', 'stupid', 'to', 'confess', '||period||', 'look', 'at', 'what', "i'm", 'confessing', 'to', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'maybe', 'i', 'can', 'beat', 'the', 'machine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'who', 'do', 'you', 'think', 'you', 'are', '||questionmark||', 'castanza', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'you', 'know', 'what', '||questionmark||', 'i', 'have', 'access', 'to', 'one', 'of', 'the', 'most', 'deceitful', '||comma||', 'duplicitous', '||comma||', 'deceptive', 'minds', 'of', 'our', 'time', '||period||', 'who', 'better', 'to', 'advise', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'god', 'this', 'tastes', 'terrible', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'shake', 'it', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'shake', 'it', 'up', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', "i'm", 'sick', 'of', 'shaking', '||period||', "you've", 'got', 'to', 'shake', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'a', 'real', 'nuisance', '||period||', 'this', 'is', 'killing', 'me', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "i'm", 'going', 'out', 'tonight', 'with', 'robert', 'and', 'the', 'boss', 'and', 'his', 'wife', '||period||', '||return||', '||return||', 'jerry:', 'so', 'tonight', 'are', 'you', 'going', 'to', 'make', 'the', 'move', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'think', 'i', 'might', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'there', 'he', 'is', '||period||', 'so', 'what', 'happened', '||questionmark||', 'could', 'she', 'detect', 'it', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'an', 'interesting', 'question', '||period||', '||return||', '||return||', 'jerry:', 'how', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'so', '||questionmark||', "i'll", 'tell', 'you', 'how', 'so', '||period||', "she's", 'bald', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', 'bald', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'think', 'i', 'mean', 'bald', '||questionmark||', 'bald', '||period||', 'bald', 'bald', '||period||', '||return||', '||return||', 'jerry:', "she's", 'bald', '||questionmark||', '||return||', '||return||', 'george:', "she's", 'bald', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'oh', 'come', 'on', '||questionmark||', 'no', 'come', 'on', '||period||', 'she', 'took', 'off', 'her', 'hat', 'and', 'there', 'she', 'was', '||leftparen||', 'waving', 'his', 'hand', 'over', 'his', 'head', '||rightparen||', 'hello', '||period||', 'it', 'was', 'like', 'i', 'was', 'looking', 'at', 'myself', 'in', 'the', 'mirror', '||period||', '||return||', '||return||', 'elaine:', 'well', 'maybe', 'she', 'got', 'a', 'haircut', 'or', 'something', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'tell', 'you', 'something', '||period||', 'no', 'one', 'walks', 'into', 'a', 'beauty', 'parlor', 'and', 'says', '||quotemark||', 'give', 'me', 'the', 'larry', 'fine', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'women', 'go', 'bald', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i've", 'heard', 'of', 'that', '||period||', 'i', 'mean', 'they', 'usually', 'wear', 'a', 'wig', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'you', 'fixed', 'me', 'up', 'with', 'a', 'bald', 'woman', '||period||', '||return||', '||return||', 'kramer:', 'bald', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'see', 'the', 'irony', 'here', '||questionmark||', "you're", 'rejecting', 'somebody', 'because', "they're", 'bald', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'puts', 'her', 'hands', 'up', 'to', 'her', 'mouth', '||rightparen||', "you're", 'bald', '||exclammark||', '||return||', '||return||', 'george:', 'no', "i'm", 'not', '||period||', 'i', '*was*', 'bald', '||period||', '||return||', '||return||', 'george:', 'elaine', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouting', '||rightparen||', 'i', "don't", 'like', 'this', 'thing', '||period||', 'and', "here's", 'what', "i'm", 'doing', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'nooooo', '||period||', '||return||', '||return||', 'robert:', 'hahaha', '||comma||', "why'd", 'you', 'start', 'that', 'fight', 'with', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'i', 'figured', "that's", 'what', 'couples', 'do', '||period||', '||return||', '||return||', 'robert:', 'you', 'almost', 'convinced', 'me', 'we', 'were', 'a', 'couple', '||period||', '||return||', '||return||', 'elaine:', 'well', 'it', 'was', 'easy', '||period||', 'really', '||period||', '||return||', '||return||', 'robert:', 'well', 'good', 'night', '||comma||', "i'll", 'call', 'you', 'tomorrow', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'uh', '||comma||', 'wait', 'a', 'second', '||period||', 'would', 'you', 'like', 'to', 'come', '||comma||', 'upstairs', '||questionmark||', '||return||', '||return||', 'robert:', 'upstairs', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'upstairs', '||questionmark||', '||return||', '||return||', 'robert:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'was', 'hoping', 'you', 'know', '||comma||', 'that', 'you', 'might', 'be', 'interested', 'in', '||period||', '||period||', '||period||', 'changing', 'teams', '||questionmark||', '||return||', '||return||', 'robert:', 'changing', 'teams', '||questionmark||', '||return||', '||return||', 'elaine:', 'have', 'you', 'ever', 'thought', 'about', 'it', '||questionmark||', '||return||', '||return||', 'robert:', 'but', "i'm", 'a', 'starting', 'shortstop', '||period||', '||return||', '||return||', 'elaine:', 'robert', '||comma||', 'we', 'need', 'a', 'shortstop', '||period||', '*real', 'bad*', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', '||comma||', 'when', 'she', 'threw', 'that', 'toupee', 'out', 'the', 'window', '||comma||', 'it', 'was', 'the', 'best', 'thing', 'that', 'ever', 'happened', 'to', 'me', '||period||', 'i', 'feel', 'like', 'my', 'old', 'self', 'again', '||period||', 'totally', 'inadequate', '||comma||', 'completely', 'insecure', '||comma||', 'paranoid', '||comma||', 'neurotic', '||comma||', "it's", 'a', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', 'good', 'to', 'have', 'you', 'back', '||period||', '||return||', '||return||', 'george:', 'and', 'you', 'know', 'what', 'else', "i've", 'decided', 'to', 'do', '||questionmark||', "i'm", 'going', 'to', 'keep', 'seeing', 'the', 'bald', 'woman', '||period||', '||return||', '||return||', 'jerry:', "she's", 'as', 'good', 'as', 'anybody', 'else', '||period||', '||return||', '||return||', 'george:', 'her', 'scalp', 'was', 'clean', '||period||', 'she', 'had', 'a', 'nice', 'skull', '||period||', 'there', 'just', "wasn't", 'a', 'lot', 'of', 'hair', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', "you've", 'had', 'like', 'a', 'religious', 'awakening', '||period||', "you're", 'like', 'a', 'bald', '||dash||', 'again', '||period||', '||return||', '||return||', 'george:', 'going', 'to', 'need', 'a', 'little', 'more', 'coffee', 'here', '||period||', '||return||', '||return||', 'jerry:', 'so', 'george', '||comma||', 'how', 'do', 'i', 'beat', 'this', 'lie', 'detector', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'sorry', '||comma||', 'jerry', 'i', "can't", 'help', 'you', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', "you've", 'got', 'the', 'gift', '||period||', "you're", 'the', 'only', 'one', 'that', 'can', 'help', 'me', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'i', "can't", '||period||', "it's", 'like', 'saying', 'to', 'pavorotti', '||comma||', '||quotemark||', 'teach', 'me', 'to', 'sing', 'like', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'well', "i've", 'got', 'to', 'go', 'take', 'this', 'test', '||period||', 'i', "can't", 'believe', "i'm", 'doing', 'this', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'just', 'remember', '||period||', "it's", 'not', 'a', 'lie', '||period||', '||period||', '||period||', 'if', 'you', 'believe', 'it', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'i', 'did', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'turned', 'him', '||period||', 'he', 'defected', '||period||', '||return||', '||return||', 'jerry:', 'get', 'out', '||exclammark||', '||leftparen||', 'pushes', 'elaine', '||rightparen||', 'how', '||questionmark||', 'how', 'did', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "i'm", 'a', '*woman*', '||period||', '||leftparen||', 'swiveling', 'her', 'hips', '||rightparen||', 'ba', '||dash||', 'ba', '||dash||', 'ba', '||dash||', 'boom', '||dash||', 'chicka', '||dash||', 'boom', '||dash||', 'chicka', '||dash||', 'boom', '||dash||', 'boom', '||dash||', 'boom', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'do', 'you', 'know', 'what', "you've", 'done', '||questionmark||', "you've", 'give', 'hope', 'to', 'every', 'woman', "who's", 'ever', 'said', '||quotemark||', 'too', 'bad', "he's", 'gay', '||quotemark||', '||period||', '||return||', '||return||', 'elaine:', 'well', "it's", 'a', 'lesson', 'for', 'the', 'kids', 'out', 'there', '||period||', "anything's", 'possible', '||period||', 'jeromy', '||comma||', 'i', 'have', '*hit*', 'the', 'jackpot', '||period||', 'the', 'perfect', 'man', '||period||', 'nothing', 'but', 'sex', 'and', 'shopping', '||period||', '||return||', '||return||', 'lou:', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'lou:', 'what', 'is', 'your', 'address', '||questionmark||', '||return||', '||return||', 'jerry:', '129', 'west', '81st', 'street', '||period||', '||return||', '||return||', 'lou:', 'did', 'kimberly', 'steal', "jo's", 'baby', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'lou:', 'did', 'billy', 'sleep', 'with', "allison's", 'best', 'friend', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'lou:', 'did', "jane's", 'finance', 'kidnap', 'sydney', 'and', 'take', 'her', 'to', 'las', 'vegas', '||questionmark||', 'and', 'if', 'so', '||comma||', 'did', 'she', 'enjoy', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'lou:', 'did', 'jane', 'sleep', 'with', 'michael', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'he', 'hesitates', '||rightparen||', 'yes', '||exclammark||', 'that', 'stupid', 'idiot', '||period||', 'he', 'left', 'her', 'for', 'kimberly', '||comma||', 'he', 'slept', 'with', 'her', 'sister', '||period||', 'he', 'tricked', 'her', 'into', 'giving', 'him', 'half', 'her', 'business', '||comma||', 'and', 'then', 'she', 'goes', 'ahead', 'and', 'sleeps', 'with', 'him', 'again', '||period||', 'i', 'mean', "she's", 'crazy', '||period||', 'how', 'could', 'she', 'do', 'something', 'like', 'that', '||questionmark||', 'oh', 'that', 'jane', '||comma||', 'she', 'makes', 'me', 'so', 'mad', '||period||', '||return||', '||return||', 'jerry:', 'he', 'went', 'back', '||questionmark||', 'what', 'do', 'you', 'mean', 'he', 'went', 'back', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'went', 'back', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', 'it', '||period||', 'you', 'were', 'having', 'such', 'a', 'great', 'time', '||comma||', 'the', 'sex', '||comma||', 'the', 'shopping', '||period||', '||return||', '||return||', 'elaine:', 'well', "here's", 'the', 'thing', '||period||', 'being', 'a', 'woman', '||comma||', 'i', 'only', 'really', 'have', 'access', 'to', 'the', '||comma||', 'uh', '||period||', '||period||', '||period||', 'equipment', '||comma||', 'what', '||comma||', 'thirty', '||comma||', 'forty', '||dash||', 'five', 'minutes', 'a', 'week', '||period||', 'and', "that's", 'on', 'a', 'good', 'week', '||period||', 'how', 'can', 'i', 'be', 'expected', 'to', 'have', 'the', 'same', 'expertise', 'as', 'people', 'who', '*own*', 'this', 'equipment', '||comma||', 'and', 'have', 'access', 'to', 'it', 'twenty', '||dash||', 'four', 'hours', 'a', 'day', '||comma||', 'their', 'entire', 'lives', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", '||period||', "that's", 'why', 'they', 'lose', 'very', 'few', 'players', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'guess', 'i', 'never', 'really', 'stood', 'a', 'chance', '||period||', '||return||', '||return||', 'jerry:', 'well', "there's", 'always', 'a', 'place', 'for', 'you', '||comma||', 'on', 'our', 'team', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||leftparen||', 'teary', '||dash||', 'eyed', '||rightparen||', 'thanks', '||period||', 'is', 'melrose', 'place', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "it's", 'coming', 'on', 'in', 'a', 'few', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "don't", 'worry', 'it', "hasn't", 'started', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'george', '||comma||', 'i', 'am', '*really*', 'proud', 'of', 'you', '||period||', 'i', 'really', 'do', 'admire', 'what', "you've", 'done', '||period||', '||return||', '||return||', 'george:', 'do', 'you', '||questionmark||', 'that', 'makes', 'me', 'so', 'happy', '||period||', "elaine's", 'proud', 'of', 'me', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'rejected', 'by', 'a', 'bald', 'woman', '||period||', 'a', 'bald', 'woman', 'rejected', 'me', '||period||', 'heh', '||comma||', 'you', 'like', 'that', 'one', '||questionmark||', 'a', 'woman', 'with', 'no', 'prospects', 'and', 'no', '*hair*', '||comma||', 'told', 'me', 'that', 'i', "wasn't", 'her', 'type', '||period||', 'apparently', '*baldy*', 'likes', 'a', 'slimmer', 'guy', '||period||', '||return||', '||return||', 'kramer:', 'well', "i'll", 'tell', 'you', 'what', 'i', 'think', '||period||', 'i', 'think', 'she', 'saw', 'you', 'with', 'that', 'piece', 'off', 'and', 'was', 'devastated', '||period||', 'you', 'blew', 'it', 'boy', '||period||', 'you', 'really', 'blew', 'it', '||period||', 'and', 'you', 'had', 'to', 'ruin', 'it', 'for', 'him', '||period||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'ruin', 'anything', '||period||', 'he', 'looked', 'like', 'an', 'idiot', '||period||', 'he', 'did', '||comma||', 'and', 'it', 'made', 'him', 'act', 'like', 'a', 'jerk', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'shut', 'up', '||comma||', 'shut', 'up', '||comma||', 'melrose', 'place', 'is', 'coming', 'on', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'that', 'michael', '||comma||', 'i', 'hate', 'him', '||comma||', "he's", 'just', 'so', 'smug', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', 'you', 'doing', 'stu', '||questionmark||', 'eddie', '||comma||', 'my', 'man', '||period||', 'you', 'again', '||questionmark||', 'boy', '||comma||', "you're", 'a', 'slippery', 'one', '||period||', "you'd", 'better', 'straighten', 'up', 'and', 'fly', 'right', 'buddy', 'boy', '||period||', '||return||', '||return||', 'man:', "i've", 'got', 'an', 'eyewitness', 'to', 'that', 'jewelry', 'store', 'break', '||dash||', 'in', '||period||', 'come', 'here', '||period||', 'do', 'you', 'recognize', 'anybody', 'in', 'the', 'lineup', '||questionmark||', '||return||', '||return||', 'homeless', 'man:', "that's", 'the', 'guy', 'officer', '||period||', 'the', 'guy', 'there', 'in', 'the', 'middle', '||period||', 'the', 'tall', 'guy', 'with', 'the', '||comma||', 'with', 'the', 'high', 'hair', '||period||', "i'd", 'recognize', 'him', 'anywhere', '||period||', '||return||', '||return||', 'man:', 'hey', 'you', '||comma||', 'you', 'with', 'the', 'high', 'hair', '||comma||', 'step', 'forward', '||period||', '||return||', '||return||', 'kramer:', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'say', "it's", 'saturday', 'night', 'in', 'spain', '||period||', 'they', 'go', 'out', 'dancing', '||period||', 'you', 'think', 'they', 'do', 'the', 'flamenco', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'would', 'think', '||period||', '||return||', '||return||', 'george:', 'so', 'you', 'could', 'call', 'a', 'woman', 'for', 'a', 'date', '||comma||', 'ask', 'her', 'if', "she's", 'free', 'for', 'dinner', 'and', 'a', 'flamenco', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'scoffs', '||rightparen||', 'you', "don't", 'flamenco', 'on', 'the', 'first', 'date', '||period||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'i', 'wish', 'the', 'flamenco', 'was', 'popular', 'here', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', 'would', 'you', 'do', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'think', 'i', 'would', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'knew', "you'd", 'have', 'an', 'affinity', 'for', 'it', '||comma||', 'because', "it's", 'the', 'dance', 'of', 'a', 'very', 'proud', 'people', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||leftparen||', 'listens', '||rightparen||', 'oh', '||comma||', 'hi', 'nana', '||period||', '||leftparen||', 'listens', '||rightparen||', 'what', '||questionmark||', 'oh', '||period||', 'oh', '||comma||', 'alright', '||comma||', 'okay', '||period||', "don't", 'worry', 'about', 'it', '||period||', '||leftparen||', 'listens', '||rightparen||', 'okay', '||comma||', "i'll", 'see', 'you', 'later', '||period||', 'alright', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'go', 'over', 'to', 'my', "grandmother's", '||period||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'open', 'a', 'bottle', 'of', 'ketchup', 'for', 'her', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'what', '||comma||', 'no', 'lunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'we', 'have', 'time', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', "how's", 'she', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "she's", 'starting', 'to', 'slip', 'a', 'little', '||period||', 'sometimes', 'she', 'has', 'difficulty', 'distinguishing', 'between', 'the', 'past', 'and', 'the', 'present', '||period||', '||return||', '||return||', 'george:', 'ah', '||period||', 'you', 'know', '||comma||', "there's", 'gotta', 'be', 'an', 'easier', 'way', 'to', 'open', 'ketchups', '||period||', 'they', 'should', 'make', 'it', 'in', 'a', 'tube', '||period||', '||return||', '||return||', 'jerry:', 'like', 'toothpaste', '||questionmark||', '||return||', '||return||', 'george:', 'ya', '||dash||', 'hah', '||period||', '||return||', '||return||', 'jerry:', "there's", 'a', 'squeeze', 'ketchup', '||period||', '||return||', '||return||', 'george:', "i've", 'seen', 'squeeze', 'mustard', '||period||', "i've", 'never', 'seen', 'squeeze', 'ketchup', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'they', 'make', 'squeeze', 'mustard', '||comma||', "doesn't", 'it', 'stand', 'to', 'reason', 'that', 'they', 'make', 'squeeze', 'ketchup', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'necessarily', '||period||', 'mustard', 'lends', 'itself', 'to', 'the', 'squeeze', '||period||', '||return||', '||return||', 'jerry:', 'i', 'really', "don't", 'see', 'the', 'difference', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "there's", 'a', 'difference', '||period||', "it's", 'subtle', '||period||', '||return||', '||return||', 'jerry:', "it's", 'subtle', '||period||', '||return||', '||return||', 'george:', 'hey', 'uh', '||comma||', "isn't", 'elaine', 'supposed', 'to', 'meet', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'ahead', '||rightparen||', 'yeah', '||comma||', 'there', 'she', 'is', '||period||', 'uh', '||dash||', 'oh', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "she's", 'with', 'her', 'friend', 'wendy', '||period||', '||return||', '||return||', 'george:', 'wendy', '||questionmark||', 'is', 'that', 'the', 'uh', '||comma||', 'physical', 'therapist', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "i'm", 'on', 'a', 'kiss', 'hello', 'program', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'every', 'time', 'i', 'see', 'her', '||comma||', 'i', 'gotta', 'kiss', 'her', 'hello', '||period||', 'i', 'just', 'did', 'it', 'once', '||comma||', 'on', 'her', 'birthday', '||comma||', 'somehow', 'it', 'mushroomed', '||period||', 'now', 'i', 'dread', 'seeing', 'her', 'because', 'of', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'from', 'a', 'distance', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "i'm", 'down', 'to', 'one', 'kiss', 'hello', '||period||', 'my', 'aunt', 'sylvia', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "that's", 'fortunate', '||period||', 'i', 'really', 'admire', 'that', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'surprise', '||rightparen||', 'huh', '||period||', 'i', 'never', 'heard', 'you', 'say', 'you', 'admire', 'me', 'for', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'told', 'you', 'i', 'admire', 'your', 'hearing', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "don't", 'slough', 'that', 'off', '||comma||', 'you', 'have', 'great', 'hearing', '||period||', '||return||', '||return||', 'george/jerry/elaine/wendy:', 'hey/hi/hello', '||leftparen||', 'etc', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'wendy', '||rightparen||', 'wendy', '||comma||', 'george', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'wendy', '||period||', '||return||', '||return||', 'george:', "you're", 'uh', '||comma||', 'physical', 'therapist', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'wendy:', 'yes', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'got', 'this', 'little', 'swelling', 'right', 'here', '||period||', '||leftparen||', 'rolls', 'up', 'his', 'sleeve', 'to', 'expose', 'his', 'wrist', '||rightparen||', "it's", 'kinda', 'painful', '||period||', 'what', "d'you", 'make', 'of', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'warning', '||rightparen||', 'george', '||period||', '||return||', '||return||', 'wendy:', 'have', 'you', 'tried', 'heat', 'and', 'ice', 'on', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'reluctant', '||rightparen||', 'oh', 'that', 'uh', '||comma||', 'that', 'seems', 'like', 'a', 'lotta', 'trouble', '||period||', '||return||', '||return||', 'wendy:', 'well', '||comma||', 'you', 'could', 'come', 'by', 'my', 'office', 'later', '||comma||', 'i', 'could', 'work', 'on', 'it', 'for', 'you', 'a', 'little', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'happy', '||rightparen||', 'oh', '||exclammark||', 'okay', '||period||', '||return||', '||return||', 'wendy:', 'let', 'me', 'give', 'you', 'my', 'card', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'wendy:', 'well', '||comma||', "i'll", 'see', 'you', 'guys', 'later', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'nice', 'meeting', 'you', '||period||', 'bye', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'bye', 'wendy', '||period||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'wendy:', 'bye', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'slapping', 'george', 'on', 'the', 'arm', '||rightparen||', 'what', 'did', 'you', 'do', 'that', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pinching', "george's", 'arm', '||rightparen||', 'ask', 'about', 'your', 'arm', '||period||', '||return||', '||return||', 'george:', 'i', 'still', "don't", 'see', 'why', 'i', "can't", 'ask', 'her', 'about', 'my', 'arm', '||period||', '||return||', '||return||', 'elaine:', "she's", 'a', 'physical', 'therapist', '||period||', 'she', "doesn't", 'want', 'to', 'have', 'to', 'deal', 'with', 'that', 'outside', 'of', 'the', 'office', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', '||comma||', 'it', 'is', 'what', 'she', 'does', '||period||', '||return||', '||return||', 'george:', 'i', 'love', 'these', 'people', '||comma||', 'you', "can't", 'ask', "'em", 'questions', '||period||', '||leftparen||', 'getting', 'excited', '||rightparen||', "they're", 'so', 'mentally', 'gifted', 'that', 'we', "mustn't", 'disturb', 'the', 'delicate', 'genius', 'unless', "it's", 'in', 'the', 'confines', 'of', 'an', 'office', '||period||', '||leftparen||', 'worked', 'up', '||rightparen||', 'when', 'huge', 'sums', 'of', 'money', 'are', 'involved', '||comma||', 'then', 'the', 'delicate', 'genius', 'can', 'be', 'disturbed', '||exclammark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'you', 'got', 'a', 'little', 'something', '||comma||', 'right', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'wiping', 'the', 'area', 'with', 'a', 'hand', '||rightparen||', 'people', 'think', "they're", 'so', 'important', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'adamant', '||rightparen||', 'well', '||comma||', "i'm", 'going', 'on', 'record', 'right', 'now', 'that', 'that', 'was', 'my', 'last', 'kiss', 'hello', '||period||', 'i', 'am', 'getting', 'off', 'the', 'kiss', 'program', 'with', 'her', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||comma||', 'frankly', '||comma||', 'outside', 'of', 'a', 'sexual', 'relationship', '||comma||', 'i', "don't", 'see', 'the', 'point', 'to', 'it', '||period||', "i'm", 'not', 'thrilled', 'with', 'all', 'the', 'handshaking', 'either', '||comma||', 'but', 'one', 'step', 'at', 'a', 'time', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'regarding', 'the', 'menu', '||rightparen||', "what're", 'you', 'getting', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'and', "what's", 'with', 'that', 'hairdo', '||comma||', 'by', 'the', 'way', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', 'yeah', '||comma||', 'i', 'know', '||period||', "it's", 'not', 'very', 'flattering', '||period||', '||return||', '||return||', 'jerry:', 'she', 'looks', 'like', 'something', 'out', 'of', 'an', 'old', 'high', 'school', 'yearbook', '||period||', 'you', 'should', 'say', 'something', 'to', 'her', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'could', 'never', 'say', 'anything', 'to', 'her', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "kramer's", 'the', 'only', 'person', 'who', 'could', 'say', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'hah', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'just', 'tell', 'kramer', 'to', 'tell', 'her', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'if', 'you', 'tell', 'him', 'to', 'do', 'it', '||comma||', "he'll", 'never', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'you', 'have', 'to', 'do', 'is', 'introduce', 'him', '||comma||', 'and', 'then', "he'll", 'just', 'come', 'out', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sharp', 'intake', 'of', 'breath', '||rightparen||', 'hoh', '||period||', 'yes', '||comma||', 'yes', '||comma||', "you're", 'right', '||period||', "that's", 'right', '||period||', "i'll", 'bring', 'her', 'over', 'to', 'meet', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'kramer', '||rightparen||', '||period||', '||period||', '||period||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||comma||', 'boys', 'and', 'girls', '||period||', '||return||', '||return||', 'jerry:', 'speak', 'of', 'the', 'devil', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'hey', 'listen', '||comma||', 'i', 'uh', '||comma||', 'i', 'need', 'a', 'picture', 'of', 'you', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'uh', '||comma||', "i'm", 'putting', "everybody's", 'picture', 'up', 'in', 'the', 'lobby', 'of', 'our', 'building', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', 'everyone', 'will', 'know', "everybody's", 'name', '||period||', 'see', '||comma||', 'people', 'are', 'gonna', 'be', 'a', 'lot', 'friendlier', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reluctant', '||rightparen||', 'i', '||comma||', 'i', "don't", 'want', 'my', 'picture', 'plastered', 'up', 'in', 'the', 'lobby', '||period||', '||return||', '||return||', 'kramer:', 'imagine', 'walking', 'by', 'someone', 'on', 'the', 'floor', '||comma||', 'and', 'you', 'say', '||quotemark||', 'hey', '||comma||', 'carl', '||exclammark||', '||quotemark||', 'and', 'he', 'says', '||quotemark||', 'hey', '||comma||', 'jerry', '||exclammark||', '||quotemark||', 'you', 'see', '||comma||', "that's", 'the', 'kind', 'of', 'society', 'i', 'wanna', 'live', 'in', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'reluctant', '||rightparen||', 'kramer', '||comma||', 'i', "don't", 'wanna', 'stop', 'and', 'talk', 'with', 'everyone', '||comma||', 'every', 'time', 'i', 'go', 'in', 'the', 'building', '||period||', 'i', 'just', 'wanna', 'nod', 'and', 'be', 'on', 'my', 'way', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'know', 'your', "eyeliner's", 'smudged', 'a', 'little', '||period||', 'why', 'do', 'you', 'wear', 'so', 'much', 'eye', 'makeup', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||comma||', 'indicating', 'kramer', '||rightparen||', 'yeah', '||period||', 'this', 'is', 'gonna', 'work', 'out', 'just', 'fine', '||period||', '||return||', '||return||', 'leo:', 'ma', '||exclammark||', 'again', 'with', 'the', 'ketchup', '||questionmark||', "don't", 'they', 'have', "'em", 'in', 'the', 'plastic', 'squeeze', 'containers', '||questionmark||', '||return||', '||return||', 'leo:', '||leftparen||', 'traditional', 'greeting', '||rightparen||', 'jerry', '||exclammark||', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'uncle', 'leo', '||exclammark||', '||return||', '||return||', 'leo:', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'nana', 'called', 'me', 'to', 'open', 'the', 'ketchup', 'bottle', '||period||', '||return||', '||return||', 'leo:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'nana:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'nana', '||period||', '||return||', '||return||', 'leo:', "aren't", 'you', 'gonna', 'kiss', 'her', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||leftparen||', 'kisses', 'nana', '||rightparen||', 'yes', 'of', 'course', '||period||', '||return||', '||return||', 'nana:', 'ha', '||comma||', 'well', '||comma||', "here's", 'the', 'bottle', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'grabbing', 'the', 'bottle', '||rightparen||', "i'll", 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'also', 'grabbing', '||rightparen||', "what're", 'you', 'doing', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'leo:', 'give', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'will', 'you', 'stop', 'it', '||period||', '||return||', '||return||', 'leo:', 'jerry', '||comma||', 'will', 'you', 'give', 'me', 'the', 'bottle', '||questionmark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||exclammark||', '||leftparen||', 'releasing', 'his', 'grip', '||rightparen||', 'alright', '||exclammark||', 'take', 'it', '||exclammark||', '||return||', '||return||', 'nana:', 'you', 'should', 'let', 'buddy', 'open', 'it', '||period||', '||return||', '||return||', 'leo:', 'buddy', '||questionmark||', 'he', 'lived', 'next', 'door', 'to', 'us', 'forty', '||dash||', 'five', 'years', 'ago', '||period||', '||return||', '||return||', 'nana:', 'leo', '||comma||', 'did', 'you', 'give', 'helen', 'the', 'fifty', 'dollars', '||questionmark||', '||return||', '||return||', 'leo:', 'what', 'fifty', 'dollars', '||questionmark||', '||return||', '||return||', 'nana:', 'your', 'father', 'won', 'a', 'thousand', 'dollars', 'at', 'the', 'track', 'last', 'week', '||comma||', 'and', 'he', 'gave', 'you', 'a', 'hundred', '||comma||', 'and', 'you', 'were', 'supposed', 'to', 'give', 'fifty', 'dollars', 'to', 'your', 'sister', '||period||', '||return||', '||return||', 'leo:', 'ma', '||comma||', 'dad', 'died', 'in', 'nineteen', '||dash||', 'sixty', '||dash||', 'two', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'laughing', 'off', "nana's", 'confusion', '||rightparen||', 'believe', 'me', '||period||', 'i', "don't", 'owe', 'your', 'mother', 'fifty', 'dollars', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'just', 'not', 'getting', 'any', 'hot', 'water', '||period||', '||return||', '||return||', 'julio:', 'hey', '||comma||', 'believe', 'me', '||comma||', 'i', 'know', "there's", 'nothing', 'worse', 'than', 'when', 'your', "shower's", 'not', 'working', '||period||', "i'm", 'gonna', 'take', 'care', 'of', 'it', 'as', 'soon', 'as', 'i', 'can', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', 'julio', '||period||', '||return||', '||return||', 'julio:', 'awright', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'surprised', '||rightparen||', 'hey', '||comma||', 'hey', 'hey', 'hey', '||period||', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'evasive', '||rightparen||', 'ohh', '||comma||', 'nothing', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'suspicious', '||rightparen||', 'well', '||comma||', 'then', "what're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', '||comma||', 'i', 'need', 'a', 'pen', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'making', 'out', 'my', 'will', '||period||', 'oh', '||comma||', 'i', 'got', 'a', 'big', 'slice', 'of', 'dough', 'for', 'you', '||comma||', 'buddy', '||period||', 'and', 'you', 'too', '||comma||', 'elaine', '||comma||', 'i', "haven't", 'forgotten', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'accusingly', '||rightparen||', "you're", 'looking', 'for', 'a', 'picture', 'of', 'me', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'got', 'that', 'straight', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||comma||', 'jerry', '||period||', 'if', 'everybody', 'knew', 'everybody', '||comma||', 'we', "wouldn't", 'have', 'the', 'problems', 'we', 'have', 'in', 'the', 'world', 'today', '||period||', 'well', '||comma||', 'you', "don't", 'rob', 'somebody', '||comma||', 'if', 'you', 'know', 'their', 'name', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'robbing', 'me', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'gonna', 'get', 'your', 'picture', '||comma||', 'and', "you're", 'gonna', 'participate', 'in', 'my', 'program', '||period||', '||return||', '||return||', 'elaine:', 'wha', '||period||', '||period||', '||period||', 'w', '||period||', '||period||', 'are', 'you', 'going', 'home', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'could', 'you', 'come', 'back', 'in', 'about', 'five', 'minutes', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'reason', '||period||', '||leftparen||', 'big', 'smile', '||rightparen||', 'just', 'wanna', 'see', 'you', 'again', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'removing', 'his', 'coat', '||rightparen||', 'so', '||questionmark||', 'are', 'you', 'sure', "wendy's", 'coming', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "she'll", 'be', 'here', 'any', 'second', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "this'll", 'be', 'a', 'very', 'interesting', 'experiment', 'to', 'see', 'if', 'kramer', 'says', 'something', '||period||', 'you', 'sure', 'you', 'wanna', 'go', 'through', 'with', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'jerry', '||period||', 'she', 'never', 'dates', '||comma||', 'and', 'i', 'know', "it's", 'because', 'of', 'her', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'oh', '||comma||', 'hi', 'mom', '||period||', 'yeah', '||comma||', 'i', 'was', 'at', "nana's", 'yesterday', '||period||', 'i', 'had', 'to', 'help', 'her', 'open', 'a', 'ketchup', 'bottle', '||period||', 'hey', '||comma||', 'mom', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'do', 'you', 'remember', 'when', 'you', 'were', 'a', 'kid', '||comma||', 'your', 'father', 'winning', 'like', 'a', 'thousand', 'dollars', 'at', 'the', 'track', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'really', '||questionmark||', 'did', 'you', 'know', 'he', 'gave', 'uncle', 'leo', 'a', 'hundred', 'dollars', '||comma||', 'and', 'he', 'was', 'supposed', 'to', 'give', 'you', 'fifty', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'how', 'do', 'i', 'know', '||questionmark||', 'because', 'nana', "doesn't", 'know', 'what', 'year', 'it', 'is', '||comma||', 'and', 'she', 'thinks', 'this', 'just', 'happened', '||period||', '||leftparen||', 'listens', '||rightparen||', 'well', '||comma||', 'i', 'think', 'you', 'should', '||period||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'morty:', 'do', 'you', 'know', 'what', 'the', 'interest', 'on', 'that', 'fifty', 'dollars', 'comes', 'to', 'over', 'fifty', '||dash||', 'three', 'years', '||questionmark||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'morty', '||comma||', 'please', '||period||', '||return||', '||return||', 'morty:', 'six', 'hundred', 'and', 'sixty', '||dash||', 'three', 'dollars', 'and', 'forty', '||dash||', 'five', 'cents', '||period||', 'and', "that's", 'figuring', 'conservatively', 'at', 'five', 'percent', 'interest', '||comma||', 'over', 'fifty', '||dash||', 'three', 'years', '||comma||', 'compounded', 'quarterly', '||period||', 'or', '||comma||', 'if', 'you', 'put', 'it', 'into', 'a', 'ten', '||dash||', 'year', 't', '||dash||', 'bill', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'morty', '||comma||', 'will', 'you', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'morty:', '||leftparen||', 'determined', '||rightparen||', 'well', '||comma||', "he's", 'not', 'getting', 'away', 'with', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'wendy', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'wendy', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', 'is', 'it', '||period||', 'shall', 'i', 'go', 'get', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'no', '||comma||', "he'll", 'come', 'in', '||period||', 'well', '||comma||', 'this', 'is', 'gonna', 'be', 'my', 'first', 'opportunity', 'to', 'not', 'kiss', 'her', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'the', 'big', 'deal', 'about', 'putting', 'your', 'lips', 'on', "somebody's", 'face', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'the', 'obligation', '||comma||', 'you', 'know', '||questionmark||', 'as', 'soon', 'as', 'this', 'person', 'comes', 'in', '||comma||', 'you', 'know', 'you', 'have', 'to', 'do', 'this', '||period||', 'i', 'mean', '||comma||', 'if', 'you', 'could', '||comma||', 'say', '||comma||', 'touch', 'a', 'breast', 'as', 'part', 'of', 'the', 'kiss', 'hello', '||comma||', 'then', 'i', 'think', 'i', 'could', 'see', 'the', 'value', 'in', 'it', 'a', 'little', 'better', '||period||', '||return||', '||return||', 'elaine:', 'how', "'bout", 'an', 'intercourse', 'hello', '||questionmark||', 'how', 'would', 'that', 'be', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'now', "you're", 'being', 'ridiculous', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'indicating', '||rightparen||', "that's", 'her', '||period||', "that's", 'her', '||period||', '||return||', '||return||', 'elaine/wendy:', 'hi/hey', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'muffled', '||rightparen||', 'hi', 'wendy', '||period||', '||return||', '||return||', 'wendy:', 'oh', '||comma||', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'muffled', '||rightparen||', 'would', 'you', 'like', 'something', 'to', 'drink', '||questionmark||', '||return||', '||return||', 'wendy:', 'sure', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'muffled', '||rightparen||', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'wendy:', '||leftparen||', 'taking', 'the', 'bottle', '||rightparen||', 'ah', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'look', 'at', 'that', '||period||', "i'm", 'almost', 'outta', 'klondike', 'bars', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "how's", 'everything', 'going', '||questionmark||', '||return||', '||return||', 'wendy:', 'oh', '||comma||', 'okay', '||period||', 'oh', '||comma||', 'your', 'friend', 'george', 'came', 'by', 'the', 'office', 'the', 'other', 'day', '||comma||', 'and', 'then', 'yesterday', 'he', 'cancelled', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||comma||', 'he', 'had', 'to', 'take', 'his', 'mother', 'to', 'the', 'chiropodist', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'hear', 'that', '||questionmark||', 'that', 'must', 'be', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', "that's", 'not', 'fair', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', 'i', 'was', 'gonna', 'get', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "c'mon", 'kramer', '||period||', '||leftparen||', 'crossing', 'to', 'kramer', '||rightparen||', 'gimme', 'that', 'picture', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holding', 'the', 'picture', 'away', 'from', 'jerry', '||rightparen||', 'aagh', '||period||', 'no', 'no', 'no', 'no', 'no', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'throws', 'up', 'his', 'hands', '||rightparen||', 'alright', '||comma||', 'fine', '||period||', 'put', 'my', 'picture', 'up', '||period||', 'what', 'do', 'i', 'care', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'kramer', '||period||', 'kramer', '||comma||', "i'd", 'like', 'you', 'to', 'meet', 'my', 'friend', 'wendy', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hello', '||period||', '||return||', '||return||', 'wendy:', '||leftparen||', 'holds', 'out', 'her', 'hand', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shaking', 'hands', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'points', '||rightparen||', 'you', 'know', '||comma||', 'i', 'really', 'like', 'that', 'hairdo', '||period||', '||return||', '||return||', 'wendy:', '||leftparen||', 'flattered', '||rightparen||', 'oh', '||period||', 'thank', 'you', '||period||', 'i', 'actually', 'was', 'thinking', 'it', 'might', 'be', 'time', 'for', 'a', 'change', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'hopeful', '||rightparen||', 'oh', '||comma||', 'you', 'were', '||questionmark||', '||return||', '||return||', 'wendy:', 'well', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interrupting', '||rightparen||', 'oh', '||comma||', 'no', 'no', 'no', '||period||', 'you', "don't", 'wanna', 'do', 'that', '||period||', 'no', 'no', '||period||', 'nobody', 'wears', 'it', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'if', 'she', 'wants', 'to', 'change', 'her', 'hair', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', "you'd", 'be', 'a', 'damn', 'fool', 'to', 'change', 'it', '||period||', "it's", 'very', 'becoming', '||period||', '||return||', '||return||', 'wendy:', 'oh', '||comma||', 'well', '||period||', '||return||', '||return||', 'wendy:', '||leftparen||', 'laughs', '||comma||', 'flattered', '||rightparen||', 'oh', '||comma||', 'ho', '||period||', '||return||', '||return||', 'wendy:', 'so', '||comma||', "who's", 'that', 'friend', 'of', 'yours', '||questionmark||', 'that', 'guy', 'that', 'came', 'in', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'wendy:', 'yeah', '||period||', 'does', 'he', 'have', 'a', 'girlfriend', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'wanna', 'go', 'out', 'with', 'him', '||questionmark||', '||return||', '||return||', 'wendy:', 'well', '||comma||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'just', 'that', '||period||', '||period||', '||period||', 'uh', '||comma||', 'i', "don't", '||period||', '||period||', '||period||', '||return||', '||return||', 'wendy:', 'what', '||comma||', 'is', 'there', 'anything', 'wrong', 'with', 'him', '||questionmark||', '||return||', '||return||', 'wendy:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'just', 'thinking', 'about', 'the', 'question', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'my', 'arm', 'feels', 'a', 'lot', 'better', '||period||', 'that', 'wendy', 'really', 'knows', 'her', 'stuff', '||period||', '||leftparen||', 'he', 'writes', 'out', 'a', 'cheque', '||rightparen||', '||return||', '||return||', 'receptionist:', '||leftparen||', 'perky', '||rightparen||', 'she', 'is', 'super', '||period||', 'same', 'time', 'tomorrow', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'tearing', 'out', 'cheque', '||rightparen||', 'yeah', '||comma||', 'same', 'time', '||period||', '||leftparen||', 'hands', 'over', 'cheque', '||rightparen||', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'receptionist:', 'oh', '||period||', 'ah', '||comma||', 'you', 'owe', 'a', 'hundred', 'and', 'fifty', '||period||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'receptionist:', 'well', '||comma||', 'you', 'cancelled', 'on', 'tuesday', '||comma||', 'and', 'our', 'policy', 'is', '||quotemark||', 'twenty', '||dash||', 'four', 'hours', 'notice', '||comma||', 'for', 'all', 'cancellations', '||quotemark||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'agitated', '||rightparen||', 'well', '||comma||', 'i', '||comma||', 'i', "couldn't", 'come', '||period||', 'i', '||comma||', 'i', 'had', 'to', 'drive', 'my', 'mother', 'to', '||comma||', 'to', 'the', 'chiropodist', '||period||', '||return||', '||return||', 'wendy:', "what's", 'the', 'problem', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'harassed', '||rightparen||', 'are', 'you', 'aware', 'that', "i'm", 'being', 'charged', 'for', "tuesday's", 'appointment', '||questionmark||', 'i', 'had', 'to', 'take', 'my', 'mother', 'to', 'the', 'chiropodist', '||period||', '||return||', '||return||', 'wendy:', 'well', '||comma||', "i'm", 'sorry', '||comma||', "that's", 'our', 'policy', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'after', 'wendy', 'and', 'to', 'the', 'receptionist', '||rightparen||', 'oh', '||comma||', 'you', 'have', 'a', 'policy', '||exclammark||', '||leftparen||', 'to', 'the', 'world', 'at', 'large', '||rightparen||', 'the', 'delicate', 'genius', 'has', 'a', 'policy', '||exclammark||', 'george', 'heads', 'for', 'the', 'door', '||period||', '||return||', '||return||', 'receptionist:', 'so', '||period||', 'will', 'you', 'be', 'here', 'tomorrow', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'less', 'than', 'twenty', '||dash||', 'four', 'hours', '||comma||', 'so', 'i', 'guess', 'i', 'have', 'to', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||leftparen||', 'indicating', 'photos', '||rightparen||', 'so', 'what', "d'you", 'think', '||questionmark||', 'you', 'like', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', 'look', 'at', 'that', 'picture', '||comma||', "it's", 'terrible', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'you', "can't", 'put', 'that', 'picture', 'up', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'not', 'a', 'beauty', 'contest', '||period||', "it's", 'just', 'a', 'way', 'for', 'people', 'to', 'get', 'to', 'know', 'one', 'another', '||period||', '||return||', '||return||', 'steve:', 'hey', 'cosmo', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'steve', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'ah', '||comma||', 'you', 'see', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', 'kramer', '||comma||', 'my', 'friend', 'wendy', 'wants', 'to', 'go', 'out', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interested', '||rightparen||', 'well', '||comma||', 'how', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'mary:', 'hello', '||comma||', '||leftparen||', 'finds', 'the', 'right', 'photo', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'hello', '||comma||', 'uh', '||leftparen||', 'looks', 'for', 'and', 'finds', 'the', 'photo', '||rightparen||', 'mary', '||period||', '||return||', '||return||', 'mary:', 'you', 'know', '||comma||', "i've", 'seen', 'you', 'so', 'many', 'times', 'and', 'now', 'we', 'can', 'finally', 'talk', 'to', 'each', 'other', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'keen', '||rightparen||', 'what', 'was', 'i', 'telling', 'you', '||questionmark||', "isn't", 'this', 'nice', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'really', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'mary:', 'jerry', '||period||', 'you', 'know', '||comma||', 'could', 'you', 'help', 'me', 'with', 'a', 'package', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sure', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'mary:', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'see', '||questionmark||', "that's", 'just', 'what', 'i', 'need', '||period||', 'more', 'kissing', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'hee', '||comma||', 'hee', '||comma||', 'hee', '||period||', 'hee', 'hee', 'hee', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'so', 'funny', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||comma||', 'nothing', '||period||', '||leftparen||', 'laughs', 'out', 'loud', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'oh', '||comma||', 'hi', 'mom', '||period||', '||leftparen||', 'listens', '||rightparen||', 'what', '||questionmark||', 'oh', 'my', '||period||', '||period||', '||period||', 'he', "didn't", '||questionmark||', '||exclammark||', 'he', "couldn't", '||exclammark||', '||leftparen||', 'listens', '||rightparen||', 'alright', '||comma||', 'i', 'will', '||period||', '||leftparen||', 'listens', '||rightparen||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'aghast', '||rightparen||', 'uncle', 'leo', 'put', 'nana', 'in', 'a', 'home', '||exclammark||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'suspicious', '||rightparen||', 'i', "don't", 'know', '||period||', 'maybe', 'to', 'keep', 'her', 'quiet', '||period||', '||return||', '||return||', 'joan:', 'hi', 'jerry', '||period||', '||leftparen||', 'she', 'kisses', 'jerry', '||rightparen||', 'mmmwah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'as', 'eager', '||rightparen||', 'hi', 'joan', '||period||', '||return||', '||return||', 'joan:', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'pretty', 'good', '||period||', '||return||', '||return||', 'joan:', 'just', 'pretty', 'good', '||questionmark||', 'not', 'great', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'great', '||period||', '||return||', '||return||', 'joan:', 'are', 'you', 'happy', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'delighted', '||period||', '||return||', '||return||', 'joan:', 'okay', '||period||', 'have', 'a', 'nice', 'day', '||period||', '||return||', '||return||', 'jerry:', 'you', 'too', '||period||', '||return||', '||return||', 'louise:', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'louise', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'well', '||period||', 'thank', 'you', 'very', 'much', '||exclammark||', '||return||', '||return||', 'kramer:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'agitated', '||rightparen||', 'for', 'putting', 'my', 'picture', 'up', 'on', 'that', 'wall', '||exclammark||', "i'm", 'like', 'richard', 'dawson', 'down', 'there', 'now', '||period||', 'and', 'every', 'person', 'i', 'see', 'engages', 'me', 'in', 'this', 'long', '||comma||', 'boring', '||comma||', 'tedious', '||comma||', 'conversation', '||period||', 'i', "can't", 'even', 'get', 'out', 'of', 'the', 'building', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'should', 'be', 'thanking', 'me', 'for', 'liberating', 'you', 'from', 'your', 'world', 'of', 'loneliness', 'and', 'isolation', '||period||', 'now', '||comma||', "you're", 'part', 'of', 'a', 'family', '||period||', '||return||', '||return||', 'jerry:', 'family', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', 'i', 'want', 'another', 'family', '||questionmark||', 'my', "father's", 'demanding', 'my', 'uncle', 'pay', 'interest', 'on', 'fifty', 'dollars', 'he', 'was', 'supposed', 'to', 'give', 'my', 'mother', 'in', 'nineteen', '||dash||', 'forty', '||dash||', 'one', '||comma||', 'and', 'my', 'uncle', 'put', 'my', 'nana', 'in', 'a', 'home', 'to', 'try', 'and', 'shut', 'her', 'up', '||exclammark||', 'and', 'i', 'tell', 'you', 'another', 'thing', '||comma||', 'cosmo', 'kramer', '||comma||', 'whatever', 'you', 'wanna', 'be', 'called', '||period||', 'the', 'kissing', 'thing', 'is', 'over', '||period||', "there's", 'no', 'more', 'kissing', '||comma||', 'and', 'i', "don't", 'care', 'what', 'the', 'consequences', 'are', '||period||', '||return||', '||return||', 'receptionist:', 'oh', '||comma||', 'hi', '||period||', 'mister', 'costanza', '||comma||', 'we', 'were', 'trying', 'to', 'get', 'in', 'touch', 'with', 'you', '||period||', 'wendy', "can't", 'make', 'her', 'appointment', '||period||', '||return||', '||return||', 'george:', 'what', "d'you", 'mean', '||questionmark||', '||return||', '||return||', 'receptionist:', 'she', 'had', 'some', 'personal', 'affair', 'she', 'had', 'to', 'attend', 'to', '||period||', 'i', 'left', 'a', 'message', 'on', 'your', 'machine', '||period||', 'you', "didn't", 'get', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'when', 'did', 'you', 'leave', 'the', 'message', '||questionmark||', '||return||', '||return||', 'receptionist:', 'few', 'hours', 'ago', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointedly', '||rightparen||', 'oh', '||comma||', "i'm", 'sorry', '||comma||', 'i', 'require', 'twenty', '||dash||', 'four', 'hours', 'notice', 'for', 'a', 'cancellation', '||period||', 'now', '||comma||', 'as', 'i', 'see', 'it', '||comma||', 'you', 'owe', 'me', 'seventy', '||dash||', 'five', 'dollars', '||period||', '||return||', '||return||', 'receptionist:', 'look', '||comma||', 'mister', 'costanza', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'will', 'that', 'be', 'cash', '||comma||', 'or', 'cheque', '||questionmark||', '||return||', '||return||', 'wendy:', 'i', 'am', 'really', 'glad', 'i', 'took', 'the', 'day', 'off', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', "there's", 'nothing', 'better', 'than', 'skiing', '||period||', '||return||', '||return||', 'wendy:', 'yeah', '||period||', 'i', 'hope', 'my', 'clients', "weren't", 'too', 'upset', '||period||', '||return||', '||return||', 'elaine:', 'ugh', '||comma||', 'the', 'hell', 'with', "'em", '||period||', '||return||', '||return||', 'elaine:', "what're", 'you', 'stopping', 'here', 'for', '||questionmark||', '||return||', '||return||', 'wendy:', "i'm", 'dropping', 'you', 'off', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', '||rightparen||', 'oh', '||comma||', 'no', '||comma||', "i'm", 'three', 'more', 'blocks', '||period||', '||return||', '||return||', 'wendy:', 'yeah', '||comma||', 'but', 'if', 'i', 'take', 'you', 'to', 'your', 'door', '||comma||', 'then', 'i', 'have', 'to', 'go', 'all', 'the', 'way', 'around', 'central', 'park', 'west', '||comma||', 'back', 'to', 'columbus', '||comma||', 'you', 'know', "it's", 'all', 'one', 'way', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', "it's", 'only', 'three', 'blocks', '||period||', '||return||', '||return||', 'wendy:', 'right', '||period||', "it's", 'only', 'three', 'blocks', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'unbuckling', 'her', 'seatbelt', '||rightparen||', 'alright', '||comma||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "she'd", 'driven', 'me', 'a', 'hundred', 'and', 'twenty', 'miles', 'and', '||comma||', 'all', 'of', 'a', 'sudden', '||comma||', 'three', 'blocks', 'from', 'my', 'door', '||comma||', 'she', 'decides', 'this', 'trip', 'is', 'over', '||period||', "isn't", 'that', 'strange', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', "it's", 'very', 'strange', '||period||', 'very', 'strange', '||period||', '||return||', '||return||', 'elaine:', "i've", 'never', 'heard', 'of', 'anything', 'like', 'this', '||period||', 'i', 'mean', '||comma||', "it's", 'almost', 'as', 'if', 'i', 'was', 'hitch', '||dash||', 'hiking', 'and', 'she', 'says', '||quotemark||', 'well', '||comma||', 'this', 'is', 'as', 'far', 'as', 'i', 'can', 'take', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', 'tell', 'you', '||period||', 'if', 'you', 'were', 'hitch', '||dash||', 'hiking', '||comma||', "you'd", 'never', 'get', 'into', 'a', 'car', 'with', 'someone', 'with', 'a', 'hairdo', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', 'to', 'carry', 'my', 'skis', '||comma||', 'and', 'my', 'boots', 'and', 'my', 'poles', '||period||', 'i', 'think', 'i', 'pinched', 'a', 'nerve', 'in', 'my', 'shoulder', '||period||', '||return||', '||return||', 'jerry:', 'you', 'should', 'have', 'her', 'work', 'on', 'it', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'alright', '||comma||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'mar:', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'mary', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'listen', '||period||', 'i', 'decided', 'i', "can't", 'kiss', 'hello', 'anymore', '||period||', "i'm", 'sorry', '||period||', "it's", 'nothing', 'personal', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'it', 'just', 'makes', 'me', 'a', 'little', 'uncomfortable', 'and', 'i', "can't", 'do', 'it', '||period||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'lou:', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'louise', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'i', 'was', 'just', 'telling', 'mary', 'how', "i'm", 'not', 'gonna', 'be', 'doing', 'the', 'kiss', 'hello', 'thing', 'anymore', '||period||', '||leftparen||', 'continues', 'backing', 'away', '||rightparen||', "i'm", 'sorry', '||period||', 'i', 'just', "can't", 'do', 'it', '||period||', "it's", 'nothing', 'personal', '||comma||', "it's", 'just', "i'm", 'not', 'really', 'able', 'to', 'do', 'it', 'and', 'uh', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'the', 'elevator', 'doors', 'close', '||rightparen||', 'thank', 'you', 'for', 'your', 'cooperation', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'helen', '||leftparen||', 'v', '||period||', 'o', '||rightparen||', ':', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', 'mom', '||period||', 'so', '||comma||', "what's", 'happening', 'with', 'uncle', 'leo', '||questionmark||', 'is', 'he', 'paying', 'you', '||questionmark||', '||return||', '||return||', 'helen:', 'well', '||comma||', 'he', 'said', 'no', '||period||', 'he', 'said', 'we', 'had', 'no', 'proof', '||period||', '||return||', '||return||', 'morty:', 'no', 'proof', '||questionmark||', "we'll", 'get', 'him', '||period||', "he's", 'a', 'crook', '||comma||', 'sooner', 'or', 'later', '||comma||', "he'll", 'slip', 'up', '||period||', '||return||', '||return||', 'helen:', 'uh', '||comma||', 'anyway', '||comma||', 'i', 'want', 'you', 'to', 'go', 'check', 'on', 'nana', 'at', 'the', 'home', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'i', 'will', '||period||', '||return||', '||return||', 'morty:', "d'you", 'realise', '||comma||', 'an', 'above', '||dash||', 'average', 'performing', 'growth', 'mutual', 'fund', 'for', 'fifty', '||dash||', 'three', 'years', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'locking', 'his', 'door', '||rightparen||', 'oh', '||comma||', 'i', 'gotta', 'go', 'visit', 'my', 'nana', 'in', 'the', 'nursing', 'home', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'kramer', '||comma||', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'my', 'picture', '||exclammark||', '||return||', '||return||', 'jerry:', "i've", 'been', 'defaced', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "don't", 'you', 'worry', 'buddy', '||period||', 'i', 'made', 'double', 'prints', '||period||', '||return||', '||return||', 'jack:', 'hey', '||period||', 'hi', 'cosmo', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'jack', '||period||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', 'jack', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'julio', '||period||', 'i', 'was', 'wondering', '||comma||', 'could', 'you', 'get', 'to', 'that', 'shower', 'today', '||comma||', 'you', 'think', '||questionmark||', '||return||', '||return||', 'julio:', 'oh', '||comma||', 'i', 'see', '||period||', 'when', 'you', 'need', 'something', 'done', '||comma||', "you're", 'very', 'friendly', 'to', 'people', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'defensive', '||rightparen||', 'no', 'no', '||comma||', "that's", 'not', 'true', '||exclammark||', '||return||', '||return||', 'julio:', '||leftparen||', 'accusing', '||rightparen||', 'well', '||comma||', 'i', 'think', 'it', 'is', '||exclammark||', "it's", 'a', 'big', 'building', '||comma||', 'seinfeld', '||comma||', 'maybe', "i'll", 'get', 'to', 'it', 'someday', '||period||', 'after', 'i', 'take', 'care', 'of', 'the', 'people', "who're", 'civil', 'to', 'each', 'other', '||period||', '||return||', '||return||', 'nurse:', 'yeah', '||comma||', "she's", 'upstairs', '||comma||', 'playing', 'cards', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'she', 'really', "doesn't", 'belong', 'here', '||period||', 'my', 'uncle', 'put', 'her', 'here', '||comma||', 'because', "he's", 'trying', 'to', 'prove', 'he', "doesn't", 'owe', 'my', 'mother', 'fifty', 'dollars', '||period||', '||return||', '||return||', 'nurse:', 'well', '||comma||', 'she', 'seems', 'very', 'happy', '||period||', 'she', 'met', 'an', 'old', 'friend', 'who', 'used', 'to', 'live', 'next', 'door', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'buddy', '||questionmark||', '||return||', '||return||', 'nurse:', 'yes', '||comma||', "that's", 'his', 'name', '||period||', "he's", 'right', 'over', 'there', '||period||', '||return||', '||return||', 'wendy:', '||leftparen||', 'smiling', '||rightparen||', "i'm", 'sorry', '||comma||', 'i', "don't", 'owe', 'you', 'anything', '||period||', 'i', 'had', 'some', 'personal', 'business', 'that', 'day', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'irascible', '||rightparen||', 'oh', '||comma||', 'i', 'see', '||period||', 'so', 'your', 'time', 'is', 'more', 'valuable', 'than', 'mine', '||period||', 'is', 'that', 'it', '||questionmark||', "you're", 'a', 'delicate', 'genius', '||exclammark||', '||return||', '||return||', 'wendy:', 'a', 'delicate', 'genius', '||questionmark||', '||return||', '||return||', 'george:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'surprised', '||rightparen||', 'george', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', '||rightparen||', 'hah', '||period||', 'good', 'luck', '||period||', '||return||', '||return||', 'wendy:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'feeling', 'her', 'arm', '||rightparen||', 'wendy', '||comma||', 'i', 'injured', 'my', 'shoulder', '||comma||', 'wednesday', '||comma||', 'when', 'you', 'dropped', 'me', 'off', 'and', 'i', 'had', 'to', 'carry', 'my', 'skis', '||comma||', 'and', 'my', 'boots', '||comma||', 'and', 'my', 'poles', 'and', 'everything', '||comma||', 'all', 'the', 'way', 'home', '||period||', "i'm", '||comma||', "i'm", 'having', 'trouble', 'lifting', 'my', 'arm', '||period||', 'do', 'you', 'think', 'you', 'could', 'give', 'me', 'some', 'treatment', '||questionmark||', '||return||', '||return||', 'wendy:', 'oh', 'sure', '||period||', 'you', 'have', 'insurance', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shocked', '||rightparen||', 'insurance', '||questionmark||', "you're", 'charging', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'wednesday', '||questionmark||', "that's", 'your', 'personal', 'business', '||questionmark||', '||exclammark||', '||leftparen||', 'stalks', 'over', 'to', 'the', 'counter', '||rightparen||', 'skiing', '||questionmark||', '||exclammark||', '||leftparen||', 'angry', '||rightparen||', 'so', 'let', 'people', 'suffer', '||comma||', 'while', "you're", 'shushing', 'all', 'over', 'a', 'mountain', '||questionmark||', '||return||', '||return||', 'wendy:', 'how', 'did', 'you', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'hear', 'everything', '||period||', '||return||', '||return||', 'wendy:', 'i', 'mean', '||comma||', 'why', "don't", 'you', 'two', 'just', 'take', 'your', 'business', 'elsewhere', '||comma||', 'hmm', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'huh', 'huh', '||comma||', 'that', 'is', 'a', 'good', 'idea', '||period||', "c'mon", 'george', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointedly', '||rightparen||', 'and', 'you', 'know', '||comma||', 'you', 'might', 'wanna', 'do', 'something', 'about', 'that', 'hair', '||period||', '||return||', '||return||', 'wendy:', 'why', '||comma||', "what's", 'wrong', 'with', 'my', 'hair', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', 'i', 'think', "it's", 'a', 'little', 'old', '||dash||', 'fashioned', '||period||', "don't", 'you', '||questionmark||', '||leftparen||', 'to', 'receptionist', '||rightparen||', 'uh', '||comma||', 'tell', 'her', '||period||', '||return||', '||return||', 'receptionist:', "she's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'were', 'with', 'him', 'that', 'day', 'at', 'the', 'track', '||questionmark||', '||return||', '||return||', 'buddy:', 'oh', 'yeah', '||period||', 'he', 'won', 'a', 'thousand', 'dollars', '||period||', 'his', 'son', 'was', 'there', 'too', '||period||', '||return||', '||return||', 'jerry:', 'leo', '||questionmark||', '||return||', '||return||', 'buddy:', 'yeah', '||comma||', "that's", 'it', '||period||', 'leo', '||period||', 'ooh', '||comma||', 'what', 'an', 'obnoxious', 'little', 'kid', '||period||', 'he', 'used', 'to', 'steal', 'my', 'soda', 'bottles', '||period||', 'and', 'cash', "'em", 'in', 'for', 'the', 'deposits', '||comma||', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'so', '||questionmark||', '||return||', '||return||', 'buddy:', 'and', '||comma||', 'after', 'your', 'grandfather', 'hit', 'the', 'daily', 'double', '||comma||', 'he', 'gave', 'him', 'a', 'hundred', 'dollars', '||comma||', 'and', 'told', 'him', 'to', 'give', 'fifty', 'to', 'his', 'sister', '||period||', 'his', 'sister', '||questionmark||', 'why', 'i', 'tell', 'you', 'he', 'shoulda', 'give', 'it', 'to', 'me', 'for', 'all', 'the', 'bottles', 'he', 'took', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'very', 'interesting', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'standing', '||rightparen||', 'uncle', 'leo', '||exclammark||', 'i', 'just', 'met', 'an', 'old', 'acquaintance', 'of', 'yours', '||period||', '||leftparen||', 'indicates', 'buddy', '||rightparen||', 'you', 'remember', 'buddy', '||period||', 'he', 'just', 'told', 'me', 'quite', 'a', 'story', 'about', 'you', 'and', 'grandpa', 'at', 'the', 'track', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'defensive', '||rightparen||', 'one', 'second', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'with', 'a', 'triumphant', 'point', '||rightparen||', "you're", 'busted', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'steve', '||period||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'jeff', '||period||', "what's", 'happening', '||questionmark||', '||return||', '||return||', 'jerry:', 'mary', '||exclammark||', 'oh', '||comma||', 'mary', '||exclammark||', 'give', 'us', 'a', 'kiss', '||period||', '||return||', '||return||', 'jerry:', "don't", 'be', 'like', 'that', '||comma||', 'mary', '||period||', "c'mon", '||comma||', 'i', 'made', 'a', 'mistake', '||exclammark||', '||return||', '||return||', 'mary:', '||leftparen||', 'contemptuous', '||rightparen||', 'look', '||comma||', 'why', "don't", 'you', 'do', 'everybody', 'a', 'favour', '||comma||', 'and', 'just', 'get', 'out', 'of', 'this', 'building', '||questionmark||', '||leftparen||', 'angry', '||rightparen||', 'nobody', 'wants', 'you', 'here', '||period||', 'nobody', '||exclammark||', '||return||', '||return||', 'jeff:', 'hi', 'mary', '||period||', '||return||', '||return||', 'mary:', 'hi', 'jeff', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'mary:', 'hi', 'pete', '||period||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'pete:', 'hey', '||comma||', "let's", 'go', 'get', 'some', 'coffee', '||period||', '||return||', '||return||', 'jeff:', 'great', 'idea', '||period||', '||return||', '||return||', 'mary:', 'oh', '||comma||', "that'd", 'be', 'great', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'paul', '||comma||', 'could', 'you', 'hold', 'that', 'door', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'could', 'i', 'use', 'your', 'shower', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'again', '||questionmark||', 'you', 'took', 'one', 'this', 'morning', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'i', 'got', 'a', 'date', '||period||', "c'mon", '||comma||', 'please', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', 'but', 'i', '||period||', '||period||', '||period||', '||leftparen||', 'waves', 'toward', 'the', 'interior', 'of', 'his', 'apartment', '||rightparen||', 'little', 'problem', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaning', 'to', 'look', 'round', 'kramer', '||rightparen||', 'wendy', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||period||', 'she', 'changed', 'her', 'hairstyle', '||comma||', '||leftparen||', 'pulls', 'a', 'face', '||rightparen||', "it's", 'terrible', '||period||', 'no', '||comma||', "we're", 'done', '||period||', '||return||', '||return||', 'guy:', "i'll", 'go', 'get', 'some', 'more', 'beer', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', 'great', '||period||', '||leftparen||', 'calling', 'after', 'the', 'guy', '||rightparen||', 'and', 'get', 'some', 'of', 'those', 'blue', 'corn', 'chips', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'stefanie:', 'hi', 'cosmo', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'stefanie:', '||leftparen||', 'kisses', 'kramer', 'hello', '||rightparen||', 'mmmwah', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', 'i', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'impressed', '||rightparen||', "who's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'stefanie', '||period||', '2', '||dash||', 'g', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'man', '||period||', 'looks', 'like', 'you', 'got', 'quite', 'a', 'few', 'people', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', '||period||', 'well', 'uh', '||comma||', 'you', 'know', '||comma||', "i'd", 'invite', 'you', 'in', '||comma||', 'but', 'uhm', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'rueful', 'acceptance', '||rightparen||', 'oh', '||comma||', 'yeah', '||comma||', 'i', 'understand', '||period||', '||return||', '||return||', 'doorman:', 'whoah', '||comma||', 'whoah', '||comma||', 'whoah', '||period||', '||leftparen||', 'rises', 'and', 'turns', 'to', 'jerry', '||rightparen||', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'indicates', 'with', 'his', 'thumb', '||rightparen||', 'yeah', '||comma||', "i'm", 'just', 'going', 'up', 'to', 'see', 'elaine', 'benes', '||period||', '||return||', '||return||', 'doorman:', '||leftparen||', 'unfriendly', 'smile', '||rightparen||', 'benes', '||questionmark||', '||leftparen||', 'moves', 'toward', 'jerry', '||rightparen||', 'no', '||dash||', 'one', 'here', 'by', 'that', 'name', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "she's", 'uh', '||comma||', "she's", 'house', '||dash||', 'sitting', 'for', 'mr', '||period||', 'pitt', '||period||', '||return||', '||return||', 'doorman:', 'oh', '||period||', 'house', '||dash||', 'sitting', '||comma||', 'mmm', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'doorman:', "what're", 'you', '||comma||', 'the', 'boyfriend', '||questionmark||', 'here', 'for', 'a', '||period||', '||period||', '||period||', 'quickie', '||questionmark||', '||return||', '||return||', 'jerry:', 'can', 'i', 'just', 'go', 'up', '||questionmark||', '||return||', '||return||', 'doorman:', 'oh', '||comma||', 'i', 'get', 'it', '||period||', 'why', 'waste', 'time', 'making', 'small', 'talk', 'with', 'the', 'doorman', '||questionmark||', 'i', 'should', 'just', 'shut', 'up', 'and', 'do', 'my', 'job', '||comma||', 'opening', 'the', 'door', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'how', "'bout", 'those', 'knicks', '||questionmark||', '||return||', '||return||', 'doorman:', 'oh', '||comma||', 'i', 'see', '||period||', 'on', 'the', 'sports', 'page', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'doorman:', '||period||', '||period||', '||period||', 'what', 'makes', 'you', 'think', 'i', "wasn't", 'reading', 'the', 'wall', 'street', 'page', '||questionmark||', 'oh', '||comma||', 'i', 'know', '||comma||', 'because', "i'm", 'the', 'uneducated', 'doorman', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'you', 'think', 'your', "parents'll", 'get', 'back', 'together', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'hope', 'so', '||period||', 'i', "can't", 'take', 'him', 'living', 'with', 'me', 'much', 'longer', '||period||', 'he', 'makes', 'this', 'kasha', '||comma||', 'it', 'stinks', 'up', 'the', 'whole', 'house', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'george', '||comma||', 'stick', "'em", 'up', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'for', 'these', 'german', 'tourists', '||period||', 'pretend', 'that', "i'm", 'robbing', 'you', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', 'these', 'people', 'can', 'go', 'back', 'home', 'and', 'tell', 'their', 'friends', 'they', 'saw', 'a', 'real', 'new', 'york', 'mugging', '||period||', "it'll", 'give', 'them', 'a', 'thrill', '||period||', '||return||', '||return||', 'kramer:', 'awright', '||comma||', 'hands', 'up', '||comma||', 'porky', '||exclammark||', '||return||', '||return||', 'kramer:', "that's", 'it', '||period||', 'now', '||comma||', 'gimme', 'your', 'wallet', '||period||', 'got', 'it', 'in', 'here', '||comma||', 'huh', '||comma||', 'fat', 'boy', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'aggressive', '||rightparen||', 'is', 'that', 'all', 'you', 'got', '||questionmark||', '||exclammark||', 'hah', '||questionmark||', 'is', 'that', 'all', 'you', 'got', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', "that's", 'enough', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'you', 'when', "it's", 'enough', '||exclammark||', '||leftparen||', 'he', 'releases', 'george', '||rightparen||', 'alright', '||comma||', 'now', 'you', 'better', 'not', 'say', 'anything', '||comma||', 'or', "i'll", 'stalk', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', "where've", 'you', 'been', '||questionmark||', "we're", 'gonna', 'miss', 'the', 'movie', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'not', 'going', 'back', 'down', 'there', '||period||', 'i', "can't", 'face', 'that', 'guy', 'again', '||period||', '||return||', '||return||', 'elaine:', 'what', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'doorman', '||period||', 'i', "don't", 'wanna', 'play', 'anymore', 'of', 'his', 'mindgames', '||period||', 'what', 'time', 'does', 'he', 'get', 'off', '||questionmark||', '||return||', '||return||', 'elaine:', 'six', '||period||', 'but', 'then', 'the', 'night', 'doorman', 'comes', 'on', '||period||', "he's", 'much', 'scarier', '||period||', '||leftparen||', 'scary', 'noise', '||rightparen||', 'whugh', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', 'ha', '||dash||', 'ha', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'almost', 'six', 'now', '||period||', "can't", 'we', 'just', 'wait', 'til', 'he', 'goes', 'home', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'unhappy', '||rightparen||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'still', 'make', 'the', 'movie', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'accepting', '||rightparen||', 'okay', '||comma||', 'okay', '||period||', '||return||', '||return||', 'george:', "what'd", 'you', 'do', 'today', '||comma||', 'dad', '||questionmark||', '||return||', '||return||', 'frank:', 'today', '||comma||', 'i', 'went', 'record', 'shopping', 'in', 'greenwich', 'village', '||period||', 'i', 'bought', 'this', 'record', '||comma||', 'but', 'i', "can't", 'seem', 'to', 'find', 'the', 'hi', '||dash||', 'fi', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'have', 'a', 'hi', '||dash||', 'fi', '||period||', '||return||', '||return||', 'frank:', "didn't", 'i', 'give', 'you', 'my', 'old', 'record', 'player', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', 'to', 'the', 'bedroom', '||rightparen||', 'i', 'gave', 'it', 'to', 'cosmo', '||period||', '||return||', '||return||', 'frank:', 'cosmo', '||questionmark||', "who's", 'cosmo', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'cosmo', '||period||', '||return||', '||return||', 'frank:', 'well', '||comma||', 'i', 'want', 'it', 'back', '||period||', 'i', 'wanna', 'listen', 'to', 'that', 'cha', '||dash||', 'cha', 'record', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'little', 'dance', '||rightparen||', 'one', '||dash||', 'two', '||comma||', 'cha', '||dash||', 'cha', '||dash||', 'cha', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'coming', 'back', 'in', '||rightparen||', 'alright', '||comma||', 'alright', '||period||', 'can', 'we', 'go', 'out', 'and', 'eat', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'putting', 'down', 'the', 'bowl', '||rightparen||', 'lemme', 'change', 'my', 'shirt', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "it's", 'six', '||period||', '||leftparen||', 'claps', 'her', 'hands', '||rightparen||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'that', "doorman's", 'still', 'milling', 'around', 'outside', '||period||', "he's", 'very', 'peculiar', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "don't", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picks', 'up', 'phone', '||rightparen||', 'hello', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'oh', '||comma||', 'hi', 'mr', '||period||', 'pitt', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'give', 'that', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'taking', 'the', 'phone', '||rightparen||', 'hello', 'mr', '||period||', 'pitt', '||period||', "how's", 'scotland', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'concerned', '||rightparen||', 'elaine', '||comma||', 'are', 'you', 'having', 'a', 'party', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'party', '||period||', 'oh', 'no', '||comma||', 'that', 'was', 'just', 'my', 'stupid', 'friend', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'he', 'just', 'left', '||period||', 'we', 'can', 'go', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'stern', '||rightparen||', 'because', "there's", 'to', 'be', 'no', 'entertaining', 'while', "i'm", 'gone', '||period||', '||return||', '||return||', 'elaine:', 'believe', 'me', '||comma||', "we're", 'not', 'entertained', '||period||', 'we', 'were', 'just', 'leaving', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'oh', '||comma||', 'can', 'you', 'grab', 'those', 'empty', 'bottles', 'for', 'me', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', 'i', 'need', 'to', 'know', "what's", 'in', 'the', 'mail', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'mr', '||period||', 'pitt', '||comma||', "there's", 'really', 'nothing', 'that', "can't", 'wait', '||period||', "we're", 'trying', 'to', 'catch', 'a', 'movie', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt:', '||leftparen||', 'resolute', '||rightparen||', 'well', '||comma||', 'you', 'better', 'catch', 'the', 'later', 'show', '||comma||', 'because', 'i', 'need', 'to', 'know', "what's", 'in', 'the', 'mail', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', '||leftparen||', 'to', 'jerry', '||comma||', 'upset', '||rightparen||', 'i', "can't", 'go', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'uhm', '||comma||', 'the', 'new', 'time', 'magazine', '||period||', 'the', 'new', 'people', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'pitt', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'piqued', 'interest', '||rightparen||', 'oh', '||comma||', "who's", 'on', 'the', 'cover', '||questionmark||', '||return||', '||return||', 'doorman:', 'hey', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surprise', '||rightparen||', 'you', '||questionmark||', 'wh', '||period||', '||period||', '||period||', "what're", 'you', 'doing', 'here', '||questionmark||', 'you', 'work', 'at', 'this', 'building', 'too', '||questionmark||', '||return||', '||return||', 'doorman:', 'ah', '||comma||', 'sure', '||period||', 'poor', 'doorman', 'has', 'to', 'work', 'two', 'jobs', 'to', 'put', 'food', 'on', 'the', 'table', 'for', 'mother', 'and', 'baby', '||period||', '||leftparen||', 'supercilious', '||rightparen||', 'no', '||comma||', 'i', 'live', 'here', '||period||', "that's", 'okay', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'you', 'work', 'all', 'day', 'as', 'a', 'doorman', 'at', 'one', 'building', '||period||', 'then', 'you', 'come', 'home', 'and', 'stand', 'outside', 'your', 'own', 'building', '||questionmark||', '||return||', '||return||', 'doorman:', 'you', 'got', 'a', 'problem', 'with', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', "i'm", 'not', 'going', 'in', 'your', 'building', '||period||', 'i', 'really', "don't", 'have', 'to', 'talk', 'to', 'you', '||period||', 'goodbye', '||period||', '||return||', '||return||', 'doorman:', '||leftparen||', 'calling', 'after', 'jerry', '||rightparen||', 'you', 'really', 'think', "you're", 'better', 'than', 'me', '||comma||', "don't", 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'my', 'father', 'opened', 'his', 'shirt', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'nods', 'to', 'kramer', '||rightparen||', 'tell', 'him', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'matter', 'of', 'fact', '||rightparen||', 'he', 'had', 'breasts', '||period||', '||return||', '||return||', 'jerry:', 'what', "d'you", 'mean', '||comma||', 'breasts', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'waves', 'his', 'hands', '||rightparen||', 'big', 'breasts', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', 'a', 'lot', 'of', 'older', 'men', 'have', 'that', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'not', 'these', '||period||', 'these', 'were', 'real', 'hooters', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'throwing', 'up', 'all', 'night', '||period||', 'it', 'was', 'like', 'my', 'own', 'personal', 'crying', 'game', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', "you're", 'gonna', 'get', "'em", 'too', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'worried', '||rightparen||', 'yeah', '||comma||', "that's", 'right', '||period||', 'what', 'if', "it's", 'a', 'genetic', 'thing', '||comma||', 'like', 'father', 'like', 'son', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', '||comma||', 'your', "father's", 'not', 'bald', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'no', '||period||', 'that', 'skips', 'a', 'generation', '||period||', 'the', 'baldness', 'gene', 'comes', 'from', 'your', 'grandfather', '||period||', '||return||', '||return||', 'jerry:', 'then', 'i', 'suppose', 'the', 'bosom', 'gene', 'comes', 'from', 'your', 'grandmother', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'frank', "can't", 'be', 'too', 'comfortable', 'with', 'those', 'things', 'clanging', 'around', '||period||', 'he', 'should', 'wear', 'something', 'for', 'support', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'like', 'a', 'bra', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'bra', 'is', 'for', 'ladies', '||period||', "i'm", 'talking', 'about', 'a', 'support', 'undergarment', 'specifically', 'designed', 'for', 'men', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'that', 'brain', 'never', 'stops', 'working', '||comma||', 'does', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'tell', 'you', '||comma||', "i'm", 'gonna', 'go', 'noodle', 'with', 'this', '||period||', '||return||', '||return||', 'buxom', 'woman:', '||leftparen||', 'indicating', 'her', 'shirt', 'with', 'her', 'finger', '||rightparen||', 'hey', '||comma||', "we're", 'twins', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thinking', 'she', 'means', 'the', 'breasts', '||rightparen||', 'what', '||exclammark||', '||exclammark||', '||return||', '||return||', 'buxom', 'woman:', 'our', 'shirts', '||period||', "they're", 'the', 'same', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'huh', '||comma||', 'imagine', 'that', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', '||questionmark||', "what'd", 'you', 'say', 'to', 'the', 'doorman', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'nothing', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sitting', 'beside', 'jerry', '||rightparen||', 'he', 'claims', 'that', 'you', 'followed', 'him', 'home', '||comma||', 'and', 'started', 'harassing', 'him', '||period||', '||return||', '||return||', 'jerry:', 'what', 'has', 'this', 'guy', 'got', 'a', 'personal', 'vendetta', 'with', 'me', '||questionmark||', '||exclammark||', "what'd", 'i', 'do', 'to', 'him', '||questionmark||', "'cos", 'i', 'asked', 'him', 'about', 'the', 'knicks', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'did', 'you', 'make', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'you', 'wanna', 'go', 'tonight', '||questionmark||', 'you', 'can', 'pick', 'me', 'up', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'can', 'we', 'go', 'to', 'a', 'later', 'show', '||comma||', 'so', "he's", 'off', 'his', 'shift', 'when', 'i', 'come', 'by', '||questionmark||', '||return||', '||return||', 'elaine:', 'ugh', '||period||', 'so', 'now', 'we', 'have', 'to', 'rearrange', 'our', 'lives', 'to', 'avoid', 'the', 'doorman', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'we', 'do', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'wrong', 'with', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", '||period||', '||period||', '||period||', 'trying', 'to', 'get', 'something', 'off', 'his', 'chest', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'agitated', '||rightparen||', 'alright', '||comma||', 'i', 'gotta', 'try', 'and', 'talk', 'my', 'mother', 'into', 'taking', 'him', 'off', 'my', 'hands', '||period||', '||return||', '||return||', 'doorman:', 'help', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jumps', 'in', 'surprise', '||rightparen||', 'hoh', '||exclammark||', "what're", 'you', 'doing', 'here', '||questionmark||', "you're", 'supposed', 'to', 'be', 'gone', '||period||', '||return||', '||return||', 'doorman:', 'i', 'traded', 'shifts', 'with', 'the', 'night', 'doorman', '||period||', 'he', 'had', 'some', 'personal', 'affairs', 'to', 'attend', 'to', '||period||', 'you', 'see', '||comma||', 'my', 'fellow', 'doorman', 'and', 'i', 'watch', 'out', 'for', 'each', 'other', '||period||', 'we', "don't", 'stab', 'each', 'other', 'in', 'the', 'back', '||comma||', 'like', 'people', 'in', 'your', 'world', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'ease', 'the', 'tension', '||rightparen||', 'look', '||comma||', 'i', "don't", 'want', 'any', 'trouble', '||period||', 'i', "don't", 'have', 'a', 'doorman', 'in', 'my', 'building', '||period||', 'i', 'guess', "i'm", 'just', 'not', 'used', 'to', 'talking', 'to', 'them', '||period||', "i'd", 'really', 'just', 'like', 'to', 'be', 'friends', '||period||', '||return||', '||return||', 'doorman:', 'you', 'wanna', 'be', 'friends', '||questionmark||', '||return||', '||return||', 'jerry:', "i'd", 'like', 'to', 'be', '||period||', '||return||', '||return||', 'doorman:', 'then', 'watch', 'the', 'door', 'for', 'a', 'minute', '||comma||', 'would', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'doorman:', 'yeah', '||comma||', 'i', 'just', 'wanna', 'run', 'and', 'get', 'a', 'beer', '||period||', "i'll", 'be', 'back', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'jerry:', 'wha', '||period||', '||period||', '||period||', '||questionmark||', 'wai', '||period||', '||period||', '||period||', 'wait', 'a', 'second', '||period||', 'what', 'do', 'i', 'do', '||questionmark||', '||return||', '||return||', 'doorman:', "it's", 'not', 'brain', 'surgery', '||period||', 'you', 'open', 'the', 'door', 'for', 'people', 'who', 'live', 'here', '||period||', 'and', '||comma||', 'if', 'they', "don't", 'live', 'here', '||comma||', "don't", 'let', 'them', 'in', '||period||', '||leftparen||', 'takes', 'off', 'his', 'hat', '||rightparen||', 'here', '||period||', '||leftparen||', 'putting', 'it', 'on', "jerry's", 'head', '||rightparen||', 'wear', 'that', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'the', 'man', 'in', 'the', 'elevator', '||rightparen||', 'hey', '||comma||', 'hey', '||period||', 'wait', 'a', 'second', '||period||', 'hey', '||exclammark||', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||comma||', 'wait', 'a', 'second', '||period||', 'you', 'live', 'here', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'green:', '||leftparen||', 'indignant', '||rightparen||', 'of', 'course', 'i', 'live', 'here', '||period||', "i've", 'lived', 'here', 'for', 'twenty', 'years', '||period||', 'now', '||comma||', 'if', 'you', "don't", 'let', 'me', 'in', '||comma||', "i'm", 'going', 'to', 'call', 'the', 'police', 'and', 'have', 'you', 'arrested', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'after', 'the', 'guy', '||rightparen||', 'you', 'think', "you're", 'better', 'than', 'me', '||questionmark||', '||return||', '||return||', 'delivery', 'guy:', '||leftparen||', 'indicating', '||rightparen||', 'you', 'have', 'to', 'sign', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||period||', '||return||', '||return||', 'delivery', 'guy:', '||leftparen||', 'with', 'a', 'smile', '||rightparen||', 'hey', '||comma||', 'how', "'bout", 'those', 'knicks', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'dismissive', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'i', 'uh', '||comma||', 'brought', 'back', 'your', 'record', 'player', '||comma||', 'huh', '||period||', '||return||', '||return||', 'frank:', 'thank', 'you', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'indicating', 'a', 'chair', '||rightparen||', 'put', 'it', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'how', 'you', 'feeling', '||questionmark||', '||return||', '||return||', 'frank:', 'tired', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||period||', 'your', 'back', 'hurt', '||questionmark||', '||return||', '||return||', 'frank:', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'obvious', '||comma||', 'you', 'know', '||period||', "you're", 'carrying', 'a', 'lot', 'of', 'extra', 'baggage', 'up', 'there', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'looks', 'down', '||comma||', 'and', 'indicates', 'his', 'chest', '||rightparen||', 'up', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'top', 'floor', '||period||', '||leftparen||', 'sits', 'beside', 'frank', '||rightparen||', 'listen', '||comma||', 'frank', '||comma||', 'have', 'you', 'ever', 'considered', 'wearing', 'something', 'for', 'support', '||questionmark||', 'now', '||comma||', 'look', 'at', 'this', '||period||', '||leftparen||', 'reaches', 'into', 'his', 'pocket', '||rightparen||', 'mind', 'you', '||comma||', 'this', 'is', 'just', 'a', 'prototype', '||period||', '||return||', '||return||', 'frank:', 'you', 'want', 'me', 'to', 'wear', 'a', 'bra', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'a', 'bra', 'is', 'for', 'ladies', '||period||', '||return||', '||return||', 'kramer:', 'meet', '||comma||', 'the', 'bro', '||period||', '||return||', '||return||', 'estelle:', 'so', '||comma||', 'is', 'your', 'father', 'excited', 'about', 'coming', 'home', '||questionmark||', '||return||', '||return||', 'estelle:', 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'broaching', 'a', 'subject', '||rightparen||', 'hey', 'mom', '||period||', 'what', 'kind', 'of', 'woman', 'was', 'grandma', '||questionmark||', '||return||', '||return||', 'estelle:', 'all', 'of', 'a', 'sudden', "you're", 'interested', 'in', 'your', 'grandmother', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||period||', 'you', 'get', 'to', 'a', 'certain', 'point', '||comma||', 'you', 'wanna', 'know', 'about', 'your', 'roots', '||period||', '||return||', '||return||', 'estelle:', 'she', 'was', 'a', 'lovely', 'woman', '||period||', '||return||', '||return||', 'george:', 'yuh', '||period||', 'what', 'about', 'physically', '||questionmark||', '||return||', '||return||', 'estelle:', 'physically', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'you', 'know', '||comma||', "what'd", 'she', 'uh', '||comma||', 'look', 'like', '||questionmark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', "you've", 'seen', 'pictures', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', 'you', "can't", 'tell', 'much', 'from', 'those', 'pictures', '||period||', '||return||', '||return||', 'estelle:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'was', 'she', 'uh', '||comma||', 'was', 'she', 'a', 'big', '||comma||', 'uh', 'woman', '||questionmark||', '||return||', '||return||', 'estelle:', 'big', '||questionmark||', 'no', '||comma||', 'just', 'my', 'height', '||period||', '||return||', '||return||', 'george:', 'bosomy', '||questionmark||', '||return||', '||return||', 'estelle:', 'bosomy', '||questionmark||', 'you', 'wanna', 'know', 'if', 'your', 'grandmother', 'was', 'bosomy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'to', 'laugh', 'it', 'off', '||rightparen||', 'no', '||comma||', 'i', 'was', 'just', 'wondering', '||period||', 'the', 'information', 'could', 'be', 'relevant', '||period||', '||return||', '||return||', 'estelle:', 'where', 'do', 'you', 'get', 'your', 'genes', 'from', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', "that's", 'what', "i'd", 'like', 'to', 'know', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'you', 'left', 'your', 'post', '||period||', '||return||', '||return||', 'jerry:', 'he', 'left', 'me', 'there', '||period||', 'you', 'see', 'the', 'mind', 'games', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'one', 'of', 'the', 'tenants', '||rightparen||', 'hey', '||comma||', "what's", 'up', '||questionmark||', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'tenant', '1:', 'somebody', 'stole', 'the', 'couch', 'out', 'of', 'the', 'lobby', '||period||', '||return||', '||return||', 'tenant', '2:', "where's", 'the', 'doorman', '||questionmark||', 'how', 'come', 'someone', "wasn't", 'watching', 'the', 'door', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', 'to', 'jerry', '||rightparen||', 'jerry', '||comma||', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'shocked', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'were', 'you', 'doing', 'watching', 'the', 'door', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'asked', 'me', 'to', '||period||', 'we', 'were', 'getting', 'along', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thinking', '||rightparen||', 'you', 'know', '||comma||', 'my', 'fingerprints', 'are', 'all', 'over', 'this', '||period||', 'that', 'doorman', 'knows', "you're", 'a', 'friend', 'of', 'mine', '||period||', "he'll", 'tell', 'that', 'co', '||dash||', 'op', 'lady', '||comma||', "she'll", 'tell', 'mr', '||period||', 'pitt', '||period||', '||period||', '||period||', 'jerry', '||comma||', "i'm", 'in', 'this', 'too', 'deep', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'find', 'it', 'odd', 'that', 'as', 'soon', 'as', 'he', 'leaves', '||comma||', 'the', 'couch', 'gets', 'stolen', '||questionmark||', 'maybe', "he's", 'setting', 'me', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'taking', 'command', '||rightparen||', 'alright', '||comma||', 'shut', 'up', '||period||', 'shut', 'up', '||period||', 'just', 'let', 'me', 'think', '||period||', 'i', 'gotta', 'think', '||period||', 'we', 'gotta', 'get', 'our', 'story', 'straight', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'well', 'what', 'if', 'we', 'say', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', '||leftparen||', 'claps', 'hands', '||rightparen||', 'here', 'it', 'is', '||period||', 'this', 'is', 'what', "we'll", 'tell', "'em", '||period||', 'you', 'came', 'to', 'pick', 'me', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'came', 'to', 'pick', 'you', 'up', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', "that's", 'what', 'i', 'just', 'said', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'i', 'was', 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'know', 'what', 'you', 'were', 'just', '||period||', "it's", 'not', 'helping', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'well', '||period||', 'just', '||comma||', 'start', 'again', '||comma||', 'then', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'you', 'came', 'to', 'pick', 'me', 'up', 'at', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'elaine:', 'you', 'see', '||questionmark||', 'again', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'i', 'said', 'right', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'you', 'came', 'right', 'upstairs', '||comma||', 'without', 'talking', 'to', 'the', 'doorman', '||period||', '||return||', '||return||', 'jerry:', 'but', 'the', "doorman's", 'gonna', 'say', 'that', 'i', 'was', 'there', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'intense', '||rightparen||', 'so', 'what', '||questionmark||', 'no', '||dash||', "one's", 'gonna', 'believe', 'a', 'doorman', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'i', "don't", 'know', 'if', 'this', 'is', 'gonna', 'work', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'aggressive', '||comma||', 'with', 'finger', 'pointing', '||rightparen||', 'just', 'stick', 'with', 'the', 'story', '||period||', "we'll", 'be', 'fine', '||period||', 'let', 'me', 'do', 'the', 'talking', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'good', '||period||', 'now', 'fix', 'me', 'a', 'drink', '||period||', '||return||', '||return||', 'kramer:', "how's", 'that', 'feel', '||questionmark||', '||return||', '||return||', 'frank:', 'this', 'feels', 'very', 'comfortable', '||period||', '||return||', '||return||', 'kramer:', 'you', 'see', '||questionmark||', '||return||', '||return||', 'frank:', 'i', 'feel', 'ten', 'years', 'younger', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', 'your', "posture's", 'a', 'lot', 'better', '||period||', 'look', 'at', 'you', '||period||', '||return||', '||return||', 'frank:', 'and', 'i', 'can', 'breathe', 'easier', '||comma||', 'too', '||period||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', '||exclammark||', 'now', '||comma||', 'frank', '||comma||', 'listen', '||period||', "here's", 'what', "i'm", 'thinking', '||period||', 'now', '||comma||', 'you', 'have', 'a', 'friend', 'in', 'the', 'bra', 'business', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'frank:', 'of', 'course', '||period||', 'sid', 'farkus', '||period||', "he's", 'the', 'best', 'in', 'the', 'business', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'claps', 'his', 'hands', '||rightparen||', "here's", 'our', 'chance', '||period||', 'what', "d'you", 'say', '||questionmark||', "it'll", 'be', 'me', '||comma||', 'you', 'and', 'the', 'bro', '||comma||', 'bro', '||period||', '||return||', '||return||', 'frank:', "let's", 'do', 'it', '||exclammark||', '||return||', '||return||', 'frank:', 'except', '||comma||', 'we', 'gotta', 'do', 'something', 'about', 'the', 'name', '||period||', '||return||', '||return||', 'kramer:', 'why', '||comma||', "what's", 'wrong', 'with', 'bro', '||questionmark||', '||return||', '||return||', 'frank:', 'no', '||comma||', "bro's", 'no', 'good', '||period||', 'too', 'ethnic', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'you', 'got', 'something', 'better', '||questionmark||', '||return||', '||return||', 'frank:', 'how', "'bout", 'uh', '||period||', '||period||', '||period||', 'the', 'mansiere', '||questionmark||', '||return||', '||return||', 'kramer:', 'mansiere', '||questionmark||', '||return||', '||return||', 'frank:', "that's", 'right', '||period||', 'a', 'brassiere', 'for', 'a', 'man', '||period||', 'the', 'mansiere', '||comma||', 'get', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'upset', '||rightparen||', 'well', '||comma||', "you've", 'scared', 'her', 'off', '||period||', 'we', 'may', 'never', 'see', 'mom', 'again', '||period||', '||return||', '||return||', 'frank:', 'hey', 'george', '||comma||', 'what', "d'you", 'like', 'better', '||questionmark||', 'the', 'bro', '||comma||', 'or', 'the', 'mansiere', '||questionmark||', '||return||', '||return||', 'george:', 'dad', '||period||', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'doorman:', 'i', 'had', 'to', 'use', 'the', 'bathroom', '||comma||', 'so', 'i', 'asked', 'this', 'guy', 'to', 'watch', 'the', 'door', 'for', 'a', 'few', 'minutes', '||period||', '||return||', '||return||', 'mrs', '||period||', 'payton:', 'why', 'should', 'i', 'believe', 'you', '||questionmark||', '||return||', '||return||', 'doorman:', '||leftparen||', 'indicating', 'elaine', '||rightparen||', 'actually', '||comma||', 'it', 'was', 'her', 'friend', '||period||', '||return||', '||return||', 'mrs', '||period||', 'payton:', 'i', 'was', 'just', 'speaking', 'to', 'the', 'doorman', 'here', '||comma||', 'about', 'the', 'couch', 'robbery', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'really', '||questionmark||', '||leftparen||', 'skeptical', '||rightparen||', 'the', 'doorman', '||period||', 'and', '||comma||', 'pray', 'tell', '||comma||', 'what', 'did', 'the', 'doorman', 'say', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'payton:', 'he', 'said', 'he', 'asked', 'a', 'friend', 'of', 'yours', 'to', 'watch', 'the', 'door', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dismissive', '||rightparen||', 'oh', '||comma||', 'my', '||period||', 'well', '||comma||', 'the', 'doorman', 'certainly', 'has', 'a', 'wild', 'imagination', '||comma||', "doesn't", 'he', '||questionmark||', '||return||', '||return||', 'doorman:', 'well', '||period||', '||period||', '||period||', 'what', 'do', 'we', 'have', 'here', '||questionmark||', 'perhaps', 'miss', 'benes', 'could', 'explain', 'why', 'a', 'jerry', 'seinfeld', 'signed', 'for', 'this', 'package', '||leftparen||', 'handing', 'the', 'package', 'to', 'mrs', '||period||', 'payton', '||rightparen||', 'at', 'the', 'exact', 'same', 'time', 'the', 'couch', 'was', 'stolen', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'a', 'rush', '||rightparen||', 'he', 'never', 'watched', 'a', 'door', 'before', '||comma||', 'mrs', 'payton', '||comma||', 'he', "didn't", 'know', 'how', 'to', 'do', 'it', '||period||', '||leftparen||', 'pleading', '||rightparen||', 'you', 'know', '||comma||', "he's", 'a', 'comedian', '||comma||', 'mrs', 'payton', '||comma||', 'they', "don't", 'know', 'how', 'to', 'do', 'anything', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'desperate', '||rightparen||', "don't", 'you', 'see', "what's", 'going', 'on', 'here', '||questionmark||', 'he', 'set', 'us', 'up', '||period||', "he's", 'playing', 'all', 'these', 'mindgames', '||period||', '||return||', '||return||', 'jerry:', "you're", 'saying', "i'm", 'responsible', 'for', 'the', 'couch', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'worked', 'up', '||rightparen||', 'there', 'was', 'nothing', 'i', 'could', 'do', '||period||', 'he', 'said', 'he', 'had', 'a', 'federal', 'express', 'slip', 'with', 'your', 'signature', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'livid', '||rightparen||', 'diabolical', '||period||', 'he', 'thought', 'of', 'everything', '||period||', 'he', 'was', 'setting', 'me', 'up', 'from', 'day', 'one', '||exclammark||', '||return||', '||return||', 'elaine:', 'is', 'it', 'possible', 'we', 'were', 'victims', 'of', 'a', 'sting', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'sure', "he's", 'having', 'a', 'good', 'laugh', 'over', 'this', 'with', 'his', 'doorman', 'buddies', '||period||', '||return||', '||return||', 'doorman', '2:', 'so', '||comma||', 'you', "didn't", 'even', '||leftparen||', 'indistinct', '||rightparen||', 'watch', 'the', 'couch', '||questionmark||', '||return||', '||return||', 'doorman:', 'no', '||period||', 'i', 'was', 'just', 'messing', 'with', 'his', 'head', '||period||', '||return||', '||return||', 'doorman', '2:', 'and', 'they', 'think', "they're", 'better', 'than', 'us', '||questionmark||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', 'jerry', '||period||', '||period||', '||period||', 'jerry', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'have', 'to', 'replace', 'the', 'couch', '||period||', '||return||', '||return||', 'jerry:', 'now', 'we', 'have', 'to', 'buy', 'a', 'new', 'couch', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'crafty', '||rightparen||', 'not', 'necessarily', '||period||', 'why', "don't", 'you', 'take', 'back', 'the', 'couch', 'you', 'gave', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'one', 'with', 'the', 'poppie', 'stain', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'sure', '||period||', '||leftparen||', 'big', 'smile', '||rightparen||', 'then', 'my', 'father', 'will', 'have', 'no', 'place', 'to', 'sleep', '||period||', '||leftparen||', 'snaps', 'fingers', '||rightparen||', "he's", 'gotta', 'move', 'out', '||period||', '||return||', '||return||', 'elaine:', 'but', "it's", 'got', 'a', 'pee', '||dash||', 'stain', 'on', 'it', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'the', "cushion's", 'turned', 'over', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'sure', '||rightparen||', 'i', 'guess', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'enthusiastic', '||rightparen||', 'yeah', '||period||', 'you', 'get', 'a', 'couch', '||period||', 'i', 'get', 'rid', 'of', 'my', 'father', '||period||', 'it', "couldn't", 'be', 'more', 'perfect', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', '||comma||', "it's", 'called', 'the', 'bro', '||period||', '||return||', '||return||', 'frank:', 'or', '||comma||', 'the', 'mansiere', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'i', 'prefer', 'the', 'bro', '||period||', '||return||', '||return||', 'frank:', 'i', 'like', 'mansiere', '||period||', '||return||', '||return||', 'farkus:', 'well', '||comma||', 'i', 'have', 'to', 'tell', 'you', '||comma||', "it's", 'a', 'very', 'interesting', 'idea', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'farkus:', 'you', 'know', '||comma||', 'selling', 'bras', 'exclusively', 'to', 'women', '||comma||', "we're", 'really', 'only', 'utilising', 'fifty', 'percent', 'of', 'the', 'market', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'to', 'kramer', '||rightparen||', "that's", 'what', 'we', 'figured', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'frank', '||rightparen||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'farkus:', 'and', '||comma||', 'to', 'be', 'perfectly', 'frank', '||comma||', "i've", 'always', 'felt', 'i', 'could', 'use', 'some', 'support', '||period||', 'i', 'know', '||comma||', 'when', "i'm", 'wearing', 'banlon', '||comma||', 'there', 'appears', 'to', 'be', 'some', 'jiggling', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'vehement', '||rightparen||', 'i', "wouldn't", 'be', 'caught', 'dead', 'in', 'banlon', '||period||', '||return||', '||return||', 'farkus:', '||leftparen||', 'indicating', 'the', 'bro', '||rightparen||', 'so', 'uh', '||comma||', 'what', "d'you", 'see', 'in', 'the', 'back', '||questionmark||', 'hooks', '||questionmark||', 'velcro', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||period||', '||return||', '||return||', 'frank:', 'definitely', 'velcro', '||period||', '||return||', '||return||', 'kramer:', 'say', "you're", 'getting', 'intimate', 'with', 'a', 'woman', 'uh', '||comma||', 'you', "don't", 'want', 'her', 'fumbling', 'and', 'struggling', 'back', 'there', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', "we've", 'all', 'experienced', 'that', '||period||', '||return||', '||return||', 'farkus:', 'summer', 'nights', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', 'at', 'farkus', '||rightparen||', 'very', 'funny', '||period||', '||return||', '||return||', 'farkus:', 'well', '||comma||', 'i', 'still', 'have', 'to', 'talk', 'about', 'this', 'to', 'mr', '||period||', 'degrunmont', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'of', 'course', '||comma||', 'yes', '||period||', '||return||', '||return||', 'farkus:', '||period||', '||period||', '||period||', 'but', '||comma||', 'barring', 'any', 'unforeseen', 'developments', '||comma||', 'gentlemen', '||comma||', 'i', 'think', "we're", 'sitting', 'on', 'a', 'winner', '||period||', '||return||', '||return||', 'farkus:', '||leftparen||', 'sympathy', '||rightparen||', 'frank', '||comma||', 'i', 'wanna', 'tell', 'you', 'how', 'sorry', 'i', 'am', 'to', 'hear', 'about', 'you', 'and', 'estelle', 'separating', '||period||', '||return||', '||return||', 'frank:', 'oh', '||comma||', 'thank', 'you', '||comma||', 'sid', '||comma||', 'but', "that's", 'all', 'in', 'the', 'past', '||period||', "i'm", 'ready', 'to', 'move', 'on', '||period||', '||return||', '||return||', 'farkus:', '||leftparen||', 'thoughtful', '||rightparen||', "i've", 'always', 'been', 'very', 'fond', 'of', 'estelle', '||period||', 'beautiful', 'woman', '||period||', 'i', 'uh', '||comma||', 'i', 'hope', 'you', "don't", 'think', 'uh', '||comma||', 'this', 'is', 'out', 'of', 'line', '||comma||', 'but', 'would', 'it', 'be', 'okay', 'with', 'you', '||comma||', 'if', 'i', 'were', 'to', 'ask', 'her', 'out', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'anger', '||rightparen||', 'you', 'wanna', 'go', 'out', 'with', 'my', 'wife', '||questionmark||', '||exclammark||', '||leftparen||', 'rage', '||rightparen||', 'where', 'do', 'you', 'get', 'the', 'nerve', 'to', 'ask', 'me', 'something', 'like', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'farkus:', 'oh', '||comma||', 'no', '||comma||', 'frank', '||comma||', 'i', 'was', 'just', 'saying', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'i', 'know', 'what', "you're", 'saying', '||comma||', 'and', 'i', 'know', 'what', "you're", 'thinking', '||exclammark||', '||exclammark||', '||return||', '||return||', 'farkus:', 'no', '||comma||', 'frank', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', "c'mon", '||comma||', 'cosmo', '||comma||', "i'm", 'not', 'doing', 'business', 'with', 'this', 'guy', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'frank', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', 'took', 'the', 'couch', 'back', '||period||', '||return||', '||return||', 'frank:', 'he', 'took', 'it', 'back', '||questionmark||', "didn't", 'you', 'tell', 'him', 'i', 'was', 'using', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'pleaded', 'with', 'him', '||period||', '||return||', '||return||', 'frank:', 'where', 'am', 'i', 'supposed', 'to', 'sleep', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'took', 'the', 'liberty', 'of', 'packing', 'your', 'things', '||period||', '||leftparen||', 'gleeful', '||rightparen||', "mom's", 'coming', 'to', 'get', 'you', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'jerry', "didn't", 'want', 'that', 'couch', '||comma||', 'because', 'of', 'the', 'stain', '||questionmark||', '||return||', '||return||', 'frank:', 'what', 'stain', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', "didn't", 'notice', '||questionmark||', 'it', 'has', 'a', 'pee', '||dash||', 'stain', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'disbelief', '||rightparen||', 'you', 'had', 'me', 'sleeping', 'on', 'a', 'pee', '||dash||', 'stained', 'couch', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'light', '||rightparen||', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'the', 'cushion', 'was', 'turned', 'over', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'anger', '||rightparen||', 'but', '||comma||', 'the', 'very', 'idea', '||period||', 'you', 'had', 'me', 'lying', 'in', 'urine', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'ah', '||exclammark||', "there's", 'mom', '||comma||', "there's", 'mom', '||period||', '||return||', '||return||', 'estelle:', 'is', 'it', 'safe', 'to', 'come', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'of', 'course', '||period||', '||leftparen||', 'motioning', 'estelle', 'to', 'enter', '||rightparen||', 'of', 'course', '||period||', '||return||', '||return||', 'estelle:', "you're", 'not', 'having', 'any', 'of', 'your', 'transvestite', 'parties', '||questionmark||', '||return||', '||return||', 'frank:', 'will', 'you', 'stop', 'it', '||questionmark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'lived', 'with', 'him', 'for', 'forty', 'years', '||comma||', 'i', 'never', 'saw', 'him', 'trying', 'on', 'my', 'underwear', '||period||', 'as', 'soon', 'as', 'he', 'leaves', 'the', 'house', '||comma||', 'he', 'turns', 'into', 'j', '||period||', 'edgar', 'hoover', '||exclammark||', '||return||', '||return||', 'frank:', 'here', '||comma||', 'cosmo', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'frank:', '||period||', '||period||', '||period||', 'you', 'can', 'have', 'the', 'hi', '||dash||', 'fi', '||period||', '||leftparen||', 'hands', 'it', 'over', '||rightparen||', 'i', "don't", 'need', 'it', 'now', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'awright', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'frank:', '||period||', '||period||', '||period||', 'i', 'got', 'one', 'at', 'home', '||period||', '||return||', '||return||', 'estelle:', 'alright', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'frank:', "we'll", 'go', 'out', 'for', 'dinner', 'tonight', '||period||', '||return||', '||return||', 'estelle:', 'i', "can't", 'tonight', '||comma||', "i'm", 'busy', '||period||', '||return||', '||return||', 'frank:', 'what', "d'you", 'mean', '||comma||', 'busy', '||questionmark||', '||return||', '||return||', 'estelle:', "i'm", 'having', 'dinner', 'with', 'someone', '||period||', '||return||', '||return||', 'frank:', 'with', 'whom', '||questionmark||', '||return||', '||return||', 'estelle:', 'sid', 'farkus', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'anger', '||rightparen||', 'sid', 'farkus', '||questionmark||', '||exclammark||', "you're", 'not', 'having', 'dinner', 'with', 'a', 'bra', 'salesman', '||period||', '||return||', '||return||', 'estelle:', 'hey', '||comma||', 'he', 'only', 'sells', 'them', '||period||', 'he', "doesn't", 'wear', "'em", '||period||', '||return||', '||return||', 'frank:', 'okay', '||comma||', "that's", 'it', '||exclammark||', "i'm", 'not', 'coming', 'home', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'upset', '||rightparen||', 'but', 'you', "can't", 'stay', 'here', '||period||', "there's", 'no', 'place', 'to', 'sleep', '||exclammark||', '||return||', '||return||', 'frank:', "we'll", 'work', 'something', 'out', '||period||', '||return||', '||return||', 'german', 'woman:', 'stop', 'him', '||exclammark||', 'ja', '||comma||', 'ja', '||comma||', 'ja', '||comma||', "it's", 'him', '||exclammark||', '||return||', '||return||', 'german', 'woman:', 'stop', 'that', 'man', '||exclammark||', "it's", 'him', '||period||', '||return||', '||return||', 'german', 'woman:', 'somebody', '||comma||', 'stop', 'him', '||exclammark||', 'please', '||comma||', 'quick', '||period||', 'stop', '||comma||', "it's", 'him', '||period||', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'help', '||period||', 'stop', 'him', '||period||', '||return||', '||return||', 'horst:', 'hey', '||comma||', 'hey', '||period||', '||leftparen||', 'pointing', '||rightparen||', 'that', 'record', 'player', 'is', 'not', 'yours', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'look', '||period||', 'somebody', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'horst:', "you're", 'a', 'thief', '||period||', 'we', 'have', 'proof', '||period||', '||return||', '||return||', 'horst:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'first', 'upper', '||dash||', 'body', 'support', 'undergarment', '||comma||', 'specifically', 'designed', 'for', 'men', '||period||', '||return||', '||return||', 'horst:', 'how', 'does', 'it', 'connect', 'in', 'the', 'back', '||questionmark||', 'with', 'a', 'hook', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', '||leftparen||', 'demonstrates', '||rightparen||', 'here', '||comma||', 'velcro', '||period||', '||return||', '||return||', 'horst:', '||leftparen||', 'to', 'the', 'portly', 'german', '||rightparen||', 'ooh', '||comma||', '||leftparen||', 'indistinct', 'german', '||rightparen||', '||period||', '||period||', '||period||', 'keine', 'problem', '||comma||', 'ah', '||questionmark||', '||return||', '||return||', 'horst:', 'is', 'gut', '||comma||', 'ja', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'payton:', 'well', '||comma||', 'i', 'suppose', "it'll", 'have', 'to', 'do', '||period||', '||return||', '||return||', 'elaine:', "it's", 'a', 'beautiful', 'couch', '||period||', '||return||', '||return||', 'jerry:', "it's", 'hardly', 'been', 'used', '||period||', '||return||', '||return||', 'jerry:', 'poppie', '||exclammark||', '||return||', '||return||', 'poppie:', 'oh', '||comma||', 'hello', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'poppie:', 'visiting', 'my', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'ohh', '||period||', 'hey', '||comma||', 'how', 'you', 'feeling', '||questionmark||', '||return||', '||return||', 'poppie:', 'oh', '||comma||', 'much', 'better', '||comma||', 'much', 'better', '||period||', 'the', 'doctors', 'say', 'i', 'cannot', 'have', 'no', 'aggravation', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', '||return||', '||return||', 'poppie:', 'so', '||comma||', 'i', 'sell', 'the', 'restaurant', '||comma||', 'uh', '||questionmark||', 'i', 'just', 'take', 'it', 'easy', '||period||', 'see', '||comma||', 'if', 'i', 'get', 'excited', '||comma||', "'ats", 'aggravated', 'my', 'condition', '||period||', 'the', 'last', 'time', 'i', 'got', 'aggravated', '||comma||', 'was', 'in', 'the', 'restaurant', '||period||', 'with', 'your', 'friend', '||period||', '||return||', '||return||', 'poppie:', 'she', 'start', 'the', 'big', 'fight', '||comma||', 'about', 'abortion', '||period||', '||return||', '||return||', 'poppie:', "it's", 'you', '||exclammark||', "it's", 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'wha', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'poppie:', 'you', '||exclammark||', 'i', '||period||', '||period||', '||period||', 'i', 'gotta', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'poppie', '||exclammark||', 'no', '||exclammark||', '||exclammark||', '||return||', '||return||', 'frank:', 'kasha', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'thanks', '||comma||', 'dad', '||period||', '||return||', '||return||', 'george:', '||quotemark||', 'that', 'guy', 'was', 'amazing', '||comma||', 'he', 'could', 'dunk', 'and', 'he', 'was', 'my', 'height', '||period||', '||period||', '||period||', 'what', 'was', 'his', 'name', 'again', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'jimmy', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'jimmy', '||comma||', 'right', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', 'dunno', 'how', 'you', 'could', 'forget', '||period||', 'he', 'kept', 'reffering', 'to', 'himself', 'in', 'the', 'third', 'person', '||period||', '||quotemark||', "jimmy's", 'under', 'the', 'boards', '||period||', "jimmy's", 'in', 'the', 'open', '||period||', 'jimmy', 'makes', 'the', 'shot', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'ah', '||exclammark||', 'your', 'just', 'mad', "'cause", 'we', 'beat', 'ya', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'jerry', "it's", 'my', 'fault', '||period||', 'i', "couldn't", 'make', 'a', 'shot', '||period||', 'these', 'losses', 'they', 'stay', 'with', 'me', '||period||', 'they', '||leftparen||', '||questionmark||', '||rightparen||', 'jerry', '||period||', 'now', 'this', 'is', 'gonna', 'plague', 'me', '||period||', '||quotemark||', '||leftparen||', 'puts', 'on', 'aftershave', 'and', 'cries', 'out', '||rightparen||', 'oh', '||exclammark||', 'mother', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'hey', '||exclammark||', 'jimmy', '||exclammark||', '||exclammark||', '||exclammark||', 'ha', 'ha', 'ha', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'great', 'game', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'oh', 'yeah', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'jimmy', 'played', 'pretty', 'good', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'hey', 'you', 'know', '||comma||', 'i', 'felt', 'we', 'had', 'like', 'a', 'synergy', 'out', 'there', '||comma||', 'you', 'know', '||comma||', 'like', 'we', 'were', 'really', 'helping', 'each', 'other', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'what', "d'you", 'got', 'there', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'these', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'these', 'are', "jimmy's", 'training', 'shoes', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'yeah', '||comma||', 'yeah', 'yeah', 'yeah', '||exclammark||', "i've", 'seen', 'these', '||period||', '||period||', '||period||', '||period||', '||period||', 'they', 'sorta', '||period||', '||period||', 'they', 'make', 'your', 'legs', '||period||', '||period||', 'stronger', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'oh', 'yeah', '||exclammark||', 'jimmy', "couldn't", 'jump', 'at', 'all', 'before', 'he', 'got', 'these', '||period||', 'jimmy', 'was', 'like', 'you', '||leftparen||', 'looks', 'at', 'george', '||rightparen||', '||return||', '||return||', 'kramer:', '||quotemark||', "they're", 'plyometric', '||period||', '||leftparen||', 'sp', '||questionmark||', '||rightparen||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'plyometric', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||exclammark||', 'they', 'isolate', 'the', 'muscles', '||period||', 'the', 'muscle', 'has', 'to', 'grow', '||period||', '||period||', '||period||', '||period||', 'or', 'die', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jimmy', '||rightparen||', 'wh', '||period||', '||period||', '||period||', 'where', "d'you", "get'em", '||questionmark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'jimmy', "sells'em", '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'you', 'sell', 'them', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'oh', 'yeah', '||exclammark||', 'but', "jimmy's", 'all', 'out', 'right', 'now', '||period||', 'moving', 'to', 'manhattan', 'set', 'jimmy', 'back', 'a', 'bit', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'hey', 'listen', '||comma||', 'let', 'me', 'give', 'you', 'my', 'card', '||period||', "it's", 'got', 'my', 'home', 'number', 'on', 'it', '||period||', 'i', 'want', 'to', 'buy', 'the', 'first', 'pair', 'when', 'the', 'next', 'shipment', 'comes', 'in', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'all', 'right', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'all', 'right', 'jimmy', 'good', 'talking', 'to', 'ya', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', "jimmy'll", 'see', 'you', 'around', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'what', 'day', 'is', 'today', '||questionmark||', '||period||', '||period||', '||period||', '||period||', 'aw', '||period||', '||period||', '||period||', 'tuesday', '||exclammark||', 'damn', 'it', '||period||', 'i', "shouldn't", 'have', 'worked', 'out', 'today', '||period||', 'mr', 'wilhem', 'has', 'called', 'a', 'big', 'meeting', 'and', 'now', "i'm", 'gonna', 'be', 'sweating', 'through', 'the', 'whole', 'thing', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'why', '||period||', 'you', 'took', 'a', 'shower', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'aahhrgh', '||period||', '||period||', '||period||', 'it', "wouldn't", 'take', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'long', 'pause', '||comma||', 'audience', 'laughter', '||rightparen||', 'ten', 'minutes', 'from', 'now', '||comma||', "i'll", 'be', 'sweating', 'all', 'over', 'again', '||comma||', 'i', 'can', 'feel', 'it', '||period||', "i'm", 'a', 'human', 'heat', 'pump', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'you', 'should', 'take', 'cold', 'showers', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'cold', 'showers', '||questionmark||', "they're", 'for', 'psychotics', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', 'i', 'take', "'em", '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'they', 'give', 'me', 'a', 'whooooosh', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'guys', 'later', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'aw', 'right', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'so', '||comma||', "you're", 'heading', 'home', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'no', '||period||', '||period||', '||period||', 'got', 'dental', 'appointment', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'ah', '||exclammark||', 'what', '||period||', '||period||', 'tim', 'whatley', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'yeah', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'oh', 'yeah', '||period||', '||exclammark||', 'i', 'got', 'a', 'check', 'up', 'on', 'thursday', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'oh', '||exclammark||', 'how', "d'you", 'like', 'that', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'you', 'know', '||period||', '||period||', 'you', 'really', "shouldn't", 'brush', '24', 'hours', 'before', 'seeing', 'the', 'dentist', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', 'think', "that's", 'eat', '24', 'hours', 'before', 'surgery', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'oh', 'no', '||comma||', 'you', 'got', 'to', 'eat', 'before', 'surgery', '||comma||', 'you', 'need', 'your', 'strength', '||period||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'i', 'called', 'this', 'meeting', 'because', 'we', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'have', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'a', 'problem', '||period||', 'for', 'the', 'last', 'few', 'months', 'someone', 'has', 'been', 'stealing', 'equipment', 'from', 'the', 'club', '||period||', 'until', 'recently', "it's", 'been', 'little', 'things', '||comma||', "y'know", '||semicolon||', 'bases', '||comma||', 'batting', 'helmets', '||comma||', 'donuts', '||comma||', 'but', 'two', 'nights', 'ago', 'they', 'pulled', 'the', 'big', 'one', '||period||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'they', 'took', 'a', 'pitching', 'machine', '||comma||', 'a', 'batting', 'cage', '||comma||', 'the', 'in', '||dash||', 'field', 'tarp', 'and', 'all', 'of', 'mr', "steinbrenner's", 'vitamins', '||period||', '||period||', 'now', '||comma||', 'we', 'have', 'reasons', 'to', 'believe', "it's", 'an', 'inside', 'job', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'puffing', '||rightparen||', '||quotemark||', 'whoa', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'if', 'anybody', 'here', 'knows', 'anything', 'about', 'it', 'i', 'recommend', 'strongly', 'that', '||period||', '||period||', '||period||', 'you', 'come', 'forward', '||period||', '||quotemark||', '||return||', '||return||', 'receptionist:', '||quotemark||', 'dr', "whatley's", 'running', 'a', 'little', 'late', '||period||', 'if', "you'd", 'like', 'to', 'take', 'a', 'seat', '||comma||', "i'll", 'call', 'you', 'when', "he's", 'ready', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'all', 'right', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'oh', '||exclammark||', 'okay', '||period||', 'right', '||period||', 'thanks', 'mr', 'pitt', '||period||', '||period||', '||period||', '||period||', "'kay", '||period||', '||period||', '||period||', 'goodbye', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', '||quotemark||', 'hey', '||exclammark||', 'you', 'want', 'to', 'go', 'see', '||quotemark||', 'the', 'velvet', 'fog', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'the', 'velvet', 'fog', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yeah', '||exclammark||', 'mel', 'torm', '||comma||', "that's", 'his', 'nickname', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'what', 'the', 'hell', 'his', 'a', 'velvet', 'fog', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'do', 'you', 'wanna', 'go', 'or', 'not', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'well', '||comma||', 'where', 'is', 'it', '||questionmark||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', "he's", 'performing', 'at', 'this', 'amca', 'benefit', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'amca', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'able', 'mentally', 'challenged', 'adults', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'naaaaaa', '||period||', '||period||', '||period||', 'i', "can't", 'watch', 'a', 'man', 'sing', 'a', 'song', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'what', 'are', 'you', '||period||', '||period||', 'crazy', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'they', 'get', 'all', 'emotional', '||comma||', 'they', 'sway', '||period||', "it's", 'embarrassing', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', '||comma||', 'what', 'am', 'i', 'gonna', 'do', 'for', 'a', 'date', '||period||', '||questionmark||', '||period||', '||period||', '||period||', 'oh', '||exclammark||', 'do', 'you', 'know', 'that', '||period||', '||period||', 'hemmm', '||exclammark||', 'blond', 'guy', "who's", 'always', 'at', 'the', 'exercycle', 'at', 'the', 'health', 'club', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', "don't", 'think', 'so', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yeah', 'yeah', '||exclammark||', "he's", 'really', 'handsome', 'with', 'those', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupting', '||rightparen||', '||quotemark||', 'elaine', '||comma||', 'i', 'really', "don't", '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'pay', 'much', 'attention', 'to', 'men`s', 'faces', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'you', "can't", 'find', 'beauty', 'in', 'a', 'man', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'no', '||period||', '||period||', '||period||', 'i', 'find', 'them', 'repugnant', 'and', 'unappealing', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hey', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'kramer', '||rightparen||', '||quotemark||', 'to', 'wit', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'what', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'no', '||comma||', 'elaine', 'and', 'i', "we're", 'just', 'discussing', 'whether', 'i', 'could', 'admit', 'a', 'man', 'is', 'attractive', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hmm', '||exclammark||', 'oh', '||exclammark||', 'yeah', '||period||', "i'll", 'tell', 'you', 'who', 'is', 'an', 'attractive', 'man', '||semicolon||', 'gorge', 'will', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'really', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||exclammark||', 'he', 'has', 'clean', 'looks', '||comma||', 'scrubbed', 'and', 'shampooed', 'and', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', "he's", 'smart', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'no', '||comma||', 'no', 'i', "don't", 'find', 'him', 'all', 'that', 'bright', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'so', 'you', 'got', 'any', 'cavities', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'just', 'one', '||period||', '||period||', '||period||', '||period||', 'gotta', 'go', 'back', '||period||', '||period||', '||period||', '||period||', '||period||', 'oh', 'but', 'get', 'this', '||period||', 'elaine', '||comma||', 'you', 'will', 'appreciate', 'this', '||period||', "i'm", 'sitting', 'in', 'tim', "whatley's", 'waiting', 'room', '||period||', '||period||', '||period||', "he's", 'got', 'a', 'penthouse', 'right', 'out', 'on', 'the', 'table', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'penthouse', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'yeah', '||exclammark||', '||exclammark||', '||exclammark||', 'what', 'is', 'that', '||questionmark||', 'i', 'mean', "isn't", 'that', 'sick', '||period||', 'i', 'mean', '||comma||', "i'd", 'be', 'embarrassed', 'to', 'have', 'that', 'in', 'my', 'apartment', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'so', "what's", 'wrong', 'with', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'outraged', '||rightparen||', "he's", 'a', 'doctor', '||exclammark||', '||period||', 'i', 'mean', "it's", 'supposed', 'to', 'be', 'like', 'a', 'sterile', 'environment', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'so', '||period||', '||period||', '||period||', 'did', 'you', 'take', 'a', 'look', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'of', 'course', '||period||', '||period||', '||period||', '||period||', 'but', "that's", 'got', 'nothing', 'to', 'do', 'with', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', "i'll", 'tell', 'you', "i'm", 'looking', 'forward', 'to', 'my', 'appointment', 'on', 'thursday', '||period||', 'i', 'might', 'even', 'get', 'there', 'a', 'few', 'minutes', 'early', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'hey', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'listen', '||period||', '||period||', '||period||', 'do', 'one', 'of', 'you', 'guys', 'know', 'that', '||period||', '||period||', 'that', 'blond', 'guy', "who's", 'always', 'on', 'the', 'exercycle', 'at', 'the', 'health', 'club', '||period||', 'you', 'know', "he's", 'just', 'really', 'handsome', '||questionmark||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'head', 'down', 'low', '||rightparen||', 'i', '||period||', '||period||', '||period||', 'i', "wouldn't", 'know', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'you', 'know', 'that', 'just', 'admitting', 'a', 'man', 'is', 'handsome', "doesn't", 'necessarily', 'make', 'you', 'a', 'homosexual', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'it', "doesn't", 'help', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'all', 'right', '||comma||', "i'm", 'gone', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', "i'll", 'see', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', '||quotemark||', 'you', 'know', 'those', 'shoes', 'that', 'jimmy', 'had', '||questionmark||', 'i', 'cut', 'a', 'deal', 'with', 'him', '||period||', "we're", 'gonna', 'import', 'a', 'case', 'of', 'them', 'together', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'what', 'are', 'you', 'doing', 'that', 'for', '||comma||', 'you', 'got', 'a', 'job', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', "there's", 'a', 'lot', 'of', 'money', 'in', 'this', '||period||', '||period||', "he's", 'got', 'a', 'proven', 'sales', 'method', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'yeah', '||exclammark||', "what's", 'that', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'he', 'jumps', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "jimmy's", 'got', 'a', 'record', '||period||', "jimmy's", 'jumping', 'for', 'dollars', '||period||', 'jimmt', 'and', 'george', 'are', 'gonna', 'get', 'rich', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'will', 'you', 'stop', 'with', 'the', 'jimmies', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hey', '||exclammark||', "what's", 'this', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'kom', 'pau', '||leftparen||', 'sp', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', '||leftparen||', 'gasp_', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'kom', 'pau', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'we', 'hear', 'what', 'she', 'thinks', '||rightparen||', 'look', 'at', 'me', '||period||', '||period||', '||period||', '||period||', 'look', 'at', 'mee', '||exclammark||', '||period||', 'come', 'on', '||period||', "i'm", 'stretching', 'right', 'in', 'front', 'of', 'you', '||period||', 'heeeey', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', 'a', 'smile', '||period||', 'aah', '||exclammark||', 'we', 'made', 'contact', '||comma||', 'all', 'right', 'one', 'more', 'stretch', 'and', 'then', 'go', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'you', 'know', '||period||', '||period||', '||period||', 'jimmy', 'is', 'pretty', 'sweet', 'on', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'aaaaaahhh', '||exclammark||', 'he', 'is', '||questionmark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'oh', 'yeah', '||exclammark||', '||period||', "jimmy's", 'been', 'watching', 'you', '||period||', '||period||', '||period||', '||period||', "you're", 'just', "jimmy's", 'type', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'aaaaaaahhh', '||exclammark||', 'really', '||questionmark||', '||quotemark||', '||leftparen||', 'giggles', '||rightparen||', '||return||', '||return||', 'jimmy:', '||quotemark||', "jimmy's", 'new', 'in', 'town', '||period||', 'jimmy', 'hem', '||period||', '||period||', "doesn't", 'really', 'know', 'anyone', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'oh', '||exclammark||', 'well', "i'd", 'like', '||comma||', 'like', 'to', 'get', 'to', 'know', 'him', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'jimmy', 'would', 'like', 'to', 'get', 'to', 'know', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'ha', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'hey', '||exclammark||', 'kramer', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'boy', '||comma||', "you're", 'looking', 'sharp', 'there', 'tim', '||period||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'yeah', 'well', '||period||', '||period||', '||period||', '||period||', 'i', 'do', 'what', 'i', 'can', '||period||', "how've", 'you', 'been', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'euh', '||period||', '||period||', 'fine', '||comma||', 'good', '||comma||', 'yeah', '||exclammark||', 'just', 'been', 'occupying', 'myself', 'with', 'some', 'of', 'your', '||period||', '||period||', '||period||', '||period||', 'hem', 'reading', 'material', '||period||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'so', "what'ill", 'it', 'be', '||questionmark||', 'novocaine', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'oh', 'yes', '||comma||', 'yes', 'indeed', '||period||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'why', "don't", 'we', 'just', 'clear', 'a', 'path', 'first', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||comma||', 'yeah', '||comma||', 'lets', 'do', 'that', '||period||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'you', 'remember', 'mr', '||period||', 'thirsty', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'all', 'right', 'euhhm', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'ahh', '||exclammark||', 'you', 'too', 'with', 'these', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'under', 'the', 'effects', 'of', 'the', 'novocaine', 'slurrs', 'his', 'words', 'heavily', '||rightparen||', '||quotemark||', 'yeah', "h'amon", 'board', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'so', 'what', 'did', 'tim', 'say', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'wellhum', '||period||', '||period||', '||period||', '||period||', 'he', "th'aid", 'i', 'gotta', 'cut', 'out', 'the', 'ssssfkittles', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'looks', 'like', 'he', 'gave', 'you', 'some', 'novocaine', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'ohhh', "h'am", 'loaded', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'so', 'what', 'about', 'the', 'penthouse', '||period||', 'did', 'you', 'ask', 'him', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', 'he', 'said', 'that', 'humm', '||period||', '||period||', 'you', 'know', '||period||', 'that', 'it', 'helps', 'his', 'pathients', 'relax', 'a', 'little', 'bit', '||period||', '||period||', 'and', "he's", 'got', 'a', 'new', 'polithy', 'adults', 'only', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'adults', 'only', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'what', 'the', "hell's", 'going', 'on', 'over', 'there', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', 'you', 'know', 'its', '||period||', '||period||', 'great', '||period||', 'you', 'know', '||comma||', 'no', 'kids', '||period||', '||period||', 'allowed', '||period||', 'you', "don't", 'have', 'to', 'watch', 'your', 'language', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'you', 'find', 'you', 'need', 'to', 'use', 'a', 'lot', 'of', 'obscenities', 'at', 'the', 'dentist', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'he', '||period||', '||period||', 'he', '||period||', '||period||', '||period||', 'when', 'they', 'pull', 'that', 'needle', 'out', 'i', 'let', 'the', 'expletives', 'fly', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'watch', 'it', '||period||', '||exclammark||', '||period||', '||period||', '||period||', "you're", 'drooling', 'all', 'over', 'the', 'floor', '||period||', 'how', 'much', 'novocaine', 'did', 'that', 'guy', 'give', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', '||period||', '||period||', 'aye', "can't", 'hold', 'the', 'water', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'oh', 'yeah', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', "jimmy's", 'ready', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hey', 'jimmy', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'ha', '||period||', '||period||', 'harrr', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', "jimmy's", 'got', 'some', 'new', 'moves', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'go', 'jimmy', '||quotemark||', '||return||', '||return||', 'jimmy:', "'check", 'jimmy', 'out', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'ooohhh', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', "jimmy's", 'down', '||period||', '||quotemark||', '||return||', '||return||', 'paramedic:', '||leftparen||', 'missing', 'a', 'few', 'words', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'was', 'gonna', 'be', 'in', 'traction', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'jimmy', 'might', 'have', 'a', 'compound', 'fracture', '||period||', '||period||', "jimmy's", 'going', 'into', 'shock', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'angrily', '||rightparen||', '||quotemark||', 'why', "weren't", 'you', 'more', 'careful', 'with', 'your', 'drool', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hey', "i'm", 'doing', 'the', 'best', 'i', 'can', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'why', 'are', 'you', 'taking', 'this', 'so', 'personally', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'because', 'if', 'he', "can't", 'jump', '||period||', 'there', 'goes', 'my', 'sneaker', 'business', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'cries', 'out', '||rightparen||', 'well', 'i', 'said', "i'm", 'sorry', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||leftparen||', 'as', 'he', 'gets', 'taken', 'out', '||rightparen||', '||quotemark||', 'jim', '||period||', '||period||', '||period||', '||period||', 'jimmy', 'wont', 'forget', 'you', 'kramer', '||period||', '||period||', '||period||', 'jimmy', 'holds', 'grudges', '||period||', 'let', 'jimmy', 'go', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'but', 'i', "can't", 'feel', 'anything', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hey', 'taxi', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', 'taxi', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'go', 'ahead', '||comma||', 'go', 'ahead', 'you', 'got', 'it', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'the', 'driver', '||rightparen||', "he's", 'got', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'deensfrei:', '||leftparen||', 'slowly', '||rightparen||', 'oh', '||exclammark||', 'please', '||comma||', 'go', 'ahead', 'take', 'it', '||return||', '||return||', 'kramer:', '||quotemark||', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'you', 'were', 'here', 'first', '||period||', '||quotemark||', '||return||', '||return||', 'deensfrei:', 'no', '||period||', 'no', 'i', '||period||', '||period||', 'i', 'insist', '||period||', "i'll", 'grab', 'the', 'next', 'one', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'lets', 'share', '||period||', '||period||', 'we', 'share', '||period||', '||period||', '||period||', '||period||', 'awight', '||quotemark||', '||return||', '||return||', 'deensfrei:', '||quotemark||', 'yes', '||exclammark||', 'splendid', '||period||', "that's", 'a', 'great', 'idea', '||period||', '||quotemark||', '||return||', '||return||', 'deensfrei:', '||quotemark||', 'my', 'name', 'is', 'arnold', 'deensfrei', '||period||', 'what', 'is', 'your', 'name', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'eh', '||exclammark||', '||exclammark||', 'cosmo', 'kramer', '||period||', 'nice', 'to', 'meet', 'you', '||quotemark||', '||return||', '||return||', 'deensfrei:', '||quotemark||', 'very', 'nice', 'to', 'meet', 'you', 'cosmo', '||period||', 'are', 'you', 'heading', 'home', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'like', 'rainman', '||rightparen||', '||quotemark||', 'yeah', '||exclammark||', 'heading', 'home', '||period||', '||quotemark||', '||return||', '||return||', 'deensfrei:', '||quotemark||', 'good', 'for', 'you', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'are', 'really', 'independant', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeaheum', '||period||', '||period||', '||period||', "you're", 'not', 'doing', 'too', 'bad', 'yourself', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'argh', '||exclammark||', '||exclammark||', '||period||', '||period||', 'anyway', '||period||', '||period||', '||period||', 'jimmy', "couldn't", 'be', 'here', 'today', 'so', 'he', 'asked', 'me', 'to', 'fill', 'in', 'for', 'him', '||comma||', 'and', "i'm", 'sure', 'that', "you'll", 'be', 'impressed', 'at', 'what', 'can', 'be', 'accomplished', 'after', 'only', 'a', 'few', 'short', 'days', 'of', 'training', '||period||', '||period||', '||period||', '||period||', '||period||', 'yeah', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'whose', 'voice', 'has', 'returned', 'to', 'normal', '||rightparen||', '||quotemark||', 'the', 'velvet', 'fog', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'what', 'about', 'the', 'velvet', 'fog', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'she', 'comes', 'in', '||rightparen||', '||quotemark||', 'what', 'about', 'the', 'velvet', 'fog', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', '||period||', '||period||', '||period||', "he's", 'singing', 'at', 'a', 'benefit', 'and', "i'm", 'gonna', 'be', 'sitting', 'at', 'his', 'table', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', "i'm", 'going', 'to', 'that', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', "i'm", 'a', 'guest', 'of', 'honor', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', 'this', 'afternoon', 'i', 'shared', 'a', 'cab', 'with', 'this', '||period||', '||period||', '||period||', 'a', 'hum', '||period||', '||period||', 'deensfrei', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yeah', '||comma||', 'yeah', '||exclammark||', 'arnold', 'deensfrei', '||comma||', 'he', 'runs', 'the', 'amca', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||exclammark||', 'well', '||period||', '||period||', "that's", 'the', 'guy', '||period||', "he's", 'organizing', 'the', 'dinner', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'i', 'know', 'that', 'but', 'why', 'are', 'you', 'going', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', '||comma||', 'because', 'we', 'hit', 'it', 'off', 'and', 'he', 'was', 'very', 'impressed', 'with', 'what', 'i', 'do', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'what', 'you', 'do', '||exclammark||', '||exclammark||', '||period||', 'you', "don't", 'do', 'anything', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'well', 'apparently', 'i', 'do', 'something', "'cause", "i'm", 'sitting', 'at', 'the', 'head', 'table', 'with', 'mr', '||period||', 'mel', 'torm', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'at', 'the', 'shoes', '||rightparen||', '||quotemark||', 'what', 'are', 'those', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'ehmm', '||period||', '||period||', 'these', 'are', 'my', 'vertical', 'leap', 'training', 'shoes', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'wait', 'a', 'second', '||period||', '||period||', 'where', 'you', 'wearing', 'those', 'shoes', 'in', 'the', 'cab', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'yeah', '||exclammark||', 'yeah', '||exclammark||', 'right', 'after', 'i', 'left', 'the', 'y', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "don't", 'you', 'see', "what's", 'happened', '||comma||', 'he', "couldn't", 'talk', '||comma||', "he's", 'wearing', 'these', 'shoes', '||comma||', "he's", 'drooling', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'what', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'he', 'thinks', "you're", 'mentally', 'challenged', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'well', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', '||comma||', 'what', 'happens', 'when', 'you', 'show', 'up', '||period||', "he'll", 'see', 'that', "you're", 'not', '||period||', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'not', 'necessarily', 'because', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'sheryl', '||comma||', 'would', 'you', 'ready', 'the', 'nitro', '||leftparen||', '||questionmark||', '||questionmark||', '||questionmark||', '||rightparen||', 'please', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'oh', '||exclammark||', "where's", 'jennifer', 'today', '||questionmark||', '||quotemark||', '||return||', '||return||', 'whatley:', '||quotemark||', 'oh', '||exclammark||', '||exclammark||', "she's", 'over', 'at', 'dr', '||period||', "cessman's", 'office', '||period||', 'we', 'find', 'it', 'fun', 'to', 'swap', 'now', 'and', 'then', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'whhhoooo', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||leftparen||', 'taps', 'on', 'his', 'desk', 'loudly', '||rightparen||', '||return||', '||return||', 'george:', '||quotemark||', 'arrrrrrgh', '||exclammark||', '||exclammark||', '||period||', '||period||', "it's", 'george', '||period||', '||period||', 'oh', '||exclammark||', 'sports', 'wholesaler', '||period||', 'yeah', '||period||', 'yeah', '||period||', '||period||', '||period||', 'thanks', 'for', 'calling', 'back', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', 'still', 'got', 'the', 'shoes', '||comma||', 'still', 'got', 'the', 'shoes', '||period||', 'lots', 'of', 'them', '||period||', 'this', 'is', '||period||', '||period||', 'beautiful', 'athletic', 'gear', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', '||period||', '||period||', '||period||', '||period||', '||period||', 'well', '||period||', "i'm", 'sorry', '||period||', 'call', 'you', 'right', 'back', '||period||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'so', 'george', '||period||', 'have', 'you', 'heard', 'anything', 'about', 'the', 'missing', 'equipment', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'no', '||exclammark||', '||period||', '||period||', '||period||', 'not', '||period||', '||period||', '||period||', 'nothing', '||period||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'george', '||comma||', "there's", 'nothing', 'i', 'hate', 'more', 'than', 'a', 'liar', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'well', '||period||', '||period||', '||period||', "there's", 'no', 'room', 'for', 'someone', 'like', 'that', 'in', 'this', 'organization', '||period||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'are', 'you', 'feeling', 'all', 'right', 'george', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'hemmm', '||exclammark||', '||period||', '||period||', 'fine', '||exclammark||', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', 'you', 'look', 'a', 'little', 'warm', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', '||period||', '||period||', '||period||', "it's", 'the', 'chicken', '||quotemark||', '||return||', '||return||', 'wilhelm:', '||quotemark||', "you're", 'a', 'terrible', 'liar', 'george', '||period||', 'look', 'at', 'you', '||comma||', "you're", 'a', 'wreck', '||exclammark||', '||period||', "you're", 'sweating', 'bullets', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', "it's", 'the', 'kom', 'pau', '||period||', '||period||', '||period||', 'george', 'likes', 'his', 'chicken', 'spicy', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', '||period||', '||period||', '||period||', '||period||', 'maybe', 'you', 'were', 'still', 'under', 'the', 'gas', '||period||', 'maybe', 'you', 'were', 'hallucinating', "you're", 'coming', 'out', 'of', 'the', 'gas', 'but', 'you', 'were', 'still', 'under', 'the', 'gas', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', "don't", 'think', 'so', '||period||', 'i', 'think', 'they', 'were', 'getting', 'dressed', 'and', 'not', 'only', 'that', '||semicolon||', 'my', 'shirt', 'was', 'out', '||exclammark||', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'your', 'shirt', 'was', 'out', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', 'think', 'so', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', '||comma||', 'what', 'kind', 'of', 'shirt', 'was', 'it', '||period||', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'you', 'know', '||exclammark||', 'like', 'a', 'tennis', 'shirt', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'oh', '||exclammark||', 'well', '||period||', '||period||', '||period||', 'you', "don't", 'tuck', 'those', 'in', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'sometimes', 'i', "tuck'em", 'sometimes', 'i', "don't", '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', '||period||', 'were', 'you', 'tucked', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', 'think', 'i', 'was', 'tucked', '||period||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'all', 'right', 'then', 'say', 'you', 'were', '||period||', 'i', 'mean', '||period||', '||period||', 'what', 'do', 'you', 'think', 'could', 'have', 'happened', '||period||', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', "don't", 'know', 'but', 'i', 'was', 'spitting', 'out', 'and', 'rinsing', 'like', 'there', 'was', 'no', 'tomorrow', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'ughhhh', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'is', 'this', 'guy', 'a', 'dentist', 'or', 'caligula', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'what', 'are', 'you', "gettin'", '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', "don't", 'think', "i'm", 'hungry', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'okay', '||period||', '||period||', '||period||', 'so', 'you', 'were', 'violated', 'by', 'two', 'people', 'while', 'you', 'were', 'under', 'the', 'gas', '||period||', 'so', 'what', '||questionmark||', "you're", 'single', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'but', "i'm", 'damaged', 'goods', 'now', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'join', 'the', 'club', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'hey', '||comma||', 'by', 'the', 'way', '||comma||', 'did', 'you', 'ever', 'call', 'that', 'guy', 'from', 'the', 'health', 'club', '||period||', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'oh', 'yeah', '||exclammark||', 'jimmy', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'jimmy', '||questionmark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'ahum', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "that's", 'the', 'guy', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yeah', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "can't", 'believe', 'your', 'going', 'out', 'with', 'him', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'why', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', 'dunno', '||period||', "he's", 'so', 'strange', '||period||', "'", '||return||', '||return||', 'elaine:', '||quotemark||', 'how', 'so', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'did', 'you', 'notice', 'he', 'always', 'refer', 'to', 'himself', 'in', 'the', 'third', 'person', '||period||', 'jimmy', 'can', 'dunk', '||period||', "jimmy's", 'new', 'in', 'town', '||period||', 'jimmy', "we'll", 'see', 'you', 'later', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'no', 'no', '||period||', '||period||', '||period||', "that's", 'not', 'him', '||period||', "that's", 'the', 'guy', 'who', 'gave', 'me', '||period||', '||period||', '||period||', "jimmy's", 'number', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "that's", 'jimmy', '||period||', "that's", 'the', 'way', 'he', 'talks', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', "i'm", 'going', 'to', 'go', 'see', 'mel', 'torm', 'with', 'him', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "jimmy's", 'gonna', 'put', 'the', 'moves', 'on', 'elaine', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'i', 'have', 'to', 'go', 'see', 'steinbrenner', 'later', '||period||', 'mr', 'wilhelm', 'told', 'him', 'that', 'i', 'was', 'the', 'one', 'responsable', 'for', 'stealing', 'all', 'the', 'merchandise', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'why', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', "'cause", 'when', 'he', 'questioned', 'me', 'about', 'it', 'i', 'was', 'sweating', 'from', 'the', 'kom', 'pau', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'i', "don't", 'know', 'how', 'you', 'can', 'eat', 'that', 'spicy', 'chicken', '||comma||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'george', 'likes', 'spicy', 'chicken', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "what's", 'that', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', '||period||', '||period||', '||period||', '||period||', 'i', 'like', 'spicy', 'chicken', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'no', 'no', 'you', 'said', 'george', 'likes', 'spicy', 'chicken', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'no', 'i', "didn't", '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yes', 'you', 'did', 'you', 'said', 'george', 'likes', 'spicy', 'chicken', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', "you're", 'turning', 'in', 'to', 'jimmy', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'george', 'is', 'getting', 'upset', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'so', 'what', 'do', 'you', 'want', 'to', 'see', 'jimmy', 'about', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'pointing', 'at', 'him', '||rightparen||', 'jimmy', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'huh', 'uh', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'about', 'tonight', 'hum', '||period||', '||period||', "there's", 'been', 'a', 'little', 'misunderstanding', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'ah', '||exclammark||', '||period||', '||period||', '||period||', 'jimmy', "doesn't", 'like', 'misunderstanding', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yeah', '||period||', 'what', 'happened', 'was', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'jimmy', 'and', 'misunderstanding', 'kinda', 'clash', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'suddenly', 'intrigued', '||rightparen||', '||quotemark||', 'you', 'know', '||comma||', "i've", 'never', 'heard', 'anyone', 'talk', 'the', 'way', 'you', 'do', '||period||', "it's", 'very', 'unusual', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'well', '||comma||', "jimmy's", 'very', 'unusual', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', 'anyway', 'hum', '||period||', '||period||', '||period||', '||period||', 'see', 'when', 'i', 'made', 'the', 'date', '||comma||', 'i', 'thought', 'that', 'jimmy', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'hey', 'look', '||period||', "hank's", 'got', 'a', 'new', 'boyfriend', '||period||', "jimmy's", 'not', 'threatened', 'by', 'hanks', 'sexuality', '||period||', '||period||', '||period||', "jimmy's", 'happy', 'for', 'hank', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'elaine', 'once', 'tried', 'to', 'convert', 'one', 'but', "elaine's", 'not', 'going', 'through', 'that', 'again', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', "i'm", 'going', 'to', 'try', 'and', 'find', 'some', 'candy', '||period||', 'you', 'want', 'some', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'yeah', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'what', 'kind', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'i', "don't", 'care', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'hey', 'jimmy', '||exclammark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'i', 'elaine', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'elaine', 'got', 'a', 'new', 'dress', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'jimmy', 'likes', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', "there's", 'no', 'candy', 'around', 'here', '||period||', 'hey', '||exclammark||', 'jimmy', '||period||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'well', 'look', "who's", 'here', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'whooo', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', "that's", 'the', 'guy', 'who', 'sidelined', 'jimmy', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'what', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jimmy:', '||quotemark||', "that's", 'the', 'guy', 'who', 'took', 'the', 'bread', 'out', 'of', "jimmy's", 'mouth', '||period||', "jimmy's", 'out', 'of', 'work', 'because', 'of', 'you', '||period||', '||period||', '||return||', '||return||', 'jimmy:', '||quotemark||', 'jimmy', 'wants', 'a', 'piece', 'of', 'kramer', '||period||', '||period||', '||leftparen||', 'fighting', 'ensues', 'and', 'jimmy', 'gets', 'taken', 'out', 'by', 'hotel', 'security', '||rightparen||', '||return||', '||return||', 'jimmy:', '||quotemark||', "jimmy's", 'gonna', 'get', 'you', 'kramer', '||exclammark||', '||exclammark||', '||period||', 'hands', 'off', 'jimmy', '||exclammark||', '||exclammark||', '||period||', "don't", 'touch', '||return||', '||return||', 'kramer:', '||leftparen||', "keamer's", 'voice', 'starts', 'slurring', 'again', '||rightparen||', '||quotemark||', 'yeah', '||exclammark||', 'my', 'lips', 'swollen', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'no', 'no', "i've", 'been', 'living', 'alone', 'a', 'long', 'time', 'now', '||period||', '||quotemark||', '||return||', '||return||', 'mel:', '||quotemark||', 'well', 'i', 'think', "that's", 'the', 'tops', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'knocks', '||rightparen||', 'you', 'hem', '||period||', '||period||', '||period||', 'wanted', 'to', 'see', 'me', 'mr', '||period||', 'steinbrenner', '||questionmark||', '||quotemark||', '||return||', '||return||', 'stein:', '||quotemark||', 'yes', 'george', '||comma||', 'come', 'in', '||comma||', 'come', 'in', '||period||', 'you', 'know', 'george', "i've", 'been', 'your', 'biggest', 'supporter', 'around', 'here', 'and', 'thats', 'why', 'i', 'was', 'so', 'disappointed', 'to', 'hear', 'that', 'you', 'been', 'pilfering', 'the', 'equipment', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'george', 'would', 'never', 'do', 'anything', 'like', 'that', '||period||', '||quotemark||', '||return||', '||return||', 'stein:', "'no", 'why', 'would', 'i', '||period||', 'i', 'own', 'it', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'right', '||exclammark||', '||quotemark||', '||return||', '||return||', 'stein:', '||quotemark||', 'so', 'what', 'are', 'you', 'saying', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'why', 'would', 'george', 'steal', 'from', 'the', 'yankees', '||questionmark||', '||quotemark||', '||return||', '||return||', 'stein:', "'he", "wouldn't", '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', "'course", 'not', '||quotemark||', '||return||', '||return||', 'stein:', '||quotemark||', 'exactly', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'mumbles', '||rightparen||', 'i', "don't", 'what', 'the', "hell's", 'going', 'on', 'here', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||quotemark||', 'sir', '||questionmark||', '||quotemark||', '||return||', '||return||', 'stein:', '||quotemark||', 'nothing', '||period||', '||quotemark||', '||return||', '||return||', 'george:', '||leftparen||', 'energetically', '||rightparen||', '||quotemark||', 'well', 'seems', "it's", 'about', 'time', 'for', "george's", 'lunch', '||period||', '||quotemark||', '||return||', '||return||', 'stein:', '||quotemark||', 'yes', 'it', 'is', '||period||', 'well', 'lets', 'see', 'what', 'i', 'have', 'today', '||period||', 'darn', 'it', "it's", 'ham', '&', 'cheese', 'again', 'and', 'she', 'forgot', 'the', 'fancy', 'mustard', '||period||', 'i', 'told', 'her', 'i', 'like', 'that', 'fancy', 'mustard', '||period||', 'you', 'could', 'put', 'that', 'fancy', 'mustard', 'on', 'a', 'shoe', 'and', 'it', 'would', 'taste', 'pretty', 'good', 'to', 'me', '||period||', 'oh', '||exclammark||', 'she', 'made', 'it', 'up', 'with', 'a', 'cupcake', 'though', '||period||', 'hey', 'look', 'at', 'this', '||period||', 'you', 'know', 'i', 'got', 'a', 'new', 'system', 'for', 'eating', 'these', 'things', '||period||', '`i', 'used', 'to', 'peel', 'off', 'the', 'chocolate', 'now', 'i', 'turn', 'them', 'upside', 'down', '||comma||', 'i', 'eat', 'the', 'cake', 'first', 'and', 'save', 'the', 'frosting', 'for', 'the', 'end', '||period||', '||leftparen||', 'george', 'stops', 'listening', 'and', "it's", 'almost', 'like', 'its', 'own', 'dessert', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'mel:', '||quotemark||', 'ladies', 'and', 'gentlemen', '||period||', '||period||', '||period||', '||period||', 'i', 'want', 'to', 'dedicate', 'this', 'song', 'to', 'a', 'very', 'courageous', 'young', 'man', '||period||', '||leftparen||', 'starts', 'singing', '||rightparen||', '||quotemark||', 'when', "you're", 'smiling', '||comma||', 'when', "you're", 'smiling', '||period||', '||period||', '||period||', 'the', 'whole', 'world', 'smiles', 'with', 'you', '||period||', '||period||', '||period||', 'when', "you're", "laughin'", '||comma||', 'when', "you're", "laughin'", 'the', 'sun', 'comes', 'shining', 'through', 'but', 'when', "you're", 'crying', '||comma||', 'you', 'bring', 'on', 'the', 'rain', 'so', 'stop', 'that', 'sign', '||period||', 'be', 'happy', 'again', 'keep', 'on', 'smiling', '||comma||', "'cause", 'when', "you're", 'smiling', 'the', 'whole', 'world', 'smiles', 'with', 'yooooouuuuuuu', 'the', 'whole', 'world', 'smiles', 'with', '||leftparen||', 'with', 'kramer', '||rightparen||', 'yooooouuuuuuu', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'hey', '||exclammark||', 'got', 'the', 'new', 'penthouse', '||quotemark||', '||return||', '||return||', 'jerry:', '||quotemark||', "where's", 'my', 'mr', '||period||', 'goodbar', '||questionmark||', '||quotemark||', '||return||', '||return||', 'kramer:', '||quotemark||', 'ah', '||exclammark||', 'here', 'here', 'listen', '||period||', '||period||', '||period||', 'dear', 'penthouse', '||comma||', 'i', 'want', 'to', 'tell', 'you', 'about', 'an', 'experience', 'i', 'recently', 'had', '||period||', 'as', 'an', 'avid', 'reader', "i've", 'always', 'wondered', 'if', 'the', 'letters', '||leftparen||', 'with', 'jerry', '||rightparen||', 'are', "i'm", 'a', 'dentist', 'and', 'one', 'afternoon', 'my', 'hygienist', 'and', 'i', 'decided', 'to', 'have', 'a', 'little', 'fun', 'with', 'one', 'of', 'our', 'patients', '||period||', 'of', 'course', 'none', 'of', 'our', 'patients', 'had', 'any', 'idea', 'exactly', 'of', 'what', 'we', 'were', 'up', 'to', '||period||', 'i', 'was', 'still', 'wondering', 'what', 'if', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'stops', 'and', 'seems', 'bewildered', '||rightparen||', '||return||', '||return||', 'george:', 'jerry', "it's", 'funny', '||comma||', 'paula', 'and', 'i', 'actually', 'met', 'because', 'of', 'elaine', '||period||', '||return||', '||return||', 'paula:', 'elaine', 'is', 'in', 'my', 'drawing', 'class', 'at', 'the', 'new', 'school', '||return||', '||return||', 'george:', '||period||', '||period||', 'and', 'i', 'went', 'down', 'there', 'one', 'time', 'to', 'see', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cuts', 'in', '||rightparen||', 'a', 'nude', 'model', '||period||', '||return||', '||return||', 'george:', 'if', 'elaine', 'wanted', 'to', 'get', 'some', 'coffee', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'went', 'out', 'once', 'with', 'a', 'nude', 'model', '||period||', 'never', 'let', 'me', 'see', 'her', 'naked', '||period||', 'hundreds', 'of', 'people', 'see', 'her', 'naked', 'every', 'week', '||comma||', 'except', 'me', '||period||', 'needless', 'to', 'say', 'it', 'was', 'quite', 'vexing', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'through', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'anyway', '||comma||', 'i', 'started', 'to', 'compliment', 'elaine', 'on', 'her', 'sketches', 'and', 'it', 'turns', 'out', '||comma||', "they're", "paula's", '||period||', '||return||', '||return||', 'paula:', 'george', '||comma||', 'i', 'just', 'like', 'to', 'doodle', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'dropped', 'a', 'napkin', '||period||', '||period||', '||period||', '||leftparen||', 'whispers', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', '||period||', '||period||', '||period||', 'she', 'had', 'those', 'nuts', 'in', 'her', 'mouth', '||comma||', 'she', 'just', 'spit', 'them', 'out', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'spits', 'the', 'nut', '||rightparen||', 'oooh', '||exclammark||', '||exclammark||', '||exclammark||', 'you', '||period||', 'you', 'ate', 'these', '||questionmark||', 'you', 'sucked', 'on', 'these', 'and', 'put', 'them', 'on', 'the', 'plate', '||questionmark||', '||return||', '||return||', 'shelly:', 'well', 'i', "didn't", 'know', 'you', 'were', 'gonna', 'eat', 'them', '||questionmark||', '||return||', '||return||', 'jerry:', 'soo', '||period||', '||period||', '||period||', '||return||', '||return||', 'shelly:', "i'm", 'sorry', 'you', 'find', 'me', 'so', 'repulsive', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'i', "don't", '||comma||', 'i', 'mean', '||comma||', "don't", 'be', 'silly', '||period||', '||period||', '||return||', '||return||', 'shelly:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'shelly:', 'well', '||comma||', 'hem', '||comma||', 'if', "you'll", 'excuse', 'me', 'i', 'think', "i'll", 'just', 'go', 'to', 'the', 'ladies', 'room', '||period||', '||return||', '||return||', 'paula:', "i'll", 'join', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'man', 'did', 'you', 'see', 'that', '||period||', 'i', 'ate', 'discarded', 'food', '||period||', '||return||', '||return||', 'george:', 'well', "i've", 'done', 'that', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'with', 'you', "it's", 'intentional', '||period||', '||return||', '||return||', 'george:', "haven't", 'you', 'kissed', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', 'this', 'is', 'different', '||comma||', 'this', 'is', 'like', '||comma||', 'you', 'know', '||comma||', 'semi', 'digested', 'food', 'stuff', '||period||', 'you', 'know', 'the', 'next', 'stop', 'is', 'the', 'stomach', 'and', 'you', 'can', 'take', 'it', 'from', 'there', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', 'just', 'for', 'a', 'second', '||period||', '||leftparen||', 'fixes', 'his', 'hair', 'looking', 'at', 'his', 'reflection', 'in', 'a', 'coffee', 'pot', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'ah', '||period||', 'yes', "that's", 'gonna', 'make', 'a', 'big', 'difference', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'dating', '||comma||', 'you', "can't", 'leave', 'anything', 'to', 'chance', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'think', 'that', "shelly's", 'upset', 'that', 'i', 'made', 'such', 'a', 'big', 'deal', 'about', 'the', 'pecan', '||period||', '||return||', '||return||', 'george:', 'hehummm', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'thanks', '||period||', '||return||', '||return||', 'george:', 'no', 'problem', '||period||', '||return||', '||return||', 'shelly:', 'well', 'jerry', '||comma||', 'i', 'guess', 'we', 'should', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||exclammark||', 'boy', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'was', 'very', 'nice', 'meeting', 'you', 'shelly', 'and', 'jerry', 'be', 'careful', '||comma||', "there's", 'a', 'lot', 'of', 'nuts', 'out', 'there', '||period||', '||leftparen||', 'to', 'paula', '||rightparen||', 'all', 'right', 'you', 'have', 'everything', '||questionmark||', '||return||', '||return||', 'paula:', 'can', 'you', 'grab', 'my', 'purse', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'reaches', 'for', 'the', 'purse', 'and', 'finds', 'a', 'piece', 'of', 'paper', '||period||', 'he', 'looks', 'annoyed', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'so', '||return||', '||return||', 'george:', "don't", 'you', 'see', 'what', 'this', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', "it's", 'a', 'doodle', '||period||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', '||comma||', 'a', 'doodle', 'of', 'me', '||period||', '||period||', '||period||', 'look', 'at', 'the', 'size', 'of', 'the', 'nose', '||comma||', 'the', 'ears', '||comma||', 'all', 'my', 'features', 'are', 'distorted', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', '||period||', "it's", 'an', 'affectionate', 'caricature', '||period||', '||return||', '||return||', 'george:', "i'm", 'grotesque', '||period||', 'i', 'look', 'like', 'a', 'troll', '||period||', '||return||', '||return||', 'jerry:', "it's", 'just', 'a', 'drawing', '||period||', '||return||', '||return||', 'george:', "don't", 'you', 'see', 'what', 'this', 'says', '||questionmark||', 'how', 'can', 'you', 'possibly', 'like', 'somebody', '||comma||', 'if', 'you', 'think', 'they', 'look', 'like', 'this', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'gets', 'up', 'to', 'leave', 'the', 'table', '||rightparen||', 'hello', '||exclammark||', '||exclammark||', '||exclammark||', '||leftparen||', 'angrily', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'is', 'with', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'usual', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'you', 'know', 'what', '||questionmark||', 'my', 'friend', 'judy', 'recommended', 'me', 'for', 'a', 'job', 'at', 'viking', 'press', '||period||', '||return||', '||return||', 'jerry:', 'good', 'for', 'you', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', 'but', 'get', 'this', '||period||', 'viking', 'has', 'a', 'deal', 'with', 'the', 'plaza', 'hotel', '||comma||', 'they', 'got', 'a', 'two', 'bedroom', 'suite', '||comma||', 'there', '||comma||', 'for', 'out', '||dash||', 'of', '||dash||', 'town', 'clients', '||period||', '||period||', '||period||', 'so', 'guess', 'what', 'i', 'did', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'come', 'on', '||comma||', 'you', 'told', 'them', "you're", 'from', 'out', '||dash||', 'of', '||dash||', 'town', 'just', 'so', 'you', 'could', 'stay', 'in', 'a', 'hotel', 'room', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'i', 'know', 'jerry', '||period||', '||period||', 'but', "it's", 'the', 'plazaaa', '||period||', '||period||', '||period||', "i've", 'never', 'stayed', 'there', '||period||', "it'll", 'be', 'like', 'a', 'little', 'vacation', '||return||', '||return||', 'jerry:', 'well', 'be', 'sure', 'to', 'catch', 'a', 'broadway', 'show', 'while', "you're", 'in', 'town', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'listen', '||comma||', "i've", 'used', 'your', 'parents', 'address', 'in', 'florida', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'there', 'coming', 'to', 'town', 'tomorrow', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', "what's", 'this', '||period||', '||questionmark||', '||period||', '||return||', '||return||', 'jerry:', "don't", 'ask', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||period||', '||period||', 'a', 'drawing', 'of', 'mr', '||period||', 'magoo', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'george', '||leftparen||', 'elaine', 'laughs', 'heartily', '||rightparen||', '||return||', '||return||', 'elaine:', 'it', 'is', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'enjoying', 'yourself', '||questionmark||', '||leftparen||', 'more', 'laughs', 'from', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'sorry', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||period||', 'you', 'see', '||exclammark||', 'listen', 'when', 'is', 'your', 'next', 'drawing', 'class', '||questionmark||', '||return||', '||return||', 'elaine:', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'i', 'want', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'want', 'you', 'to', 'find', 'out', 'is', 'she', 'likes', 'me', '||period||', '||return||', '||return||', 'elaine:', 'find', 'out', 'if', 'likes', 'you', '||questionmark||', '||period||', 'what', '||comma||', 'are', 'you', 'in', 'high', 'school', '||questionmark||', '||period||', '||period||', '||period||', 'george', 'come', 'on', "can't", 'you', 'just', 'talk', 'to', 'her', 'yourself', '||questionmark||', '||return||', '||return||', 'george:', 'but', "she's", 'gonna', 'know', 'that', 'i', 'like', 'her', 'more', 'than', 'she', 'likes', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'my', 'parents', 'are', 'coming', 'in', 'and', 'i', 'got', 'some', 'clean', 'up', 'to', 'do', '||comma||', 'so', 'if', 'you', 'and', 'potsie', 'are', 'done', 'scheming', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "they're", 'in', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what's", 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'macanaw', 'peaches', '||comma||', 'jerry', '||comma||', 'the', 'macanaw', 'peaches', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'aah', '||exclammark||', '||period||', '||period||', 'right', '||period||', 'the', 'ones', 'from', 'oregon', 'that', 'are', 'only', 'ripe', 'for', 'two', 'weeks', 'a', 'year', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', 'i', 'split', 'a', 'case', 'with', 'newman', '||period||', '||period||', 'i', 'waited', 'all', 'year', 'for', 'this', '||period||', '||period||', 'oooh', 'this', 'is', 'fantastic', '||period||', '||period||', 'makes', 'your', 'taste', 'buds', 'come', 'alive', '||period||', '||period||', '||period||', '||period||', "it's", 'like', 'having', 'a', 'circus', 'in', 'your', 'mouth', '||period||', '||period||', '||period||', '||period||', '||period||', 'take', 'a', 'taste', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'i', "don't", 'wanna', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'just', 'take', 'a', 'taste', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'it', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'just', 'taste', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'it', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'he', '||period||', '||period||', 'ya', '||period||', 'aya', '||period||', 'ayyyyyaaaaa', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'am', 'not', 'gonna', 'taste', 'your', 'peach', '||period||', 'i', 'ate', 'some', "one's", 'pecan', 'last', 'night', '||comma||', "i'm", 'not', 'gonna', 'eat', 'your', 'peach', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'this', 'is', 'a', 'miracle', 'of', 'nature', 'that', 'exists', 'for', 'a', 'brief', 'period', '||period||', "it's", 'like', 'the', 'aurora', 'borealis', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'i', 'think', 'i', 'got', 'flea', 'bites', '||period||', '||return||', '||return||', 'kramer:', 'flea', 'bites', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', '||comma||', 'my', "ankle's", 'all', 'bitten', 'up', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'a', 'dog', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'is', 'strange', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'i', 'have', 'fleas', '||questionmark||', '||return||', '||return||', 'kramer:', "don't", 'sweat', 'it', 'buddy', '||period||', '||period||', '||period||', 'i', 'used', 'to', 'have', 'fleas', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', 'about', 'them', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', 'hey', 'guys', '||period||', 'jerry', '||period||', 'kramer', '||return||', '||return||', 'helen:', 'hi', 'jerry', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', "i'm", 'your', 'mother', '||comma||', 'now', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'mom', '||comma||', 'dad', '||period||', '||period||', '||period||', '||period||', '||period||', 'i', 'have', 'fleas', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'paula', '||exclammark||', '||period||', '||period||', 'i', 'hear', 'you', 'been', 'going', 'out', 'with', 'george', 'costanza', '||questionmark||', '||return||', '||return||', 'paula:', 'how', 'did', 'you', 'know', '||questionmark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'everybody', 'knows', '||period||', "y'know", 'george', 'told', 'me', 'he', 'thinks', "you're", 'totally', 'cute', 'and', 'everything', '||period||', '||return||', '||return||', 'paula:', 'he', 'said', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'ha', 'hum', '||period||', '||period||', '||period||', 'do', 'you', 'like', 'george', '||questionmark||', '||return||', '||return||', 'paula:', 'yeaaah', '||exclammark||', "he's", 'cool', '||period||', '||return||', '||return||', 'elaine:', 'no', 'i', 'mean', '||period||', '||period||', '||period||', 'do', 'you', 'like', 'him', 'or', 'do', 'you', 'like', 'him', 'like', 'him', '||questionmark||', '||return||', '||return||', 'paula:', 'like', 'like', '||period||', '||period||', 'looks', "aren't", 'important', 'to', 'me', '||comma||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'teacher:', 'miss', 'benes', '||comma||', 'are', 'you', 'chewing', 'gum', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'nods', '||rightparen||', 'humhummmm', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'karl:', 'yep', '||exclammark||', '||period||', '||period||', '||period||', 'in', 'your', 'bedroom', 'too', 'mr', '||period||', 'seinfeld', '||period||', "you've", 'got', 'a', 'full', 'outbreak', 'of', 'fleas', 'on', 'your', 'hands', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'get', 'this', '||period||', 'how', 'did', 'this', 'happen', '||period||', 'i', "don't", 'have', 'a', 'dog', '||period||', '||return||', '||return||', 'karl:', 'i', "don't", 'explain', "'em", 'mr', '||period||', 'seinfeld', '||period||', 'i', 'just', 'exterminate', 'them', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', 'this', '||period||', '||period||', '||return||', '||return||', 'karl:', 'i', "'m", 'gonna', 'have', 'to', 'seal', 'the', 'place', 'up', 'for', '48', 'hours', 'and', 'fog', 'it', '||period||', "that's", 'the', 'only', 'way', 'to', 'get', 'rid', 'of', 'them', '||period||', '||return||', '||return||', 'jerry:', 'nobody', 'can', 'be', 'in', 'here', 'for', '48', 'hours', '||comma||', 'i', 'got', 'my', 'parents', 'in', 'town', '||period||', '||return||', '||return||', 'karl:', 'well', '||comma||', 'unless', 'you', 'want', 'to', 'kill', 'them', '||period||', 'they', "can't", 'stay', 'in', 'here', '||period||', 'this', 'stuff', 'is', 'pretty', 'toxic', '||period||', "i'll", 'go', 'get', 'my', 'stuff', '||comma||', "it's", 'in', 'the', 'truck', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||period||', '||period||', '||period||', '||questionmark||', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jery:', 'bug', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'why', 'do', 'you', 'have', 'a', 'bug', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'fleas', '||period||', '||return||', '||return||', 'elaine:', 'argh', '||period||', '||period||', 'fleas', '||leftparen||', 'strikes', 'the', 'purse', 'she', 'just', 'deposited', 'on', 'the', 'couch', '||rightparen||', 'how', 'did', 'you', 'get', 'fleas', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'but', 'every', "one's", 'got', 'to', 'clear', 'out', 'of', 'the', 'apartment', 'for', 'two', 'days', '||period||', 'i', "don't", 'know', 'what', "i'm", 'gonna', 'do', 'with', 'my', 'parents', '||period||', "they'll", 'never', 'let', 'me', 'pay', 'for', 'a', 'hotel', 'and', 'if', 'they', 'go', 'to', 'someplace', 'on', 'their', 'own', "i'm", 'sure', "it's", 'gonna', 'be', 'some', 'awful', 'dump', '||period||', 'wait', 'a', 'second', '||period||', '||period||', 'have', 'you', 'checked', 'in', 'the', 'plaza', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||period||', '||period||', '||period||', 'oh', 'no', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', "c'mon", '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', "c'mon", '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', "c'mon", '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||period||', 'yesss', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', 'what', 'about', 'you', '||period||', 'where', 'you', 'gonna', 'stay', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||comma||', "i'm", 'gonna', 'ask', 'shelley', '||comma||', 'but', 'she', 'still', 'might', 'be', 'upset', 'from', 'the', 'masticated', 'pecan', 'incident', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||exclammark||', 'i', 'found', 'out', 'from', 'paula', '||semicolon||', 'she', 'likes', 'george', '||period||', "i'll", 'bet', "he'll", 'be', 'relieved', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', 'when', "he's", 'dead', "he'll", 'be', 'relieved', '||period||', '||period||', '||period||', 'oh', 'by', 'the', 'way', 'viking', 'press', 'sent', 'a', 'fedex', 'for', 'you', 'to', 'my', 'parents', '||period||', 'they', 'brought', 'it', 'with', "'em", '||period||', '||return||', '||return||', 'elaine:', 'yeah', "that's", 'just', 'some', 'stuff', 'about', 'the', 'company', '||period||', '||return||', '||return||', 'george:', 'hum', '||period||', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'hey', '||exclammark||', 'did', 'you', 'talk', 'to', 'paula', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'did', 'she', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'she', '||period||', '||period||', '||period||', 'likes', 'you', '||period||', '||period||', '||return||', '||return||', 'george:', 'she', 'said', 'she', 'liked', 'me', '||period||', 'no', "kiddin'", 'she', 'said', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'ya', '||exclammark||', '||return||', '||return||', 'george:', 'those', 'were', 'her', 'exact', 'words', '||comma||', 'i', 'like', 'george', '||period||', '||return||', '||return||', 'elaine:', 'yep', '||exclammark||', '||return||', '||return||', 'george:', 'ha', 'haaaaaaa', '||period||', '||period||', '||period||', 'jerry', 'how', 'do', 'you', 'like', 'that', '||period||', 'you', 'see', 'i', 'get', 'myself', 'in', 'a', 'dizzy', '||comma||', "i'm", 'all', 'worked', 'up', 'and', 'for', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'for', 'nothing', '||period||', '||period||', '||return||', '||return||', 'george:', 'ha', 'ha', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'in', 'fact', 'she', 'said', 'that', 'looks', "aren't", 'even', 'that', 'important', 'to', 'her', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'see', '||period||', '||period||', '||period||', '||period||', '||period||', 'what', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'ah', 'oh', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'she', 'said', 'looks', "aren't", 'important', 'to', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', 'hum', '||period||', '||period||', '||period||', 'let', 'me', 'rephrase', 'that', '||comma||', 'she', 'said', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'she', 'thinks', "i'm", 'ugly', '||period||', 'i', 'knew', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'see', 'the', 'thing', 'of', 'it', 'is', '||comma||', "there's", 'a', 'lot', 'of', 'ugly', 'people', 'out', 'there', 'walking', 'around', '||comma||', 'but', 'they', "don't", 'know', "they're", 'ugly', '||comma||', 'because', 'nobody', 'actually', 'tells', 'them', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', '||period||', '||period||', 'so', "what's", 'your', 'point', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||period||', 'the', 'point', '||comma||', 'george', '||comma||', 'is', 'she', 'likes', 'you', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', '||comma||', 'so', 'what', '||period||', "i'd", 'rather', 'she', 'hate', 'me', 'and', 'thought', 'i', 'was', 'good', 'looking', '||period||', '||period||', '||period||', '||period||', 'at', 'least', 'i', 'can', 'get', 'somebody', 'else', '||period||', '||leftparen||', 'scratching', 'his', 'chest', '||rightparen||', 'what', 'is', 'this', '||questionmark||', 'why', 'am', 'i', 'itching', '||questionmark||', '||return||', '||return||', 'jerry:', "that'd", 'be', 'the', 'fleas', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'morty:', 'hey', '||exclammark||', 'i', 'do', 'you', 'like', 'this', '||questionmark||', 'huh', '||comma||', 'huh', '||exclammark||', '||return||', '||return||', 'helen:', 'oh', '||exclammark||', 'my', 'god', '||comma||', 'morty', 'lets', 'go', '||comma||', 'this', 'is', 'too', 'nice', '||period||', '||return||', '||return||', 'morty:', 'hey', '||exclammark||', 'this', 'is', 'the', 'kind', 'of', 'room', 'sinatra', 'stays', 'in', '||period||', 'hey', '||exclammark||', 'look', '||comma||', 'macadamian', 'nuts', '||period||', '||return||', '||return||', 'helen:', 'macadamian', 'nuts', '||questionmark||', '||return||', '||return||', 'morty:', 'hey', '||exclammark||', 'you', 'know', 'what', 'these', 'cost', '||comma||', "they're", 'like', '80', 'cents', 'a', 'nut', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'are', 'you', 'sure', 'this', 'all', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', "it's", 'all', 'taken', 'care', 'of', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'from', 'the', 'other', 'room', '||rightparen||', 'hey', '||exclammark||', '||exclammark||', '||exclammark||', 'they', 'got', 'a', 'phone', 'in', 'the', 'john', 'here', '||period||', '||return||', '||return||', 'elaine:', 'judy', '||period||', '||return||', '||return||', 'judy:', 'hey', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'thank', 'you', 'so', 'much', 'for', 'recommending', 'me', 'to', 'viking', 'press', '||period||', '||return||', '||return||', 'judy:', 'it', 'is', 'my', 'pleasure', '||comma||', 'just', 'make', 'sure', 'you', 'give', 'that', 'manuscript', 'a', 'good', 'read', '||period||', '||return||', '||return||', 'elaine:', 'manuscript', '||questionmark||', '||return||', '||return||', 'judy:', 'yeah', '||period||', "i'm", 'sure', 'they', 'fedexed', 'you', 'a', 'manuscript', '||period||', 'they', 'want', 'to', 'see', 'that', 'you', 'can', 'read', 'an', 'unpublished', 'work', 'and', 'give', 'insightful', 'criticism', '||period||', '||return||', '||return||', 'elaine:', 'oooh', '||exclammark||', '||exclammark||', '||return||', '||return||', 'judy:', 'read', 'it', 'twice', 'if', 'you', 'have', 'to', '||period||', 'this', 'is', 'a', 'big', 'step', 'in', 'your', 'career', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', 'hmmm', '||period||', '||period||', 'i', 'gotta', 'go', '||period||', '||period||', '||return||', '||return||', 'judy:', 'hey', '||exclammark||', 'what', 'about', 'lunch', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'she', 'leaves', 'hurriedly', '||rightparen||', 'i', 'gotta', 'gooo', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'god', 'i', 'found', 'you', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'still', 'got', 'that', 'fedex', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'i', 'got', 'it', '||period||', "it's", 'in', 'the', 'apartment', '||comma||', 'but', 'we', "can't", 'go', 'in', 'there', "it's", 'being', 'fumigated', '||period||', '||return||', '||return||', 'elaine:', 'no', "i'll", 'take', 'my', 'chances', '||period||', 'come', 'on', '||period||', '||period||', '||period||', '||leftparen||', 'grabs', 'him', 'by', 'the', 'coat', 'and', 'head', 'back', 'to', 'his', 'place', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'see', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'i', 'need', 'that', 'fedex', 'right', 'now', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'to', 'take', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "didn't", 'know', 'that', 'it', 'was', 'a', 'manuscript', 'that', 'i', 'had', 'to', 'read', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', "can't", 'go', 'in', 'there', "it's", 'like', 'a', 'gas', 'chamber', 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', 'i', 'left', 'a', 'macanaw', 'peach', 'in', 'your', 'refrigerator', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "they're", 'fumigating', '||period||', "there's", 'toxic', 'gas', 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', 'toxic', 'gas', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'aw', '||exclammark||', "you'll", 'be', 'fine', '||comma||', 'you', 'were', 'in', 'there', 'for', 'what', '||comma||', 'a', 'couple', 'of', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'an', 'hour', 'and', 'a', 'half', '||exclammark||', '||exclammark||', '||exclammark||', 'i', 'was', 'reading', 'a', 'manuscript', '||comma||', 'i', 'just', "couldn't", 'put', 'it', 'down', '||period||', '||return||', '||return||', 'elaine:', 'my', 'manuscript', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'feel', '||questionmark||', '||return||', '||return||', 'kramer:', 'now', 'that', 'you', 'mention', 'it', '||comma||', 'a', 'little', 'woozy', '||period||', '||return||', '||return||', 'elaine:', 'kramer', 'you', 'got', 'go', 'back', 'in', 'there', 'grab', 'my', 'manuscript', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'not', 'going', 'back', 'in', 'there', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'all', 'right', 'then', '||comma||', 'where', 'is', 'it', '||questionmark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'left', 'it', 'on', 'the', 'coffee', 'table', 'or', "somethin'", '||return||', '||return||', 'jerry:', 'well', 'wh', '||period||', '||period||', 'wh', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'in', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'you', 'see', 'the', 'sign', 'on', 'the', 'door', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'thought', 'it', 'was', 'so', 'your', 'parents', "wouldn't", 'walk', 'in', 'while', "you're", 'with', 'a', 'girl', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'heavy', 'panting', '||rightparen||', "it's", 'not', 'on', 'any', 'table', '||comma||', 'kramer', '||period||', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', "don't", 'know', '||period||', 'i', 'was', 'in', 'the', 'bathroom', '||comma||', 'the', 'kitchen', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||period||', '||period||', 'bathroom', '||period||', '||period||', '||period||', '||period||', 'kitchen', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'get', 'me', 'a', 'soda', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'had', 'some', 'milk', '||comma||', 'i', 'made', 'a', 'sandwich', '||period||', 'i', 'got', 'to', 'get', 'out', 'of', 'the', 'building', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'again', 'pants', '||rightparen||', 'i', "couldn't", 'find', 'it', 'anywhere', '||period||', 'how', 'did', 'you', 'get', 'fleas', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'who', "could've", 'been', 'in', 'my', 'apartment', '||period||', '||return||', '||return||', 'elaine:', 'i', "'ve", 'looked', 'everywhere', '||comma||', 'even', 'under', 'the', 'couch', 'but', 'all', 'i', 'could', 'find', 'were', 'the', 'stupid', 'chunky', 'wrappers', '||period||', 'i', "couldn't", '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'minute', '||period||', 'did', 'you', 'say', 'chunky', 'wrappers', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'let', 'me', 'see', 'those', '||period||', '||leftparen||', 'smells', 'them', '||rightparen||', 'oh', '||exclammark||', 'i', 'know', 'the', 'chunky', 'that', 'left', 'these', 'chunkies', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'newman', '||exclammark||', '||exclammark||', '||exclammark||', "i've", 'got', 'him', '||period||', '||return||', '||return||', 'jerry:', 'newman', '||period||', 'open', 'the', 'door', '||comma||', 'newman', '||comma||', 'i', 'know', "you're", 'in', 'there', '||period||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', 'what', 'a', 'pleasant', 'surprise', '||period||', '||return||', '||return||', 'jerry:', "there's", 'nothing', 'pleasant', 'about', 'it', '||comma||', 'so', 'lets', 'just', 'cut', 'the', 'crap', '||period||', '||period||', 'you', 'gave', 'me', 'fleas', '||period||', 'i', 'know', 'it', 'and', 'you', 'know', 'it', '||period||', '||period||', '||return||', '||return||', 'newman:', 'fleas', '||questionmark||', 'bwa', 'ha', 'ha', 'ha', 'ha', '||period||', "that's", 'preposterous', '||period||', 'how', 'can', 'i', '||comma||', 'give', 'you', 'fleas', '||period||', 'now', 'if', 'you', "don't", 'mind', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'but', 'i', 'do', '||period||', "there's", 'probably', 'fleas', 'crawling', 'all', 'over', 'your', 'little', 'snack', 'bar', '||period||', '||leftparen||', 'as', 'he', 'says', 'this', 'newman', 'is', 'wildly', 'scratching', 'behind', 'his', 'back', '||period||', 'he', 'suddenly', 'stops', 'when', 'jerry', 'turns', 'around', '||rightparen||', '||return||', '||return||', 'newman:', 'so', '||comma||', 'you', 'have', 'fleas', '||period||', 'maybe', 'you', 'keep', 'your', 'house', 'in', 'a', 'state', 'of', 'disrepair', '||period||', 'maybe', 'you', 'live', 'in', 'squalor', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'newman', '||comma||', 'the', 'thing', 'about', 'fleas', 'is', 'that', 'they', 'irritate', 'the', 'skin', 'and', 'they', 'start', 'to', '||period||', '||period||', '||period||', 'itch', '||period||', 'oh', '||exclammark||', 'maybe', 'you', 'can', 'hold', 'out', 'five', 'seconds', 'or', 'ten', '||comma||', 'maybe', 'fifteen', 'or', 'twenty', 'but', 'after', 'a', 'while', '||comma||', 'no', 'matter', 'how', 'much', 'will', 'power', 'a', 'person', 'may', 'have', '||period||', 'it', "won't", 'matter', '||comma||', 'because', "they're", 'crawling', '||comma||', 'crawling', 'on', 'your', 'skin', '||period||', 'up', 'your', 'legs', '||comma||', 'up', 'your', 'spine', '||comma||', 'up', 'your', 'back', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'cannot', 'take', 'this', 'torture', 'anymore', '||rightparen||', 'baaaaaaaaarrhhhhhhhhhhh', '||period||', '||period||', '||period||', '||period||', "i'm", 'ripped', 'with', 'fleas', '||leftparen||', 'scratches', 'furiously', '||rightparen||', '||return||', '||return||', 'morty:', 'oh', '||exclammark||', 'oh', '||exclammark||', 'that', 'feels', 'good', '||period||', 'hey', '||exclammark||', 'this', 'guy', 'charges', 'a', 'hundred', 'bucks', 'an', 'hour', 'but', "i'm", 'telling', 'ya', "he's", 'worth', 'every', 'penny', 'oooohh', '||exclammark||', '||return||', '||return||', 'helen:', "i'm", 'next', '||period||', '||return||', '||return||', 'morty:', 'hey', '||exclammark||', 'leo', '||comma||', 'get', 'this', '||comma||', 'four', 'movies', 'at', 'once', '||semicolon||', 'pay', 'per', 'view', '||period||', '||return||', '||return||', 'leo:', 'i', 'love', 'these', 'nuts', '||period||', '||return||', '||return||', 'nana:', 'this', "champagne's", 'gone', 'flat', '||period||', '||leftparen||', 'throws', 'her', 'glass', 'over', 'her', 'shoulder', '||rightparen||', '||return||', '||return||', 'helen:', 'nana', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'nana:', 'he', 'ha', 'ha', 'ha', '||period||', '||period||', '||period||', 'let', 'the', 'chambermaid', 'clean', 'it', 'up', '||return||', '||return||', 'george:', 'hello', '||period||', '||period||', '||return||', '||return||', 'paula:', "what's", 'the', 'matter', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'spoke', 'to', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'paula:', 'hey', '||exclammark||', 'look', '||comma||', 'no', 'shave', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', '||period||', 'why', 'should', 'that', 'make', 'any', 'difference', 'to', 'you', '||questionmark||', '||return||', '||return||', 'paula:', 'it', "doesn't", '||period||', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'not', '||period||', 'you', "don't", 'care', 'what', 'i', 'look', 'like', '||period||', '||return||', '||return||', 'paula:', "that's", 'right', 'i', "don't", '||period||', '||return||', '||return||', 'george:', 'i', 'suppose', 'i', 'could', 'just', 'pull', 'this', 'out', '||leftparen||', 'his', 'tucked', 'shirt', '||rightparen||', 'and', 'walk', 'around', 'like', 'this', 'and', 'you', "wouldn't", 'care', '||questionmark||', '||return||', '||return||', 'paula:', 'not', 'a', 'wit', '||period||', '||return||', '||return||', 'george:', 'hu', 'humm', '||questionmark||', 'i', 'suppose', 'we', 'could', 'go', 'to', 'lincoln', 'center', 'and', "i'd", 'be', 'wearing', 'sneakers', 'and', 'jeans', 'and', 'that', 'would', 'be', 'fine', 'too', '||period||', '||return||', '||return||', 'paula:', 'you', 'can', 'wear', 'sweatpants', '||period||', '||return||', '||return||', 'george:', 'i', 'could', '||period||', '||period||', '||return||', '||return||', 'paula:', '||leftparen||', 'seductively', '||rightparen||', 'you', 'could', 'drape', 'yourself', 'in', 'velvet', '||comma||', 'for', 'all', 'i', 'care', '||period||', '||return||', '||return||', 'george:', 'velvet', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'read', 'the', 'whole', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', 'so', "what's", 'it', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "it's", 'a', 'story', 'about', 'love', '||comma||', 'deception', '||comma||', 'greed', '||comma||', 'lust', 'and', '||period||', '||period||', '||period||', 'unbridled', 'enthusiasm', '||period||', '||return||', '||return||', 'elaine:', 'unbridled', 'enthusiasm', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'what', 'led', 'to', 'billy', "mumphrey's", 'downfall', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'boy', '||period||', '||return||', '||return||', 'kramer:', 'you', 'see', 'elaine', '||comma||', 'billy', 'was', 'a', 'simple', 'country', 'boy', '||period||', 'you', 'might', 'say', 'a', 'cockeyed', 'optimist', '||comma||', 'who', 'got', 'himself', 'mixed', 'up', 'in', 'the', 'high', 'stakes', 'game', 'of', 'world', 'diplomacy', 'and', 'international', 'intrigue', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'my', 'god', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||exclammark||', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'waitress', '||rightparen||', 'can', 'i', 'have', 'a', 'scotch', 'on', 'the', 'rocks', '||period||', '||return||', '||return||', 'kramer:', 'may', 'i', '||period||', '||period||', '||leftparen||', 'pointing', 'her', 'food', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'feeling', 'sick', '||rightparen||', 'yeah', '||exclammark||', 'go', 'ahead', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'are', 'you', "doin'", '||questionmark||', '||leftparen||', 'kramer', 'salting', 'her', 'food', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', "can't", 'taste', 'this', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'this', 'food', '||comma||', 'it', 'has', 'no', 'taste', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "nothin'", "i'm", "gettin'", "nothin'", '||period||', '||period||', '||period||', '||leftparen||', 'realizes', '||rightparen||', 'it', 'must', 'be', 'the', 'toxic', 'gas', 'from', 'the', 'fumigation', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'leaves', 'paranoid', 'and', 'confused', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'thanks', 'a', 'lot', 'for', "lettin'", 'me', 'stay', 'here', '||period||', '||return||', '||return||', 'shelly:', 'well', '||comma||', 'i', "don't", 'keep', 'pecans', 'in', 'the', 'house', 'so', 'i', "didn't", 'think', "it'd", 'be', 'a', 'problem', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'embarrassed', 'laugh', '||rightparen||', '||period||', '||period||', '||period||', 'oh', '||exclammark||', 'damn', '||period||', '||period||', '||return||', '||return||', 'shelly:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'forgot', 'my', 'toothbrush', '||period||', '||return||', '||return||', 'shelly:', 'oh', '||exclammark||', 'no', 'problem', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'can', 'use', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'yours', '||questionmark||', '||period||', '||period||', '||period||', '||period||', 'you', 'know', 'what', "i'll", 'think', "i'll", 'brush', 'later', '||period||', '||return||', '||return||', 'shelly:', 'brush', 'now', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'long', 'pause', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'sure', '||period||', '||leftparen||', 'humms', 'a', 'song', 'then', 'stares', 'at', 'the', 'toothbrush', '||rightparen||', '||return||', '||return||', 'kramer:', 'newman', '||comma||', 'let', 'me', 'have', 'a', 'bite', 'of', 'your', 'macanaw', '||period||', '||period||', '||return||', '||return||', 'newman:', 'what', 'for', '||comma||', 'you', 'got', 'your', 'own', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', "c'mon", 'i', 'need', 'to', 'taste', 'it', '||period||', '||leftparen||', 'takes', 'his', 'peach', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', "nothin'", '||comma||', "can't", 'even', 'taste', 'a', 'macanaw', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'resumes', 'eating', '||rightparen||', 'well', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'kramer:', 'waited', 'all', 'year', 'and', 'i', "can't", 'even', 'taste', 'it', '||period||', '||period||', '||return||', '||return||', 'newman:', 'you', "can't", 'taste', "'em", '||period||', 'why', 'waste', "'em", '||period||', 'why', 'not', 'give', 'them', 'all', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', "it's", 'a', 'story', 'about', 'love', '||comma||', 'deception', '||comma||', 'greed', '||comma||', 'lust', 'and', '||period||', '||period||', '||period||', '||period||', 'unbridled', 'enthusiasm', '||period||', '||return||', '||return||', 'mandel:', 'unbridled', 'enthusiasm', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', '||period||', '||period||', 'tha', '||period||', '||period||', "that's", 'right', '||period||', 'that', "that's", 'what', 'led', 'to', '||period||', '||period||', '||period||', '||leftparen||', 'throath', 'clearing', '||rightparen||', 'billy', "mumphrey's", 'downfall', '||period||', '||return||', '||return||', 'mandel:', 'hmmm', '||period||', '||period||', '||period||', 'interesting', 'take', '||period||', 'so', 'you', 'believe', '||comma||', 'has', 'he', 'not', 'been', 'so', 'enthusiastic', 'he', 'could', 'have', 'adverted', 'disaster', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||period||', '||period||', 'ye', '||period||', '||period||', 'yes', '||period||', '||period||', "that's", 'right', '||period||', '||period||', '||period||', 'you', 'see', '||comma||', 'billy', 'mumphrey', 'was', 'a', 'simple', 'country', 'boy', '||period||', 'some', 'might', 'say', 'a', 'cockeyed', 'optimist', '||comma||', 'who', 'got', 'caught', 'up', 'in', 'the', 'dirty', 'game', 'of', 'world', 'diplomacy', 'and', 'international', 'intrigue', '||period||', '||return||', '||return||', 'mandel:', 'so', '||period||', '||period||', 'it', 'was', 'more', 'a', 'question', 'of', 'attitude', 'than', 'politics', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'yes', 'mr', '||period||', 'mandel', '||period||', '||return||', '||return||', 'morty:', 'hey', '||exclammark||', 'under', 'siege', 'is', 'on', 'again', '||period||', 'whose', 'up', 'for', 'it', '||questionmark||', '||return||', '||return||', 'leo:', 'no', 'more', 'nuts', '||period||', 'awrghh', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'my', 'god', '||period||', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', '||period||', '||period||', '||period||', '||period||', '||period||', "don't", 'tell', 'me', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'velvet', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'the', 'real', 'deal', '||period||', '||return||', '||return||', 'jerry:', "she's", 'seen', 'you', 'in', 'this', 'thing', '||period||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', '||period||', '||period||', 'we', 'just', 'had', 'sex', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'know', 'jerry', "i've", 'been', 'searching', 'for', 'someone', 'a', 'long', 'time', '||period||', 'well', 'the', 'search', 'is', 'over', '||period||', '||return||', '||return||', 'jerry:', 'and', 'now', 'the', 'search', 'for', 'the', 'right', 'psychiatrist', 'begins', '||period||', '||return||', '||return||', 'george:', 'he', 'he', '||period||', '||period||', '||period||', 'so', 'huh', '||exclammark||', "what's", 'with', 'the', 'suitcase', '||period||', '||return||', '||return||', 'jerry:', 'ahh', '||exclammark||', 'she', 'threw', 'me', 'out', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "wouldn't", 'use', 'her', 'toothbrush', '||period||', '||return||', '||return||', 'george:', 'so', 'where', 'are', 'you', 'staying', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'guess', "i'm", 'stuck', 'with', 'the', 'velvet', 'fog', '||period||', '||return||', '||return||', 'mandel:', 'three', 'hours', 'of', 'massage', 'time', '||comma||', 'twelve', 'in', '||dash||', 'room', 'movies', 'including', 'several', 'adult', 'features', '||comma||', 'five', 'shoe', 'shines', 'and', 'four', 'hundred', 'dolars', 'worth', 'of', 'snacks', '||period||', 'not', 'to', 'mention', 'the', 'damage', 'to', 'the', 'room', '||period||', '||return||', '||return||', 'elaine:', 'mr', 'mandel', '||comma||', 'you', "don't", 'understand', '||period||', '||period||', '||period||', 'my', 'my', 'friend', 'had', 'fleas', '||period||', 'i', 'ran', 'into', 'the', 'gas', '||comma||', 'it', 'could', 'have', 'killed', 'me', '||comma||', 'and', 'my', '||comma||', 'my', 'other', 'friend', "couldn't", 'taste', 'his', 'peaches', '||comma||', 'they', 'only', 'good', 'for', 'two', 'weeks', '||period||', '||return||', '||return||', 'mandel:', 'i', 'think', '||comma||', "you've", 'read', '||comma||', 'one', 'too', 'many', '||comma||', 'billy', 'mumphrey', 'stories', '||period||', 'good', 'day', 'miss', 'benes', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||period||', '||period||', 'good', 'day', '||period||', '||period||', '||return||', '||return||', 'paula:', 'hi', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'mouth', 'full', '||rightparen||', 'hi', '||comma||', 'this', 'is', 'fantastic', '||leftparen||', 'puts', 'the', 'pit', 'in', 'the', 'a', 'plate', '||rightparen||', "d'you", 'ever', 'had', 'a', 'macanaw', 'peach', '||questionmark||', '||return||', '||return||', 'paula:', 'oh', '||exclammark||', 'yeah', 'i', 'love', 'those', '||period||', '||return||', '||return||', 'george:', 'too', 'bad', '||comma||', "it's", 'all', 'done', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||period||', '||period||', '||period||', '||period||', 'yes', '||exclammark||', '||period||', '||period||', '||period||', '||period||', 'yes', '||exclammark||', "it's", 'back', 'i', 'can', 'taste', 'again', '||period||', '||leftparen||', 'to', 'a', 'passerby', '||rightparen||', 'hey', '||exclammark||', "what's", 'the', 'date', 'today', '||questionmark||', '||return||', '||return||', 'passerby:', 'the', 'fifteenth', '||period||', '||return||', '||return||', 'kramer:', 'fifteenth', '||comma||', 'yes', 'last', 'day', 'for', 'the', 'macanaws', '||period||', 'i', 'can', 'still', 'make', 'it', '||period||', 'wait', '||period||', '||period||', 'newman', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'sorry', '||comma||', 'last', 'one', '||period||', 'would', 'you', 'want', 'to', 'suck', 'the', 'pit', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'fake', 'laugh', '||rightparen||', 'look', 'hubert', '||period||', "it's", 'the', 'mailman', '||period||', 'you', 'remember', 'the', 'mailman', "don't", 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'knocks', '||rightparen||', 'hello', 'is', 'anybody', 'here', '||questionmark||', '||period||', '||period||', '||return||', '||return||', 'leo:', 'they', 'said', 'they', 'were', 'sending', 'an', 'asian', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'my', 'god', '||period||', '||return||', '||return||', '[opening', 'scene:', 'jerry', 'and', 'elaine', 'are', 'outside', '||comma||', 'heading', 'towards', 'the', 'apartment', 'building]', '||return||', '||return||', 'jerry:', 'i', 'hear', "you're", 'going', 'out', 'with', 'david', 'putty', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'what', '||comma||', 'is', 'it', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'think', 'he', "could've", 'asked', 'me', '||period||', 'supposed', 'to', 'be', 'a', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'guess', 'he', 'figured', 'you', 'just', "wouldn't", 'care', '||period||', 'it', '*has*', 'been', 'a', 'few', 'years', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'you', 'always', 'care', 'who', 'an', 'ex', '||dash||', 'girlfriend', 'dates', '||period||', 'you', "don't", 'want', 'it', 'to', 'be', 'someone', 'you', 'know', '||comma||', 'and', 'you', "don't", 'want', 'it', 'to', 'be', 'someone', 'better', 'than', 'you', '||period||', 'now', '||comma||', 'even', 'though', 'the', 'latter', 'is', '*obviously*', 'impossible', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||period||', '||return||', '||return||', 'jerry:', 'the', 'former', 'still', 'applies', '||period||', 'i', "don't", 'know', 'what', 'it', 'is', '||comma||', 'but', 'i', 'just', "can't", 'see', 'you', 'with', 'a', 'mechanic', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'right', '||comma||', 'right', '||period||', 'well', '||comma||', 'all', 'those', 'mechanics', 'do', 'is', 'work', 'all', 'day', 'with', 'their', 'hands', 'and', 'their', '*big*', '||comma||', '*muscular*', 'arms', 'on', 'machines', '||comma||', 'and', 'then', 'they', 'come', 'home', 'dripping', 'with', 'animal', 'sexuality', 'like', 'stanley', 'kowalski', '||period||', 'what', 'a', 'huge', 'turn', '||dash||', 'off', 'that', 'is', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'look', 'at', 'that', '||period||', 'they', 'got', 'lobster', 'on', 'the', 'menu', '||period||', 'who', 'would', 'order', 'a', 'lobster', 'here', '||period||', 'i', 'mean', '||comma||', 'do', 'they', 'bring', 'a', 'lobster', 'in', 'everyday', 'hoping', '*todays*', 'the', 'day', '||period||', '||return||', '||return||', 'estelle:', 'so', 'what', 'if', 'they', 'have', 'a', 'lobster', '||period||', 'suddenly', "you're", 'a', 'shell', '||dash||', 'fish', 'connoisseur', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'think', 'we', 'really', 'need', 'to', 'be', 'in', 'front', 'of', 'a', 'television', 'set', '||period||', 'you', 'take', 't', '||period||', 'v', '||period||', 'out', 'of', 'this', 'relationship', '||comma||', 'it', 'is', '*just*', 'torture', '||period||', '||return||', '||return||', 'estelle:', 'so', '||comma||', "i'm", 'getting', 'an', 'eye', 'job', '||period||', '||return||', '||return||', 'george:', 'an', 'eye', 'job', '||questionmark||', 'ma', '||comma||', 'you', "don't", 'need', 'an', 'eye', 'job', '||period||', '||return||', '||return||', 'estelle:', 'georgie', '||comma||', "i'm", 'a', 'divorcee', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "you're", 'not', 'a', 'divorcee', '||period||', 'youre', 'just', 'separated', '||period||', "you're", '||dash||', '||dash||', '||dash||', "you're", 'a', 'separatee', '||period||', '||return||', '||return||', 'estelle:', 'well', '||comma||', "i'm", 'out', 'there', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "you're", 'not', 'out', 'there', '||period||', '||return||', '||return||', 'estelle:', 'i', 'am', '||comma||', 'too', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'not', 'out', 'there', '||exclammark||', 'you', "can't", 'be', '||comma||', 'because', '*i*', 'am', 'out', 'there', '||period||', 'and', 'if', 'i', 'see', '*you*', 'out', 'there', '||comma||', "there's", 'not', 'enough', 'voltage', 'in', 'this', 'world', 'to', 'electroshock', 'me', 'back', 'into', 'coherence', '||exclammark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'anyway', '||comma||', 'the', 'operation', 'is', 'on', 'tuesday', 'and', 'i', 'need', 'you', 'to', 'drive', 'me', 'home', 'because', "i'll", 'be', 'all', 'drugged', 'up', '||period||', '||return||', '||return||', 'george:', 'tuesday', '||questionmark||', 'i', "can't", 'do', 'it', 'tuesday', '||period||', 'steinbrenner', 'needs', 'me', 'to', 'run', '||dash||', '||dash||', '||dash||', '||return||', '||return||', 'estelle:', 'this', 'is', 'the', 'only', 'time', 'the', 'doctor', '*has*', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', '||leftparen||', 'gets', 'up', 'out', 'of', 'his', 'seat', '||rightparen||', '||return||', '||return||', 'kramer:', 'hi', '||comma||', 'little', 'buddy', '||period||', '||return||', '||return||', 'george:', 'come', 'on', 'over', 'and', 'sit', 'down', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'listen', '||comma||', 'i', 'gotta', 'go', 'somewhere', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "you're", 'gonna', 'sit', 'down', '||comma||', 'you', 'son', 'of', 'a', 'gun', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'm", 'sitting', 'down', '||period||', 'how', 'are', 'you', '||questionmark||', '||leftparen||', 'kisses', 'estelle', 'on', 'the', 'cheek', '||rightparen||', '||return||', '||return||', 'estelle:', 'so', '||comma||', 'kramer', '||period||', "i'm", 'getting', 'an', 'eye', 'job', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'good', 'for', 'you', '||period||', 'hey', '||comma||', 'you', 'have', 'to', 'look', 'your', 'best', '||period||', "you're", 'out', 'there', 'now', '||period||', '||return||', '||return||', 'george:', "she's", 'not', 'out', 'there', '||exclammark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'who', 'is', 'your', 'doctor', '||questionmark||', '||return||', '||return||', 'estelle:', 'uh', '||comma||', 'bakersoll', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'whistles', '||rightparen||', '||period||', "he's", 'good', '||period||', "he's", '*very*', 'good', '||period||', 'he', 'worked', 'on', 'this', 'kid', 'from', 'guatemala', 'with', 'no', 'nose', '||period||', 'turned', 'him', 'into', 'ricardo', 'montalban', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', 'tuesday', '||questionmark||', '||return||', '||return||', 'kramer:', 'tuesday', '||questionmark||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'why', "doesn't", '*he*', 'pick', 'you', 'up', 'after', 'the', 'operation', '||period||', "he's", 'got', 'the', 'car', 'with', 'the', 'bench', 'seats', 'that', 'you', 'like', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'know', '||comma||', 'but', 'i', "can't", 'drive', 'anybody', 'anywhere', 'until', 'i', 'go', 'down', 'to', 'the', 'motor', 'vehicle', 'bureau', 'and', 'get', 'my', 'new', 'plates', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'giddy', '||dash||', 'up', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'here', 'to', 'pick', 'up', 'my', 'new', 'plates', '||period||', 'my', 'name', 'is', 'kramer', '||period||', 'cosmo', 'kramer', '||period||', '||return||', '||return||', 'clerk:', 'kramer', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'checks', 'computer', '||rightparen||', 'all', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'all', 'righty', '||period||', '||period||', '||period||', '||return||', '||return||', 'clerk:', 'sign', 'right', 'here', '||comma||', 'please', '||period||', '||leftparen||', 'hands', 'over', 'clipboard', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'signs', 'it', '||rightparen||', 'okay', '||period||', '||leftparen||', 'the', 'clerk', 'hands', 'him', 'a', 'manila', 'envelope', '||rightparen||', '||period||', 'thanks', '||period||', '||leftparen||', 'opens', 'up', 'the', 'envelope', '||rightparen||', 'assman', '||questionmark||', 'oh', '||comma||', 'no', '||comma||', 'these', "don't", 'belong', 'to', 'me', '||period||', "i'm", 'not', 'the', 'assman', '||period||', 'i', 'think', "there's", 'been', 'a', 'mistake', '||period||', '||return||', '||return||', 'clerk:', "what's", 'your', 'name', 'again', '||questionmark||', '||return||', '||return||', 'kramer:', 'cosmo', 'kramer', '||period||', '||return||', '||return||', 'clerk:', '||leftparen||', 'checks', 'computer', 'again', '||rightparen||', 'cosmo', 'kramer', '||period||', 'you', '*are*', 'the', 'assman', '||period||', '||return||', '||return||', 'kramer:', 'no', '||exclammark||', "i'm", 'not', 'the', 'assman', '||period||', '||return||', '||return||', 'clerk:', 'well', '||comma||', 'as', 'far', 'as', 'the', 'state', 'of', 'new', 'york', 'is', 'concerned', '||comma||', 'you', 'are', '||period||', '||return||', '||return||', 'david:', 'how', 'do', 'you', 'feel', '||questionmark||', '||return||', '||return||', 'elaine:', 'fine', '||period||', '||return||', '||return||', 'david:', 'something', 'the', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'david:', 'then', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'i', 'was', 'with', 'david', '*putty*', 'last', 'night', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', '||period||', '||return||', '||return||', 'elaine:', 'he', 'did', 'the', 'move', '||period||', '||return||', '||return||', 'jerry:', 'what', 'move', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||period||', '||period||', '||period||', '*the*', 'move', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', '*my*', 'move', '||questionmark||', '||return||', '||return||', 'jerry:', 'david', 'putty', 'used', '*my*', 'move', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', 'there', 'is', 'no', 'confusing', '*that*', 'move', 'with', 'any', 'other', 'move', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'it', '||period||', 'he', '*stole*', 'my', 'move', '||period||', '||return||', '||return||', 'elaine:', 'what', 'else', 'did', 'you', 'tell', '||leftparen||', 'reaches', 'over', 'to', 'slap', 'jerry', '||rightparen||', 'him', '||period||', '||leftparen||', 'does', 'it', 'again', '||rightparen||', 'the', 'two', 'of', 'you', 'must', 'have', 'had', '*quite*', 'a', 'little', 'chat', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', "wasn't", 'like', 'that', '||exclammark||', 'i', "didn't", 'even', 'mention', 'you', '||period||', 'you', 'know', '||comma||', 'we', 'were', 'in', 'the', 'garage', '||period||', 'you', 'know', 'how', 'garages', 'are', '||period||', "they're", 'conducive', 'to', 'sex', 'talk', '||period||', "it's", 'a', 'high', '||dash||', 'testosterone', 'area', '||period||', '||return||', '||return||', 'elaine:', 'because', 'of', 'all', 'the', 'pistons', 'and', 'the', 'lube', 'jobs', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'going', 'down', 'to', 'that', 'garage', 'and', 'telling', 'him', 'to', 'stop', 'doing', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'wait', '||dash||', '||dash||', '||dash||', 'wait', 'a', 'second', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', "isn't", 'that', 'a', 'little', '||period||', '||period||', '||period||', 'rash', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'he', 'stole', 'my', 'move', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', '||period||', '||period||', '||period||', '*i*', 'like', 'the', 'move', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', "it's", 'like', 'another', 'comedian', 'stealing', 'my', 'material', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', "doesn't", 'even', 'do', 'it', 'exactly', 'the', 'same', '||period||', 'he', '||dash||', '||dash||', 'he', '||dash||', '||dash||', 'he', 'uses', 'a', 'pinch', 'at', 'the', 'end', 'instead', 'of', 'the', '*swirl*', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'the', 'pinch', '||period||', "*i've*", 'done', 'the', 'pinch', '||period||', "that's", 'not', 'new', '||period||', 'besides', 'which', '||comma||', 'i', "don't", 'know', 'how', 'you', 'could', 'trust', 'any', 'of', 'his', 'moves', 'now', '||period||', 'his', 'whole', '*repertoire*', 'could', 'be', 'lifted', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', "it's", 'strange', '||comma||', 'because', "he's", 'such', 'an', 'honest', 'mechanic', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', "he's", 'probably', 'the', 'only', 'honest', 'mechanic', 'in', 'new', 'york', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'so', 'he', 'stole', 'my', 'move', 'and', "he's", 'using', 'it', 'on', 'elaine', '||period||', '||return||', '||return||', 'george:', 'you', 'told', 'david', 'putty', 'your', 'move', 'and', 'you', "didn't", 'tell', '*me*', '||questionmark||', 'i', '*need*', 'a', 'move', '||period||', 'you', 'know', 'i', 'have', 'no', 'moves', '||comma||', 'jerry', '||period||', '||leftparen||', 'points', 'to', 'the', 'candy', 'bar', '||rightparen||', 'gimme', 'a', 'bite', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'just', 'get', 'it', 'opened', 'first', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', "you're", 'hoarding', 'sex', 'moves', '||period||', "i'm", 'out', 'there', 'rubbing', 'two', 'sticks', 'together', '||period||', 'you', 'walk', 'around', 'with', 'a', 'zippo', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'here', '||period||', '||leftparen||', 'hands', 'george', 'a', 'piece', 'of', 'the', 'candy', 'bar', '||rightparen||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'takes', 'a', 'bite', '||rightparen||', 'oh', '||comma||', "that's", 'good', '||period||', "that's", 'very', 'good', '||period||', '||return||', '||return||', 'jerry:', 'you', 'feel', 'better', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'much', 'better', '||period||', 'all', 'right', '||comma||', 'so', "what's", 'the', 'move', '||comma||', 'because', 'i', 'need', '*something*', '||period||', 'this', 'woman', "i'm", 'dating', '||comma||', "it's", 'like', "she's", 'doing', 'her', 'nails', 'during', 'love', '||dash||', 'making', '||period||', '||return||', '||return||', 'jerry:', 'nancy', 'klopper', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'never', 'seen', 'anyone', 'so', 'bored', '||period||', "i'm", 'working', 'like', 'a', 'dog', 'here', '||period||', 'give', 'me', 'a', 'moan', '||period||', '*something*', '||period||', "i'd", 'settle', 'for', 'a', 'belch', '||comma||', 'for', "god's", 'sake', '||period||', 'all', 'right', '||comma||', 'come', 'on', '||comma||', "let's", 'have', 'it', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'george', '||period||', "i'm", 'gonna', 'tell', 'you', '||period||', 'but', 'i', 'just', 'wanna', 'make', 'sure', '||comma||', 'before', '||dash||', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', "it's", 'in', 'the', 'vault', '||period||', "i'm", 'putting', 'it', 'in', 'the', 'vault', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'even', 'a', 'question', 'of', 'that', '||period||', 'the', 'point', 'is', 'when', 'something', 'like', 'this', 'is', 'passed', 'along', '||comma||', 'one', 'must', 'be', 'certain', 'that', "it's", 'going', 'to', 'be', 'used', 'in', 'a', '*conscientious*', 'way', '||period||', 'this', 'is', 'not', 'some', 'parlor', 'trick', 'to', 'be', 'used', '||dash||', '||dash||', '||dash||', '||return||', '||return||', 'george:', "you're", 'gonna', 'tell', 'me', '||period||', '||period||', '||period||', 'or', 'not', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'on', 'your', 'bed', '||period||', 'you', 'got', 'a', 'headboard', '||questionmark||', "you'll", 'need', 'a', 'headboard', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'headboard', '||period||', '||return||', '||return||', 'jerry:', 'is', 'it', 'padded', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'how', 'tall', 'is', 'she', '||questionmark||', '||return||', '||return||', 'george:', 'five', '||dash||', 'foot', 'four', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'have', 'more', 'than', 'a', 'one', '||dash||', 'foot', 'differential', 'in', 'your', 'heights', '||period||', 'otherwise', '||comma||', 'you', 'could', 'really', 'hurt', 'your', 'neck', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'tell', 'ya', 'how', 'much', 'i', 'appreciate', 'this', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'if', 'you', 'could', 'master', 'this', '||comma||', "you'll", 'never', 'be', 'alone', 'again', '||period||', '||return||', '||return||', '[back', 'at', "jerry's", 'apartment:', 'jerry', 'and', 'george', 'have', 'just', 'walked', 'in', '||comma||', 'still', 'conversing', 'on', 'the', 'same', 'subject]', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'the', 'ending', 'is', 'kind', 'of', 'an', 'option', '||period||', 'i', 'use', 'the', 'swirl', '||period||', 'i', 'like', 'the', 'swirl', '||period||', "i'm", 'comfortable', 'with', 'the', 'swirl', '||period||', '*i*', 'feel', 'the', 'swirl', 'is', 'a', 'great', 'capper', '||period||', 'he', 'uses', 'the', 'pinch', '||comma||', 'which', 'i', 'find', 'a', 'little', 'presumptuous', '||period||', '||return||', '||return||', 'george:', 'is', 'it', 'a', 'clockwise', 'swirl', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'prefer', 'clockwise', '||comma||', 'but', "it's", 'not', 'written', 'in', 'stone', '||period||', '||return||', '||return||', 'kramer:', 'here', 'you', 'go', '||comma||', 'buddy', '||period||', '||leftparen||', 'shows', 'it', 'to', 'jerry', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', '*fusilli*', 'jerry', '||exclammark||', "it's", 'made', 'from', 'fusilli', 'pasta', '||period||', 'see', 'the', 'microphone', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'did', 'you', 'do', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'in', 'my', 'spare', 'time', '||period||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', '||period||', 'you', 'know', '||comma||', "i'm", 'working', 'on', 'one', 'of', 'you', '||comma||', 'george', '||period||', "i'm", 'using', 'ravioli', '||period||', 'see', '||comma||', 'the', 'hard', 'part', 'is', 'to', 'find', 'a', 'pasta', 'that', 'captures', 'the', 'individual', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'why', 'fusilli', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "*you're*", 'silly', '||period||', 'get', 'it', '||questionmark||', '||leftparen||', 'hands', 'the', 'fusilli', 'to', 'jerry', '||rightparen||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'did', 'you', 'get', 'your', 'new', 'plates', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', 'yeah', '||period||', 'i', 'got', 'my', 'new', 'plates', '||period||', 'but', 'they', 'mixed', 'them', 'up', '||period||', 'somebody', 'got', 'mine', 'and', 'i', 'got', 'their', '*vanity*', 'plates', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'they', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'assman', '||period||', '||return||', '||return||', 'jerry:', 'assman', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'assman', '||comma||', 'jerry', '||period||', "i'm", 'cosmo', 'kramer', '||comma||', 'the', 'assman', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', 'would', 'order', 'a', 'license', 'plate', 'that', 'says', '||quotemark||', 'assman', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', "they're", 'wilt', "chamberlain's", '||period||', '||return||', '||return||', 'jerry:', 'it', "doesn't", 'have', 'to', 'be', 'someone', 'who', 'gets', 'a', 'lot', 'of', 'women', '||period||', 'it', 'could', 'be', 'just', 'some', 'guy', 'with', 'a', 'big', 'ass', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'or', 'it', 'could', 'be', 'a', 'proctologist', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'proctologist', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||exclammark||', 'no', 'doctor', 'would', 'put', 'that', 'on', 'his', 'car', '||period||', '||return||', '||return||', 'kramer:', 'have', 'you', 'ever', '*met*', 'a', 'proctologist', '||questionmark||', 'well', '||comma||', 'they', 'usually', 'have', 'a', 'very', 'good', 'sense', 'of', 'humor', '||period||', 'you', 'meet', 'a', 'proctologist', 'at', 'a', 'party', '||comma||', "don't", 'walk', 'away', '||period||', '*plant*', 'yourself', 'there', '||comma||', 'because', 'you', 'will', 'hear', 'the', 'funniest', 'stories', "you've", 'ever', 'heard', '||period||', 'see', '||comma||', 'no', 'one', 'wants', 'to', 'admit', 'to', 'them', 'that', 'they', '*stuck*', 'something', 'up', 'there', '||period||', 'never', '||exclammark||', "it's", 'always', 'an', 'accident', '||period||', 'every', 'proctologist', 'story', 'ends', 'in', 'the', 'same', 'way', '||quotemark||', 'it', 'was', 'a', 'million', 'to', 'one', 'shot', '||comma||', 'doc', '||period||', 'million', 'to', 'one', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', "there's", 'my', 'phone', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||comma||', 'where', 'you', 'gonna', 'stick', 'this', '||leftparen||', 'points', 'to', 'the', 'fusilli', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'where', "i'd", 'like', 'to', 'stick', 'it', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'david', '||period||', '||return||', '||return||', 'david:', 'oh', '||comma||', 'hi', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "what's", 'the', 'story', '||questionmark||', 'i', 'hear', "you're", 'doing', 'my', 'move', '||period||', '||return||', '||return||', 'david:', 'what', 'move', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'move', '||questionmark||', '*my*', 'move', '||period||', 'the', 'one', 'i', 'told', 'you', 'about', '||period||', 'you', 'used', 'it', 'on', 'elaine', '||period||', '||return||', '||return||', 'david:', "you're", 'move', '||questionmark||', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', 'i', 'was', 'doing', 'that', 'before', 'i', 'knew', 'you', '||period||', 'all', 'you', 'told', 'me', 'about', 'was', 'the', 'ending', '||period||', '||return||', '||return||', 'jerry:', 'the', 'ending', 'is', 'the', 'whole', 'thing', '||period||', 'without', 'the', 'ending', '||comma||', "it's", 'nothing', '||period||', 'you', 'had', '*nothing*', '||period||', '||return||', '||return||', 'david:', 'oh', '||comma||', 'that', 'ending', 'was', '*so*', 'obvious', '||period||', 'i', 'would', 'have', 'figured', 'it', 'out', 'anyway', '||period||', 'i', "didn't", 'need', 'you', 'to', 'tell', 'me', 'that', 'stupid', 'twist', '||period||', '||return||', '||return||', 'jerry:', 'swirl', '||period||', '||return||', '||return||', 'david:', 'whatever', '||period||', 'i', "don't", 'even', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||comma||', 'i', 'know', '||period||', 'you', 'do', 'the', '*pinch*', '||period||', '||return||', '||return||', 'david:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'come', 'up', 'with', 'your', 'own', 'stuff', '||comma||', 'so', 'you', '*steal*', 'other', 'peoples', '||questionmark||', "you're", 'nothing', 'but', 'a', 'hack', '||period||', '||return||', '||return||', 'david:', 'are', 'you', 'through', '||comma||', "'cuz", '||comma||', 'uh', '||comma||', 'i', 'gotta', 'get', 'back', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'll", 'tell', 'you', 'what', "i'll", 'do', '||comma||', 'you', 'know', '||period||', 'if', 'you', 'wanna', 'do', 'it', 'out', 'of', 'town', '||period||', '||period||', '||period||', 'okay', '||period||', 'but', 'not', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'david:', 'all', 'right', '||comma||', 'how', 'about', 'the', 'next', 'time', 'your', 'car', 'breaks', 'down', '||comma||', 'you', 'take', '*that*', 'out', 'of', 'town', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||period||', '||return||', '||return||', 'david:', 'good', '||exclammark||', '||return||', '||return||', 'nancy:', 'ow', '||comma||', 'george', '||exclammark||', '||leftparen||', 'crawls', 'out', 'from', 'beneath', 'the', 'covers', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pops', 'his', 'head', 'out', 'of', 'the', 'covers', '||comma||', 'looking', 'a', 'bit', 'confused', '||rightparen||', 'uh', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'uh', '||period||', '||period||', '||period||', 'pleasuring', 'you', '||period||', '||return||', '||return||', 'nancy:', 'well', '||comma||', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'you', "don't", 'like', 'the', 'move', '||questionmark||', '||return||', '||return||', 'nancy:', 'no', '||period||', 'i', "don't", '||period||', '||return||', '||return||', 'george:', "you're", 'kidding', '||period||', '||return||', '||return||', 'nancy:', 'no', '||comma||', "i'm", 'not', '||period||', 'it', 'feels', 'like', 'aliens', 'poking', 'at', 'my', 'body', '||period||', '||return||', '||return||', 'george:', 'sorry', '||period||', "i'll", 'just', 'go', 'back', 'to', 'my', 'usual', 'routine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||exclammark||', 'oh', '||comma||', 'god', '||comma||', 'dave', '||exclammark||', 'oh', '||comma||', 'yes', '||exclammark||', 'yes', '||exclammark||', '||return||', '||return||', 'david:', 'no', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'david:', 'i', "can't", 'do', 'the', 'move', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'david:', 'oh', '||comma||', "he's", 'ruined', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'oh', '||comma||', 'come', 'on', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'david:', 'no', '||comma||', 'he', 'called', 'me', 'a', 'hack', '||period||', "i'm", 'just', 'not', 'into', 'doing', 'it', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'so', '||dash||', '||dash||', '||dash||', 'so', "that's", 'it', '||questionmark||', '||return||', '||return||', 'david:', "i'll", 'come', 'up', 'with', 'some', 'new', 'stuff', '||period||', '||return||', '||return||', 'kramer:', '||quotemark||', 'call', 'me', '||period||', 'thirty', '||dash||', 'six', '||comma||', 'twenty', '||dash||', 'four', '||comma||', 'forty', '||dash||', 'six', '||period||', 'i', 'think', 'i', 'have', 'what', "you're", 'looking', 'for', '||period||', '||quotemark||', '||leftparen||', 'pleased', 'by', 'the', 'note', '||comma||', 'kramer', 'stumbles', 'into', 'his', 'car', '||rightparen||', '||period||', '||return||', '||return||', 'dr', '||period||', 'bakersoll:', 'i', 'must', 'caution', 'you', 'about', 'one', 'thing', '||period||', 'you', "can't", 'cry', 'for', 'at', 'least', 'ten', 'day', '||period||', 'you', 'can', 'ruin', 'the', 'operation', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'okay', '||period||', '||return||', '||return||', 'dr', '||period||', 'bakersoll:', 'now', '||comma||', 'is', 'someone', 'coming', 'to', 'pick', 'you', 'up', '||questionmark||', '||return||', '||return||', 'estelle:', 'yes', '||comma||', 'my', "son's", 'friend', 'should', 'be', 'here', 'any', 'minute', '||period||', '||return||', '||return||', 'security', 'guard:', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'yeah', '||period||', 'doctor', 'cosmo', 'kramer', '||period||', '||leftparen||', 'points', 'to', 'plate', '||rightparen||', 'proctology', '||period||', '||return||', '||return||', 'security', 'guard:', 'oh', '||comma||', 'oh', '||comma||', 'okay', '||period||', 'sure', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'thanks', '||period||', 'have', 'a', 'good', 'day', '||period||', '||return||', '||return||', 'kramer:', 'i', 'just', "can't", 'get', 'over', 'how', 'fantastic', 'you', 'look', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'this', 'takes', 'twenty', 'years', 'off', '||period||', '||return||', '||return||', 'estelle:', 'and', 'it', 'was', 'all', 'done', 'by', 'laser', '||period||', 'i', "don't", 'even', 'need', 'bandages', '||period||', '||return||', '||return||', 'estelle:', 'did', 'he', 'say', '||quotemark||', 'assman', '||quotemark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'estelle:', 'oh', 'my', 'goodness', '||period||', '||return||', '||return||', '||leftparen||', 'another', 'car', 'passes:', '||quotemark||', 'hey', '||comma||', 'the', "assman's", 'in', 'town', '||exclammark||', '||quotemark||', '||rightparen||', '||return||', '||return||', 'kramer:', 'you', 'got', 'that', 'straight', '||exclammark||', '||return||', '||return||', 'estelle:', 'boy', '||period||', 'i', 'never', 'dreamed', 'it', 'could', 'make', 'such', 'a', 'difference', '||period||', '||return||', '||return||', 'jerry:', 'you', 'must', 'have', 'done', '*something*', 'wrong', '||period||', 'you', 'probably', 'screwed', 'up', 'the', 'order', '||period||', 'did', 'you', 'close', 'with', 'the', 'swirl', '||questionmark||', '||return||', '||return||', 'george:', 'supposed', 'to', 'close', 'with', 'the', 'swirl', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', 'yes', '||comma||', 'you', 'close', 'with', 'the', 'swirl', '||period||', "there's", 'a', 'progression', 'there', '||period||', 'i', 'told', 'you', 'to', 'write', 'it', 'down', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', "should've", 'written', 'it', 'down', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'buzzer:', 'elaine', '||period||', '||return||', '||return||', 'jerry:', "c'mon", 'up', '||period||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', 'you', 'know', 'what', '||questionmark||', 'do', 'me', 'a', 'favor', '||period||', "don't", 'even', 'do', 'the', 'move', 'anymore', '||period||', "you're", 'gonna', 'give', 'it', 'a', 'bad', 'name', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'yeah', '||comma||', 'this', 'is', 'jerry', 'seinfeld', '||period||', 'what', '||questionmark||', 'twenty', '||dash||', 'eight', 'hundred', 'dollars', '||questionmark||', '||exclammark||', '||exclammark||', "that's", 'the', 'estimate', 'on', 'my', 'car', '||questionmark||', '||exclammark||', '||exclammark||', 'no', '||comma||', "don't", 'even', 'do', 'anything', '||period||', "i'm", 'gonna', 'think', 'about', 'it', '||period||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'george:', "what's", 'to', 'think', 'about', '||questionmark||', 'if', 'putty', 'says', "it's", 'what', 'it', 'is', '||comma||', "it's", 'what', 'it', 'is', '||period||', "he's", 'not', 'gonna', 'cheat', 'you', '||period||', '||return||', '||return||', 'jerry:', 'except', 'that', "it's", 'not', 'putty', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'putty', '||questionmark||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'we', 'had', 'a', 'little', 'fight', 'about', 'the', 'move', '||period||', 'i', 'took', 'her', 'to', 'this', 'other', 'place', '||period||', 'i', 'think', 'they', 'might', 'be', 'trying', 'to', 'screw', 'me', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'of', 'course', "they're", 'trying', 'to', 'screw', 'you', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', "that's", 'what', 'they', 'do', '||period||', 'they', 'can', 'make', 'up', 'anything', '||period||', 'nobody', 'knows', '||period||', '||quotemark||', 'by', 'the', 'way', '||comma||', 'you', 'need', 'a', 'new', 'johnson', 'rod', 'in', 'there', '||period||', '||quotemark||', '||quotemark||', 'oh', '||comma||', 'a', 'johnson', 'rod', '||period||', 'yeah', '||comma||', 'well', '||comma||', 'you', 'better', 'put', 'one', 'of', 'those', 'on', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'is', 'it', 'something', 'i', 'said', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', 'as', 'a', 'matter', 'of', 'fact', '||exclammark||', 'david', 'putty', "won't", 'do', 'the', 'move', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'come', 'up', 'with', 'some', 'other', 'move', '||period||', 'you', 'should', 'see', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "it's", 'a', 'lot', 'of', 'just', 'fancy', '||dash||', 'shmancy', 'stuff', '||period||', 'you', 'know', 'what', "it's", 'like', '||questionmark||', "it's", 'like', 'a', 'big', 'budget', 'movie', 'with', 'a', 'story', 'that', 'goes', '*nowhere*', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'this', 'move', 'is', 'no', 'good', '||comma||', 'jerry', '||period||', "it's", 'just', 'taking', 'up', 'a', 'lot', 'of', 'my', 'time', '||period||', 'and', 'i', '||period||', '||period||', '||period||', 'will', 'not', 'stand', 'by', 'and', 'allow', 'him', 'to', 'perform', 'this', 'move', 'on', 'me', '||comma||', 'when', 'a', 'perfectly', 'good', 'move', 'is', 'just', 'sitting', 'in', 'the', 'barn', 'doing', 'nothing', '||exclammark||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'this', 'new', 'move', '||period||', 'is', 'there', 'a', 'knuckle', 'involved', 'in', 'any', 'way', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', 'as', 'a', 'matter', 'of', 'fact', '||comma||', 'there', 'is', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "that's", 'mine', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'surprised', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||period||', 'i', 'need', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', "when's", 'the', 'next', 'time', "you're", 'gonna', 'see', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'get', 'an', 'estimate', 'on', 'my', 'car', 'from', 'him', '||period||', 'i', 'think', 'this', 'garage', 'is', 'trying', 'to', 'screw', 'me', '||period||', '||return||', '||return||', 'elaine:', 'an', 'estimate', '||questionmark||', 'how', 'am', 'i', 'supposed', 'to', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'look', '||period||', "here's", 'the', 'work', 'order', 'with', 'everything', 'that', 'broke', '||period||', 'just', 'kind', 'of', 'bring', 'it', 'up', 'at', 'the', 'right', 'time', 'and', 'find', 'out', '||period||', '||leftparen||', 'hands', 'elaine', 'the', 'work', 'order', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'takes', 'the', 'work', 'order', 'and', 'points', 'to', 'the', 'fusilli', 'jerry', 'sitting', 'on', 'the', 'table', '||rightparen||', 'what', '||questionmark||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", '||comma||', 'uh', '||comma||', 'fusilli', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'fusilli', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'kramer', 'made', 'it', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'listen', '||comma||', "i'll", 'see', 'you', 'guys', 'later', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'assman', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'well', '||comma||', 'this', 'is', 'sally', '||period||', '||return||', '||return||', 'sally:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'shall', 'we', 'go', '||questionmark||', '||return||', '||return||', 'sally:', 'okay', '||period||', '||leftparen||', 'turns', 'around', 'and', 'walks', 'out', 'with', 'an', 'exaggerated', 'swing', 'of', 'her', 'hips', '||rightparen||', '||return||', '||return||', 'estelle:', 'you', "can't", 'face', 'the', 'fact', 'that', "i'm", 'improving', 'myself', '||period||', '||return||', '||return||', 'frank:', "you're", 'not', 'the', 'only', 'one', 'improving', 'yourself', '||period||', 'i', 'worked', 'out', 'with', 'a', 'dumbbell', 'yesterday', '||period||', 'i', 'feel', '*vigorous*', '||period||', '||return||', '||return||', 'estelle:', 'just', 'take', 'your', 'mail', 'and', 'go', 'home', '||period||', 'i', 'have', 'things', 'to', 'do', '||period||', '||return||', '||return||', 'frank:', 'i', 'got', 'things', 'to', 'do', '||comma||', 'too', '||period||', '||return||', '||return||', 'estelle:', "don't", 'upset', 'me', '||exclammark||', 'i', "can't", 'cry', '||exclammark||', '||return||', '||return||', 'frank:', 'getting', 'an', 'eye', 'job', 'like', 'some', 'manhattanite', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', "it's", 'already', 'working', '||period||', 'kramer', 'made', 'a', 'pass', 'at', 'me', '||period||', '||return||', '||return||', 'frank:', 'kramer', 'made', 'a', 'pass', 'at', 'you', '||questionmark||', "you're", 'crazy', '||period||', '||return||', '||return||', 'estelle:', "i'm", 'not', 'crazy', '||period||', 'he', 'stopped', 'short', 'and', 'made', 'a', 'grab', '||period||', '||return||', '||return||', 'frank:', 'he', 'stopped', 'short', '||questionmark||', "that's", 'my', 'move', '||period||', "i'm", 'gonna', 'kill', 'him', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', '||return||', '||return||', 'david:', 'sure', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'charge', 'for', 'blown', 'shocks', '||questionmark||', '||return||', '||return||', 'david:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'two', '||comma||', 'three', 'hundred', '||questionmark||', '||return||', '||return||', 'david:', 'i', "don't", 'know', '||period||', 'maybe', 'five', 'hundred', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'a', 'bad', 'gasket', '||questionmark||', '||return||', '||return||', 'david:', 'bad', 'gasket', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'like', 'a', 'terrible', 'gasket', '||period||', '||return||', '||return||', 'david:', 'what', 'is', 'all', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||comma||', 'nothing', '||period||', "i'm", 'just', 'taking', 'an', 'interest', 'in', 'what', 'you', '||period||', '||period||', '||period||', 'do', '||period||', '||return||', '||return||', 'david:', 'what', 'kind', 'of', 'car', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', 'any', 'kind', 'of', '||dash||', '||dash||', '||dash||', 'of', 'a', 'swedish', 'car', '||period||', '||return||', '||return||', 'david:', 'all', 'together', '||comma||', 'that', 'could', 'run', 'about', 'sixteen', 'hundred', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'is', 'that', 'with', 'the', 'parts', 'and', 'labor', '||questionmark||', '||return||', '||return||', 'david:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', 'no', '||comma||', 'david', '||period||', 'no', '||comma||', 'please', '||period||', 'not', 'the', 'knuckle', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'nancy:', 'wow', '||period||', 'that', 'was', '||period||', '||period||', '||period||', '*great*', '||period||', 'i', 'mean', '||period||', '||period||', '||period||', '*wow*', '||period||', '||return||', '||return||', 'george:', 'it', 'just', 'came', 'to', 'me', '||period||', '||return||', '||return||', 'nancy:', 'i', '||dash||', '||dash||', '||dash||', "i've", 'never', 'in', 'my', 'life', 'have', '||dash||', '||dash||', '||dash||', 'have', 'i', '||dash||', '||dash||', '||dash||', '||period||', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'mean', 'in', 'the', 'end', '||questionmark||', '||return||', '||return||', 'nancy:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', 'a', 'counter', '||dash||', 'clockwise', 'swirl', '||period||', '||return||', '||return||', 'nancy:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'nancy:', 'on', '||dash||', '||dash||', '||dash||', 'on', 'your', 'hand', '||questionmark||', 'let', 'me', 'see', "what's", 'on', 'your', 'hand', '||period||', '||return||', '||return||', 'george:', 'nothing', '||period||', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'just', 'a', 'little', 'dirt', '||period||', '||return||', '||return||', 'nancy:', 'give', 'me', 'that', '||period||', '||leftparen||', 'grabs', 'his', 'hand', '||rightparen||', 'i', 'wanna', 'see', "what's", 'on', 'your', 'hand', '||period||', '||return||', '||return||', 'nancy:', 'number', 'one', '||period||', 'take', 'her', 'leg', '||period||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'my', 'god', '||exclammark||', 'crib', 'notes', '||questionmark||', "you've", 'got', 'crib', 'notes', '||questionmark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'a', 'very', 'complicated', 'move', '||exclammark||', 'i', "couldn't", 'remember', 'it', 'all', '||period||', '||return||', '||return||', 'nancy:', 'oh', '||comma||', 'my', 'god', '||comma||', "you're", 'sick', '||period||', '||leftparen||', 'gets', 'out', 'of', 'bed', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "it's", 'not', 'the', 's', '||period||', 'a', '||period||', 't', '||period||', 's', '||exclammark||', '||return||', '||return||', 'frank:', 'assman', '||questionmark||', "i'll", 'get', 'him', '||comma||', 'assman', '||exclammark||', '||return||', '||return||', 'jerry:', 'sixteen', 'hundred', 'dollars', '||questionmark||', "that's", 'all', '||questionmark||', '*ooh*', '||comma||', 'they', 'are', 'ripping', 'me', 'off', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'it', '||period||', "i'm", 'going', 'back', 'to', 'putty', '||period||', 'no', 'move', 'is', 'worth', 'this', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'you', 'mean', 'you', "don't", 'care', 'if', 'he', 'does', 'the', 'move', 'anymore', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'kidding', '||questionmark||', 'he', 'can', 'do', 'every', 'move', "i've", 'ever', 'done', '||exclammark||', 'do', 'you', 'know', 'what', 'a', 'good', 'mechanic', 'is', 'worth', '||questionmark||', 'you', "can't", 'compare', 'that', 'to', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'mr', '||period||', 'constanza', '||period||', "what's", 'uh', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'frank:', "where's", 'your', 'friend', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'frank:', 'because', "i'm", 'looking', 'for', 'him', '||period||', "that's", 'why', '||period||', 'he', 'stopped', 'short', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'frank:', 'in', 'a', 'car', '||comma||', 'with', 'my', 'wife', '||period||', 'he', 'stopped', 'short', '||period||', 'you', 'think', 'i', "don't", 'know', 'what', "that's", 'about', '||questionmark||', "that's", 'my', 'old', 'move', '||exclammark||', 'i', 'used', 'it', 'on', 'estelle', 'forty', 'years', 'ago', '||exclammark||', 'i', 'told', 'everybody', 'about', 'it', '||exclammark||', 'everybody', 'knows', '||exclammark||', '||leftparen||', 'demonstrates', '||rightparen||', 'hmmph', '||exclammark||', 'i', 'stopped', 'short', '||period||', '||return||', '||return||', 'jerry:', 'really', '||comma||', 'stopping', 'short', '||period||', "that's", 'a', 'good', 'move', '||period||', '||return||', '||return||', 'frank:', "you're", 'not', 'kidding', "it's", 'a', 'good', 'move', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'frank', '||period||', '||return||', '||return||', 'frank:', "don't", 'frank', 'me', '||exclammark||', 'i', 'know', 'what', 'you', 'did', '||period||', 'how', 'dare', 'you', 'stop', 'short', 'with', 'my', 'wife', '||exclammark||', '||return||', '||return||', 'kramer:', "c'mon", '||comma||', 'frank', '||comma||', 'relax', '||period||', 'i', "don't", 'even', 'know', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'frank:', 'you', 'think', 'i', "don't", 'know', '||comma||', 'assman', '||questionmark||', '||exclammark||', '||exclammark||', 'to', 'think', 'i', 'almost', 'split', 'the', 'profits', 'on', 'the', 'manssierre', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'bro', '||period||', '||return||', '||return||', 'frank:', 'manssierre', '||exclammark||', '||return||', '||return||', 'kramer:', 'bro', '||exclammark||', '||return||', '||return||', 'frank:', 'manssierre', '||exclammark||', 'you', '||period||', '||period||', '||period||', '||exclammark||', '||return||', '||return||', 'frank:', 'aah', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'jerry:', 'if', 'i', "wasn't", 'there', '||comma||', 'i', "wouldn't", 'have', 'believed', 'it', '||period||', '||return||', '||return||', 'elaine:', 'me', 'either', '||period||', '||return||', '||return||', 'george:', 'they', 'say', 'this', "guy's", 'the', 'best', '||period||', '||return||', '||return||', 'jerry:', 'he', 'had', 'to', 'use', 'cork', '||dash||', 'screw', 'pasta', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', 'jerry', '||comma||', 'come', 'here', '||period||', 'take', 'a', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'kramer:', 'the', 'name', 'on', 'the', 'boat', '||period||', 'look', 'at', 'it', '||period||', '||return||', '||return||', 'jerry:', 'assman', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||leftparen||', 'points', 'towards', 'the', "doctor's", 'office', '||rightparen||', '||comma||', "he's", 'the', 'assman', '||exclammark||', 'jerry', '||comma||', "*he's*", 'the', 'assman', '||exclammark||', '||return||', '||return||', 'doctor:', 'which', 'one', 'is', 'the', 'son', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'stands', 'up', '||rightparen||', 'i', 'am', '||period||', '||return||', '||return||', 'doctor:', 'ah', '||period||', "i'm", 'doctor', 'cooperman', '||period||', 'i', 'just', 'want', 'you', 'to', 'know', 'that', 'this', "won't", 'take', 'long', '||period||', 'and', "he's", 'going', 'to', 'be', 'fine', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'excuse', 'me', '||comma||', 'uh', '||period||', '||period||', '||period||', 'you', "didn't", 'by', 'any', 'chance', 'recently', 'get', 'the', 'wrong', 'license', 'plates', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'cooperman:', 'yes', '||period||', "i'm", 'still', 'waiting', 'for', 'the', 'motor', 'vehicle', 'bureau', 'to', 'straighten', 'it', 'out', '||period||', '||return||', '||return||', 'kramer:', 'so', '||period||', '||period||', '||period||', "you're", 'the', 'assman', '||period||', '||return||', '||return||', 'frank:', 'it', 'was', 'a', 'million', 'to', 'one', 'shot', '||comma||', 'doc', '||period||', 'million', 'to', 'one', '||period||', '||return||', '||return||', 'estelle:', 'where', 'have', 'you', 'been', '||questionmark||', '||exclammark||', '||exclammark||', 'you', 'were', 'supposed', 'to', 'fix', 'the', 'stove', '||exclammark||', "i've", 'been', 'waiting', 'for', 'hours', '||exclammark||', '||return||', '||return||', 'frank:', 'i', 'fell', 'on', 'some', 'fusilli', '||period||', '||return||', '||return||', 'estelle:', 'fusilli', '||questionmark||', '||return||', '||return||', 'frank:', 'you', 'know', '||comma||', 'the', 'corkscrew', 'pasta', '||period||', 'it', 'was', 'a', 'fusilli', 'jerry', '||period||', 'it', 'got', 'stuck', 'in', 'me', '||period||', 'had', 'to', 'go', 'to', 'the', 'proctologist', '||period||', '||return||', '||return||', 'estelle:', 'the', 'proctologist', '||questionmark||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'frank:', 'yeah', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'i', 'was', 'so', 'worried', '||period||', '||leftparen||', 'grabs', 'a', 'couple', 'of', 'tissues', 'from', 'the', 'box', '||rightparen||', '||return||', '||return||', 'george:', 'ma', '||comma||', "don't", 'cry', '||exclammark||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'i', "can't", 'help', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'ma', '||comma||', 'your', 'eyes', '||exclammark||', '||return||', '||return||', 'estelle:', 'oh', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'time', 'does', 'your', 'flight', 'get', 'in', '||questionmark||', 'six', '||questionmark||', 'all', 'right', '||comma||', 'that', 'gives', 'us', 'six', 'hours', '||period||', 'then', "i'll", 'meet', 'you', 'at', 'the', "diplomat's", 'club', '||period||', "i'll", 'be', 'the', 'one', 'without', 'the', 'big', 'red', 'sash', '||period||', 'okay', '||comma||', 'see', 'you', 'tonight', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', 'is', 'that', 'the', 'supermodel', '||questionmark||', '||return||', '||return||', 'jerry:', 'yep', '||comma||', "she's", 'not', 'gonna', 'be', 'back', 'for', 'a', 'month', '||comma||', 'but', 'i', 'got', 'six', 'hours', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'had', 'a', 'show', 'in', 'ithaca', '||period||', '||return||', '||return||', 'jerry:', 'i', 'do', '||comma||', 'but', "it's", 'three', "o'clock", 'and', 'then', "i'm", 'flying', 'right', 'back', 'and', 'meeting', 'bridget', 'at', 'the', "diplomat's", 'club', 'in', 'the', 'airport', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'guess', 'what', "i'm", 'doing', '||period||', "i'm", 'going', 'to', 'mr', '||period||', "pitt's", '||comma||', 'and', 'i', 'am', 'telling', 'him', 'that', 'i', 'am', 'quitting', '||period||', '||return||', '||return||', 'jerry:', 'so', "that's", 'it', '||questionmark||', 'you', 'know', 'i', 'never', 'even', 'met', 'the', 'guy', '||period||', '||return||', '||return||', 'elaine:', "i've", 'had', 'enough', '||period||', 'i', 'am', "marchin'", 'in', '||period||', '||return||', '||return||', 'jerry:', "you're", "marchin'", 'in', '||period||', '||return||', '||return||', 'elaine:', "i'm", "marchin'", '||period||', '||leftparen||', 'enter', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "elaine's", 'quitting', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", "marchin'", 'in', '||period||', '||return||', '||return||', 'george:', "i've", 'done', 'the', 'march', 'in', '||period||', 'best', 'feeling', 'in', 'the', 'world', '||period||', '||return||', '||return||', 'jerry:', 'how', "'bout", 'the', 'march', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'as', 'good', '||period||', "that's", 'when', 'you', 'realize', 'all', 'the', 'money', "you're", 'losing', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'it', '||period||', 'wish', 'me', 'luck', '||period||', '||return||', '||return||', 'jerry:', 'get', 'a', 'march', "goin'", '||exclammark||', 'march', 'it', '||exclammark||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'i', 'need', 'to', 'borrow', 'your', 'camera', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'wanna', 'put', 'a', 'picture', 'of', 'me', 'and', 'my', 'boss', 'mr', '||period||', 'morgan', 'up', 'at', 'the', 'office', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', "they're", 'reorganizing', 'the', 'staff', '||comma||', 'and', "i'm", 'on', 'thin', 'ice', 'with', 'this', 'guy', 'as', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', "isn't", 'putting', 'this', "guy's", 'picture', 'on', 'your', 'desk', 'a', 'little', 'transparent', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'better', 'be', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||comma||', 'i', 'have', 'something', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'pitt:', 'one', 'second', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||period||', '||period||', '||period||', '||return||', '||return||', 'pitt:', 'elaine', '||comma||', 'you', 'know', 'what', 'i', 'just', 'did', '||questionmark||', 'i', 'just', 'amended', 'my', 'will', 'to', 'include', 'you', 'as', 'a', 'beneficiary', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'pitt:', 'well', '||comma||', 'i', 'think', 'of', 'you', 'as', 'part', 'of', 'my', 'family', '||period||', "you've", 'come', 'to', 'be', 'like', 'a', 'daughter', 'to', 'me', 'and', 'i', 'want', 'to', 'make', 'sure', "you're", 'taken', 'care', 'of', 'after', "i'm", 'gone', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'flattered', '||rightparen||', 'mr', '||period||', 'pitt', '||period||', '||period||', '||period||', '||return||', '||return||', 'pitt:', '||leftparen||', 'sneezes', '||rightparen||', 'elaine', '||comma||', 'i', 'feel', 'a', 'cold', 'coming', 'on', '||period||', 'could', 'you', 'get', 'me', 'a', 'cold', 'pill', 'from', 'the', 'medicine', 'cabinet', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'no', 'no', '||comma||', 'mr', '||period||', 'pitt', '||comma||', 'you', "mustn't", '||period||', 'you', 'have', 'to', 'check', 'with', 'the', 'pharmacy', 'before', 'you', 'combine', 'anything', 'with', 'your', 'heart', 'medicine', '||comma||', '||return||', '||return||', 'pitt:', 'yes', '||comma||', 'yes', '||comma||', "i'll", 'check', 'with', 'the', 'pharmacist', '||period||', '||return||', '||return||', 'elaine:', 'we', "don't", 'want', 'anything', 'to', 'happen', 'to', 'you', 'mr', '||period||', 'pitt', '||period||', 'we', 'want', 'you', 'to', 'live', 'a', 'long', '||comma||', 'long', 'time', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'holding', 'camera', '||rightparen||', 'look', 'at', 'this', '||comma||', 'i', 'only', 'have', 'one', 'picture', 'left', '||period||', '||period||', '||period||', 'how', "'bout", 'a', 'shot', 'of', 'me', 'and', 'mr', '||period||', 'morgan', '||questionmark||', '||return||', '||return||', 'morgan:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'because', "we're", 'a', 'team', '||exclammark||', "c'mon", '||exclammark||', 'would', 'you', 'take', 'this', 'for', 'us', '||comma||', 'dear', '||questionmark||', 'thank', 'you', 'very', 'much', '||period||', 'here', 'we', 'go', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'morgan', '||rightparen||', 'anyone', 'ever', 'tell', 'you', 'you', 'look', 'a', 'lot', 'like', 'sugar', 'ray', 'leonard', '||questionmark||', 'yeah', '||comma||', 'you', 'must', 'get', 'that', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'morgan:', 'i', 'suppose', 'we', 'all', 'look', 'alike', 'to', 'you', '||comma||', 'right', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'a', 'racial', 'thing', '||comma||', 'there', 'really', 'is', 'a', 'resemblance', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'woman:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'pitt:', 'this', 'is', 'the', 'girl', 'i', 'want', 'to', 'put', 'in', 'my', 'will', '||period||', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'man:', 'please', '||comma||', 'rest', 'mr', '||period||', 'pitt', '||period||', '||return||', '||return||', 'woman:', "you're", 'the', 'assistant', '||questionmark||', 'why', "weren't", 'you', 'taking', 'care', 'of', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', 'gave', 'me', 'the', 'morning', 'off', '||comma||', 'i', 'was', 'doing', 'a', 'little', '||period||', '||period||', '||period||', 'shopping', '||period||', 'how', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'man:', 'took', 'a', 'very', 'dangerous', 'combination', 'prescription', 'heart', 'medicine', 'and', 'these', 'other', 'pills', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||comma||', 'you', 'were', "s'posed", 'to', 'talk', 'with', 'the', 'pharmacist', '||period||', '||return||', '||return||', 'pitt:', 'i', 'spoke', 'to', 'someone', 'who', 'worked', 'there', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'gonna', 'go', 'and', 'call', 'that', 'pharmacist', '||period||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'woman:', 'how', 'well', 'do', 'you', 'know', 'her', '||questionmark||', '||return||', '||return||', 'kate:', 'jerry', '||comma||', 'listen', '||comma||', 'just', 'so', 'you', 'know', '||comma||', 'before', 'we', 'take', 'off', "they're", 'gonna', 'tell', 'us', 'what', 'to', 'do', 'in', 'the', 'vent', 'of', 'a', 'crash', '||dash||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'know', '||period||', "i've", 'flown', 'before', '||period||', '||return||', '||return||', 'kate:', 'oh', 'good', '||period||', 'i', 'just', "didn't", 'want', 'you', 'to', 'freak', 'out', '||period||', '||period||', '||period||', 'the', 'chance', 'of', 'a', 'crash', 'is', 'very', 'slim', '||period||', 'do', 'you', 'have', 'to', 'go', 'to', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kate:', '||leftparen||', 'pause', '||rightparen||', 'because', 'even', 'if', 'you', 'have', '||leftparen||', 'jerry', 'gets', 'up', 'to', 'go', '||rightparen||', 'to', 'go', 'a', 'little', "you'd", 'better', 'go', 'now', 'because', 'you', "won't", 'get', 'another', 'chance', 'until', 'way', 'after', 'take', 'off', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'earl:', 'pretty', 'good', '||period||', '||return||', '||return||', 'kramer:', "name's", 'kramer', '||period||', '||return||', '||return||', 'earl:', 'earl', 'hafler', '||comma||', 'nice', 'to', 'meet', 'you', '||period||', "i'm", 'headed', 'to', 'houston', '||comma||', 'where', 'you', 'headed', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', "i'm", 'happy', 'right', 'here', '||period||', "isn't", 'this', 'place', 'amazing', '||questionmark||', 'planes', 'flying', 'in', 'from', 'all', 'corners', 'of', 'the', 'world', '||comma||', 'and', 'they', 'know', 'the', 'minute', "they're", 'arriving', '||period||', '||return||', '||return||', 'earl:', 'ah', 'they', "don't", 'know', 'a', 'darn', 'thing', '||period||', "that's", 'why', 'my', 'flight', 'the', "houston's", 'been', 'delayed', '||period||', "they're", 'all', 'morons', '||period||', 'matter', 'of', 'fact', '||comma||', "i'll", 'bet', 'you', 'that', 'that', 'flight', 'to', 'pittsburgh', 'takes', 'off', 'before', 'my', 'flight', 'to', 'houston', '||period||', '||return||', '||return||', 'kramer:', 'bet', '||questionmark||', 'um', '||comma||', 'not', 'betting', '||period||', '||return||', '||return||', 'earl:', 'friendly', 'wager', '||period||', '||return||', '||return||', 'kramer:', 'i', "haven't", 'made', 'a', 'bet', 'in', 'three', 'years', '||comma||', 'i', '||dash||', '||return||', '||return||', 'earl:', 'ah', "c'mon", '||period||', 'keep', 'things', 'interesting', '||comma||', 'pass', 'the', 'time', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'how', 'much', '||questionmark||', '||return||', '||return||', 'earl:', 'how', "'bout", '200', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'on', '||comma||', 'cowboy', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'man:', 'okay', '||period||', '||return||', '||return||', 'george:', 'nice', 'day', 'today', '||period||', '||return||', '||return||', 'man:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'george', '||period||', 'george', 'costanza', '||comma||', 'you', 'live', 'around', 'here', '||questionmark||', '||return||', '||return||', 'intercom:', 'now', 'arriving', 'at', 'gate', '12', '||period||', '||period||', '||period||', '||return||', '||return||', 'earl:', 'this', 'could', 'be', 'mexico', 'city', '||period||', '||return||', '||return||', 'kramer:', "c'mon", 'seattle', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'earl:', 'come', 'on', '||comma||', 'mexico', 'city', '||exclammark||', '||return||', '||return||', 'kramer:', 'seattle', '||comma||', 'yeah', '||exclammark||', '||return||', '||return||', 'intercom:', '||period||', '||period||', '||period||', 'flight', '42', 'from', 'mexico', 'city', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "c'mon", '||comma||', "let's", 'go', 'again', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'pitt', '||comma||', 'do', 'you', 'need', 'anything', '||questionmark||', '||return||', '||return||', 'pitt:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'you', 'need', 'something', 'to', 'sit', 'up', '||period||', 'why', "don't", 'i', 'get', 'you', 'a', 'pillow', '||questionmark||', '||return||', '||return||', 'pitt:', 'okay', '||period||', '||return||', '||return||', 'kate:', "it's", 'a', 'pretty', 'full', 'house', '||comma||', 'the', 'lighting', "guy's", 'name', 'is', 'lew', '||comma||', "he's", 'got', 'a', 'birthday', 'next', 'week', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'kate:', 'by', 'the', 'way', '||comma||', 'jerry', '||comma||', 'i', "don't", 'want', 'you', 'to', 'freak', 'out', '||comma||', 'but', 'the', 'pilot', 'is', 'going', 'to', 'be', 'in', 'the', 'audience', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kate:', 'remember', 'the', 'plane', 'we', 'took', 'here', '||questionmark||', 'the', 'pilot', 'is', 'gonna', 'be', 'sitting', 'out', 'there', 'watching', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', '||comma||', 'why', 'are', 'you', 'telling', 'me', 'this', '||questionmark||', '||return||', '||return||', 'kate:', 'i', 'just', "didn't", 'want', 'you', 'to', 'freak', 'out', 'when', 'you', 'saw', 'him', '||period||', '||return||', '||return||', 'jerry:', 'why', 'would', 'i', 'freak', 'out', '||questionmark||', '||leftparen||', 'to', 'himself', '||rightparen||', 'pilot', '||period||', '||period||', '||period||', '||return||', '||return||', 'off', 'stage:', 'ladies', 'and', 'gentlemen', '||comma||', 'a', 'big', 'hand', 'for', 'mr', '||period||', 'jerry', 'seinfeld', '||exclammark||', '||leftparen||', 'clapping', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'all', 'right', '||period||', 'good', 'afternoon', 'ithaca', '||period||', 'welcome', '||comma||', 'good', 'to', 'see', 'you', 'here', '||period||', '||period||', '||period||', 'boy', '||comma||', "i'll", 'tell', 'you', '||comma||', "there's", 'an', 'awful', 'lot', 'of', 'those', 'orange', 'cones', 'you', 'have', 'on', 'the', 'throughway', '||period||', '||period||', '||period||', '||leftparen||', 'sees', 'pilot', '||rightparen||', 'on', 'the', 'way', '||period||', '||period||', '||period||', 'up', 'here', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||return||', '||return||', 'kate:', 'it', "didn't", 'go', 'very', 'well', '||comma||', 'did', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it', "didn't", '||period||', 'and', 'you', 'know', 'why', '||questionmark||', 'seeing', 'the', 'pilot', 'in', 'the', 'audience', 'really', 'freaked', 'me', 'out', '||period||', '||return||', '||return||', 'kate:', 'i', 'knew', 'it', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', "hadn't", 'mentioned', 'anything', '||comma||', 'i', 'would', 'have', 'been', 'fine', '||period||', 'i', 'became', 'obsessed', 'with', 'him', '||period||', '||return||', '||return||', 'kate:', 'why', 'did', 'we', 'invite', 'him', '||questionmark||', 'stupid', '||comma||', 'stupid', '||period||', 'when', 'he', 'asked', 'for', 'a', 'ticket', '||comma||', 'i', 'should', 'have', 'said', 'no', '||period||', "i'm", 'gonna', 'go', 'chew', 'him', 'out', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', "doesn't", 'matter', 'now', '||period||', '||return||', '||return||', 'kate:', "don't", 'worry', '||comma||', 'jerry', '||period||', "i'm", 'on', 'top', 'of', 'this', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "you're", 'on', 'top', 'of', 'it', '||comma||', 'and', "i'm", 'on', 'the', 'bottom', '||exclammark||', '||return||', '||return||', 'earl:', 'well', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'looks', 'like', "you're", 'in', 'the', 'hole', '$3200', '||period||', '||period||', '||period||', 'will', 'that', 'be', 'cash', 'or', 'check', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'look', '||comma||', 'one', 'more', 'bet', '||period||', 'double', 'or', 'nothing', '||period||', "c'mon", '||period||', '||return||', '||return||', 'earl:', 'all', 'right', '||comma||', 'but', 'i', 'wanna', 'see', 'some', 'cash', 'on', 'the', 'table', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'let', 'me', 'call', 'my', 'bank', '||period||', 'you', 'stay', 'here', '||period||', '||leftparen||', 'he', 'calls', '||rightparen||', '||return||', '||return||', 'newman:', 'hello', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", '||comma||', 'uh', '||comma||', 'me', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', "what's", 'up', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'listen', '||period||', 'i', 'need', 'some', 'cash', '||period||', '||return||', '||return||', 'newman:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'need', 'it', '||comma||', "that's", 'all', '||period||', '||return||', '||return||', 'newman:', 'oh', 'no', '||period||', "don't", 'tell', 'me', '||period||', "you're", 'gambling', 'again', '||comma||', "aren't", 'you', '||questionmark||', 'oh', 'you', 'weak', '||comma||', 'weak', 'man', '||period||', 'where', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'at', 'the', 'airport', '||period||', '||return||', '||return||', 'newman:', 'the', 'airport', '||questionmark||', '||return||', '||return||', 'kramer:', "we've", 'been', 'betting', 'on', 'arrivals', 'and', 'departures', '||period||', '||leftparen||', 'newman', 'rolls', 'eyes', '||rightparen||', 'but', "i'm", 'down', '$3200', '||comma||', 'so', "you've", 'gotta', 'get', 'me', 'some', 'cash', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'have', 'that', 'kinda', 'dough', '||period||', '||return||', '||return||', 'kramer:', 'sure', 'you', 'do', '||period||', '||return||', '||return||', 'newman:', 'oh', 'no', '||comma||', 'no', '||comma||', 'not', 'the', 'bag', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'help', 'me', 'man', '||comma||', "i'm", 'desperate', '||exclammark||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'intercom:', 'sorry', 'for', 'the', 'delay', '||comma||', 'folks', '||comma||', 'there', 'is', 'a', 'slight', 'complication', 'that', "we're", 'taking', 'care', 'of', '||comma||', 'and', 'then', "we'll", 'be', 'on', 'our', 'way', 'to', 'la', 'guardia', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'katie', '||rightparen||', 'what', 'is', 'the', 'complication', '||questionmark||', '||return||', '||return||', 'flight', 'attendant:', 'mr', '||period||', 'seinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||questionmark||', '||return||', '||return||', 'flight', 'attendant:', "i'm", 'sorry', '||comma||', 'but', 'the', 'pilot', 'has', 'asked', 'that', 'you', 'leave', 'this', 'plane', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'flight', 'attendant:', 'apparently', '||comma||', 'he', 'has', 'some', 'sort', 'of', 'problem', 'with', 'you', '||period||', '||return||', '||return||', 'kate:', "i'm", 'not', 'surprised', '||period||', 'i', 'really', 'let', 'him', 'have', 'it', '||comma||', 'jerry', '||period||', 'he', 'has', 'no', 'business', 'being', 'in', 'your', 'audience', 'if', 'you', "didn't", 'want', 'him', 'there', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'care', '||period||', '||return||', '||return||', 'flight', 'attendant:', 'well', '||comma||', 'now', 'the', 'pilot', "doesn't", 'want', 'you', 'on', 'his', 'plane', '||period||', '||return||', '||return||', 'jerry:', 'he', "can't", 'just', 'throw', 'me', 'off', 'the', 'plane', '||exclammark||', '||return||', '||return||', 'flight', 'attendant:', 'yes', 'he', 'can', '||comma||', 'if', 'he', 'has', 'cause', 'to', 'believe', 'a', 'passenger', 'will', 'be', 'a', 'disturbance', '||period||', '||return||', '||return||', 'jerry:', 'but', "i'm", 'not', 'a', 'disturbance', '||exclammark||', '||return||', '||return||', 'flight', 'attendant:', 'well', '||comma||', 'apparently', 'you', 'are', 'disturbing', 'him', '||comma||', 'sir', '||period||', '||return||', '||return||', 'jerry:', 'but', 'someone', 'is', 'waiting', 'for', 'me', '||exclammark||', '||return||', '||return||', 'kate:', 'jerry', '||comma||', 'i', "don't", 'want', 'you', 'to', 'freak', 'out', '||period||', '||return||', '||return||', 'jerry:', "i'm", "freakin'", 'out', '||exclammark||', 'i', 'am', "freakin'", 'out', '||exclammark||', '||return||', '||return||', 'kate:', "there's", 'a', 'flight', 'leaving', 'at', 'eight', '||comma||', 'and', 'another', 'one', 'at', 'eight', '||dash||', 'thirty', '||comma||', 'which', 'one', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'jerry:', 'which', 'one', 'do', 'you', 'think', 'i', 'want', '||questionmark||', '||return||', '||return||', 'kate:', 'the', 'eight', 'will', 'get', 'you', 'in', 'a', 'little', 'earlier', '||period||', '||return||', '||return||', 'jerry:', 'then', "we'll", 'make', 'it', 'the', 'eight', '||period||', '||return||', '||return||', 'kate:', "i'll", 'book', 'a', 'hotel', '||comma||', 'do', 'you', 'want', 'a', 'standard', 'room', 'or', 'mini', 'suite', '||questionmark||', ']', '||return||', '||return||', 'jerry:', 'hotel', '||questionmark||', '||return||', '||return||', 'kate:', 'yeah', '||comma||', "it's", 'eight', 'in', 'the', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'have', 'to', 'get', 'home', 'tonight', '||period||', "bridget's", 'gonna', 'be', 'waiting', 'for', 'me', 'at', 'the', "diplomat's", 'club', '||period||', 'rent', 'a', 'car', '||period||', '||return||', '||return||', 'kate:', 'mid', '||dash||', 'size', '||comma||', 'luxury', '||comma||', 'or', 'sports', 'model', '||comma||', "what's", 'your', 'preference', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'a', 'preference', '||comma||', 'okay', '||exclammark||', 'just', 'make', 'a', 'decision', 'yourself', '||exclammark||', 'stop', 'bothering', 'me', 'with', 'every', 'minor', 'little', 'detail', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'kate:', 'okay', '||comma||', "you're", 'a', 'big', 'celebrity', '||period||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'george:', 'yo', '||period||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'jerry', '||comma||', 'how', 'was', 'ithaca', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'still', 'here', '||period||', 'listen', '||comma||', 'you', 'gotta', 'go', 'down', 'to', 'the', "diplomat's", 'club', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'jerry', '||comma||', 'what', 'was', 'the', 'name', 'of', 'the', 'exterminator', 'who', 'fumigated', 'your', 'apartment', 'when', 'you', 'had', 'fleas', '||questionmark||', '||return||', '||return||', 'jerry:', 'carl', '||comma||', 'i', 'think', '||period||', '||return||', '||return||', 'george:', 'carl', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'he', 'was', 'a', 'nice', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'he', 'was', 'nice', '||period||', '||return||', '||return||', 'george:', 'what', 'company', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'defent', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'you', 'know', 'we', 'spoke', 'for', 'a', 'little', 'bit', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'need', 'an', 'exterminator', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'really', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "don't", 'tell', 'me', '||period||', "'cause", "he's", 'black', '||questionmark||', '||return||', '||return||', 'george:', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'this', 'is', 'jerry', 'seinfeld', '||period||', 'is', 'elaine', 'there', '||questionmark||', '||return||', '||return||', 'woman:', 'hold', 'on', '||period||', '||period||', '||period||', 'elaine', '||comma||', "there's", 'a', 'jerry', 'seinfeld', 'on', 'the', 'phone', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'i', 'need', 'you', 'to', 'do', 'me', 'a', 'big', 'favor', '||period||', 'i', 'need', 'you', 'to', 'go', 'down', 'to', 'the', "diplomat's", 'club', 'and', 'meet', 'bridget', 'for', 'me', '||period||', "i'm", 'going', 'to', 'be', 'late', '||period||', '||return||', '||return||', 'elaine:', "that's", 'at', 'the', 'airport', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'i', "don't", 'want', 'bridget', 'to', 'think', 'i', 'stood', 'her', 'up', '||period||', "i'll", 'never', 'get', 'another', 'date', 'with', 'her', '||period||', "she'll", 'freak', 'out', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'you', 'sound', 'a', 'little', 'freaked', 'out', 'yourself', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'a', 'little', 'freaked', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'calm', 'down', '||comma||', "i'll", 'take', 'care', 'of', 'it', '||period||', '||leftparen||', 'ms', '||period||', 'walker', 'looks', 'suspicious', 'of', 'elaine', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'but', 'you', 'have', 'to', 'go', 'now', '||period||', '||return||', '||return||', 'elaine:', 'i', 'said', "i'll", 'take', 'care', 'of', 'it', '||exclammark||', '||return||', '||return||', 'newman:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'newman:', 'okay', '||comma||', 'here', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', 'good', '||period||', '||leftparen||', 'to', 'earl', '||rightparen||', "here's", 'my', 'collateral', '||period||', '||return||', '||return||', 'earl:', 'so', "it's", 'a', 'mailbag', '||comma||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'so', 'what', '||questionmark||', 'do', 'you', 'know', 'whose', 'mailbag', 'that', 'is', '||questionmark||', '||return||', '||return||', 'earl:', '||leftparen||', 'reading', '||rightparen||', 'david', 'berkowitz', '||period||', '||return||', '||return||', 'newman:', 'son', 'of', 'sam', '||period||', 'the', 'worst', 'mass', 'murderer', 'the', 'post', 'office', 'ever', 'produced', '||period||', '||return||', '||return||', 'earl:', 'where', 'did', 'you', 'get', 'this', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'took', 'over', 'his', 'route', '||period||', 'and', 'boy', '||comma||', 'were', 'there', 'a', 'lot', 'of', 'dogs', 'on', 'that', 'route', '||period||', '||return||', '||return||', 'earl:', 'any', 'of', "'em", 'talk', 'to', 'you', '||questionmark||', '||return||', '||return||', 'newman:', 'just', 'to', 'tell', 'me', 'to', 'keep', 'off', 'the', 'snacks', '||exclammark||', '||return||', '||return||', 'earl:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'your', "buddy's", 'a', 'helluva', 'guy', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "don't", 'i', 'know', 'it', '||period||', '||return||', '||return||', 'earl:', 'okay', '||comma||', 'cosmo', '||comma||', "we're", 'back', 'in', 'business', '||period||', "let's", 'check', 'out', 'the', 'board', '||period||', 'now', '||comma||', 'who', 'do', 'you', 'like', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'how', "'bout", 'ithaca', 'vs', '||period||', 'boston', '||questionmark||', '||return||', '||return||', 'earl:', 'all', 'right', '||comma||', "i'll", 'give', 'you', 'a', "sportin'", 'chance', '||period||', "i'll", 'take', 'ithaca', '||period||', '||return||', '||return||', 'kramer:', 'double', 'or', "nothin'", '||period||', '||return||', '||return||', 'earl:', 'double', 'or', "nothin'", '||period||', '||return||', '||return||', 'newman:', 'i', 'hope', 'you', 'know', 'what', "you're", 'doing', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'gives', 'newman', 'a', 'look', 'of', 'lack', 'of', 'confidence', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'wakes', 'up', '||rightparen||', 'where', 'are', 'we', '||questionmark||', '||return||', '||return||', 'kate:', "i'm", 'not', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'even', 'a', 'road', '||questionmark||', '||return||', '||return||', 'kate:', 'oh', 'we', 'lost', 'the', 'road', 'a', 'half', 'hour', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'why', "didn't", 'you', 'wake', 'me', 'up', '||questionmark||', '||return||', '||return||', 'kate:', 'you', 'told', 'me', 'not', 'to', 'bother', 'you', 'with', 'minor', 'details', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'road', 'is', 'a', 'major', 'detail', '||exclammark||', '||return||', '||return||', 'kate:', 'okay', '||comma||', 'now', 'i', 'know', '||period||', 'should', 'i', 'keep', 'going', 'or', 'turn', 'around', '||comma||', 'do', 'you', 'have', 'a', 'preference', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'ahead', '||rightparen||', 'look', 'out', '||exclammark||', '||return||', '||return||', 'george:', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'carl:', "i'm", 'the', 'exterminator', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yes', 'of', 'course', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'carl:', 'why', "didn't", 'you', 'want', 'me', 'to', 'bring', 'my', 'equipment', 'or', 'wear', 'my', 'uniform', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'well', '||comma||', 'if', 'the', 'other', 'people', 'in', 'the', 'office', 'saw', 'that', 'i', 'called', 'an', 'exterminator', '||comma||', 'they', 'would', 'just', 'panic', '||period||', 'besides', '||comma||', 'this', 'is', 'sort', 'of', 'a', 'friendly', 'visit', '||period||', 'carl', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'carl:', 'do', 'i', 'know', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'sure', '||comma||', 'we', 'met', 'at', 'jerry', "seinfeld's", 'apartment', '||period||', 'when', 'you', 'fumigated', 'for', 'fleas', 'over', 'there', '||period||', '||return||', '||return||', 'carl:', 'seinfeld', '||period||', '||period||', '||period||', 'oh', 'yeah', '||comma||', 'funny', 'white', 'guy', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', 'yes', '||comma||', 'i', 'suppose', 'he', 'is', 'white', '||period||', 'you', 'know', '||comma||', 'i', 'never', 'really', 'thought', 'about', 'it', '||period||', 'i', "don't", 'see', 'people', 'in', 'terms', 'of', 'color', '||period||', 'you', 'know', '||comma||', "there's", 'someone', "i'd", 'like', 'you', 'to', 'meet', '||period||', 'hand', 'on', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'phone', '||rightparen||', 'is', 'mr', '||period||', 'morgan', 'in', '||questionmark||', '||return||', '||return||', 'phone:', 'mr', '||period||', 'morgan', 'left', 'for', 'dinner', '||period||', '||return||', '||return||', 'george:', 'he', 'left', '||period||', '||period||', '||period||', 'huh', '||period||', '||period||', '||period||', 'carl', '||comma||', 'you', 'hungry', '||questionmark||', '||return||', '||return||', 'tv:', "here's", 'a', 'new', 'twist', 'on', 'car', 'pooling', 'early', 'this', 'morning', '||comma||', 'a', 'lost', 'manhattanite', 'drove', 'through', 'a', 'residential', 'backyard', 'and', 'wound', 'up', 'in', 'a', 'swimming', 'pool', 'near', 'ithaca', '||comma||', 'new', 'york', '||period||', 'comedian', 'jerry', 'seinfeld', '||comma||', 'a', 'passenger', '||comma||', 'seemed', 'a', 'little', 'freaked', 'out', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||exclammark||', 'no', 'more', 'questions', '||exclammark||', 'i', "don't", 'care', '||exclammark||', '||return||', '||return||', 'pitt:', "that's", 'him', '||exclammark||', "that's", 'the', 'man', 'who', 'gave', 'me', 'the', 'pills', 'in', 'the', 'drug', 'store', '||exclammark||', "he's", 'no', 'pharmacist', '||period||', '||return||', '||return||', 'womanewman:', 'jerry', 'seinfeld', '||period||', '||period||', '||period||', 'i', 'know', 'that', 'name', '||period||', 'he', 'called', 'here', 'earlier', 'for', 'elaine', '||period||', '||leftparen||', 'she', 'looks', 'at', 'mr', '||period||', 'pitt', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'carl', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'order', 'anything', 'you', 'want', '||comma||', "it's", 'all', 'on', 'me', '||period||', 'just', 'do', 'me', 'a', 'tiny', 'favor', 'pretend', "we're", 'old', 'friends', '||period||', 'oh', 'my', 'god', '||exclammark||', 'mr', '||period||', 'morgan', '||exclammark||', 'what', 'a', 'coincidence', '||comma||', "it's", 'mr', '||period||', 'morgan', '||period||', 'mr', '||period||', 'morgan', '||comma||', 'i', 'want', 'you', 'to', 'meet', 'a', 'dear', 'old', 'friend', 'of', 'mine', '||comma||', 'carl', '||period||', '||return||', '||return||', 'carl:', "i'm", 'the', 'exterminator', '||period||', '||leftparen||', 'morgan', 'confused', '||rightparen||', '||return||', '||return||', 'george:', "that's", '||period||', '||period||', '||period||', 'what', 'we', 'used', 'to', 'call', 'him', 'in', 'high', 'school', '||comma||', 'the', 'exterminator', '||period||', "he's", 'a', 'linebacker', '||period||', 'oh', '||comma||', 'did', 'we', 'have', 'some', 'wild', 'times', '||period||', '||return||', '||return||', 'earl:', 'well', '||comma||', 'that', 'newman', 'was', 'your', 'good', 'luck', 'charm', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'he', 'was', '||period||', '||return||', '||return||', 'earl:', 'i', 'should', 'have', 'quitted', 'at', 'double', 'or', "nothin'", '||period||', 'travelers', 'checks', 'acceptable', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'accept', '||period||', '||return||', '||return||', 'newmanewman:', '||leftparen||', 'talking', 'to', 'another', 'man', '||rightparen||', '||period||', '||period||', '||period||', 'yeah', 'he', 'worked', 'in', 'the', 'cubicle', 'right', 'next', 'to', 'me', '||period||', 'we', 'once', 'double', 'dated', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'a', 'pleasure', "doin'", 'business', 'with', 'a', 'gentleman', 'like', 'yourself', '||period||', '||leftparen||', 'elaine', 'enters', '||rightparen||', '||return||', '||return||', 'elaine:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'hi', 'elaine', '||period||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', 'asked', 'me', 'to', 'meet', 'his', 'girlfriend', 'here', '||period||', 'did', 'you', 'here', 'about', 'his', 'plane', 'in', 'ithaca', '||questionmark||', '||return||', '||return||', 'earl:', 'what', 'about', 'the', 'plane', 'in', 'ithaca', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'our', 'stupid', 'friend', 'freaked', 'out', 'the', 'pilot', '||period||', 'single', 'handedly', 'delayed', 'the', 'plane', 'a', 'whole', 'hour', '||period||', 'can', 'you', 'believe', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'boy', '||period||', '||period||', '||period||', '||return||', '||return||', 'earl:', 'your', 'friend', 'caused', 'the', 'delay', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||period||', '||return||', '||return||', 'earl:', "you're", 'a', 'cheat', '||exclammark||', 'nobody', 'hustles', 'earl', 'hafler', '||period||', '||return||', '||return||', 'kramer:', "c'mon", '||exclammark||', '||return||', '||return||', 'earl:', 'see', 'you', 'around', '||comma||', 'cosmo', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'poison', 'you', '||questionmark||', 'jerry', 'seinfeld', 'tried', 'to', 'poison', 'you', '||questionmark||', 'wha', '||questionmark||', 'mr', '||period||', 'pitt', '||comma||', 'what', 'are', 'you', '||comma||', 'delirious', '||questionmark||', "he's", 'never', 'even', 'met', 'you', '||exclammark||', '||return||', '||return||', 'pitt:', "you're", 'fired', '||comma||', 'elaine', '||period||', 'goodbye', '||period||', '||return||', '||return||', 'elaine:', 'goodbye', '||questionmark||', '||leftparen||', 'elaine', 'thinks', 'of', 'memories', 'with', 'mr', '||period||', 'pitt', '||rightparen||', '||return||', '||return||', 'jerry:', 'bridget', '||exclammark||', '||return||', '||return||', 'bridget:', 'jerry', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'so', 'sorry', '||period||', 'i', 'got', 'stuck', 'out', 'of', 'town', '||period||', 'i', 'missed', 'our', 'whole', 'time', 'together', '||period||', '||return||', '||return||', 'bridget:', 'well', '||comma||', 'my', 'plane', "doesn't", 'leave', 'for', 'another', 'half', 'hour', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||leftparen||', 'they', 'start', 'to', 'make', 'out', '||comma||', 'jerry', 'sees', 'the', 'pilot', 'on', 'the', 'plane', '||rightparen||', 'oh', 'my', 'god', '||comma||', "that's", 'him', '||exclammark||', "that's", 'the', 'pilot', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'love', 'this', 'place', '||period||', 'you', 'know', '||comma||', 'carl', 'and', 'i', 'come', 'here', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'morganewman:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'carl:', 'yeah', '||comma||', 'i', 'come', 'here', 'all', 'the', 'time', '||period||', 'you', "wouldn't", 'believe', 'the', 'rat', 'problems', 'in', 'the', 'kitchen', '||period||', '||return||', '||return||', 'morganewman:', '||leftparen||', 'george', 'spits', 'out', 'food', '||rightparen||', 'i', 'thought', 'so', '||period||', 'you', 'really', 'are', 'an', 'exterminator', '||period||', 'this', 'time', '||comma||', 'george', '||comma||', "you've", 'sunk', 'to', 'a', 'new', 'low', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'check', '||comma||', 'please', '||period||', '||return||', '||return||', 'waiter:', 'hey', '||comma||', 'sugar', 'ray', 'leonard', 'can', 'eat', 'here', 'on', 'the', 'house', '||period||', '||return||', '||return||', 'george:', 'mr', '||period||', 'morgan', '||exclammark||', 'did', 'you', 'hear', 'that', '||questionmark||', 'mr', '||period||', 'morgan', '||exclammark||', '||return||', '||return||', 'george:', 'take', 'toilet', 'paper', 'for', 'example', '||period||', 'do', 'you', 'realize', 'that', 'toilet', 'paper', 'has', 'not', 'changed', 'in', 'my', 'lifetime', '||questionmark||', "it's", 'just', 'paper', 'on', 'a', 'cardboard', 'roll', '||comma||', "that's", 'it', '||period||', 'and', 'in', 'ten', 'thousand', 'years', '||comma||', 'it', 'will', 'still', 'be', 'exactly', 'the', 'same', 'because', 'really', '||comma||', 'what', 'else', 'can', 'they', 'do', '||questionmark||', '||return||', '||return||', 'siena:', "that's", 'true', '||period||', 'there', 'really', 'has', 'been', 'no', 'development', 'in', 'toilet', 'paper', '||period||', '||return||', '||return||', 'george:', 'and', 'everything', 'else', 'has', 'changed', '||period||', 'but', 'toilet', 'paper', 'is', 'exactly', 'the', 'same', '||comma||', 'and', 'will', 'be', 'so', 'until', "we're", 'dead', '||period||', '||return||', '||return||', 'siena:', 'yeah', '||comma||', "you're", 'right', 'george', '||period||', 'what', 'else', 'can', 'they', 'do', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'just', 'paper', 'on', 'a', 'roll', '||comma||', "that's", 'it', '||period||', 'and', "that's", 'all', 'it', 'will', 'ever', 'be', '||period||', '||return||', '||return||', 'siena:', 'wow', '||period||', '||return||', '||return||', 'george:', 'you', 'find', 'this', 'interesting', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'siena:', 'yes', '||period||', 'yes', '||comma||', 'i', 'do', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'busboy', '||rightparen||', 'oh', '||comma||', 'thanks', 'very', 'much', '||comma||', 'the', 'soup', 'was', 'really', 'good', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'telling', 'him', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'the', 'busboy', '||comma||', 'you', 'think', 'he', 'cares', 'about', 'the', 'soup', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'why', '||questionmark||', "wouldn't", 'he', 'want', 'the', 'soup', 'to', 'be', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "it's", 'all', 'this', 'guy', 'can', 'do', 'to', 'keep', 'from', 'killing', 'himself', '||period||', 'you', 'think', "he's", 'back', 'there', '||comma||', 'talking', 'to', 'the', 'chef', '||comma||', 'going', '||comma||', '||quotemark||', 'hey', '||comma||', 'they', 'like', 'the', 'soup', '||exclammark||', 'keep', 'it', 'up', '||exclammark||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "isn't", 'that', 'alec', 'berg', '||questionmark||', '||return||', '||return||', 'jerry:', 'yep', '||comma||', 'alec', 'berg', '||period||', "he's", 'got', 'a', 'good', "'john", "houseman'", 'name', '||period||', 'alec', 'beeerg', '||period||', 'mr', '||period||', 'beeerg', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'stand', 'him', '||comma||', 'he', 'is', 'so', 'pretentious', '||period||', '||return||', '||return||', 'jerry:', 'john', 'houseman', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'alec', 'berg', '||period||', '||return||', '||return||', 'alec:', '||leftparen||', 'approaching', '||rightparen||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'alec:', 'hi', '||comma||', 'how', 'are', 'you', '||questionmark||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'alec', '||period||', '||return||', '||return||', 'alec:', 'did', 'you', 'hear', 'about', 'gary', 'fogel', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'alec:', 'you', 'gonna', 'go', 'to', 'the', 'funeral', 'on', 'friday', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'hey', 'did', 'i', 'see', 'you', 'on', 'tv', 'at', 'the', 'ranger', 'game', '||questionmark||', 'were', 'those', 'your', 'seats', 'right', 'behind', 'the', 'glass', '||questionmark||', '||return||', '||return||', 'alec:', 'those', 'are', 'them', '||comma||', 'yeah', '||period||', 'season', 'tickets', '||period||', 'uh', '||comma||', 'you', 'know', '||comma||', 'unfortunately', 'i', "can't", 'go', 'tonight', '||comma||', 'so', "they're", 'available', 'if', "you'd", 'like', 'to', 'use', 'them', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'd", 'love', 'to', '||comma||', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'alec:', 'absolutely', '||comma||', 'you', 'just', 'call', 'my', 'secretary', '||comma||', "she'll", 'arrange', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'gee', 'thanks', '||exclammark||', 'thanks', 'a', 'lot', '||exclammark||', '||return||', '||return||', 'alec:', "it's", 'my', 'pleasure', '||period||', 'be', 'good', '||period||', '||leftparen||', 'walking', 'away', '||comma||', 'he', 'stops', 'abruptly', '||rightparen||', 'you', 'know', '||comma||', 'i', 'actually', 'might', 'not', 'use', 'them', 'on', 'friday', 'either', 'so', "i'll", 'let', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'thanks', 'again', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'jerry:', 'really', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'about', 'these', 'nitwits', 'that', 'get', 'on', 'a', 'plane', 'with', 'nothing', 'to', 'read', '||questionmark||', 'you', 'know', 'who', 'these', 'people', 'are', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'these', 'are', 'the', 'people', 'that', 'want', 'to', 'talk', 'to', 'you', '||period||', 'they', 'got', 'nothing', 'else', 'to', 'do', '||comma||', 'why', 'not', 'disturb', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'will', 'never', 'understand', 'people', '||period||', '||return||', '||return||', 'jerry:', "they're", 'the', 'worst', '||period||', '||return||', '||return||', 'george:', "something's", 'up', '||comma||', "there's", 'something', 'in', 'the', 'air', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'is', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'think', 'this', 'is', 'it', '||period||', '||return||', '||return||', 'elaine:', "what's", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'saw', 'siena', 'again', '||period||', '||return||', '||return||', 'elaine:', 'siena', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'dating', 'a', 'crayon', '||period||', '||return||', '||return||', 'george:', 'we', 'discussed', 'toilet', 'paper', '||period||', '||return||', '||return||', 'jerry:', 'toilet', 'paper', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'told', 'her', 'how', 'toilet', 'paper', "hasn't", 'changed', 'in', 'my', 'lifetime', '||comma||', 'and', 'probably', "wouldn't", 'change', 'in', 'the', 'next', 'fifty', 'thousand', 'years', 'and', 'she', 'was', 'fascinated', '||comma||', 'fascinated', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'toilet', "paper's", 'changed', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "it's", 'softer', '||period||', '||return||', '||return||', 'elaine:', 'softer', '||period||', '||return||', '||return||', 'jerry:', 'more', 'sheets', 'per', 'roll', '||return||', '||return||', 'elaine:', 'sheets', '||period||', '||return||', '||return||', 'jerry:', 'comes', 'in', 'a', 'wide', 'variety', 'of', 'colors', '||period||', '||return||', '||return||', 'elaine:', 'colors', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'ok', '||comma||', 'fine', '||exclammark||', "it's", 'changed', '||comma||', "it's", 'not', 'really', 'the', 'point', '||period||', 'anyway', '||comma||', "i'm", 'thinking', 'of', 'making', 'a', 'big', 'move', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'might', 'tell', 'her', 'that', 'i', 'love', 'her', '||period||', 'i', 'came', 'this', 'close', 'last', 'night', '||comma||', 'then', 'i', 'just', 'chickened', 'out', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'a', 'big', 'move', '||comma||', 'georgie', 'boy', '||period||', 'are', 'you', 'confident', 'in', 'the', "'i", 'love', "you'", 'return', '||questionmark||', '||return||', '||return||', 'george:', 'fifty', '||dash||', 'fifty', '||period||', '||return||', '||return||', 'jerry:', 'cause', 'if', 'you', "don't", 'get', 'that', 'return', '||comma||', "that's", 'a', 'pretty', 'big', 'matzoh', 'ball', 'hanging', 'out', 'there', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', "i've", 'just', 'got', 'to', 'say', 'it', 'once', '||comma||', 'everybody', 'else', 'gets', 'to', 'say', 'it', '||comma||', 'why', "can't", 'i', 'say', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||comma||', 'you', 'never', 'said', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'once', '||comma||', 'to', 'a', 'dog', '||period||', 'he', 'licked', 'himself', 'and', 'left', 'the', 'room', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', 'it', "wasn't", 'a', 'total', 'loss', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'forgot', 'to', 'tell', 'you', '||exclammark||', 'i', 'got', 'tickets', 'to', 'the', 'rangers', '||dash||', 'devils', 'playoff', 'game', 'tonight', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'there', '||comma||', 'monongahela', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'you', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'eh', 'eh', 'eh', '||comma||', "can't", 'do', 'it', '||comma||', "can't", 'do', 'it', '||comma||', 'sorry', '||comma||', 'i', 'got', 'a', 'date', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'so', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', 'no', 'no', '||comma||', 'if', 'you', 'must', 'know', '||comma||', 'i', 'would', 'rather', 'be', 'with', 'her', 'than', 'go', 'to', 'the', 'game', '||period||', '||return||', '||return||', 'kramer:', 'she', 'must', 'be', 'a', 'very', 'special', 'lady', '||comma||', 'huh', 'george', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'do', 'i', 'do', 'with', 'the', 'extra', 'ticket', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'hey', '||comma||', 'can', 'i', 'bring', 'david', 'puddy', '||questionmark||', "he's", 'a', 'big', "devils'", 'fan', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'fine', 'with', 'me', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'by', 'the', 'way', '||comma||', 'if', 'anybody', 'wants', 'an', 'inside', 'tour', 'of', 'the', 'zoo', '||comma||', 'siena', 'works', 'there', 'as', 'a', 'trainer', '||period||', '||return||', '||return||', 'kramer:', 'so', 'she', 'works', 'at', 'the', 'zoo', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'like', 'diane', 'fosse', '||period||', 'you', 'know', "she's", 'the', 'only', 'person', "that's", 'ever', 'been', 'accepted', 'into', 'gorilla', 'society', '||period||', 'and', 'you', 'know', '||comma||', 'once', 'those', 'gorillas', 'accept', 'you', '||comma||', 'you', 'got', 'it', 'made', 'in', 'the', 'shade', '||period||', '||return||', '||return||', 'elaine:', 'so', 'how', 'long', 'have', 'you', 'been', 'a', "devils'", 'fan', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'off', 'camera', '||rightparen||', 'since', 'i', 'was', 'a', 'kid', '||comma||', "i'm", 'from', 'jersey', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'well', '||comma||', "we're", 'gonna', 'kick', 'your', 'butts', 'tonight', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'no', 'way', '||comma||', 'man', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'puddy:', "we're", 'primed', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'you', 'almost', 'ready', '||questionmark||', 'cause', 'jerry', 'and', 'kramer', 'are', 'gonna', 'be', 'here', 'any', 'second', '||period||', '||return||', '||return||', 'elaine:', 'what', 'the', '||dash||', '||dash||', '||return||', '||return||', 'puddy:', 'so', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'puddy:', 'i', 'painted', 'my', 'face', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'in', 'disbelief', '||rightparen||', 'you', 'painted', 'your', 'face', '||questionmark||', '||return||', '||return||', 'puddy:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'puddy:', 'you', 'know', '||comma||', 'support', 'the', 'team', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', "can't", 'walk', 'around', 'like', 'that', '||period||', '||return||', '||return||', 'puddy:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "it's", 'insane', '||questionmark||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'you', 'gotta', 'let', 'them', 'know', "you're", 'out', 'there', '||comma||', 'this', 'is', 'the', 'playoffs', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'dave', '||comma||', 'um', '||comma||', 'painted', 'his', 'face', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "that's", 'cool', '||period||', 'well', '||comma||', 'you', 'gotta', 'support', 'your', 'team', '||period||', '||return||', '||return||', 'puddy:', 'ok', '||comma||', 'ready', 'to', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'startlingly', 'loud', '||rightparen||', "let's", 'get', 'it', 'on', '||exclammark||', '||exclammark||', '||exclammark||', 'alright', '||exclammark||', '||exclammark||', 'go', 'devils', '||exclammark||', '||exclammark||', 'go', 'devils', '||exclammark||', '||exclammark||', "let's", 'go', 'devils', '||exclammark||', '||exclammark||', '||return||', '||return||', 'puddy:', "you're", 'dead', '||comma||', 'messier', '||exclammark||', "we're", 'gonna', 'get', 'you', '||comma||', 'messier', '||exclammark||', '||return||', '||return||', 'fan', '#1:', 'will', 'you', 'sit', 'down', '||questionmark||', '||return||', '||return||', 'puddy:', 'hey', 'man', '||comma||', "i'm", 'just', 'trying', 'to', 'support', 'the', 'team', '||period||', '||return||', '||return||', 'elaine:', 'will', 'you', 'sit', 'down', '||questionmark||', "you're", 'disturbing', 'everybody', '||period||', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'puddy:', 'oh', 'yeah', '||comma||', 'because', "you're", 'a', 'ranger', 'fan', 'and', 'you', 'know', "i'm", 'messing', 'with', 'their', 'heads', '||period||', '||return||', '||return||', 'puddy:', 'go', 'devils', '||exclammark||', '||exclammark||', '||return||', '||return||', 'radio', 'announcer:', 'devils', 'goal', '||exclammark||', 'stephan', 'richer', 'scores', 'from', 'just', 'inside', 'the', 'blue', 'line', '||exclammark||', 'and', 'the', 'devils', 'take', '||dash||', '||dash||', '||leftparen||', 'george', 'turns', 'down', 'the', 'volume', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'could', 'have', 'actually', 'gone', 'to', 'that', '||period||', '||return||', '||return||', 'siena:', 'so', 'why', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "didn't", 'want', 'to', 'break', 'our', 'date', '||period||', '||return||', '||return||', 'siena:', 'oh', '||comma||', 'well', '||period||', '||return||', '||return||', 'george:', 'because', 'i', '||period||', '||period||', '||period||', 'i', 'love', 'you', '||period||', '||return||', '||return||', 'siena:', 'you', 'know', '||comma||', "i'm", 'hungry', '||period||', "let's", 'get', 'something', 'to', 'eat', '||period||', '||return||', '||return||', 'puddy:', 'ha', 'ha', '||exclammark||', 'we', 'took', 'it', 'to', 'you', '||exclammark||', 'you', "couldn't", 'get', 'it', 'out', 'of', 'your', 'zone', 'all', 'night', '||period||', 'we', 'were', 'aggressive', '||comma||', 'we', "didn't", 'let', 'you', 'penetrate', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "that's", 'enough', 'out', 'of', 'you', '||comma||', "there's", 'still', 'three', 'more', 'games', 'left', 'in', 'this', 'series', '||comma||', 'my', 'friend', '||comma||', 'and', "it's", 'far', 'from', 'being', 'over', '||period||', 'very', 'far', 'from', 'being', 'over', '||period||', '||leftparen||', 'notices', 'a', 'car', 'coming', 'right', 'towards', 'puddy', '||comma||', "who's", 'crossing', 'the', 'street', '||rightparen||', 'watch', 'out', '||exclammark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'pounding', 'the', 'hood', '||rightparen||', 'hey', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', 'watch', 'where', "you're", 'driving', '||comma||', 'man', '||exclammark||', '||leftparen||', 'he', 'approaches', 'the', 'passenger', 'side', 'window', '||rightparen||', "don't", 'mess', 'with', 'the', 'devils', '||comma||', 'buddy', '||period||', "we're", 'number', 'one', '||comma||', 'we', 'beat', 'anybody', '||exclammark||', "we're", 'the', 'devils', '||exclammark||', 'the', 'devils', '||exclammark||', '||exclammark||', 'haaaa', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'father', 'hernandez:', 'el', 'diablo', '||exclammark||', 'dios', 'mio', '||exclammark||', 'el', 'diablo', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||quotemark||', "i'm", 'hungry', '||period||', "let's", 'get', 'something', 'to', 'eat', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'yup', '||period||', '||return||', '||return||', 'jerry:', 'big', 'matzoh', 'ball', '||period||', '||return||', '||return||', 'george:', 'huge', 'matzoh', 'ball', '||period||', '||return||', '||return||', 'jerry:', 'those', 'damn', "'i", 'love', "you'", 'returns', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'all', 'over', '||period||', 'i', 'slipped', 'up', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'you', 'have', 'any', 'idea', 'how', 'fast', 'these', 'things', 'deteriorate', 'when', "there's", 'an', "'i", 'love', "you'", 'out', 'of', 'the', 'bag', '||questionmark||', 'you', "can't", 'have', 'a', 'relationship', 'where', 'one', 'person', 'says', '||comma||', '||quotemark||', 'i', 'love', 'you', '||quotemark||', '||comma||', 'and', 'the', 'other', 'says', '||comma||', '||quotemark||', "i'm", 'hungry', '||period||', "let's", 'get', 'something', 'to', 'eat', '||period||', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'unless', "you're", 'married', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'now', 'she', 'thinks', 'that', "i'm", 'one', 'of', 'these', 'guys', 'that', 'love', 'her', '||period||', 'nobody', 'wants', 'to', 'be', 'with', 'somebody', 'that', 'loves', 'them', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'people', 'hate', 'that', '||period||', '||return||', '||return||', 'george:', 'you', 'want', 'to', 'be', 'with', 'somebody', 'that', "doesn't", 'like', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ideally', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'never', 'saying', "'i", 'love', "you'", 'again', 'unless', 'they', 'say', 'it', 'first', '||period||', '||return||', '||return||', 'waitress:', 'matzoh', 'ball', 'soup', '||questionmark||', '||return||', '||return||', 'george:', "that'd", 'be', 'me', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||questionmark||', "you're", 'a', 'smart', 'guy', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'question', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'you', 'know', "i'm", 'supposed', 'to', 'go', 'on', 'this', 'special', 'tour', 'today', 'with', "george's", 'girlfriend', '||period||', '||return||', '||return||', 'jerry:', 'at', 'the', 'zoo', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'before', 'i', 'met', 'up', 'with', 'her', '||comma||', 'i', 'stopped', 'to', 'look', 'at', 'the', 'monkeys', '||comma||', 'when', 'all', 'of', 'a', 'sudden', 'i', 'am', 'hit', 'in', 'the', 'face', 'with', 'a', 'banana', 'peel', '||period||', 'i', 'turn', 'and', 'look', 'and', 'there', 'is', 'this', 'monkey', 'really', 'laughing', 'it', 'up', '||period||', 'then', 'someone', 'tells', 'me', 'that', 'he', 'did', 'it', '||period||', 'well', '||comma||', 'i', 'pick', 'up', 'the', 'banana', 'peel', 'and', 'i', 'wait', 'for', 'that', 'monkey', 'to', 'turn', 'around', '||period||', 'and', 'then', 'i', '*whap*', 'let', 'him', 'have', 'it', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', 'threw', 'a', 'banana', 'peel', 'at', 'a', 'monkey', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'started', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'monkey', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'pushed', 'my', 'buttons', '||comma||', 'i', "couldn't", 'help', 'it', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'still', 'think', "it's", 'wrong', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'alright', '||comma||', 'fine', '||period||', 'you', 'take', 'the', "monkey's", 'side', '||comma||', 'alright', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'taking', "anyone's", 'side', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'walking', 'out', '||rightparen||', 'cause', 'i', 'know', 'what', 'happened', '||comma||', 'jerry', '||period||', '||leftparen||', 'remembering', 'something', 'and', 'walking', 'back', 'in', '||rightparen||', 'did', 'you', 'call', 'alec', 'berg', 'and', 'thank', 'him', 'for', 'the', 'hockey', 'tickets', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'jerry', '||comma||', 'what', 'are', 'you', 'waiting', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'i', 'gotta', 'call', 'him', 'for', '||questionmark||', 'i', 'thanked', 'him', 'five', 'times', 'when', 'he', 'gave', 'them', 'to', 'me', '||comma||', 'how', 'many', 'time', 'i', 'gotta', 'thank', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', 'no', 'no', '||comma||', 'you', 'gotta', 'call', 'him', 'the', 'next', 'day', '||comma||', "it's", 'common', 'courtesy', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'believe', 'in', 'it', '||period||', "i'm", 'taking', 'a', 'stand', 'against', 'all', 'this', 'over', 'thanking', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'good', 'manners', 'are', 'the', 'glue', 'of', 'society', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'if', 'i', 'knew', 'i', 'had', 'to', 'give', 'him', 'eight', 'million', "'thank", "you's", '||comma||', 'i', "wouldn't", 'have', 'taken', 'the', 'tickets', 'in', 'the', 'first', 'place', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'you', 'know', 'what', 'this', 'is', 'gonna', 'do', '||questionmark||', "he's", 'gonna', 'be', 'upset', 'because', 'you', "didn't", 'call', 'him', 'and', "we're", 'not', 'gonna', 'get', 'those', 'tickets', 'for', 'friday', 'night', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "you're", 'out', 'of', 'your', 'mind', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'get', 'a', 'suit', 'cleaned', '||comma||', 'i', 'have', 'a', 'funeral', 'on', 'friday', '||period||', '||return||', '||return||', 'kramer:', 'who', 'died', '||questionmark||', '||return||', '||return||', 'jerry:', 'remember', 'the', 'guy', 'who', 'pretended', 'he', 'had', 'cancer', 'so', 'o', 'would', 'buy', 'him', 'the', 'toupee', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', 'he', 'actually', 'had', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'car', 'accident', '||period||', 'he', 'was', 'trying', 'to', 'adjust', 'his', 'toupee', 'while', 'he', 'was', 'driving', 'and', 'he', 'lost', 'control', 'of', 'the', 'car', '||period||', '||return||', '||return||', 'elaine:', 'that', 'poor', 'priest', '||period||', 'he', 'was', 'just', 'visiting', 'from', 'el', 'salvador', '||period||', 'now', "he's", 'gone', 'completely', 'loco', '||period||', '||return||', '||return||', 'jerry:', 'the', 'one', 'puddy', 'screamed', 'at', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'he', 'thinks', 'he', 'saw', 'the', 'devil', '||period||', 'he', "won't", 'leave', 'his', 'room', 'in', 'the', 'church', 'basement', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'what', 'you', 'get', 'for', 'getting', 'mixed', 'up', 'with', 'a', 'face', 'painter', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'what', 'compels', 'a', 'seemingly', 'normal', 'human', 'being', 'to', 'do', 'something', 'like', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'gotta', 'support', 'the', 'team', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'i', 'really', 'hate', 'my', 'clothes', '||period||', '||return||', '||return||', 'jerry:', 'hm', '||period||', '||return||', '||return||', 'elaine:', 'i', 'open', 'up', 'my', 'closet', '||comma||', "there's", 'just', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'hm', '||period||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', 'i', 'hate', 'everything', 'i', 'have', '||comma||', 'i', 'really', 'hate', 'it', '||period||', '||leftparen||', 'the', 'weeping', 'increases', 'in', 'volume', 'and', 'intensity', '||rightparen||', 'i', 'mean', '||comma||', 'at', 'this', 'point', '||comma||', "it's", 'like', 'i', 'can', 'wear', 'something', 'three', 'or', 'four', 'times', 'and', "that's", 'it', '||period||', '||return||', '||return||', 'jerry:', 'hm', '||period||', '||return||', '||return||', 'elaine:', "it's", 'getting', 'to', 'be', 'a', 'terrible', 'problem', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'noticing', 'alec', 'berg', 'walk', 'in', '||comma||', 'whispers', '||rightparen||', 'hey', '||comma||', 'alec', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'see', 'that', '||questionmark||', 'what', 'kind', 'of', 'a', "'hello'", 'was', 'that', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'ah', '||comma||', 'mr', '||period||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||period||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'thanks', 'for', 'coming', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'uh', '||comma||', 'what', 'did', 'you', 'want', 'to', 'see', 'me', 'about', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'well', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'to', 'get', 'right', 'to', 'it', '||comma||', "we're", 'having', 'a', 'bit', 'of', 'a', 'problem', 'with', 'barry', '||period||', '||return||', '||return||', 'kramer:', 'barry', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'the', 'chimpanzee', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'well', '||comma||', 'uh', '||comma||', "what's", 'the', 'problem', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'well', '||comma||', "he's", 'not', 'functioning', 'the', 'way', 'he', 'normally', 'does', '||period||', 'he', 'seems', 'depressed', '||period||', "he's", 'lost', 'his', 'appetite', '||period||', "he's", 'even', 'curtailed', 'his', 'autoerotic', 'activities', '||period||', 'and', 'we', 'think', 'this', 'is', 'directly', 'related', 'to', 'the', 'altercation', 'he', 'had', 'with', 'you', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'so', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'well', '||comma||', 'frankly', "we'd", 'like', 'you', 'to', 'apologize', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'he', 'started', 'it', '||period||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'mr', '||period||', 'kramer', '||comma||', 'he', 'is', 'an', 'innocent', 'primate', '||period||', '||return||', '||return||', 'kramer:', 'so', 'am', 'i', '||period||', 'what', 'about', 'my', 'feelings', '||questionmark||', "don't", 'my', 'feelings', 'count', 'for', 'anything', '||questionmark||', 'oh', '||comma||', 'only', 'the', 'poor', "monkey's", 'important', '||period||', 'everything', 'has', 'to', 'be', 'done', 'for', 'the', 'monkey', '||exclammark||', 'look', '||comma||', "i'm", 'sorry', '||period||', 'i', '||dash||', '||dash||', '||return||', '||return||', 'siena:', 'hey', '||comma||', "that's", 'ok', '||period||', 'well', '||comma||', "i've", 'gotta', 'go', 'feed', 'the', 'marmosets', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'siena', 'as', "she's", 'walking', 'out', '||comma||', 'but', 'she', 'appears', 'to', 'ignore', '||rightparen||', 'you', 'know', 'george', 'really', 'likes', 'you', '||period||', '||return||', '||return||', 'mr', '||period||', 'pless:', 'she', "doesn't", 'hear', 'too', 'well', 'out', 'of', 'her', 'left', 'ear', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'do', 'you', 'think', "it's", 'possible', 'that', "he's", 'mad', 'at', 'me', 'because', 'he', "didn't", 'get', 'the', 'day', '||dash||', 'after', "'thank", "you'", '||questionmark||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'you', 'were', 'at', 'a', 'funeral', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'people', 'never', 'give', 'a', 'good', "'hello'", 'at', 'a', 'funeral', '||period||', 'i', 'mean', '||comma||', 'they', 'go', 'like', 'this', '||leftparen||', 'george', 'gives', 'an', 'extremely', 'understated', 'nod', '||rightparen||', "that's", 'the', 'biggest', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', "that's", 'kinda', 'what', 'he', 'gave', 'me', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'they', "can't", 'go', '||comma||', '||quotemark||', 'hey', '||exclammark||', 'you', 'look', 'fabulous', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'well', '||comma||', 'i', 'just', 'spoke', 'to', 'your', 'girlfriend', '||period||', '||return||', '||return||', 'george:', 'girlfriend', '||comma||', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'kramer:', 'anyway', '||comma||', 'she', 'asked', 'me', 'to', 'apologize', 'to', 'barry', '||period||', '||return||', '||return||', 'george:', 'barry', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'monkey', '||period||', '||return||', '||return||', 'jerry:', 'well', '||questionmark||', '||return||', '||return||', 'kramer:', 'nothing', 'doing', '||period||', 'jerry', '||comma||', 'i', "didn't", 'do', 'anything', '||period||', "it's", 'the', 'monkey', 'that', 'should', 'be', 'apologizing', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'think', "that's", 'gonna', 'happen', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'sorry', '||period||', 'well', '||comma||', 'george', '||comma||', 'i', 'tried', 'to', 'put', 'the', 'good', 'word', 'in', 'for', 'you', 'with', 'siena', '||comma||', 'but', 'i', "don't", 'think', 'she', 'heard', 'me', '||period||', 'you', 'know', '||comma||', 'left', 'ear', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'her', 'boss', 'told', 'me', 'that', 'she', "can't", 'hear', 'very', 'well', 'out', 'of', 'her', 'left', 'ear', '||period||', 'what', '||comma||', 'you', "didn't", 'know', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'probably', 'never', 'heard', 'it', '||period||', "don't", 'you', 'see', 'what', 'this', 'means', '||questionmark||', "it's", 'like', 'the', 'whole', 'thing', 'never', 'happened', '||period||', "it's", 'like', 'when', 'superman', 'reversed', 'the', 'rotation', 'of', 'the', 'earth', 'to', 'save', 'lois', 'lane', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'gonna', 'say', 'it', 'again', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'the', 'question', '||comma||', 'jimmy', '||period||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'after', 'what', 'you', 'just', 'went', 'through', '||comma||', 'i', 'thought', 'you', 'said', "you'd", 'never', 'say', 'it', 'again', '||period||', '||return||', '||return||', 'george:', "i'd", 'like', 'to', 'say', 'it', 'once', 'to', 'someone', 'that', 'can', 'actually', 'hear', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'gonna', 'talk', 'into', 'her', 'other', 'ear', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'well', 'listen', '||comma||', 'i', 'almost', 'forgot', 'to', 'ask', 'you', '||period||', 'what', 'happened', 'at', 'the', 'funeral', '||questionmark||', 'now', '||comma||', 'did', 'you', 'talk', 'to', 'alec', 'berg', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'saw', 'him', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'so', "he's", 'gonna', 'give', 'you', 'the', 'hockey', 'tickets', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'not', 'exactly', '||period||', '||return||', '||return||', 'kramer:', "he's", 'mad', '||comma||', "isn't", 'he', '||questionmark||', 'see', '||comma||', 'i', 'knew', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'if', "he's", 'mad', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'so', 'what', 'happened', 'when', 'you', 'saw', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "didn't", 'really', 'get', 'a', 'good', "'hello'", '||comma||', 'but', 'see', '||comma||', 'i', 'was', 'at', 'a', 'funeral', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'so', 'i', "don't", 'know', 'if', 'i', 'got', 'a', 'funeral', "'hello'", 'or', 'he', 'was', 'mad', 'because', 'he', "didn't", 'get', 'his', 'day', '||dash||', 'after', "'thank", "you'", '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', 'i', 'told', 'you', '||comma||', 'jerry', '||comma||', 'i', 'told', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'want', 'you', 'to', 'get', 'on', 'this', 'phone', 'and', 'give', 'him', 'his', "'thank", "you'", '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', '||comma||', 'i', "can't", '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'this', 'is', 'the', 'way', 'society', 'functions', '||period||', "aren't", 'you', 'a', 'part', 'of', 'society', '||questionmark||', 'because', 'if', 'you', "don't", 'want', 'to', 'be', 'a', 'part', 'of', 'society', '||comma||', 'jerry', '||comma||', 'why', "don't", 'you', 'just', 'get', 'in', 'your', 'car', 'and', 'move', 'to', 'the', 'east', 'side', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'we', 'got', 'five', 'hours', 'before', 'the', 'game', '||period||', 'i', 'am', 'betting', 'it', 'was', 'a', 'funeral', "'hello'", '||period||', 'he', 'knows', "we're", 'here', '||comma||', 'he', 'knows', 'the', 'number', '||comma||', 'he', 'knows', 'we', 'want', 'to', 'go', '||period||', "there's", 'plenty', 'of', 'time', 'for', 'him', 'to', 'call', 'and', 'give', 'us', 'the', 'tickets', '||period||', '||return||', '||return||', 'kramer:', 'you', 'stubborn', '||comma||', 'stupid', '||comma||', 'silly', 'man', '||exclammark||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'great', 'dip', '||period||', 'you', 'made', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "it's", 'from', 'the', 'store', '||period||', '||return||', '||return||', 'puddy:', 'oh', '||period||', 'hey', '||comma||', 'how', 'come', 'people', "don't", 'have', 'dip', 'for', 'dinner', '||questionmark||', 'why', 'is', 'it', 'only', 'a', 'snack', '||comma||', 'why', "can't", 'it', 'be', 'a', 'meal', '||comma||', 'you', 'know', '||questionmark||', 'i', "don't", 'understand', 'stuff', 'like', 'that', '||period||', '||return||', '||return||', 'elaine:', 'david', '||questionmark||', 'david', '||comma||', 'i', 'think', 'we', 'aught', 'to', 'talk', '||period||', '||return||', '||return||', 'puddy:', 'alright', '||comma||', "that's", 'cool', '||period||', '||return||', '||return||', 'elaine:', 'david', '||comma||', 'i', "don't", 'think', 'we', 'should', 'see', 'each', 'other', 'anymore', '||period||', '||return||', '||return||', 'puddy:', 'you', 'gotta', 'be', 'kidding', '||comma||', 'how', 'come', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'see', '||comma||', 'david', '||comma||', "you're", 'a', 'face', 'painter', '||period||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'not', 'that', 'i', "don't", 'like', 'you', '||comma||', 'but', '||comma||', 'well', 'to', 'be', 'perfectly', 'honest', '||comma||', "i'm", 'just', 'having', 'some', 'trouble', 'getting', 'past', 'the', 'face', 'painting', '||period||', '||return||', '||return||', 'puddy:', 'well', '||comma||', 'alright', '||comma||', 'so', 'you', "don't", 'like', 'the', 'face', 'painting', '||comma||', 'i', 'just', "won't", 'paint', 'it', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'you', 'like', 'the', 'face', 'painting', '||period||', '||return||', '||return||', 'puddy:', 'well', '||comma||', 'i', "don't", 'need', 'to', 'do', 'it', '||period||', "it's", 'not', 'like', 'a', 'habit', 'or', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'you', 'mean', "you'd", 'stop', 'it', 'for', 'me', '||questionmark||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', "that's", 'so', '||comma||', "that's", 'so', 'sweet', '||period||', '||return||', '||return||', 'puddy:', 'ah', '||comma||', "c'mere", '||period||', '||leftparen||', 'they', 'kiss', '||rightparen||', 'alright', '||comma||', 'i', 'gotta', 'go', 'home', 'and', 'get', 'changed', 'before', 'the', 'game', '||period||', "i'll", 'be', 'back', '||comma||', "we'll", 'make', 'out', '||period||', '||return||', '||return||', 'george:', 'siena', '||comma||', 'i', 'love', 'you', '||period||', '||return||', '||return||', 'siena:', 'yeah', '||comma||', 'i', 'know', '||period||', 'i', 'heard', 'you', 'the', 'first', 'time', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'just', 'confirming', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'oh', '||comma||', 'hi', 'mom', '||period||', 'no', '||comma||', 'listen', '||comma||', 'i', 'was', 'expecting', 'somebody', 'else', '||period||', "i'm", 'sorry', '||comma||', 'i', "can't", 'talk', 'now', '||comma||', 'i', 'gotta', 'keep', 'the', 'line', 'clear', '||comma||', "i'll", 'call', 'you', 'later', '||period||', 'yes', '||comma||', 'i', 'know', 'i', 'have', 'call', 'waiting', 'but', 'i', "don't", 'trust', 'it', 'in', 'an', 'emergency', '||period||', 'good', 'bye', '||period||', '||return||', '||return||', 'kramer:', 'anyway', '||comma||', 'i', 'um', '||comma||', 'i', 'just', 'want', 'to', 'say', 'that', "i'm", 'sorry', '||period||', 'i', 'lost', 'my', 'temper', 'and', 'i', 'probably', "shouldn't", 'have', '||period||', 'i', 'took', 'it', 'out', 'on', 'you', 'and', '||comma||', 'look', '||comma||', 'if', "i've", 'caused', 'you', 'any', 'problems', 'as', 'a', 'result', 'of', 'my', 'behavior', '||comma||', 'well', 'then', '||comma||', "i'm", 'sorry', '||period||', 'i', 'apologize', '||period||', 'even', 'though', '||comma||', 'barry', '||comma||', 'between', 'me', 'and', 'you', '||comma||', 'we', 'both', 'know', 'that', 'you', 'started', 'it', '||period||', 'i', 'mean', '||comma||', "who's", 'kidding', 'who', '||questionmark||', 'but', 'they', 'tell', 'me', 'that', "you're", 'very', 'upset', '||comma||', 'and', 'god', 'forbid', 'i', 'should', 'disturb', 'the', 'very', 'important', 'monkey', '||comma||', "i'm", 'just', 'hoping', 'we', 'can', 'put', 'this', 'behind', 'us', '||comma||', "let's", 'just', 'move', 'on', 'with', 'our', 'lives', '||comma||', 'ok', '||questionmark||', 'so', 'no', 'hard', 'feelings', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'puddy:', "that's", 'the', 'letter', "'d'", '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'the', 'letter', "'d'", 'painted', 'on', 'your', 'chest', '||questionmark||', '||return||', '||return||', 'puddy:', 'well', '||comma||', "i'm", 'going', 'to', 'the', 'game', 'tonight', '||comma||', 'and', 'me', 'and', 'these', 'five', 'other', 'guys', 'are', 'gonna', 'take', 'our', 'shirts', 'off', 'and', 'spell', 'out', "'devils'", '||period||', '||return||', '||return||', 'elaine:', 'but', 'you', 'said', 'no', 'more', 'painting', '||period||', '||return||', '||return||', 'puddy:', 'no', '||comma||', 'i', 'said', 'no', 'more', 'face', 'painting', '||comma||', 'and', 'as', 'you', 'can', 'see', 'this', 'is', 'not', 'my', 'face', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'kramer:', 'well', '||questionmark||', 'did', 'he', 'call', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||comma||', 'jerry', '||exclammark||', 'come', 'on', '||comma||', 'this', 'is', 'stupid', '||exclammark||', "it's", 'six', "o'clock", '||exclammark||', "it's", 'all', 'over', '||comma||', 'just', 'pick', 'up', 'the', 'phone', 'and', 'thank', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||exclammark||', '||leftparen||', 'picks', 'up', 'the', 'phone', 'and', 'dials', '||rightparen||', 'hello', '||comma||', 'alec', '||questionmark||', 'hi', '||comma||', "it's", 'jerry', 'seinfeld', '||period||', 'you', 'know', '||comma||', 'you', 'got', 'a', 'great', "'john", "houseman'", 'name', '||period||', 'alec', 'berg', '||period||', 'did', 'you', 'hand', 'in', 'your', 'assignment', '||comma||', 'mr', '||period||', 'berg', '||questionmark||', '||return||', '||return||', 'alec:', 'what', 'can', 'i', 'do', 'for', 'you', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'alec', '||comma||', 'the', 'reason', 'i', 'called', 'is', 'i', 'just', 'wanted', 'to', 'thank', 'you', 'for', 'the', 'tickets', 'from', 'the', 'other', 'night', '||period||', '||return||', '||return||', 'alec:', 'i', 'wish', "you'd", 'called', 'me', 'earlier', '||comma||', 'i', 'could', 'have', 'given', 'you', 'my', 'tickets', 'for', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'already', 'gave', 'them', 'away', '||questionmark||', '||return||', '||return||', 'alec:', 'yeah', '||comma||', 'but', 'you', 'know', 'what', '||questionmark||', 'i', 'have', 'a', 'friend', '||comma||', "he's", 'got', 'a', 'couple', 'of', 'seats', '||period||', 'if', 'you', "don't", 'mind', 'the', 'nose', 'bleed', 'section', '||comma||', "they're", 'yours', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'we', "don't", 'care', '||comma||', 'we', 'just', 'want', 'to', 'go', '||period||', '||return||', '||return||', 'alec:', 'there', 'is', 'one', 'little', 'catch', '||comma||', 'though', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'great', 'game', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'priest:', 'father', 'hernandez', '||questionmark||', '||return||', '||return||', 'father', 'hernandez:', 'huh', '||questionmark||', '||return||', '||return||', 'priest:', 'una', 'senora', 'que', 'te', 'vino', 'a', 'ver', '||period||', 'ella', 'dice', 'que', 'tiene', 'informacion', 'muy', 'importante', '||comma||', 'y', 'que', 'te', 'puede', 'ayudar', '||period||', '||leftparen||', 'subtitled', '||quotemark||', 'a', 'woman', 'here', 'to', 'see', 'you', '||comma||', 'she', 'has', 'important', 'information', 'that', 'could', 'be', 'helpful', 'to', 'you', '||period||', '||quotemark||', '||rightparen||', '||return||', '||return||', 'father', 'hernandez:', 'bueno', '||period||', '||return||', '||return||', 'priest:', 'al', 'fini', 'finalmente', 'par', 'el', 'llover', '||period||', '||leftparen||', 'subtitled', '||quotemark||', 'finally', 'it', 'stopped', 'raining', '||period||', '||quotemark||', '||rightparen||', '||return||', '||return||', 'father', 'hernandez:', 'aha', '||comma||', 'bueno', '||period||', '||return||', '||return||', 'elaine:', 'hello', 'father', '||period||', '||return||', '||return||', 'father', 'hernandez:', 'oh', '||period||', 'la', 'madonna', '||exclammark||', 'madre', 'de', 'christo', '||exclammark||', 'yo', 'estoy', 'lista', '||exclammark||', '||return||', '||return||', 'gennice:', '||leftparen||', 'crying', '||rightparen||', '||leftparen||', 'sob', 'sob', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'now', 'what', 'am', 'i', 'supposed', 'to', 'do', 'here', '||questionmark||', 'shall', 'i', 'go', 'over', 'there', '||questionmark||', "it's", 'not', 'like', 'somebody', 'died', '||period||', "it's", '||quotemark||', 'beaches', '||quotemark||', 'for', "god's", 'sake', '||period||', 'if', 'she', 'was', 'sitting', 'next', 'to', 'me', "i'd", 'put', 'my', 'arm', 'around', 'her', '||period||', 'i', "can't", 'be', 'making', 'a', 'big', 'move', 'like', 'going', 'all', 'the', 'way', 'over', 'there', '||period||', 'i', "can't", '||period||', 'i', "won't", '||period||', '||return||', '||return||', 'jerry:', 'she', 'calls', 'me', 'this', 'morning', 'and', 'tells', 'me', "she's", 'upset', 'i', "didn't", 'console', 'her', '||period||', 'i', 'mean', 'it', 'was', '||quotemark||', 'beaches', '||quotemark||', 'for', "god's", 'sake', '||period||', 'what', '||comma||', 'what', 'do', 'you', 'do', 'in', 'a', 'situation', 'like', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'where', 'were', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'sitting', 'on', 'the', 'chair', '||period||', 'she', 'was', 'over', 'here', 'on', 'the', 'couch', '||period||', '||return||', '||return||', 'george:', 'well', 'you', 'know', '||comma||', 'if', 'you', 'were', 'sitting', 'right', 'next', 'to', 'her', "you'd", 'have', 'to', 'console', 'her', 'no', 'matter', 'what', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'when', "you're", 'talking', 'about', 'a', 'movie', 'like', '||quotemark||', 'beaches', '||quotemark||', '||comma||', 'moving', 'from', 'the', 'chair', 'to', 'the', 'couch', '||comma||', '||period||', '||period||', '||period||', "that's", 'quite', 'a', 'voyage', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'kramer:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'improv', 'is', 'playing', '||quotemark||', 'rochelle', 'rochelle', '||quotemark||', 'the', 'musical', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', 'what', 'is', 'bette', 'midler', 'playing', '||questionmark||', 'is', 'she', 'going', 'to', 'be', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'might', 'be', '||period||', "she's", 'the', 'star', 'of', 'the', 'show', '||period||', '||return||', '||return||', 'kramer:', 'bette', 'midler', 'is', 'going', 'to', 'be', 'in', 'the', 'park', 'today', '||questionmark||', 'yeeee', '||period||', 'jerry', '||comma||', "don't", 'tease', 'me', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'know', 'you', 'were', 'such', 'a', 'bette', 'midler', 'fan', '||period||', '||return||', '||return||', 'kramer:', 'so', 'maybe', "i'll", 'go', 'down', 'there', 'and', 'watch', '||comma||', 'uh', '||questionmark||', "she'll", 'be', 'there', '||comma||', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'george:', 'gennice', 'palying', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'kramer:', "who's", 'gennice', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'the', 'understudy', '||period||', "i'm", 'dating', 'her', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'uh', '||comma||', 'is', 'this', 'uh', '||comma||', 'bette', "midler's", 'understudy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'understudies', 'are', 'a', 'very', 'shifty', 'bunch', '||period||', 'the', 'substitute', 'teachers', 'of', 'the', 'theater', 'world', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'glad', "she's", 'an', 'understudy', '||period||', 'i', "don't", 'have', 'to', 'avoid', 'going', 'back', 'stage', 'and', 'having', 'to', 'think', 'of', 'something', 'to', 'say', '||period||', '||return||', '||return||', 'george:', 'going', 'backstage', 'is', 'the', 'worst', '||period||', 'especially', 'when', 'they', 'stink', '||period||', 'you', 'know', "that's", 'a', 'real', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'just', 'once', 'i', 'would', 'like', 'to', 'tell', 'someone', 'they', 'stink', '||period||', 'you', 'know', 'what', '||questionmark||', 'i', "doidn't", 'like', 'the', 'show', '||period||', 'i', "didn't", 'like', 'you', '||period||', 'it', 'just', 'really', 'stunk', '||period||', 'the', 'whole', 'thingreal', 'bad', '||period||', 'stinkaroo', '||period||', 'thanks', 'for', 'the', 'tickets', 'though', '||period||', '||return||', '||return||', 'ruby:', 'you', 'late', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', 'i', 'know', '||period||', 'i', "didn't", 'have', 'change', 'for', 'the', 'bus', 'and', 'they', "don't", 'give', 'change', 'in', 'this', 'city', '||period||', 'so', 'they', 'threw', 'me', 'off', 'the', 'bus', '||return||', '||return||', 'ruby:', '||quotemark||', "that's", 'a', 'shame', '||quotemark||', '||period||', "you'll", 'have', 'to', 'wait', 'for', 'lotus', 'now', '||period||', '||return||', '||return||', 'elaine:', 'how', 'long', 'do', 'you', 'think', 'this', 'will', 'take', '||period||', 'i', 'have', 'a', 'millllioooon', 'things', 'to', 'do', '||period||', '||return||', '||return||', 'ruby:', '||quotemark||', "mustn't", 'keep', 'the', 'princess', 'waiting', '||period||', 'princess', 'in', 'a', 'big', 'hurry', '||period||', '||quotemark||', '||quotemark||', 'no', 'change', 'for', 'bus', '||quotemark||', '||quotemark||', 'poor', 'princess', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||comma||', 'uh', '||questionmark||', '||return||', '||return||', 'ruby:', 'nothing', '||comma||', "won't", 'be', 'long', '||period||', '||return||', '||return||', 'lotus:', '||quotemark||', 'princess', 'wants', 'a', 'manicure', '||period||', '||quotemark||', '||return||', '||return||', 'sunny:', '||quotemark||', 'oh', 'lucky', 'me', '||period||', '||quotemark||', '||return||', '||return||', 'lotus:', '||quotemark||', 'oh', '||comma||', 'you', 'got', 'the', 'princess', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'so', 'funny', '||questionmark||', '||return||', '||return||', 'ruby:', 'tell', 'knock', '||dash||', 'knock', 'joke', '||period||', '||return||', '||return||', 'elaine:', 'the', 'korean', 'women', 'were', 'talking', 'about', 'me', '||period||', 'i', 'think', 'they', 'were', 'calling', 'me', 'a', 'dog', '||period||', '||return||', '||return||', 'jerry:', 'how', 'would', 'you', 'know', '||questionmark||', 'you', "don't", 'speak', 'korean', '||period||', '||return||', '||return||', 'elaine:', 'because', 'this', 'woman', 'came', 'in', 'with', 'a', 'dog', 'and', 'ruby', 'called', 'the', 'dog', 'the', 'same', 'word', 'they', 'used', 'when', 'they', 'were', 'pointing', 'at', 'mege', 'ge', 'ge', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'maybe', 'in', 'korean', '||quotemark||', 'dog', '||quotemark||', "isn't", 'an', 'insult', '||period||', 'could', 'be', 'like', 'the', 'word', '||quotemark||', 'fox', '||quotemark||', 'to', 'us', '||period||', 'oh', '||comma||', "she's", 'a', 'dog', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'go', 'to', 'another', 'nail', 'shop', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "they're", 'the', 'best', 'jerry', '||comma||', 'the', 'best', '||period||', 'look', '||period||', 'maybe', "i'm", 'just', 'being', 'paranoid', '||period||', '||return||', '||return||', 'jerry:', 'what', 'you', 'need', 'is', 'a', 'translator', 'to', 'go', 'in', 'the', 'shop', 'with', 'you', 'and', 'tell', 'you', 'what', "they're", 'saying', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'who', 'speaks', 'korean', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'who', 'speaks', 'korean', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', "george's", 'father', '||period||', '||return||', '||return||', 'elaine:', 'you', "gotta'", 'be', 'kidding', 'me', '||period||', 'how', 'does', 'he', 'speak', 'korean', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'used', 'to', 'go', 'there', 'a', 'lot', 'on', 'business', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'he', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'sold', 'religious', 'articles', 'the', 'statues', 'of', 'jesus', '||comma||', 'the', 'virgin', 'mary', '||comma||', 'that', 'were', 'manufactured', 'in', 'korea', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'does', 'your', 'father', 'speak', 'korean', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'he', 'once', 'bumped', 'into', 'reverend', 'yung', 'sun', 'moon', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'gennice', '||period||', '||return||', '||return||', 'gennice:', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'george', '||comma||', 'this', 'is', 'kramer', '||period||', '||return||', '||return||', 'gennice:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', 'playing', 'today', '||questionmark||', '||return||', '||return||', 'gennice:', 'no', '||period||', "i'm", 'on', 'the', 'bench', 'today', '||period||', '||return||', '||return||', 'jerry:', 'they', 'really', 'stick', 'to', 'that', 'understudy', 'rule', '||period||', '||return||', '||return||', 'kramer:', 'so', "she's", 'coming', '||questionmark||', '||return||', '||return||', 'gennice:', 'oh', '||comma||', 'yeah', '||comma||', "she'll", 'be', 'here', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'drops', 'hot', 'dog', '||rightparen||', 'oh', 'no', '||comma||', 'my', 'frankfurter', '||comma||', 'my', 'frankfurter', 'fell', '||leftparen||', 'sob', 'sob', 'sob', 'sob', '||rightparen||', '||period||', 'it', 'was', 'really', 'good', '||period||', 'i', "can't", 'believe', 'that', 'i', 'dropped', 'it', '||period||', '||leftparen||', 'sob', 'sob', 'sob', 'sob', '||rightparen||', '||return||', '||return||', 'jerry:', "it's", "okayit's", 'just', 'a', 'hot', 'dog', '||comma||', '||leftparen||', 'still', 'sobbing', '||rightparen||', 'everything', 'is', 'going', 'to', 'be', 'okay', '||period||', '||return||', '||return||', 'gennice:', 'no', 'it', '||leftparen||', 'sob', '||rightparen||', 'was', 'really', 'good', '||period||', '||return||', '||return||', 'kramer:', 'look', "it's", 'bette', "it's", 'bette', '||exclammark||', 'ah', '||comma||', 'ah', '||comma||', 'ah', '||comma||', '||period||', '||period||', '||period||', 'bette', '||comma||', 'psst', '||comma||', 'hi', '||period||', '||return||', '||return||', 'bette:', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'i', 'just', 'want', 'to', 'say', 'i', 'think', "you're", 'wonderful', '||period||', '||return||', '||return||', 'bette:', 'uh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i've", 'seen', 'you', 'in', 'everything', "you've", 'done', '||period||', '||return||', '||return||', 'bette:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'anything', 'i', 'can', 'get', 'you', '||questionmark||', 'water', '||questionmark||', 'they', 'got', 'ice', 'over', 'here', '||period||', '||return||', '||return||', 'bette:', 'what', 'flavours', 'do', 'they', 'have', '||questionmark||', '||return||', '||return||', 'kramer:', 'chocolate', '||comma||', 'lemon', '||comma||', 'and', 'uh', '||comma||', 'cherry', '||period||', '||return||', '||return||', 'bette:', 'how', 'about', 'pineapple', '||questionmark||', '||return||', '||return||', 'kramer:', 'pineapple', '||comma||', 'sure', '||comma||', 'alright', '||comma||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'ice', 'cream', 'vender', '#1:', 'no', 'pineapple', '||period||', 'just', 'cherry', '||comma||', 'lemon', 'and', 'tutti', '||dash||', 'frutti', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'uh', '||comma||', 'uh', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', 'mr', '||period||', 'costanza', '||comma||', 'what', 'i', 'want', 'you', 'to', 'do', 'is', 'to', 'come', 'to', 'the', 'shop', 'with', 'me', 'and', 'tell', 'me', 'what', 'they', 'are', 'saying', '||period||', 'you', 'do', 'speak', 'korean', '||questionmark||', '||return||', '||return||', 'frank:', 'i', 'once', 'talked', 'to', 'the', 'reverend', 'yung', 'son', 'moon', '||period||', 'he', 'bought', 'two', 'jesus', 'statues', 'from', 'me', '||period||', "he's", 'a', 'hell', 'of', 'a', 'nice', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'ha', '||period||', '||return||', '||return||', 'frank:', 'ever', 'see', 'that', 'face', 'on', 'him', '||questionmark||', 'like', 'a', 'biiig', 'apple', 'pie', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', 'uh', '||comma||', 'uh', 'listen', 'mr', '||period||', 'costanza', '||comma||', 'if', 'uh', '||comma||', 'if', 'you', 'do', 'this', 'for', 'me', "i'll", 'get', 'you', 'a', 'manicure', '||comma||', "i'll", 'pay', 'for', 'it', '||period||', 'or', 'you', 'can', 'get', 'a', 'pedicure', 'if', 'you', 'want', '||period||', '||return||', '||return||', 'frank:', 'no', 'one', 'is', 'touching', 'my', 'feet', '||period||', 'between', 'you', 'and', 'me', '||comma||', 'elaine', '||comma||', 'i', 'think', "i've", 'got', 'a', 'foot', 'odour', 'problem', '||period||', '||return||', '||return||', 'george:', 'i', 'watched', '||quotemark||', 'beaches', '||quotemark||', 'on', 'cable', 'last', 'night', '||period||', '||leftparen||', 'wings', '||questionmark||', '||rightparen||', 'give', 'me', 'a', 'break', '||period||', '||return||', '||return||', 'bette:', 'get', 'some', 'talent', 'then', 'you', 'can', 'mouth', 'off', '||period||', '||return||', '||return||', 'umpire:', 'strike', 'three', '||period||', '||return||', '||return||', 'bette:', 'what', '||questionmark||', 'are', 'you', 'blind', '||questionmark||', '||return||', '||return||', 'umpire:', 'what', '||questionmark||', '||return||', '||return||', 'bette:', 'nothing', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'frank:', 'i', 'had', 'an', 'affair', 'with', 'a', 'korean', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'mr', '||period||', 'costanza', '||comma||', 'i', '||return||', '||return||', 'frank:', 'no', '||comma||', 'i', 'feel', 'i', 'need', 'to', 'unburden', 'myself', '||period||', 'i', 'loved', 'her', 'very', 'deeply', '||period||', 'but', 'the', 'clash', 'of', 'cultures', 'was', 'too', 'much', '||period||', 'her', 'family', 'would', 'not', 'accept', 'me', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'costanza', '||comma||', 'i', '||comma||', '||return||', '||return||', 'frank:', 'maybe', 'it', 'was', 'because', 'i', 'refused', 'to', 'take', 'off', 'my', 'shoes', '||period||', 'again', '||comma||', 'the', 'foot', 'odour', 'problem', '||period||', 'her', 'father', 'would', 'look', 'at', 'me', 'and', 'say', '||comma||', '||quotemark||', 'eno', 'enoa', 'juang', '||quotemark||', '||period||', 'which', 'means', '||comma||', '||quotemark||', 'this', 'guy', '||dash||', 'this', 'is', 'not', 'my', 'kind', 'of', 'guy', '||quotemark||', '||period||', '||return||', '||return||', 'ice', 'cream', 'vender', '#2:', 'sure', 'i', 'got', 'pineapple', '||period||', '||return||', '||return||', 'bette:', 'move', 'it', 'in', '||period||', 'move', 'in', 'everybody', '||period||', 'get', 'your', 'shrimp', 'here', '||period||', 'shrimp', 'on', 'special', 'today', '||exclammark||', '||return||', '||return||', 'jerry:', 'come', 'on', 'george', '||comma||', 'just', 'loosen', 'up', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'george', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'the', 'pineapple', '||period||', 'i', 'got', 'the', 'pineapple', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'keep', 'going', '||period||', '||return||', '||return||', 'george:', 'aaaaaah', '||return||', '||return||', 'umpire:', 'safe', '||exclammark||', '||return||', '||return||', 'george:', 'come', 'on', "it's", 'just', 'a', 'game', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holding', 'bette', '||rightparen||', "don't", 'worry', 'kramer', 'is', 'going', 'to', 'take', 'care', 'of', 'everything', '||period||', 'see', '||comma||', '||comma||', 'i', 'got', 'you', 'pineapple', '||period||', 'i', 'saw', 'beaches', 'last', 'night', 'for', 'the', 'fourth', 'time', '||leftparen||', 'sings', '||rightparen||', '||quotemark||', 'you', 'are', 'the', 'wind', '||quotemark||', '||return||', '||return||', 'tv:', 'the', 'show', 'will', 'go', 'on', 'but', 'not', 'bette', 'midler', '||period||', 'while', 'playing', 'softball', 'in', 'the', 'park', 'ms', '||period||', 'midler', 'was', 'injured', 'when', 'another', 'player', 'thoughtlessly', 'rammed', 'her', 'at', 'home', 'plate', '||period||', 'all', 'captured', 'on', 'amateur', 'video', 'tape', '||period||', 'she', 'will', 'be', 'out', 'for', 'two', 'weeks', 'from', 'her', 'broadway', 'show', '||semicolon||', 'rochelle', 'rochelle', '||dash||', 'the', 'musical', '||period||', '||return||', '||return||', 'gennice:', '||period||', '||period||', '||period||', 'thank', 'you', '||period||', '||leftparen||', 'hugs', 'jerry', 'and', 'george', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', 'we', '||return||', '||return||', 'gennice:', 'no', '||comma||', 'please', '||period||', 'this', 'is', 'the', 'first', 'time', 'in', 'my', 'life', '||leftparen||', 'sobs', '||rightparen||', 'that', 'anyone', 'has', 'ever', 'done', 'anything', 'like', 'this', 'for', 'me', '||period||', "i've", 'always', 'had', 'to', 'struggle', 'so', 'hard', 'for', 'everything', 'i', 'ever', 'got', '||period||', '||leftparen||', 'sobbing', '||rightparen||', 'and', 'i', 'know', 'this', 'is', 'going', 'to', 'be', 'my', 'big', 'break', '||period||', '||leftparen||', 'sobbing', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'with', 'no', 'emotion', '||rightparen||', "it's", 'okay', '||period||', 'everything', 'is', 'going', 'to', 'be', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'jerry', '||comma||', 'open', 'up', '||period||', 'i', 'know', "you're", 'in', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', 'come', 'back', 'another', 'time', '||period||', '||return||', '||return||', 'kramer:', 'so', '||period||', '||period||', '||period||', "you're", 'all', 'in', 'here', 'together', '||period||', 'how', 'convenient', '||period||', 'i', 'hope', "you're", 'all', 'proud', 'of', 'yourselves', '||period||', '||return||', '||return||', 'kramer:', 'so', 'my', 'dear', 'you', 'think', 'you', 'can', 'get', 'to', 'broadway', '||period||', 'well', '||comma||', 'let', 'me', 'tell', 'you', 'something', '||period||', 'broadway', 'has', 'no', 'room', 'for', 'people', 'like', 'you', '||period||', 'not', 'the', 'broadway', 'i', 'know', '||period||', 'my', 'broadway', 'takes', 'people', 'like', 'you', 'and', 'eats', 'them', 'up', 'and', 'spits', 'them', 'out', '||period||', 'my', 'broadway', 'is', 'the', 'broadway', 'of', 'merman', '||comma||', 'and', 'martin', '||comma||', 'and', 'fontaine', '||comma||', 'and', 'if', 'you', 'think', 'you', 'can', 'build', 'yourself', 'up', 'by', 'knocking', 'other', 'people', 'down', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'good', 'luck', '||period||', '||period||', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', 'everyone', '||period||', 'um', '||comma||', 'this', 'is', 'my', 'friend', '||comma||', 'frank', '||period||', '||return||', '||return||', 'ruby:', 'what', 'would', 'you', 'like', 'today', '||questionmark||', 'manicure', '||comma||', 'pedicure', '||questionmark||', '||return||', '||return||', 'frank:', "i'll", 'take', 'a', 'manicure', '||period||', 'i', "don't", 'take', 'my', 'shoes', 'off', 'for', 'anyone', '||period||', '||return||', '||return||', 'ruby:', '||quotemark||', "that's", 'the', 'least', 'of', 'his', 'problems', '||period||', '||quotemark||', '||return||', '||return||', 'frank:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "what'd", 'they', 'say', '||questionmark||', "what'd", 'they', 'say', '||questionmark||', '||return||', '||return||', 'frank:', 'they', 'made', 'a', 'derogatory', 'comment', 'about', 'me', '||period||', '||return||', '||return||', 'ruby:', '||quotemark||', "she's", 'with', 'a', 'man', 'twice', 'her', 'age', '||period||', '||quotemark||', '||quotemark||', 'he', "doesn't", 'look', 'like', "he's", 'got', 'much', 'money', 'either', '||period||', '||quotemark||', '||return||', '||return||', 'lotus:', '||quotemark||', 'check', 'out', 'that', 'sweater', '||quotemark||', '||period||', '||leftparen||', 'all', 'laughing', '||rightparen||', '||return||', '||return||', 'ruby:', '||quotemark||', 'i', 'think', 'i', 'saw', 'a', 'moth', 'fly', 'out', 'of', 'a', 'pocket', '||period||', '||quotemark||', '||return||', '||return||', 'lotus:', '||quotemark||', 'what', 'happened', 'to', 'his', 'tail', '||questionmark||', '||quotemark||', '||return||', '||return||', 'frank:', 'okay', '||comma||', "that's", 'it', '||exclammark||', '||quotemark||', 'oki', 'on', 'awa', '||quotemark||', "where's", 'my', 'tail', '||questionmark||', 'i', 'heard', 'every', 'word', 'you', 'said', '||period||', 'you', 'got', 'some', 'nerve', '||period||', '||return||', '||return||', 'kim:', 'that', 'voice', '||questionmark||', 'it', 'sounds', 'so', 'familiar', '||period||', 'it', 'reminds', 'me', 'of', 'when', 'i', 'was', 'ayoung', 'girl', 'in', 'korea', 'and', 'i', 'met', 'an', 'american', 'businessman', '||period||', 'he', 'was', 'a', 'very', 'unusual', 'man', '||period||', 'quick', 'temperd', 'with', 'a', 'strange', 'halting', 'way', 'of', 'speaking', '||period||', 'we', 'fell', 'in', 'love', 'but', 'when', 'i', 'brought', 'him', 'home', 'to', 'meet', 'my', 'father', '||questionmark||', 'he', 'refused', 'to', 'take', 'his', 'shoes', 'off', '||period||', 'and', 'there', 'was', 'a', 'terrible', 'fight', '||period||', '||return||', '||return||', 'lotus:', 'that', 'man', 'also', 'refuses', 'to', 'take', 'his', 'shoes', 'off', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'from', 'other', 'room', '||rightparen||', 'i', 'never', 'seen', 'people', 'treated', 'like', 'this', '||exclammark||', '||return||', '||return||', 'ruby:', 'you', 'brought', 'in', 'a', 'spy', '||exclammark||', '||period||', '||period||', '||period||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'kim:', 'frank', '||questionmark||', '||return||', '||return||', 'frank:', 'kim', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'on', 'phone', '||rightparen||', 'a', 'turkey', 'sandwich', '||period||', 'a', 'side', 'of', 'slaw', '||comma||', 'you', 'want', 'whit', 'e', 'meat', 'or', 'dark', '||questionmark||', '||return||', '||return||', 'bette:', 'white', 'meat', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'white', 'meat', '||period||', 'and', 'if', 'i', 'see', 'one', 'piece', 'of', 'dark', 'meat', 'on', 'there', '||period||', "it's", 'your', 'ass', 'buster', '||period||', '||return||', '||return||', 'bette:', 'get', 'me', 'one', 'of', 'those', 'black', 'and', 'white', 'cookies', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'all', 'right', '||comma||', 'yeah', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'they', "don't", 'have', 'any', '||period||', 'but', "don't", 'worry', "i'm", 'going', 'to', 'get', 'you', 'one', 'somewhere', '||period||', '||return||', '||return||', 'bette:', 'good', '||period||', 'because', 'if', 'i', "don't", 'get', 'a', 'black', 'and', 'white', 'cookie', "i'm", 'not', 'going', 'to', 'be', 'very', 'pleasant', 'to', 'be', 'around', '||period||', '||return||', '||return||', 'kramer:', 'now', "that's", 'impossible', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sob', 'sob', '||rightparen||', '||leftparen||', 'bumps', 'into', 'man', 'with', 'an', 'umbrella', '||rightparen||', 'i', "don't", 'even', 'know', 'where', "i'm", 'going', '||period||', '||return||', '||return||', 'peterman:', "that's", 'the', 'best', 'way', 'to', 'get', 'someplace', "you've", 'never', 'been', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', '||leftparen||', 'sob', '||rightparen||', 'i', 'suppose', '||comma||', '||return||', '||return||', 'peterman:', 'have', 'you', 'been', 'crying', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', '||leftparen||', 'sob', '||rightparen||', 'you', 'see', 'this', '||leftparen||', 'sob', '||rightparen||', 'woman', '||comma||', 'this', 'manicurist', '||comma||', '||return||', '||return||', 'peterman:', 'oh', 'no', '||comma||', 'that', 'doesnt', 'matter', 'now', '||period||', "that's", 'a', 'very', 'nice', 'jacket', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', '||leftparen||', 'sob', '||rightparen||', 'thanks', '||period||', '||return||', '||return||', 'peterman:', 'very', 'soft', '||comma||', 'huge', 'button', 'flaps', '||comma||', 'cargo', 'pockets', '||comma||', 'draw', 'string', 'waist', '||comma||', 'deep', 'biswing', 'vents', 'in', 'the', 'back', 'perfect', 'for', 'jumping', 'into', 'a', 'gondola', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'know', 'all', 'that', '||questionmark||', '||return||', '||return||', 'peterman:', "that's", 'my', 'coat', '||period||', '||return||', '||return||', 'elaine:', 'you', 'mean', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'peterman:', 'yes', '||comma||', "i'm", 'j', '||period||', 'peterman', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'why', 'i', 'have', 'to', 'go', 'to', 'the', 'hospital', '||period||', 'i', "didn't", 'do', 'anything', 'to', 'bette', 'midler', '||period||', 'driver', 'can', 'you', 'stop', 'over', 'here', '||comma||', "we're", 'picking', 'somebody', 'up', '||period||', '||return||', '||return||', 'gennice:', 'hey', '||comma||', 'i', "didn't", 'do', 'anything', '||period||', 'i', 'was', 'never', 'informed', '||period||', 'you', 'can', 'all', 'go', 'straight', 'to', 'hell', '||period||', 'you', 'see', 'that', '||questionmark||', 'you', 'see', 'what', 'i', 'am', 'going', 'through', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'what', '||questionmark||', 'somebody', 'dropped', 'an', 'egg', 'on', 'my', 'head', 'as', 'i', 'went', 'into', 'my', 'building', 'last', 'night', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "i'm", 'being', 'heckled', 'on', 'stage', '||period||', 'people', 'are', 'yelling', 'out', 'galloogy', '||period||', '||return||', '||return||', 'gennice:', "i'm", 'having', 'a', 'little', 'trouble', 'with', 'all', 'this', '||period||', 'i', 'mean', 'all', 'i', 'ever', 'wanted', 'to', 'do', 'is', 'sing', '||period||', 'now', "i'm", 'the', 'focus', 'of', 'this', 'big', 'media', 'frenzy', '||period||', '||leftparen||', 'sob', '||rightparen||', 'nobody', 'in', 'the', 'show', 'will', 'even', 'talk', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'stop', 'your', 'crying', 'will', 'ya', '||questionmark||', '||return||', '||return||', 'gennice:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'heard', 'him', '||period||', '||return||', '||return||', 'gennice:', 'oh', '||comma||', "don't", 'you', "you're", 'the', 'reason', 'this', 'whole', 'thing', 'happened', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'read', 'what', 'you', 'said', 'to', 'the', 'papers', 'yesterday', '||period||', 'you', "weren't", 'in', 'on', 'the', 'planing', '||period||', 'what', 'planning', '||questionmark||', 'you', 'think', 'we', 'planed', 'this', '||questionmark||', 'uh', '||questionmark||', '||return||', '||return||', 'cabbie:', 'wait', '||period||', 'wait', '||period||', 'i', 'know', 'you', '||period||', 'you', 'knocked', 'bette', 'midler', 'out', 'of', 'rochelle', 'rochelle', 'the', 'musical', '||period||', 'i', 'want', 'you', 'creeps', 'out', 'of', 'my', 'cab', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'had', 'nothing', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'cabbie:', 'get', 'out', 'of', 'my', 'cab', '||period||', 'you', 'should', 'go', 'to', 'prison', '||period||', 'you', 'should', 'be', 'in', 'prison', 'for', 'the', 'rest', 'of', 'your', 'life', '||period||', 'get', 'out', '||comma||', 'each', 'of', 'you', '||period||', 'each', 'and', 'every', 'one', 'of', 'you', 'get', 'out', 'of', 'my', 'cab', '||period||', '||return||', '||return||', 'peterman:', 'then', 'in', 'the', 'distance', 'i', 'heard', 'the', 'bulls', '||period||', 'i', 'began', 'running', 'as', 'fast', 'as', 'i', 'could', '||period||', 'fortunately', 'i', 'was', 'wearing', 'my', 'italian', 'captoe', 'oxfords', '||period||', 'sophisticated', 'yet', 'different', '||semicolon||', 'nothing', 'to', 'make', 'a', 'huge', 'fuss', 'about', '||period||', 'rich', 'dark', 'brown', 'calfskin', 'leather', '||period||', 'matching', 'leather', 'vent', '||period||', "men's", 'whole', 'and', 'half', 'sizes', '7', 'through', '13', '||period||', 'price', '$135', '||period||', '00', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "that's", 'not', 'too', 'expensive', '||period||', '||return||', '||return||', 'peterman:', 'that', 'shirt', '||period||', 'where', 'did', 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'this', 'innocent', 'looking', 'shirt', 'has', 'something', 'which', "isn't", 'innocent', 'at', 'all', '||period||', 'touchability', '||exclammark||', 'heavy', '||comma||', 'silky', 'italian', 'cotton', '||comma||', 'with', 'a', 'fine', 'almost', 'terrycloth', 'like', 'feeling', '||period||', 'five', 'button', 'placket', '||comma||', 'relaxed', 'fit', '||comma||', 'innocence', 'and', 'mayhem', 'at', 'once', '||period||', '||return||', '||return||', 'peterman:', "that's", 'not', 'bad', '||exclammark||', '||return||', '||return||', 'kim:', 'oh', '||comma||', 'frank', '||period||', 'so', 'many', 'years', '||period||', 'if', 'only', 'you', 'had', 'taken', 'your', 'shoes', 'off', '||period||', '||return||', '||return||', 'frank:', 'i', "couldn't", 'because', 'i', 'had', 'a', 'potential', 'foot', 'problem', '||period||', '||return||', '||return||', 'kim:', 'i', 'thought', 'maybe', 'you', 'had', 'a', 'hole', 'in', 'your', 'socks', '||period||', '||return||', '||return||', 'frank:', 'i', 'wiped', 'them', 'for', 'two', 'minutes', 'on', 'the', 'mat', '||period||', 'i', "don't", 'know', 'why', 'your', 'father', 'had', 'to', 'make', 'a', 'federal', 'case', 'out', 'of', 'it', '||period||', '||return||', '||return||', 'kim:', 'anyway', 'that', 'is', 'all', 'in', 'the', 'past', '||period||', 'we', 'have', 'our', 'whole', 'future', 'ahead', 'of', 'us', '||period||', '||return||', '||return||', 'frank:', 'between', 'you', 'and', 'me', 'i', 'think', 'your', 'country', 'is', 'placing', 'a', 'lot', 'of', 'importance', 'on', 'shoe', 'removal', '||period||', '||return||', '||return||', 'kim:', 'you', 'short', 'stop', 'me', '||questionmark||', 'we', "don't", 'do', 'that', 'in', 'korea', '||exclammark||', 'take', 'me', 'home', '||period||', 'inever', 'want', 'to', 'see', 'you', 'again', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||comma||', 'here', '||period||', 'i', 'made', 'this', 'for', 'your', '||period||', '||leftparen||', 'gives', 'her', 'a', 'pasta', 'statue', '||rightparen||', '||return||', '||return||', 'bette:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'macaroni', 'midler', '||period||', '||return||', '||return||', 'bette:', 'macaroni', 'midler', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'see', 'how', "you're", 'singing', '||questionmark||', '||return||', '||return||', 'bette:', 'yeah', 'ha', 'ha', '||period||', 'well', 'you', 'made', 'a', 'long', 'journey', 'from', 'milan', 'to', 'minsk', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "what's", 'that', 'from', '||questionmark||', '||return||', '||return||', 'bette:', 'oh', '||comma||', "that's", 'one', 'of', 'the', 'songs', 'from', 'my', 'show', '||period||', 'bette', 'sings', '||return||', '||return||', 'kramer:', 'oh', 'you', 'are', 'so', 'freaking', 'talented', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'so', 'look', "who's", 'here', '||period||', 'what', 'do', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', 'we', 'just', 'want', 'to', 'talk', 'to', 'her', '||period||', 'we', 'want', 'to', 'apologize', 'and', 'tell', 'her', 'the', 'whole', 'thing', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', "i'm", 'sorry', "it's", 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'bette', 'is', 'recuperating', 'right', 'now', 'and', "i'm", 'not', 'going', 'to', 'allow', 'anything', 'to', 'disturb', 'her', '||period||', '||return||', '||return||', 'george:', 'who', 'are', 'you', 'to', 'decide', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'calling', 'the', 'shots', 'around', 'here', 'so', 'there', "won't", 'be', 'anymore', 'accidents', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'look', '||comma||', 'kramer', '||comma||', '||return||', '||return||', 'kramer:', 'ah', '||exclammark||', 'i', "don't", 'want', 'her', 'disturbed', '||period||', '||return||', '||return||', 'ruby:', 'hello', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||return||', '||return||', 'lotus:', "we're", 'so', 'excited', '||period||', '||return||', '||return||', 'elaine:', "you're", 'welcome', '||period||', '||return||', '||return||', 'ruby:', "we'll", 'see', 'you', 'inside', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'i', 'felt', 'bad', 'about', 'the', 'spying', '||comma||', 'so', 'you', 'know', '||comma||', '||comma||', 'i', 'got', 'them', 'tickets', 'to', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', '||comma||', "that's", 'nice', '||period||', 'alright', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'wait', '||comma||', 'wait', '||period||', 'i', "didn't", 'get', 'to', 'tell', 'you', 'about', 'my', 'new', 'job', '||period||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'elaine:', 'writing', 'for', 'the', 'j', '||period||', 'peterman', 'catalogue', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pushing', 'her', '||rightparen||', 'how', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'met', 'him', '||period||', '||return||', '||return||', 'jerry:', 'you', 'met', 'j', '||period||', 'peterman', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'he', 'like', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'wore', 'a', 'classic', "courtman's", 'duster', '||period||', 'beige', 'corduroy', 'collar', '||comma||', '100%', 'cotton', 'canvas', '||comma||', 'high', 'waist', '||comma||', 'nine', 'pockets', '||comma||', 'six', 'on', 'the', 'outside', '||comma||', 'great', 'for', 'running', 'along', 'side', 'a', 'train', '||comma||', '||leftparen||', 'jerry', 'walking', 'away', '||rightparen||', 'waving', 'last', 'goodbyes', '||comma||', 'posing', 'on', 'a', 'veranda', '||comma||', "men's", 'sizes', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'away', '||rightparen||', 'yeah', '||comma||', "i'll", 'see', "ya'", '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'small', '||comma||', 'medium', '||comma||', 'large', '||comma||', 'xl', '||comma||', 'double', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'break', 'a', 'leg', 'tonight', '||period||', '||return||', '||return||', 'gennice:', "i'm", 'really', 'nervous', '||period||', '||return||', '||return||', 'stagehand:', 'here', 'you', 'got', 'a', 'telegram', '||period||', 'well', '||comma||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'jerry:', 'listen', 'buddy', '||comma||', '||return||', '||return||', 'stagehand:', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', 'break', 'my', 'legs', '||questionmark||', 'you', "don't", 'scare', 'me', '||period||', 'you', 'or', 'your', 'goons', '||period||', '||return||', '||return||', 'gennice:', 'how', 'do', 'you', 'like', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'gennice:', 'my', 'grandmother', 'died', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'so', 'sorry', '||period||', '||return||', '||return||', 'gennice:', 'oh', '||comma||', "it's", 'okay', '||comma||', '||return||', '||return||', 'jerry:', 'so', 'you', "don't", 'cry', 'when', 'your', 'grandmother', 'dies', '||questionmark||', 'but', 'a', 'hotdog', 'makes', 'you', 'lose', 'control', '||questionmark||', '||return||', '||return||', 'voice:', '||leftparen||', 'off', 'camera', '||rightparen||', 'places', 'everyone', '||period||', '||return||', '||return||', 'gennice:', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'good', 'luck', '||period||', '||return||', '||return||', 'announcer:', 'ladies', 'and', 'gentlemen', 'for', 'this', "evening's", 'performance', 'the', 'part', 'of', 'rochelle', 'will', 'be', 'played', 'by', 'gennice', 'grant', '||period||', '||return||', '||return||', 'lotus:', 'gennice', 'glant', '||questionmark||', '||return||', '||return||', 'ruby:', 'what', 'happened', 'to', 'bette', 'midler', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'she', 'got', 'hurt', '||period||', '||return||', '||return||', 'ruby:', 'no', 'bette', 'midler', '||questionmark||', '||leftparen||', 'they', 'talk', 'korean', 'and', 'all', 'three', 'leave', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', '||comma||', 'uh', '||comma||', 'wait', '||comma||', '||return||', '||return||', 'gennice:', '||leftparen||', 'singing', 'and', 'dancing', '||rightparen||', '||quotemark||', "it's", 'a', 'long', 'journey', 'from', 'milan', 'to', 'minsk', '||quotemark||', '||leftparen||', 'shoe', 'lace', 'comes', 'undone', '||leftparen||', 'even', 'looks', 'like', 'figure', 'skates', '||rightparen||', 'wait', 'wait', '||period||', 'hold', 'it', 'stop', '||comma||', '||leftparen||', 'sob', '||rightparen||', "i'm", 'sorry', '||comma||', 'i', 'have', 'to', 'start', 'it', 'over', '||comma||', 'my', 'shoelace', '||period||', '||leftparen||', 'sob', '||rightparen||', 'i', "can't", 'do', 'it', 'like', 'this', '||period||', 'please', 'let', 'me', 'start', 'over', '||period||', '||leftparen||', 'sob', '||rightparen||', 'please', '||period||', '||leftparen||', 'sob', '||rightparen||', 'please', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'got', 'no', 'place', 'to', 'go', '||period||', "i'll", 'tell', 'you', 'what', 'your', 'problem', 'is', 'you', 'brought', 'your', 'queen', 'out', 'too', 'fast', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', "she's", 'one', 'of', 'these', 'feminists', 'looking', 'to', 'get', 'out', 'of', 'the', 'house', '||questionmark||', 'no', '||comma||', 'the', 'queen', 'is', 'old', 'fashioned', '||period||', '||period||', 'likes', 'to', 'stay', 'home', '||period||', 'cook', '||period||', 'take', 'care', 'of', 'her', 'man', '||period||', 'make', 'sure', 'he', 'feels', 'good', '||period||', '||return||', '||return||', 'liz:', 'checkmate', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'think', 'we', 'should', 'see', 'each', 'other', 'any', 'more', '||period||', '||return||', '||return||', 'elaine:', 'shut', 'up', '||exclammark||', 'shut', 'up', '||exclammark||', 'you', 'stupid', 'mutt', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'broke', 'up', 'with', 'her', "'cuz", 'she', 'beat', 'you', 'at', 'chess', '||questionmark||', "that's", 'pretty', 'sick', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'see', 'how', 'i', 'could', 'perform', 'sexually', 'in', 'a', 'situation', 'after', 'something', 'like', 'that', '||period||', 'i', 'was', 'completely', 'emasculated', '||period||', 'anyway', '||comma||', "it's", 'not', 'the', 'only', 'reason', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'what', 'else', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'you', 'wanna', 'know', 'what', 'one', 'of', 'her', 'favorite', 'expressions', 'is', '||questionmark||', 'happy', '||comma||', 'pappy', '||questionmark||', '||return||', '||return||', 'jerry:', 'happy', '||comma||', 'pappy', '||questionmark||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'if', 'she', 'wants', 'to', 'know', 'if', "i'm", 'pleased', 'with', 'something', '||comma||', "she'll", 'say', '||comma||', '||quotemark||', 'happy', '||comma||', 'pappy', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "you're", '||quotemark||', 'pappy', '||quotemark||', '||period||', '||return||', '||return||', 'george:', "i'm", '||quotemark||', 'pappy', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'get', 'it', '||period||', 'why', "don't", 'you', 'just', 'say', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'come', 'on', '||period||', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', 'george', "i'm", 'much', 'more', 'comfortable', 'criticizing', 'people', 'behind', 'there', 'backs', '||period||', 'anyway', '||comma||', 'look', "who's", 'talking', '||period||', 'you', 'just', 'broke', 'up', 'with', 'with', 'melanie', 'last', 'week', 'because', 'she', '||quotemark||', 'shuushed', 'you', '||quotemark||', 'while', 'you', 'were', 'watching', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'got', 'a', 'real', 'thing', 'about', '||quotemark||', 'shushing', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'is', 'this', '||questionmark||', 'did', 'you', 'ever', 'get', 'the', 'feeling', 'like', "you've", 'had', 'a', 'haircut', 'but', 'you', "didn't", 'have', 'one', '||questionmark||', "i'm", 'all', 'itchy', 'back', 'here', '||period||', '||return||', '||return||', 'jerry:', 'ahh', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', 'what', 'are', 'we', 'doing', '||questionmark||', 'what', 'in', "god's", 'name', 'are', 'we', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'our', 'lives', '||exclammark||', '||exclammark||', '||period||', 'what', 'kind', 'of', 'lives', 'are', 'these', '||questionmark||', "we're", 'like', 'children', '||period||', "we're", 'not', 'men', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "we're", 'not', '||period||', "we're", 'not', 'men', '||period||', '||return||', '||return||', 'jerry:', 'we', 'come', 'up', 'with', 'all', 'these', 'stupid', 'reasons', 'to', 'break', 'up', 'with', 'these', 'women', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'i', 'know', '||period||', "that's", 'what', 'i', 'do', '||period||', "that's", 'what', 'i', 'do', '||period||', '||return||', '||return||', 'jerry:', 'are', 'we', 'going', 'to', 'be', 'sitting', 'here', 'when', "we're", 'sixty', 'like', 'two', 'idiots', '||questionmark||', '||return||', '||return||', 'george:', '||period||', 'we', 'should', 'be', 'having', 'dinner', 'with', 'our', 'sons', 'when', "we're", 'sixty', '||period||', '||return||', '||return||', 'jerry:', "we're", 'pathetic', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'like', 'i', "don't", 'know', 'that', "i'm", 'pathetic', '||period||', '||return||', '||return||', 'jerry:', 'why', "can't", 'i', 'be', 'normal', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'me', '||comma||', 'too', '||period||', 'i', 'wanna', 'be', 'normal', '||period||', 'normal', '||period||', '||return||', '||return||', 'jerry:', 'it', 'would', 'be', 'nice', 'to', 'care', 'about', 'someone', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'yes', '||period||', 'care', '||period||', 'you', 'know', 'who', 'i', 'think', 'about', 'a', 'lot', '||questionmark||', 'remember', 'susan', '||questionmark||', 'the', 'one', 'that', 'used', 'to', 'work', 'for', 'nbc', '||questionmark||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', 'i', 'thought', 'she', 'became', 'a', 'lesbian', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'it', "didn't", 'take', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'george:', 'did', 'i', 'tell', 'you', 'i', 'ran', 'into', 'her', 'last', 'week', '||questionmark||', 'ho', '||dash||', 'ho', '||comma||', 'she', 'looked', 'great', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', '||return||', '||return||', 'george:', 'you', 'thought', 'she', 'was', 'good', 'looking', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'there', 'you', 'go', 'again', '||period||', 'what', 'is', 'the', 'difference', 'what', 'i', 'think', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'just', 'curious', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'this', 'is', 'it', '||period||', "i'm", 'really', 'gonna', 'do', 'something', 'about', 'my', 'life', '||comma||', 'you', 'know', '||questionmark||', 'you', 'know', '||comma||', 'i', 'think', "i'm", 'gonna', 'call', 'melanie', 'again', '||period||', 'so', 'what', 'if', 'she', 'shushed', 'me', '||period||', 'george', '||comma||', 'i', 'am', 'really', 'gonna', 'make', 'some', 'changes', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'changes', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'serious', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'think', "i'm", 'not', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'kidding', '||period||', '||return||', '||return||', 'george:', 'me', '||comma||', 'too', '||period||', '||return||', '||return||', '[at', 'jerry:', "'s", '||period||', "he's", 'on', 'the', 'phone]', '||return||', '||return||', 'jerry:', 'melanie', '||comma||', 'you', 'can', 'shush', 'me', 'at', 'every', 'opportunity', '||period||', '5', '||questionmark||', '3', '||questionmark||', 'oh', '||comma||', 'it', 'was', 'just', 'an', 'expression', '||period||', 'all', 'right', '||comma||', 'well', '||comma||', "that's", 'very', 'sweet', 'of', 'you', '||period||', 'okay', '||comma||', "i'll", 'call', 'you', 'later', '||period||', 'all', 'right', '||comma||', 'bye', '||period||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'very', 'interesting', 'lunch', 'with', 'george', 'costanza', 'today', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'were', 'talking', 'about', 'our', 'lives', 'and', 'we', 'both', 'kind', 'of', 'realized', "we're", 'kids', '||period||', "we're", 'not', 'men', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'then', 'you', 'asked', 'yourselves', '||comma||', '||quotemark||', "isn't", 'there', 'something', 'more', 'to', 'life', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'we', 'did', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'let', 'me', 'clue', 'you', 'in', 'on', 'something', '||period||', 'there', "isn't", '||period||', '||return||', '||return||', 'jerry:', 'there', "isn't", '||questionmark||', '||return||', '||return||', 'kramer:', 'absolutely', 'not', '||period||', 'i', 'mean', '||comma||', 'what', 'are', 'you', 'thinking', 'about', '||comma||', 'jerry', '||questionmark||', 'marriage', '||questionmark||', 'family', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "they're", 'prisons', '||period||', 'man', 'made', 'prisons', '||period||', "you're", 'doing', 'time', '||period||', 'you', 'get', 'up', 'in', 'the', 'morning', '||period||', "she's", 'there', '||period||', 'you', 'go', 'to', 'sleep', 'at', 'night', '||period||', "she's", 'there', '||period||', "it's", 'like', 'you', 'gotta', 'ask', 'permission', 'to', 'use', 'the', 'bathroom', '||period||', 'is', 'it', 'all', 'right', 'if', 'i', 'use', 'the', 'bathroom', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', 'you', 'can', 'forget', 'about', 'watching', 'tv', 'while', "you're", 'eating', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'you', 'know', 'why', '||questionmark||', 'because', "it's", 'dinner', 'time', '||period||', 'and', 'you', 'know', 'what', 'you', 'do', 'at', 'dinner', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'talk', 'about', 'your', 'day', '||period||', 'how', 'was', 'your', 'day', 'today', '||questionmark||', 'did', 'you', 'have', 'a', 'good', 'day', 'today', 'or', 'a', 'bad', 'day', 'today', '||questionmark||', 'well', '||comma||', 'what', 'kind', 'of', 'day', 'was', 'it', '||questionmark||', 'well', '||comma||', 'i', "don't", 'know', '||period||', 'how', 'about', 'you', '||questionmark||', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'jerry:', 'boy', '||period||', '||return||', '||return||', 'kramer:', "it's", 'sad', '||comma||', 'jerry', '||period||', "it's", 'a', 'sad', 'state', 'of', 'affairs', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'glad', 'we', 'had', 'this', 'talk', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'george:', 'la', '||dash||', 'la', '||dash||', 'la', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'three', 'hours', 'of', 'sleep', 'again', 'last', 'night', '||period||', '||period||', 'three', 'hours', 'of', 'sleep', 'because', 'of', 'that', 'dog', '||period||', '||return||', '||return||', 'kramer:', 'what', 'dog', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'what', 'dog', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'dog', 'in', 'the', 'courtyard', 'across', 'from', 'my', 'bedroom', 'window', 'that', 'never', 'never', 'stops', 'barking', '||period||', '||period||', '||return||', '||return||', 'kramer:', "don't", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'lost', 'my', 'voice', 'screaming', 'at', 'this', 'thing', '||period||', 'i', "can't", 'sleep', '||period||', 'i', "can't", 'work', '||period||', 'i', 'mean', '||comma||', 'i', 'just', 'moved', '||period||', 'i', "can't", 'move', 'again', '||period||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', 'what', '||questionmark||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'there', 'is', 'something', 'you', 'can', 'do', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'kramer', '||comma||', "i'll", 'do', 'anything', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'if', 'there', 'should', 'be', 'an', 'unfortunate', 'accident', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'rub', 'out', 'the', 'dog', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'not', 'me', '||period||', 'i', 'just', 'happen', 'to', 'know', 'someone', 'who', 'specializes', 'in', 'exactely', 'these', 'kinds', 'of', 'sticky', 'situations', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', "you're", 'considering', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'just', 'meet', 'with', 'him', '||period||', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'really', 'know', 'why', "i'm", 'here', '||period||', 'kramer', 'talked', 'me', 'into', 'coming', 'up', 'here', '||period||', 'but', '||comma||', 'obviously', '||comma||', 'i', 'could', 'never', 'really', 'do', 'anything', '||period||', '||return||', '||return||', 'newman:', 'of', 'course', '||period||', 'obviously', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'so', '||comma||', 'anyway', '||comma||', "i'm", 'sorry', 'for', 'wasting', 'your', 'time', '||period||', '||return||', '||return||', 'newman:', 'what', 'kind', 'of', 'dog', 'did', 'you', 'say', 'it', 'was', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'i', "don't", 'know', '||period||', "i've", 'never', 'really', 'seen', 'it', '||period||', '||return||', '||return||', 'newman:', 'i', 'see', 'many', 'dogs', 'on', 'my', 'mail', 'route', '||period||', "i'll", 'bet', "there's", 'not', 'one', 'type', 'of', 'mutt', 'or', 'mongrel', 'i', "haven't", 'run', 'across', '||period||', '||return||', '||return||', 'newman:', 'if', 'you', 'ask', 'me', '||comma||', 'they', 'have', 'no', 'business', 'living', 'amongst', 'us', '||period||', 'vile', '||comma||', 'useless', 'beasts', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||exclammark||', 'stop', 'it', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'anyway', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'well', 'um', '||comma||', 'i', 'was', 'just', 'curious', 'if', 'i', 'were', 'interested', 'in', 'availing', 'myself', 'of', 'your', 'services', '||comma||', 'um', '||comma||', 'what', 'exactly', 'would', 'you', 'do', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'elaine', '||comma||', "there's", 'any', 'number', 'of', 'things', 'i', 'could', 'do', '||period||', 'but', '||comma||', 'i', 'can', 'promise', 'you', 'this', '||comma||', 'though', '||comma||', 'this', 'vicious', 'beast', 'will', 'never', 'bother', 'you', 'again', '||period||', 'so', '||comma||', "what's", 'it', 'going', 'to', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'm", 'sorry', '||period||', 'i', "can't", 'hurt', 'a', 'dog', '||period||', 'i', "can't", 'hurt', 'a', 'dog', '||period||', 'i', "can't", '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'it', '||period||', "we'll", 'kidnap', 'him', '||period||', 'and', "we'll", 'drop', 'him', 'off', 'upstate', 'and', 'this', 'way', 'he', "won't", 'bother', 'you', 'anymore', 'and', 'he', "won't", 'get', 'hurt', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'i', 'suppose', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', "i'd", 'have', 'to', 'think', 'about', 'it', '||period||', 'i', 'doubt', 'it', '||comma||', 'though', '||period||', 'i', 'doubt', 'it', '||period||', "i'll", 'let', 'you', 'know', '||period||', '||return||', '||return||', 'newman:', 'of', 'course', '||period||', 'take', 'your', 'time', '||period||', 'i', 'be', 'here', '||period||', '||return||', '||return||', '[george:', 'is', 'still', 'at', 'the', 'pier', '||period||', 'his', 'thoughts', 'shift', 'somewhat', '||period||', ']', '||return||', '||return||', 'george:', 'la', '||dash||', 'la', '||dash||', 'la', '||dash||', 'la', '||dash||', 'la', '||dash||', 'la', '||dash||', 'la', '||exclammark||', '[flashbacks', 'to', 'susan]', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', "let's", 'do', 'it', '||period||', '||return||', '||return||', 'newman:', 'excellent', '||period||', 'excellent', '||period||', '||return||', '||return||', 'jerry:', 'how', 'come', "you're", 'eating', 'your', 'peas', 'one', 'at', 'a', 'time', '||questionmark||', '||return||', '||return||', 'melanie:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'susan:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'george', '||period||', '||return||', '||return||', 'susan:', 'george', '||questionmark||', 'george', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'will', 'you', 'marry', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'ma', '||comma||', 'guess', 'what', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', "it's", 'nothing', 'bad', '||period||', "i'm", 'getting', 'married', '||period||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', "you're", 'what', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'getting', 'married', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'oh', '||comma||', 'my', 'god', '||exclammark||', "you're", 'getting', 'married', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'oh', '||comma||', 'i', "can't", 'believe', 'it', '||period||', 'frank', '||comma||', 'come', 'here', '||period||', '||return||', '||return||', 'frank:', 'you', 'come', 'here', '||period||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', "georgie's", 'getting', 'married', '||period||', '||return||', '||return||', 'frank:', 'what', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', "georgie's", 'getting', 'married', '||period||', '||return||', '||return||', 'frank:', 'get', 'the', 'hell', 'out', 'of', 'here', '||period||', "he's", 'getting', 'married', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'yes', '||period||', '||return||', '||return||', 'frank:', 'to', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'of', 'course', 'to', 'a', 'woman', '||period||', "what's", 'she', 'look', 'like', '||questionmark||', '||return||', '||return||', 'frank:', "i'm", 'sure', "she's", 'pretty', 'gorgeous', '||period||', '||return||', '||return||', 'george:', 'what', 'difference', 'does', 'it', 'make', 'what', 'she', 'looks', 'like', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'is', 'she', 'pretty', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', "she's", 'pretty', '||period||', 'what', 'difference', 'does', 'it', 'make', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'oh', '||comma||', "i'm", 'just', 'curious', '||period||', '||return||', '||return||', 'frank:', "she's", 'not', 'pretty', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'let', 'me', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'she', 'wants', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'susan:', 'uh', '||comma||', 'hello', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'congratulations', '||exclammark||', '||return||', '||return||', 'susan:', 'i', 'just', 'want', 'you', 'to', 'know', 'that', 'i', 'love', 'your', 'son', 'very', 'much', '||period||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'you', 'do', '||questionmark||', '||return||', '||return||', 'susan:', 'yes', '||period||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'really', '||questionmark||', '||return||', '||return||', 'susan:', 'yes', '||period||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'may', 'i', 'ask', 'why', '||questionmark||', '||return||', '||return||', 'frank:', 'okay', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'costanza:', 'will', 'you', 'stop', '||period||', "i'm", 'on', 'the', 'telephone', '||period||', '||return||', '||return||', 'frank:', 'can', 'i', 'talk', 'to', 'her', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'up', 'to', '||questionmark||', '||return||', '||return||', 'kramer:', 'nothing', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'rope', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'well', '||comma||', 'how', 'do', 'you', 'like', 'that', '||period||', 'i', 'got', 'rope', '||period||', 'um', '||comma||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'the', 'dog', '||period||', "you're", 'getting', 'the', 'dog', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'kramer', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'out', '||period||', '||return||', '||return||', 'george:', "don't", 'go', '||period||', 'kramer', '||exclammark||', 'come', 'back', '||period||', 'i', 'got', 'great', 'news', '||period||', 'well', '||comma||', 'i', 'did', 'it', '||period||', '||return||', '||return||', 'jerry:', 'did', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'engaged', '||period||', "i'm", 'getting', 'married', '||period||', 'i', 'asked', 'susan', 'to', 'marry', 'me', '||period||', "we're", 'getting', 'married', 'this', 'christmas', '||period||', '||return||', '||return||', 'jerry:', "you're", 'getting', 'married', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'a', 'man', '||period||', 'jerry', '||comma||', "i'm", 'a', 'man', '||period||', 'and', 'do', 'you', 'know', 'why', '||questionmark||', "it's", 'because', 'of', 'that', 'talk', 'we', 'had', '||period||', 'you', 'were', 'my', 'inspiration', '||period||', 'do', 'you', 'believe', 'it', '||questionmark||', 'you', '||period||', 'that', 'lunch', 'was', 'the', 'defining', 'moment', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'blown', 'away', '||period||', '||return||', '||return||', 'george:', "you're", 'blown', '||questionmark||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'like', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'she', 'said', '||quotemark||', 'yes', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'took', 'a', 'couple', 'of', 'hours', 'of', 'convincing', '||period||', 'i', 'was', 'persistent', '||period||', 'i', 'was', 'just', 'like', 'those', 'guys', 'in', 'the', 'movies', '||period||', 'and', 'it', 'worked', '||exclammark||', 'she', 'said', '||quotemark||', 'yes', '||quotemark||', '||exclammark||', 'i', "can't", 'believe', 'my', 'luck', 'that', 'she', 'was', 'still', 'available', '||period||', 'a', 'beautiful', 'woman', 'like', 'that', '||period||', 'you', 'think', "she's", 'good', 'looking', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'gonna', 'have', 'gorgeous', 'kids', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', "she's", 'got', 'great', 'skin', '||dash||', 'a', 'rosy', 'glow', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'pinkish', 'hue', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "she's", 'got', 'the', 'hue', '||period||', 'so', '||comma||', "what's", 'going', 'on', 'with', 'you', 'and', 'melanie', '||questionmark||', 'i', 'mean', '||comma||', 'i', 'know', "you're", 'not', 'getting', 'married', '||comma||', 'but', 'uh', '||comma||', 'things', 'are', 'happening', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', 'actually', '||comma||', 'we', 'kind', 'of', 'broke', 'up', '||period||', '||return||', '||return||', 'george:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||comma||', 'we', 'were', 'having', 'dinner', 'the', 'other', 'night', '||comma||', 'and', "she's", 'got', 'this', 'strangest', 'habit', '||period||', 'she', 'eats', 'her', 'peas', 'one', 'at', 'a', 'time', '||period||', "you've", 'never', 'seen', 'anything', 'like', 'it', '||period||', 'it', 'takes', 'her', 'an', 'hour', 'to', 'finish', 'them', '||period||', 'i', 'mean', '||comma||', "we've", 'had', 'dinner', 'other', 'times', '||period||', "i've", 'seen', 'her', 'eat', 'corn', 'niblets', '||period||', 'but', 'she', 'scooped', 'them', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'she', 'scooped', 'her', 'niblets', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', "that's", 'what', 'was', 'so', 'vexing', '||period||', '||return||', '||return||', 'george:', 'uh', '||dash||', 'huh', '||period||', 'uh', '||dash||', 'huh', '||period||', 'what', 'about', 'the', 'pact', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'the', 'pact', '||questionmark||', 'we', 'were', 'both', 'gonna', 'change', '||period||', 'we', 'shook', 'hands', 'on', 'a', 'pact', '||period||', 'did', 'you', 'not', 'shake', 'my', 'hand', 'on', 'it', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'stuck', 'your', 'hand', 'out', '||comma||', 'so', 'i', 'shook', 'it', '||period||', 'i', "don't", 'know', 'about', 'a', 'pact', '||period||', 'anyway', '||comma||', 'you', 'should', 'be', 'happy', "you're", 'engaged', '||period||', "you're", 'getting', 'married', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'not', 'that', '||period||', 'i', 'just', '||comma||', 'you', 'know', '||comma||', 'i', 'thought', 'that', 'we', 'were', 'both', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'thought', 'i', 'was', 'gonna', 'get', 'married', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'maybe', 'not', 'married', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'you', 'love', 'susan', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'spend', 'the', 'rest', 'of', 'your', 'life', 'with', 'her', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'it', "doesn't", 'make', 'any', 'difference', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'so', '||comma||', "we're", 'still', 'on', 'to', 'see', 'uh', '||comma||', 'firestorm', 'tonight', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'pick', 'you', 'up', 'at', 'your', 'apartment', '||period||', "we'll", 'go', 'to', 'the', 'eight', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'wait', 'a', 'second', '||period||', 'wait', 'a', 'second', '||period||', '||exclammark||', 'celebrate', '||exclammark||', 'how', 'about', 'some', 'champagne', '||questionmark||', '||return||', '||return||', 'george:', 'champagne', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'come', 'on', '||exclammark||', 'how', 'often', 'do', 'you', 'get', 'engaged', '||questionmark||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'george:', 'okay', '||exclammark||', 'alright', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'no', 'champagne', '||period||', 'anyway', '||period||', '||period||', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "that's", 'it', '||period||', "that's", 'it', '||period||', 'stop', 'right', 'here', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', 'give', 'me', 'the', 'rope', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'do', 'you', 'need', 'a', 'rope', 'for', '||questionmark||', '||return||', '||return||', 'newman:', 'look', '||comma||', 'i', "don't", 'have', 'time', 'to', 'explain', 'every', 'little', 'thing', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'now', '||comma||', "i'm", 'thinking', 'maybe', 'we', "shouldn't", 'do', 'this', '||period||', '||return||', '||return||', 'newman:', 'i', 'knew', "you'd", 'back', 'out', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'are', 'we', 'doing', 'a', 'bad', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'look', 'at', 'it', 'this', 'way', '||period||', 'we', 'drop', 'the', 'dog', 'off', 'in', 'front', 'of', "somebody's", 'house', 'in', 'the', 'country', '||period||', 'they', 'find', 'it', 'and', 'adopt', 'it', '||period||', 'now', 'the', 'dog', 'is', 'prancing', 'in', 'the', 'fields', '||period||', 'dancing', 'and', 'prancing', '||period||', 'fresh', 'air', '||period||', '||period||', 'dandelions', '||period||', "we're", 'doing', 'this', 'dog', 'a', 'huge', 'favor', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', "that's", 'him', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||period||', "i'm", 'going', 'in', '||period||', 'keep', 'the', 'motor', 'running', '||period||', '||return||', '||return||', 'jerry:', 'ready', '||questionmark||', '||return||', '||return||', 'george:', 'um', '||comma||', 'i', "don't", 'uh', '||comma||', 'really', 'think', 'i', 'can', 'go', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'how', 'come', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "didn't", 'really', 'tell', 'susan', 'about', 'it', '||comma||', 'and', 'she', "doesn't", 'really', 'have', 'anything', 'else', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'she', 'could', 'come', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'she', "doesn't", 'really', 'want', 'to', 'see', 'firestorm', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'george:', 'she', 'um', '||comma||', 'she', 'wants', 'to', 'see', 'the', 'muted', 'heart', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'muted', 'heart', '||period||', 'glen', 'close', '||period||', 'sally', 'field', '||period||', 'well', '||comma||', 'that', 'should', 'be', 'good', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'wait', 'a', 'second', '||period||', 'you', 'know', '||comma||', 'we', 'could', 'share', 'a', 'cab', '||period||', "they're", 'playing', 'at', 'the', 'same', 'cineplex', '||period||', '||return||', '||return||', 'susan:', 'george', '||comma||', 'better', 'get', 'ready', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'ready', '||period||', '||return||', '||return||', 'susan:', 'you', 'wearing', 'that', 'shirt', '||questionmark||', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'i', 'guess', "i'll", 'see', 'you', 'down', 'there', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'what', 'time', 'you', 'got', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||period||', 'i', "don't", 'wear', 'a', 'watch', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'tell', 'time', 'by', 'the', 'sun', '||period||', '||return||', '||return||', 'elaine:', 'how', 'close', 'do', 'you', 'get', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'can', 'guess', 'within', 'an', 'hour', '||period||', '||return||', '||return||', 'elaine:', 'tsk', '||period||', 'well', '||comma||', 'i', 'can', 'guess', 'within', 'the', 'hour', '||comma||', 'and', 'i', "don't", 'even', 'have', 'to', 'look', 'at', 'the', 'sun', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'about', 'at', 'night', '||questionmark||', 'what', 'do', 'you', 'do', 'then', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "night's", 'tougher', 'but', "it's", 'only', 'a', 'couple', 'of', 'hours', '||period||', '||return||', '||return||', 'newman:', "let's", 'go', '||period||', "let's", 'go', '||period||', 'move', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'got', 'it', '||questionmark||', '||return||', '||return||', 'newman:', 'what', 'do', 'you', 'think', '||questionmark||', 'drive', '||period||', 'drive', '||period||', '||return||', '||return||', 'elaine:', 'where', 'is', 'it', '||questionmark||', 'where', 'is', 'it', '||questionmark||', 'this', '||questionmark||', 'this', 'is', 'the', 'dog', '||questionmark||', '||return||', '||return||', 'newman:', 'yep', '||period||', '||return||', '||return||', 'elaine:', 'but', "he's", 'so', 'small', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'but', "he's", 'a', 'fighter', '||period||', '||return||', '||return||', 'elaine:', 'that', "can't", 'be', 'the', 'dog', '||period||', 'are', 'you', 'sure', 'you', 'got', 'the', 'right', 'one', '||questionmark||', '||return||', '||return||', 'newman:', 'look', '||comma||', 'you', 'said', 'the', 'one', 'in', 'the', 'second', 'courtyard', '||period||', 'he', 'was', 'in', 'the', 'second', 'courtyard', '||period||', '||return||', '||return||', 'elaine:', 'how', 'could', 'that', 'be', 'the', 'dog', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'get', 'him', 'to', 'bark', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'yeah', '||period||', "i'll", 'know', 'if', 'he', 'barks', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||period||', 'bark', '||period||', '||return||', '||return||', 'elaine:', 'bark', '||period||', '||return||', '||return||', 'newman:', 'bark', '||period||', '||return||', '||return||', 'susan:', 'did', 'you', 'like', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'it', 'was', 'very', '||comma||', 'very', 'good', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'do', 'you', 'think', "he'll", 'ever', 'find', 'her', 'again', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'sure', 'hope', 'so', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', 'when', 'harrison', 'ford', 'jumped', 'out', 'of', 'that', 'plane', '||comma||', 'and', 'he', 'was', 'shooting', 'back', 'at', 'them', 'as', 'he', 'was', 'falling', '||questionmark||', '||return||', '||return||', 'friend:', 'what', 'about', 'that', 'underwater', 'escape', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'kramer:', "let's", 'turn', 'the', 'radio', 'on', '||period||', 'maybe', "there's", 'a', 'news', 'report', 'about', 'it', '||period||', '||return||', '||return||', 'newman:', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'think', "we're", 'far', 'enough', '||period||', '||return||', '||return||', 'newman:', "we're", 'practically', 'to', 'monticello', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'this', 'looks', 'right', '||period||', 'all', 'right', '||period||', 'give', 'me', 'the', 'dog', '||period||', 'okay', '||comma||', 'boy', '||period||', 'this', 'is', 'it', '||period||', 'this', 'is', 'your', 'new', 'home', '||period||', 'let', 'go', 'of', 'my', 'shirt', '||period||', 'come', 'on', '||period||', 'let', 'go', 'of', 'my', 'shirt', '||period||', 'this', 'shirt', 'is', 'from', "rudy's", '||period||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', '||questionmark||', '||questionmark||', '||questionmark||', 'is', 'rerunning', 'the', 'yankee', 'game', '||period||', 'you', 'watching', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'are', '||questionmark||', '||return||', '||return||', 'susan:', 'george', '||comma||', 'you', 'coming', 'to', 'bed', '||questionmark||', "i'm", 'taping', 'mad', 'about', 'you', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'yeah', '||comma||', "i'll", 'be', 'there', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'jerry:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'nothing', '||period||', 'i', 'got', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'mattingly', 'just', 'singled', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'it', 'was', 'really', 'wrong', 'of', 'you', 'to', 'back', 'out', 'on', 'that', 'deal', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'make', 'a', 'deal', '||period||', 'i', 'just', 'shook', 'your', 'hand', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', "that's", 'a', 'deal', 'where', 'i', 'come', 'from', '||period||', '||return||', '||return||', 'jerry:', 'we', 'come', 'from', 'the', 'same', 'place', '||period||', '||return||', '||return||', 'susan:', 'george', '||comma||', "i'm", 'starting', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'to', 'go', '||period||', '||return||', '||return||', 'lady:', 'roxy', '||exclammark||', 'where', 'have', 'you', 'been', '||questionmark||', "we've", 'been', 'worried', 'sick', 'about', 'you', '||period||', "what's", 'this', '||questionmark||', 'hmm', '||period||', "rudy's", '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'no', '||exclammark||', "it's", 'impossible', '||period||', "it's", 'impossible', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'i', "don't", 'know', 'how', 'it', 'happened', '||period||', 'we', 'were', 'practically', 'in', 'monticello', '||period||', 'i', 'mean', '||comma||', 'how', 'could', 'that', 'thing', 'have', 'found', 'its', 'way', 'back', '||questionmark||', "there's", 'no', 'way', '||period||', '||return||', '||return||', 'jerry:', 'very', 'strange', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'tell', 'me', 'anyway', '||period||', 'who', 'was', 'the', 'big', 'mastermind', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "can't", 'jerry', '||period||', "4i'm", 'sworn', 'to', 'secrecy', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'but', 'then', 'i', "can't", 'tell', 'you', 'the', 'big', 'news', '||period||', '||return||', '||return||', 'elaine:', 'news', '||questionmark||', 'what', 'news', '||questionmark||', '||return||', '||return||', 'jerry:', 'sorry', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'elaine', 'but', 'this', 'is', 'beyond', 'news', '||period||', 'this', 'is', 'like', 'pearl', 'harbor', '||period||', 'or', 'the', 'kennedy', 'assassination', '||period||', "it's", 'like', 'not', 'even', 'news', '||period||', "it's", 'total', 'shock', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||comma||', 'jerry', '||period||', 'please', '||comma||', 'please', '||comma||', 'please', '||comma||', 'please', '||comma||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', 'costanza', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'getting', 'married', '||exclammark||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'cop:', 'you', 'cosmo', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yes', '||period||', 'yeah', '||period||', '||return||', '||return||', 'cop:', 'you', 'recognize', 'this', 'piece', 'of', 'fabric', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', "that's", '||period||', '||period||', '||period||', '||return||', '||return||', 'cop:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'cop:', "you're", 'under', 'arrest', '||period||', '||return||', '||return||', 'kramer:', 'arrest', '||questionmark||', '||return||', '||return||', 'cop:', 'i', 'have', 'a', 'receipt', 'for', 'a', 'rental', 'car', 'with', 'your', 'signature', '||period||', 'including', 'a', 'report', 'with', 'some', 'damage', 'to', 'the', 'rear', 'seat', '||period||', 'it', 'seems', 'the', 'spring', 'was', 'so', 'compressed', 'it', 'completely', 'collapsed', 'the', 'right', 'side', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'newman', '||period||', '||return||', '||return||', 'newman:', 'what', 'took', 'you', 'so', 'long', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'what', 'do', 'you', 'think', "they'll", 'do', 'to', 'us', '||questionmark||', '||return||', '||return||', 'newman:', 'ah', '||comma||', "don't", 'worry', 'about', 'a', 'thing', '||period||', 'in', 'twenty', 'minutes', 'that', "place'll", 'be', 'swarming', 'with', 'mailmen', '||period||', "we'll", 'be', 'back', 'on', 'the', 'street', 'by', 'lunch', '||period||', '||return||', '||return||', 'elaine:', 'i', 'gotta', 'make', 'some', 'changes', '||period||', "i'm", 'not', 'a', 'woman', '||period||', "i'm", 'a', 'child', '||period||', 'what', 'kind', 'of', 'life', 'is', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'good', 'news', '||period||', 'my', 'dog', 'problem', 'has', 'been', 'solved', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "there's", 'this', 'rabbi', 'in', 'my', 'building', '||period||', "you've", 'met', 'him', '||period||', 'very', 'nice', 'man', '||period||', '||return||', '||return||', 'jerry:', "isn't", 'he', 'the', 'one', 'with', 'the', 'show', 'on', 'cable', '||questionmark||', '||return||', '||return||', 'elaine:', 'yea', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', '||period||', 'so', 'i', 'spoke', 'to', 'him', 'about', 'the', 'dog', '||period||', 'he', 'went', 'down', '||period||', 'talked', 'to', 'the', 'owner', '||period||', 'she', 'agr4eed', 'to', 'keep', 'the', 'dog', 'inside', 'from', 'now', 'on', '||period||', '||return||', '||return||', 'jerry:', "that's", 'great', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'that', 'looks', 'pretty', 'good', '||period||', '||return||', '||return||', 'elaine:', "he's", 'in', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'say', '||comma||', 'you', 'know', '||comma||', 'we', "haven't", 'even', 'discussed', "george's", 'engagement', 'yet', '||period||', '||return||', '||return||', 'elaine:', "what's", 'to', 'discuss', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||exclammark||', 'george', 'is', 'getting', 'married', '||exclammark||', '||return||', '||return||', 'elaine:', 'is', 'he', 'happy', '||questionmark||', '||return||', '||return||', '[at', 'the', 'restaurant', '||exclammark||', 'george:', 'is', 'coming', 'from', 'the', 'bathroom', 'to', 'sit', 'with', 'his', 'bride', '||dash||', 'to', '||dash||', 'be', '||period||', ']', '||return||', '||return||', 'george:', 'i', 'will', 'never', 'understand', 'the', 'bathrooms', 'in', 'this', 'country', '||period||', 'why', 'is', 'it', 'that', 'the', 'doors', 'on', 'the', 'stalls', 'do', 'not', 'come', 'all', 'the', 'way', 'down', 'to', 'the', 'floor', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'maybe', "it's", 'so', 'you', 'can', 'see', 'if', "there's", 'someone', 'in', 'there', '||period||', '||return||', '||return||', 'george:', "isn't", 'that', 'why', 'we', 'have', 'locks', 'on', 'the', 'doors', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'as', 'a', 'backup', 'system', '||comma||', 'in', 'case', 'the', 'lock', 'is', 'broken', '||comma||', 'you', 'can', 'see', 'if', "it's", 'taken', '||period||', '||return||', '||return||', 'george:', 'a', 'backup', 'system', '||questionmark||', "we're", 'designing', 'bathroom', 'doors', 'with', 'our', 'legs', 'exposed', 'in', 'anticipation', 'of', 'the', 'locks', 'not', 'working', '||questionmark||', "that's", 'not', 'a', 'system', '||period||', "that's", 'a', 'complete', 'breakdown', 'of', 'the', 'system', '||period||', '||return||', '||return||', 'susan:', 'can', 'we', 'change', 'the', 'subject', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'george:', 'why', '||questionmark||', "what's", 'wrong', 'with', 'the', 'subject', '||questionmark||', 'this', 'is', 'a', 'bad', 'subject', '||questionmark||', '||return||', '||return||', 'susan:', 'no', '||comma||', 'fine', '||period||', 'if', 'you', 'wanna', 'keep', 'talking', 'about', 'it', '||comma||', "we'll", 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'that', 'i', 'want', 'to', 'keep', 'talking', 'about', 'it', '||questionmark||', 'just', 'think', 'that', 'the', 'subject', 'should', 'resolve', 'itself', 'based', 'on', 'its', 'own', 'momentum', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'i', "didn't", 'think', 'that', 'it', 'had', 'any', 'momentum', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', 'how', 'am', 'i', 'gonna', 'do', 'this', '||questionmark||', "i'm", 'engaged', 'to', 'this', 'woman', '||questionmark||', 'she', "doesn't", 'even', 'like', 'me', '||period||', 'change', 'the', 'subject', '||questionmark||', 'toilets', 'were', 'the', 'subject', '||period||', 'we', "don't", 'even', 'share', 'the', 'same', 'interests', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'he', 'seems', 'pretty', 'happy', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "that's", 'all', 'that', 'counts', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "nothin'", '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', "don't", 'seem', 'too', 'enthused', 'about', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'do', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'at', 'least', 'have', 'some', 'reaction', 'to', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'jerry:', 'maybe', "you're", 'a', 'little', 'jealous', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'what', '||questionmark||', 'you', 'think', 'i', 'wanna', 'marry', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'but', 'maybe', 'you', 'wish', 'it', 'was', 'you', 'who', 'was', 'getting', 'married', '||comma||', 'not', 'him', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'please', '||exclammark||', 'that', 'is', 'the', 'last', 'thing', 'that', 'i', 'want', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'right', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'jerry:', 'lainy', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'wanna', 'get', 'married', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'right', '||period||', 'i', "don't", 'wanna', 'get', 'married', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', "you're", 'such', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'listen', '||comma||', 'i', 'was', 'talking', 'to', 'a', 'friend', 'about', 'this', 'dog', 'business', '||period||', 'do', 'you', 'realize', 'this', 'is', 'gonna', 'be', 'on', 'our', 'permanent', 'records', '||questionmark||', 'are', 'you', 'aware', 'of', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'dear', '||period||', '||return||', '||return||', 'kramer:', 'it', 'can', 'never', 'be', 'erased', '||period||', "it'll", 'follow', 'us', 'wherever', 'we', 'go', 'for', 'the', 'rest', 'of', 'our', 'lives', '||period||', "i'll", 'never', 'be', 'able', 'to', 'get', 'a', 'job', '||period||', 'i', 'mean', '||comma||', "doesn't", 'that', 'concern', 'you', '||questionmark||', 'everything', "i've", 'worked', 'for', '||period||', '||period||', '||period||', 'down', 'the', 'drain', 'because', 'of', 'one', 'stupid', 'mistake', '||period||', 'i', 'mean', '||comma||', "aren't", 'we', 'entitled', 'to', 'make', 'one', 'mistake', 'in', 'our', 'lives', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'gonna', 'change', 'the', 'system', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'could', 'care', 'less', '||period||', 'i', 'hope', 'it', 'is', 'on', 'our', 'record', '||period||', "i'm", 'just', 'sorry', 'they', "didn't", 'lock', 'me', 'up', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hello', '||comma||', 'rabbi', 'krischma', '||period||', '||return||', '||return||', 'rabbi:', 'elaine', '||exclammark||', 'always', 'a', 'pleasure', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', 'thanks', 'again', 'for', 'taking', 'care', 'of', 'that', 'dog', 'for', 'us', '||period||', '||return||', '||return||', 'rabbi:', 'elaine', '||comma||', 'often', 'times', 'in', 'life', 'there', 'are', 'problems', '||comma||', 'and', 'just', 'as', 'often', 'there', 'are', 'solutions', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'suppose', '||period||', '||return||', '||return||', 'rabbi:', 'elaine', '||comma||', 'you', "don't", 'seem', 'yourself', 'today', '||period||', 'you', 'seem', '||comma||', 'if', 'i', 'may', 'say', '||comma||', 'troubled', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'rabbi', '||comma||', "i'm", 'not', 'myself', '||period||', '||return||', '||return||', 'rabbi:', 'come', 'upstairs', '||period||', "we'll", 'have', 'a', 'talk', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'want', 'your', 'honest', 'opinion', 'about', 'something', '||period||', '||return||', '||return||', 'jerry:', 'have', 'i', 'ever', 'been', 'less', 'than', 'forthright', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'you', "haven't", '||period||', 'well', '||comma||', 'maybe', 'you', 'have', '||period||', 'what', 'do', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'probably', 'have', '||period||', 'yeah', '||comma||', 'of', 'course', 'i', 'have', '||period||', 'what', 'am', 'i', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'okay', '||comma||', 'tell', 'me', 'what', 'you', 'think', 'about', 'this', 'idea', 'extend', 'the', 'doors', 'on', 'the', 'toilet', 'stalls', 'at', 'yankee', 'stadium', 'all', 'the', 'way', 'to', 'the', 'floor', '||period||', '||return||', '||return||', 'jerry:', 'extend', 'the', 'doors', 'on', 'the', 'toilet', 'stalls', 'at', 'yankee', 'stadium', 'to', 'the', 'floor', '||period||', '||period||', '||period||', 'door', 'comes', 'down', '||period||', 'hides', 'your', 'feet', '||period||', 'yes', '||period||', 'i', 'like', 'it', '||period||', 'i', 'like', 'it', 'a', 'lot', '||period||', '||return||', '||return||', 'george:', "it's", 'good', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "it's", 'fantastic', '||period||', 'i', 'think', "it's", 'a', 'fantastic', 'idea', '||period||', '||return||', '||return||', 'george:', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'do', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'told', 'it', 'to', 'susan', 'before', '||comma||', 'and', 'she', "didn't", 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'not', 'only', 'that', '||comma||', 'this', 'is', 'what', 'she', 'said', 'to', 'me', '||comma||', '||quotemark||', 'can', 'we', 'change', 'the', 'subject', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'now', 'that', 'i', "don't", 'care', 'for', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', 'i', 'mean', '||comma||', "we're", 'on', 'a', 'subject', '||period||', 'why', 'does', 'it', 'have', 'to', 'be', 'changed', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'should', 'resolve', 'of', 'its', 'own', 'volition', '||period||', '||return||', '||return||', 'george:', "that's", 'exactly', 'what', 'i', 'said', '||comma||', 'except', 'i', 'used', 'the', 'word', '||quotemark||', 'momentum', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'momentum', '||dash||', 'same', 'thing', '||period||', '||return||', '||return||', 'george:', 'same', 'thing', '||period||', 'my', 'god', '||comma||', "i'm", 'getting', 'married', 'in', 'december', '||comma||', 'do', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "don't", 'see', 'how', "i'm", 'gonna', 'make', 'december', '||period||', 'i', 'mean', '||comma||', 'i', 'need', 'a', 'little', 'more', 'time', '||period||', 'i', 'mean', '||comma||', 'look', 'at', 'me', "i'm", 'a', 'nervous', 'wreck', '||period||', 'my', 'stomach', 'aches', '||period||', 'my', 'neck', 'is', 'killing', 'me', '||period||', 'i', "can't", 'turn', '||period||', 'look', '||period||', 'look', '||period||', '||return||', '||return||', 'jerry:', "you're", 'turning', '||period||', '||return||', '||return||', 'george:', 'nah', '||comma||', "it's", 'not', 'a', 'good', 'turn', '||period||', 'december', '||period||', 'december', '||period||', "don't", 'you', 'think', 'we', 'should', 'have', 'a', 'little', 'more', 'time', 'just', 'to', 'get', 'to', 'know', 'each', 'other', 'a', 'little', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'need', 'more', 'time', '||comma||', 'you', 'should', 'have', 'more', 'time', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'think', 'i', 'could', 'postpone', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', 'you', 'can', '||period||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'allowed', '||questionmark||', "you're", 'allowed', 'to', 'postpone', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'see', 'why', 'not', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'i', 'could', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||exclammark||', 'all', 'right', '||period||', "i'll", 'tell', 'you', 'what', '||period||', 'how', 'about', 'this', '||questionmark||', 'got', 'the', 'date', '||semicolon||', 'march', '21st', '||comma||', 'the', 'first', 'day', 'of', 'spring', '||period||', '||return||', '||return||', 'jerry:', 'spring', '||period||', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'huh', '||questionmark||', 'you', 'know', '||questionmark||', 'spring', '||period||', 'rejuvenation', '||period||', 'rebirth', '||period||', "everything's", 'blooming', '||period||', 'all', 'that', 'crap', '||period||', '||return||', '||return||', 'jerry:', 'beautiful', '||period||', '||return||', '||return||', 'george:', "she's", 'not', 'gonna', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "she's", 'not', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'think', "i'm", 'a', 'little', 'bit', 'scared', 'of', 'her', '||period||', "she's", 'five', '||dash||', 'three', '||comma||', 'like', 'a', 'hundred', 'pounds', '||period||', "i'm", 'frightened', 'to', 'death', 'of', 'her', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "she's", 'a', 'woman', '||period||', 'they', "don't", 'like', 'to', 'be', 'disappointed', '||period||', '||return||', '||return||', 'george:', 'especially', 'her', '||period||', 'she', 'does', 'not', 'like', 'disappointment', '||period||', 'well', '||comma||', 'i', 'have', 'to', 'do', 'it', '||period||', 'i', "can't", 'make', 'december', '||period||', "there's", 'no', 'way', 'i', 'can', 'make', 'december', '||period||', 'right', '||questionmark||', 'i', 'mean', '||comma||', 'you', 'can', 'see', 'that', '||comma||', 'right', '||questionmark||', 'i', 'mean', '||comma||', 'look', 'at', 'me', '||period||', 'look', '||period||', 'look', '||period||', 'can', 'i', 'make', 'december', '||questionmark||', 'i', "can't", 'make', 'december', '||period||', 'right', '||questionmark||', 'look', '||period||', 'look', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "you'd", 'better', 'shoot', 'for', 'march', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||period||', '||return||', '||return||', 'george:', 'march', '21st', '||period||', 'hey', '||exclammark||', 'so', '||comma||', "you're", 'gonna', 'back', 'me', 'on', 'this', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'all', 'the', 'way', '||period||', '||return||', '||return||', 'george:', 'you', 'are', 'a', 'good', 'friend', '||period||', 'you', 'know', 'what', '||questionmark||', 'even', 'if', 'you', 'killed', 'somebody', 'i', "wouldn't", 'turn', 'you', 'in', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'kramer', 'if', 'i', 'killed', 'somebody', 'would', 'you', 'turn', 'me', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'definitely', '||period||', '||return||', '||return||', 'jerry:', "you're", 'kidding', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'i', 'would', 'turn', 'you', 'in', '||period||', '||return||', '||return||', 'jerry:', 'you', 'would', 'turn', 'me', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'phwap', '||comma||', 'i', "wouldn't", 'even', 'think', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'your', 'a', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'kramer:', 'what', 'kind', 'of', 'person', 'are', 'you', 'going', 'around', 'killing', 'people', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'am', 'sure', 'i', 'had', 'a', 'good', 'reason', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', '||comma||', 'if', "you'll", 'kill', 'this', 'person', '||comma||', "who's", 'to', 'say', 'i', "wouldn't", 'be', 'next', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', 'you', 'know', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'i', 'did', '||exclammark||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'a', 'very', 'religious', 'person', 'but', 'i', 'do', 'feel', 'as', 'if', "i'm", 'in', 'need', 'of', 'some', 'guidance', 'here', '||period||', '||return||', '||return||', 'rabbi:', 'would', 'you', 'care', 'for', 'a', 'snack', 'of', 'some', 'kind', '||questionmark||', 'i', 'have', 'the', 'snackwells', 'which', 'are', 'very', 'popular', 'but', 'i', 'think', 'that', 'sometimes', 'with', 'the', 'so', 'called', 'fat', 'free', 'cookies', 'people', 'may', 'overindulge', 'forgetting', 'they', 'may', 'be', 'high', 'in', 'calories', '||return||', '||return||', 'elaine:', 'thank', 'you', 'i', 'am', 'not', 'very', 'hungry', '||period||', 'anyway', '||comma||', 'um', '||comma||', 'this', 'friend', 'of', 'mine', '||comma||', 'george', '||comma||', 'got', 'engaged', '||period||', '||return||', '||return||', 'rabbi:', 'how', 'wonderful', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'well', '||comma||', 'for', 'some', 'reason', '||comma||', 'um', '||comma||', 'i', 'just', 'find', 'myself', 'just', 'overcome', 'with', 'feelings', 'of', 'jealousy', 'and', 'resentment', '||period||', '||return||', '||return||', 'rabbi:', "doesn't", 'it', 'give', 'you', 'any', 'joy', 'to', 'see', 'your', 'friend', 'enter', 'into', 'this', 'holiest', 'of', 'unions', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', 'it', "doesn't", '||period||', 'no', 'joy', 'no', 'joy', 'whatsoever', '||period||', 'just', 'the', 'whole', 'think', 'makes', 'me', '||period||', '||period||', 'sick', '||period||', '||return||', '||return||', 'rabbi:', 'you', 'know', '||comma||', 'elaine', '||comma||', 'very', 'often', 'we', 'cannot', 'see', 'the', 'forest', 'for', 'the', 'trees', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', "don't", 'know', 'what', 'that', 'means', '||period||', '||return||', '||return||', 'rabbi:', 'well', '||comma||', 'for', 'example', '||comma||', 'say', "there's", 'a', 'forest', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'see', 'the', 'thing', 'is', 'we', 'it', 'should', 'have', 'been', 'me', '||period||', 'you', 'know', '||comma||', "i'm", 'smart', '||period||', "i'm", 'attractive', '||period||', '||return||', '||return||', 'rabbi:', 'you', 'know', 'my', 'temple', 'has', 'many', 'single', 'functions', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', "it's", 'okay', '||period||', '||return||', '||return||', 'rabbi:', 'my', 'nephew', 'alex', 'is', 'someone', 'who', 'is', 'also', 'looking', 'perhaps', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'rabbi:', 'he', 'owns', 'a', 'flower', 'store', '||period||', 'very', 'successful', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'nothing', 'but', 'a', 'stoolie', '||period||', 'admit', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "don't", 'do', 'the', 'crime', 'if', 'you', "can't", 'do', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'another', 'caf', 'latte', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'better', 'believe', 'it', '||period||', '||return||', '||return||', 'kramer:', 'since', 'when', 'are', 'you', 'so', 'trendy', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'baby', '||period||', 'i', 'set', 'the', 'trends', '||period||', 'who', 'do', 'you', 'think', 'started', 'this', 'whole', 'caf', 'latte', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'recall', 'you', 'drinking', 'caf', 'latte', '||period||', '||return||', '||return||', 'kramer:', "i've", 'been', 'drinking', 'caf', 'latte', 'since', 'the', 'fifth', 'grade', 'and', 'i', "haven't", 'looked', 'back', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'planet', '9', 'from', 'outer', 'space', 'is', 'playing', 'tomorrow', 'night', '||period||', 'one', 'show', 'only', '||period||', '||return||', '||return||', 'kramer:', "i've", 'always', 'wanted', 'to', 'see', 'this', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'was', 'supposed', 'to', 'see', 'this', 'five', 'years', 'ago', '||period||', 'i', 'was', 'in', 'a', 'chinese', 'restaurant', 'with', 'george', 'and', 'elaine', 'and', 'got', 'all', 'screwed', 'up', 'trying', 'to', 'get', 'a', 'table', 'and', 'i', 'missed', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||comma||', 'lets', 'do', 'it', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', 'jerry', '||comma||', 'dropping', 'paper', 'on', 'the', 'ground', '||period||', "that's", 'littering', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'better', 'call', 'the', 'cops', 'and', 'turn', 'me', 'in', '||period||', '||return||', '||return||', 'kramer:', 'maybe', 'i', 'will', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', '||return||', '||return||', 'susan:', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'good', '||comma||', 'good', 'day', '||period||', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'susan:', 'mine', 'was', 'okay', '||period||', 'so', "what's", "goin'", 'on', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "nothin'", 'much', '||period||', 'i', 'went', 'over', 'to', "jerry's", '||comma||', 'uh', '||comma||', 'talked', 'to', 'jerry', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'the', 'lowers', 'want', 'to', 'get', 'together', 'with', 'us', 'on', 'friday', 'night', '||period||', '||return||', '||return||', 'george:', 'the', 'lowers', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'susan:', 'you', "don't", 'want', 'to', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'want', 'to', 'go', '||period||', '||return||', '||return||', 'susan:', 'so', 'what', 'did', 'jerry', 'have', 'to', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "nothin'", 'much', '||comma||', '||period||', '||period||', '||period||', "talkin'", '||period||', '||period||', '||period||', '||period||', 'oh', '||comma||', 'oh', '||comma||', 'oh', '||comma||', 'did', 'i', 'have', 'an', 'unbelievable', 'idea', 'today', '||exclammark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'yeah', '||comma||', 'the', 'toilets', '||period||', 'you', 'told', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'ha', 'ha', '||comma||', "it's", 'not', 'the', 'toilets', '||comma||', "it's", 'not', 'the', 'toilets', '||period||', "it's", 'something', 'else', '||period||', 'are', 'you', 'ready', 'for', 'this', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'how', 'about', 'this', '||questionmark||', 'all', 'right', '||comma||', 'we', 'get', 'married', 'march', '21st', '||comma||', 'the', 'first', 'day', 'of', 'spring', '||period||', '||return||', '||return||', 'susan:', 'what', 'do', 'you', 'mean', '||questionmark||', 'you', 'want', 'to', 'postpone', 'the', 'wedding', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', 'no', "it's", 'not', 'about', 'postponing', '||period||', 'i', 'just', 'think', 'the', 'first', 'day', 'of', 'spring', 'is', 'the', 'perfect', 'day', 'to', 'get', 'married', '||period||', 'you', 'know', '||comma||', 'spring', '||exclammark||', 'rejuvenation', '||exclammark||', 'rebirth', '||exclammark||', 'everything', 'is', 'blooming', 'all', 'the', '||return||', '||return||', 'susan:', 'if', 'you', "don't", 'want', 'to', 'marry', 'me', '||comma||', 'george', '||comma||', 'just', 'say', 'so', '||period||', '||leftparen||', 'crying', '||rightparen||', 'say', 'so', '||period||', '||return||', '||return||', 'george:', 'still', 'marry', '||comma||', 'still', 'marry', '||period||', '||return||', '||return||', 'susan:', 'you', "don't", 'love', 'me', '||period||', '||return||', '||return||', 'george:', 'sstill', 'love', '||period||', 'still', 'love', '||period||', '||return||', '||return||', 'susan:', 'my', 'parents', 'told', 'me', 'you', 'were', 'too', 'neurotic', 'and', 'that', 'i', 'was', 'making', 'a', 'mistake', '||period||', '||return||', '||return||', 'george:', 'no', 'no', 'no', '||comma||', 'no', 'mistake', '||comma||', 'no', 'mistake', '||period||', 'no', '||comma||', 'no', '||comma||', 'listen', '||comma||', "we're", 'going', 'to', 'get', 'married', 'over', 'christmas', '||comma||', 'i', 'it', "doesn't", 'make', 'any', 'difference', 'to', 'me', '||period||', "it's", 'fine', '||period||', 'really', '||period||', '||return||', '||return||', 'susan:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'sure', '||comma||', 'christmas', '||period||', 'snow', '||period||', 'santa', '||period||', 'all', 'that', 'stuff', '||period||', '||return||', '||return||', 'jerry:', 'let', 'me', 'take', 'a', 'guess', '||period||', 'she', 'cried', 'and', 'you', 'caved', '||period||', '||return||', '||return||', 'george:', 'how', 'did', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'live', 'and', 'breath', 'my', 'friend', '||period||', '||period||', '||period||', '||period||', 'i', 'live', 'and', 'breath', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'to', 'tell', 'you', 'i', 'felt', 'terrible', '||period||', 'i', 'really', 'thought', 'she', 'was', 'going', 'to', 'collapse', 'and', 'kill', 'herself', '||period||', '||return||', '||return||', 'jerry:', 'tes', '||comma||', "it's", 'very', 'difficult', '||period||', 'few', 'men', 'have', 'the', 'constitution', 'for', 'it', '||period||', "that's", 'why', 'breakups', 'take', 'two', 'or', 'three', 'tries', '||period||', 'you', 'gotta', 'build', 'up', 'your', 'immunity', '||period||', '||return||', '||return||', 'george:', 'you', 'see', 'those', 'tears', 'streaming', 'down', 'you', "don't", 'know', 'what', 'to', 'do', '||period||', 'it', 'was', 'like', 'she', 'was', 'on', 'fire', 'and', 'i', 'was', 'trying', 'to', 'put', 'her', 'out', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'at', 'least', 'you', 'probably', 'had', 'some', '||comma||', 'uh', '||comma||', 'pretty', 'good', 'make', '||dash||', 'up', 'sex', 'after', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'have', 'any', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'have', 'make', '||dash||', 'up', 'sex', '||questionmark||', 'how', 'could', 'you', 'not', 'have', 'make', '||dash||', 'up', 'sex', '||questionmark||', 'i', 'mean', "that's", 'the', 'best', 'feature', 'of', 'the', 'heavy', 'relationship', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'have', 'make', '||dash||', 'up', 'sex', '||period||', '||return||', '||return||', 'jerry:', 'in', 'your', 'situation', 'the', 'only', 'sex', "you're", 'going', 'to', 'have', 'better', 'than', 'make', '||dash||', 'up', 'sex', 'is', 'if', "you're", 'dent', 'to', 'prison', 'and', 'you', 'have', 'a', 'conjugal', 'visit', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'conjugal', 'visit', 'sex', '||period||', 'that', 'is', 'happening', '||exclammark||', '||return||', '||return||', 'woman:', '||leftparen||', 'crying', '||rightparen||', '||return||', '||return||', 'man:', 'i', 'can', 'tell', "you're", 'very', 'upset', 'but', "i'm", 'sorry', "i'm", 'not', "goin'", '||return||', '||return||', 'george:', 'did', 'you', 'here', 'that', '||questionmark||', 'i', "can't", 'believe', 'this', "he's", 'eating', 'his', 'sandwich', '||period||', '||return||', '||return||', 'man:', 'are', 'you', 'going', 'to', 'eat', 'thoise', 'fries', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'amazing', '||period||', '||leftparen||', 'george', 'gets', 'up', 'to', 'leave', 'and', "shake's", "man's", 'hand', '||rightparen||', 'thank', 'you', '||period||', 'thank', 'you', 'very', 'much', '||period||', '||period||', '||period||', '||period||', "i'm", 'going', 'back', 'in', '||exclammark||', '||period||', '||period||', '||period||', "you'll", 'feel', 'better', '||leftparen||', 'to', 'woman', '||rightparen||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'poor', 'bastard', '||period||', '||return||', '||return||', 'jerry:', 'good', 'evening', '||comma||', 'rabbi', '||period||', '||return||', '||return||', 'rabbi:', 'good', 'evening', '||period||', 'and', 'how', 'does', 'this', 'evening', 'find', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'rabbi', '||comma||', 'well', '||period||', '||return||', '||return||', 'rabbi:', 'i', 'trust', 'you', 'are', 'here', 'to', 'see', 'your', 'friend', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'rabbi:', 'i', 'hope', "she's", 'feeling', 'better', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'rabbi:', 'she', "didn't", 'tell', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'rabbi:', 'well', 'it', 'seems', 'the', 'engagement', 'of', 'her', 'ffriend', 'george', 'has', 'left', 'her', 'feeling', 'bitter', 'and', 'hostile', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'so', '||questionmark||', '||return||', '||return||', 'rabbi:', 'yes', '||comma||', 'in', 'fact', 'she', 'told', 'me', 'that', 'she', 'wishes', 'she', 'was', 'the', 'one', 'getting', 'married', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'rabbi:', 'she', 'came', 'off', 'as', 'pretty', 'desperate', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'any', 'of', 'this', '||period||', '||return||', '||return||', 'rabbi:', 'apparently', 'she', "doesn't", 'think', 'much', 'of', 'this', 'george', 'fellow', 'either', '||period||', 'i', 'recall', 'the', 'word', 'loser', 'peppered', 'throughout', 'her', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'hum', '||comma||', 'well', 'it', 'all', 'comes', 'as', 'news', 'to', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'enters', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'susan:', 'hi', '||comma||', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'good', '||comma||', 'good', 'day', '||period||', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'susan:', 'ah', '||comma||', 'it', 'was', 'okay', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'nothing', 'much', '||period||', 'you', 'know', '||comma||', 'i', 'went', 'over', 'to', "jerry's", '||period||', 'talked', 'to', 'jerry', '||period||', 'um', '||comma||', 'could', 'i', 'talk', 'to', 'you', 'for', 'a', 'minute', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'george:', 'you', 'see', 'this', 'is', 'the', 'thing', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'crying', '||rightparen||', 'i', 'just', 'feel', '||period||', '||period||', '||period||', 'mumble', '||comma||', 'cry', '||comma||', 'mumble', '||comma||', '||period||', '||period||', '||period||', "i'm", 'scared', '||period||', 'you', 'and', 'i', 'together', '||comma||', '||leftparen||', 'cry', '||rightparen||', '||return||', '||return||', 'susan:', 'george', '||comma||', 'of', 'course', '||comma||', 'of', 'course', 'it', 'can', 'wait', 'until', 'march', 'if', 'that', 'is', 'what', 'you', 'want', '||period||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', "don't", 'worry', 'your', 'head', '||period||', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||leftparen||', 'smiles', 'behind', 'her', 'back', '||rightparen||', '||return||', '||return||', 'elaine:', "i've", 'got', 'that', 'magazine', 'article', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'you', 'iknow', 'i', 'talked', 'to', 'the', 'rabbi', 'outside', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', '||return||', '||return||', 'jerry:', 'understand', 'you', 'had', 'a', 'little', 'talk', 'with', 'him', 'too', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'talked', 'earlier', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'he', "didn't", 'mention', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', 'he', 'did', '||period||', '||return||', '||return||', 'elaine:', 'he', 'told', 'you', 'about', 'our', 'conversation', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'had', 'quite', 'a', 'little', 'chat', '||period||', '||return||', '||return||', 'elaine:', 'he', 'told', 'you', 'about', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'about', 'how', "you're", 'very', 'jealous', 'of', 'george', '||period||', 'how', 'you', 'wished', 'it', 'was', 'you', 'who', 'were', 'getting', 'married', 'instead', 'of', 'him', '||period||', '||return||', '||return||', 'elaine:', 'he', 'told', 'you', 'all', 'that', '||questionmark||', 'how', 'could', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', "didn't", 'take', 'much', 'prodding', 'either', '||comma||', 'i', 'must', 'say', '||period||', '||return||', '||return||', 'elaine:', 'can', 'he', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'did', 'it', '||period||', '||return||', '||return||', 'elaine:', 'but', "he's", 'a', 'rabbi', '||exclammark||', 'how', 'can', 'a', 'rabbi', 'have', 'such', 'a', 'big', 'mouth', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", "what's", 'so', 'fascinating', '||period||', '||return||', '||return||', 'jerry:', 'you', 'better', 'finish', 'your', 'little', 'caf', 'latte', 'there', '||period||', 'they', "won't", 'let', 'you', 'in', 'with', 'it', '||period||', '||return||', '||return||', 'kramer:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'they', "don't", 'allow', 'outside', 'drinks', 'into', 'the', 'movie', '||period||', '||return||', '||return||', 'kramer:', 'well', "that's", 'stupid', '||return||', '||return||', 'jerry:', "that's", 'the', 'rule', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "we'll", 'just', 'see', 'if', 'we', "can't", 'get', 'around', 'that', '||period||', '||return||', '||return||', 'rabbi:', 'oh', '||comma||', 'elaine', '||period||', 'come', 'in', '||period||', 'come', 'in', '||period||', 'so', 'nice', 'to', 'see', 'you', 'again', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||return||', '||return||', 'rabbi:', 'can', 'i', 'offere', 'you', 'some', 'kasha', 'varnishkas', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'listen', '||comma||', 'rabbi', '||comma||', "i'd", 'like', 'to', 'ask', 'you', 'a', 'question', '||period||', 'why', '||comma||', 'why', 'did', 'you', 'tell', 'my', 'friend', 'jerry', 'what', 'i', 'talked', 'to', 'you', 'about', '||questionmark||', '||return||', '||return||', 'rabbi:', 'was', 'that', 'a', 'problem', 'for', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'of', 'course', 'it', 'was', 'a', 'problem', 'for', 'me', '||period||', '||period||', '||period||', '||period||', 'you', "didn't", '||comma||', 'you', "didn't", 'tell', 'anyone', 'else', 'about', 'this', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'rabbi:', 'well', '||comma||', "let's", 'see', '||questionmark||', 'i', 'seem', 'to', 'recall', 'a', 'conversation', 'with', 'mrs', '||period||', 'winston', 'in', '1f', '||period||', '||return||', '||return||', 'elaine:', 'mrs', '||period||', 'winston', '||questionmark||', '||return||', '||return||', 'rabbi:', 'yes', '||comma||', 'we', 'were', 'waiting', 'for', 'our', 'mail', 'to', 'arrive', 'and', 'i', 'happened', 'to', 'mention', 'to', 'her', 'how', 'you', 'felt', 'that', 'it', 'was', 'never', 'going', '||quotemark||', 'to', 'happen', '||quotemark||', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'don', 'ramsey', '||questionmark||', 'you', "didn't", 'mention', 'anything', 'to', 'him', 'did', 'you', '||questionmark||', '||return||', '||return||', 'rabbi:', 'don', 'ramsey', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'that', 'tall', 'really', 'good', 'looking', 'guy', '||comma||', 'he', 'lives', 'on', 'the', 'fifth', 'floor', '||period||', '||return||', '||return||', 'rabbi:', 'oh', 'him', '||exclammark||', 'well', 'this', 'morning', 'i', 'found', 'myself', 'in', 'the', 'elevator', 'with', 'him', '||return||', '||return||', 'elaine:', 'my', 'god', '||comma||', 'you', "didn't", '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', 'pardon', 'me', '||comma||', 'excuse', 'me', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yow', '||comma||', 'oow', 'ah', '||exclammark||', '||return||', '||return||', 'usher:', 'hey', '||comma||', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', 'what', 'just', 'happened', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'nothing', 'nothing', '||period||', '||return||', '||return||', 'usher:', 'whatya', 'got', '||questionmark||', 'one', 'of', 'those', 'caf', "latte's", 'in', 'your', 'shirt', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'have', 'anything', '||period||', 'ask', 'him', '||period||', '||return||', '||return||', 'usher:', 'all', 'right', '||comma||', 'come', 'on', 'coffee', 'boy', '||comma||', 'bring', 'it', 'out', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'usher:', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'kramer:', 'ow', '||return||', '||return||', 'elaine:', 'but', 'the', 'whole', 'thing', 'is', 'a', 'mess', '||period||', 'he', 'told', 'everyone', 'in', 'the', 'building', '||period||', 'i', 'met', 'that', 'cute', 'guy', 'on', 'the', 'fifth', 'floor', '||period||', 'i', 'mean', 'he', 'could', 'barely', 'bring', 'himself', 'to', 'nod', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'if', 'i', 'could', 'say', 'a', 'word', 'here', 'about', 'jewish', 'people', '||period||', 'that', 'man', 'in', 'no', 'way', 'represents', 'our', 'ability', 'to', 'take', 'in', 'a', 'nice', 'piece', 'of', 'juicy', 'gossip', 'and', 'keep', 'it', 'to', 'ourselves', '||period||', '||return||', '||return||', 'elaine:', 'you', "didn't", 'say', 'this', 'to', 'george', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', '||period||', '||period||', '||period||', 'about', 'how', 'you', 'wish', 'it', 'was', 'you', 'who', 'was', 'getting', 'married', 'instead', 'of', 'him', '||questionmark||', 'feelings', 'of', 'resentment', '||comma||', 'hostility', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', 'that', '||exclammark||', 'so', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'georgie', '||exclammark||', 'congratulations', '||exclammark||', 'oh', '||comma||', 'my', 'god', '||period||', 'i', "haven't", 'seen', 'you', 'since', 'it', 'happened', '||period||', "i'm", 'so', 'happy', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||period||', 'you', 'really', '||comma||', 'really', 'deserve', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'deserve', '||exclammark||', 'i', "don't", 'know', 'if', 'i', 'deserve', '||period||', '||period||', '||period||', 'i', 'mean', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'kidding', '||questionmark||', 'i', 'have', 'seen', 'the', 'changes', 'in', 'you', 'the', 'past', 'couple', 'of', 'years', '||period||', 'man', '||comma||', 'you', 'have', 'grown', '||period||', "you've", 'matured', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'guess', "i'm", 'getting', 'older', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'well', '||comma||', 'i', 'just', 'think', "it's", 'wonderful', '||period||', 'honestly', '||exclammark||', "i've", 'gotta', 'run', '||comma||', 'but', 'um', '||comma||', 'please', '||comma||', 'please', 'give', 'my', 'best', 'to', 'susan', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'my', 'most', '||comma||', 'just', 'heartfelt', 'congratulations', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'thanks', '||period||', 'hey', '||comma||', 'listen', '||comma||', 'if', 'you', 'ever', 'get', 'a', 'date', '||comma||', 'maybe', 'the', 'four', 'of', 'us', 'could', 'go', 'out', 'together', 'sometime', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', 'yes', '||comma||', 'yes', '||period||', 'sure', '||period||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'as', 'a', 'matter', 'of', 'fact', '||comma||', "wasn't", 'there', 'some', 'guy', 'in', 'your', 'building', 'that', 'you', 'said', 'you', 'liked', '||questionmark||', 'he', 'lived', 'up', 'on', 'the', 'fifth', 'floor', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||period||', 'yes', '||comma||', 'yes', '||period||', 'yes', '||period||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'boy', '||comma||', 'she', 'is', 'something', '||comma||', "isn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "she's", 'something', 'else', '||period||', 'hey', '||comma||', 'so', 'what', 'happened', '||questionmark||', 'did', 'you', 'hold', 'your', 'ground', 'or', '||period||', '||period||', '||period||', 'uh', '||return||', '||return||', 'george:', 'nope', '||period||', 'i', 'wept', 'like', 'a', 'baby', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'started', 'to', 'tell', 'her', 'and', 'then', 'all', 'of', 'the', 'sudden', '||comma||', 'for', 'some', 'reason', '||comma||', 'i', 'just', 'burst', 'into', 'tears', '||period||', '||return||', '||return||', 'jerry:', 'you', 'cried', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'bawled', 'uncontrollably', '||period||', 'i', 'just', 'poured', 'my', 'guts', 'out', '||period||', 'and', "i'll", 'tell', 'you', '||comma||', 'jerry', '||comma||', 'it', 'was', 'incredible', '||period||', 'i', 'never', 'realized', 'how', 'powerful', 'these', 'tears', 'are', '||period||', 'i', 'could', 'have', 'postponed', 'it', 'another', 'five', 'years', 'if', 'i', 'wanted', 'to', '||period||', '||return||', '||return||', 'jerry', '||comma||', 'george', '||comma||', '&', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'sorry', 'about', 'that', 'movie', '||dash||', 'thing', '||period||', 'i', 'was', 'joking', 'around', '||period||', '||return||', '||return||', 'kramer:', 'sorry', '||questionmark||', 'are', 'you', 'kidding', '||questionmark||', 'you', 'did', 'me', 'the', 'biggest', 'favor', 'of', 'my', 'life', '||period||', 'i', 'spoke', 'to', 'a', 'lawyer', '||comma||', "we're", 'suing', 'for', 'millions', '||period||', '||return||', '||return||', 'jerry:', 'suing', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'coffee', 'was', 'too', 'hot', '||period||', '||return||', '||return||', 'jerry:', "it's", 'supposed', 'to', 'be', 'hot', '||period||', '||return||', '||return||', 'kramer:', 'not', 'that', 'hot', '||period||', '||return||', '||return||', 'rabbi:', '||leftparen||', 'on', 'tv', '||rightparen||', 'the', 'prophet', 'isaah', 'tells', 'us', 'without', 'friends', 'our', 'lives', 'are', 'empty', 'and', 'meaningless', '||period||', '||return||', '||return||', 'george:', 'wait', '||period||', 'whoa', '||exclammark||', "that's", 'the', 'rabbi', 'from', "elaine's", 'building', '||period||', 'i', 'just', 'met', 'this', 'guy', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'rabbi:', 'a', 'young', 'lady', 'i', 'know', '||comma||', "let's", 'call', 'her', 'elaine', '||comma||', 'happened', 'to', 'find', 'herself', 'overwhelmed', 'with', 'feelings', 'of', 'resentment', 'and', 'hostility', 'for', 'her', 'friend', '||comma||', "let's", 'call', 'him', 'george', '||period||', 'she', 'felt', 'that', 'george', 'was', 'somewhat', 'of', 'a', 'loser', 'and', 'that', 'she', 'was', 'the', 'one', 'who', 'deserved', 'to', 'be', 'married', 'first', '||period||', 'she', 'also', 'happened', 'to', 'mention', 'to', 'me', 'that', 'her', 'friend', 'had', 'wondered', 'if', 'going', 'to', 'a', 'prostitute', 'while', "you're", 'engaged', 'is', 'considered', 'cheating', '||period||', 'his', 'feeling', 'was', "they're", 'never', 'going', 'to', 'see', 'each', 'other', 'again', 'so', "what's", 'the', 'difference', '||period||', 'but', 'that', 'is', 'a', 'subject', 'for', 'another', 'sermon', '||period||', 'now', '||comma||', "i'd", 'like', 'to', 'close', 'with', 'a', 'psalm', '||period||', '||return||', '||return||', '[setting:', 'booth', 'at', "monk's", 'cafe]', '||return||', '||return||', 'george:', 'and', 'then', 'i', 'hear', 'this', 'rabbi', 'on', 'television', '||comma||', 'i', 'mean', 'imagine', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'really', 'sorry', 'george', '||comma||', 'i', '||comma||', 'i', '||comma||', 'i', "wasn't", 'jealous', 'of', 'you', '||period||', 'it', 'was', 'just', 'the', 'whole', 'marriage', 'thing', '||period||', '||return||', '||return||', 'george:', 'ya', 'know', '||comma||', 'i', 'was', 'just', 'a', 'little', 'surprised', '||period||', '||return||', '||return||', 'jerry:', 'why', 'would', 'anyone', 'eat', 'canned', 'fruit', '||questionmark||', 'i', 'mean', 'can', 'anybody', 'answer', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'about', 'all', 'the', 'loser', 'stuff', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'where', 'the', 'rabbi', 'got', 'that', '||period||', 'ya', 'know', 'i', 'never', 'said', 'that', '||period||', 'i', 'said', '||quotemark||', "i've", 'never', 'seen', 'you', 'looser', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'see', 'the', 'can', 'if', "you're", 'in', 'the', 'army', '||comma||', 'but', 'fresh', 'fruit', "it's", 'available', '||comma||', "it's", 'there', '||comma||', "it's", '2', 'aisles', 'over', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', 'well', '||comma||', 'scintillating', 'as', 'always', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'going', 'shopping', 'with', 'susan', '||period||', '||return||', '||return||', 'elaine:', 'what', 'kind', 'of', 'shopping', '||questionmark||', '||return||', '||return||', 'george:', 'clothes', 'shopping', '||period||', '||return||', '||return||', 'elaine:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', "ross'", '||period||', '||return||', '||return||', 'elaine:', 'oh', "that's", 'a', 'nice', 'store', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "it's", 'her', "uncle's", '||period||', '||return||', '||return||', 'jerry:', 'discount', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'as', 'he', 'leaves', '||rightparen||', 'one', 'would', 'hope', '||period||', '||return||', '||return||', '[setting:', 'jackie', "child's", 'office]', '||return||', '||return||', 'kramer:', 'so', 'ya', 'know', '||comma||', 'my', 'friend', 'and', 'i', 'we', 'were', 'going', 'to', 'the', 'movies', 'and', 'we', 'stopped', 'off', 'and', 'bought', 'this', 'cafe', 'latte', '||period||', '||return||', '||return||', 'jackie:', '||leftparen||', 'agreeing', '||rightparen||', 'hm', 'hm', '||period||', 'oh', 'what', 'is', 'that', 'like', 'italian', 'coffee', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', "that's", 'right', '||period||', '||return||', '||return||', 'jackie:', 'half', 'milk', '||comma||', 'half', 'coffee', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jackie:', 'hm', 'hm', '||period||', 'you', 'take', 'a', 'sip', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', 'i', 'did', '||period||', '||return||', '||return||', 'jackie:', 'now', 'when', 'you', 'took', 'a', 'sip', '||comma||', 'did', 'you', 'notice', 'it', 'was', 'hot', '||questionmark||', 'were', 'you', 'able', 'to', 'sip', 'it', 'in', 'your', 'normal', 'fashion', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'i', "wasn't", 'able', 'to', 'sip', 'it', 'in', 'my', 'normal', 'fashion', '||period||', '||return||', '||return||', 'jackie:', 'hm', 'hm', '||period||', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'you', 'take', 'big', 'sips', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'think', 'i', 'take', 'a', 'normal', 'sip', '||period||', '||return||', '||return||', 'jackie:', 'o', '||period||', 'k', '||period||', 'you', 'take', 'normal', 'sips', '||period||', 'nothing', 'wrong', 'with', 'that', '||period||', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'know', 'ahh', '||comma||', 'they', "don't", 'allow', 'outside', 'drinks', 'in', 'the', 'movie', 'theater', '||period||', 'so', 'i', 'had', 'to', 'put', 'it', 'in', 'my', 'shirt', 'and', 'sneak', 'it', 'in', '||period||', '||return||', '||return||', 'jackie:', 'yeah', '||comma||', 'see', 'they', 'like', 'to', 'sell', 'their', 'own', 'coffee', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'now', 'is', 'that', 'going', 'to', 'be', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'jackie:', 'yeah', "that's", 'going', 'to', 'be', 'a', 'problem', '||period||', "it's", 'gonna', 'be', 'a', 'problem', 'for', 'them', '||period||', 'this', 'a', 'clear', 'violation', 'of', 'your', 'rights', 'as', 'a', 'consumer', '||period||', "it's", 'an', 'infringement', 'on', 'your', 'constitutional', 'rights', '||period||', "it's", 'outrageous', '||comma||', 'egregious', '||comma||', 'preposterous', '||period||', '||return||', '||return||', 'kramer:', "it's", 'definitely', 'preposterous', '||period||', '||return||', '||return||', 'jackie:', 'so', '||period||', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'ahh', '||period||', 'i', 'was', 'trying', 'to', 'get', 'to', 'my', 'seat', 'and', 'i', 'had', 'to', 'step', 'over', 'someone', 'and', 'i', 'kind', 'of', 'got', 'pushed', 'and', 'it', 'spilled', 'on', 'me', '||period||', '||return||', '||return||', 'jackie:', 'was', 'there', 'a', 'top', 'on', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jackie:', 'now', 'did', 'you', 'put', 'the', 'top', 'on', 'or', 'did', 'they', 'put', 'the', 'top', 'on', 'for', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'they', 'put', 'the', 'top', 'on', '||period||', '||return||', '||return||', 'jackie:', 'and', 'they', 'made', 'the', 'top', '||period||', 'you', "didn't", 'make', 'the', 'top', 'did', 'you', '||questionmark||', '||return||', '||return||', 'jackie:', '||leftparen||', 'to', 'secretary', 'over', 'intercom', '||rightparen||', 'suzie', '||period||', 'i', 'want', 'you', 'to', 'go', 'down', 'to', 'java', 'world', '||period||', 'get', 'me', 'a', 'cafe', 'latte', 'with', 'a', 'top', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', "we're", 'gonna', 'run', 'some', 'test', 'on', 'that', 'top', '||period||', 'have', 'you', 'been', 'to', 'the', 'doctor', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', 'no', 'no', '||comma||', 'i', "haven't", '||period||', '||return||', '||return||', 'jackie:', '||leftparen||', 'to', 'secretary', 'over', 'intercom', '||rightparen||', 'suzie', '||period||', 'call', 'dr', '||period||', 'bison', '||period||', 'set', 'up', 'an', 'appointment', 'for', 'mr', '||period||', 'kramer', 'here', '||period||', 'tell', 'him', "it's", 'from', 'me', '||period||', '||return||', '||return||', 'kramer:', 'so', 'ah', '||comma||', 'what', 'do', 'you', 'think', 'mr', '||period||', 'chiles', '||period||', '||return||', '||return||', 'jackie:', 'jackie', '||period||', '||return||', '||return||', 'kramer:', 'jackie', '||period||', 'i', 'mean', '||comma||', 'we', 'have', 'a', 'chance', '||questionmark||', '||return||', '||return||', 'jackie:', 'do', 'we', 'have', 'a', 'chance', '||questionmark||', 'you', 'get', 'me', 'one', 'coffee', 'drinker', 'on', 'that', 'jury', '||comma||', 'you', 'gonna', 'walk', 'outta', 'there', 'a', 'rich', 'man', '||period||', '||return||', '||return||', '[setting:', "ross'", 'clothing', 'store]', '||return||', '||return||', 'george:', 'i', "don't", 'like', 'it', '||comma||', "it's", 'red', '||period||', 'it', "it's", 'too', 'flashy', '||period||', '||return||', '||return||', 'susan:', 'well', 'you', 'could', 'use', 'a', 'little', 'flash', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "don't", 'change', 'me', '||period||', 'susan', '||period||', "don't", 'change', 'me', '||period||', 'ya', 'know', 'there', 'are', 'a', 'lot', 'of', 'woman', 'that', 'would', 'love', 'to', 'be', 'in', 'your', 'position', 'right', 'now', '||period||', '||return||', '||return||', 'susan:', 'name', 'one', '||period||', '||return||', '||return||', 'mr', 'ross:', 'so', '||comma||', 'you', 'find', 'anything', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', "he's", 'impossible', 'to', 'shop', 'for', 'uncle', 'ned', '||period||', '||return||', '||return||', 'mr', 'ross:', "i'm", 'going', 'on', 'vacation', 'to', 'costa', 'rica', '||period||', 'maybe', "i'll", 'see', 'you', 'in', 'a', 'couple', 'of', 'weeks', '||period||', '||return||', '||return||', 'susan:', 'o', '||period||', 'k', '||period||', '||return||', '||return||', 'salesman:', 'excuse', 'me', 'mr', 'ross', '||period||', '||return||', '||return||', 'george:', 'see', 'now', 'this', 'i', "don't", 'get', '||period||', '||return||', '||return||', 'susan:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'security', 'guard', '||period||', '||return||', '||return||', 'susan:', 'what', 'about', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'does', 'he', 'have', 'to', 'stand', '||questionmark||', '||return||', '||return||', 'susan:', 'because', "he's", 'a', 'security', 'guard', '||period||', '||return||', '||return||', 'george:', 'but', 'i', 'mean', 'look', 'at', 'him', '||period||', "he's", 'gotta', 'be', 'on', 'his', 'feet', 'like', 'that', 'all', 'day', '||questionmark||', "that's", 'brutal', '||period||', 'i', 'think', "i'm", 'gonna', 'say', 'something', 'to', 'your', 'uncle', '||period||', '||return||', '||return||', 'susan:', 'george', '||comma||', 'you', 'just', 'met', 'him', '||period||', "don't", 'say', 'anything', 'to', 'him', '||period||', '||return||', '||return||', 'george:', "aren't", 'you', 'concerned', 'about', 'the', 'security', 'guard', '||questionmark||', '||return||', '||return||', 'susan:', 'not', 'really', '||period||', '||leftparen||', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'thinking', 'to', 'himself', '||rightparen||', "she's", 'not', 'concerned', 'about', 'the', 'security', 'guard', '||period||', 'what', 'kind', 'of', 'a', 'person', 'is', 'this', '||questionmark||', "i'm", 'marrying', 'a', 'person', 'who', "doesn't", 'care', 'that', 'this', 'man', 'has', 'to', 'stand', 'here', '8', 'hours', 'a', 'day', 'when', 'he', 'could', 'easily', 'be', 'sitting', '||period||', '||return||', '||return||', 'susan:', 'all', 'right', 'george', '||period||', '||leftparen||', 'she', 'puts', 'the', 'red', 'shirt', 'up', 'to', 'him', 'again', '||rightparen||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', '[setting:', 'elaine', 'and', 'jerry', 'are', 'in', "jerry's", 'apartment', '||period||', ']', '||return||', '||return||', 'jerry:', 'so', 'ah', '||comma||', 'what', 'did', 'you', 'do', 'last', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'nothing', '||comma||', 'but', 'what', 'did', 'you', 'actually', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'literally', 'nothing', '||period||', 'i', 'sat', 'in', 'a', 'chair', 'and', 'i', 'stared', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'that', 'really', 'is', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'i', 'told', 'ya', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'all', 'dressed', 'up', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'ah', 'just', 'came', 'from', 'a', 'meeting', 'with', 'my', 'lawyer', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', "how's", 'that', 'looking', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', "i'll", 'tell', 'you', 'how', "it's", 'looking', '||period||', 'my', 'lawyer', 'jackie', 'says', 'if', 'there', 'is', 'one', 'coffee', 'drinker', 'on', 'that', 'jury', '||comma||', '||leftparen||', 'in', 'a', 'very', 'high', 'voice', '||rightparen||', "i'm", 'gonna', 'be', 'a', 'rich', 'man', '||period||', '||return||', '||return||', 'elaine:', "that's", 'despicable', '||period||', 'how', 'does', 'he', 'know', 'how', 'all', 'coffee', 'drinkers', 'will', 'vote', '||questionmark||', "i'm", 'a', 'coffee', 'drinker', '||period||', 'if', 'i', 'was', 'on', 'that', 'jury', 'i', "wouldn't", 'give', 'you', 'a', 'nickel', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'you', "wouldn't", 'be', 'on', 'that', 'jury', '||period||', 'he', 'would', 'have', 'weeded', 'you', 'out', '||period||', '||return||', '||return||', 'jerry:', 'frankly', "i'm", 'surprised', "you're", 'so', 'litigious', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'can', 'be', 'quite', 'litigious', '||period||', '||return||', '||return||', 'elaine:', 'what', 'i', 'mean', 'who', 'ever', 'heard', 'of', 'this', 'anyway', '||questionmark||', 'suing', 'a', 'company', 'because', 'there', 'coffee', 'is', 'too', 'hot', '||questionmark||', 'coffee', 'is', 'supposed', 'to', 'be', 'hot', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'but', 'jackie', 'says', 'the', 'top', 'was', 'faulty', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mocking', '||rightparen||', 'jackie', 'says', 'the', 'top', 'was', 'faulty', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'maestro', '||exclammark||', '||return||', '||return||', 'maestro:', 'ah', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'in', 'here', '||period||', "how's", 'it', 'going', '||period||', '||return||', '||return||', 'maestro:', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'bob', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'apologetically', '||rightparen||', 'oh', '||comma||', "i'm", 'sorry', '||period||', 'maestro', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'is', 'a', 'surprise', 'ha', '||questionmark||', '||return||', '||return||', 'maestro:', 'i', 'just', 'wanted', 'to', 'drop', 'off', 'this', 'chinese', 'balm', 'for', 'your', 'burns', '||period||', "it's", 'supposed', 'to', 'be', 'great', 'stuff', '||period||', "it's", 'all', 'herbal', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'maestro', '||comma||', 'you', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'you', "don't", 'have', 'to', 'do', 'this', '||period||', 'do', 'you', 'believe', 'this', 'maestro', '||questionmark||', '||return||', '||return||', 'maestro:', "it's", 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'ya', 'know', 'you', "haven't", 'been', 'around', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'maestro:', 'oh', 'yeah', '||comma||', "i've", 'been', 'at', 'my', 'house', 'in', 'tuscany', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'tuscany', 'huh', '||questionmark||', 'hear', 'that', 'jerry', '||questionmark||', "that's", 'in', 'italy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'hear', "it's", 'ah', 'beautiful', 'there', '||period||', '||return||', '||return||', 'maestro:', 'well', 'if', "you're", 'thinking', 'of', 'getting', 'a', 'place', 'there', "don't", 'bother', '||period||', "there's", 'really', 'nothing', 'available', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surprised', '||rightparen||', 'huh', '||questionmark||', '||return||', '||return||', 'maestro:', '||leftparen||', 'seeing', 'elaine', '||rightparen||', 'oh', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'maestro:', 'well', 'hello', '||period||', 'and', 'who', 'might', 'you', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'might', 'be', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'a', '||comma||', 'bob', 'cobb', '||period||', '||return||', '||return||', 'kramer:', 'maestro', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'maestro', '||period||', '||return||', '||return||', 'maestro:', 'it', 'is', 'my', 'very', 'great', 'pleasure', '||period||', '||leftparen||', 'kisses', "elaine's", 'hand', '||rightparen||', '||return||', '||return||', 'elaine:', 'enchante', '||period||', '||return||', '||return||', 'maestro', 'and', 'elaine', '||leftparen||', 'simultaneously', '||rightparen||', ':', 'well', 'i', 'have', 'to', 'be', 'going', '||period||', '||return||', '||return||', 'elaine:', 'jinx', 'buy', 'me', 'a', 'coke', '||period||', '||return||', '||return||', 'maestro:', 'oh', '||period||', 'love', 'it', 'when', 'that', 'happeneds', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', 'i', 'know', '||period||', 'that', 'is', 'so', 'ahh', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'maestro:', 'coincidental', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'thanks', '||period||', 'o', '||period||', 'k', '||period||', 'bye', 'you', 'guys', '||period||', '||return||', '||return||', 'maestro:', 'ciao', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', 'oh', 'hey', 'and', 'a', 'thanks', 'for', 'the', 'balm', '||period||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'you', 'hurt', 'the', "maestro's", 'feelings', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'what', '||comma||', 'because', 'i', "didn't", 'call', 'him', 'maestro', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'know', 'i', 'feel', 'a', 'little', 'funny', 'calling', 'somebody', 'maestro', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', "it's", 'a', 'stupid', 'thing', 'to', 'be', 'called', '||period||', '||return||', '||return||', 'kramer:', 'jerry', "he's", 'a', 'conductor', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'conductor', '||period||', 'he', 'conducts', 'the', "policeman's", 'benevolent', 'association', 'orchestra', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "he's", 'still', 'a', 'conductor', '||period||', '||return||', '||return||', 'jerry:', 'well', 'he', 'sure', 'worked', 'pretty', 'fast', 'with', 'elaine', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'should', 'see', 'him', 'do', "'flight", 'of', 'the', 'bumble', "bee'", '||period||', '||return||', '||return||', '[setting:', 'monks', 'cafe', '||period||', 'george', 'and', 'jerry', 'are', 'sitting', 'across', 'from', 'each', 'other]', '||return||', '||return||', 'jerry:', 'new', 'shirt', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'you', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'not', 'particularly', '||period||', '||return||', '||return||', 'george:', 'why', '||comma||', 'the', 'color', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'too', 'flashy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'burning', 'my', 'retina', '||period||', 'susan', 'picked', 'that', 'out', 'for', 'you', 'right', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'obviously', 'lying', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reaches', 'for', 'a', 'menu', '||rightparen||', 'all', 'right', "what's", 'it', 'going', 'to', 'be', 'here', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'something', '||period||', 'when', 'you', 'go', 'into', 'a', 'store', '||comma||', 'does', 'it', 'bother', 'you', 'that', 'they', 'make', 'the', 'security', 'guard', 'just', 'stand', 'there', 'all', 'day', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'see', '||comma||', "didn't", 'bother', 'susan', 'either', '||period||', "that's", 'why', "i'm", 'different', '||period||', 'i', 'can', 'sense', 'the', 'slightest', 'human', 'suffering', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sensing', 'anything', 'right', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'let', 'me', 'just', 'say', 'this', '||period||', 'it', 'is', 'inhumane', 'to', 'make', 'a', 'man', 'stand', 'on', 'his', 'feet', '||comma||', 'in', 'one', 'spot', 'for', 'eight', 'hours', 'a', 'day', '||period||', 'why', "shouldn't", 'he', 'have', 'a', 'chair', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'about', 'criminal', 'activity', '||questionmark||', "he's", 'got', 'to', 'be', 'alert', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'he', "can't", 'jump', 'out', 'of', 'the', 'chair', '||questionmark||', 'how', 'long', 'does', 'that', 'take', '||questionmark||', 'here', 'look', 'at', 'this', '||period||', '||leftparen||', 'he', 'moves', 'to', 'the', 'end', 'of', 'the', 'booth', '||rightparen||', 'here', '||comma||', 'watch', '||period||', '||leftparen||', 'stands', 'up', '||rightparen||', 'criminals', '||period||', 'boom', '||period||', "i'm", 'up', '||period||', '||leftparen||', 'pretends', "he's", 'shooting', '||rightparen||', 'stop', 'it', '||exclammark||', 'stop', 'it', '||exclammark||', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'maybe', 'they', 'offered', 'him', 'a', 'chair', 'and', 'he', 'turned', 'it', 'down', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'get', 'out', 'of', 'here', '||period||', "who's", 'gonna', 'turn', 'down', 'a', 'chair', '||questionmark||', 'i', 'would', 'be', 'very', 'interested', 'to', 'know', 'how', 'he', 'felt', 'about', 'all', 'of', 'this', '||period||', 'maybe', "i'll", 'have', 'a', 'talk', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'you', 'will', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'listen', 'to', 'this', '||period||', 'jackie', 'just', 'called', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'his', 'lawyer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'java', 'world', 'wants', 'to', 'settle', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'gonna', 'be', 'rich', '||period||', '||return||', '||return||', 'jerry:', 'why', 'are', 'they', 'settling', '||questionmark||', '||return||', '||return||', 'kramer:', 'cause', 'their', 'afraid', 'of', 'bad', 'publicity', '||period||', '||return||', '||return||', 'jerry:', 'all', 'this', 'because', 'you', 'spilled', 'coffee', 'on', 'yourself', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', "that's", 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'very', 'loud', 'in', 'the', 'direction', 'of', 'a', 'waiter', '||rightparen||', "i'm", 'gonna', 'need', 'a', 'coffee', 'here', '||period||', 'very', 'hot', '||exclammark||', 'boiling', '||exclammark||', '||return||', '||return||', '[setting:', 'restaurant', '||period||', 'maestro', 'and', 'elaine', 'are', 'talking', '||rightparen||', '||return||', '||return||', 'maestro:', 'and', 'then', 'about', 'four', 'years', 'ago', 'i', 'was', 'on', 'holiday', 'in', 'tuscany', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'ha', '||period||', '||return||', '||return||', 'maestro:', 'and', 'i', 'fell', 'in', 'love', 'with', 'this', 'house', '||period||', '||return||', '||return||', 'waiter:', 'are', 'you', 'ready', 'to', 'order', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||period||', 'what', 'are', 'you', 'getting', 'bob', '||questionmark||', '||return||', '||return||', 'maestro:', 'good', 'question', '||period||', '||leftparen||', 'to', 'waiter', '||rightparen||', "we'll", 'need', 'a', 'few', 'minutes', '||period||', '||return||', '||return||', 'maestro:', 'you', 'know', '||comma||', "i'm", 'sorry', 'but', '||comma||', 'i', "didn't", 'mention', 'it', 'earlier', 'but', 'actually', 'i', 'preferred', 'to', 'be', 'called', 'maestro', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'maestro:', 'well', '||comma||', 'ya', 'know', 'i', 'am', 'a', 'conductor', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'maestro:', 'oh', 'i', 'suppose', "it's", 'o', '||period||', 'k', '||period||', 'for', 'leonard', 'burnstein', 'to', 'be', 'called', 'maestro', 'because', 'he', 'conducted', 'the', 'new', 'york', 'philharmonic', '||period||', 'so', 'he', 'gets', 'to', 'be', 'called', 'maestro', 'and', 'i', "don't", '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'mean', "don't", 'you', 'think', 'that', 'he', 'was', 'probably', 'called', 'maestro', 'while', 'he', 'was', 'conducting', '||comma||', 'not', 'in', 'social', 'situations', '||period||', 'i', 'mean', 'his', 'friends', 'probably', 'just', 'called', 'him', 'lenny', '||period||', '||return||', '||return||', 'maestro:', 'i', 'happen', 'to', 'know', 'for', 'a', 'fact', '||comma||', 'that', 'he', 'was', 'called', 'maestro', 'in', 'social', 'situations', '||period||', 'i', 'once', 'saw', 'him', 'at', 'a', 'bar', 'and', 'someone', 'came', 'up', 'to', 'him', 'and', 'said', '||quotemark||', 'hello', 'maestro', '||comma||', 'how', 'about', 'a', 'beer', '||quotemark||', '||period||', 'o', '||period||', 'k', '||period||', 'so', "that's", 'a', 'fact', '||period||', '||return||', '||return||', 'elaine:', 'maestro', 'huh', '||questionmark||', 'o', '||period||', 'k', '||period||', '||leftparen||', 'laughing', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment', '||period||', 'jerry', 'is', 'at', 'the', 'refrigerator', 'getting', 'orange', 'juice', '||period||', ']', '||return||', '||return||', 'kramer:', 'jerry', '||exclammark||', 'jerry', '||exclammark||', 'jerry', '||exclammark||', 'jerry', 'my', 'burn', 'is', 'gone', 'look', '||period||', '||leftparen||', 'shows', 'jerry', 'the', 'burn', 'area', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'put', 'that', 'chinese', 'balm', 'on', 'that', 'the', 'maestro', 'gave', 'me', '||period||', 'and', 'look', '||comma||', 'it', 'healed', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', '||questionmark||', 'my', 'lawsuit', '||period||', "i'm", 'finished', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'they', 'wanted', 'to', 'settle', '||period||', '||return||', '||return||', 'kramer:', 'well', 'what', 'happens', 'if', 'they', 'want', 'to', 'see', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'then', "you're", 'in', 'a', 'lot', 'of', 'trouble', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||exclammark||', '||return||', '||return||', '[setting:', "ross'", 'clothing', 'store', '||period||', 'guard', 'is', 'standing', 'near', 'entrance', '||period||', 'george', 'enters', '||period||', ']', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'guard', '||rightparen||', 'tired', '||questionmark||', '||return||', '||return||', 'guard:', 'no', '||period||', '||return||', '||return||', 'george:', 'how', 'come', 'uh', '||comma||', 'no', 'chair', '||questionmark||', '||return||', '||return||', 'guard:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', "couldn't", 'help', 'but', 'notice', 'that', 'uh', 'you', "don't", 'have', 'a', 'chair', '||period||', '||return||', '||return||', 'guard:', 'i', "don't", 'need', 'a', 'chair', '||period||', '||return||', '||return||', 'george:', 'no', 'i', "didn't", 'mean', 'to', 'imply', 'that', 'you', 'did', '||period||', "you're", 'obviously', 'a', 'very', 'well', 'proportioned', 'individual', '||period||', 'i', 'was', 'just', 'wondering', '||comma||', 'have', 'they', 'ever', 'offered', 'you', 'a', 'chair', '||questionmark||', '||return||', '||return||', 'guard:', 'nope', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'like', 'a', 'chair', '||questionmark||', '||return||', '||return||', 'guard:', 'i', 'suppose', 'if', 'they', 'gave', 'me', 'one', "i'd", 'sit', 'down', '||period||', '||return||', '||return||', 'george:', 'ah', 'ha', '||comma||', 'ah', 'ha', '||period||', 'you', 'would', '||comma||', "wouldn't", 'you', '||questionmark||', '||return||', '||return||', 'guard:', 'obviously', "i'd", 'rather', 'sit', 'than', 'stand', '||comma||', 'if', "that's", 'what', 'your', 'asking', '||period||', '||return||', '||return||', 'george:', "that's", 'exactly', 'my', 'point', '||period||', '||return||', '||return||', 'guard:', 'well', 'who', "wouldn't", '||questionmark||', '||return||', '||return||', 'george:', 'cause', 'i', 'tell', 'you', '||comma||', 'frankly', '||comma||', 'i', 'would', 'like', 'to', 'walk', 'in', 'hear', 'one', 'day', 'and', 'find', 'you', 'sitting', 'down', '||period||', '||leftparen||', 'starts', 'to', 'walk', 'out', 'of', 'the', 'store', '||rightparen||', 'that', 'would', 'give', 'me', 'a', 'lot', 'of', 'pleasure', '||period||', 'call', 'me', 'crazy', '||period||', '||return||', '||return||', '[setting:', 'back', 'seat', 'of', 'a', 'cab', '||period||', 'jackie', 'and', 'kramer]', '||return||', '||return||', 'jackie:', 'you', 'put', 'the', 'balm', 'on', '||questionmark||', 'who', 'told', 'you', 'to', 'put', 'the', 'balm', 'on', '||questionmark||', 'i', "didn't", 'tell', 'you', 'to', 'put', 'the', 'balm', 'on', '||period||', "why'd", 'you', 'put', 'the', 'balm', 'on', '||questionmark||', 'you', "haven't", 'even', 'been', 'to', 'see', 'the', 'doctor', '||period||', 'if', 'your', 'gonna', 'put', 'a', 'balm', 'on', '||comma||', 'let', 'a', 'doctor', 'put', 'a', 'balm', 'on', '||period||', '||return||', '||return||', 'kramer:', 'i', 'guess', 'i', 'screwed', 'up', 'huh', 'jackie', '||questionmark||', '||return||', '||return||', 'jackie:', 'your', 'damn', 'right', 'you', 'screwed', 'up', '||period||', 'where', 'the', 'hell', 'did', 'you', 'get', 'that', 'damm', 'balm', 'anyway', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'maestro', '||period||', '||return||', '||return||', 'jackie:', 'the', 'who', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', 'maestro', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'friend', "he's", 'a', 'conductor', '||period||', '||return||', '||return||', 'jackie:', 'oh', 'oh', 'oh', '||comma||', 'so', 'a', 'maestro', 'tells', 'you', 'to', 'put', 'a', 'balm', 'on', 'and', 'you', 'do', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'my', 'stomach', 'was', 'burning', '||period||', '||return||', '||return||', 'jackie:', 'i', 'tell', 'you', 'what', 'this', 'is', '||period||', 'this', 'is', 'a', 'public', 'humiliation', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', "didn't", 'know', 'the', 'balm', 'was', 'gonna', 'work', '||period||', '||return||', '||return||', 'jackie:', 'do', 'you', 'know', 'what', 'a', 'balm', 'is', '||questionmark||', 'have', 'you', 'ever', 'seen', 'a', 'balm', '||questionmark||', "didn't", 'you', 'read', 'the', 'instructions', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jackie:', '||leftparen||', 'interrupts', '||rightparen||', 'no', 'one', 'can', 'tell', 'what', 'a', "balm's", 'gonna', 'do', '||period||', "they're", 'unpredictable', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'sorry', 'jackie', '||period||', '||return||', '||return||', 'jackie:', '||leftparen||', 'to', 'cab', 'driver', '||rightparen||', 'pull', 'over', 'here', 'driver', 'this', 'is', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'motions', 'with', 'his', 'head', '||rightparen||', 'yeah', '||comma||', 'get', 'over', '||period||', '||return||', '||return||', '[setting:', 'elaine', 'and', 'jerry', 'walking', 'on', 'the', 'sidewalk', 'in', 'nyc]', '||return||', '||return||', 'jerry:', 'did', 'you', 'have', 'a', 'good', 'time', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "he's", 'very', 'interesting', '||period||', 'did', 'you', 'know', 'that', 'mozart', 'died', 'while', 'he', 'was', 'writing', "'the", "requiem'", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'yeah', '||comma||', 'everyone', 'knows', 'that', '||comma||', 'it', 'was', 'in', 'amadeus', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'what', 'about', 'the', '||quotemark||', 'maestro', '||quotemark||', 'stuff', '||period||', 'did', 'he', 'make', 'you', 'call', 'him', 'maestro', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'called', 'him', 'maestro', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'mind', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'did', 'at', 'first', '||comma||', 'but', 'actually', 'i', 'kind', 'of', 'got', 'used', 'to', 'it', '||period||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', 'from', 'now', 'on', 'i', 'want', 'you', 'to', 'call', 'me', '||quotemark||', 'jerry', 'the', 'great', '||quotemark||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'calling', 'you', '||quotemark||', 'jerry', 'the', 'great', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', 'you', 'call', 'him', 'maestro', '||period||', '||return||', '||return||', 'elaine:', 'he', 'is', 'a', 'maestro', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'great', '||period||', '||return||', '||return||', 'elaine:', 'so', 'you', 'say', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'his', 'house', 'in', 'tuscany', '||comma||', 'he', 'mention', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||leftparen||', 'bragging', '||rightparen||', "i'm", 'invited', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'when', 'i', 'told', 'him', 'it', 'was', 'beautiful', 'there', '||comma||', 'out', 'of', 'the', 'clear', 'blue', 'sky', 'he', 'says', "there's", 'nothing', 'to', 'rent', '||period||', 'as', 'if', 'he', "doesn't", 'want', 'anyone', 'else', 'there', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'maybe', "he's", 'embarrassed', 'by', 'americans', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', 'maybe', 'there', "aren't", 'any', 'houses', 'to', 'rent', 'there', '||period||', '||return||', '||return||', 'jerry:', 'in', 'all', 'of', 'tuscany', '||questionmark||', 'i', 'wonder', '||period||', '||return||', '||return||', '[setting:', 'office', 'of', 'a', 'java', 'world', 'building]', '||return||', '||return||', 'mr', 'star:', 'i', 'say', 'we', 'offer', 'him', '$50', '||comma||', '000', "that's", 'it', '||comma||', 'take', 'it', 'or', 'leave', 'it', '||period||', '||return||', '||return||', 'mr', 'burns:', 'how', 'do', 'we', 'know', 'how', 'severe', 'the', 'burns', 'are', '||questionmark||', 'why', "don't", 'we', 'have', 'him', 'examined', 'by', 'a', 'doctor', '||period||', '||return||', '||return||', 'ms', '||period||', 'jordan:', 'listen', '||comma||', 'the', 'faster', 'we', 'dispose', 'of', 'this', 'the', 'better', '||period||', 'this', 'thing', 'gets', 'into', 'the', 'paper', 'it', 'will', 'kill', 'us', '||period||', '||return||', '||return||', 'mr', 'star:', 'all', 'right', '||comma||', "we'll", 'start', 'at', '50', '||comma||', '000', 'and', 'free', 'coffee', 'at', 'all', 'of', 'our', 'stores', '||period||', '||return||', '||return||', 'mr', 'star:', '||leftparen||', 'answering', 'secretary', '||rightparen||', 'yes', '||questionmark||', '||return||', '||return||', 'secretary:', 'mr', '||period||', 'chiles', 'and', 'mr', '||period||', 'kramer', 'are', 'here', '||period||', '||return||', '||return||', 'mr', 'star:', 'send', 'them', 'in', '||period||', '||return||', '||return||', 'mr', 'star:', 'gentleman', '||period||', '||return||', '||return||', 'mr', 'star:', 'gentleman', 'come', 'in', '||period||', 'now', 'we', "don't", 'want', 'to', 'take', 'up', 'much', 'of', 'your', 'time', '||period||', "let's", 'make', 'this', 'short', 'and', 'sweet', '||period||', "we're", 'prepared', 'to', 'offer', 'you', 'all', 'the', 'free', 'coffee', 'you', 'want', 'in', 'any', 'of', 'our', 'stores', 'throughout', 'north', 'america', 'and', 'europe', '||comma||', 'plus', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interrupting', '||rightparen||', "i'll", 'take', 'it', '||exclammark||', '||exclammark||', '||return||', '||return||', '[setting:', 'jackie', 'and', 'kramer', 'in', 'the', 'back', 'of', 'a', 'cab]', '||return||', '||return||', 'jackie:', "i'll", 'take', 'it', '||questionmark||', 'who', 'told', 'you', 'to', 'take', 'it', '||questionmark||', 'did', 'i', 'tell', 'you', 'to', 'take', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'jackie:', 'i', 'know', 'the', 'maestro', "didn't", 'tell', 'you', 'to', 'take', 'it', '||comma||', 'he', "wasn't", 'there', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'thought', 'we', 'were', 'lucky', 'to', 'get', 'anything', '||period||', '||return||', '||return||', 'jackie:', 'free', 'coffee', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jackie:', 'i', "don't", 'want', 'free', 'coffee', '||period||', "it's", 'not', 'hard', 'to', 'get', 'coffee', '||period||', 'i', 'can', 'get', 'my', 'own', '||return||', '||return||', 'kramer:', 'well', 'i', "didn't", 'hear', 'any', 'plus', '||period||', '||return||', '||return||', 'jackie:', '20', 'years', 'practicing', 'law', "i've", 'never', 'experienced', 'anything', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'java', 'world', '||period||', '||leftparen||', 'to', 'cabbie', '||rightparen||', 'hey', 'listen', "i'm", 'gonna', 'get', 'out', 'here', '||period||', "i'm", 'gonna', 'get', 'myself', 'a', 'free', 'cafe', 'latte', '||period||', '||return||', '||return||', '[setting:', 'jerry', 'and', 'elaine', 'are', 'walking', 'down', 'the', 'street', 'and', 'hear', 'music', 'approaching]', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'hi', 'maestro', '||period||', '||return||', '||return||', 'maestro:', "beethoven's", '7th', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'you', 'know', 'we', 'were', 'just', 'talking', 'about', 'you', '||period||', '||return||', '||return||', 'maestro:', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'ya', 'know', 'the', 'other', 'day', 'how', 'you', 'mentioned', 'that', 'there', 'were', 'no', 'houses', 'available', 'in', 'tuscany', '||questionmark||', '||return||', '||return||', 'maestro:', 'you', "didn't", 'find', 'one', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', "i'm", 'not', 'really', 'looking', '||period||', '||return||', '||return||', 'maestro:', 'nor', 'should', 'you', '||period||', '||return||', '||return||', 'jerry:', 'so', 'are', 'you', 'telling', 'me', "there's", 'not', 'one', 'house', 'to', 'rent', 'in', 'all', 'of', 'tuscany', '||questionmark||', '||return||', '||return||', 'maestro:', 'the', 'houses', 'are', 'passed', 'down', 'from', 'generation', 'to', 'generation', '||comma||', "it's", 'very', 'hard', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'get', 'a', 'sublet', '||comma||', 'a', 'guest', 'room', '||comma||', 'a', 'cot', '||comma||', 'nothing', '||questionmark||', '||return||', '||return||', 'maestro:', "it's", 'booked', 'solid', '||exclammark||', '||return||', '||return||', 'elaine:', "it's", 'booked', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', "how'd", 'you', 'get', 'yours', '||questionmark||', '||return||', '||return||', 'maestro:', 'got', 'lucky', '||period||', 'come', 'on', '||comma||', 'elaine', '||comma||', "let's", 'take', 'a', 'ride', '||comma||', 'i', 'was', 'about', 'to', 'pop', 'in', 'some', 'verdi', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "i'll", 'check', 'out', 'france', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'george', '||comma||', 'do', 'you', 'believe', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'bob', 'cobb', '||period||', '||return||', '||return||', 'george:', 'bob', 'cobb', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'maestro', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'missed', 'the', 'maestro', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'get', 'this', '||comma||', 'he', 'tells', 'me', 'there', 'are', 'no', 'houses', 'any', 'where', 'in', 'tuscany', 'to', 'rent', '||period||', '||return||', '||return||', 'george:', 'huh', '||period||', 'your', 'renting', 'a', 'house', 'in', 'tuscany', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'do', 'you', 'care', '||questionmark||', '||return||', '||return||', '[setting:', "monk's", 'cafe', '||period||', 'george', 'and', 'jerry', 'are', 'sitting', 'at', 'the', 'booth]', '||return||', '||return||', 'jerry:', 'i', 'just', 'wish', 'i', 'could', 'figure', 'out', 'if', 'this', 'guy', 'is', 'trying', 'to', 'keep', 'me', 'out', 'of', 'tuscany', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'he', 'is', '||period||', "there's", 'got', 'to', 'be', 'houses', 'for', 'rent', 'in', 'tuscany', '||period||', 'do', 'you', 'know', 'how', 'big', 'tuscany', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'george:', 'it', "it's", 'huge', '||period||', "it's", 'probably', 'like', 'north', 'dakota', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', 'way', "it's", 'that', 'big', '||period||', '||return||', '||return||', 'george:', "it's", 'a', 'big', 'region', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'know', 'how', 'big', 'north', 'dakota', 'is', 'stupid', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'why', 'i', 'bother', 'even', 'talking', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'no', "one's", 'got', 'a', 'gun', 'to', 'your', 'head', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'spoke', 'to', 'the', 'security', 'guard', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'and', '||questionmark||', '||return||', '||return||', 'george:', 'well', "it's", 'tough', 'to', 'get', 'a', 'good', 'read', 'but', 'i', 'think', 'if', 'i', 'brought', 'him', 'a', 'chair', '||comma||', "he'd", 'sit', '||period||', '||return||', '||return||', 'jerry:', 'so', 'are', 'you', 'gonna', 'get', 'him', 'a', 'chair', '||questionmark||', '||return||', '||return||', 'george:', 'yup', '||period||', "it's", 'really', 'just', 'a', 'question', 'of', 'what', 'kind', '||period||', 'thinking', 'about', 'a', 'bar', 'stool', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'that', 'would', 'give', 'him', 'some', 'height', '||comma||', 'be', 'able', 'to', 'check', 'things', 'out', '||period||', 'with', 'a', 'back', 'or', 'without', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', 'think', "i'd", 'go', 'for', 'the', 'back', '||period||', '||return||', '||return||', 'jerry:', 'swivel', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'suppose', 'he', 'could', 'swivel', '||period||', 'hey', 'maybe', 'one', 'of', 'those', "director's", 'chairs', '||period||', 'what', 'do', 'you', 'think', 'of', 'those', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thinks', "it's", 'kind', 'of', 'a', 'pompous', 'look', '||period||', 'you', 'know', 'my', 'parents', 'used', 'to', 'have', 'a', 'kitchen', 'chair', 'that', 'would', 'have', 'been', 'perfect', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', 'one', 'of', 'those', 'vinyl', 'things', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'george:', 'vinyl', 'yeah', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'jerry:', 'how', 'can', 'i', 'figure', 'out', 'if', "there's", 'any', 'places', 'to', 'rent', 'in', 'tuscany', '||questionmark||', 'wait', 'a', 'minute', '||period||', "poppy's", 'from', 'tuscany', '||period||', "i'm", 'gonna', 'go', 'call', 'him', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'good', 'luck', '||period||', 'hey', "i'll", 'meet', 'you', 'outside', '||period||', '||return||', '||return||', '[setting:', 'in', "maestro's", 'car', '||comma||', 'he', 'and', 'elaine', 'are', 'driving', 'and', 'singing', 'finiculi', '||comma||', 'finicula]', '||return||', '||return||', '[setting:', 'on', 'the', 'street', 'in', 'the', 'city', '||comma||', 'george', 'and', 'jerry', 'are', 'talking]', '||return||', '||return||', 'jerry:', 'poppy', 'told', 'me', 'to', 'talk', 'to', 'his', 'cousin', '||comma||', 'he', 'lives', 'down', 'in', 'little', 'italy', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'think', 'about', 'a', 'rocking', 'chair', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'speaking', 'very', 'fast', 'and', 'fidgety', '||rightparen||', 'you', "can't", 'put', 'a', 'limit', 'on', 'my', 'cafe', 'lattes', '||comma||', 'it', 'says', 'so', 'right', 'here', '||period||', 'and', 'i', "don't", 'want', 'to', 'get', 'dirty', 'looks', 'when', 'i', 'come', 'in', 'here', '||period||', 'if', 'i', 'want', 'a', 'cafe', 'latte', '||comma||', 'you', 'give', 'me', 'a', 'cafe', 'latte', '||period||', 'and', 'if', 'i', 'have', 'any', 'problems', "i'm", 'gonna', 'get', 'my', 'lawyer', 'jackie', 'chiles', 'down', 'here', 'and', 'your', 'gonna', 'be', 'in', 'really', 'big', 'trouble', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'hey', 'hey', '||comma||', 'slow', 'down', 'eddie', '||period||', 'what', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'kramer:', 'awe', 'there', 'making', 'faces', 'at', 'me', 'cause', "i've", 'had', 'a', 'couple', 'of', 'cafe', 'lattes', '||period||', 'but', "i'm", 'entitled', 'to', 'them', '||period||', 'i', 'can', 'have', 'as', 'many', 'cafe', 'lattes', 'as', 'i', 'want', '||comma||', 'that', 'was', 'the', 'settlement', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'it', '||period||', 'what', 'you', 'want', 'one', 'george', '||questionmark||', 'i', 'can', 'get', 'one', 'for', 'you', '||period||', 'no', 'problem', '||period||', 'jerry', '||comma||', 'you', 'want', 'one', '||questionmark||', "they're", 'delicious', '||period||', 'my', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', "you've", 'got', 'to', 'stop', 'it', '||period||', 'your', 'your', 'all', 'hopped', 'up', 'on', 'the', 'caffein', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'feel', 'like', "i'm", 'talking', 'fast', 'but', "it's", 'very', 'hard', 'to', 'tell', '||period||', '||return||', '||return||', 'jerry:', "you're", 'racing', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'well', "i've", 'got', 'things', 'to', 'do', '||period||', "i'll", 'see', 'you', 'later', '||period||', 'bye', '||period||', '||return||', '||return||', '[setting:', 'dark', 'room', '||period||', 'elaine', 'and', 'maestro', 'are', 'kissing]', '||return||', '||return||', 'elaine:', '||leftparen||', 'passionately', '||rightparen||', 'oh', 'bob', '||exclammark||', 'bob', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'correcting', 'herself', '||rightparen||', 'maestro', '||exclammark||', '||return||', '||return||', '[setting:', "ross'", 'clothing', 'store', '||period||', 'george', 'carries', 'in', 'a', 'rocking', 'chair]', '||return||', '||return||', 'clerk:', '||leftparen||', 'noticing', 'george', 'with', 'the', 'rocking', 'chair', '||rightparen||', 'excuse', 'me', '||period||', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'geoge:', 'nope', '||period||', 'just', 'a', '||comma||', 'giving', 'a', 'chair', 'to', 'the', 'security', 'guard', '||period||', '||return||', '||return||', 'clerk:', 'did', 'mr', '||period||', 'ross', 'tell', 'you', 'to', 'do', 'this', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'clerk:', 'evan', 'fayne', '||period||', '||return||', '||return||', 'george:', "i'm", 'engaged', 'to', 'mr', '||period||', "ross'", 'niece', '||period||', "i'm", 'probably', 'gonna', 'be', 'taking', 'over', 'this', 'whole', 'place', 'someday', 'so', 'if', 'i', 'were', 'you', 'i', 'would', 'stay', 'on', 'my', 'good', 'side', '||period||', '||return||', '||return||', 'clerk:', "i'm", 'terribly', 'sorry', '||comma||', 'i', "didn't", 'know', '||period||', '||return||', '||return||', 'george:', 'innocent', 'mistake', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'here', 'you', 'go', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'guard:', 'mr', '||period||', 'ross', 'says', 'this', 'is', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', "i'm", 'his', 'nephew', '||comma||', 'all', 'right', '||questionmark||', "don't", 'worry', 'about', 'it', '||period||', 'go', 'ahead', '||period||', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'guard:', 'not', 'bad', '||period||', 'not', 'bad', 'at', 'all', '||period||', '||return||', '||return||', '[setting:', 'dark', 'room', 'in', 'the', 'back', 'of', 'an', 'italian', 'restaurant', '||period||', ']', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'excuse', 'me', '||comma||', "i'm", 'looking', 'for', 'a', 'mr', '||period||', 'giggio', '||period||', '||return||', '||return||', 'giggio:', 'si', '||comma||', 'si', '||comma||', 'imma', 'giggio', '||period||', '||return||', '||return||', 'jerry:', 'poppy', 'sent', 'me', 'to', 'see', 'you', 'mr', '||period||', 'giggio', '||period||', '||return||', '||return||', 'giggio:', 'si', '||comma||', 'si', 'poppy', '||period||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'did', 'he', 'did', 'he', 'mention', 'to', 'you', 'why', 'i', 'called', '||questionmark||', '||return||', '||return||', 'giggio:', 'si', '||comma||', 'the', 'house', 'in', 'tuscana', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'right', '||comma||', 'right', '||period||', 'so', 'is', 'there', 'anything', 'there', 'to', 'rent', '||questionmark||', '||return||', '||return||', 'giggio:', 'si', '||period||', 'two', 'million', 'lira', '||period||', 'you', 'give', 'me', 'the', 'check', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'actually', 'want', 'to', 'rent', 'it', '||period||', '||return||', '||return||', 'giggio:', 'the', 'keys', '||comma||', 'here', 'are', 'the', 'keys', '||period||', 'you', 'give', 'me', 'the', 'check', '||period||', 'two', 'million', 'lira', '||period||', 'seventeen', 'hundred', 'americana', '||period||', 'molto', 'generoso', '||period||', '||return||', '||return||', 'giggio:', '||leftparen||', 'to', 'the', 'man', '||rightparen||', 'si', '||comma||', 'si', '||period||', '||return||', '||return||', 'jerry:', 'so', 'see', 'um', '||comma||', 'i', "didn't", 'say', 'that', 'i', 'wanted', 'to', 'rent', 'it', '||comma||', 'i', 'was', 'just', 'wondering', 'if', 'there', 'were', 'houses', 'there', 'to', 'rent', '||period||', '||return||', '||return||', 'giggio:', 'si', '||period||', '||leftparen||', 'hods', 'up', 'the', 'keys', '||rightparen||', 'thissa', 'one', '||exclammark||', '||period||', 'capiche', '||questionmark||', '||return||', '||return||', '[setting:', "ross'", 'clothing', 'store', '||period||', 'the', 'employees', 'are', 'being', 'held', 'up', 'at', 'gun', 'point', '||period||', 'the', 'camera', 'moves', 'from', 'the', 'right', 'to', 'the', 'left', '||period||', 'there', 'is', 'a', 'masked', 'man', 'taking', 'the', 'money', 'from', 'the', 'cash', 'register', '||period||', 'as', 'the', 'camera', 'moves', 'all', 'the', 'way', 'to', 'the', 'left', 'of', 'the', 'store', '||comma||', 'you', 'see', 'the', 'security', 'guard', 'fast', 'asleep', 'in', 'his', 'new', 'chair]', '||return||', '||return||', '[setting:', 'at', 'the', 'window', 'of', 'a', 'house', 'in', 'tuscany', '||period||', 'elaine', 'and', 'maestro', 'are', 'talking', '||period||', 'there', 'is', 'a', 'lady', 'singing', 'in', 'italian', 'in', 'the', 'background]', '||return||', '||return||', 'elaine:', "it's", 'been', 'a', 'rough', 'couple', 'of', 'weeks', '||comma||', 'ya', 'know', 'i', 'really', 'needed', 'to', 'get', 'away', '||period||', '||return||', '||return||', 'maestro:', 'i', 'told', 'you', '||comma||', "it's", 'paradise', '||period||', '||return||', '||return||', 'elaine:', "you're", 'right', 'maestro', '||period||', '||return||', '||return||', 'kramer:', 'common', 'jerry', '||comma||', 'this', 'guy', 'is', 'crazy', '||period||', 'get', 'out', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'have', 'to', 'push', 'me', '||period||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'push', 'you', '||period||', 'how', 'much', 'did', 'you', 'pay', 'that', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', '75', '||comma||', '000', 'lira', '||period||', '||return||', '||return||', 'kramer:', '75', '||comma||', '000', 'lira', '||questionmark||', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', 'you', "don't", 'under', 'the', 'conversion', 'rate', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'conversion', 'rate', '||comma||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', "don't", 'even', 'know', 'why', 'i', 'brought', 'you', '||period||', '||return||', '||return||', 'kramer:', 'nobody', 'put', 'a', 'gun', 'to', 'your', 'head', '||period||', '||return||', '||return||', 'jerry:', 'not', 'bad', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||return||', '||return||', 'james:', 'this', 'is', 'your', 'wake', 'up', 'service', '||period||', "it's", '715', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||period||', 'oh', '||comma||', 'i', 'could', 'use', 'a', 'few', 'more', 'hours', 'sleep', '||period||', '||return||', '||return||', 'james:', 'hot', 'date', 'last', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'wish', '||period||', '||return||', '||return||', 'james:', 'a', 'woman', 'with', 'a', 'sexy', 'voice', 'like', 'yours', 'its', 'hard', 'to', 'believe', 'your', 'waking', 'up', 'alone', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', 'thank', 'you', '||period||', '||comma||', 'wake', 'up', 'service', '||period||', '||period||', '||period||', 'person', '||period||', '||return||', '||return||', 'james:', 'call', 'me', 'james', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'all', 'right', '||comma||', 'james', '||period||', 'he', 'he', 'he', '||return||', '||return||', 'george:', 'your', 'wake', 'up', 'guy', 'asked', 'you', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i've", 'never', 'seen', 'him', 'but', 'i', 'feel', 'like', 'we', 'have', 'this', 'weirdly', 'intimate', 'relationship', '||period||', 'i', 'mean', '||comma||', "i'm", 'lying', 'in', 'bed', '||comma||', "i'm", 'wearing', 'my', 'nightie', '||comma||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'blind', 'date', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "you're", 'going', 'to', 'go', 'out', 'with', 'my', 'cousin', 'holly', '||period||', "you've", 'never', 'met', 'her', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', "i've", 'seen', 'pictures', 'of', 'her', '||period||', '||return||', '||return||', 'elaine:', 'at', 'least', "i've", 'spoken', 'to', 'my', 'guy', '||period||', "you're", 'going', 'out', 'on', 'a', 'deaf', 'date', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "i'd", 'rather', 'go', 'out', 'on', 'a', 'deaf', 'date', 'than', 'a', 'blind', 'date', '||period||', 'the', 'question', 'is', 'whether', "you'd", 'rather', 'date', 'the', 'blind', 'or', 'the', 'deaf', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'now', "you're", 'off', 'on', 'a', 'topic', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'think', '||comma||', 'i', 'would', 'rather', 'date', 'the', 'deaf', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'hu', '||period||', '||return||', '||return||', 'jerry:', 'because', 'i', 'think', 'the', 'blind', 'would', 'probably', 'be', 'a', 'little', 'messier', 'around', 'the', 'house', '||period||', 'and', 'lets', 'face', 'it', "they're", 'not', 'going', 'to', 'get', 'all', 'the', 'crumbs', '||period||', "i'd", 'possibly', 'be', 'walking', 'around', 'with', 'a', 'sponge', '||period||', '||return||', '||return||', 'george:', 'you', 'see', 'i', 'disagree', '||period||', "i'd", 'rather', 'be', 'dating', 'the', 'blind', '||period||', 'you', 'know', 'you', 'could', 'let', 'the', 'house', 'go', '||period||', 'you', 'could', 'let', 'yourself', 'go', '||period||', 'a', 'good', 'looking', 'blind', 'woman', "doesn't", 'even', 'know', "you're", 'not', 'good', 'enough', 'for', 'her', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', "she'd", 'figure', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'veggie', 'sandwich', 'and', 'a', 'grapefruit', '||period||', '||return||', '||return||', 'elaine:', 'veggie', 'sandwich', 'and', 'a', 'grapefruit', '||questionmark||', 'what', 'are', 'you', 'turning', 'into', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'healthy', 'person', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'rubbing', 'his', 'eye', '||rightparen||', 'ow', '||comma||', 'ow', 'you', 'squirted', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sorry', '||return||', '||return||', 'george:', 'boy', '||comma||', 'it', 'stings', '||period||', '||return||', '||return||', 'wilhelm:', 'george', '||comma||', 'have', 'you', 'seen', 'morgan', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'wilhelm:', "he's", 'been', 'coming', 'in', 'late', 'all', 'week', '||period||', 'is', 'there', 'something', 'wrong', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'that', 'i', 'know', 'of', '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'wilhelm:', 'really', '||questionmark||', 'make', 'sure', 'he', 'signs', 'this', '||period||', 'oh', '||comma||', 'look', 'george', '||comma||', 'if', "there's", 'a', 'problem', 'with', 'morgan', 'you', 'can', 'tell', 'me', '||period||', '||return||', '||return||', 'george:', 'morgan', '||questionmark||', 'no', '||period||', "he's", 'doing', 'a', 'great', 'job', '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'wilhelm:', 'i', 'understand', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "can't", 'believe', '||comma||', "you're", 'going', 'out', 'on', 'a', 'blind', 'date', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'worried', '||period||', 'it', 'sounds', 'like', "he's", 'really', 'good', 'looking', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'by', 'sound', '||questionmark||', 'what', 'are', 'we', '||questionmark||', 'whales', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'i', 'can', 'tell', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'what', 'percentage', 'of', 'people', 'would', 'you', 'say', 'are', 'good', 'looking', '||questionmark||', '||return||', '||return||', 'elaine:', 'twenty', '||dash||', 'five', 'percent', '||period||', '||return||', '||return||', 'jerry:', 'twenty', '||dash||', 'five', 'percent', '||comma||', 'you', 'say', '||questionmark||', 'no', 'way', '||exclammark||', "it's", 'like', '4', 'to', '6', 'percent', '||period||', "it's", 'a', 'twenty', 'to', 'one', 'shot', '||period||', '||return||', '||return||', 'elaine:', "you're", 'way', 'off', '||period||', '||return||', '||return||', 'jerry:', 'way', 'off', '||questionmark||', 'have', 'you', 'been', 'to', 'the', 'motor', 'vehicle', 'bureau', '||questionmark||', "it's", 'like', 'a', 'leper', 'colony', 'down', 'there', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'you', 'are', 'saying', 'is', 'that', '90', 'to', '95', 'percent', 'of', 'the', 'population', 'is', 'undateable', '||questionmark||', '||return||', '||return||', 'jerry:', 'undateable', '||exclammark||', '||return||', '||return||', 'elaine:', 'then', 'how', 'are', 'all', 'these', 'people', 'getting', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'alcohol', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', 'who', 'is', 'winking', '||rightparen||', 'what', 'is', 'your', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'problem', 'here', '||period||', '||return||', '||return||', 'elaine:', 'you', 'keep', 'winking', 'at', 'me', '||period||', "that's", 'really', 'obnoxious', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'no', 'idea', '||period||', '||return||', '||return||', 'elaine:', 'right', 'there', '||period||', 'right', 'there', '||period||', 'you', 'just', 'did', 'it', 'again', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||period||', 'wait', 'a', 'minute', '||period||', "it's", 'from', 'that', 'grapefruit', 'that', 'jerry', 'squirted', 'at', 'me', '||period||', '||return||', '||return||', 'elaine:', "you're", 'eye', 'still', 'hurts', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'you', 'must', 'have', 'squirted', 'a', 'piece', 'of', 'pulp', 'in', 'it', 'too', '||period||', '||return||', '||return||', 'jerry:', 'pulp', "couldn't", 'make', 'it', 'across', 'the', 'table', '||period||', '||return||', '||return||', 'george:', 'pulp', 'can', 'move', '||comma||', 'baby', '||exclammark||', 'why', "didn't", 'you', 'eat', 'a', 'real', 'breakfast', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'eat', 'healthy', '||period||', 'if', 'i', 'have', 'to', 'take', 'out', 'an', 'eye', '||comma||', "that's", 'the', 'breaks', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||period||', 'i', 'must', 'have', 'been', 'winking', 'down', 'at', 'the', 'office', '||period||', "that's", 'why', 'mr', '||period||', 'wilhelm', 'was', 'acting', 'so', 'mysteriouso', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'he', 'think', '||comma||', 'you', 'were', "flirtin'", 'with', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'hu', '||comma||', 'oh', '||period||', 'no', 'he', 'thought', 'i', 'was', 'hiding', 'something', 'from', 'him', 'about', 'morgan', '||period||', '||return||', '||return||', 'kramer:', 'hi', 'guys', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', '||return||', '||return||', 'kramer:', 'hello', 'archie', '||comma||', 'veronica', '||comma||', 'mr', '||period||', 'weatherbee', '||period||', '||period||', '||period||', '||period||', 'is', 'this', 'don', "matingly's", 'signature', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'and', 'buck', "showalter's", '||questionmark||', '||return||', '||return||', 'george:', "it's", 'an', 'inter', '||dash||', 'office', 'envelope', '||period||', 'it', 'get', 'passed', 'around', 'all', 'over', 'the', 'office', '||period||', '||return||', '||return||', 'kramer:', 'um', '||comma||', 'can', 'i', 'show', 'this', 'to', 'my', 'buddy', 'stubbs', '||period||', 'he', 'runs', 'a', 'sports', 'memorabilia', 'store', '||period||', 'he', 'pays', 'top', 'dollar', 'for', 'pro', 'autographs', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'like', "i'm", 'going', 'to', 'risk', 'my', 'job', 'with', 'the', 'new', 'york', 'yankees', 'to', 'make', 'a', 'few', 'extra', 'bucks', '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'of', 'course', 'not', '||period||', '||leftparen||', 'winks', 'back', '||rightparen||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'you', 'see', 'don', 'matingly', 'signed', 'this', 'envelope', 'then', 'he', 'sent', 'it', 'to', 'room', '318', '||comma||', 'where', 'it', 'was', 'received', 'and', 'signed', 'for', 'by', 'manager', 'buck', 'showalter', '||period||', '||return||', '||return||', 'steinbrenner:', 'i', "don't", 'know', '||period||', 'an', 'envelope', "doesn't", 'really', 'cut', 'it', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'what', 'is', 'this', '||questionmark||', 'a', 'birthday', 'card', '||period||', 'ha', 'ha', '||period||', '||period||', '||period||', 'signed', 'by', 'the', 'entire', 'yankee', 'organization', '||exclammark||', '||period||', '||period||', '||period||', 'this', 'could', 'be', 'worth', 'something', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'the', 'lovely', 'mrs', '||period||', 'morgan', '||questionmark||', '||return||', '||return||', 'morgan:', 'hello', '||period||', '||return||', '||return||', 'morgan:', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'have', 'you', 'got', 'that', 'birthday', 'card', '||questionmark||', '||return||', '||return||', 'george:', 'birthday', 'card', '||questionmark||', '||return||', '||return||', 'morgan:', 'mr', '||period||', "steinbrenner's", 'birthday', 'card', '||period||', 'wilhem', 'said', 'you', 'had', 'it', 'for', 'me', 'to', 'sign', '||period||', '||return||', '||return||', 'george:', 'oh', 'ah', '||comma||', 'i', 'uh', '||comma||', 'will', 'have', 'that', 'for', 'you', 'by', 'after', 'lunch', '||period||', '||return||', '||return||', 'morgan:', 'fine', '||period||', "i'll", 'be', 'back', 'after', 'my', 'massage', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', 'your', 'massage', '||period||', '||leftparen||', 'winks', '||rightparen||', 'enjoy', 'your', 'massage', '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'james:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'james', '||exclammark||', 'ah', '||comma||', 'ha', '||comma||', 'hello', '||exclammark||', 'phew', '||exclammark||', '||return||', '||return||', 'holly:', 'i', "can't", 'believe', "you've", 'never', 'taken', 'anybody', 'here', 'before', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'not', 'really', 'that', 'much', 'of', 'a', 'meat', 'eater', '||period||', '||return||', '||return||', 'holly:', '||period||', '||period||', '||period||', 'you', "don't", 'eat', 'meat', '||questionmark||', 'are', 'you', 'one', 'of', 'those', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'no', '||comma||', "i'm", 'not', 'one', 'of', 'those', '||period||', '||return||', '||return||', 'holly:', 'when', 'we', 'were', 'little', 'girls', 'grandma', 'memma', 'would', 'take', 'us', 'to', 'a', 'matinee', 'and', 'then', 'dinner', 'here', '||period||', '||return||', '||return||', 'jerry:', 'grandma', 'memma', '||questionmark||', '||return||', '||return||', 'holly:', 'elaine', 'must', 'have', 'mentioned', 'grandma', 'memma', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'think', 'i', 'would', 'have', 'remembered', 'memma', '||period||', '||return||', '||return||', 'holly:', 'oh', 'well', '||comma||', "that's", 'typical', '||period||', 'elaine', 'never', 'liked', 'grandma', 'memma', '||period||', '||return||', '||return||', 'waiter:', 'ready', '||questionmark||', '||return||', '||return||', 'holly:', "i'll", 'have', 'the', 'porterhouse', 'medium', 'rare', '||comma||', 'baked', 'potato', 'with', 'sour', 'cream', '||comma||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'recommend', 'besides', 'the', 'steak', '||questionmark||', '||return||', '||return||', 'waiter:', 'the', 'lamb', 'chops', 'are', 'good', '||period||', '||return||', '||return||', 'jerry:', 'anything', 'lighter', '||questionmark||', 'how', 'do', 'you', 'prepare', 'the', 'chicken', '||questionmark||', '||return||', '||return||', 'waiter:', "it's", 'a', 'full', 'bird', '||period||', 'stuffed', 'with', 'ham', '||comma||', 'topped', 'with', 'gorganzola', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'i', 'think', "i'll", 'just', 'have', 'the', 'salad', '||period||', '||return||', '||return||', 'waiter:', '||period||', '||period||', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "mind's", 'voice', '||rightparen||', 'just', 'a', 'salad', '||questionmark||', 'just', 'a', 'salad', '||questionmark||', 'just', 'a', 'salad', '||questionmark||', '||return||', '||return||', 'james:', 'hey', 'you', '||comma||', 'hey', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'uh', '||comma||', 'ha', '||comma||', "you've", 'got', 'dogs', '||questionmark||', '||return||', '||return||', 'james:', 'yeah', '||comma||', 'you', 'know', '||comma||', 'when', 'you', 'live', 'alone', '||comma||', "you're", 'dogs', 'are', 'all', 'you', 'have', '||period||', 'do', 'you', 'like', 'dogs', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', "mind's", 'voice', 'from', '||dash||', '||rightparen||', 'shut', 'up', '||exclammark||', 'you', 'stupid', 'little', 'mut', '||exclammark||', '||return||', '||return||', 'elaine:', 'dogs', '||period||', 'oh', 'i', 'love', 'dogs', '||period||', '||return||', '||return||', 'james:', 'boys', '||comma||', 'this', 'is', 'elaine', '||period||', '||period||', '||period||', '||period||', 'sorry', '||comma||', "they're", 'usually', 'very', 'friendly', '||period||', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'mr', '||period||', 'morgan', 'how', 'was', 'your', 'massage', '||questionmark||', '||return||', '||return||', 'morgan:', 'i', 'had', 'to', 'cancel', 'it', '||period||', 'for', 'some', 'reason', 'my', 'wife', 'got', 'it', 'into', 'her', 'head', 'that', 'it', 'was', 'more', 'than', 'just', 'a', 'massage', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'morgan:', 'yeah', '||comma||', 'we', 'had', 'this', 'big', 'fight', 'at', 'lunch', 'it', 'looks', 'like', 'tonight', 'i', 'will', 'be', 'sleeping', 'on', 'the', 'couch', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'listen', "don't", 'oversleep', '||period||', 'you', "can't", 'afford', 'to', 'be', 'late', 'again', '||period||', '||return||', '||return||', 'morgan:', 'i', 'know', '||period||', 'somebody', 'around', 'here', 'has', 'been', 'giving', 'wilhelm', 'the', 'impression', 'that', 'i', 'have', 'been', 'slacking', 'off', '||period||', '||return||', '||return||', 'george:', 'geez', '||comma||', 'hey', 'you', 'know', 'something', '||comma||', 'you', 'should', 'try', 'my', "friend's", 'wake', 'up', 'service', '||period||', 'she', 'swears', 'by', 'this', 'thing', '||period||', '||return||', '||return||', 'morgan:', 'costanza', '||comma||', 'you', 'may', 'be', 'my', 'only', 'friend', 'around', 'here', '||period||', 'by', 'the', 'way', '||comma||', 'you', 'got', 'that', 'birthday', 'card', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'not', 'yet', '||period||', '||return||', '||return||', 'morgan:', 'just', 'make', 'sure', 'steinbrenner', "doesn't", 'get', 'it', 'until', 'i', 'sign', 'it', '||period||', '||return||', '||return||', 'george:', 'yes', 'sir', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'just', "don't", 'understand', 'it', 'as', 'soon', 'as', 'i', 'met', 'these', 'dogs', 'they', 'started', 'growling', 'at', 'me', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'his', 'dogs', 'heard', 'about', 'how', 'you', 'tried', 'to', 'kidnap', 'that', 'other', 'dog', '||period||', 'these', 'muts', 'like', 'to', 'gossip', '||period||', 'so', 'have', 'you', 'talked', 'too', 'holly', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'did', 'she', 'mention', 'anything', 'about', 'our', 'lunch', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'kind', 'of', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||comma||', '||quotemark||', 'kind', 'of', '||period||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'she', 'thought', 'it', 'was', 'kind', 'of', 'strange', 'to', 'just', 'order', 'a', 'salad', '||period||', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', '||period||', 'for', 'a', 'man', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'saying', '||questionmark||', '||period||', '||period||', '||period||', 'salad', '||exclammark||', 'what', 'was', 'i', 'thinking', '||questionmark||', 'women', "don't", 'respect', 'salad', 'eaters', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'that', 'right', '||period||', '||return||', '||return||', 'jerry:', 'but', "you're", 'going', 'over', 'there', 'for', 'dinner', 'tonight', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', 'uh', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'she', 'making', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'but', "i'm", 'sure', 'it', 'had', '||comma||', '||period||', '||period||', '||period||', 'parents', '||period||', 'call', 'her', 'up', '||period||', 'she', "won't", 'mind', 'if', 'you', 'come', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "don't", 'worry', '||period||', "i'll", 'be', 'there', 'and', "i'll", 'be', 'packing', 'an', 'artery', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'mr', '||period||', 'weatherbee', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'the', 'yankee', 'envelope', '||questionmark||', '||return||', '||return||', 'kramer:', 'sure', 'do', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', '||return||', '||return||', 'kramer:', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'he', '||comma||', '||return||', '||return||', 'kramer:', "you'll", 'be', 'pleased', 'to', 'see', "what's", 'inside', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'cut', 'of', 'the', 'loot', '||period||', 'stubs', 'gave', 'me', '200', 'dollars', 'for', 'the', 'autographed', 'birthday', 'card', 'that', 'was', 'inside', '||period||', '||return||', '||return||', 'george:', 'who', 'told', 'you', 'to', 'sell', 'the', 'card', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'did', '||period||', '||return||', '||return||', 'george:', 'no', 'i', "didn't", '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'not', 'in', 'so', 'many', 'words', 'but', 'i', 'believe', 'we', 'had', 'an', 'understanding', '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'was', 'not', 'winking', 'you', 'idiot', '||period||', 'that', 'was', 'the', 'grapefruit', '||period||', "it's", 'like', 'acid', '||period||', 'i', 'need', 'that', 'card', 'back', '||period||', "it's", 'mr', '||period||', "steinbrenner's", '||period||', 'i', 'was', 'responsible', '||period||', '||return||', '||return||', 'kramer:', 'well', 'stubs', 'has', 'already', 'sold', 'it', 'to', 'some', 'guy', "who's", "kid's", 'in', 'the', 'hospital', '||period||', '||return||', '||return||', 'george:', 'well', 'get', 'it', 'back', '||exclammark||', "it's", 'very', 'important', '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'do', 'you', 'want', 'me', 'to', 'get', 'it', 'back', 'or', 'not', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'holds', 'eyes', 'wide', 'open', '||rightparen||', 'get', 'it', 'back', '||exclammark||', '||return||', '||return||', 'elaine:', 'such', 'a', 'lovely', 'table', 'setting', '||period||', 'oh', '||comma||', 'wear', 'did', 'you', 'get', 'these', 'napkins', '||questionmark||', '||return||', '||return||', 'holly:', "they're", 'grandma', "memma's", '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "don't", 'remember', 'them', '||period||', '||return||', '||return||', 'holly:', 'oh', '||comma||', 'you', "wouldn't", '||period||', 'she', 'only', 'used', 'them', 'on', 'special', 'occasions', '||period||', '||return||', '||return||', 'elaine:', 'special', 'occassions', '||questionmark||', 'it', "wasn't", 'special', 'when', 'my', 'family', 'visited', '||questionmark||', '||return||', '||return||', 'holly:', 'everybody', 'like', 'mutton', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'mutton', '||exclammark||', 'hope', 'you', "didn't", 'cut', 'the', 'fat', 'off', '||period||', '||return||', '||return||', 'kramer:', 'that', 'you', 'bobby', '||questionmark||', '||return||', '||return||', 'bobby:', 'huh', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'heard', 'that', 'you', 'have', 'a', 'very', 'uh', '||comma||', 'special', 'birthday', 'card', '||period||', 'with', 'all', 'the', 'yankee', 'autographs', 'on', 'it', '||period||', '||return||', '||return||', 'bobby:', 'sure', 'do', '||period||', 'mister', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'it', '||comma||', 'yeah', '||period||', 'boy', '||comma||', 'stubs', 'sure', 'went', 'to', 'town', 'with', 'this', 'thing', 'huh', '||questionmark||', 'yeah', '||comma||', 'well', '||comma||', 'bobby', '||comma||', 'uh', '||comma||', 'what', 'if', 'i', 'told', 'you', 'a', 'very', 'important', 'person', 'at', 'the', 'new', 'york', 'yankees', 'needed', 'this', 'card', 'back', '||period||', '||return||', '||return||', 'bobby:', 'oh', '||comma||', 'no', '||period||', "i'd", 'never', 'part', 'with', 'this', 'card', 'for', 'anything', 'in', 'the', 'world', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'uh', '||comma||', 'bobby', '||comma||', 'uh', '||comma||', "who's", 'your', 'favorite', 'yankee', '||period||', '||return||', '||return||', 'bobby:', 'paul', "o'neill", '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'what', 'if', 'i', 'tell', 'paul', "o'neill", 'to', 'hit', 'a', 'home', 'run', 'tomorrow', '||comma||', 'just', 'for', 'you', '||period||', '||return||', '||return||', 'bobby:', 'would', 'he', '||questionmark||', 'paul', "o'neill", 'would', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'for', 'you', 'he', 'would', '||period||', '||return||', '||return||', 'bobby:', 'would', 'he', 'hit', 'two', 'home', 'runs', '||questionmark||', '||return||', '||return||', 'kramer:', 'two', '||questionmark||', 'sure', 'kid', '||comma||', 'yeah', '||period||', 'but', 'then', 'you', 'gotta', 'promise', "you'll", 'do', 'something', 'for', 'me', '||period||', '||return||', '||return||', 'bobby:', 'i', 'know', '||period||', 'get', 'out', 'of', 'this', 'bed', 'one', 'day', 'and', 'walk', 'again', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'that', 'would', 'be', 'nice', '||period||', 'but', 'i', 'really', 'just', 'need', 'this', 'card', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'this', 'candelabra', '||questionmark||', '||return||', '||return||', 'holly:', 'yeah', '||comma||', 'that', 'was', 'grandma', "memma's", 'also', '||period||', 'she', 'bought', 'it', 'on', 'her', 'trip', 'to', 'europe', 'in', '1936', '||period||', 'jerry', '||comma||', "i'm", 'thrilled', 'you', 'like', 'my', 'mutton', '||period||', 'i', 'was', 'afrais', 'you', 'only', 'ate', '||period||', '||period||', '||period||', 'salad', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "salad's", 'got', "nothin'", 'on', 'this', 'mutton', '||period||', '||return||', '||return||', 'holly:', 'that', 'is', 'so', 'funny', '||period||', 'did', 'you', 'just', 'make', 'that', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'wish', 'i', 'could', 'take', 'credit', 'for', 'it', '||period||', "it's", 'actually', 'the', 'line', 'my', 'butcher', 'uses', 'when', "we're", 'chewing', 'the', 'fat', '||period||', 'how', 'about', 'that', 'beautiful', 'desk', 'over', 'there', '||questionmark||', '||leftparen||', 'hides', 'meat', 'in', 'napkin', 'in', 'jacket', '||rightparen||', '||return||', '||return||', 'holly:', 'that', 'was', 'in', "grandma's", 'study', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'do', '||comma||', 'ransack', 'the', 'place', 'after', 'she', 'died', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'some', 'fine', 'mutton', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'getting', 'out', 'of', 'here', '||period||', 'can', 'i', 'borrow', 'your', 'jacket', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'well', '||comma||', 'uh', 'the', 'thing', 'is', 'that', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'grabs', 'jacket', 'back', '||rightparen||', '||return||', '||return||', 'elaine:', "it's", 'cold', 'out', '||comma||', 'and', 'i', "didn't", 'bring', 'my', 'own', '||period||', 'jerry', '||exclammark||', 'god', 'forbid', 'i', 'should', 'borrow', 'one', 'from', 'holly', '||period||', 'it', 'might', 'have', 'belonged', 'to', 'grandma', 'memma', '||period||', 'thanks', 'for', 'mutton', '||period||', '||return||', '||return||', 'elaine:', 'down', 'boy', '||comma||', 'nice', 'doggy', '||period||', "i'm", 'a', 'nice', 'person', '||period||', "don't", 'believe', 'what', 'you', 'hear', '||period||', '||return||', '||return||', 'holly:', 'where', 'are', 'the', 'napkins', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'holly:', 'grandma', "memma's", 'napkins', '||period||', "there's", 'two', 'missing', '||period||', 'elaine', 'took', 'them', "didn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'about', 'that', '||period||', 'have', 'you', 'got', 'any', 'floss', '||questionmark||', '||return||', '||return||', 'holly:', 'you', 'heard', 'her', '||period||', 'she', 'coveted', 'them', '||period||', 'i', 'bet', 'she', 'took', 'them', 'just', 'to', 'spite', 'me', '||period||', "she's", 'probably', 'having', 'a', 'good', 'laugh', 'about', 'it', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', 'down', 'doggy', '||period||', 'oh', 'oh', 'a', 'a', 'a', 'a', 'a', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'what', 'are', 'you', 'doing', 'in', 'this', 'neighborhood', '||questionmark||', '||return||', '||return||', 'elaine:', 'did', 'you', 'do', 'with', 'the', 'dogs', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "they're", 'in', 'the', 'kitchen', '||period||', '||period||', '||period||', '||period||', 'okay', '||comma||', 'quite', '||exclammark||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', 'these', 'dogs', 'were', 'chasing', 'me', '||period||', 'and', 'no', 'cab', 'would', 'stop', 'and', 'i', 'had', 'to', 'get', 'off', 'the', 'street', '||period||', 'then', 'i', 'remembered', 'that', 'you', 'lived', 'here', '||period||', '||return||', '||return||', 'jerry:', 'why', 'were', 'dogs', 'chasing', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'just', "don't", 'like', 'me', '||period||', "it's", 'a', 'long', 'story', '||period||', 'i', 'can', 'tell', 'you', 'one', 'day', 'but', 'i', "can't", 'tell', 'you', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'i', 'would', 'askk', 'you', 'to', 'stay', 'tonight', 'but', 'i', 'only', 'have', 'the', 'sofa', 'bed', 'and', "it's", 'where', 'i', 'sleep', '||period||', '||return||', '||return||', 'elaine:', "we'll", 'have', 'to', 'sleep', 'head', 'to', 'toe', '||period||', '||return||', '||return||', 'jerry:', 'head', 'to', 'toe', '||questionmark||', '||return||', '||return||', 'elaine:', 'head', 'to', 'toe', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'wake', 'up', '||period||', "it's", '830', 'you', 'were', 'supposed', 'to', 'walk', 'me', 'up', 'at', '715', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', 'i', "didn't", 'get', 'any', 'sleep', 'you', 'kept', 'kicking', 'me', 'in', 'the', 'face', '||period||', '||return||', '||return||', 'elaine:', "you're", 'a', 'wake', 'up', 'guy', '||period||', "don't", 'you', 'have', 'calls', 'to', 'make', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'make', 'them', 'later', '||period||', 'uh', '||period||', '||return||', '||return||', 'wilhelm:', 'have', 'you', 'seen', 'morgan', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'not', 'here', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'no', '||comma||', "he's", 'late', '||period||', '||return||', '||return||', 'george:', "it's", 'impossible', '||period||', 'i', 'got', 'him', 'a', 'wake', 'up', 'service', '||period||', '||return||', '||return||', 'wilhelm:', 'now', '||comma||', 'george', '||comma||', 'you', "don't", 'have', 'to', 'cover', 'for', 'him', 'any', 'more', '||period||', "he's", 'going', 'to', 'be', 'gone', 'soon', 'and', "i'm", 'going', 'to', 'recommend', 'you', 'for', 'his', 'job', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'gone', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'sounds', 'like', 'all', 'the', 'winking', 'got', 'you', 'a', 'promotion', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'want', "morgan's", 'job', '||period||', "he's", 'got', 'a', 'lot', 'of', 'work', 'to', 'do', '||period||', 'hey', '||comma||', 'elaine', '||comma||', 'your', 'friend', 'never', 'woke', 'up', 'mr', '||period||', 'morgan', '||period||', '||return||', '||return||', 'elaine:', 'nah', '||comma||', 'he', 'was', 'tired', '||period||', 'he', 'had', 'some', 'feet', 'in', 'his', 'face', '||period||', 'my', 'cousin', 'holly', 'is', 'completely', 'insane', '||period||', 'she', 'keeps', 'calling', 'and', 'accusing', 'me', 'of', 'stealing', 'her', 'napkins', '||period||', '||return||', '||return||', 'george:', 'napkins', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'why', '||questionmark||', 'why', 'would', 'i', 'take', 'her', 'stupid', 'napkins', '||period||', '||return||', '||return||', 'jerry:', 'because', 'they', 'were', 'in', 'the', 'pockets', 'of', 'my', 'jacket', '||period||', '||return||', '||return||', 'elaine:', 'they', 'were', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'i', 'was', 'using', 'them', 'to', 'spit', 'out', 'the', 'mutton', '||period||', '||return||', '||return||', 'elaine:', 'spit', 'it', 'out', '||questionmark||', 'i', 'had', 'dogs', 'chasing', 'me', 'for', 'that', 'mutton', '||period||', 'i', 'was', 'almost', 'mauled', 'because', 'of', 'that', 'mutton', '||period||', '||return||', '||return||', 'george:', 'what', 'exactly', 'is', 'mutton', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'and', 'i', "didn't", 'want', 'to', 'find', 'out', '||period||', 'so', 'where', 'is', 'my', 'jacket', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'must', 'have', 'left', 'it', 'at', "jame's", '||return||', '||return||', 'jerry:', 'you', 'spent', 'the', 'night', 'at', "james's", '||questionmark||', 'did', 'we', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', 'but', 'we', 'reversed', 'positions', 'so', 'there', 'was', 'no', 'funny', 'business', '||period||', '||return||', '||return||', 'jerry:', 'reversed', 'positions', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'know', '||comma||', 'head', 'to', 'toe', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'your', 'genitals', 'are', 'still', 'lined', 'up', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'because', 'i', 'slept', 'with', 'my', 'back', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'mr', '||period||', "o'neill", '||questionmark||', '||return||', '||return||', "o'neill:", 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'uh', '||comma||', 'look', '||comma||', 'you', "don't", 'know', 'me', '||period||', '||return||', '||return||', "o'neill:", 'i', 'can', 'give', 'you', 'an', 'autograph', 'there', '||comma||', 'but', 'my', "pen's", 'kind', 'of', 'screwed', 'up', '||period||', "you'd", 'only', 'like', 'half', 'a', '||quotemark||', 'p', '||quotemark||', 'or', 'something', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "it's", 'uh', '||comma||', 'not', 'that', 'see', '||comma||', '||period||', "it's", 'about', 'a', 'little', 'boy', 'in', 'a', 'hospital', '||period||', 'i', 'was', 'wondering', 'if', 'you', 'could', 'do', 'something', 'to', 'lift', 'his', 'spirits', '||period||', '||return||', '||return||', "o'neill:", 'sure', '||comma||', 'i', 'could', 'help', 'you', 'there', '||period||', '||return||', '||return||', 'kramer:', 'sure', '||comma||', 'well', 'i', 'promised', 'you', 'would', 'hit', 'him', 'two', 'home', 'runs', '||period||', '||return||', '||return||', "o'neill:", 'say', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'klick', '||exclammark||', '||period||', 'a', 'couple', 'of', 'dingers', '||period||', '||return||', '||return||', "o'neill:", 'you', 'promised', 'a', 'kid', 'in', 'the', 'hospital', 'that', 'i', 'would', 'hit', 'two', 'home', 'runs', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'no', 'good', '||questionmark||', '||return||', '||return||', "o'neill:", 'yeah', '||period||', "that's", 'no', 'good', '||period||', "it's", 'terrible', '||period||', 'you', "don't", 'hit', 'home', 'runs', 'like', 'that', '||period||', "it's", 'hard', 'to', 'hit', 'home', 'runs', '||period||', 'and', 'where', 'the', 'heck', 'did', 'you', 'get', 'two', 'from', '||questionmark||', '||return||', '||return||', 'kramer:', 'two', 'is', 'better', 'than', 'one', '||period||', '||return||', '||return||', "o'neill:", 'that', '||comma||', "that's", 'ridiculous', '||period||', "i'm", 'not', 'a', 'home', 'run', 'hitter', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'babe', 'ruth', 'did', 'it', '||period||', '||return||', '||return||', "o'neill:", 'he', 'did', 'not', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'do', 'you', 'say', 'that', 'babe', 'ruth', 'is', 'a', 'liar', '||questionmark||', '||return||', '||return||', "o'neill:", "i'm", 'not', 'calling', 'him', 'a', 'liar', 'but', 'he', 'was', 'not', 'stupid', 'enough', 'to', 'promise', 'two', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', 'i', 'did', 'overextend', 'myself', '||period||', '||return||', '||return||', "o'neill:", 'how', 'the', 'heck', 'did', 'you', 'get', 'in', 'here', 'anyway', '||questionmark||', '||return||', '||return||', 'james:', '||leftparen||', 'on', 'phone', '||rightparen||', 'oh', '||comma||', 'hi', 'elaine', '||period||', 'you', 'know', 'i', 'lost', 'all', 'of', 'my', '630', 'clients', 'because', 'of', 'you', '||period||', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'well', 'why', 'did', 'you', 'have', 'to', 'stick', 'your', 'feet', 'in', 'my', 'face', '||questionmark||', '||period||', '||period||', '||period||', 'yes', '||comma||', 'i', 'have', 'the', 'jacket', '||period||', 'hold', 'on', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'dogs', '||rightparen||', 'fellas', '||exclammark||', '||return||', '||return||', 'tv:', 'the', 'yankees', 'take', 'the', 'field', 'on', 'a', 'beautiful', 'afternoon', '||period||', '||return||', '||return||', 'kramer:', "it's", 'hot', 'in', 'here', '||period||', 'hey', '||comma||', 'bobby', '||comma||', 'can', 'i', 'have', 'some', 'of', 'your', 'juice', '||questionmark||', '||return||', '||return||', 'bobby:', 'after', 'paul', "o'neill", 'hits', 'his', 'first', 'home', 'run', '||period||', '||return||', '||return||', 'holly:', '||leftparen||', 'from', 'buzzer', '||rightparen||', "it's", 'holly', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'tv:', 'and', 'the', 'two', 'and', 'one', 'pitch', 'to', "o'neill", '||period||', 'a', 'towering', 'shot', 'back', 'to', 'deep', 'right', 'field', 'and', "it's", 'gone', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'tv:', 'a', 'home', 'run', 'for', 'paul', "o'neill", '||period||', 'the', 'yanks', 'lead', 'one', 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', 'all', 'right', '||exclammark||', '||return||', '||return||', 'bobby:', 'one', 'more', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "what's", 'all', 'this', '||questionmark||', '||return||', '||return||', 'holly:', 'i', 'decided', 'i', 'was', 'going', 'to', 'make', 'you', 'dinner', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'we', 'were', 'going', 'out', '||period||', '||return||', '||return||', 'holly:', 'well', '||comma||', 'after', 'you', 'scarfed', 'up', 'my', 'mutton', 'i', 'had', 'the', 'irresistible', 'urge', 'to', 'make', 'pork', 'chops', 'for', 'you', '||period||', 'i', 'said', 'hello', 'to', 'franco', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'franco', '||questionmark||', '||return||', '||return||', 'holly:', 'your', 'butcher', '||comma||', 'down', 'the', 'street', '||period||', '||return||', '||return||', 'jerry:', 'i', 'bet', 'he', 'acted', 'aloof', 'like', 'he', "didn't", 'know', 'me', '||period||', '||return||', '||return||', 'holly:', 'a', 'little', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'so', 'franco', '||period||', '||return||', '||return||', 'tv:', 'bottom', 'of', 'the', 'eighth', '||comma||', 'score', 'tied', 'at', 'one', 'apiece', '||period||', 'two', 'and', 'one', 'to', 'paul', "o'neill", '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'bobby', '||comma||', "it's", 'very', 'very', 'hard', 'to', 'hit', 'two', 'home', 'runs', 'in', 'one', 'game', '||period||', 'even', 'for', 'paul', "o'neill", '||period||', '||return||', '||return||', 'kramer:', 'he', 'can', 'do', 'it', '||comma||', 'mr', '||period||', 'kramer', '||period||', 'i', 'know', 'he', 'can', '||period||', "he'll", 'do', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'tv:', '||quotemark||', 'klick', '||exclammark||', 'long', 'fly', 'ball', 'into', 'deep', 'left', 'field', 'over', "bell's", 'head', '||period||', '||period||', '||period||', "o'neill's", 'rounding', 'second', "o'neill", 'going', 'for', 'third', '||comma||', "o'neill", 'rounding', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'come', 'on', '||exclammark||', '||return||', '||return||', 'tv:', '||period||', '||period||', '||period||', 'third', 'being', 'waived', 'in', '||period||', '||return||', '||return||', 'kramer:', 'go', '||exclammark||', 'go', '||exclammark||', '||exclammark||', '||return||', '||return||', 'tv:', '||period||', '||period||', '||period||', 'martinez', 'throws', 'it', 'over', "alomar's", 'head', '||period||', "o'neill", 'is', 'safe', 'at', 'home', '||period||', 'and', 'the', 'yankees', 'take', 'the', 'lead', '||period||', '||return||', '||return||', 'kramer:', 'an', 'in', 'the', 'park', 'home', 'run', '||exclammark||', '||return||', '||return||', 'bobby:', 'yeay', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||exclammark||', 'yeah', '||comma||', 'well', '||comma||', 'i', 'guess', "i'll", 'be', 'on', 'my', 'way', '||leftparen||', 'grabs', 'framed', 'card', '||rightparen||', '||return||', '||return||', 'tv:', "that's", 'being', 'scored', 'a', 'triple', 'for', 'paul', "o'neill", 'with', 'a', 'throwing', 'error', 'charged', 'to', 'martinez', '||period||', '||return||', '||return||', 'bobby:', 'hey', '||comma||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'bobby:', "that's", 'not', 'a', 'home', 'run', '||period||', '||leftparen||', 'grabs', 'frame', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'maybe', 'not', 'technically', '||comma||', 'but', '||return||', '||return||', 'bobby:', 'you', 'said', "he'd", 'hit', 'two', 'home', 'runs', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||period||', 'bobby', '||comma||', 'bobby', '||exclammark||', "that's", 'just', 'as', 'good', '||exclammark||', '||return||', '||return||', 'bobby:', 'well', '||comma||', "you're", 'not', 'taking', 'that', 'card', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'bobby', '||comma||', 'bobby', '||comma||', 'we', 'had', 'a', 'deal', '||period||', '||period||', '||period||', 'gimme', 'that', '||return||', '||return||', 'holly:', 'so', '||comma||', 'is', 'the', 'chop', 'the', 'way', 'you', 'like', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'usually', 'like', 'mine', 'with', 'an', 'angioplasty', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'something', 'really', 'stinks', 'to', 'high', 'h', 'holly', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'everyone', 'does', 'here', '||period||', '||dash||', 'cooking', 'pork', 'chops', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'uh', '||comma||', "i'm", 'meeting', 'james', 'here', '||period||', "he's", 'bringing', 'over', 'your', 'jacket', '||period||', '||return||', '||return||', 'holly:', 'what', 'about', 'the', 'napkins', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'take', 'your', 'napkins', '||period||', '||return||', '||return||', 'holly:', 'then', 'who', 'did', '||questionmark||', '||return||', '||return||', 'elaine:', 'ask', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'we', 'could', 'argue', 'all', 'night', 'over', 'who', 'took', 'the', 'napkins', '||period||', 'the', 'point', 'is', 'in', "today's", 'modern', 'world', 'it', 'just', "doesn't", 'seem', 'relevant', '||period||', '||return||', '||return||', 'wilhelm:', 'i', 'still', 'want', 'to', 'know', 'what', 'happened', 'to', 'that', 'birthday', 'card', '||questionmark||', 'now', '||comma||', 'morgan', '||comma||', 'did', 'you', 'ever', 'sign', 'it', '||questionmark||', '||return||', '||return||', 'morgan:', 'no', 'sir', '||comma||', 'george', 'never', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'right', '||comma||', 'i', "didn't", '||period||', 'i', 'take', 'full', 'responsibility', 'for', 'the', 'card', 'not', 'being', 'here', '||period||', 'i', '||comma||', 'uh', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||comma||', '||return||', '||return||', 'wilhelm:', "what's", 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'a', 'birthday', 'card', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'tomorrow', 'night', '||comma||', 'paull', "o'neill", 'has', 'to', 'catch', 'a', 'fly', 'ball', 'in', 'his', 'hat', '||period||', '||return||', '||return||', 'wilhelm:', 'george', '||comma||', 'this', 'is', 'beautiful', '||period||', 'why', "didn't", 'you', 'tell', 'me', 'you', 'were', 'going', 'to', 'have', 'it', 'mounted', 'like', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'and', 'you', 'were', 'probably', 'just', 'going', 'to', 'stick', 'it', 'in', 'an', 'envelope', '||period||', '||return||', '||return||', 'wilhelm:', 'ha', 'ha', 'ha', 'ha', 'ha', '||comma||', 'george', '||comma||', 'keep', 'up', 'the', 'good', 'work', '||period||', '||return||', '||return||', 'morgan:', 'ha', 'ha', '||comma||', 'uh', '||comma||', 'well', 'you', 'screwed', 'me', 'again', '||comma||', 'costanza', '||period||', 'how', 'am', 'i', 'supposed', 'to', 'sign', 'the', 'card', 'now', 'when', "it's", 'already', 'under', 'glass', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'this', 'is', '||comma||', '||return||', '||return||', 'holly:', 'excuse', 'me', '||period||', 'what', 'are', 'those', 'dogs', 'wearing', '||questionmark||', '||return||', '||return||', 'james:', 'oh', '||comma||', 'bandanas', '||comma||', "aren't", 'they', 'cute', '||questionmark||', '||return||', '||return||', 'holly:', 'you', 'gave', "memma's", 'napkins', 'to', 'some', 'dogs', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'happened', 'to', 'my', 'jacket', '||questionmark||', '||return||', '||return||', 'james:', 'oh', '||comma||', 'the', 'dogs', 'did', 'that', 'but', 'it', "wasn't", 'their', 'fault', '||comma||', 'somebody', 'stuffed', 'some', 'strange', 'meat', 'in', 'the', 'pocket', '||period||', '||return||', '||return||', 'holly:', 'was', 'it', 'mutton', '||questionmark||', '||return||', '||return||', 'james:', 'could', 'have', 'been', '||period||', '||return||', '||return||', 'holly:', 'do', 'you', 'always', 'stuff', 'meat', 'in', 'your', 'pocket', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'sometimes', 'i', 'use', 'the', 'sofa', '||period||', '||return||', '||return||', 'george:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'mr', '||period||', 'steinbrenner', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'yes', '||comma||', 'george', '||comma||', 'please', '||comma||', 'come', 'in', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'steinbrenner:', 'thanks', 'for', 'the', 'card', '||period||', 'i', 'loved', 'it', '||period||', 'gosh', 'it', 'made', 'me', 'feel', 'good', '||period||', 'you', 'know', '||comma||', 'word', 'has', 'it', 'that', 'you', 'were', 'the', 'brains', 'behind', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'not', 'just', 'me', '||comma||', 'the', 'whole', 'organization', '||period||', 'especially', 'mr', '||period||', 'morgan', '||period||', '||return||', '||return||', 'steinbrenner:', 'morgan', '||comma||', 'morgan', '||comma||', 'you', 'know', 'his', 'name', 'is', 'conspicuously', 'absent', 'from', 'this', 'card', '||period||', 'almost', 'like', 'he', 'went', 'out', 'of', 'his', 'way', 'not', 'to', 'sign', 'it', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', 'morgan', 'is', 'a', 'good', 'man', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', 'can', 'stop', 'kowtowing', 'to', 'morgan', '||period||', 'congratulations', '||comma||', 'you', 'got', 'his', 'job', '||period||', '||return||', '||return||', 'george:', 'wa', '||comma||', 'uh', '||comma||', 'thank', 'you', 'sir', '||comma||', 'you', 'know', 'i', 'am', 'not', 'quite', 'sure', "i'm", 'right', 'for', 'it', '||period||', '||return||', '||return||', 'steinbrenner:', 'stop', 'it', 'george', '||comma||', "he's", 'out', '||comma||', "you're", 'in', '||period||', '||return||', '||return||', 'steinbrenner:', 'a', 'lot', 'more', 'work', 'you', 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', '||return||', '||return||', 'steinbrenner:', 'a', 'lot', 'more', 'responsibility', '||period||', 'long', 'long', 'hours', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', '||return||', '||return||', 'steinbrenner:', 'not', 'much', 'more', 'money', '||period||', 'but', "you'll", 'finally', 'get', 'the', 'recognition', 'you', 'deserve', '||period||', '||return||', '||return||', 'george:', "that's", 'what', "i'm", 'afraid', 'of', '||period||', 'you', 'know', 'mr', '||period||', 'steinbrenner', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', 'know', 'as', 'painfull', 'as', 'it', 'is', 'i', 'had', 'to', 'let', 'a', 'few', 'people', 'go', 'over', 'the', 'years', '||period||', 'yogi', 'berra', '||comma||', 'lou', 'pinella', '||comma||', 'bucky', 'dent', '||comma||', 'billy', 'martin', '||comma||', 'dallas', 'green', '||comma||', 'dick', 'houser', '||comma||', 'bill', 'virdon', '||comma||', 'billy', 'martin', '||comma||', 'scott', 'marrow', '||comma||', 'billy', 'martin', '||comma||', 'bob', 'lemmon', '||comma||', 'billy', 'martin', '||comma||', 'gene', 'michael', '||comma||', 'buck', 'showalter', '||comma||', 'uh', '||comma||', 'tut', '||exclammark||', '||comma||', '||period||', '||period||', '||period||', 'george', '||comma||', 'you', "didn't", 'hear', 'that', 'from', 'me', '||period||', '||leftparen||', 'george', 'exits', '||rightparen||', '||period||', '||period||', '||period||', 'george', '||exclammark||', '||return||', '||return||', 'i', 'always', 'feel', 'bad', 'for', 'the', 'silver', 'medal', 'winner', 'in', 'the', 'olympics', '||period||', 'how', 'do', 'you', 'live', 'with', 'that', 'the', 'rest', 'of', 'your', 'life', '||questionmark||', 'people', 'are', 'gonna', 'keep', 'asking:', '||dash||', 'how', 'much', 'did', 'you', 'lose', 'by', '||questionmark||', '||dash||', 'i', "don't", 'even', 'know', '||period||', '||period||', '||period||', '||exclammark||', 'it', 'was', 'like', '||period||', '||period||', '||period||', '||leftparen||', 'very', 'fast', '||rightparen||', 'now', '||period||', 'now', '||period||', '||period||', '||period||', 'now', '||period||', 'now', '||period||', '||period||', 'now', '||period||', '||period||', 'was', 'like', '||comma||', 'like', '||period||', '||period||', '||period||', 'now', '||period||', '||period||', 'now', '||period||', '||period||', 'now', '||period||', '||period||', '||period||', '||exclammark||', 'it', 'was', 'it', '||period||', '||period||', '||period||', '||exclammark||', 'eh', '||comma||', 'it', 'was', 'it', 'and', 'i', 'lost', '||period||', 'i', 'trained', '||comma||', 'i', 'worked', 'out', '||comma||', 'i', 'exercised', '||comma||', 'i', 'did', 'everything', '||comma||', 'i', 'was', 'doing', 'push', '||dash||', 'ups', '||comma||', 'sit', '||dash||', 'ups', '||comma||', 'i', 'never', 'did', 'anything', 'but', 'exercise', 'and', 'work', 'out', 'for', '20', 'years', '||comma||', 'i', 'flew', 'half', 'way', 'around', 'the', 'world', 'and', 'aaaaaaaaaah', '||exclammark||', '||period||', '||period||', '||period||', '||leftparen||', 'showing', 'a', 'tiny', 'distance', 'between', 'his', 'index', 'and', 'thumb', '||rightparen||', 'and', 'that', 'was', '||period||', '||period||', '||period||', 'it', 'was', 'a', 'photo', '||dash||', 'finish', '||exclammark||', 'silver', '||period||', '||period||', '||period||', '||leftparen||', 'stretching', 'his', 'neck', 'forward', '||rightparen||', '||period||', '||period||', '||period||', 'gold', '||period||', 'if', 'i', 'had', 'a', 'pimple', '||comma||', 'i', "would've", 'won', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'i', "can't", 'believe', 'you', 'write', 'for', 'this', 'j', '||period||', 'peterman', 'catalog', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'get', 'this', 'one', '||quotemark||', 'i', 'packed', 'my', 'rod', 'and', 'reel', '||period||', '30', 'hours', 'later', '||comma||', 'lost', 'in', 'the', 'fiord', '||comma||', 'a', 'welcoming', 'smile', '||period||', 'thank', 'god', 'she', 'spotted', 'the', 'epaulettes', 'on', 'my', 'norwegian', 'ice', '||dash||', 'fishing', 'vest', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 'this', 'catalog', 'is', 'all', 'about', 'how', 'to', 'score', 'in', 'a', 'foreign', 'country', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'what', 'do', 'you', 'do', 'all', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'that', 'much', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'uh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'that', 'new', 'promotion', 'was', 'supposed', 'to', 'be', 'a', 'lot', 'more', 'work', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'when', 'the', 'season', 'starts', '||period||', 'right', 'now', '||comma||', 'i', 'sit', 'around', 'pretending', 'that', "i'm", 'busy', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'pull', 'that', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'always', 'look', 'annoyed', '||period||', 'yeah', '||comma||', 'when', 'you', 'look', 'annoyed', 'all', 'the', 'time', '||comma||', 'people', 'think', 'that', "you're", 'busy', '||period||', 'think', 'about', 'it', '||period||', '||period||', '||period||', '||leftparen||', 'acts', 'annoyed', 'for', '3', 'seconds', '||rightparen||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'you', 'do', '||exclammark||', 'he', 'looks', 'very', 'busy', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'he', 'looks', 'busy', '||exclammark||', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', 'what', "i'm", "doin'", '||period||', 'in', 'fact', 'mr', '||period||', 'wilhelm', 'gave', 'me', 'one', 'of', 'those', 'little', 'stress', 'dolls', '||period||', 'all', 'right', '||period||', '||leftparen||', 'gets', 'up', '||rightparen||', 'back', 'to', 'work', '||period||', '||leftparen||', 'acts', 'annoyed', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'did', 'you', 'come', 'up', 'with', 'a', 'little', 'stupid', 'story', 'for', 'the', 'himalayan', 'walking', 'shoe', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', "i'm", 'completely', 'blocked', '||exclammark||', 'in', 'fact', '||comma||', "i'm", 'gonna', 'work', 'on', 'it', 'tonight', '||period||', 'oh', '||period||', 'oh', 'no', '||exclammark||', 'oh', '||comma||', 'i', "can't", '||exclammark||', 'i', 'got', 'that', 'marathon', 'runner', 'coming', 'in', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'what', 'marathon', 'runner', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'this', 'guy', 'jean', '||dash||', 'paul', '||comma||', 'jean', '||dash||', 'paul', '||period||', '||period||', '||period||', 'i', 'met', 'him', 'when', 'i', 'was', 'working', 'at', 'pendant', '||comma||', 'editing', 'a', 'book', 'on', 'running', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'wait', '||exclammark||', 'jean', '||dash||', 'paul', '||comma||', 'jean', '||dash||', 'paul', '||exclammark||', "isn't", 'he', 'the', 'guy', 'who', 'overslept', 'at', 'the', 'olympics', '4', 'years', 'ago', 'and', 'missed', 'the', 'marathon', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'him', '||period||', '||return||', '||return||', 'jerry:', "he's", 'from', 'uh', '||period||', '||period||', '||period||', 'trinidad', 'and', 'tobago', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "he's", 'trinidadian', 'and', '||period||', '||period||', '||period||', 'tobagan', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'oversleep', 'at', 'the', 'olympics', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'i', 'know', '||period||', 'i', 'know', '||period||', '||period||', '||period||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', "it's", 'like', 'the', 'biggest', 'event', 'of', 'your', 'life', '||exclammark||', "you'd", 'think', "you'd", 'have', '||comma||', 'like', '||comma||', '6', 'alarm', 'clocks', '||comma||', "payin'", '||dash||', 'off', 'little', 'kids', 'in', 'the', 'village', 'to', 'come', 'banging', 'on', 'your', 'door', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', '||comma||', 'he', 'was', 'pretty', 'devastated', '||period||', 'this', 'is', 'his', 'first', 'race', 'in', '3', 'years', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', '||period||', "that's", 'a', 'big', 'responsability', 'on', 'your', 'hands', '||period||', '||return||', '||return||', 'elaine:', 'what', 'responsibility', '||questionmark||', 'i', "don't", 'have', 'any', 'responsibility', '||period||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'wake', 'him', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', 'eh', '||period||', '||period||', '||period||', "he'll", 'get', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'judy', '||period||', '||return||', '||return||', 'judy:', 'hi', '||comma||', 'elaine', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'fine', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jerry:', "i've", 'seen', 'her', 'in', 'your', 'building', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'she', 'was', 'married', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whispering', '||rightparen||', "she's", 'not', '||period||', '||period||', '||period||', 'and', 'the', 'guy', 'just', 'took', 'off', '||period||', '||leftparen||', 'makes', 'a', 'sad', 'face', '||rightparen||', "don't", 'say', 'anything', 'to', 'anybody', '||period||', '||return||', '||return||', 'jerry:', 'whom', 'i', 'gonna', 'tell', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', "it's", 'just', 'something', 'you', 'have', 'to', 'say', '||period||', '||period||', '||period||', '||return||', '||return||', 'wilhelm:', 'george', '||comma||', 'we', 'just', 'got', 'the', 'final', 'budget', 'numbers', '||period||', 'we', 'went', 'over', 'budget', 'on', 'some', 'of', 'the', 'items', '||comma||', 'but', 'i', "don't", 'think', "there's", 'gonna', 'be', 'a', 'problem', '||period||', '||leftparen||', 'hands', 'over', 'the', 'budget', 'file', 'to', 'a', 'very', 'annoyed', 'george', '||rightparen||', "i'll", 'let', 'you', 'get', 'back', 'to', 'work', '||comma||', 'george', '||period||', '||leftparen||', 'mr', '||period||', 'wilhelm', 'leaves', 'the', 'office', '||rightparen||', '||return||', '||return||', 'jerry:', 'he', 'overslept', 'and', 'missed', 'the', 'whole', 'race', '||period||', "isn't", 'that', 'amazing', '||questionmark||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'what', 'happened', '||period||', 'i', 'bet', 'he', 'got', 'the', 'am/pm', 'mixed', '||dash||', 'up', '||period||', '||return||', '||return||', 'jerry:', 'my', "money's", 'on', 'the', 'snooze', '||period||', 'i', 'bet', 'he', 'hit', 'the', 'snooze', 'for', 'an', 'extra', '5', 'and', 'it', 'never', 'came', 'back', 'on', '||period||', '||leftparen||', 'kramer', 'enters', 'with', 'a', 'bucket', 'and', 'starts', 'filling', 'it', 'with', 'water', 'on', 'the', 'sink', '||rightparen||', 'imagine', 'your', 'whole', 'life', 'riding', 'on', 'an', 'alarm', 'clock', '||period||', '||return||', '||return||', 'kramer:', 'alarm', 'clocks', '||questionmark||', 'i', 'never', 'use', "'em", '||period||', "don't", 'trust', "'em", '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'have', 'a', 'uh', '||period||', '||period||', '||period||', 'mental', 'alarm', '||period||', 'i', 'set', 'my', 'head', 'for', '||period||', '||period||', '||period||', 'quarter', 'to', 'seven', 'and', '||period||', '||period||', '||period||', '||leftparen||', 'makes', 'sound', 'with', 'the', 'lips', '||dash||', '||quotemark||', 'pop', '||exclammark||', '||quotemark||', '||rightparen||', '||period||', '||period||', '||period||', 'i', 'get', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'always', 'works', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'never', 'fails', '||period||', 'see', '||comma||', "it's", 'based', 'on', 'your', 'body', 'clock', '||period||', 'see', '||comma||', 'your', 'body', 'has', 'an', 'internal', 'mechanism', '||period||', 'it', 'knows', 'what', 'time', 'it', 'is', '||period||', '||return||', '||return||', 'george:', 'uh', '||dash||', 'uh', '||period||', "what's", 'with', 'the', 'bucket', '||questionmark||', '||return||', '||return||', 'kramer:', 'lomez', '||comma||', 'he', 'sold', 'me', 'his', 'hot', 'tub', '||period||', '||return||', '||return||', 'jerry:', 'hot', 'tub', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'yeah', '||comma||', "it's", 'in', 'my', 'living', 'room', '||period||', 'i', 'just', 'gotta', 'fill', 'it', '||period||', '||leftparen||', 'points', 'to', 'bucket', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'put', 'a', 'hot', 'tub', '||period||', '||period||', '||period||', 'in', 'your', 'living', 'room', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'a', 'beauty', '||exclammark||', "it's", 'got', 'these', 'high', '||dash||', 'volume', 'aqua', '||dash||', 'sage', 'jets', 'oscillating', 'and', 'pulsating', '||comma||', 'soothing', 'your', 'every', 'aching', 'muscle', '||period||', 'the', "water's", 'gonna', 'get', 'over', '120', 'degrees', '||exclammark||', '||leftparen||', 'happy', '||rightparen||', '||return||', '||return||', 'george:', 'is', 'that', 'tolerable', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', "it's", 'tolerable', '||period||', '||period||', '||period||', '||exclammark||', '||leftparen||', 'happy', '||rightparen||', '||return||', '||return||', 'jerry:', "isn't", 'that', 'the', 'same', 'temperature', 'the', 'coffee', 'that', 'scalded', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'think', "it's", 'a', 'little', 'cooler', 'than', 'that', '||period||', '||period||', '||period||', '||leftparen||', 'smiles', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'he', 'uh', '||period||', '||period||', '||period||', "doesn't", 'have', 'any', 'running', 'water', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'ask', 'those', 'kind', 'of', 'questions', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', 'jerry', '||comma||', 'this', 'is', 'jean', '||dash||', 'paul', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'hi', 'jean', '||dash||', 'paul', '||period||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', 'sorry', 'about', 'the', 'olympics', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'me', 'too', '||period||', '||leftparen||', 'disappointed', '||rightparen||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'listen', "i'm", 'gonna', 'go', 'call', 'work', 'to', 'see', 'if', 'i', 'can', 'get', 'my', 'deadline', 'extended', '||period||', 'i', "can't", '||period||', '||period||', '||period||', 'come', 'up', 'with', 'anything', 'for', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', '||period||', 'catalog', "writer's", 'block', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'funny', '||period||', '||leftparen||', 'annoyed', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'so', 'what', 'happened', '||questionmark||', 'the', 'snooze', 'alarm', '||comma||', "wasn't", 'it', '||questionmark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'man', '||comma||', 'it', "wasn't", 'the', 'snooze', '||period||', 'most', 'people', 'think', 'it', 'was', 'the', 'snooze', '||comma||', 'but', 'no', '||comma||', 'no', 'snooze', '||period||', '||return||', '||return||', 'jerry:', 'am/pm', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'man', '||comma||', 'it', "wasn't", 'the', 'am/pm', '||period||', 'it', 'was', 'the', 'volume', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', '||period||', 'the', 'volume', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'yes', '||comma||', 'the', 'volume', '||period||', 'there', 'was', 'a', 'separate', 'knob', 'for', 'the', 'radio', 'alarm', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'separate', 'knob', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'yes', '||comma||', 'separate', 'knob', '||period||', 'why', 'separate', 'knob', '||questionmark||', '||exclammark||', 'why', 'separate', 'knob', '||questionmark||', '||exclammark||', '||leftparen||', 'frustrated', '||rightparen||', '||return||', '||return||', 'jerry:', 'some', 'people', 'like', 'to', 'have', 'the', 'radio', 'alarm', 'a', 'little', 'louder', 'than', 'the', 'radio', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'oh', '||comma||', 'please', '||comma||', 'man', '||comma||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', "don't", 'worry', '||comma||', "it's", 'not', 'gonna', 'happen', 'again', '||period||', 'not', 'if', 'i', 'have', 'anything', 'to', 'say', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "what's", 'the', 'alarm', 'clock', 'situation', 'in', 'your', 'house', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'simple', 'question', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "i've", 'got', 'an', 'alarm', '||comma||', 'ok', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'old', 'one', '||questionmark||', "didn't", 'i', 'once', 'miss', 'a', 'flight', 'to', 'cleveland', 'because', 'of', 'that', 'alarm', 'clock', '||questionmark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'flight', 'to', 'cleveland', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'works', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'it', '||period||', '||period||', '||period||', 'works', '||exclammark||', '||return||', '||return||', 'george:', 'eh', '||period||', '||period||', '||period||', 'come', 'oooon', '||period||', '||period||', '||period||', '||leftparen||', 'starts', 'stabbing', 'the', 'paper', 'with', 'the', 'pen', '||period||', 'mr', '||period||', 'wilhelm', 'comes', 'in', '||rightparen||', '||return||', '||return||', 'wilhelm:', 'george', '||period||', '||period||', '||period||', 'i', 'think', 'you', 'may', 'be', 'taking', 'work', 'a', 'little', 'too', 'seriously', '||period||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', "i've", 'got', 'a', 'lot', 'to', 'do', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'george', '||comma||', "i'll", 'tell', 'you', 'what', "i'd", 'like', 'you', 'to', 'do', '||period||', 'i', '||comma||', "i'd", 'like', 'you', 'to', 'drop', 'everything', '||period||', '||return||', '||return||', 'wilhelm:', 'i', 'have', 'this', '||period||', '||period||', '||period||', 'fun', 'little', 'assignment', 'i', 'think', "you'll", 'enjoy', '||period||', "there's", 'some', 'reps', 'in', 'from', 'the', 'houston', 'astros', 'for', 'talks', 'on', 'that', 'interleague', 'play', '||period||', '||period||', '||period||', 'and', 'i', 'want', 'you', 'to', 'show', 'them', 'a', 'good', 'time', '||period||', '||leftparen||', 'george', 'acts', 'like', '||quotemark||', 'ok', '||comma||', "you're", 'the', 'boss', '||quotemark||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'jerry:', "you're", '40', 'minutes', 'late', '||period||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'held', 'up', '||period||', 'do', 'you', 'mind', 'if', 'i', 'heat', 'this', 'muffin', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||leftparen||', 'elaine', 'puts', 'her', 'muffin', 'in', 'the', 'microwave', 'and', 'sets', 'the', 'timer', '||rightparen||', 'what', 'is', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'said', 'you', 'were', 'gonna', 'be', 'here', 'at', 'a', 'certain', 'time', '||comma||', 'and', 'you', "weren't", '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'uh', '||period||', 'uh', '||dash||', 'uh', '||period||', 'and', 'this', 'all', 'means', 'uh', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'means', 'that', 'a', 'man', 'has', 'come', 'from', 'very', 'far', 'away', 'to', 'compete', 'in', 'a', 'very', 'difficult', 'race', '||comma||', "he's", 'put', 'his', 'faith', 'in', 'you', '||comma||', 'and', 'frankly', '||comma||', "i'm", 'a', 'little', 'concerned', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'are', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'am', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "i'm", 'not', 'running', 'in', 'the', 'marathon', '||exclammark||', 'he', 'is', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'got', 'enough', 'to', 'think', 'about', 'just', "tryin'", 'to', 'come', 'up', 'with', 'some', 'load', "o'crap", 'for', 'that', 'himalayan', 'walking', 'shoe', '||exclammark||', 'i', 'mean', '||comma||', "i've", 'given', 'him', 'a', 'place', 'to', 'stay', '||comma||', "i'll", 'set', 'an', 'alarm', '||comma||', 'but', "i'm", 'not', 'gonna', 'turn', 'my', 'life', 'completely', 'upside', 'down', 'for', 'this', 'guy', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'talking', 'about', 'upside', 'down', '||period||', '||leftparen||', 'jean', '||dash||', 'paul', 'and', 'kramer', 'come', 'in', '||rightparen||', "i'm", 'talking', 'about', 'waking', 'him', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'jean', '||dash||', 'paul', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'jean', '||dash||', 'paul', '||period||', 'how', 'was', 'your', 'soak', '||questionmark||', 'was', 'a', 'good', 'soak', '||questionmark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'ah', '||comma||', 'man', '||comma||', 'very', 'good', 'soak', '||period||', 'the', 'soak', "o'the", 'year', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smelling', '||rightparen||', "what's", 'burning', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||leftparen||', 'rushing', 'to', 'the', 'microwave', '||rightparen||', 'my', 'muffin', '||exclammark||', '||leftparen||', 'opens', 'microwave', 'door', '||rightparen||', 'oh', '||comma||', 'shoot', '||exclammark||', '||leftparen||', 'slams', 'it', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'i', "don't", 'know', '||period||', 'i', 'set', 'this', 'thing', 'for', '20', 'seconds', '||period||', '||return||', '||return||', 'kramer:', 'this', 'was', 'set', 'for', '2', 'minutes', '||period||', 'see', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'at', 'jerry', '||rightparen||', "don't", 'say', 'anything', '||exclammark||', "don't", '||period||', '||period||', 'say', '||period||', '||period||', 'anything', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'you', 'miss', '||dash||', 'set', 'the', 'timer', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaning', 'against', 'the', 'refrigerator', '||rightparen||', 'jean', '||dash||', 'paul', '||comma||', "it's", 'not', 'my', 'microwave', '||comma||', 'ok', '||questionmark||', 'ok', '||questionmark||', 'all', 'right', '||comma||', 'listen', '||comma||', "let's", 'just', 'go', '||period||', 'come', 'on', '||comma||', 'jean', '||dash||', 'paul', '||comma||', "let's", 'go', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'ok', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'all', 'right', '||period||', "we'll", 'see', 'you', 'at', 'the', 'race', '||comma||', 'ok', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'hope', 'so', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', "that's", 'cute', '||exclammark||', '||leftparen||', 'closes', 'door', 'and', 'exits', 'with', 'jean', '||dash||', 'paul', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "i'm", "tellin'", 'you', '||comma||', 'elaine', "doesn't", 'know', 'whatta', 'hell', "she's", "doin'", '||exclammark||', 'i', 'gotta', 'take', 'over', 'this', 'whole', 'operation', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'look', 'how', 'tense', 'you', 'are', '||period||', '||period||', '||period||', 'you', 'need', 'to', 'take', 'a', 'soak', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'taking', 'a', 'soak', 'in', 'that', 'human', 'bacteria', 'frat', 'you', 'got', "goin'", 'there', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', "i'm", "tellin'", 'you', '||comma||', "it's", 'great', '||period||', 'i', 'opened', 'up', 'all', 'the', 'windows', '||period||', '||period||', '||period||', 'the', 'air', 'is', 'cold', '||comma||', 'the', 'tub', 'is', 'boiling', 'hot', '||period||', '||period||', '||period||', "it's", 'like', 'sweden', '||comma||', 'man', '||period||', 'sweeeeden', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'relaxing', '||rightparen||', '||period||', '||period||', '||period||', 'oooohhh', 'yeeaaah', '||period||', '||period||', '||period||', 'aaahhh', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'is', 'really', 'enjoying', 'this', '||rightparen||', '||return||', '||return||', 'clayton:', '||period||', '||period||', '||period||', "'till", 'this', 'bastard', 'over', 'here', 'says', '||quotemark||', "let's", 'call', 'the', 'sons', "o'bitches", 'and', 'go', 'visit', "'em", 'on', 'new', 'york', '||exclammark||', '||quotemark||', '||leftparen||', 'the', '3', 'men', 'laugh', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'well', '||comma||', "we're", 'certainly', 'glad', 'that', 'you', 'could', 'make', 'it', '||period||', '||return||', '||return||', 'gardner:', 'i', 'like', 'your', 'organization', '||comma||', 'george', '||period||', "we've", 'been', "talkin'", 'to', 'a', 'really', 'friendly', 'son', 'of', 'a', 'bitch', 'in', 'the', 'front', 'office', '||period||', 'wilhelm', '||comma||', 'i', 'think', 'his', 'name', '||period||', '||return||', '||return||', 'george:', 'oh', 'yes', '||comma||', 'mr', '||period||', 'wilhelm', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'gardner:', 'he', 'told', 'us', 'that', 'george', 'costanza', 'was', 'gonna', 'be', "takin'", 'us', 'bastards', 'out', 'on', 'the', 'town', '||period||', '||leftparen||', 'the', '3', 'men', 'laugh', 'again', '||rightparen||', 'i', 'said', '||quotemark||', 'that', 'son', 'of', 'a', 'bitch', "doesn't", 'know', 'what', "he's", 'got', 'in', 'store', 'for', 'him', '||exclammark||', '||quotemark||', '||period||', '||leftparen||', 'the', '3', 'men', 'laugh', 'once', 'more', '||rightparen||', '||return||', '||return||', 'zeke:', 'finish', 'your', 'drink', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'al', '||dash||', 'almost', '||period||', 'almost', '||period||', '||return||', '||return||', 'zeke:', "let's", 'get', 'that', 'bastard', 'bring', 'us', 'another', 'round', '||exclammark||', '||leftparen||', 'waves', 'to', 'bartender', '||rightparen||', '||return||', '||return||', 'clayton:', 'you', 'a', 'big', 'drinker', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', 'maybe', 'not', 'as', 'much', 'as', 'this', 'bastard', '||period||', '||period||', '||period||', '||leftparen||', 'points', 'at', 'zeke', '||comma||', 'they', 'all', 'laugh', '||rightparen||', 'i', 'can', 'hold', 'my', 'own', '||exclammark||', '||leftparen||', 'they', 'all', 'continue', 'laughing', 'and', 'drinking', '||rightparen||', '||return||', '||return||', 'jerry:', 'jean', '||dash||', 'paul', '||comma||', 'i', 'asked', 'you', 'down', 'here', 'this', 'morning', 'because', "i'm", 'concerned', '||period||', 'concerned', 'that', 'tomorrow', 'is', 'perhaps', 'the', 'biggest', 'race', 'of', 'your', 'entire', 'career', '||period||', 'and', 'the', 'person', 'with', 'whom', 'you', 'have', 'chosen', 'to', 'stay', '||period||', '||period||', '||period||', 'is', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'saying', '||quotemark||', 'get', 'the', 'hell', 'outta', 'there', '||quotemark||', '||exclammark||', 'let', 'me', 'put', 'you', 'in', 'a', 'hotel', '||period||', "you'll", 'be', 'comfortable', '||comma||', "you'll", 'be', 'near', 'the', 'starting', 'line', '||comma||', 'and', 'most', 'importantly', '||period||', '||period||', '||period||', "you'll", 'have', 'a', 'wake', '||dash||', 'up', 'call', '||comma||', 'jean', '||dash||', 'paul', '||exclammark||', 'a', 'wake', '||dash||', 'up', 'call', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'wake', '||dash||', 'up', 'call', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'these', 'people', 'never', 'fail', '||period||', 'they', 'sit', 'in', 'a', 'room', 'with', 'a', 'big', 'clock', 'all', 'night', 'long', '||comma||', 'just', "waitin'", 'to', 'make', 'that', 'call', '||exclammark||', '||leftparen||', 'george', 'comes', 'in', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'no', '||comma||', 'i', 'will', 'stay', 'with', 'elaine', '||period||', 'it', 'would', 'be', 'rude', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'bastards', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'how', 'was', 'the', 'meeting', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'really', 'like', 'those', 'sons', 'of', 'bitches', '||period||', '||return||', '||return||', 'jerry:', 'sons', 'of', 'bitches', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', "that's", 'how', 'they', 'talk', '||period||', 'you', 'know', '||comma||', "everyone's", 'either', 'a', 'bastard', 'or', 'a', 'son', 'of', 'a', 'bitch', '||period||', 'yeah', '||comma||', "it's", 'like', 'uh', '||period||', '||period||', '||period||', '||quotemark||', 'boy', '||comma||', 'that', 'son', 'of', 'a', 'bitch', 'box', 'can', 'really', 'hit', '||comma||', 'uh', '||questionmark||', '||exclammark||', '||quotemark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'really', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', "that's", 'how', 'they', 'talk', 'in', 'the', 'major', 'league', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', 'heeeeey', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'how', 'many', 'sweaters', 'you', 'got', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', 'four', '||period||', '||leftparen||', 'to', 'waitress', '||rightparen||', 'yeah', '||comma||', 'could', 'i', 'have', 'a', 'cup', "o'tea", '||questionmark||', 'boiling', 'hot', '||period||', '||return||', '||return||', 'george:', "what's", "goin'on", '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'fell', 'asleep', 'in', 'the', 'hot', 'tub', 'and', 'the', 'heat', 'pump', 'broke', '||period||', 'water', 'went', 'down', 'to', '58', 'degrees', '||period||', 'i', "can't", 'get', 'my', 'core', 'temperature', 'back', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'your', 'core', 'temperature', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jean', '||dash||', 'paul', '||rightparen||', 'here', '||comma||', 'feel', 'my', 'hand', '||period||', '||leftparen||', 'takes', 'off', 'glove', '||rightparen||', 'yeah', '||comma||', 'feel', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'phew', '||period||', '||period||', '||period||', 'this', 'son', 'of', 'a', 'bitch', 'is', 'ice', '||dash||', 'cold', '||period||', '||leftparen||', 'smiles', '||rightparen||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', '||return||', '||return||', 'clayton:', 'uh', '||period||', '||period||', '||period||', 'is', 'that', 'you', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'yeah', '||comma||', "it's", 'me', '||period||', 'is', 'this', 'clayton', '||questionmark||', '||return||', '||return||', 'clayton:', 'well', 'listen', '||comma||', 'you', 'son', 'of', 'a', 'bitch', '||exclammark||', 'you', 'know', 'where', 'we', 'are', '||questionmark||', '30', '000', 'feet', 'above', 'your', 'head', '||comma||', 'you', 'bastard', '||exclammark||', '||leftparen||', 'the', '3', 'laugh', 'and', 'howl', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'are', 'they', "doin'", "lettin'", 'you', 'bastards', 'on', 'an', 'airplane', '||questionmark||', "don't", 'they', 'know', "that's", 'against', 'faa', 'regulation', '||questionmark||', '||return||', '||return||', 'clayton:', '||leftparen||', 'to', 'the', 'other', '2', 'men', '||rightparen||', 'hey', '||comma||', 'hush', 'up', '||comma||', 'now', '||exclammark||', 'i', "can't", 'hear', 'him', '||exclammark||', '||return||', '||return||', 'george:', 'listen', '||period||', 'i', 'want', 'you', 'guys', 'to', 'send', 'along', 'those', 'agreements', 'the', 'minute', 'you', 'land', '||period||', 'our', 'boys', "can't", 'wait', 'to', 'kick', 'your', 'butts', '||exclammark||', '||return||', '||return||', 'zeke:', '||leftparen||', 'to', 'clayton', '||rightparen||', "when's", 'that', 'bastard', "comin'", 'to', 'houston', '||questionmark||', '||return||', '||return||', 'clayton:', 'hey', '||comma||', 'zeke', 'wants', 'to', 'know', 'when', 'you', 'yankee', 'bastards', 'are', "comin'", 'to', 'houston', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'tell', 'that', 'son', 'of', 'a', 'bitch', 'no', 'yankee', 'is', 'ever', "comin'", 'to', 'houston', '||period||', 'not', 'as', 'long', 'as', 'you', 'bastards', 'are', 'running', 'things', '||period||', '||return||', '||return||', 'clayton:', 'hey', '||comma||', 'uh', '||comma||', 'speak', 'up', '||comma||', 'george', '||comma||', 'i', "can't", 'hear', 'ya', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'mr', '||period||', 'wilhelm', 'comes', 'in', 'and', 'hears', 'george', 'yelling', '||rightparen||', 'you', 'tell', 'that', 'son', 'of', 'a', 'bitch', 'no', 'yankee', 'is', 'ever', "comin'", 'to', 'houston', '||exclammark||', 'not', 'as', 'long', 'as', 'you', 'bastards', 'are', 'running', 'things', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'george', '||exclammark||', 'george', '||comma||', 'get', 'a', 'hold', 'of', 'yourself', '||exclammark||', '||return||', '||return||', 'george:', 'mr', '||period||', 'wilhelm', '||period||', '||period||', '||period||', '||return||', '||return||', 'wilhelm:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'well', 'i', '||dash||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thinking', 'and', 'typing', '||rightparen||', 'it', 'was', 'a', 'cold', "winter's", 'night', 'in', 'timbuktu', '||period||', '||period||', '||period||', '||leftparen||', 'hits', 'the', 'keyboard', '||rightparen||', 'oh', '||exclammark||', 'this', 'stinks', '||exclammark||', '||leftparen||', 'grabs', 'a', 'himalayan', 'walking', 'shoe', 'and', 'starts', 'squeezing', 'it', 'for', 'inspiration', '||rightparen||', 'oh', '||comma||', 'come', 'on', '||period||', '||period||', '||period||', 'come', 'on', '||period||', '||period||', '||period||', '||exclammark||', '||period||', '||period||', '||period||', 'god', '||exclammark||', '||leftparen||', 'quits', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'hello', '||period||', '||return||', '||return||', 'judy:', 'hello', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', "i'm", 'a', 'friend', 'of', "elaine's", '||period||', '||return||', '||return||', 'judy:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', '||leftparen||', 'looks', 'at', 'the', 'baby', '||rightparen||', 'oooooh', '||period||', '||period||', '||period||', 'look', 'at', 'the', 'cute', 'little', 'bastard', '||period||', '||period||', '||period||', '||leftparen||', 'the', 'building', 'manager', 'comes', 'in', '||rightparen||', 'you', 'are', "mama's", 'little', 'bastard', '||comma||', "aren't", 'you', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'manager:', 'whatta', 'hell', 'are', 'you', "doin'", 'harassing', 'my', 'tenants', '||questionmark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', '||leftparen||', 'smiling', '||rightparen||', 'oh', 'come', 'on', '||comma||', 'you', 'son', 'of', 'a', 'bitch', '||period||', "i'm", 'just', 'trying', 'to', 'be', 'friendly', '||period||', '||return||', '||return||', 'manager:', 'all', 'right', '||comma||', "that's", 'it', '||exclammark||', '||leftparen||', 'grabs', 'jean', '||dash||', 'paul', 'and', 'gets', 'him', 'out', '||rightparen||', "let's", 'go', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'what', '||period||', '||period||', '||period||', 'but', 'i', 'got', 'a', 'race', 'tomorrow', '||exclammark||', '||return||', '||return||', 'george:', 'whoa', '||period||', '||period||', '||period||', "it's", 'like', 'a', 'furnace', 'in', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'whatta', 'hell', 'is', "goin'on", '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'turned', 'up', 'the', 'heat', '||period||', '||return||', '||return||', 'jerry:', 'turn', 'up', 'the', 'heat', 'in', 'your', 'apartment', '||exclammark||', '||leftparen||', 'opens', 'a', 'window', '||rightparen||', '||return||', '||return||', 'kramer:', "i'm", "freezin'", '||exclammark||', 'i', 'just', 'need', 'to', 'get', 'my', 'hot', 'tub', 'running', '||period||', "i'm", 'waiting', 'for', 'my', 'new', 'heat', 'pump', '||period||', '||return||', '||return||', 'george:', 'well', "what's", 'in', 'this', 'giant', 'box', 'out', 'in', 'the', 'hall', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||questionmark||', 'oh', 'that', 'must', 'be', 'it', '||period||', '||return||', '||return||', 'george:', "it's", 'huge', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'got', 'the', 'biggest', 'one', 'they', 'had', '||period||', "it's", 'industrial', 'strength', '||period||', '16000', "btu's", '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'i', 'can', 'be', 'there', 'in', '10', 'minutes', '||period||', '||period||', '||period||', 'you', 'can', 'count', 'on', 'me', '||exclammark||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'jerry', 'is', 'going', 'to', 'his', 'bedroom', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'the', 'call', '||period||', '||period||', '||period||', '||exclammark||', '||return||', '||return||', 'george:', 'jean', '||dash||', 'paul', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stops', 'walking', '||rightparen||', 'jean', '||dash||', 'paul', '||exclammark||', '||leftparen||', 'george', 'acts', 'like', 'he', 'scored', '||rightparen||', '||return||', '||return||', 'jerry:', 'pretty', 'lucky', 'to', 'find', 'this', 'hotel', '||comma||', 'jean', '||dash||', 'paul', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'man', '||comma||', 'i', 'just', 'want', 'to', 'get', 'some', 'sleep', '||period||', '||leftparen||', 'gets', 'into', 'bed', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||leftparen||', 'picks', 'up', 'the', 'alarm', 'clock', '||rightparen||', "let's", 'check', 'out', 'the', 'clock', '||period||', 'notch', 'good', '||period||', '||period||', '||period||', '650', '||period||', '||period||', '||period||', 'volume', 'check', '||period||', '||leftparen||', 'music', 'playing', '||comma||', 'he', 'starts', 'swinging', '||rightparen||', 'what', 'kinda', 'music', 'you', 'wanna', 'wake', 'up', 'to', '||questionmark||', 'top', '40', '||comma||', 'classical', '||period||', '||period||', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'man', '||comma||', 'whatever', '||exclammark||', '||leftparen||', 'annoyed', '||rightparen||', '||return||', '||return||', 'jerry:', 'how', 'about', 'adult', 'contemporary', '||questionmark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'fine', '||comma||', 'adult', 'contemporary', '||period||', 'just', 'pick', 'one', '||exclammark||', '||leftparen||', 'irritated', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||period||', '||period||', "we're", 'going', 'with', 'adult', 'contempo', '||period||', '||period||', '||period||', '||leftparen||', 'puts', 'alarm', 'away', '||comma||', 'gets', 'phone', '||rightparen||', 'now', '||period||', '||period||', '||period||', 'the', 'failsafe', '||period||', 'the', 'wake', '||dash||', 'up', 'guy', '||period||', '||period||', '||period||', '||leftparen||', 'dials', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'yes', '||comma||', 'yes', '||comma||', 'the', 'wake', '||dash||', 'up', 'guy', '||period||', '||return||', '||return||', 'man:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'front', 'desk', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'this', 'is', 'room', '419', '||comma||', "i'd", 'like', 'a', 'wake', '||dash||', 'up', 'call', 'for', '650', 'am', 'tomorrow', 'morning', '||period||', '||return||', '||return||', 'man:', 'yes', 'sir', '||period||', '||return||', '||return||', 'jerry:', "that's", 'room', '419', '||period||', '650', 'am', '||period||', 'four', '||period||', '||period||', '||period||', 'one', '||period||', '||period||', '||period||', 'niner', '||period||', '||period||', '||period||', '||return||', '||return||', 'man:', 'yes', '||comma||', 'i', 'got', 'it', 'sir', '||period||', 'you', 'only', 'had', 'to', 'say', 'it', 'once', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'but', "it's", 'a', 'very', 'important', 'wake', '||dash||', 'up', 'call', '||period||', '||period||', '||period||', 'and', 'i', "don't", 'wanna', 'take', 'any', 'chances', '||period||', '||return||', '||return||', 'man:', 'every', 'wake', '||dash||', 'up', 'call', 'i', 'make', 'is', 'important', '||period||', "you're", 'no', 'more', 'important', 'than', 'any', 'of', 'our', 'guests', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'just', '||period||', '||period||', '||period||', "don't", 'wanna', 'get', 'into', 'a', 'whole', 'thing', 'with', 'you', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'man:', 'are', 'you', 'through', '||questionmark||', '||leftparen||', 'annoyed', '||rightparen||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'yeah', 'i', 'am', '||comma||', 'but', 'i', 'just', '||period||', '||period||', '||period||', '||leftparen||', 'man', 'hangs', '||dash||', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'humm', '||period||', '||period||', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'what', 'is', 'it', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'offended', 'the', 'wake', '||dash||', 'up', 'guy', '||period||', '||period||', '||period||', '||exclammark||', '||leftparen||', 'worried', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gets', 'up', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'i', 'did', '||period||', 'i', 'think', "he's", 'got', 'it', 'in', 'for', 'me', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'man', '||comma||', 'he', "doesn't", 'got', '||quotemark||', 'in', '||quotemark||', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'he', "doesn't", 'call', 'now', 'out', 'of', 'spite', '||questionmark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'it', 'is', 'his', 'job', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'not', 'comfortable', '||period||', '||period||', '||period||', '||leftparen||', 'gets', 'up', 'again', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'for', "god's", 'sake', '||period||', '||period||', '||period||', '||exclammark||', '||leftparen||', 'gets', 'up', 'and', 'they', 'start', 'packing', '||rightparen||', '||return||', '||return||', 'elaine:', 'jean', '||dash||', 'paul', '||questionmark||', '||leftparen||', 'searching', 'everywhere', '||rightparen||', 'hey', 'jean', '||dash||', 'paul', '||questionmark||', 'jean', '||dash||', 'paul', '||questionmark||', '||leftparen||', 'worried', '||rightparen||', 'jean', '||dash||', 'paul', '||questionmark||', '||exclammark||', 'oh', 'man', '||period||', '||period||', '||period||', '||leftparen||', 'calling', "jerry's", '||rightparen||', 'oh', '||period||', '||period||', '||period||', 'machine', '||period||', '||return||', '||return||', "jerry's", 'machine:', "i'm", 'not', 'here', '||comma||', 'leave', 'a', 'message', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'jerry', '||comma||', 'jean', '||dash||', "paul's", 'missing', '||exclammark||', "he's", 'alone', 'in', 'the', 'city', '||exclammark||', 'call', 'me', 'back', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', 'judy', '||comma||', 'hi', '||comma||', 'listen', '||period||', '||period||', '||period||', '||return||', '||return||', 'judy:', 'you', 'have', 'got', 'some', 'nerve', '||comma||', 'elaine', '||exclammark||', 'i', 'told', 'you', 'about', 'that', 'baby', 'in', 'confidence', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'i', "didn't", 'tell', 'anyone', '||period||', '||return||', '||return||', 'judy:', 'well', 'your', 'friend', 'certainly', 'seemed', 'to', 'know', 'all', 'about', 'it', '||period||', '||leftparen||', 'shuts', 'the', 'door', '||rightparen||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'jerry', '||exclammark||', '||leftparen||', 'runs', 'angry', 'to', 'her', 'apartment', '||rightparen||', '||return||', '||return||', 'jerry:', 'feel', 'much', 'better', 'here', 'at', 'my', 'home', 'base', '||comma||', 'jean', '||dash||', 'paul', '||period||', "it's", 'a', 'controlled', 'environment', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', "it's", 'a', 'marathon', '||comma||', 'you', 'know', '||period||', '26', 'miles', '||exclammark||', 'i', 'need', 'to', 'get', 'some', 'sleep', '||exclammark||', '||leftparen||', 'lies', 'on', 'the', 'sofa', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'believe', 'me', '||comma||', 'if', "i'd", 'been', 'with', 'you', 'there', 'in', 'barcelona', '||period||', '||period||', '||period||', "you'd", 'be', 'polishing', 'that', 'medal', 'right', 'now', '||period||', '||leftparen||', 'covers', 'jean', '||dash||', 'paul', 'with', 'a', 'blanket', '||rightparen||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'left', 'a', 'comfortable', 'hotel', 'bedroom', 'for', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'that', 'wake', '||dash||', 'up', 'guy', 'was', 'trouble', '||exclammark||', 'all', 'right', '||comma||', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'goes', 'knocking', 'on', "kramer's", '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shouting', '||rightparen||', 'man', 'that', 'thing', 'is', 'noisy', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouting', '||rightparen||', 'yeah', 'yeah', '||comma||', "we're", 'cracking', 'along', 'pretty', 'good', '||exclammark||', "we're", 'almost', 'up', 'to', '80', 'degrees', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'listen', '||comma||', 'do', 'me', 'a', 'favor', '||period||', 'set', 'your', 'mental', 'alarm', 'for', '630', 'and', 'gimme', 'a', 'call', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'ok', '||period||', 'wait', '||period||', '||leftparen||', 'concentrates', 'and', 'makes', 'the', '||quotemark||', 'pop', '||exclammark||', '||quotemark||', 'sound', '||rightparen||', 'done', '||exclammark||', '||leftparen||', 'jerry', 'stares', '||comma||', 'confused', '||rightparen||', '||return||', '||return||', 'jerry:', "he's", 'put', 'his', 'faith', 'in', 'you', '||period||', "he's", 'put', 'his', 'faith', 'in', 'you', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'i', 'trust', 'elaine', '||comma||', 'she', 'is', 'my', 'friend', '||period||', 'i', 'trust', 'elaine', '||comma||', 'she', 'is', 'my', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'frankly', '||comma||', "i'm", 'a', 'little', 'concerned', '||period||', '||return||', '||return||', 'elaine:', 'ohhh', '||comma||', "i'm", 'exhausted', '||period||', "i've", 'been', 'on', 'this', 'street', 'a', 'thousand', 'times', '||exclammark||', "it's", 'never', 'looked', 'so', 'strange', '||exclammark||', 'the', 'faces', '||period||', '||period||', '||period||', 'so', 'cold', '||exclammark||', 'in', 'the', 'distance', '||comma||', 'a', 'child', 'is', 'crying', '||period||', 'fatherless', '||period||', '||period||', '||period||', 'a', 'bastard', 'child', '||comma||', 'perhaps', '||period||', 'my', 'back', 'aches', '||period||', '||period||', '||period||', 'my', 'heart', 'aches', '||period||', '||period||', '||period||', 'but', 'my', 'feet', '||leftparen||', 'stops', 'to', 'look', 'at', 'her', 'feet', '||rightparen||', '||period||', '||period||', '||period||', 'my', 'feet', 'are', 'resilient', '||exclammark||', '||leftparen||', 'a', 'big', 'smile', 'grows', 'in', 'her', 'face', '||comma||', 'as', 'she', 'thinks', '||period||', '||period||', '||period||', '||rightparen||', 'thank', 'god', 'i', 'took', 'off', 'my', 'heels', '||comma||', 'and', 'put', 'on', 'my', '||period||', '||period||', '||period||', 'himalayan', 'walking', 'shoes', '||exclammark||', '||exclammark||', '||exclammark||', '||leftparen||', 'lifting', 'her', 'arms', 'up', 'in', 'the', 'air', '||comma||', 'in', 'ecstasy', '||comma||', 'as', 'she', 'says', '||period||', '||period||', '||period||', '||rightparen||', 'yes', '||exclammark||', '||return||', '||return||', '||leftparen||', 'two', 'clocks', 'at', 'a', 'table', '||comma||', 'both', '4:', '02', 'am', '||period||', 'jean', '||dash||', "paul's", 'sleeping', 'at', 'the', 'sofa', '||rightparen||', '||return||', '||return||', '||leftparen||', '4:', '02', 'am', '||period||', 'kramer', 'snores', '||period||', 'the', 'heat', 'pump', 'short', 'circuits', 'and', 'blows', 'the', 'fuses', 'on', 'the', 'entire', 'building', '||rightparen||', '||return||', '||return||', '||leftparen||', 'jerry', 'wakes', 'up', 'with', 'the', 'sunlight', '||period||', 'looks', 'at', 'the', 'electric', 'clock', '||comma||', 'which', 'stopped', 'at', '4:', '02', '||rightparen||', '||return||', '||return||', 'jerry:', '402', '||questionmark||', '||leftparen||', 'checks', 'his', 'wristwatch', '||rightparen||', 'aaa', '||dash||', 'aaahhh', '||exclammark||', 'eight', 'forty', 'seven', 'jean', '||dash||', 'paul', '||exclammark||', 'wake', 'up', '||exclammark||', 'wake', 'uuuuup', '||exclammark||', '||return||', '||return||', 'we', 'gotta', 'go', '||exclammark||', "it's", '8:', '47', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', '847', '||exclammark||', '||questionmark||', '||leftparen||', 'jumps', 'out', 'of', 'the', 'sofa', '||rightparen||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'just', 'put', 'your', 'clothes', 'on', '||exclammark||', "you'll", 'get', 'dressed', 'in', 'the', 'car', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'idiot', '||exclammark||', 'i', 'trusted', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'what', 'happened', 'to', 'the', 'building', '||questionmark||', '||exclammark||', 'the', 'electricity', 'went', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'the', 'heat', 'pump', 'blew', 'all', 'the', 'fuses', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'your', 'mental', 'alarm', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'guess', 'i', 'hit', 'the', 'snooze', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'runs', 'by', 'kramer', 'and', 'kramer', 'falls', 'down', '||rightparen||', '||return||', '||return||', 'jerry:', 'make', 'way', '||exclammark||', "i've", 'got', '||dash||', "i've", 'got', 'a', 'runner', 'here', '||exclammark||', 'get', 'outta', 'the', 'way', '||exclammark||', 'make', 'way', '||exclammark||', 'make', 'way', '||exclammark||', 'make', 'way', '||comma||', "it's", 'a', 'contender', '||exclammark||', '||leftparen||', 'an', 'event', 'guard', 'stops', 'them', '||rightparen||', '||return||', '||return||', 'guad:', 'hey', '||comma||', 'hold', 'it', '||exclammark||', '||return||', '||return||', 'jean', '||dash||', 'paul:', "i'm", 'late', '||comma||', 'man', '||comma||', "i'm", 'in', 'the', 'race', '||exclammark||', '||return||', '||return||', 'guard:', 'go', 'ahead', '||period||', '||return||', '||return||', 'jean', '||dash||', 'paul:', 'thank', 'you', 'jerry', '||comma||', "you're", 'a', 'wonderful', 'driver', '||period||', 'fantastic', 'route', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'go', '||comma||', "it's", 'a', 'race', '||exclammark||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'mr', '||period||', 'steinbrenner', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'yes', '||comma||', 'george', '||comma||', 'come', 'in', '||comma||', 'come', 'in', '||period||', 'george', '||comma||', 'word', "up's", "you've", 'been', 'cracking', 'under', 'the', 'pressure', '||period||', "can't", 'cope', '||comma||', "can't", 'stand', 'the', 'heat', '||period||', 'spit', 'the', 'bit', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', 'mr', '||period||', 'steinbrenner', '||comma||', 'i', 'can', 'explain', '||period||', '||period||', '||period||', '||return||', '||return||', 'steinbrenner:', 'oh', 'we', 'all', 'get', 'a', 'little', 'cuckoo', 'sometimes', 'george', '||comma||', 'i', 'used', 'to', 'be', 'like', 'you', '||period||', 'rating', 'personnel', "'till", 'they', 'cried', '||comma||', 'calling', 'managers', 'on', 'the', 'field', 'during', 'a', 'game', '||comma||', 'threatening', 'to', 'move', 'the', 'team', 'to', 'new', 'jersey', '||comma||', 'just', 'to', 'upset', 'people', '||period||', 'then', 'i', 'found', 'a', 'way', 'to', 'relax', '||period||', "i've", 'got', 'two', 'words', 'to', 'say', 'to', 'you', '||comma||', 'george', 'hot', 'tub', '||period||', '||leftparen||', 'george', 'looks', 'at', 'him', '||comma||', 'puzzled', '||rightparen||', '||return||', '||return||', 'jerry:', "i'm", "tellin'you", '||comma||', 'i', 'never', 'told', 'anyone', 'about', 'that', 'baby', '||period||', 'i', 'never', 'even', 'went', 'near', 'your', 'building', '||exclammark||', '||return||', '||return||', 'elaine:', 'then', 'how', 'did', 'she', 'find', 'out', '||comma||', 'jerry', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'should', 'check', 'with', 'the', 'rabbi', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'want', 'some', 'hot', 'tea', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'no', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', "there's", 'some', 'runners', '||period||', 'here', 'they', 'come', '||exclammark||', '||return||', '||return||', 'elaine:', "there's", 'jean', '||dash||', 'paul', '||exclammark||', "he's", 'up', 'front', '||exclammark||', "he's", 'leading', '||exclammark||', '||leftparen||', 'jumping', '||rightparen||', 'go', 'jean', '||dash||', 'paul', '||exclammark||', '||leftparen||', 'starts', 'screaming', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', 'yeah', '||exclammark||', 'come', 'on', '||exclammark||', '||leftparen||', 'starts', 'howling', '||rightparen||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', "let's", 'go', 'jean', '||dash||', 'paul', '||exclammark||', '||return||', '||return||', 'elaine:', 'go', 'jean', '||dash||', 'paaaaaul', '||exclammark||', '||return||', '||return||', 'steinbrenner:', "how're", 'you', 'enjoying', 'it', '||comma||', 'george', '||questionmark||', 'melts', 'that', 'tension', 'away', '||comma||', "doesn't", 'it', '||questionmark||', 'you', 'gotta', 'get', 'that', 'jet', 'on', 'the', 'good', 'spot', '||period||', 'oh', '||period||', 'oh', '||period||', 'uh', '||period||', 'uh', '||period||', 'yes', '||comma||', 'that', 'feels', 'good', '||period||', 'yes', '||comma||', "that's", 'real', 'good', '||period||', 'oh', 'yeah', '||comma||', "that's", 'where', 'i', 'keep', 'all', 'my', 'tension', '||period||', 'right', 'down', 'to', 'that', 'chicken', 'bone', '||period||', 'sometimes', 'i', 'get', 'my', 'wife', 'to', 'just', 'stuck', 'her', 'thumb', 'right', 'in', 'there', 'like', 'a', 'screwdriver', '||period||', 'ya', 'know', '||comma||', 'the', 'phillips', 'head', '||comma||', 'not', 'the', 'flat', 'one', '||period||', 'oh', 'god', '||comma||', 'those', 'flat', 'ones', 'frustrate', 'me', '||period||', 'you', 'got', 'it', 'in', '||comma||', 'but', 'it', 'slips', 'out', '||period||', 'you', 'put', 'it', 'in', 'again', '||comma||', 'slips', 'out', 'again', '||period||', 'you', 'a', 'single', 'man', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'bored', 'to', 'death', '||rightparen||', 'well', '||comma||', 'i', '||dash||', 'i', 'just', 'recently', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'steinbrenner:', "i'll", 'tell', 'you', '||comma||', 'if', 'you', 'wanna', 'get', 'something', 'wild', "goin'on", 'in', 'your', 'life', '||comma||', 'you', 'get', 'a', 'girl', 'and', 'bring', 'her', 'to', 'one', "o'these", 'things', '||period||', 'just', 'like', '4', 'shots', 'a', 'wild', 'turkey', '||period||', '||leftparen||', 'laughs', '||rightparen||', "she'll", 'think', "you're", 'hopalong', 'cassidy', '||period||', '||leftparen||', 'george', 'starts', 'sliding', '||comma||', 'until', 'he', 'gets', 'all', 'his', 'head', '||dash||', 'and', 'glasses', '||dash||', 'under', 'water', '||comma||', 'as', 'steinbrenner', 'keeps', 'talking', '||rightparen||', 'a', 'show', '||comma||', 'about', 'that', 'mickey', 'mantle', '||comma||', "wasn't", 'it', '||questionmark||', 'you', 'know', 'we', 'used', 'to', 'talk', '||period||', 'i', "don't", 'think', 'he', 'liked', 'me', 'very', 'much', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'so', '||comma||', 'what', 'theatre', 'you', 'wanna', 'go', 'to', 'tonight', '||questionmark||', 'we', 'got', '61st', 'and', '3rd', 'or', '84th', 'and', 'broadway', '||period||', '||return||', '||return||', 'jerry:', 'which', 'one', 'you', 'wanna', 'go', 'to', 'shmoopy', '||questionmark||', '||return||', '||return||', 'sheila:', 'you', 'called', 'me', 'shmoppy', '||period||', "you're", 'a', 'shmoopy', '||period||', '||return||', '||return||', 'jerry:', "you're", 'a', 'shmoopy', '||exclammark||', '||return||', '||return||', 'sheila:', "you're", 'a', 'shmoopy', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'a', 'shmoopy', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'shmoopies', '||period||', '||period||', '||period||', "what's", 'it', 'gonna', 'be', '||questionmark||', 'pick', 'a', 'theater', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', '||period||', '||period||', "we'll", 'go', 'to', '3rd', 'avenue', '||period||', 'so', '||comma||', 'can', 'you', 'come', 'with', 'us', 'for', 'lunch', 'to', 'the', 'soup', 'place', '||questionmark||', '||return||', '||return||', 'sheila:', 'no', '||period||', 'you', 'have', 'a', 'good', 'lunch', '||period||', 'but', "i'll", 'meet', 'you', 'back', 'here', 'for', 'the', 'movie', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'sheila:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'sheila', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'then', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'sheila:', 'bye', 'shmoopy', '||period||', '||return||', '||return||', 'jerry:', 'bye', 'shmoopy', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', 'we', 'ready', 'to', 'go', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'please', '||period||', 'please', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', "i'm", 'in', 'the', 'mood', 'for', 'a', 'cheeseburger', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'we', 'gotta', 'go', 'to', 'the', 'soup', 'place', '||period||', '||return||', '||return||', 'elaine:', 'what', 'soup', 'place', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "there's", 'a', 'soup', 'stand', '||comma||', "kramer's", 'been', 'going', 'there', '||period||', '||return||', '||return||', 'jerry:', "he's", 'always', 'raving', '||period||', 'i', 'finally', 'got', 'a', 'chance', 'to', 'go', 'there', 'the', 'other', 'day', '||comma||', 'and', 'i', 'tell', 'you', 'this', '||comma||', 'you', 'will', 'be', 'stunned', '||period||', '||return||', '||return||', 'elaine:', 'stunned', 'by', 'soup', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'eat', 'this', 'soup', 'standing', 'up', '||comma||', 'your', 'knees', 'buckle', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', 'all', 'right', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', "there's", 'only', 'one', 'caveat', '||dash||', '||dash||', 'the', 'guy', 'who', 'runs', 'the', 'place', 'is', 'a', 'little', 'temperamental', '||comma||', 'especially', 'about', 'the', 'ordering', 'procedure', '||period||', "he's", 'secretly', 'referred', 'to', 'as', 'the', 'soup', 'nazi', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'what', 'happens', 'if', 'you', "don't", 'order', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'yells', 'and', 'you', "don't", 'get', 'your', 'soup', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'follow', 'the', 'ordering', 'procedure', 'and', 'you', 'will', 'be', 'fine', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'all', 'right', '||period||', "let's", '||dash||', "let's", 'go', 'over', 'that', 'again', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'as', 'you', 'walk', 'in', 'the', 'place', 'move', 'immediately', 'to', 'your', 'right', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'main', 'thing', 'is', 'to', 'keep', 'the', 'line', 'moving', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'so', '||comma||', 'you', 'hold', 'out', 'your', 'money', '||comma||', 'speak', 'your', 'soup', 'in', 'a', 'loud', '||comma||', 'clear', 'voice', '||comma||', 'step', 'to', 'the', 'left', 'and', 'receive', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', "it's", 'very', 'important', 'not', 'to', 'embellish', 'on', 'your', 'order', '||period||', 'no', 'extraneous', 'comments', '||period||', 'no', 'questions', '||period||', 'no', 'compliments', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'boy', '||comma||', "i'm", 'really', 'scared', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'jerry', '||comma||', "that's", 'enough', 'now', 'about', 'the', 'soup', 'nazi', '||period||', 'whoa', '||exclammark||', 'wow', '||exclammark||', 'look', 'at', 'this', '||period||', 'you', 'know', 'what', 'this', 'is', '||questionmark||', 'this', 'is', 'an', 'antique', 'armoire', '||period||', 'wow', '||exclammark||', "it's", 'french', '||period||', 'armoire', '||period||', '||return||', '||return||', 'jerry:', 'ar', '||dash||', 'moire', '||period||', '||return||', '||return||', 'elaine:', 'how', 'much', 'is', 'this', '||questionmark||', '||return||', '||return||', 'furniture', 'guy:', 'i', 'was', 'asking', '250', '||comma||', 'but', 'you', 'got', 'a', 'nice', 'face', '||period||', '2', 'even', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', 'ha', '||period||', '200', '||period||', 'you', 'know', '||comma||', "i've", 'always', 'wanted', 'one', 'of', 'these', 'things', '||period||', '||return||', '||return||', 'jerry:', 'he', 'gave', 'you', 'the', 'nice', 'face', 'discount', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'all', 'right', '||period||', 'you', 'guys', 'go', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'the', 'soup', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'getting', 'an', 'armoire', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '[in', 'french', 'accent]', 'pardon', '||period||', '||return||', '||return||', 'george:', 'this', 'line', 'is', 'huge', '||period||', '||return||', '||return||', 'jerry:', "it's", 'like', 'this', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'george:', "isn't", 'that', 'that', 'bania', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', 'it', 'is', '||period||', 'just', 'be', 'still', '||period||', '||return||', '||return||', 'george:', 'whoop', '||exclammark||', 'too', 'late', '||period||', 'i', 'think', 'he', 'picked', 'up', 'the', 'scent', '||period||', '||return||', '||return||', 'bania:', 'hey', '||comma||', 'jerry', '||exclammark||', 'i', "didn't", 'know', 'you', 'liked', 'soup', '||period||', '||return||', '||return||', 'jerry:', 'hard', 'to', 'believe', '||period||', '||return||', '||return||', 'bania:', 'this', 'guy', 'makes', 'the', 'best', 'soup', 'in', 'the', 'city', '||comma||', 'jerry', '||period||', 'the', 'best', '||period||', 'you', 'know', 'what', 'they', 'call', 'him', '||questionmark||', 'soup', 'nazi', '||period||', '||return||', '||return||', 'jerry:', 'shhhhh', '||exclammark||', 'all', 'right', '||comma||', 'bania', '||comma||', 'i', '||dash||', "i'm", 'not', 'letting', 'you', 'cut', 'in', 'line', '||period||', '||return||', '||return||', 'bania:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'if', 'he', 'catches', 'us', '||comma||', "we'll", 'never', 'be', 'able', 'to', 'get', 'soup', 'again', '||period||', '||return||', '||return||', 'bania:', 'okay', '||period||', 'okay', '||period||', '||return||', '||return||', 'george:', 'medium', 'turkey', 'chili', '||period||', '||return||', '||return||', 'jerry:', 'medium', 'crab', 'bisque', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'get', 'any', 'bread', '||period||', '||return||', '||return||', 'jerry:', 'just', 'forget', 'it', '||period||', 'let', 'it', 'go', '||period||', '||return||', '||return||', 'george:', 'um', '||comma||', 'excuse', 'me', '||comma||', 'i', '||dash||', 'i', 'think', 'you', 'forgot', 'my', 'bread', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'bread', '||dash||', '||dash||', '$2', 'extra', '||period||', '||return||', '||return||', 'george:', '$2', '||questionmark||', 'but', 'everyone', 'in', 'front', 'of', 'me', 'got', 'free', 'bread', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'you', 'want', 'bread', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'please', '||period||', '||return||', '||return||', 'soup', 'nazi:', '$3', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'no', 'soup', 'for', 'you', '||exclammark||', '[snaps', 'fingers]', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', 'i', "can't", 'bring', 'in', 'here', '||questionmark||', 'i', 'live', 'here', '||period||', '||return||', '||return||', 'super:', 'its', 'sunday', '||comma||', 'elaine', '||period||', "there's", 'no', 'moving', 'on', 'sunday', '||period||', "that's", 'the', 'rule', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', "didn't", 'know', '||comma||', 'tom', '||period||', 'i', 'g', '||dash||', '||dash||', "can't", 'you', 'just', 'make', 'an', 'exception', '||questionmark||', 'please', '||period||', "i've", 'got', 'a', 'nice', 'face', '||period||', '||return||', '||return||', 'super:', 'tomorrow', '||comma||', 'okay', '||questionmark||', 'you', 'can', 'move', 'it', 'in', 'tommorrow', '||period||', "i'll", 'even', 'give', 'you', 'a', 'hand', '||comma||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', 'well', '||comma||', "you're", 'just', 'gonna', 'have', 'to', 'hold', 'this', 'for', 'me', '||period||', '||return||', '||return||', 'furniture', 'guy:', "i'm", 'a', 'guy', 'on', 'the', 'sidewalk', '||period||', 'i', "don't", 'have', 'layaway', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', '||period||', '||period||', 'please', "don't", 'go', '||period||', 'please', '||dash||', 'please', "don't", 'walk', 'away', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||period||', 'ohh', '||exclammark||', 'this', 'is', 'fantastic', '||period||', 'how', 'does', 'he', 'do', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', "don't", 'see', 'how', 'you', 'can', 'sit', 'there', 'eating', 'that', 'and', 'not', 'even', 'offer', 'me', 'any', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'gave', 'you', 'a', 'taste', '||period||', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'george:', 'why', "can't", 'we', 'share', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'not', 'to', 'say', 'anything', '||period||', 'you', "can't", 'go', 'in', 'there', '||comma||', 'brazenly', 'flaunt', 'the', 'rules', 'and', 'then', 'think', "i'm", 'gonna', 'share', 'with', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'do', 'you', 'hear', 'yourself', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', 'this', 'is', 'what', 'comes', 'from', 'living', 'under', 'a', 'nazi', 'regime', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'gotta', 'go', 'back', 'there', 'and', 'try', 'again', '||period||', 'hi', 'sheila', '||period||', '||return||', '||return||', 'sheila:', 'hi', '||period||', 'hi', 'shmoopy', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'shmoopy', '||period||', '||return||', '||return||', 'sheila:', 'no', '||comma||', "you're", 'a', 'shmoopy', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'a', 'shmoopy', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'going', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'listen', '||comma||', 'so', "we'll", 'meet', 'you', 'and', 'susan', 'at', 'the', 'movie', 'tonight', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', 'i', 'changed', 'my', 'mind', '||period||', 'i', '||comma||', 'uh', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', "don't", 'feel', 'like', 'it', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'just', 'like', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'like', 'that', '||period||', '||return||', '||return||', 'sheila:', 'boy', '||comma||', "he's", 'a', 'weird', 'guy', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', '[taking', "jerry's", 'couch', 'cushion]', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'hey', '||period||', 'hey', '||period||', 'hey', '||period||', 'hey', '||period||', 'hey', '||period||', 'hey', '||period||', 'wha', '||dash||', '||dash||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'elaine', '||comma||', 'she', 'has', 'to', 'leave', 'her', 'armoire', 'on', 'the', 'street', 'all', 'night', '||period||', '||period||', '||period||', "i'm", 'gonna', 'guard', 'it', 'for', 'her', '||period||', 'i', 'need', 'something', 'to', 'sit', 'on', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'sit', 'on', 'one', 'of', 'your', 'couch', 'cushions', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'this', 'is', 'so', 'nice', 'and', 'thick', '||period||', 'ahoy', 'there', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||exclammark||', 'thank', 'god', '||period||', 'i', 'really', 'appreciate', 'you', 'doing', 'this', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'well', '||comma||', 'you', 'ask', 'for', 'it', '||comma||', 'you', 'got', 'it', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'need', 'anything', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'a', 'bowl', 'of', 'muligatawny', 'would', 'hit', 'the', 'spot', '||period||', '||return||', '||return||', 'elaine:', 'mulligatawny', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "it's", 'an', 'indian', 'soup', '||period||', "it's", 'simmered', 'to', 'perfection', 'by', 'one', 'of', 'the', 'great', 'soup', 'artisans', 'in', 'the', 'modern', 'era', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'who', '||questionmark||', 'the', 'soup', 'nazi', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'not', 'a', 'nazi', '||period||', 'he', 'just', 'happens', 'to', 'be', 'a', 'little', 'eccentric', '||period||', 'most', 'geniuses', 'are', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'second', '||period||', 'you', "don't", 'even', 'know', 'how', 'to', 'order', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', '||comma||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'i', 'got', 'it', '||period||', 'hey', '||period||', "didn't", 'you', 'already', 'get', 'soup', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', "didn't", 'get', 'it', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'made', 'a', 'mistake', '||period||', '||return||', '||return||', 'elaine:', '[laughing]', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'well', '||comma||', "we'll", 'see', 'what', 'happens', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'no', '||period||', 'listen', '||comma||', 'george', '||comma||', 'i', 'am', 'quite', 'certain', "i'm", 'walking', 'out', 'of', 'there', 'with', 'a', 'bowl', 'of', 'soup', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hey', '||comma||', 'let', 'ask', 'you', 'something', '||period||', 'is', 'it', 'just', 'me', '||comma||', 'or', '||dash||', 'or', 'do', 'you', 'find', 'it', 'unbearable', 'to', 'be', 'around', 'jerry', 'and', 'that', 'girl', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'know', '||exclammark||', 'it', 'is', 'awful', '||exclammark||', '||return||', '||return||', 'george:', 'why', 'do', 'they', 'have', 'to', 'do', 'that', 'in', 'front', 'of', 'people', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'that', 'with', 'the', 'shmoopy', '||questionmark||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', '||return||', '||return||', 'george:', 'the', 'shmoopy', '||comma||', 'shmoopy', '||comma||', 'shmoopy', '||comma||', 'shmmopy', '||comma||', 'shmoopy', '||exclammark||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', 'stop', 'it', '||exclammark||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'had', 'to', 'listen', 'to', 'a', 'five', 'minute', 'discussion', 'on', 'which', 'one', 'is', 'actually', 'called', 'shmoopy', '||period||', '||return||', '||return||', 'elaine:', 'ugh', '||exclammark||', '||return||', '||return||', 'george:', 'and', 'i', 'cancelled', 'plans', 'to', 'go', 'to', 'the', 'movies', 'with', 'them', 'tonight', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'we', 'should', 'say', 'something', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'we', 'absolutely', 'should', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'why', 'does', 'he', 'do', 'that', '||questionmark||', "doesn't", 'he', 'know', 'what', 'a', 'huge', 'turnoff', 'that', 'is', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'he', 'can', 'be', 'so', 'weird', 'sometimes', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'i', 'still', "haven't", 'figured', 'him', 'out', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'me', 'neither', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'shh', '||exclammark||', 'i', 'gotta', 'focus', '||period||', "i'm", 'shifting', 'into', 'soup', 'mode', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||exclammark||', '||return||', '||return||', 'george:', 'good', 'afternoon', '||period||', 'one', 'large', 'crab', 'bisque', 'to', 'go', '||period||', 'bread', '||period||', 'beautiful', '||period||', '||return||', '||return||', 'soup', 'nazi:', "you're", 'pushing', 'your', 'luck', 'little', 'man', '||period||', '||return||', '||return||', 'george:', 'sorry', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'there', '||period||', 'um', '||comma||', 'uh', '||dash||', '||dash||', '[drumming', 'on', 'countertop]', 'oh', '||exclammark||', 'oh', '||exclammark||', 'oh', '||exclammark||', 'one', 'mulligatawny', 'and', '||comma||', 'um', '||period||', '||period||', '||period||', '||period||', 'what', 'is', 'that', 'right', 'there', '||questionmark||', 'is', 'that', 'lima', 'bean', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'never', 'been', 'a', 'big', 'fan', '||period||', '[coughing]', 'um', '||period||', '||period||', 'you', 'know', 'what', '||questionmark||', 'has', 'anyone', 'ever', 'told', 'you', 'you', 'look', 'exactly', 'like', 'al', 'pacino', '||questionmark||', 'you', 'know', '||comma||', '||quotemark||', 'scent', 'of', 'a', 'woman', '||period||', '||quotemark||', 'who', '||dash||', 'ah', '||exclammark||', 'who', '||dash||', 'ah', '||exclammark||', '||return||', '||return||', 'soup', 'nazi:', 'very', 'good', '||period||', 'very', 'good', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', '||dash||', '||dash||', '||return||', '||return||', 'soup', 'nazi:', 'you', 'know', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', 'hmmm', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'no', 'soup', 'for', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'come', 'back', 'one', 'year', '||exclammark||', 'next', '||exclammark||', '||return||', '||return||', 'ray:', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'bob:', "it's", 'an', 'antique', '||period||', '||return||', '||return||', 'ray:', "it's", 'all', 'hand', 'made', 'and', 'i', 'love', 'the', 'in', '||dash||', 'lay', '||period||', '||return||', '||return||', 'bob:', 'yes', '||period||', 'yes', '||period||', 'me', '||comma||', 'too', '||period||', 'ay', '||comma||', "it's", 'gorgeous', '||period||', 'completely', '||period||', 'pick', 'it', 'up', '||period||', 'no', '||period||', 'no', '||period||', 'pick', 'it', 'up', 'from', 'the', 'bottom', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'wait', '||period||', 'wait', '||period||', 'wait', '||period||', 'wait', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'bob:', 'what', 'does', 'it', 'look', 'like', "we're", 'doing', '||questionmark||', "we're", 'taking', 'this', '||period||', '||return||', '||return||', 'kramer:', 'you', "can't", 'take', 'this', '||period||', 'this', 'belongs', 'to', 'a', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'bob:', 'look', '||comma||', 'you', 'wanna', 'get', 'hurt', '||questionmark||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'bob:', 'i', "don't", 'think', 'you', 'wanna', 'get', 'hurt', '||period||', 'because', 'if', 'you', 'wanna', 'get', 'hurt', 'i', 'can', 'hurt', 'you', '||period||', 'now', '||comma||', 'just', 'back', 'off', '||period||', '||return||', '||return||', 'ray:', 'bob', '||period||', '||return||', '||return||', 'bob:', 'just', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'this', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'bob:', 'you', 'have', 'some', 'kind', 'of', 'problem', 'here', '||questionmark||', 'what', 'is', 'it', 'you', 'not', 'understanding', '||questionmark||', 'we', 'taking', 'the', 'armoire', 'and', "that's", 'all', 'there', 'is', 'to', 'it', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'is', 'he', 'allowed', 'to', 'do', 'this', '||questionmark||', "it's", 'discrimination', '||exclammark||', "i'm", 'gonna', 'call', 'the', "states'", 'attorney', 'office', '||period||', 'i', 'really', 'am', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'fabulous', '||period||', 'my', 'god', 'elaine', '||comma||', 'you', 'have', 'to', 'taste', 'this', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'all', 'right', '||period||', 'give', 'me', 'a', 'tsate', '||period||', 'mmm', '||exclammark||', 'oh', 'god', '||comma||', 'i', 'gotta', 'sit', 'down', '||period||', 'what', 'happened', '||questionmark||', "where's", 'my', 'armoire', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'b', '||dash||', '||dash||', 'it', 'was', 'stolen', '||period||', '||return||', '||return||', 'elaine:', 'wha', '||dash||', '||dash||', '||questionmark||', '||return||', '||return||', 'kramer:', 'these', 'street', 'toughs', '||comma||', 'they', 'robbed', 'me', '||period||', '||return||', '||return||', 'elaine:', 'street', 'toughs', 'took', 'my', 'armoire', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'it', 'was', 'very', 'frightening', '||period||', 'my', 'life', 'was', 'in', 'danger', '||period||', 'you', "should've", 'seen', 'the', 'way', 'they', 'talked', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'this', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "where's", 'the', 'soup', '||questionmark||', '||return||', '||return||', 'elaine:', 'wha', '||dash||', '||dash||', 'the', 'soup', 'nazi', 'threw', 'me', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||period||', '||period||', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'gonna', 'get', '||questionmark||', '||return||', '||return||', 'sheila:', "i'll", 'decide', 'at', 'the', 'last', 'minute', '||period||', '||return||', '||return||', 'jerry:', 'you', 'better', 'decide', '||comma||', 'sister', '||period||', "you're", 'on', 'deck', '||period||', 'sheila', '||exclammark||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'oh', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'hey', '||comma||', 'what', 'is', 'this', '||questionmark||', "you're", 'kissing', 'in', 'my', 'line', '||questionmark||', 'nobody', 'kisses', 'in', 'my', 'line', '||exclammark||', '||return||', '||return||', 'sheila:', 'i', 'can', 'kiss', 'anywhere', 'i', 'want', 'to', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'you', 'just', 'cost', 'yourself', 'a', 'soup', '||exclammark||', '||return||', '||return||', 'sheila:', 'how', 'dare', 'you', '||questionmark||', 'come', 'on', '||comma||', 'jerry', '||comma||', "we're", 'leaving', '||period||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'i', 'know', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'essentially', '||comma||', 'you', 'chose', 'soup', 'over', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'bisque', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'you', 'know', 'what', 'i', 'just', 'realized', '||questionmark||', 'suddenly', '||comma||', 'george', 'has', 'become', 'much', 'more', 'normal', 'than', 'you', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'come', 'on', '||period||', 'i', 'mean', '||comma||', 'think', 'about', 'it', '||period||', "he's", 'engaged', 'to', 'be', 'married', '||period||', 'your', 'top', 'priority', 'is', 'soup', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'tastes', 'the', 'soup', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'all', 'right', '||period||', 'you', 'made', 'the', 'right', 'decision', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'the', 'way', 'i', 'figure', 'it', '||comma||', "it's", 'much', 'easier', 'to', 'patch', 'things', 'up', 'with', 'sheila', 'than', 'with', 'the', 'soup', 'nazi', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'there', 'he', 'is', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', "i'm", 'really', 'sorry', 'about', 'the', 'armoire', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'know', '||period||', 'me', '||comma||', 'too', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'did', 'these', 'thieves', 'want', 'any', 'money', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'they', 'just', 'wanted', 'the', 'armoire', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'they', 'were', '||period||', '||period||', 'quite', 'taken', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'hup', '||exclammark||', 'hup', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'have', 'you', 'noticed', 'george', 'is', 'acting', 'a', 'little', 'strange', 'lately', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'in', 'what', 'way', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'a', 'lot', 'of', 'attitude', '||comma||', 'like', "he's", 'better', 'than', 'me', '||comma||', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'george', 'has', 'ever', 'thought', "he's", 'better', 'than', 'anybody', '||period||', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'george:', 'were', 'you', 'just', 'talking', 'about', 'me', '||questionmark||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'absolutely', 'not', '||period||', '||return||', '||return||', 'george:', "something's", 'going', 'on', 'here', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', '[claps', 'hands]', "i'm", 'gonna', 'go', 'get', 'some', 'soup', '||period||', '||return||', '||return||', 'elaine:', 'one', 'of', 'these', 'days', 'that', 'guy', 'is', 'gonna', 'get', 'his', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'how', 'was', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'we', "didn't", 'go', '||period||', 'sheila', 'and', 'i', 'are', 'kind', 'of', 'on', 'the', 'outs', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'wha', '||dash||', 'wha', '||dash||', 'what', 'are', 'you', '||comma||', 'happy', '||questionmark||', '||return||', '||return||', 'george:', 'happy', '||questionmark||', 'why', 'should', 'i', 'be', 'happy', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'but', 'you', 'look', 'like', "you're", 'happy', '||period||', '||return||', '||return||', 'george:', 'why', 'should', 'i', 'care', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'fool', 'me', '||period||', "don't", 'insult', 'me', '||comma||', 'george', 'because', 'i', 'know', 'when', "you're", 'happy', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'i', 'am', 'happy', '||comma||', 'and', "i'll", 'tell', 'ya', 'why', '||dash||', '||dash||', 'because', 'the', 'two', 'of', 'you', 'were', 'making', 'me', 'and', 'every', 'one', 'of', 'your', 'friends', 'sick', '||exclammark||', 'right', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'yeah', '||period||', 'with', 'all', 'that', 'kissing', 'and', 'the', 'shmoopy', '||comma||', 'shmoopy', '||comma||', 'shmoopy', '||comma||', 'shmoopy', '||comma||', 'shmoopy', 'out', 'in', 'public', 'like', 'that', '||period||', "it's", 'disgusting', '||exclammark||', '||return||', '||return||', 'jerry:', 'disgusting', '||questionmark||', '||return||', '||return||', 'george:', 'people', 'who', 'do', 'that', 'should', 'be', 'arrested', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'guess', 'i', 'have', 'all', 'the', 'more', 'reason', 'to', 'get', 'back', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'ye', '||dash||', 'yeah', '||period||', 'and', 'we', 'had', 'a', 'pact', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'shook', 'my', 'hand', 'in', 'that', 'coffee', 'shop', '||period||', '||return||', '||return||', 'jerry:', "you're", 'still', 'with', 'the', 'pact', '||questionmark||', '||return||', '||return||', 'george:', 'mmm', '||dash||', 'hmm', '||period||', 'you', 'reneged', '||period||', '||return||', '||return||', 'jerry:', 'all', 'i', 'did', 'was', 'shake', 'your', 'hand', '||period||', '||return||', '||return||', 'george:', 'ah', '||dash||', 'ha', '||exclammark||', '||return||', '||return||', 'kramer:', 'and', 'then', 'they', 'just', 'ran', 'off', 'with', 'the', 'armoire', '||comma||', 'just', 'like', 'that', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'ohh', '||exclammark||', 'this', 'city', '||period||', '||return||', '||return||', 'newman:', 'one', 'large', 'jambalaya', '||comma||', 'please', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'so', '||comma||', 'continue', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'my', 'friend', 'is', 'awful', 'disappointed', 'is', 'all', '||period||', 'you', 'know', '||comma||', "she's", 'very', 'emotional', '||period||', '||return||', '||return||', 'newman:', 'thank', 'you', '||period||', '[inhaling', 'deeply]', 'jambalaya', '||exclammark||', '||return||', '||return||', 'soup', 'nazi:', 'all', 'right', '||comma||', 'now', 'listen', 'to', 'me', '||period||', 'you', 'have', 'been', 'a', 'good', 'friend', '||period||', 'i', 'have', 'an', 'armoire', 'in', 'my', 'basement', '||period||', 'if', 'you', 'want', 'to', 'pick', 'it', 'up', '||comma||', "you're", 'welcome', 'to', 'it', '||period||', 'so', '||comma||', 'take', 'it', '||comma||', "it's", 'yours', '||period||', '||return||', '||return||', 'kramer:', 'how', 'can', 'i', 'possibly', 'thank', 'you', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'you', 'are', 'the', 'only', 'one', 'who', 'understands', 'me', '||period||', '||return||', '||return||', 'kramer:', 'you', 'suffer', 'for', 'your', 'soup', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'yes', '||period||', 'that', 'is', 'right', '||period||', '||return||', '||return||', 'kramer:', 'you', 'demand', 'perfection', 'from', 'yourself', '||comma||', 'from', 'your', 'soup', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'how', 'can', 'i', 'tolerate', 'any', 'less', 'from', 'my', 'customer', '||questionmark||', '||return||', '||return||', 'customer:', 'uh', '||comma||', 'gazpacho', '||comma||', 'por', 'favor', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'por', 'favor', '||questionmark||', '||return||', '||return||', 'customer:', 'um', '||comma||', "i'm", 'part', 'spanish', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'adios', 'muchacho', '||exclammark||', '||return||', '||return||', 'kramer:', 'git', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'stupid', 'of', 'me', '||period||', '||return||', '||return||', 'sheila:', 'well', '||comma||', 'it', 'was', 'very', 'insulting', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'know', '||period||', 'i', '||dash||', 'i', 'was', 'really', 'sort', 'of', 'half', '||dash||', 'kidding', '||period||', '||return||', '||return||', 'sheila:', 'well', '||comma||', 'behind', 'every', 'joke', "there's", 'some', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'that', 'bavarian', 'cream', 'pie', 'joke', 'i', 'told', 'you', '||questionmark||', "there's", 'no', 'truth', 'to', 'that', '||period||', 'nobody', 'with', 'a', 'terminal', 'illness', 'goes', 'from', 'the', 'united', 'states', 'to', 'europe', 'for', 'a', 'piece', 'of', 'bavarian', 'cream', 'pie', 'and', 'then', 'when', 'they', 'get', 'there', 'and', 'they', "don't", 'have', 'it', 'he', 'says', '||quotemark||', 'aw', '||comma||', "i'll", 'just', 'have', 'some', 'coffee', '||period||', '||quotemark||', "there's", 'no', 'truth', 'to', 'that', '||period||', '||return||', '||return||', 'sheila:', 'well', '||comma||', 'i', 'guess', "you're", 'right', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'am', 'i', 'forgiven', '||comma||', 'shmoopy', '||questionmark||', '||return||', '||return||', 'sheila:', 'yes', '||comma||', 'shmoopy', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||exclammark||', '||return||', '||return||', 'susan:', 'hey', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'susan', '||comma||', 'george', '||period||', 'you', 'remember', 'sheila', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yes', '||period||', 'hello', '||period||', '||return||', '||return||', 'sheila:', 'hello', '||period||', "won't", 'you', 'join', 'us', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'susan:', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'well', '||dash||', '||dash||', 'so', '||comma||', 'uh', '||comma||', 'sit', 'on', 'the', 'same', 'side', 'at', 'a', 'booth', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "that's", 'right', '||period||', 'you', 'got', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', 'uh', '||comma||', 'just', 'think', "it's", 'a', 'little', 'unusual', '||period||', 'two', 'people', 'to', 'sit', 'on', 'one', 'side', '||period||', '||period||', '||period||', 'and', 'leave', 'the', 'other', 'side', 'empty', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "we're", 'changing', 'the', 'rules', '||period||', '||return||', '||return||', 'george:', 'ahh', '||period||', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'susan:', 'aw', '||comma||', 'what', 'are', 'you', 'getting', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'honey', '||period||', 'what', 'do', 'you', 'want', 'to', 'get', '||questionmark||', '[in', 'babying', 'voice]', 'i', 'want', 'you', 'to', 'get', 'anything', 'you', 'want', '||period||', '||period||', '||period||', "'cause", 'i', 'love', 'you', 'so', 'much', '||period||', 'i', 'want', 'you', 'to', 'be', 'happy', '||period||', 'okay', '||comma||', 'sweetie', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'george', '||comma||', "you're", 'so', 'sweet', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'could', 'be', 'a', 'little', 'sweetie', 'tweetie', 'weetie', 'weetie', '||period||', '||return||', '||return||', 'susan:', 'aww', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'you', '||comma||', 'shmoopy', '||questionmark||', 'how', "'bout", 'a', 'little', 'tuna', '||questionmark||', 'you', 'want', 'a', 'little', 'tuna', 'fishy', '||questionmark||', '||return||', '||return||', 'sheila:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yum', 'yum', 'little', 'tuna', 'fishy', '||questionmark||', '||return||', '||return||', 'george:', 'come', 'here', '||period||', '||return||', '||return||', 'kramer:', 'and', '||period||', '||period||', 'voila', '||exclammark||', '||return||', '||return||', 'elaine:', '[gasps]', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'oh', '||comma||', 'i', 'love', 'it', '||exclammark||', 'i', 'absolutely', 'love', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'did', 'the', 'k', 'man', 'do', 'it', 'or', 'did', 'the', 'k', 'man', 'do', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'k', 'man', 'did', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', '[laughing]', 'how', 'much', 'did', 'you', 'pay', 'for', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'how', "'bout", 'zero', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "who's", 'was', 'it', '||questionmark||', "where'd", 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'ya', 'where', 'i', 'got', 'it', '||period||', 'i', 'got', 'it', 'from', 'the', 'guy', 'you', 'so', 'callously', 'refer', 'to', 'as', 'the', 'soup', 'nazi', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'the', 'soup', 'nazi', 'gave', 'it', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'told', 'him', 'the', 'whole', 'story', 'and', 'he', 'just', 'let', 'me', 'have', 'it', '||period||', 'wha', '||dash||', '||dash||', 'yeah', '||period||', "he's", 'a', 'wonderful', 'man', '||period||', '||return||', '||return||', 'elaine:', '[gasps]', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'well', '||comma||', 'a', 'little', 'bit', 'misunderstood', 'but', '||comma||', 'uh', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'just', 'gonna', 'go', 'down', 'there', 'and', 'personally', 'thank', 'him', '||period||', 'i', 'mean', '||comma||', 'i', 'had', 'this', 'guy', 'all', 'wrong', '||period||', 'this', 'is', 'wonderful', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'well', '||comma||', "he's", 'a', 'dear', '||period||', '||return||', '||return||', 'george:', 'how', 'much', 'tip', 'do', 'you', 'leave', 'on', '$8', '||period||', '15', '||questionmark||', '||return||', '||return||', 'susan:', 'you', 'know', 'sweetie', '||comma||', 'i', 'just', 'want', 'you', 'to', 'know', 'that', 'i', 'was', 'so', 'proud', 'of', 'you', 'today', 'expressing', 'your', 'feelings', 'so', 'freely', 'in', 'front', 'of', 'jerry', 'and', 'all', '||period||', 'just', 'knowing', 'that', "you're", 'not', 'afraid', 'of', 'those', 'things', 'is', 'such', 'a', 'great', 'step', 'forward', 'in', 'our', 'relationship', '||period||', '||return||', '||return||', 'george:', 'huh', '||questionmark||', '||return||', '||return||', 'susan:', '[in', 'babying', 'voice]', 'because', 'you', 'love', 'your', 'little', 'kiki', "don't", 'you', '||questionmark||', '||return||', '||return||', 'customer:', 'how', 'is', 'he', 'today', '||questionmark||', '||return||', '||return||', 'bania:', 'i', 'think', "he's", 'in', 'a', 'good', 'mood', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'you', 'know', '||comma||', 'kramer', 'gave', 'me', 'the', 'armoire', 'and', 'it', 'is', 'so', 'beautiful', '||period||', "i'm", 'mean', '||comma||', 'i', 'just', "can't", 'tell', 'you', 'how', 'much', 'i', 'appreciate', 'it', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'you', '||questionmark||', 'if', 'i', 'knew', 'it', 'was', 'for', 'you', '||comma||', 'i', 'never', 'would', 'have', 'given', 'it', 'to', 'him', 'in', 'the', 'first', 'place', '||exclammark||', 'i', 'would', 'have', 'taken', 'a', 'hatchet', 'and', 'smashed', 'it', 'to', 'pieces', '||exclammark||', 'now', '||comma||', 'who', 'wants', 'soup', '||questionmark||', 'next', '||exclammark||', 'speak', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'heading', 'over', 'to', "elaine's", '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'jerry', '||comma||', 'those', 'are', 'the', 'guys', 'that', 'mugged', 'me', 'for', 'the', 'armoire', '||period||', '||return||', '||return||', 'jerry:', 'those', 'two', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "that's", 'them', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "let's", 'confront', "'em", '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', "let's", 'get', 'a', 'cop', '||period||', '||return||', '||return||', 'jerry:', "there's", 'no', 'cops', 'around', '||period||', "they're", 'gonna', 'leave', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'kramer:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', "let's", 'go', '||period||', '||return||', '||return||', 'bob:', 'oh', '||comma||', 'wow', 'look', '||comma||', 'that', 'one', 'is', 'gorgeous', '||period||', 'i', 'would', 'just', 'kill', 'for', 'that', 'one', '||period||', '||return||', '||return||', 'ray:', 'oh', '||comma||', 'not', 'in', 'blue', '||period||', 'blue', 'does', 'not', 'go', 'with', 'all', '||period||', '||return||', '||return||', 'bob:', 'oh', '||comma||', 'please', '||period||', 'do', 'you', 'know', 'what', "you're", 'talking', 'about', '||questionmark||', 'because', 'i', "don't", 'think', 'you', 'know', 'what', "you're", 'talking', 'about', '||period||', 'take', 'a', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'kramer:', 'excuse', 'me', '||period||', '||return||', '||return||', 'ray:', 'are', 'you', 'talking', 'to', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', '||comma||', 'uh', '||comma||', 'we', '||dash||', '||dash||', '||return||', '||return||', 'ray:', 'i', 'said', '||comma||', 'are', 'you', 'talking', 'to', 'me', '||questionmark||', '||return||', '||return||', 'bob:', 'well', '||comma||', 'maybe', '||comma||', 'he', 'was', 'talking', 'to', 'me', '||period||', 'was', 'you', 'talking', 'to', 'him', '||questionmark||', 'because', 'you', 'was', 'obviously', 'talking', 'to', 'one', 'of', 'us', '||period||', 'so', 'what', 'is', 'it', '||questionmark||', 'who', '||questionmark||', '||exclammark||', 'who', 'was', 'you', 'talking', 'to', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'wha', '||dash||', '||dash||', 'i', '||comma||', 'uh', '||dash||', '||dash||', 'uh', '||comma||', 'we', 'were', 'kind', 'of', '||comma||', 'uh', '||comma||', 'talking', 'to', 'each', 'other', '||comma||', "weren't", 'we', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'you', 'know', '||comma||', "i've", 'never', 'been', 'so', 'insulted', 'in', 'my', 'entire', 'life', '||period||', "there's", 'something', 'really', 'wrong', 'with', 'this', 'man', '||period||', 'he', 'is', 'a', 'soup', 'nazi', '||period||', 'what', '||questionmark||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||quotemark||', '5', 'cups', 'chopped', 'porcine', 'mushrooms', '||comma||', 'half', 'a', 'cup', 'of', 'olive', 'oil', '||comma||', '3', 'pounds', 'of', 'celery', '||comma||', 'chopped', 'parsley', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'let', 'me', 'see', 'this', '||period||', '[gasps]', 'you', 'know', 'what', 'this', 'is', '||questionmark||', 'this', 'is', 'a', 'recipe', 'for', 'soup', '||comma||', 'and', 'look', 'at', 'this', '||period||', 'there', 'are', 'like', 'thirty', 'different', 'recipes', '||period||', 'these', 'are', 'his', 'recipes', '||exclammark||', '||return||', '||return||', 'jery:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'so', '||comma||', 'his', "secret's", 'out', '||period||', "don't", 'you', 'see', '||questionmark||', 'i', 'could', 'give', 'these', 'to', 'every', 'restaurant', 'in', 'town', '||period||', 'i', 'could', 'have', "'em", 'published', '||exclammark||', 'i', 'could', '||dash||', 'i', 'could', 'drop', 'fliers', 'from', 'a', 'plane', 'above', 'the', 'city', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'elaine', '||period||', 'where', 'do', 'you', 'think', "you're", 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'care', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'i', "don't", 'want', 'you', 'causing', 'any', 'trouble', 'down', 'at', 'that', 'soup', 'stand', '||period||', 'i', 'happen', 'to', 'love', 'that', 'soup', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', 'of', 'my', 'way', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'let', 'the', 'man', 'make', 'his', 'soup', '||exclammark||', '||return||', '||return||', 'elaine:', "don't", 'make', 'me', 'hurt', 'you', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'susan:', 'look', '||comma||', 'they', 'have', 'it', 'in', 'blue', '||period||', '||period||', '||period||', 'for', 'my', 'baby', 'bluey', '||period||', 'are', 'you', 'my', 'baby', 'bluey', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yes', '||period||', 'i', '||dash||', "i'm", 'your', 'baby', 'bluey', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', 'well', '||period||', '||return||', '||return||', 'susan:', 'hi', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'susan', '||comma||', 'george', '||period||', '||return||', '||return||', 'susan:', 'you', 'know', '||comma||', 'i', 'really', 'like', 'sheila', 'a', 'lot', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'susan:', 'mmm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', 'because', "we're", 'kind', 'of', 'not', 'seeing', 'each', 'other', 'anymore', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'no', '||exclammark||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'well', '||comma||', 'she', 'was', 'very', 'affectionate', '||dash||', 'which', 'i', 'love', '||period||', 'you', 'know', 'i', 'love', 'that', '||dash||', 'but', 'mentally', '||comma||', 'we', "couldn't", 'quite', 'make', 'the', 'connection', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'too', 'bad', '||comma||', "'cause", 'you', 'gotta', 'have', 'the', 'affection', '||dash||', 'which', 'you', 'obviously', 'have', '||period||', 'i', 'think', "it's", 'great', 'that', "you're", 'so', 'open', 'with', 'your', 'affections', 'in', 'public', '||period||', 'see', '||comma||', 'we', 'had', 'that', '||period||', '||return||', '||return||', 'susan:', 'mmm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', 'you', 'did', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'but', 'the', 'mental', 'thing', '||period||', 'but', 'anyway', '||period||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'see', 'ya', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'go', 'on', '||exclammark||', 'leave', '||exclammark||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'woman:', 'but', 'i', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'next', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'you', '||period||', 'you', 'think', 'you', 'can', 'get', 'soup', '||questionmark||', 'please', '||period||', "you're", 'wasting', "everyone's", 'time', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'want', 'soup', '||period||', 'i', 'can', 'make', 'my', 'own', 'soup', '||period||', '||quotemark||', '5', 'cups', 'chopped', 'porcine', 'mushrooms', '||comma||', 'half', 'a', 'cup', 'of', 'olive', 'oil', '||comma||', '3', 'pounds', 'celery', '||period||', '||quotemark||', '||return||', '||return||', 'soup', 'nazi:', 'that', 'is', 'my', 'recipe', 'for', 'wild', 'mushroom', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'right', '||period||', 'i', 'got', "'em", 'all', '||period||', 'cold', 'cucumber', '||comma||', 'corn', 'and', 'crab', 'chowder', '||comma||', 'mulligatawny', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'mulliga', '||period||', '||period||', '||period||', 'tawny', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'through', 'soup', 'nazi', '||period||', 'pack', 'it', 'up', '||period||', 'no', 'more', 'soup', 'for', 'you', '||period||', 'next', '||exclammark||', '||return||', '||return||', 'newman:', '[panting]', 'jerry', '||exclammark||', 'jerry', '||exclammark||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'newman:', "something's", 'happened', 'with', 'the', 'soup', 'nazi', '||exclammark||', '||return||', '||return||', 'jerry:', 'wha', '||dash||', 'wha', '||dash||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'newman:', "elaine's", 'down', 'there', 'causing', 'all', 'kinds', 'of', 'commotion', '||period||', 'somehow', 'she', 'got', 'a', 'hold', 'of', 'his', 'recipes', 'and', 'she', 'says', "she's", 'gonna', 'drive', 'him', 'out', 'of', 'business', '||exclammark||', 'the', 'soup', 'nazi', 'said', 'that', 'now', 'that', 'his', 'recipes', 'are', 'out', '||comma||', "he's", 'not', 'gonna', 'make', 'anymore', 'soup', '||exclammark||', "he's", 'moving', 'out', 'of', 'the', 'country', '||comma||', 'moving', 'to', 'argentina', '||exclammark||', 'no', 'more', 'soup', '||comma||', 'jerry', '||exclammark||', 'no', 'more', 'for', 'of', 'us', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'newman:', "he's", 'giving', 'away', "what's", 'left', '||exclammark||', 'i', 'gotta', 'go', 'home', 'and', 'get', 'a', 'big', 'pot', '||exclammark||', '||return||', '||return||', 'susan:', 'hey', '||comma||', 'i', 'gotta', 'get', 'some', 'cash', '||comma||', "i'm", 'gonna', 'run', 'down', 'to', 'the', 'atm', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'better', 'grab', 'some', 'too', '||period||', '||return||', '||return||', 'susan:', "i'll", 'get', 'it', 'for', 'you', '||semicolon||', 'just', 'give', 'me', 'your', 'card', '||period||', '||return||', '||return||', 'george:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'just', 'tell', 'me', 'your', 'code', '||period||', '||return||', '||return||', 'george:', 'my', 'code', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'why', "didn't", 'you', 'tell', 'her', 'the', 'code', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'no', 'way', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', "you're", 'gonna', 'marry', 'this', 'woman', '||period||', 'most', 'likely', '||period||', '||return||', '||return||', 'george:', 'it', 'says', 'very', 'clearly', '||comma||', "'for", 'your', 'protection', '||comma||', 'do', 'not', 'give', 'your', 'secret', 'code', 'to', 'anyone', '||period||', "'", '||return||', '||return||', 'jerry:', 'so', "you're", 'taking', 'relationship', 'advice', 'from', 'chemical', 'bank', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'does', 'everything', 'have', 'to', 'be', "'us'", '||questionmark||', 'is', 'there', 'no', "'me'", 'left', '||questionmark||', 'why', "can't", 'there', 'be', 'some', 'things', 'just', 'for', 'me', '||questionmark||', 'is', 'that', 'so', 'selfish', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', "that's", 'the', 'definition', 'of', 'selfish', '||period||', '||return||', '||return||', 'george:', 'have', 'you', 'ever', 'given', 'your', 'code', 'to', 'anyone', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', "one's", 'ever', 'asked', '||period||', 'you', 'want', 'it', '||questionmark||', "it's", "'jor", '||dash||', 'el', '||period||', "'", '||return||', '||return||', 'george:', "superman's", 'father', 'on', 'krypton', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', "c'mon", 'georgie', '||comma||', 'you', 'wanna', 'tell', 'me', '||period||', "it's", 'eating', 'you', 'up', 'inside', '||period||', 'sing', 'it', '||comma||', 'sister', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', 'am', 'not', 'giving', 'my', 'code', 'to', 'anyone', 'for', 'any', 'reason', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'my', 'life', 'depended', 'on', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'if', "you're", 'in', 'some', 'situation', 'where', 'some', 'fast', 'cash', 'will', 'save', 'your', 'life', '||comma||', "i'll", 'give', 'you', 'the', 'code', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'matter', 'with', 'your', 'leg', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'foot', 'fell', 'asleep', '||period||', '||return||', '||return||', 'george:', "how'd", 'your', 'foot', 'fall', 'asleep', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'crossed', 'my', 'legs', '||comma||', 'i', 'forgot', 'to', 'alternate', '||period||', '||return||', '||return||', 'fred:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'fred', '||period||', '||return||', '||return||', 'george:', 'hey', 'fred', '||period||', '||return||', '||return||', 'jerry:', 'my', 'foot', 'fell', 'asleep', '||period||', '||return||', '||return||', 'fred:', "you're", 'lucky', '||comma||', 'at', 'least', 'you', 'got', 'something', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', 'fred', '||comma||', 'do', 'you', 'know', 'elaine', '||questionmark||', '||return||', '||return||', 'fred:', 'no', '||comma||', "it's", 'nice', 'to', 'meet', 'you', '||period||', 'well', '||comma||', "i'm", 'outta', 'here', '||comma||', 'see', 'you', 'guys', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'seeya', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'hear', 'that', '||questionmark||', 'he', 'said', '||comma||', "'nice", 'to', 'meet', 'you', '||period||', "'", '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', "we've", 'met', 'before', '||period||', 'at', 'katie', "ash's", 'party', '||comma||', 'we', 'talked', 'for', 'like', 'ten', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'and', 'he', "didn't", 'remember', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||comma||', 'you', 'just', 'got', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'gotta', 'go', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||comma||', 'excuse', 'me', '||comma||', 'fred', '||questionmark||', '||return||', '||return||', 'fred:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'just', 'said', '||comma||', "'nice", 'to', 'meet', "you'", '||comma||', 'but', 'actually', "we've", 'met', 'before', '||period||', '||return||', '||return||', 'fred:', 'we', 'have', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'at', 'katie', "ash's", 'party', '||questionmark||', '||return||', '||return||', 'fred:', 'what', 'was', 'your', 'name', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'elaine', '||period||', 'you', "don't", 'remember', 'our', 'conversation', '||questionmark||', 'i', 'talked', 'about', 'how', 'my', 'uncle', 'worked', 'in', 'the', 'book', 'depository', 'building', 'with', 'lee', 'harvey', 'oswald', '||questionmark||', '||return||', '||return||', 'fred:', 'not', 'ringing', 'a', 'bell', '||period||', '||return||', '||return||', 'elaine:', 'when', 'my', 'uncle', 'said', 'to', 'him', '||comma||', "'the", "president's", 'been', "shot'", 'oswald', 'winked', 'at', 'him', 'and', 'said', '||comma||', "'i'm", 'gonna', 'go', 'catch', 'a', "movie'", '||questionmark||', '||return||', '||return||', 'fred:', 'mmm', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'that', 'was', 'right', 'when', 'we', 'were', 'in', 'front', 'of', 'the', 'bathroom', 'door', '||period||', '||return||', '||return||', 'fred:', 'the', 'bathroom', 'door', '||period||', 'i', 'remember', 'someone', 'had', 'played', 'tic', '||dash||', 'tac', '||dash||', 'toe', 'on', 'it', '||comma||', 'and', 'the', "x's", 'won', '||semicolon||', 'they', 'went', 'diagonally', 'from', 'the', 'top', 'left', 'to', 'the', 'bottom', 'right', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'that', 'sounds', 'great', '||comma||', "i'd", 'love', 'to', 'do', 'some', 'tv', 'commercials', '||comma||', 'that', 'should', 'really', 'be', 'fun', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||comma||', 'okay', '||comma||', 'alright', '||comma||', 'bye', '||period||', 'huh', '||comma||', 'how', 'do', 'you', 'like', 'that', '||questionmark||', "i'm", 'gonna', 'do', 'some', 'tv', 'spots', 'for', "leapin'", "larry's", 'appliance', 'store', '||period||', 'that', 'was', "leapin'", 'larry', 'himself', '||comma||', "i'm", 'gonna', 'meet', 'with', 'him', 'tomorrow', '||period||', '||return||', '||return||', 'kramer:', "leapin'", 'larry', '||exclammark||', 'yeah', '||comma||', "that's", 'where', 'i', 'bought', 'this', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'an', 'emergency', 'band', 'scanner', '||comma||', 'it', 'picks', 'up', 'everything', 'fires', '||comma||', 'harbor', 'patrol', '||comma||', 'even', 'the', 'police', '||period||', "i'm", 'watching', 'the', 'watchers', '||comma||', 'jerry', '||period||', 'uh', 'oh', '||comma||', 'we', 'got', 'a', 'big', 'fire', 'on', '115th', '||period||', 'i', 'tell', 'ya', 'if', 'could', 'do', 'it', 'over', 'again', '||comma||', "i'd", 'give', 'it', 'all', 'up', 'to', 'be', 'a', 'fireman', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'those', 'civil', 'servants', 'who', 'risk', 'their', 'lives', 'really', 'got', 'it', 'made', '||period||', '||return||', '||return||', 'kramer:', 'when', 'i', 'was', 'a', 'kid', '||comma||', 'all', 'i', 'ever', 'dreamed', 'of', 'was', 'steering', 'the', 'back', 'of', 'that', 'big', 'hook', 'and', 'ladder', '||period||', '||return||', '||return||', 'jerry:', "you're", 'lucky', 'they', 'let', 'you', 'drive', 'a', 'car', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||comma||', "they're", 'talking', 'the', 'west', 'side', 'highway', '||comma||', 'at', 'this', 'time', 'of', 'day', "that's", 'insane', '||period||', "they're", 'heading', 'straight', 'into', 'gridlock', '||period||', 'oh', '||comma||', 'those', 'fools', '||period||', '||return||', '||return||', 'elaine:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'waving', 'his', 'arm', 'in', 'dismissal', '||rightparen||', 'eh', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', 'so', '||comma||', 'get', 'a', 'load', 'of', 'this', '||period||', 'this', 'guy', '||comma||', 'fred', 'yerkes', '||comma||', 'remembers', 'every', 'little', 'thing', 'about', 'that', 'night', 'except', 'me', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', "i'm", 'surprised', '||comma||', 'he', "doesn't", 'meet', 'that', 'many', 'women', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'saying', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "what's", 'to', 'be', 'said', '||questionmark||', 'he', "didn't", 'remember', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'why', '||questionmark||', 'i', 'mean', '||comma||', 'ya', 'know', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', 'ya', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', 'lookit', '||comma||', 'you', 'got', 'the', 'new', 'catalog', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'wrote', 'a', 'good', 'piece', 'on', 'the', 'himalayan', 'walking', 'shoe', '||period||', '||return||', '||return||', 'elaine:', 'too', 'good', '||period||', 'peterman', 'was', 'so', 'pleased', '||comma||', 'now', 'he', 'wants', 'to', 'take', 'me', 'out', 'to', 'dinner', 'tomorrow', '||period||', 'maybe', 'you', 'wanna', 'come', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'why', 'would', 'i', 'wanna', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'please', '||comma||', 'jerry', '||comma||', 'please', 'please', 'please', '||comma||', 'i', "can't", 'sit', 'with', 'him', '||comma||', 'he', 'tells', 'these', 'stories', '||comma||', "it's", 'gonna', 'be', 'awful', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'sounds', 'like', 'fun', '||period||', '||return||', '||return||', 'susan:', 'i', 'want', 'you', 'to', 'tell', 'me', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'why', 'is', 'my', 'code', 'so', 'important', '||questionmark||', '||return||', '||return||', 'susan:', 'because', '||comma||', "it's", 'part', 'of', 'our', 'relationship', '||comma||', "it's", 'an', 'indication', 'of', 'trust', '||period||', "we're", 'not', 'supposed', 'to', 'keep', 'secrets', 'from', 'one', 'another', '||period||', '||return||', '||return||', 'george:', 'well', "i'm", 'sure', 'you', 'have', 'secrets', 'from', 'me', '||period||', 'i', "don't", 'know', 'anything', 'about', 'your', 'cycles', '||period||', '||return||', '||return||', 'susan:', 'my', 'cycles', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'never', 'know', "what's", 'going', 'on', 'there', '||period||', '||return||', '||return||', 'susan:', 'well', 'from', 'now', 'on', "i'll", 'keep', 'you', 'apprised', 'of', 'my', 'cycles', '||period||', '||return||', '||return||', 'george:', 'please', '||period||', '||return||', '||return||', 'susan:', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'george:', "we're", 'out', 'of', 'bosco', '||exclammark||', '||return||', '||return||', 'jerry:', 'howbout', 'this', '||comma||', 'come', 'one', 'down', 'to', "leapin'", "parry's", 'if', 'you', 'can', 'beat', 'our', 'prices', '||comma||', "we'll", 'give', 'you', 'the', 'store', '||period||', '||return||', '||return||', "leapin'", 'larry:', 'ya', 'know', "i've", 'always', 'liked', 'your', 'comedy', '||comma||', 'you', "don't", 'take', 'cheap', 'shots', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', "don't", '||period||', '||return||', '||return||', "leapin'", 'larry:', 'sorry', 'for', 'keeping', 'you', 'here', 'so', 'long', '||period||', 'again', '||comma||', 'i', 'apologize', 'for', 'the', 'mess', '||period||', 'this', 'renovation', 'is', 'killing', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'my', "foot's", 'asleep', 'again', '||exclammark||', '||return||', '||return||', "leapin'", 'larry:', 'when', 'i', 'lost', 'my', 'leg', 'in', 'the', 'boating', 'accident', '||comma||', 'i', 'got', 'so', 'depressed', 'about', 'this', 'damn', 'prosthetic', 'i', 'thought', 'i', 'was', 'gonna', 'have', 'to', 'give', 'up', 'the', 'business', '||period||', 'but', 'now', "i'm", 'rejuvenated', '||period||', 'let', 'me', 'show', 'you', 'around', 'the', 'store', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', "i'll", 'be', 'with', 'you', 'in', 'a', 'minute', '||period||', '||return||', '||return||', 'employee:', 'that', 'is', 'a', 'great', 'impression', '||exclammark||', '||return||', '||return||', 'jerry:', 'larry', '||comma||', 'wait', '||comma||', 'you', "don't", 'understand', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'came', 'from', "leapin'", "larry's", '||period||', 'making', 'fun', 'of', 'crippled', 'people', '||comma||', 'is', 'that', 'what', "you've", 'sunk', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'do', 'it', 'on', 'purpose', '||comma||', 'my', 'foot', 'fell', 'asleep', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'oh', 'your', 'foot', 'fell', 'asleep', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'know', '||comma||', 'the', 'guy', 'has', 'one', 'leg', 'and', 'he', 'still', 'calls', 'himself', "leapin'", 'larry', '||comma||', "you'd", 'think', 'he', 'had', 'a', 'sense', 'of', 'humor', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'just', 'joked', 'yourself', 'right', 'out', 'of', 'that', 'commercial', '||comma||', "didn't", 'you', '||comma||', 'munjamba', '||questionmark||', '||return||', '||return||', 'jerry:', 'yup', '||period||', '||return||', '||return||', 'voice:', 'hup', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'look', 'at', 'that', '||period||', 'se', "that's", 'that', 'fire', 'i', 'was', 'listening', 'to', 'yesterday', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'the', 'whole', 'building', 'burned', 'down', '||period||', '||return||', '||return||', 'kramer:', 'they', 'just', "don't", 'know', 'what', 'street', 'to', 'take', '||period||', 'you', 'remember', 'that', 'time', 'i', 'got', 'us', 'to', 'yankee', 'stadium', 'in', 'rush', 'hour', 'in', 'fifteen', 'minutes', '||questionmark||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', '||return||', '||return||', 'kramer:', "it's", 'all', 'up', 'here', '||comma||', 'jerry', '||period||', 'all', 'up', 'here', '||period||', "it's", 'innate', '||period||', '||return||', '||return||', 'jerry:', 'the', 'amazing', 'thing', 'is', 'you', 'never', 'have', 'any', 'place', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'where', 'we', 'gonna', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'gonna', 'meet', 'elaine', 'and', 'peterman', 'at', 'the', 'chinese', 'place', '||period||', '||return||', '||return||', 'george:', 'peterman', '||questionmark||', 'nobody', 'mentioned', 'anything', 'about', 'peterman', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'not', '||comma||', 'if', 'i', 'did', 'would', 'you', 'have', 'gone', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'way', '||period||', '||return||', '||return||', 'jerry:', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'even', 'know', 'peterman', '||period||', 'how', 'the', 'hell', 'am', 'i', 'gonna', 'relax', '||questionmark||', "i'm", 'gonna', 'have', 'to', 'be', 'on', 'all', 'night', '||period||', 'i', "don't", 'like', 'being', 'on', '||comma||', 'jerry', '||comma||', 'i', 'would', 'much', 'rather', 'be', 'off', '||period||', '||return||', '||return||', 'jerry:', 'trust', 'me', '||comma||', "you're", 'off', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', 'fred', '||period||', '||return||', '||return||', 'fred:', 'um', '||comma||', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'elaine', '||period||', '||return||', '||return||', 'fred:', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', 'right', '||period||', '||return||', '||return||', 'elaine:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'fred:', "i'm", 'depressed', '||period||', 'i', 'got', 'this', 'new', 'shirt', '||comma||', 'the', 'button', 'fell', 'off', '||period||', 'once', 'the', 'button', 'falls', 'off', '||comma||', "that's", 'it', '||period||', "i'll", 'never', 'fix', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'fred:', 'yeah', '||comma||', "i'm", 'gonna', 'get', 'some', 'vitamins', '||comma||', 'i', 'feel', 'depleted', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', 'i', 'never', 'take', 'them', '||period||', '||return||', '||return||', 'fred:', 'cause', 'they', 'make', 'you', 'nauseous', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', 'yeah', '||comma||', "that's", 'right', '||comma||', 'you', 'remembered', '||exclammark||', '||return||', '||return||', 'fred:', 'do', 'you', 'wanna', 'have', 'dinner', 'tonight', '||questionmark||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', 'tonight', '||period||', '||return||', '||return||', 'fred:', 'what', '||comma||', 'you', 'have', 'other', 'plans', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', 'no', 'no', '||comma||', 'none', 'that', 'i', 'can', '||comma||', 'um', '||comma||', 'remember', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'alright', '||comma||', "you're", 'locked', 'up', 'in', 'a', 'prison', 'in', 'turkey', '||comma||', 'i', 'have', 'your', 'wallet', '||period||', 'the', 'only', 'way', 'i', 'can', 'bribe', 'the', 'guards', 'to', 'get', 'you', 'out', 'is', 'for', 'you', 'to', 'give', 'me', 'your', 'atm', 'code', '||period||', '||return||', '||return||', 'george:', 'call', 'the', 'embassy', '||period||', '||return||', '||return||', 'jerry:', "they're", 'closed', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'bomb', 'threat', '||period||', '||return||', '||return||', 'george:', "we're", 'in', 'turkey', '||questionmark||', '||return||', '||return||', 'jerry:', 'midnight', 'express', '||comma||', 'my', 'friend', '||period||', '||return||', '||return||', 'george:', 'my', 'card', "won't", 'work', 'there', '||semicolon||', "they're", 'not', 'on', 'the', 'plus', 'system', '||period||', '||return||', '||return||', 'peterman:', 'you', 'must', 'be', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'hi', '||comma||', 'mr', '||period||', 'peterman', '||period||', 'this', 'is', '||comma||', 'uh', '||comma||', 'george', 'costanza', '||period||', '||return||', '||return||', 'peterman:', 'j', '||period||', 'peterman', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'grabbing', 'lapels', '||rightparen||', 'j', '||period||', 'crew', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'is', 'elaine', 'here', '||questionmark||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'elaine', 'just', 'called', '||comma||', 'she', "won't", 'be', 'joining', 'us', '||period||', 'not', 'to', 'worry', '||comma||', "i'll", 'tell', 'the', "maitre'd", "it'll", 'just', 'be', 'the', 'three', 'bulls', '||period||', '||return||', '||return||', 'george:', "what's", 'going', 'on', '||questionmark||', 'he', 'still', 'wants', 'to', 'have', 'dinner', 'with', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'without', 'elaine', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'is', 'he', 'crazy', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'gotta', 'get', 'out', 'of', 'here', '||period||', 'come', 'on', '||semicolon||', 'weave', 'your', 'web', '||comma||', 'liar', 'man', '||period||', '||return||', '||return||', 'george:', "i've", 'got', 'nothing', '||comma||', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', "i'm", 'blank', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'choking', '||exclammark||', '||return||', '||return||', 'peterman:', 'ah', '||comma||', 'fong', 'has', 'been', 'most', 'accommodating', '||period||', 'shall', 'we', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'you', 'know', 'i', 'just', 'remembered', 'i', 'promised', 'this', 'comedy', 'club', 'that', "i'd", 'do', 'a', 'set', 'tonight', '||comma||', 'so', '||comma||', 'terribly', 'sorry', '||period||', '||return||', '||return||', 'peterman:', 'i', 'understand', '||comma||', 'no', 'hard', 'feelings', '||period||', 'george', 'and', 'i', 'will', 'miss', 'your', 'company', '||period||', 'fong', '||questionmark||', 'it', 'will', 'just', 'be', 'two', 'this', 'evening', '||period||', 'george', '||comma||', 'we', 'dine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'herself', '||rightparen||', 'i', "can't", 'believe', 'this', '||comma||', 'is', 'this', 'guy', 'standing', 'me', 'up', '||questionmark||', '||return||', '||return||', 'peterman:', '||period||', '||period||', '||period||', 'and', 'there', '||comma||', 'tucked', 'into', 'the', "river's", 'bend', 'was', 'the', 'object', 'of', 'my', 'search', '||period||', 'the', 'gwon', '||dash||', 'jaya', 'river', 'market', '||comma||', 'fabrics', 'and', 'spices', 'traded', 'under', 'a', 'starlit', 'sky', '||period||', 'it', 'was', 'there', 'that', 'i', 'discovered', 'the', 'pamplona', 'beret', '||period||', 'sizes', 'seven', '||dash||', 'and', '||dash||', 'a', '||dash||', 'half', 'through', 'eight', '||dash||', 'and', '||dash||', 'three', '||dash||', 'quarters', '||period||', 'price', '||questionmark||', 'thirty', '||dash||', 'five', 'dollars', '||period||', '||return||', '||return||', 'george:', 'howbout', 'sports', '||questionmark||', 'do', 'you', 'follow', 'sports', '||questionmark||', '||return||', '||return||', 'tv', 'announcer:', "it's", 'fourth', 'and', 'inches', 'and', 'the', 'giants', 'are', 'going', 'for', 'it', '||exclammark||', 'you', 'gotta', 'love', 'sports', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'this', 'is', 'very', 'nice', '||comma||', 'but', 'i', 'really', 'could', 'take', 'a', 'cab', '||period||', 'really', '||period||', '||return||', '||return||', 'peterman:', 'ha', 'ha', '||comma||', 'nonsense', '||comma||', 'george', '||period||', 'besides', 'it', 'gives', 'me', 'a', 'chance', 'to', 'tell', 'you', 'about', 'my', 'latest', 'trip', 'to', 'burma', 'where', 'i', 'discovered', 'a', 'very', 'unusual', 'corduroy', '||period||', '||return||', '||return||', 'peterman:', 'peterman', 'here', '||period||', 'what', '||questionmark||', 'oh', 'no', '||period||', 'alright', '||comma||', "i'll", 'be', 'right', 'there', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', "it's", 'my', 'mother', '||semicolon||', "she's", 'at', "death's", 'door', '||period||', 'i', 'just', 'pray', 'to', 'god', 'we', 'can', 'make', 'it', 'there', 'in', 'time', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'you', 'blew', 'us', 'off', '||semicolon||', 'we', 'were', 'doing', 'you', 'the', 'favor', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'fred', 'asked', 'me', 'out', '||period||', '||return||', '||return||', 'jerry:', 'fred', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'and', 'then', 'he', 'stood', 'me', 'up', '||period||', 'i', "don't", 'get', 'this', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'you', 'see', "what's", 'going', 'on', 'here', '||questionmark||', "you're", 'attracted', 'to', 'him', 'because', 'he', "can't", 'remember', 'anything', 'about', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', '||questionmark||', 'but', "that's", 'so', 'sick', '||period||', '||return||', '||return||', 'jerry:', "that's", "god's", 'plan', '||period||', 'he', "doesn't", 'really', 'want', 'anyone', 'to', 'get', 'together', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', 'so', 'how', 'was', 'the', 'dinner', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'when', 'i', 'heard', 'you', "weren't", 'coming', 'i', 'made', 'up', 'and', 'excuse', 'and', 'got', 'the', 'hell', 'out', 'of', 'there', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'georgie', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'he', "didn't", 'make', 'it', '||period||', '||return||', '||return||', 'peterman:', 'doctor', '||comma||', 'how', 'is', 'she', '||questionmark||', '||return||', '||return||', 'doctor:', "she's", 'too', 'weak', 'to', 'talk', 'but', "she'll", 'be', 'happy', 'to', 'hear', 'your', 'voice', '||period||', '||return||', '||return||', 'peterman:', 'mama', '||comma||', "it's", 'me', '||period||', 'jacopo', '||period||', "i'm", 'here', 'for', 'you', '||comma||', 'mama', '||period||', '||return||', '||return||', 'george:', "i'm", '||comma||', 'uh', '||comma||', 'george', 'costanza', '||period||', 'i', 'was', 'having', 'dinner', 'with', 'your', 'son', '||period||', '||return||', '||return||', 'peterman:', 'shake', 'off', 'the', 'dew', '||comma||', 'my', 'friend', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'peterman:', "it's", 'morning', '||period||', 'thanks', 'for', 'seeing', 'me', 'through', 'the', 'night', '||period||', "i'll", 'make', 'us', 'a', 'pot', 'of', 'coffee', '||comma||', 'george', '||period||', 'watch', 'her', '||comma||', "won't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'peterman:', 'momma', '||period||', 'just', 'talk', 'to', 'her', '||comma||', 'george', '||period||', 'the', 'doctor', 'seems', 'to', 'think', 'it', 'helps', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', 'i', '||dash||', 'i', 'really', 'should', 'be', 'getting', 'back', 'to', 'my', 'fianc', '||comma||', 'you', 'know', '||comma||', 'we', '||comma||', 'uh', '||comma||', 'we', 'had', 'this', 'big', 'fight', 'yesterday', 'and', '||comma||', 'uh', '||comma||', 'well', 'she', '||comma||', 'she', 'wants', 'to', '||dash||', 'to', 'know', 'my', 'secret', 'code', '||period||', 'i', '||dash||', 'i', "don't", 'know', '||comma||', 'i', "can't", 'tell', 'her', '||period||', 'the', 'funny', 'thing', 'is', '||comma||', 'you', 'know', '||comma||', 'i', 'would', 'really', 'love', 'to', 'tell', 'someone', "'cause", "it's", 'killing', 'me', '||period||', 'you', 'uh', '||comma||', 'you', 'wanna', 'know', 'what', 'it', 'is', '||questionmark||', "it's", 'bosco', '||period||', 'you', 'know', '||comma||', 'the', 'chocolate', 'syrup', '||questionmark||', 'i', 'love', 'that', 'stuff', '||comma||', 'i', 'pour', 'it', 'in', 'milk', '||comma||', "it's", 'my', 'favorite', 'drink', '||period||', 'hoo', '||dash||', 'hoo', '||comma||', 'boy', '||comma||', 'that', 'is', 'a', 'relief', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'peterman:', 'bosco', '||period||', 'bosco', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'shhh', '||period||', '||return||', '||return||', 'mrs', '||period||', 'peterman:', '||leftparen||', 'sitting', 'up', '||rightparen||', 'bosco', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'peterman:', 'bosco', '||exclammark||', 'bosco', '||exclammark||', 'bosco', '||exclammark||', '||return||', '||return||', 'george:', 'shut', 'up', '||exclammark||', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'peterman:', 'momma', '||exclammark||', 'what', 'are', 'you', 'trying', 'to', 'say', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'peterman:', 'bosco', '||period||', '||return||', '||return||', 'peterman:', "she's", 'gone', '||period||', 'bosco', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'this', 'whole', 'thing', 'never', 'would', 'have', 'happened', 'if', 'you', "hadn't", 'bailed', 'out', 'on', 'me', 'at', 'the', 'restaurant', '||period||', '||return||', '||return||', 'jerry:', 'i', 'did', 'not', 'bail', 'out', 'on', 'you', '||period||', '||return||', '||return||', 'george:', 'well', 'why', "couldn't", 'you', 'include', 'me', 'in', 'your', 'excuse', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'come', 'up', 'with', 'your', 'own', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'froze', '||period||', 'i', 'think', "i'm", 'losing', 'it', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "c'mon", '||period||', 'maybe', "you're", 'just', 'in', 'a', 'slump', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'i', 'reached', 'down', 'and', 'there', 'was', '*nothing*', 'there', '||period||', '||return||', '||return||', 'george:', 'now', 'peterman', 'wants', 'me', 'to', 'go', 'to', 'the', 'funeral', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||comma||', 'just', 'tell', 'me', 'your', 'code', 'already', '||period||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'am', 'not', 'giving', 'you', 'my', 'code', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'bet', 'i', 'can', 'guess', 'it', '||period||', '||return||', '||return||', 'george:', 'pssh', '||period||', 'yeah', '||period||', 'right', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'alright', '||period||', 'yeah', '||period||', 'uh', '||comma||', "let's", 'see', '||period||', 'um', '||comma||', 'well', '||comma||', 'we', 'can', 'throw', 'out', 'birthdays', 'immediately', '||period||', "that's", 'too', 'obvious', '||period||', 'and', 'no', 'numbers', 'for', 'you', '||comma||', "you're", 'a', 'word', 'man', '||period||', 'alright', '||comma||', "let's", 'go', 'deeper', '||period||', 'uh', '||comma||', 'what', 'kind', 'of', 'man', 'are', 'you', '||questionmark||', 'well', '||comma||', "you're", 'weak', '||comma||', 'spineless', '||comma||', 'a', 'man', 'of', 'temptations', '||comma||', 'but', 'what', 'tempts', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', "you're", 'a', 'portly', 'fellow', '||comma||', 'a', 'bit', 'long', 'in', 'the', 'waistband', '||period||', 'so', "what's", 'your', 'pleasure', '||questionmark||', 'is', 'it', 'the', 'salty', 'snacks', 'you', 'crave', '||questionmark||', 'no', 'no', 'no', 'no', 'no', '||comma||', 'yours', 'is', 'a', 'sweet', 'tooth', '||period||', '||return||', '||return||', 'george:', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'you', 'may', 'stray', '||comma||', 'but', "you'll", 'always', 'return', 'to', 'your', 'dark', 'master', '||comma||', 'the', 'cocoa', 'bean', '||period||', '||return||', '||return||', 'george:', "i'm", 'leaving', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'building', 'up', 'steam', 'as', 'george', 'bolts', 'for', 'the', 'door', '||rightparen||', 'no', '||comma||', 'and', 'only', 'the', 'purest', 'syrup', 'nectar', 'can', 'satisfy', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'kramer:', 'if', 'you', 'could', "you'd", 'guzzle', 'it', 'by', 'the', 'gallon', '||exclammark||', 'ovaltine', '||exclammark||', "hershey's", '||exclammark||', '||return||', '||return||', 'george:', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'kramer:', "nestl's", 'quik', '||exclammark||', '||return||', '||return||', 'george:', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'just', 'checked', 'your', 'watch', '||period||', 'are', 'you', 'thinking', 'of', 'bailing', 'on', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'a', 'date', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'mr', '||period||', 'peterman', '||period||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'elaine', '||period||', 'george', '||comma||', 'when', 'momma', 'said', "'bosco'", 'she', 'must', 'have', 'been', 'trying', 'to', 'communicate', 'something', '||comma||', 'a', 'legacy', '||comma||', 'a', 'dying', 'wish', 'perhaps', '||period||', '||return||', '||return||', 'george:', 'mothers', 'say', 'things', '||period||', 'my', 'mother', 'goes', 'babbling', 'on', 'and', 'on', 'like', 'a', 'crazy', 'person', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||comma||', 'you', 'have', 'my', 'deepest', 'sympathies', '||period||', 'unfortunately', '||comma||', "i've", 'gotta', 'get', 'going', '||period||', '||return||', '||return||', 'peterman:', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'yes', '||comma||', 'actually', 'we', '||dash||', 'we', 'both', 'do', '||period||', '||return||', '||return||', 'elaine:', 'i', 'have', 'a', 'personal', 'commitment', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'personal', '||comma||', 'i', 'mean', '||comma||', 'we', 'both', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'speaking', 'at', 'a', "women's'", 'rights', 'conference', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'and', "i'm", 'speaking', 'at', 'a', "men's'", 'conference', '||period||', '||return||', '||return||', 'peterman:', 'i', "don't", 'believe', 'that', 'for', 'a', 'minute', '||period||', 'well', '||comma||', 'elaine', '||comma||', 'it', 'was', 'good', 'of', 'you', 'to', 'stop', 'by', '||period||', '||return||', '||return||', 'elaine:', 'my', 'pleasure', '||period||', '||return||', '||return||', 'peterman:', 'fortunately', '||comma||', 'i', 'still', 'have', 'george', 'here', 'to', 'help', 'me', 'through', 'this', '||period||', '||return||', '||return||', 'peterman:', 'you', 'know', 'george', '||comma||', 'growing', 'up', 'as', 'a', 'boy', 'in', 'costa', 'rica', '||comma||', 'i', 'heard', 'a', 'rumor', 'that', 'momma', 'had', 'taken', 'a', 'lover', '||period||', 'perhaps', 'bosco', 'was', 'this', "man's", 'name', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'wanna', 'come', 'down', 'the', 'fire', 'station', 'with', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'fire', 'station', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'made', 'a', 'map', 'of', 'my', 'shortcuts', '||period||', "i'm", 'gonna', 'rock', 'their', 'world', '||exclammark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'i', 'gotta', 'go', 'down', 'to', "leapin'", "larry's", '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'so', 'he', 'took', 'you', 'back', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'we', 'straightened', 'it', 'out', '||comma||', 'all', 'is', 'forgiven', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', 'the', 'important', 'thing', 'is', 'that', 'you', 'learned', 'something', '||period||', '||return||', '||return||', 'jerry:', 'no', 'i', "didn't", '||period||', '||return||', '||return||', 'captain:', 'well', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'your', 'list', 'of', 'short', 'cuts', 'is', 'most', 'impressive', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', 'this', 'is', 'just', 'the', 'upper', 'west', 'side', '||period||', 'wait', 'until', 'i', 'get', 'to', 'the', 'village', '||comma||', 'then', "you're", 'gonna', 'see', 'a', 'magic', 'show', '||period||', '||return||', '||return||', 'captain:', 'mr', '||period||', 'kramer', '||comma||', 'just', 'about', 'every', 'week', 'some', 'brash', 'young', 'hothead', 'like', 'yourself', 'saunters', 'in', 'here', 'talking', 'about', 'faster', 'routes', 'and', 'snazzier', 'colors', 'for', 'the', 'trucks', '||comma||', 'well', '||comma||', 'fact', 'is', 'we', 'feel', 'things', 'are', 'fine', 'the', 'way', 'they', 'are', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'thanks', 'for', 'having', 'me', 'back', '||comma||', 'and', 'sorry', 'about', 'the', 'misunderstanding', '||period||', '||return||', '||return||', "leapin'", 'larry:', 'water', 'under', 'the', 'bridge', '||period||', 'come', 'on', '||comma||', 'i', 'never', 'did', 'get', 'a', 'chance', 'to', 'show', 'you', 'around', 'the', 'store', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'again', '||questionmark||', '||leftparen||', 'limping', 'towards', 'the', 'door', '||rightparen||', "i'll", 'be', 'right', 'there', '||period||', '||return||', '||return||', 'dispatcher:', 'attention', 'company', '390', '||comma||', 'structure', 'fire', 'at', "leapin'", "larry's", 'appliance', 'warehouse', '||period||', '||return||', '||return||', 'kramer:', "leapin'", "larry's", '||questionmark||', 'hey', '||comma||', "that's", 'uptown', '||period||', 'you', 'gotta', 'take', 'amsterdam', '||period||', '||return||', '||return||', 'captain:', 'stay', 'out', 'of', 'this', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'ok', '||comma||', 'cowboy', '||questionmark||', 'where', 'do', 'you', 'need', 'to', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you'd", 'better', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'fred:', 'sorry', 'about', 'the', 'other', 'night', 'but', 'my', 'mother', 'called', '||comma||', 'she', "couldn't", 'find', 'her', 'pills', '||period||', 'i', 'had', 'to', 'go', 'into', 'brooklyn', 'to', 'help', 'her', 'find', 'her', 'pills', '||comma||', 'and', 'they', 'were', 'right', 'there', 'in', 'the', 'medicine', 'cabinet', '||period||', 'could', 'you', 'believe', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||return||', '||return||', 'fred:', 'the', 'worst', 'part', 'is', 'getting', 'from', 'the', 'subway', 'station', 'to', 'the', 'house', '||period||', "there's", 'no', 'transportation', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'herself', '||rightparen||', 'what', 'am', 'i', 'doing', '||questionmark||', "i'm", 'on', 'a', 'date', 'with', 'this', 'guy', 'because', 'he', "didn't", 'remember', 'me', '||questionmark||', "he's", 'demented', '||comma||', 'listen', 'to', 'him', '||period||', '||period||', '||period||', '||return||', '||return||', 'fred:', '||period||', '||period||', '||period||', 'i', 'could', 'have', 'taken', 'a', 'cab', 'but', 'if', 'my', 'mother', 'saw', 'me', 'pull', 'up', 'in', 'a', 'cab', '||comma||', "she'd", 'start', 'yelling', 'at', 'me', '||comma||', '||quotemark||', 'freddy', '||exclammark||', 'what', 'are', 'taking', 'a', 'cab', 'for', '||questionmark||', "it's", 'so', 'expensive', '||exclammark||', '||quotemark||', "she's", 'out', 'of', 'her', 'mind', '||period||', 'eventually', '||comma||', "you'll", 'meet', 'her', '||period||', '||return||', '||return||', 'peterman:', 'bosco', '||period||', 'bosco', '||period||', 'bosco', '||period||', '||return||', '||return||', '||leftparen||', 'a', 'woman', 'rushes', 'in', 'and', 'shouts:', "there's", 'a', 'big', 'fire', 'down', 'the', 'street', '||comma||', 'the', 'whole', 'block', 'is', 'going', 'up', 'in', 'flames', '||exclammark||', 'peterman', 'gets', 'up', 'and', 'runs', 'towards', 'the', 'door', '||comma||', 'he', 'stops', 'and', 'looks', 'back', '||period||', 'george', 'is', 'still', 'sitting', 'on', 'the', 'couch', '||comma||', 'looking', 'up', 'and', 'shaking', 'his', 'head', '||period||', '||return||', '||return||', 'peterman:', 'george', '||exclammark||', '||return||', '||return||', 'captain:', 'gonna', 'make', 'a', 'left', 'onto', 'broadway', '||period||', '||return||', '||return||', 'captain:', 'who', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'kramer', '||exclammark||', '||return||', '||return||', 'captain:', 'kramer', '||questionmark||', '||exclammark||', 'what', 'the', 'hell', 'are', 'you', 'doing', 'back', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', "desoto's", 'down', '||comma||', 'but', "cosmo's", 'got', 'the', 'caboose', '||period||', '||return||', '||return||', 'woman:', 'how', 'did', 'this', 'start', '||questionmark||', '||return||', '||return||', 'jerry:', 'beats', 'me', '||period||', '||return||', '||return||', "leapin'", 'larry:', 'where', 'the', "hell's", 'the', 'fire', 'department', '||questionmark||', "i'm", 'gonna', 'lose', 'the', 'whole', 'store', '||exclammark||', '||return||', '||return||', 'captain:', 'kramer', '||comma||', 'get', 'the', 'hell', 'off', 'of', 'there', '||period||', "you're", 'not', 'trained', 'to', 'operate', 'this', 'equipment', '||exclammark||', '||return||', '||return||', 'man', 'on', 'the', 'street:', 'hey', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', "leapin'", 'larry:', 'try', 'the', 'scanner', '||comma||', 'see', 'if', 'you', 'can', 'pick', 'up', 'anything', '||period||', '||return||', '||return||', 'captain:', 'what', 'are', 'you', 'doing', '||comma||', 'kramer', '||questionmark||', '||exclammark||', "you're", 'all', 'over', 'the', 'road', '||exclammark||', '||return||', '||return||', 'kramer:', "don't", 'worry', '||comma||', 'cap', '||comma||', 'i', 'can', 'handle', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', '||return||', '||return||', 'captain:', "you're", 'losing', 'control', '||exclammark||', 'hard', 'right', '||exclammark||', 'hard', 'right', '||exclammark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'peterman:', 'the', 'fire', 'will', 'eat', 'up', 'this', 'entire', 'block', '||exclammark||', '||return||', '||return||', 'peterman:', 'look', '||comma||', "there's", 'a', 'man', 'in', 'there', '||period||', 'get', 'out', 'of', 'there', '||comma||', "you're", 'in', 'danger', '||exclammark||', '||return||', '||return||', 'man:', 'but', 'my', 'sleeve', '||comma||', "it's", 'stuck', 'in', 'the', 'machine', '||comma||', 'it', 'ate', 'my', 'card', '||exclammark||', '||return||', '||return||', 'peterman:', 'george', '||comma||', 'give', 'me', 'your', 'atm', 'card', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'have', 'my', 'atm', 'card', '||period||', '||return||', '||return||', 'peterman:', 'george', '||comma||', "you're", 'obviously', 'lying', '||comma||', 'anyone', 'can', 'see', 'that', '||exclammark||', '||return||', '||return||', 'peterman:', "it's", 'jammed', '||exclammark||', "i'll", 'slide', 'it', 'under', 'the', 'door', '||comma||', '||return||', '||return||', 'man:', 'now', 'give', 'me', 'your', 'code', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', 'why', '||questionmark||', '||return||', '||return||', 'man:', 'the', 'machine', "won't", 'open', 'without', 'the', 'code', '||exclammark||', '||return||', '||return||', 'peterman:', 'george', '||comma||', 'give', 'him', 'your', 'code', '||exclammark||', '||return||', '||return||', 'george:', 'but', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', '||return||', '||return||', 'peterman:', 'george', '||comma||', "there's", 'no', 'time', '||exclammark||', 'tell', 'him', 'your', 'code', '||exclammark||', 'shout', 'out', 'your', 'code', '||comma||', 'man', '||exclammark||', '||exclammark||', '||return||', '||return||', 'man:', 'the', 'code', '||exclammark||', '||exclammark||', 'the', 'code', '||exclammark||', '||exclammark||', '||return||', '||return||', 'susan:', 'hi', '||period||', "here's", 'your', 'cash', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'hm', '||period||', 'thanks', '||period||', '||return||', '||return||', 'susan:', 'and', "here's", 'your', 'card', 'back', '||period||', 'anyone', 'for', 'bosco', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'george:', 'hm', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'the', 'new', 'j', '||period||', 'peterman', 'catalog', '||period||', 'look', '||period||', '||return||', '||return||', 'george:', 'the', "rogue's", 'wallet', '||period||', "that's", 'where', 'he', 'kept', 'his', 'card', '||comma||', 'his', 'dirty', 'little', 'secret', '||period||', 'short', '||comma||', 'devious', '||comma||', 'balding', '||period||', 'his', 'name', 'was', 'costanza', '||period||', 'he', 'killed', 'my', 'mother', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'who', 'would', 'win', 'in', 'a', 'fight', 'between', 'you', 'and', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'if', 'you', 'and', 'i', 'ever', 'got', 'into', '||comma||', 'like', 'a', 'really', 'serious', 'fight', 'you', 'know', '||comma||', 'and', 'the', 'punches', 'started', 'flying', '||dash||', '||dash||', 'who', 'do', 'you', 'think', 'would', 'win', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'think', "that's", 'pretty', 'obvious', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'me', 'too', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'who', '||comma||', 'who', '||comma||', 'who', 'do', 'you', 'think', 'would', 'win', 'in', 'a', 'fight', 'between', 'me', 'and', 'ah', '||comma||', 'gorgeous', 'george', 'here', '||period||', '||leftparen||', 'pointing', 'up', 'and', 'down', 'at', 'george', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'mean', 'in', 'a', 'real', 'fight', 'fight', '||questionmark||', '||return||', '||return||', 'jerry:', 'mona', 'a', 'baldo', '||period||', '||return||', '||return||', 'elaine:', 'george', '||period||', '||return||', '||return||', 'george:', 'ah', '||dash||', 'ha', '||exclammark||', '||leftparen||', 'he', 'turns', 'and', 'walks', 'over', 'to', 'the', 'refrigerator', '||rightparen||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', 'fights', 'dirty', '||period||', '||leftparen||', 'she', 'sips', 'her', 'coffee', '||rightparen||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'what', 'would', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'pull', 'hair', '||comma||', 'poke', 'eyes', '||comma||', 'groin', 'stuff', '||period||', 'whatever', 'i', 'gotta', 'do', '||period||', '||leftparen||', 'he', 'opens', 'a', 'blue', 'bottled', 'beverage', '||rightparen||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', '||return||', '||return||', 'elaine:', 'so', '||period||', 'listen', '||period||', '||period||', '||period||', "you're", 'not', 'doing', 'anything', 'tomorrow', '||comma||', 'are', 'you', '||questionmark||', 'because', 'i', 'have', 'an', 'extra', 'ticket', 'to', 'the', 'historical', 'clothing', 'exhibit', 'at', 'the', 'met', '||period||', '||return||', '||return||', 'jerry:', 'im', 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'would', 'i', 'want', 'to', 'see', 'what', 'mary', 'todd', 'wore', 'to', "lincoln's", 'funeral', '||questionmark||', '||return||', '||return||', 'elaine:', "there's", 'nobody', 'i', 'can', 'go', 'with', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||period||', 'i', "don't", 'have', 'one', 'female', 'friend', 'left', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'of', 'course', 'you', "don't", '||period||', "you're", 'a', "man's", 'woman', '||period||', 'you', 'hate', 'other', 'women', '||comma||', 'and', 'they', 'hate', 'you', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'so', 'jerry', '||comma||', '||leftparen||', 'smacks', 'hands', 'and', 'rubs', 'palms', 'together', '||rightparen||', 'what', 'time', 'we', 'going', 'to', 'the', 'movies', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'how', 'about', '830', '||questionmark||', '||return||', '||return||', 'kramer:', 'saddle', 'up', 'and', 'ride', '||period||', '||leftparen||', 'opens', 'the', 'fridge', 'and', 'pulls', 'out', 'some', 'food', '||dash||', '||dash||', 'takes', 'a', 'big', 'bite', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'get', 'something', 'to', 'eat', 'first', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'mumbling', 'with', 'full', 'mouth', '||rightparen||', 'no', '||comma||', 'im', 'good', '||period||', '||return||', '||return||', 'george:', 'i', 'wonder', 'if', '||comma||', 'ah', '||comma||', 'susan', '||period||', '||period||', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', 'from', 'the', 'coffee', 'table', '||comma||', 'then', 'decides', 'not', 'to', 'call', '||rightparen||', 'no', '||period||', 'i', 'better', 'just', 'go', '||period||', '||leftparen||', 'claps', 'hands', '||rightparen||', 'heh', '||period||', 'all', 'right', '||exclammark||', 'see', 'ya', '||period||', '||leftparen||', 'grabs', 'his', 'rain', 'coat', 'from', 'the', 'hook', 'by', 'the', 'door', 'and', 'rushes', 'out', '||rightparen||', '||return||', '||return||', 'kramer:', "there's", 'nothing', 'more', 'pathetic', '||comma||', 'than', 'a', 'grown', 'man', '||comma||', 'whos', 'afraid', 'of', 'a', 'woman', '||period||', '||leftparen||', 'voice', 'get', 'high', '||dash||', 'pitched', 'for', 'the', 'last', 'line', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'why', "don't", 'cha', 'ask', 'susan', '||questionmark||', '||return||', '||return||', 'elaine:', "george's", 'susan', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'why', 'not', 'susan', '||period||', 'i', 'should', 'be', 'friends', 'with', 'susan', '||period||', '||leftparen||', 'smacks', 'her', 'forehead', 'with', 'hand', '||rightparen||', 'of', 'course', '||exclammark||', 'susan', '||exclammark||', 'oh', '||exclammark||', 'ok', '||comma||', 'ill', 'see', 'you', 'guys', '||period||', 'huh', '||period||', '||leftparen||', 'rushes', 'out', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', "that's", 'gunna', 'be', 'trouble', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "don't", 'you', 'see', '||questionmark||', 'this', 'world', 'here', '||comma||', 'this', 'is', "george's", 'sanctuary', '||period||', 'if', 'susan', 'comes', 'into', 'contact', 'with', 'this', 'world', '||comma||', 'his', "world's", 'collide', '||period||', 'you', 'know', 'what', 'happens', 'then', '||questionmark||', '||return||', '||return||', 'kramer:', 'ka', 'shha', 'shha', 'shha', 'pkooo', '||leftparen||', 'exploding', 'sound', '||rightparen||', '||return||', '||return||', 'kramer:', 'did', 'i', 'tell', 'you', 'im', 'getting', 'a', 'new', 'telephone', 'number', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'come', '||questionmark||', '||return||', '||return||', 'kramer:', 'whew', '||comma||', 'chicks', 'man', '||period||', 'too', 'many', 'chicks', 'know', 'my', 'number', '||period||', '||return||', '||return||', 'ramon:', '||leftparen||', 'recognizes', 'jerry', '||rightparen||', 'hey', 'jerry', '||period||', 'how', 'are', 'you', 'mr', '||period||', 'backstroke', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', 'this', 'is', 'ramon', '||comma||', 'from', 'the', 'new', 'health', 'club', 'i', 'joined', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'ramon:', 'so', 'you', 'know', 'what', 'happened', "don't", 'chu', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'what', '||questionmark||', '||return||', '||return||', 'ramon:', 'i', 'got', 'fired', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'ramon:', 'yeah', '||comma||', 'said', 'i', 'put', 'too', 'much', 'chlorine', 'in', 'the', 'pool', '||period||', '||return||', '||return||', 'jerry:', 'ahh', '||period||', '||return||', '||return||', 'ramon:', 'hey', 'well', '||comma||', 'ah', '||comma||', 'stay', 'out', 'of', 'the', 'deep', 'end', '||comma||', 'eh', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', "what's", 'in', 'the', 'deep', 'end', '||questionmark||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', 'george', '||period||', '||return||', '||return||', 'george:', 'hey', 'elainie', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sitting', 'up', 'in', 'bed', '||rightparen||', 'nothing', 'much', '||comma||', 'um', '||period||', 'can', 'i', 'talk', 'to', 'susan', '||return||', '||return||', 'george:', 'ha', '||comma||', 'yeah', 'right', '||comma||', 'hang', 'on', '||comma||', 'ill', 'ah', '||comma||', 'ill', 'get', 'her', 'for', 'you', '||period||', 'he', '||comma||', 'he', '||comma||', 'he', '||comma||', 'he', '||period||', 'seriously', '||comma||', "what's", 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'george', 'really', '||period||', 'can', 'i', 'talk', 'to', 'susan', '||questionmark||', '||return||', '||return||', 'george:', 'susan', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'i', 'want', 'to', 'ask', 'her', 'to', 'lunch', 'and', 'to', 'the', 'met', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', "don't", 'think', 'you', 'want', 'to', 'do', 'that', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'what', 'would', 'be', 'the', 'point', 'of', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'are', 'you', 'going', 'to', 'put', 'her', 'on', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'george:', 'where', 'did', 'this', 'come', 'from', 'all', 'of', 'a', 'sudden', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'are', 'you', 'going', 'to', 'let', 'me', 'talk', 'to', 'susan', '||comma||', 'or', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'really', 'think', 'i', 'should', 'have', 'been', 'consulted', 'about', 'this', '||period||', '||return||', '||return||', 'george:', 'here', '||period||', '||period||', '||period||', 'something', '||period||', '||return||', '||return||', 'susan:', 'hello', '||questionmark||', '||leftparen||', 'with', 'hesitant', 'surprise', '||rightparen||', 'oh', '||comma||', 'that', 'sounds', 'great', '||period||', 'i', 'love', 'that', 'sort', 'of', 'stuff', '||period||', '||return||', '||return||', 'kramer:', 'you', 'want', 'to', 'sit', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'kramer', 'sits', 'in', 'the', 'seat', 'next', 'to', 'jerry', '||rightparen||', 'uh', '||comma||', 'uh', '||comma||', 'oh', '||comma||', 'oh', '||comma||', 'over', 'there', '||period||', '||leftparen||', 'points', 'to', 'the', 'next', 'seat', 'over', '||rightparen||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'little', 'buffer', 'zone', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'buffer', 'zone', '||leftparen||', 'kramer', 'moves', 'to', 'the', 'other', 'seat', '||rightparen||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', 'if', 'we', 'were', 'in', 'my', 'apartment', 'and', 'we', 'were', 'watching', 'a', 'movie', 'on', 'the', 'couch', '||comma||', 'would', 'we', 'sit', 'right', 'next', 'to', 'each', 'other', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'you', 'got', 'a', 'point', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'i', "can't", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'these', 'seats', 'have', 'no', 'lumbar', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hey', '||comma||', "there's", 'ramon', '||period||', 'pre', '||comma||', 'pretend', "we're", 'talking', '||period||', '||return||', '||return||', 'kramer:', 'we', 'are', 'talking', '||period||', '||return||', '||return||', 'jerry:', 'pretend', "it's", 'interesting', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'ah', 'then', '||comma||', 'i', 'ah', 'had', 'to', 'kill', 'him', 'and', 'ah', '||comma||', 'well', 'the', 'police', 'are', 'still', 'looking', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', "that's", 'shocking', '||comma||', 'but', 'sounds', '||period||', '||period||', '||period||', '||return||', '||return||', 'ramon:', 'hey', '||comma||', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hey', 'ramon', '||period||', '||return||', '||return||', 'ramon:', 'hey', '||comma||', 'hey', '||comma||', 'i', 'took', 'a', 'bunch', 'of', 'napkins', '||period||', 'you', 'want', 'some', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', 'thanks', '||period||', '||leftparen||', 'turns', 'back', 'to', 'kramer', '||rightparen||', '||return||', '||return||', 'ramon:', 'hey', '||comma||', 'ahhh', '||comma||', 'is', 'this', 'seat', 'taken', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'and', 'then', 'the', 'worst', 'part', 'is', '||comma||', 'after', 'the', 'movie', '||comma||', 'he', 'leached', 'on', 'to', 'us', '||period||', '||period||', '||period||', 'we', 'wound', 'up', 'having', 'coffee', 'with', 'him', 'for', 'like', 'two', 'hours', '||period||', 'then', 'he', 'walks', 'us', 'home', '||comma||', 'all', 'the', 'way', 'back', 'to', 'the', 'front', 'of', 'the', 'building', '||period||', 'finally', 'i', 'said', '||comma||', 'look', 'ramon', '||comma||', 'i', 'gotta', 'go', 'to', 'bed', 'now', '||period||', '||return||', '||return||', 'george:', 'by', 'the', 'way', '||comma||', 'have', 'you', 'spoken', 'to', 'elaine', 'yet', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'why', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sighs', '||rightparen||', 'she', 'called', 'susan', 'last', 'night', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'it', 'was', 'my', 'idea', '||period||', '||return||', '||return||', 'george:', 'your', 'idea', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'whad', 'you', 'do', 'that', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'was', 'looking', 'for', 'someone', 'to', 'go', 'to', 'the', 'show', 'with', '||period||', '||return||', '||return||', 'george:', 'well', 'that', 'was', 'a', 'really', 'stupid', 'thing', '||exclammark||', 'you', 'know', "what's", 'going', 'to', 'happen', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', "world's", 'collide', '||period||', '||leftparen||', 'points', 'at', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'whe', '||period||', '||period||', '||period||', 'well', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'because', 'this', 'world', 'is', 'your', 'sanctuary', 'and', 'if', 'that', 'world', 'comes', 'into', 'contact', 'with', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'it', 'blows', 'up', '||exclammark||', 'if', 'you', 'knew', 'that', '||comma||', 'what', 'did', 'you', 'tell', 'elaine', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'didnt', 'know', '||period||', 'kramer', 'told', 'me', 'about', 'the', 'worlds', '||period||', '||return||', '||return||', 'george:', 'you', "couldn't", 'figure', 'out', 'the', "world's", 'theory', 'for', 'yourself', '||questionmark||', "it's", 'just', 'common', 'sense', '||period||', 'anybody', 'knows', '||comma||', 'ya', 'gotta', 'keep', 'your', 'worlds', 'apart', '||period||', '||leftparen||', 'gesturing', 'with', 'hands', 'going', 'outward', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'guess', 'i', 'slipped', 'up', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'he', 'knows', 'the', 'worlds', 'theory', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'it', 'blowing', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'ha', '||exclammark||', '||leftparen||', 'grabs', 'his', 'coat', 'and', 'exits', 'the', 'apartment', '||rightparen||', '||return||', '||return||', 'kramer:', 'cosmo', '||comma||', 'go', '||period||', 'no', '||comma||', 'no', '||comma||', 'na', '||comma||', 'na', '||period||', '||leftparen||', 'he', 'pushes', 'the', 'end', 'button', 'and', 'pushes', 'the', 'antenna', 'down', '||rightparen||', 'boy', 'this', 'new', 'telephone', "number's", 'driving', 'me', 'crazy', '||dash||', '||dash||', 'wrong', 'numbers', '||comma||', 'every', 'five', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "it's", '555', '||dash||', '3455', '||period||', '||return||', '||return||', 'jerry:', '555', '||dash||', '3455', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picks', 'up', 'the', 'phone', 'on', 'the', 'coffee', 'table', '||rightparen||', '555', '||dash||', '3455', '||period||', 'well', 'wait', 'a', 'second', '||comma||', "don't", 'you', 'see', "that's", '555', '||dash||', 'filk', '||period||', '||return||', '||return||', 'kramer:', "what's", 'filk', '||questionmark||', '||return||', '||return||', 'jerry:', 'filks', 'nothing', '||comma||', 'but', '555', '||dash||', 'film', 'is', 'movie', 'phone', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'movie', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'so', 'people', 'are', 'just', 'dialing', 'it', 'by', 'mistake', 'and', 'getting', 'you', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'im', 'filk', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'filk', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'mama', '||period||', '||return||', '||return||', 'elaine:', 'well', 'what', 'about', 'that', 'number', 'susan', 'b', '||period||', 'anthony', 'wore', 'to', 'the', '19th', 'amendment', 'party', '||period||', 'hnuh', '||period||', 'eye', 'yye', 'yye', '||period||', '||return||', '||return||', 'susan:', 'oh', 'whoo', '||period||', 'quite', 'the', 'dcolletage', 'for', 'a', 'suffragette', '||period||', '||return||', '||return||', 'elaine:', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'well', 'it', 'must', 'have', 'been', 'one', 'hell', 'of', 'a', 'party', '||period||', '||return||', '||return||', 'susan:', 'whoo', '||period||', '||return||', '||return||', 'elaine:', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'i', 'know', 'what', 'i', 'wanted', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'susan:', 'ehahh', '||comma||', 'forget', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'you', 'can', 'tell', 'me', '||period||', 'ill', 'put', 'it', 'in', 'the', 'vault', '||period||', '||return||', '||return||', 'susan:', 'the', 'vault', '||questionmark||', '||return||', '||return||', 'elaine:', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'paul', '||dash||', 'locker', 'room', 'attendant', '#1:', 'oy', '||comma||', 'mr', '||period||', 'seinfeld', '||period||', 'we', 'heard', 'you', 'went', 'to', 'the', 'movies', 'with', 'ramon', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||comma||', 'i', 'didnt', 'actually', 'go', 'with', 'ramon', '||period||', 'i', 'just', 'bumped', 'into', 'him', 'there', '||period||', '||leftparen||', 'putting', 'on', 'coat', '||rightparen||', '||return||', '||return||', 'dustin', '||dash||', 'locker', 'room', 'attendant', '#2:', "it's", 'a', 'good', 'thing', 'he', 'has', 'friends', 'like', 'you', 'to', 'cheer', 'him', 'up', '||period||', '||return||', '||return||', 'paul:', 'tell', 'him', 'to', 'call', 'us', '||period||', '||return||', '||return||', 'dustin:', 'tell', 'him', '||comma||', 'dustin', 'says', '||comma||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'paul:', 'to', 'see', 'ramon', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'else', 'did', 'you', 'two', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "don't", 'know', '||comma||', 'you', 'know', '||comma||', 'girlie', 'stuff', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'so', '||comma||', 'ah', '||comma||', 'flower', 'shows', 'and', '||comma||', 'shopping', 'for', 'pretty', 'bows', '||comma||', 'and', 'then', 'back', 'to', 'her', 'place', '||comma||', 'strip', 'down', 'to', 'bra', 'and', 'panties', 'for', 'a', 'tickle', 'fight', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'really', 'what', 'you', 'think', 'girls', 'do', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'do', '||period||', '||leftparen||', 'very', 'serious', '||rightparen||', '||return||', '||return||', 'elaine:', 'all', 'rightee', '||period||', '||leftparen||', 'turns', 'and', 'walks', 'to', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', 'you', 'know', 'george', "isn't", 'to', 'happy', '||comma||', 'ahh', '||comma||', 'about', 'your', 'new', 'friendship', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'well', 'i', "don't", 'really', 'give', 'a', 'sh', '||period||', '||period||', '||period||', '||leftparen||', 'closing', 'the', 'bathroom', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', 'man', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', 'here', 'we', 'go', '||period||', '||leftparen||', 'pulls', 'a', 'cordless', 'phone', 'from', 'his', 'pocket', '||rightparen||', 'yeah', 'hello', '||period||', 'yeah', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'hold', 'on', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'cupids', 'rifle', '||dash||', '||dash||', '830', '||comma||', 'sony', 'lincoln', 'square', '||period||', 'yeah', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', 'problem', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "you're", 'looking', 'up', 'movies', 'for', 'people', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'time', '||period||', '||return||', '||return||', 'kramer:', 'and', 'this', '||period||', '||leftparen||', 'pulls', 'out', 'the', 'cordless', 'phone', 'from', 'his', 'pocket', '||rightparen||', 'cosmo', 'here', '||period||', 'yeah', '||comma||', 'un', '||dash||', 'huh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'ill', 'help', '||period||', 'yeah', '||comma||', 'firestorms', 'good', '||period||', 'i', 'saw', 'it', 'yesterday', '||period||', 'yeah', 'well', 'my', 'buddy', 'jerry', '||comma||', 'ah', '||comma||', "he's", 'seen', 'it', 'twice', '||period||', 'you', 'want', 'to', 'talk', 'to', 'him', '||questionmark||', 'here', '||dash||', '||dash||', '||leftparen||', 'holds', 'the', 'phone', 'out', 'to', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shaking', 'his', 'head', 'no', '||rightparen||', 'no', 'kramer', 'i', "don't", 'want', 'to', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'just', '||comma||', 'just', 'tell', 'him', 'about', 'the', 'picture', '||period||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'stop', 'it', '||period||', '||leftparen||', 'puts', 'the', 'phone', 'back', 'to', 'his', 'ear', '||rightparen||', 'yes', '||comma||', 'are', 'you', 'still', 'there', '||questionmark||', 'look', 'im', 'sorry', 'about', 'that', '||period||', 'all', 'right', "there's", 'an', '830', 'and', 'a', '1015showing', '||period||', '||return||', '||return||', 'jerry:', 'oh', "that's", 'george', '||period||', '||leftparen||', 'presses', 'the', 'intercom', 'button', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'ramon:', '||leftparen||', 'hey', "it's", 'ramon', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'ramon:', '||leftparen||', 'hey', '||comma||', "it's", 'ramon', 'jerry', '||period||', 'im', 'coming', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'ramon', '||rightparen||', 'oh', '||period||', 'okay', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'wh', '||comma||', 'what', 'is', 'he', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', '||questionmark||', 'who', 'is', 'ramon', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'the', 'pool', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'what', 'pool', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'me', 'a', 'favor', '||period||', 'just', 'stick', 'around', 'while', "he's", 'here', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'no', 'problem', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'you', 'have', 'the', 'slowest', 'elevator', 'in', 'the', 'entire', 'city', '||questionmark||', "that's", 'hard', 'to', 'get', 'used', 'to', 'when', "you're", 'in', 'so', 'many', 'other', 'fast', 'ones', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'the', 'apartment', 'elevators', 'are', 'always', 'slower', 'than', 'the', 'offices', '||comma||', 'because', 'you', "don't", 'have', 'to', 'be', 'home', 'on', 'time', '||period||', '||return||', '||return||', 'ramon:', 'hee', 'hey', '||comma||', 'hey', 'jerry', '||leftparen||', 'claps', 'hands', 'and', 'points', 'both', 'index', 'fingers', 'at', 'him', '||rightparen||', 'how', 'are', 'you', '||comma||', 'crazy', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'so', '||comma||', 'ah', '||comma||', 'ramon', 'this', 'is', 'my', 'friend', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'and', 'i', 'was', 'just', 'leaving', '||period||', 'bye', '||dash||', 'bye', 'jerry', '||period||', '||leftparen||', 'smiling', 'as', 'she', 'closes', 'the', 'door', '||period||', 'jerry', 'looks', 'at', 'her', 'like', 'he', 'can', 'not', 'believe', 'she', 'left', 'him', 'on', 'his', 'own', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'ah', '||comma||', 'what', 'are', 'you', 'doing', 'around', 'here', 'ramon', '||questionmark||', '||return||', '||return||', 'ramon:', 'well', '||comma||', 'i', 'was', 'in', 'the', 'neighborhood', '||period||', 'i', 'figured', 'id', 'check', 'you', 'out', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'actually', '||comma||', 'i', 'ka', '||comma||', 'kinda', 'had', 'some', 'things', 'to', 'do', '||period||', '||return||', '||return||', 'ramon:', 'oh', '||comma||', 'oh', 'yeah', '||period||', 'wha', '||questionmark||', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'just', '||comma||', 'you', 'know', '||comma||', 'i', "don't", 'know', '||period||', 'stuff', '||comma||', 'i', 'gotta', 'do', '||period||', '||leftparen||', 'grabs', 'coat', 'and', 'throws', 'it', 'over', 'his', 'shoulder', '||rightparen||', '||return||', '||return||', 'ramon:', 'hey', "that's", 'cool', '||period||', 'im', 'up', 'for', 'some', 'stuff', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'ramon:', 'so', 'get', 'this', '||period||', 'i', 'get', 'down', 'there', '||comma||', 'and', 'right', 'away', '||comma||', 'i', 'see', 'the', 'drain', 'is', 'clogged', '||period||', 'i', 'mean', "it's", 'obvious', '||period||', 'can', 'you', 'believe', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', 'ramon', '||comma||', 'im', 'going', 'to', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'we', 'should', 'separate', 'here', 'actually', '||period||', '||return||', '||return||', 'ramon:', 'what', 'are', 'you', 'trying', 'to', 'say', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', 'ramon', '||comma||', "you're", '||comma||', "you're", 'a', 'nice', 'guy', '||period||', 'but', 'i', '||comma||', 'i', 'actually', 'only', 'have', 'three', 'friends', '||period||', 'i', 'really', "can't", 'handle', 'any', 'more', '||period||', '||return||', '||return||', 'ramon:', 'oh', 'i', 'see', '||period||', "it's", 'cause', 'i', 'clean', 'pools', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'has', 'nothing', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'ramon:', 'you', 'su', '||dash||', '||dash||', '||leftparen||', 'no', 'audio', '||rightparen||', '||leftparen||', 'through', 'the', 'moving', 'subway', 'window', '||comma||', 'ramon', 'is', 'swearing', 'and', 'pointing', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'we', 'got', 'along', 'real', 'well', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'uh', '||comma||', 'she', 'has', 'no', 'female', 'friends', '||exclammark||', 'you', 'know', 'that', '||comma||', "don't", 'cha', '||questionmark||', 'something', 'strange', 'about', 'a', 'woman', 'whos', 'friends', 'are', 'all', 'men', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'i', 'know', '||period||', 'we', 'talked', 'all', 'about', 'that', '||period||', '||return||', '||return||', 'george:', 'you', 'talked', 'all', 'about', 'that', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', 'yeah', '||period||', 'elaine', 'opened', 'up', 'her', 'vault', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'just', 'say', 'vault', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'why', '||questionmark||', 'did', 'i', 'use', 'it', 'wrong', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'got', 'that', 'from', 'elaine', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||period||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'well', "it's", 'a', 'little', 'strange', '||period||', 'you', 'going', 'to', 'start', 'to', 'talk', 'like', 'elaine', 'from', 'now', 'on', '||questionmark||', '||return||', '||return||', 'susan:', 'i', "don't", 'know', '||period||', 'anyway', 'i', 'thought', "we'd", 'all', 'go', 'to', 'a', 'movie', 'on', 'friday', '||period||', '||return||', '||return||', 'george:', 'wed', 'all', 'go', 'to', 'movie', 'on', 'friday', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'not', 'good', '||period||', "world's", 'are', 'colliding', '||exclammark||', 'george', 'is', 'getting', 'upset', '||exclammark||', '||return||', '||return||', 'george:', 'ah', 'you', 'have', 'no', 'idea', 'of', 'the', 'magnitude', 'of', 'this', 'thing', '||period||', 'if', 'she', 'is', 'allowed', 'to', 'infiltrate', 'this', 'world', '||comma||', 'then', 'george', 'costanza', 'as', 'you', 'know', 'him', '||comma||', 'ceases', 'to', 'exist', '||exclammark||', 'you', 'see', '||comma||', 'right', 'now', '||comma||', 'i', 'have', 'relationship', 'george', '||comma||', 'but', 'there', 'is', 'also', 'independent', 'george', '||period||', "that's", 'the', 'george', 'you', 'know', '||comma||', 'the', 'george', 'you', 'grew', 'up', 'with', '||dash||', '||dash||', 'movie', 'george', '||comma||', 'coffee', 'shop', 'george', '||comma||', 'liar', 'george', '||comma||', 'bawdy', 'george', '||period||', '||return||', '||return||', 'jerry:', 'i', '||comma||', 'i', 'love', 'that', 'george', '||period||', '||return||', '||return||', 'george:', 'me', 'too', '||exclammark||', 'and', "he's", 'dying', 'jerry', '||exclammark||', 'if', 'relationship', 'george', 'walks', 'through', 'this', 'door', '||comma||', 'he', 'will', 'kill', 'independent', 'george', '||exclammark||', 'a', 'george', '||comma||', 'divided', 'against', 'itself', '||comma||', 'cannot', 'stand', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'killing', 'independent', 'george', '||exclammark||', 'you', 'know', 'that', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'george', 'i', "don't", 'even', 'want', 'to', 'get', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'word', 'susan', 'used', 'last', 'night', '||questionmark||', 'hnuh', '||period||', 'vault', '||exclammark||', 'hu', '||comma||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'got', 'that', 'from', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'didnt', 'tell', 'here', 'to', 'say', 'it', '||period||', '||return||', '||return||', 'george:', 'is', 'she', 'the', 'only', 'girl', 'in', 'the', 'whole', 'world', '||questionmark||', 'why', "can't", 'you', 'get', 'find', 'your', 'own', 'girl', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'like', 'her', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'see', '||leftparen||', 'to', 'jerry', '||rightparen||', '||period||', 'you', 'see', '||period||', 'you', 'see', 'what', 'im', 'talking', 'about', '||period||', "it's", 'all', 'just', 'slipping', 'away', '||period||', 'and', "you're", 'letting', 'it', 'happen', '||period||', '||leftparen||', 'exits', '||dash||', '||dash||', 'slamming', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'to', 'catch', 'a', 'movie', 'later', '||questionmark||', '||return||', '||return||', 'elaine:', 'ahh', '||comma||', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'have', 'a', 'paper', 'though', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', 'and', 'dials', '||rightparen||', '||return||', '||return||', 'kramer:', 'hewwo', 'and', 'welcome', 'to', 'movie', 'phone', '||period||', 'brought', 'to', 'you', 'by', 'the', 'new', 'york', 'times', 'and', 'hot', '97', '||period||', 'coming', 'to', 'theaters', 'this', 'friday', '||period||', '||period||', '||period||', 'kevin', 'bacon', '||comma||', 'susan', 'sarandon', '||dash||', '||dash||', "you've", 'got', 'to', 'get', 'me', 'over', 'that', 'mountain', '||exclammark||', 'now', '||leftparen||', 'bang', '||comma||', 'bang', '||rightparen||', 'ahhhhhhhhhh', 'there', 'is', 'no', 'place', 'higher', 'than', '||period||', '||period||', '||period||', 'mountain', 'high', '||period||', 'rated', 'r', '||period||', 'if', 'you', 'know', 'the', 'name', 'of', 'the', 'movie', "you'd", 'like', 'to', 'see', '||comma||', 'press', '1', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'is', 'that', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'what', 'time', 'does', 'chow', 'fun', 'start', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'ramon:', 'well', '||comma||', 'well', '||period||', 'look', 'whos', 'here', '||period||', '||return||', '||return||', 'jerry:', 'ramon', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', 'you', 'could', 'get', 'in', 'trouble', '||period||', '||return||', '||return||', 'ramon:', 'no', '||comma||', 'i', "don't", 'think', 'so', 'jerry', '||period||', 'you', 'see', 'they', 'gave', 'me', 'my', 'job', 'back', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'ramon:', 'im', 'a', 'pool', 'boy', '||period||', '||period||', '||period||', 'again', '||period||', '||return||', '||return||', 'jerry:', 'look', 'ramon', '||comma||', 'about', 'the', 'other', 'day', '||period||', 'im', 'sorry', 'if', 'i', 'offended', 'you', '||period||', 'i', 'get', 'a', 'little', 'crabby', 'on', 'the', 'subway', '||period||', '||return||', '||return||', 'ramon:', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'all', 'the', 'towels', '||questionmark||', '||return||', '||return||', 'ramon:', 'oh', '||comma||', 'ah', '||comma||', 'i', 'guess', 'they', 'must', 'have', 'disappeared', '||period||', '||leftparen||', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'newman:', 'hey', 'jerry', '||period||', 'look', 'at', 'all', 'the', 'towels', 'they', 'gave', 'me', '||exclammark||', 'i', 'really', 'hit', 'the', 'jackpot', '||exclammark||', '||leftparen||', 'holding', 'a', 'large', 'stack', 'of', 'towels', '||comma||', 'newman', 'pats', 'his', 'face', 'with', 'the', 'top', 'one', '||rightparen||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||return||', '||return||', 'jerry:', "it's", 'been', 'a', 'terrible', 'situation', 'down', 'there', 'the', 'past', 'couple', 'of', 'days', '||period||', "he's", 'really', 'been', 'making', 'things', 'uncomfortable', 'for', 'me', '||period||', "there's", 'always', 'a', 'big', 'pile', 'of', 'dirty', 'towels', 'in', 'front', 'of', 'my', 'locker', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'and', 'then', 'when', 'i', 'come', 'out', 'of', 'the', 'pool', '||comma||', 'my', "towel's", 'always', 'gone', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||comma||', 'so', 'frustrating', '||exclammark||', '||return||', '||return||', 'jerry:', 'tell', 'me', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||comma||', 'so', 'you', 'want', 'to', 'join', 'me', 'and', 'susan', 'for', 'lunch', 'at', 'the', 'coffee', 'shop', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'meeting', 'susan', 'for', 'lunch', 'at', 'the', 'coffee', 'shop', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'im', 'meeting', 'george', 'for', 'lunch', 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'huh', '||period||', 'well', '||comma||', 'this', 'should', 'be', 'very', 'interesting', '||period||', '||return||', '||return||', 'susan:', 'hey', '||exclammark||', 'elaine', '||exclammark||', 'jerry', '||period||', 'over', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'there', 'they', 'are', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'look', 'who', 'i', 'ran', 'into', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||leftparen||', 'sits', 'down', 'next', 'to', 'susan', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'ahh', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'jerry', '||period||', "aren't", 'you', 'going', 'to', 'join', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'you', 'know', '||period||', 'im', 'supposed', 'to', 'meet', '||comma||', 'eh', '||comma||', 'someone', '||dash||', '||dash||', 'ill', '||comma||', 'ill', 'wait', 'for', 'them', 'outside', '||period||', '||leftparen||', 'walks', 'towards', 'the', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'wait', 'here', '||period||', 'come', 'on', '||comma||', 'sit', 'down', '||period||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'gonna', 'to', 'be', 'ugly', '||period||', '||leftparen||', 'quietly', '||rightparen||', '||return||', '||return||', 'susan:', "what's", 'that', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'coughing', '||rightparen||', 'i', 'said', '||comma||', 'boy', 'am', 'i', 'ugly', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'georgie', 'boy', '||comma||', 'over', 'here', '||period||', '||return||', '||return||', 'george:', 'one', '||comma||', 'two', '||period||', '||period||', '||period||', 'three', '||comma||', 'four', '||period||', '||return||', '||return||', 'george:', 'ha', 'ho', '||exclammark||', '||leftparen||', 'he', 'turns', 'and', 'walks', 'out', 'the', 'door', '||rightparen||', '||return||', '||return||', 'susan:', 'hey', 'george', '||exclammark||', '||return||', '||return||', 'jerry:', "we'll", 'pull', 'up', 'another', 'chair', '||period||', '||return||', '||return||', 'jerry:', 'i', 'see', 'you', 'there', 'ramon', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'lll', 'just', 'keep', 'swimming', '||period||', 'hey', '||comma||', 'hey', '||period||', 'im', 'not', 'done', '||period||', 'i', 'know', 'what', "you're", 'up', 'to', 'ramon', '||period||', 'because', 'im', 'a', 'member', 'here', '||comma||', 'this', 'is', 'my', 'place', 'to', 'swim', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'better', 'cut', 'it', 'out', 'ramon', '||period||', 'just', 'stop', 'it', '||period||', '||return||', '||return||', 'ramon:', 'oh', '||period||', '||return||', '||return||', 'newman:', 'olly', '||comma||', 'olly', '||comma||', 'oxen', '||comma||', 'free', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'no', '||exclammark||', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'think', "he's", 'gonna', 'need', '||comma||', 'mouth', '||dash||', 'to', '||dash||', 'mouth', 'resuscitation', '||period||', '||return||', '||return||', 'newman:', 'mouth', '||dash||', 'to', '||dash||', 'mouth', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'newman:', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'well', '||questionmark||', 'go', 'ahead', '||period||', '||return||', '||return||', 'newman:', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'you', 'knocked', 'him', 'out', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'but', 'you', 'pulled', 'him', 'in', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'newman', '||period||', 'do', 'it', '||period||', '||return||', '||return||', 'newman:', 'nah', '||period||', '||return||', '||return||', 'jerry:', 'he', 'might', 'die', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||period||', 'maybe', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'the', 'phone', 'to', '||rightparen||', 'look', 'jerry', '||comma||', "we'll", 'meet', 'you', 'at', 'the', 'theater', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', 'ok', '||comma||', 'next', 'showings', 'at', '900', '||comma||', 'we', "can't", 'wait', 'any', 'longer', '||period||', '||return||', '||return||', 'susan:', 'elaine', '||comma||', 'where', 'could', 'he', 'be', '||questionmark||', "it's", 'not', 'like', 'george', 'to', 'just', 'disappear', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', "let's", 'just', 'leave', 'him', 'a', 'note', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||comma||', 'come', 'on', '||comma||', 'come', 'on', '||period||', '||leftparen||', 'picks', 'up', 'pad', 'of', 'paper', 'and', 'writes', '||rightparen||', 'george', '||comma||', 'elaine', 'and', 'i', 'went', 'to', 'see', 'chunnel', '||period||', '||period||', '||period||', 'with', 'jerry', '||period||', 'love', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'love', '||period||', '||period||', '||period||', 'susan', '||period||', '||return||', '||return||', 'jerry:', 'so', 'eventually', 'these', 'people', 'came', 'and', '||comma||', 'somebody', '||comma||', 'gave', 'him', 'mouth', '||dash||', 'to', '||dash||', 'mouth', '||period||', '||return||', '||return||', 'elaine:', 'he', 'could', 'have', 'died', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'was', 'a', 'gamble', '||period||', '||return||', '||return||', 'susan:', 'why', 'didnt', 'you', 'give', 'him', 'mouth', '||dash||', 'to', '||dash||', 'mouth', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||leftparen||', 'makes', 'face', '||rightparen||', '||return||', '||return||', 'elaine:', 'how', 'can', 'you', 'possibly', 'show', 'your', 'face', 'there', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'i', "can't", '||period||', 'they', 'revoked', 'my', 'membership', '||period||', 'newman', 'too', '||period||', 'you', 'know', '||comma||', 'we', "can't", 'go', 'anywhere', 'near', 'there', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'ah', '||comma||', 'three', 'for', 'chunnel', '||dash||', '||dash||', 'two', 'adults', '||period||', '||period||', '||period||', 'one', 'child', '||period||', '||leftparen||', 'looking', 'towards', 'jerry', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', 'george', '||comma||', 'elaine', 'and', 'i', 'went', 'to', 'see', 'chunnel', '||period||', '||period||', '||period||', 'with', 'jerry', '||period||', 'with', 'jerry', '||comma||', 'huh', '||questionmark||', 'with', 'jerry', '||exclammark||', 'great', '||period||', 'great', '||exclammark||', '||leftparen||', 'dials', 'phone', '||rightparen||', 'probably', 'went', 'to', 'the', '84th', 'st', '||period||', "that's", 'where', 'i', 'always', 'go', 'with', 'jerry', '||period||', '||return||', '||return||', 'kramer:', 'hewwo', 'and', 'welcome', 'to', 'movie', 'phone', '||period||', 'if', 'you', 'know', 'the', 'name', 'of', 'the', 'movie', "you'd", 'like', 'to', 'see', '||comma||', 'press', 'one', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'kramer:', 'using', 'your', 'touch', '||dash||', 'tone', 'keypad', '||comma||', 'please', 'enter', 'the', 'first', 'three', 'letters', 'of', 'the', 'movie', 'title', '||comma||', 'now', '||period||', '||return||', '||return||', 'kramer:', "you've", 'selected', '||period||', '||period||', '||period||', 'agent', 'zero', '||questionmark||', 'if', "that's", 'correct', '||comma||', 'press', 'one', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', "you've", 'selected', '||period||', '||period||', '||period||', 'brown', '||dash||', 'eyed', 'girl', '||questionmark||', 'if', 'this', 'is', 'correct', '||comma||', 'press', 'one', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'just', 'tell', 'me', 'the', 'name', 'of', 'the', 'movie', "you've", 'selected', '||period||', '||return||', '||return||', 'george:', 'chunnel', '||questionmark||', '||return||', '||return||', 'kramer:', 'to', 'find', 'the', 'theater', 'nearest', 'you', '||comma||', 'please', 'enter', 'your', 'five', 'digit', 'zip', '||dash||', 'code', '||comma||', 'now', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'just', 'tell', 'me', 'where', 'you', 'want', 'to', 'see', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'george:', 'lowes', 'paragon', '||comma||', '84th', 'and', 'broadway', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'picks', 'up', 'paper', '||rightparen||', 'chunnel', '||comma||', 'is', 'playing', 'at', 'the', 'paragon', '84th', 'street', 'cinema', 'in', 'the', 'main', 'theater', 'at', '930', 'pm', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'now', 'i', 'gotcha', '||exclammark||', '||leftparen||', 'hangs', 'up', 'the', 'phone', 'and', 'rushes', 'out', 'the', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', "it's", 'also', 'playing', 'in', 'theater', 'number', 'two', 'at', '900', '||period||', '||return||', '||return||', 'george:', 'jerry', '||period||', '||period||', '||period||', 'where', 'are', 'you', '||questionmark||', 'i', 'know', 'you', 'like', 'to', 'sit', 'back', 'here', '||period||', 'elaine', '||exclammark||', 'susan', '||exclammark||', '||return||', '||return||', 'movie', 'patron:', 'shh', '||exclammark||', '||return||', '||return||', '||leftparen||', 'from', 'the', 'movie', 'we', 'hear', 'this', 'dialogue:', 'the', 'english', 'channel', 'tunnel', '||comma||', 'chunnel', '||comma||', 'runs', '32', '||period||', '3', 'miles', '||comma||', 'with', 'two', 'openings', '||period||', 'one', 'here', '||comma||', 'in', 'england', 'and', 'another', 'one', 'here', '||comma||', 'in', 'france', '||period||', "that's", 'all', 'we', 'got', '||period||', 'thank', 'you', 'for', 'your', 'time', 'gentlemen', '||period||', 'can', 'i', 'ask', 'you', 'a', 'question', 'mr', '||period||', 'mckittrick', '||period||', '||dash||', '||dash||', "it's", 'a', 'bit', 'hard', 'to', 'hear', 'the', 'movie', 'dialogue', '||comma||', 'as', 'we', 'are', 'supposed', 'to', 'be', 'focused', 'on', 'george', '||comma||', 'but', 'i', 'was', 'able', 'to', 'make', 'out', 'most', 'of', 'it', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', "can't", 'figure', 'out', "what's", 'going', 'on', 'here', '||period||', 'i', "can't", 'follow', 'the', 'plot', '||period||', 'why', 'did', 'they', 'kill', 'that', 'guy', '||questionmark||', 'i', 'thought', 'he', 'was', 'with', 'them', '||questionmark||', '||return||', '||return||', 'susan:', 'no', '||comma||', 'no', '||period||', "that's", 'not', 'the', 'guy', '||period||', "that's", 'a', 'different', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'he', 'doing', 'in', 'the', 'chunnel', '||questionmark||', '||return||', '||return||', 'susan:', 'would', 'you', 'two', '||comma||', 'please', '||questionmark||', '||return||', '||return||', '||leftparen||', 'again', '||comma||', 'from', 'the', 'movie', 'we', 'hear', 'this', 'dialogue:', 'let', 'me', 'tell', 'you', 'something', 'about', 'the', 'chunnel', '||comma||', 'mr', '||period||', 'thane', '||period||', 'that', 'our', 'only', 'freeway', 'is', 'adept', '||period||', '||leftparen||', 'inaudible', '||rightparen||', 'elaine', 'brookstone', 'will', 'get', 'the', 'money', 'bag', '||leftparen||', 'inaudible', '||rightparen||', 'not', 'as', 'long', 'as', 'i', 'have', 'these', 'long', 'stickers', '||period||', 'find', 'him', 'and', 'kill', 'him', '||exclammark||', 'i', "don't", 'care', 'if', 'we', 'have', 'to', 'turn', 'this', 'chunnel', 'upside', 'down', '||exclammark||', 'find', 'him', '||exclammark||', 'everybody', 'out', 'of', 'the', 'chunnel', '||exclammark||', 'everybody', 'out', '||exclammark||', 'the', 'chunnels', 'gonna', 'blow', '||exclammark||', 'ahhhhhh', '||leftparen||', 'explosion', '||rightparen||', '||return||', '||return||', 'george:', 'susan', '||exclammark||', 'jerry', '||exclammark||', 'where', 'are', 'you', '||questionmark||', 'i', 'know', "you're", 'there', '||exclammark||', 'answer', 'me', '||exclammark||', '||return||', '||return||', 'movie', 'patron:', '||leftparen||', 'hey', '||comma||', 'sit', 'down', '||exclammark||', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||period||', 'hey', '||period||', 'answer', 'me', '||exclammark||', 'come', 'on', '||comma||', 'show', 'yourselves', '||exclammark||', '||return||', '||return||', 'movie', 'patron:', '||leftparen||', 'hey', '||comma||', "we're", 'trying', 'to', 'watch', 'a', 'movie', 'here', '||exclammark||', '||rightparen||', '||return||', '||return||', 'george:', 'drink', 'your', 'soda', '||exclammark||', 'come', 'on', '||exclammark||', 'i', 'know', "you're", 'there', '||comma||', 'laughing', 'at', 'me', '||period||', 'laughing', 'and', 'lying', 'and', 'laughing', '||exclammark||', 'i', 'had', 'to', 'go', 'to', 'reggies', '||comma||', 'jerry', '||exclammark||', 'reggies', '||exclammark||', '||return||', '||return||', 'movie', 'patron:', '||leftparen||', 'move', 'it', 'off', 'of', 'there', '||exclammark||', '||rightparen||', '||return||', '||return||', 'george:', 'where', 'are', 'you', '||exclammark||', '||return||', '||return||', '2nd', 'movie', 'patron:', '||leftparen||', 'hey', 'are', 'you', 'sure', 'you', 'got', 'the', 'right', 'theater', '||questionmark||', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'chunnel', '||period||', 'susan', '||exclammark||', '||return||', '||return||', '2nd', 'movie', 'patron:', '||leftparen||', "it's", 'playing', 'in', 'two', 'theaters', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'two', 'theaters', '||questionmark||', '||return||', '||return||', '2nd', 'movie', 'patron:', '||leftparen||', 'yeah', '||comma||', "there's", 'a', '900', 'too', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||period||', 'sorry', '||period||', '||return||', '||return||', '||leftparen||', 'once', 'again', '||comma||', 'from', 'the', 'movie', 'we', 'hear', 'this', 'dialogue:', "there's", 'something', 'else', '||comma||', 'your', 'ex', '||dash||', 'wife', '||period||', 'alexandra', '||questionmark||', "she's", 'in', 'france', '||comma||', 'im', 'telling', 'ya', '||period||', 'no', '||comma||', "she's", 'in', 'the', 'chunnel', '||period||', 'the', 'chunnel', '||questionmark||', 'no', '||exclammark||', 'mr', '||period||', 'president', '||comma||', 'im', 'sorry', 'to', 'disturb', 'you', '||period||', 'what', 'is', 'it', '||questionmark||', "there's", 'something', 'about', 'the', 'chunnel', '||period||', 'oh', '||questionmark||', '||leftparen||', 'inaudible', '||rightparen||', 'and', 'that', 'means', 'your', 'daughter', 'is', 'in', 'the', 'chunnel', '||period||', 'somewhere', 'between', 'france', 'and', '||period||', '||period||', '||period||', '||leftparen||', 'inaudible', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'that', 'was', 'pretty', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'whad', 'you', 'think', 'susan', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'i', "don't", 'know', '||period||', 'i', "couldn't", 'hear', 'anything', '||period||', 'you', '||comma||', 'you', 'talked', 'the', 'whole', 'movie', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', 'come', 'on', '||period||', 'you', 'want', 'to', 'go', 'grab', 'a', 'bite', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'susan:', 'ah', '||comma||', 'no', '||period||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'susan:', 'well', 'you', 'know', '||comma||', 'all', 'you', 'guys', 'ever', 'do', 'is', 'sit', 'around', 'the', 'coffee', 'shop', 'talking', '||comma||', 'sit', 'around', "jerry's", 'apartment', 'talking', '||period||', 'frankly', '||comma||', 'i', "don't", 'know', 'how', 'you', 'can', 'stand', 'it', '||period||', 'ill', 'see', 'you', '||period||', '||return||', '||return||', 'george:', 'i', 'know', "they're", 'in', 'there', '||comma||', 'the', 'three', 'of', 'them', '||comma||', 'laughing', 'at', 'me', '||period||', 'together', '||comma||', 'laughing', 'and', 'lying', '||period||', '||return||', '||return||', 'usher:', "let's", 'go', 'pal', '||period||', '||return||', '||return||', 'george:', "they're", '||dash||', '||dash||', "they're", 'killing', 'independent', 'george', '||exclammark||', 'and', "they're", '||comma||', "they're", 'all', 'in', 'on', 'it', '||exclammark||', "world's", 'are', 'colliding', '||exclammark||', '||return||', '||return||', '[outside', 'kramer\x92s', 'apartment', 'door:', '5b', 'a', 'partial', 'view', 'of', 'a', "man's", 'face', 'and', 'his', 'hand', 'knocks', '3', 'times', 'on', 'the', 'door', '||period||', ']', '||return||', '||return||', 'movie', 'phone', 'guy:', 'hello', '||comma||', 'and', 'welcome', 'to', 'your', 'worst', 'nightmare', '||period||', '||return||', '||return||', 'movie', 'phone', 'guy:', '||leftparen||', 'cont', '||rightparen||', 'i', 'know', 'your', 'in', 'there', '||comma||', 'cosmo', 'kramer', '||comma||', 'apartment', '5b', '||period||', "you're", 'in', 'big', 'trouble', '||comma||', 'now', '||period||', "you've", 'been', 'sealing', 'my', 'business', '||period||', 'if', "you'd", 'like', 'to', 'do', 'this', 'the', 'easy', 'way', '||comma||', 'open', 'the', 'door', '||comma||', 'now', '||period||', 'or', '||comma||', 'please', 'select', 'the', 'number', 'of', 'seconds', '||comma||', "you'd", 'like', 'to', 'wait', '||comma||', 'before', 'i', 'break', 'this', 'door', 'down', '||period||', 'please', 'select', 'now', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'boys', 'and', 'girls', '||period||', 'i', 'need', 'you', 'both', 'to', 'sponsor', 'me', 'in', 'the', 'aids', 'walk', '||period||', '||return||', '||return||', 'elaine:', 'is', 'that', 'tomorrow', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'so', '||period||', '||period||', '||period||', 'git', '||dash||', 'git', '||period||', '||period||', '||period||', '||leftparen||', 'gestures', 'to', 'elaine', 'to', 'sign', 'the', 'form', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'signing', '||rightparen||', ':', 'well', '||comma||', 'i', 'admire', 'you', 'for', 'joining', 'the', 'fight', 'against', 'aids', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'if', 'i', "didn't", 'do', 'something', 'i', "wouldn't", 'be', 'able', 'to', 'live', 'with', 'myself', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'signing', '||rightparen||', ':', "it's", 'hard', 'enough', 'living', 'next', 'door', '||period||', '||return||', '||return||', 'kramer:', 'i', 'tell', 'ya', '||comma||', "there's", 'some', 'people', '||comma||', 'they', 'just', 'wear', 'a', 'ribbon', 'and', 'they', 'think', "they're", "doin'", 'something', '||questionmark||', 'not', 'me', '||period||', 'i', 'talk', 'the', 'talk', '||comma||', 'and', 'i', 'walk', 'the', 'walk', '||comma||', 'baby', '||period||', '||leftparen||', 'gets', 'up', '||rightparen||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'elaine:', 'new', 'jeans', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'still', 'a', '31', 'waist', '||questionmark||', '||return||', '||return||', 'jerry:', 'yep', '||period||', 'since', 'college', '||period||', '||leftparen||', 'looks', 'at', "kramer's", 'aids', 'walk', 'list', '||period||', '||rightparen||', 'hey', '||comma||', 'lena', "small's", 'on', 'this', 'list', '||period||', '||return||', '||return||', 'elaine:', 'lena', 'small', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'that', 'girl', 'i', 'was', 'gonna', 'call', 'for', 'a', 'date', '||comma||', 'she', 'was', 'unlisted', '||period||', '||period||', '||period||', 'and', 'now', "here's", 'her', 'number', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "you're", 'not', 'gonna', 'cop', 'a', "girl's", 'phone', 'number', 'off', 'an', 'aids', 'charity', 'list', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'copying', 'down', 'the', 'number', '||rightparen||', ':', 'elaine', '||comma||', 'you', 'should', 'admire', 'me', '||period||', '||period||', '||period||', "i'm", 'aspiring', 'to', 'date', 'a', 'giving', 'person', '||period||', '||return||', '||return||', 'elaine:', "you're", 'a', 'taking', 'person', '||period||', '||return||', '||return||', 'jerry:', "that's", 'why', 'i', 'should', 'date', 'a', 'giving', 'person', '||period||', 'if', 'i', 'date', 'a', 'taking', 'person', '||comma||', "everyone's", 'taking', '||comma||', 'taking', '||comma||', 'taking', '||comma||', 'no', "one's", 'giving', '||dash||', "it's", 'bedlam', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'warns', '||rightparen||', ':', "she's", 'gonna', 'ask', 'how', 'you', 'got', 'her', 'number', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'll", 'tell', 'her', 'i', 'met', 'some', 'guy', 'who', 'knew', 'her', 'and', 'he', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', "what's", 'he', 'look', 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'really', "didn't", 'pay', 'much', 'attention', '||comma||', "i'd", 'just', 'come', 'from', 'buying', 'a', 'speedboat', '||period||', '||return||', '||return||', 'elaine:', "you're", 'buying', 'a', 'speedboat', '||questionmark||', '||return||', '||return||', 'jerry:', 'see', '||comma||', "we're", 'already', 'off', 'the', 'subject', 'of', 'how', 'i', 'got', 'her', 'number', '||period||', '||leftparen||', 'elaine', 'laughs', '||period||', '||rightparen||', 'all', 'i', 'gotta', 'do', 'is', 'get', 'past', 'the', 'first', 'phone', 'call', 'and', "i'm", 'home', 'free', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'so', 'if', 'billy', 'had', 'gotten', 'your', 'number', 'off', 'the', 'aids', 'walk', 'list', '||comma||', 'you', "wouldn't", 'have', 'gone', 'out', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'so', 'you', 'really', 'like', 'this', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'very', 'much', '||period||', '||return||', '||return||', 'jerry:', "how's", 'the', '||period||', '||period||', '||period||', 'sexual', 'chemistry', '||questionmark||', '||return||', '||return||', 'elaine:', "haven't", 'been', 'in', 'the', 'lab', 'yet', '||period||', 'but', 'i', 'am', 'birth', 'control', 'shopping', 'today', '||period||', '||leftparen||', 'kramer', 'overhears', 'as', 'he', 'returns', 'to', 'the', 'booth', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'are', 'you', 'still', 'on', 'the', 'pill', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'ya', '||comma||', 'i', 'think', 'birth', 'control', 'should', 'be', 'discussed', 'in', 'an', 'open', 'forum', '||period||', '||return||', '||return||', 'elaine:', 'the', 'sponge', '||comma||', 'o', '||period||', 'k', '||period||', '||questionmark||', 'the', 'today', 'sponge', '||period||', '||return||', '||return||', 'kramer:', 'but', "wasn't", 'that', 'taken', 'off', 'the', 'market', '||questionmark||', '||return||', '||return||', 'elaine:', 'off', 'the', 'market', '||questionmark||', 'the', 'sponge', '||questionmark||', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'no', 'way', '||period||', 'everybody', 'loves', 'the', 'sponge', '||period||', '||return||', '||return||', 'kramer:', 'i', 'read', 'it', 'in', 'wall', 'street', 'week', '||period||', '||period||', '||period||', 'louis', '||comma||', 'uh', '||comma||', 'rukeyser', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'lena', '||questionmark||', 'hi', '||comma||', "it's", 'jerry', 'seinfeld', '||period||', 'how', 'did', 'i', 'get', 'your', 'number', '||questionmark||', 'i', 'met', 'a', 'guy', 'that', 'knows', 'you', '||comma||', 'he', 'gave', 'it', 'to', 'me', '||period||', '||period||', '||period||', 'i', "don't", 'remember', 'his', 'name', '||period||', 'think', 'it', 'began', 'with', 'a', 'w', '||comma||', 'maybe', 'a', 'q', '||period||', 'i', "wasn't", 'paying', 'that', 'much', 'attention', '||comma||', "i'd", 'just', 'come', 'from', 'shopping', 'for', 'a', 'speedboat', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'you', 'know', '||comma||', 'i', 'really', 'like', 'those', 'new', 'jeans', 'jerry', 'was', 'wearing', '||period||', "he's", 'really', 'thin', '||period||', '||return||', '||return||', 'george:', 'not', 'as', 'thin', 'as', 'you', 'think', '||period||', '||return||', '||return||', 'susan:', 'why', '||questionmark||', "he's", 'a', '31', '||period||', 'i', 'saw', 'the', 'tag', 'on', 'the', 'back', '||period||', '||return||', '||return||', 'george:', 'the', 'tag', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'susan:', 'mmm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', 'let', 'me', 'tell', 'you', 'something', 'about', 'that', 'tag', '||period||', "it's", 'no', '31', '||comma||', 'and', 'uh', '||period||', '||period||', '||period||', "let's", 'just', 'leave', 'it', 'at', 'that', '||period||', '||return||', '||return||', 'susan:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'scratches', 'off', 'a', '32', 'and', 'he', 'puts', 'in', '31', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'how', 'could', 'he', 'be', 'so', 'vain', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'this', 'is', 'the', 'jerry', 'seinfeld', 'that', 'only', 'i', 'know', '||period||', 'i', "can't", 'believe', 'i', 'just', 'told', 'you', 'that', '||period||', '||return||', '||return||', 'susan', '||leftparen||', 'laughing', '||rightparen||', ':', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'jerry', "doesn't", 'want', 'anyone', 'to', 'know', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', "it's", 'alright', '||comma||', "i'm", 'your', 'fiance', '||period||', 'everyone', 'assumes', "you'll", 'tell', 'me', 'everything', '||period||', '||return||', '||return||', 'george:', 'where', 'did', 'you', 'get', 'that', 'from', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', "we're", 'a', 'couple', '||period||', "it's", 'understood', '||period||', '||return||', '||return||', 'george:', 'i', 'never', 'heard', 'of', 'that', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', "you've", 'never', 'been', 'a', 'couple', '||period||', '||return||', '||return||', 'george:', "i've", 'coupled', '||exclammark||', "i've", 'coupled', '||exclammark||', '||return||', '||return||', 'susan:', 'keeping', 'secrets', '||exclammark||', 'this', 'is', 'just', 'like', 'your', 'secret', 'bank', 'code', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'totally', 'different', '||exclammark||', 'that', 'was', 'my', 'secret', '||comma||', 'this', 'is', "jerry's", 'secret', '||exclammark||', "there's", '||period||', '||period||', '||period||', "there's", 'attorney', '||dash||', 'client', 'priveleges', 'here', '||exclammark||', 'if', 'i', 'play', 'it', 'by', 'your', 'rule', '||comma||', 'no', "one'll", 'ever', 'confide', 'in', 'me', 'again', '||comma||', "i'll", 'be', 'cut', 'out', 'of', 'the', 'loop', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'had', 'a', 'fight', 'with', 'susan', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', '||leftparen||', 'is', 'about', 'to', 'tell', 'jerry', '||comma||', 'but', 'reconsiders', '||rightparen||', '||period||', '||period||', '||period||', 'clothing', '||comma||', 'something', '||comma||', 'i', 'dunno', '||period||', 'so', '||comma||', 'uh', '||comma||', 'what', 'are', 'you', 'doing', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'a', 'date', 'with', 'that', 'girl', '||comma||', 'lena', '||period||', '||return||', '||return||', 'george:', 'lena', '||comma||', "how'd", 'you', 'meet', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'actually', 'met', 'her', 'a', 'few', 'weeks', 'ago', '||comma||', 'but', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'stops', '||comma||', 'and', 'mentally', 'visualizes', 'george', 'telling', 'susan', 'about', 'how', 'jerry', 'got', "lena's", 'number', 'from', 'the', 'aids', 'list', '||period||', '||period||', '||period||', 'then', 'susan', 'passing', 'the', 'information', 'along', 'to', 'monica', 'on', 'the', 'phone', 'at', 'work', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'met', 'her', 'a', 'few', 'weeks', 'ago', '||comma||', 'but', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'slowly', '||rightparen||', ':', 'i', "didn't", 'call', 'her', 'till', 'today', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'uh', '||period||', '||period||', '||period||', 'wanna', 'double', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'just', 'had', 'a', 'fight', '||dash||', 'i', 'need', 'a', 'group', 'dynamic', '||period||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', '||leftparen||', 'elaine', 'enters', '||period||', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'kramer', 'was', 'right', '||period||', 'my', 'friend', 'kim', 'told', 'me', 'the', 'sponge', 'is', 'off', 'the', 'market', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'tell', 'you', 'what', "i'm", 'gonna', 'do', '||dash||', "i'm", 'gonna', 'do', 'a', 'hard', '||dash||', 'target', 'search', '||period||', 'of', 'every', 'drug', 'store', '||comma||', 'general', 'store', '||comma||', 'health', 'store', 'and', 'grocery', 'store', 'in', 'a', '25', '||dash||', 'block', 'radius', '||period||', '||return||', '||return||', 'george:', 'just', 'for', 'these', 'sponges', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', 'man', '||comma||', 'women', 'are', 'really', 'loyal', 'to', 'their', 'birth', 'control', 'methods', '||period||', 'what', 'does', 'susan', 'use', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dunno', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'know', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', 'figure', "it's", 'something', '||period||', '||leftparen||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'all', 'out', 'of', 'breath', 'from', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'panting', '||rightparen||', ':', 'the', 'elevator', 'just', 'broke', '||period||', 'i', 'had', 'to', 'walk', 'up', 'five', 'flights', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'got', 'the', 'aids', 'walk', 'tomorrow', '||period||', "you're", 'never', 'gonna', 'make', 'it', '||comma||', "you're", 'in', 'horrible', 'shape', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'm", 'in', 'tip', '||dash||', 'top', 'shape', '||period||', 'better', 'than', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'a', '31', 'waist', '||comma||', 'mister', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', "i'm", 'walking', 'for', 'charity', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'proudly', '||rightparen||', ':', 'what', 'am', 'i', 'doing', '||questionmark||', "i'm", '||period||', '||period||', '||period||', 'dating', 'a', 'woman', 'who', 'happens', 'to', 'be', 'sponsoring', 'one', 'of', 'these', 'walkers', '||period||', '||return||', '||return||', 'pharmacist:', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'with', 'little', 'hope', '||rightparen||', ':', 'yeah', '||comma||', 'do', 'you', 'have', 'any', 'today', 'sponges', '||questionmark||', 'i', 'know', "they're", 'off', 'the', 'market', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'pharmacist:', 'actually', '||comma||', 'we', 'have', 'a', 'case', 'left', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'excited', '||rightparen||', ':', 'a', 'case', '||exclammark||', 'a', 'case', 'of', 'sponges', '||questionmark||', 'i', 'mean', '||comma||', 'uh', '||period||', '||period||', '||period||', 'a', 'case', '||period||', 'huh', '||period||', 'uh', '||period||', '||period||', '||period||', 'how', 'many', 'come', 'in', 'a', 'case', '||questionmark||', '||return||', '||return||', 'pharmacist:', 'sixty', '||period||', '||return||', '||return||', 'elaine:', 'sixty', '||questionmark||', '||exclammark||', 'uh', '||period||', '||period||', '||period||', 'well', '||comma||', "i'll", 'take', 'three', '||period||', '||return||', '||return||', 'pharmacist:', 'three', '||period||', '||return||', '||return||', 'elaine:', 'make', 'it', 'ten', '||period||', '||return||', '||return||', 'pharmacist:', 'ten', '||questionmark||', '||return||', '||return||', 'elaine:', 'twenty', 'sponges', 'should', 'be', 'plenty', '||period||', '||return||', '||return||', 'pharmacist:', 'did', 'you', 'say', 'twenty', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'twenty', '||dash||', 'five', 'sponges', 'is', 'just', 'fine', '||period||', '||return||', '||return||', 'pharmacist:', 'right', '||period||', 'so', '||comma||', "you're", 'set', 'with', 'twenty', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'just', 'give', 'me', 'the', 'whole', 'case', 'and', "i'll", 'be', 'on', 'my', 'way', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'have', 'found', 'the', 'best', '||dash||', 'smelling', 'detergent', '||period||', 'lena', '||comma||', 'smell', 'my', 'shirt', '||period||', '||return||', '||return||', 'lena', '||leftparen||', 'smells', "jerry's", 'arm', '||rightparen||', ':', 'mmm', '||exclammark||', 'very', 'nice', '||period||', '||return||', '||return||', 'jerry:', "it's", 'all', '||dash||', 'tempa', '||dash||', 'cheer', '||period||', '||return||', '||return||', 'lena:', 'i', 'use', 'planet', '||period||', "it's", 'bio', '||dash||', 'degradable', 'and', "doesn't", 'pollute', 'the', 'oceans', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'the', 'oceans', 'really', 'are', 'getting', 'very', 'sudsy', '||period||', '||return||', '||return||', 'lena', '||leftparen||', 'to', 'waiter', '||rightparen||', ':', 'can', 'you', 'wrap', 'up', 'all', 'the', 'left', '||dash||', 'overs', 'on', 'the', 'table', '||comma||', 'please', '||questionmark||', 'i', 'always', 'take', 'the', 'left', '||dash||', 'overs', '||period||', 'i', 'work', 'in', 'a', 'soup', 'kitchen', 'every', 'morning', 'at', '6', 'a', '||period||', 'm', '||period||', '||return||', '||return||', 'jerry:', 'they', 'serve', 'soup', 'at', '6', 'a', '||period||', 'm', '||period||', '||questionmark||', '||return||', '||return||', 'lena:', 'yeah', '||period||', "that's", 'all', 'they', 'have', '||period||', '||return||', '||return||', 'jerry:', 'do', 'the', 'bums', 'ever', 'complain', '||questionmark||', '||quotemark||', 'soup', 'again', '||questionmark||', '||quotemark||', '||return||', '||return||', 'george:', "i'd", 'get', 'tired', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'not', '||questionmark||', '||return||', '||return||', 'lena:', 'guess', 'who', 'volunteered', 'last', 'week', '||questionmark||', '||return||', '||return||', 'george:', 'mick', 'jagger', '||period||', '||return||', '||return||', 'lena:', 'no', '||period||', 'maya', 'angelou', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'the', 'poet', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'lena', '||rightparen||', ':', 'so', '||comma||', 'let', 'me', 'ask', 'you', 'something', '||dash||', 'these', 'people', 'eat', 'soup', 'three', 'times', 'a', 'day', '||questionmark||', '||return||', '||return||', 'lena:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'susan', '||leftparen||', 'to', 'lena', '||rightparen||', ':', 'so', '||comma||', 'did', 'you', 'get', 'to', 'talk', 'to', 'her', '||questionmark||', '||return||', '||return||', 'lena:', 'talk', 'to', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'it', 'a', 'lot', 'of', 'cream', 'soups', '||questionmark||', '||return||', '||return||', 'susan:', 'maya', 'angelou', '||comma||', 'the', 'poet', '||period||', '||return||', '||return||', 'lena:', 'no', '||comma||', 'i', "didn't", 'get', 'the', 'chance', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'well', '||comma||', "i'm", 'sure', 'you', 'can', 'reach', 'her', '||period||', '||period||', '||period||', "she's", 'a', 'poet', '||period||', 'what', 'does', 'a', 'poet', 'need', 'an', 'unlisted', 'number', 'for', '||questionmark||', '||return||', '||return||', 'susan:', "i'm", 'going', 'to', 'the', 'ladies', 'room', '||period||', '||return||', '||return||', 'lena:', "i'll", 'go', 'with', 'you', '||period||', '||leftparen||', 'they', 'leave', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'looking', 'at', 'me', 'like', 'that', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'have', 'to', 'mention', "'unlisted", "number'", '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'i', 'gotta', 'tell', 'you', 'something', '||comma||', 'but', 'you', 'cannot', 'tell', 'susan', '||period||', '||return||', '||return||', 'susan:', 'jerry', 'got', 'her', 'phone', 'number', 'off', 'of', 'an', 'aids', 'walk', 'list', '||questionmark||', 'oh', '||comma||', "that's", 'awful', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'but', "don't", 'say', 'anything', 'to', 'anyone', '||period||', 'he', 'told', 'me', 'not', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'susan:', 'but', 'you', 'told', 'me', 'anyway', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'was', 'thinking', 'about', 'what', 'you', 'said', 'before', '||comma||', 'and', '||period||', '||period||', '||period||', "you're", 'right', '||comma||', "i've", 'never', 'really', 'been', 'a', 'couple', '||comma||', 'so', '||period||', '||period||', '||period||', 'if', "that's", 'the', 'rule', '||comma||', 'then', "i'm", 'gonna', 'go', 'by', 'the', 'rule', '||period||', '||return||', '||return||', 'susan:', 'thank', 'you', '||comma||', 'honey', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'wanna', 'go', 'home', 'and', '||period||', '||period||', '||period||', 'make', 'up', '||comma||', 'officially', '||questionmark||', '||return||', '||return||', 'susan:', 'can', 'we', 'stop', 'by', 'a', 'drug', 'store', 'first', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'susan:', "i'm", 'out', 'of', 'birth', 'control', 'stuff', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'o', '||period||', 'k', '||period||', '||comma||', 'yeah', '||period||', 'where', 'am', 'i', 'gonna', 'park', 'here', '||period||', '||period||', '||period||', '||questionmark||', '||leftparen||', 'pulls', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'susan:', 'oh', '||comma||', "don't", 'park', '||period||', "i'll", 'just', 'sit', 'in', 'the', 'car', '||comma||', 'you', 'can', 'run', 'in', '||period||', '||return||', '||return||', 'george:', 'me', 'run', 'in', '||questionmark||', 'why', "don't", 'you', 'run', 'in', '||questionmark||', '||return||', '||return||', 'susan:', 'you', "don't", 'know', 'what', 'i', 'use', 'for', 'birth', 'control', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', 'i', 'do', '||period||', '||return||', '||return||', 'susan:', 'you', 'do', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||period||', 'you', 'use', 'the', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'mutters', 'something', 'unintelligible', 'under', 'his', 'breath', '||period||', '||rightparen||', '||return||', '||return||', 'susan:', 'the', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'the', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'mutters', 'it', 'again', '||period||', '||rightparen||', '||return||', '||return||', 'susan:', 'just', 'get', 'me', 'some', 'sponges', '||comma||', 'please', '||period||', '||return||', '||return||', 'george:', 'wait', '||comma||', 'wait', 'a', 'minute', '||period||', '||period||', '||period||', 'they', "don't", 'have', 'them', 'anymore', '||period||', 'i', 'just', 'found', 'out', '||comma||', 'they', 'just', 'took', 'them', 'off', 'the', 'market', '||period||', '||return||', '||return||', 'susan:', 'off', 'the', 'market', '||questionmark||', 'the', 'sponge', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'so', 'you', 'gotta', 'use', 'something', 'else', '||period||', '||return||', '||return||', 'susan:', 'i', "can't", '||exclammark||', 'i', 'love', 'the', 'sponge', '||exclammark||', 'i', 'need', 'the', 'sponge', '||exclammark||', '||return||', '||return||', 'george:', 'o', '||period||', 'k', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'thinks', '||rightparen||', 'i', 'think', 'i', 'know', 'where', 'we', 'can', 'get', 'one', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'what', 'the', 'hell', 'is', 'going', 'on', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', 'poker', 'game', '||period||', '||period||', '||period||', '||leftparen||', 'yells', 'to', 'the', 'crowd', '||rightparen||', 'and', "i'm", "kickin'", 'some', 'serious', 'butt', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', 'you', 'got', 'the', 'aids', 'walk', 'tomorrow', '||exclammark||', '||return||', '||return||', 'voice', 'from', 'poker', 'game:', 'hey', '||comma||', 'kramer', '||dash||', 'are', 'you', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'gotta', 'be', "kiddin'", '||exclammark||', 'you', 'see', 'those', 'two', 'ladies', 'i', 'got', "showin'", '||questionmark||', 'do', 'they', 'look', 'scared', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'never', 'gonna', 'make', 'it', '||exclammark||', '||return||', '||return||', 'billy:', 'you', '||comma||', 'uh', '||period||', '||period||', '||period||', 'you', 'wanna', 'go', 'in', 'the', 'bedroom', '||questionmark||', '||return||', '||return||', 'elaine:', 'o', '||period||', 'k', '||period||', 'hold', 'on', 'just', 'a', 'second', '||period||', '||leftparen||', 'gets', 'up', 'and', 'heads', 'to', 'the', 'bathroom', '||period||', 'george', 'knocks', 'at', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'elaine', '||questionmark||', "it's", 'me', '||comma||', 'george', '||period||', '||leftparen||', 'elaine', 'opens', 'the', 'door', '||period||', '||rightparen||', 'hey', '||comma||', 'sorry', 'to', 'bother', 'you', 'so', 'late', '||period||', '||leftparen||', 'to', 'billy', '||rightparen||', 'hey', '||exclammark||', 'how', 'ya', 'doin', '||period||', "'", '||leftparen||', 'to', 'elaine', '||rightparen||', 'uh', '||comma||', 'did', 'you', 'get', 'any', 'of', 'those', 'sponges', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'cleaned', 'out', 'the', 'whole', 'west', 'side', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', 'susan', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'susan', 'uses', 'the', 'sponge', '||period||', '||return||', '||return||', 'george:', 'susan', 'loves', 'the', 'sponge', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'm", 'sorry', '||comma||', 'george', '||period||', 'i', "can't", 'help', 'you', 'out', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'do', 'it', '||period||', 'no', 'way', '||comma||', "there's", 'no', 'how', '||period||', '||leftparen||', 'tries', 'to', 'push', 'george', 'out', 'the', 'door', '||period||', 'george', 'resists', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'elaine', '||period||', '||period||', '||period||', 'let', 'me', 'just', 'explain', 'something', 'to', 'you', '||period||', 'see', '||comma||', 'this', 'is', 'not', 'just', 'a', 'weekend', 'routine', '||period||', '||period||', '||period||', "i'm", 'on', 'the', 'verge', 'of', 'make', '||dash||', 'up', 'sex', 'here', '||period||', 'you', 'know', 'about', 'make', '||dash||', 'up', 'sex', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'i', 'know', 'all', 'about', 'make', '||dash||', 'up', 'sex', '||comma||', 'and', "i'm", 'really', 'sorry', '||period||', '||leftparen||', 'shoves', 'george', 'into', 'the', 'hallway', 'and', 'closes', 'the', 'door', '||period||', 'george', 'blocks', 'the', 'door', 'with', 'his', 'foot', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'can', 'i', 'just', 'explain', 'something', 'to', 'you', 'very', 'privately', 'here', '||questionmark||', 'susan', 'and', 'i', 'have', 'been', 'together', 'many', '||comma||', 'many', 'times', 'now', '||comma||', 'and', 'just', 'between', 'you', 'and', 'me', '||comma||', "there's", 'really', 'no', 'big', 'surprises', 'here', '||comma||', 'so', '||period||', '||period||', '||period||', 'make', '||dash||', 'up', 'sex', 'is', 'all', 'that', 'i', 'have', 'left', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sure', "you'll", 'have', 'another', 'fight', '||comma||', 'george', '||period||', '||leftparen||', 'stamps', 'on', "george's", 'foot', 'and', 'closes', 'the', 'door', '||period||', '||rightparen||', '||leftparen||', 'to', 'billy', '||rightparen||', 'hold', 'that', 'thought', '||exclammark||', '||return||', '||return||', 'susan:', 'so', '||comma||', 'listen', 'to', 'this', '||period||', 'but', "don't", 'tell', 'anyone', '||dash||', 'jerry', 'seinfeld', '||questionmark||', 'he', 'got', 'a', "woman's", 'number', 'off', 'an', 'aids', 'walk', 'list', '||period||', '||return||', '||return||', 'monica:', 'he', 'got', 'her', 'number', 'off', 'an', 'aids', 'walk', 'list', '||questionmark||', '||return||', '||return||', 'lena:', 'he', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "how'd", 'you', 'find', 'out', '||questionmark||', '||return||', '||return||', 'lena:', 'a', 'friend', 'of', 'a', 'friend', 'of', 'a', 'friend', 'of', "susan's", '||period||', '||return||', '||return||', 'jerry:', 'george', '||exclammark||', '||return||', '||return||', 'lena:', 'pardon', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', 'listen', '||comma||', "i'm", 'sorry', '||comma||', 'i', 'just', '||dash||', '||return||', '||return||', 'lena:', "it's", 'o', '||period||', 'k', '||period||', '||exclammark||', "there's", 'nothing', 'to', 'be', 'sorry', 'about', '||period||', 'i', "don't", 'mind', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'mind', 'that', 'i', 'got', 'your', 'number', 'off', 'the', 'aids', 'walk', 'list', '||questionmark||', '||return||', '||return||', 'lena:', 'no', '||comma||', 'not', 'at', 'all', '||period||', 'no', 'problem', '||period||', '||leftparen||', 'jerry', 'looks', 'at', 'lena', 'suspiciously', '||period||', 'lena', 'leaves', 'with', 'all', 'of', "kramer's", 'poker', 'buddies', '||comma||', 'who', 'are', 'filing', 'out', 'of', "kramer's", 'apartment', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', "you're", 'lucky', "you're", "walkin'", 'out', 'of', 'here', 'with', 'a', 'pair', 'of', 'pants', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'went', 'all', 'night', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'shows', 'jerry', 'his', 'winnings', '||rightparen||', ':', 'jerry', '||comma||', 'ah', '||questionmark||', 'breakfast', 'on', 'me', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', 'you', 'got', 'the', 'aids', 'walk', 'in', 'like', '||comma||', 'three', 'hours', '||exclammark||', "you're", 'never', 'gonna', 'make', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'aids', 'walk', '||exclammark||', "that's", 'a', 'cake', 'walk', '||period||', '||leftparen||', 'george', 'enters', '||period||', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'george', '||comma||', 'guess', 'what', '||questionmark||', 'lena', 'found', 'out', 'how', 'i', 'got', 'her', 'number', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', "how'd", 'she', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'friend', 'of', 'a', 'friend', 'of', "susan's", '||period||', '||return||', '||return||', 'george:', 'my', 'susan', '||questionmark||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'tell', 'her', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'because', '||comma||', 'jerry', '||comma||', "it's", 'a', 'couple', 'rule', '||exclammark||', 'we', 'have', 'to', 'tell', 'each', 'other', 'everything', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'you', 'know', 'what', 'this', 'means', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', '||leftparen||', 'img', 'src=http:', '//tinyurl', '||period||', 'com/2b9c', 'width=200', '||rightparen||', '||return||', '||return||', 'jerry:', "you're", 'cut', 'off', '||comma||', "you're", 'out', 'of', 'the', 'loop', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'cutting', 'me', 'off', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'no', 'jerry', '||comma||', "don't", 'cut', 'me', 'off', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'leave', 'me', 'no', 'choice', '||exclammark||', "you're", 'the', 'media', 'now', 'as', 'far', 'as', "i'm", 'concerned', '||exclammark||', '||return||', '||return||', 'george:', "c'mon", 'jerry', '||comma||', 'please', '||exclammark||', 'it', "won't", 'happen', 'again', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'were', 'in', 'the', 'mafia', '||comma||', 'would', 'you', 'tell', 'her', 'every', 'time', 'you', 'killed', 'someone', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'a', '||quotemark||', 'hit', '||quotemark||', 'is', 'a', 'totally', 'different', 'story', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'lena', 'was', 'upset', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'that', 'was', 'the', 'amazing', 'thing', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'it', "didn't", 'bother', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'she', 'said', 'it', 'was', 'fine', '||period||', "there's", 'something', 'very', 'strange', 'about', 'this', 'girl', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'too', 'good', '||period||', '||return||', '||return||', 'george:', 'too', 'good', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', "she's", 'giving', 'and', 'caring', 'and', 'genuinely', 'concerned', 'about', 'the', 'welfare', 'of', 'others', '||dash||', 'i', "can't", 'be', 'with', 'someone', 'like', 'that', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'see', 'what', 'you', 'mean', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'i', 'admire', 'the', 'hell', 'out', 'of', 'her', '||period||', 'you', "can't", 'have', 'sex', 'with', 'someone', 'you', 'admire', '||period||', '||return||', '||return||', 'george:', "where's", 'the', 'depravity', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'depravity', '||exclammark||', 'i', 'mean', '||comma||', 'i', 'look', 'at', 'her', '||comma||', 'i', "can't", 'imagine', 'she', 'even', 'has', 'sex', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'using', 'elaine', 'as', 'an', 'example', '||rightparen||', ':', 'on', 'the', 'other', 'hand', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'thanks', 'again', 'for', 'last', 'night', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'i', "didn't", 'even', 'use', 'one', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'said', 'it', 'was', 'imminent', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'it', 'was', '||comma||', 'but', 'then', 'i', 'just', "couldn't", 'decide', 'if', 'he', 'was', 'really', 'sponge', '||dash||', 'worthy', '||period||', '||return||', '||return||', 'jerry:', 'sponge', '||dash||', 'worthy', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'jerry', '||comma||', 'i', 'have', 'to', 'conserve', 'these', 'sponges', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'like', 'this', 'guy', '||comma||', "isn't", 'that', 'what', 'the', 'sponges', 'are', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'yes', '||dash||', 'before', 'they', 'went', 'off', 'the', 'market', '||period||', 'i', 'mean', '||comma||', 'now', "i've", 'got', 'to', 're', '||dash||', 'evaluate', 'my', 'whole', 'screening', 'process', '||period||', 'i', "can't", 'afford', 'to', 'waste', 'any', 'of', "'em", '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', "you're", 'nuts', 'with', 'these', 'sponges', '||period||', 'george', 'is', "gettin'", 'frustrated', '||exclammark||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'organizer', 'at', 'desk', '||rightparen||', ':', 'uh', '||comma||', 'cosmo', 'kramer', '||questionmark||', '||return||', '||return||', 'organizer:', 'uh', '||period||', '||period||', '||period||', 'o', '||period||', 'k', '||period||', '||comma||', "you're", 'checked', 'in', '||period||', "here's", 'your', 'aids', 'ribbon', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', 'thanks', '||period||', '||return||', '||return||', 'organizer:', 'you', "don't", 'want', 'to', 'wear', 'an', 'aids', 'ribbon', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'organizer:', 'but', 'you', 'have', 'to', 'wear', 'an', 'aids', 'ribbon', '||period||', '||return||', '||return||', 'kramer:', 'i', 'have', 'to', '||questionmark||', '||return||', '||return||', 'organizer:', 'yes', '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', "that's", 'why', 'i', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'organizer:', 'but', 'everyone', 'wears', 'the', 'ribbon', '||period||', 'you', 'must', 'wear', 'the', 'ribbon', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'you', 'are', '||questionmark||', "you're", 'a', 'ribbon', 'bully', '||period||', '||leftparen||', 'walks', 'away', '||period||', '||rightparen||', '||return||', '||return||', 'organizer:', 'hey', 'you', '||exclammark||', 'come', 'back', 'here', '||exclammark||', 'come', 'back', 'here', 'and', 'put', 'this', 'on', '||exclammark||', '||return||', '||return||', 'george:', 'elaine', 'and', 'her', 'sponges', '||period||', '||period||', '||period||', "she's", 'got', 'like', '||comma||', 'a', 'war', 'chest', 'full', 'of', 'them', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'i', "don't", 'see', 'why', 'you', 'just', "can't", 'use', 'condoms', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'condoms', 'are', 'for', 'single', 'men', '||period||', 'the', 'day', 'that', 'we', 'got', 'engaged', '||comma||', 'i', 'said', 'goodbye', 'to', 'the', 'condom', 'forever', '||period||', '||return||', '||return||', 'susan:', 'just', 'once', '||period||', '||period||', '||period||', 'for', 'the', 'make', '||dash||', 'up', 'sex', '||period||', '||return||', '||return||', 'george:', 'make', '||dash||', 'up', 'sex', '||questionmark||', 'you', 'have', 'to', 'have', 'that', 'right', 'after', 'the', 'fight', '||comma||', "we're", 'way', 'past', 'that', '||period||', '||return||', '||return||', 'susan:', 'come', 'on', '||comma||', 'just', 'once', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'i', 'hate', 'the', 'condom', '||period||', '||return||', '||return||', 'susan:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'can', 'never', 'get', 'the', 'package', 'open', 'in', 'time', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'you', 'just', 'tear', 'it', 'open', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'that', 'easy', '||period||', "it's", 'like', '||quotemark||', 'beat', 'the', 'clock', '||comma||', '||quotemark||', "there's", 'a', 'lot', 'of', 'pressure', 'there', '||period||', '||return||', '||return||', 'walker', '#1:', 'hey', '||comma||', "where's", 'your', 'ribbon', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', "don't", 'wear', 'the', 'ribbon', '||period||', '||return||', '||return||', 'walker', '#2:', 'oh', '||comma||', 'you', "don't", 'wear', 'the', 'ribbon', '||questionmark||', "aren't", 'you', 'against', 'aids', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'against', 'aids', '||period||', 'i', 'mean', '||comma||', "i'm", 'walking', '||comma||', "aren't", 'i', '||questionmark||', 'i', 'just', "don't", 'wear', 'the', 'ribbon', '||period||', '||return||', '||return||', 'walker', '#3:', 'who', 'do', 'you', 'think', 'you', 'are', '||questionmark||', '||return||', '||return||', 'walker', '#1:', 'put', 'the', 'ribbon', 'on', '||exclammark||', '||return||', '||return||', 'walker', '#2:', 'hey', '||comma||', 'cedric', '||exclammark||', 'bob', '||exclammark||', 'this', 'guy', "won't", 'wear', 'a', 'ribbon', '||exclammark||', '||leftparen||', 'cedric', 'and', 'bob', 'turn', 'around', 'and', 'glare', 'at', 'kramer', '||period||', '||rightparen||', '||return||', '||return||', 'bob:', 'who', '||questionmark||', 'who', 'does', 'not', 'want', 'to', 'wear', 'the', 'ribbon', '||questionmark||', '||leftparen||', 'kramer', 'is', 'frightened', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'you', 'think', "you're", 'sponge', '||dash||', 'worthy', '||questionmark||', '||return||', '||return||', 'billy:', 'yes', '||comma||', 'i', 'think', "i'm", 'sponge', '||dash||', 'worthy', '||period||', 'i', 'think', "i'm", 'very', 'sponge', '||dash||', 'worthy', '||period||', '||return||', '||return||', 'elaine:', 'run', 'down', 'your', 'case', 'for', 'me', 'again', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'billy:', 'well', '||comma||', "we've", 'gone', 'out', 'several', 'times', '||comma||', 'we', 'obviously', 'have', 'a', 'good', 'rapport', '||period||', 'i', 'own', 'a', 'very', 'profitable', 'electronics', 'distributing', 'firm', '||period||', 'i', 'eat', 'well', '||period||', 'i', 'exercise', '||period||', 'blood', 'tests', '||dash||', 'immaculate', '||period||', 'and', 'if', 'i', 'can', 'speak', 'frankly', '||comma||', "i'm", 'actually', 'quite', 'good', 'at', 'it', '||period||', '||return||', '||return||', 'elaine:', 'you', 'going', 'to', 'do', 'something', 'about', 'your', 'sideburns', '||questionmark||', '||return||', '||return||', 'billy:', 'yeah', '||comma||', 'i', 'told', 'you', '||period||', '||period||', '||period||', "i'm", 'going', 'to', 'trim', 'my', 'sideburns', '||period||', '||return||', '||return||', 'elaine:', 'and', 'the', 'bathroom', 'in', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'billy:', 'cleaned', 'it', 'this', 'morning', '||period||', '||return||', '||return||', 'elaine:', 'the', 'sink', '||comma||', 'the', 'tub', '||comma||', 'everything', 'got', 'cleaned', '||questionmark||', '||return||', '||return||', 'billy:', 'everything', '||comma||', 'yeah', '||period||', "it's", 'spotless', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', "let's", 'go', '||period||', '||leftparen||', 'they', 'head', 'for', 'the', 'bedroom', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'lena:', 'hi', '||exclammark||', 'hey', '||comma||', 'look', 'at', 'this', '||dash||', 'i', 'just', 'got', 'a', 'citation', 'in', 'the', 'mail', 'for', 'my', 'work', 'with', 'shut', '||dash||', 'ins', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'shut', '||dash||', 'ins', '||comma||', "that's", 'nice', '||period||', 'you', 'know', '||comma||', "they're", 'a', 'very', 'eccentric', 'group', '||period||', 'because', "they're", 'shut', 'in', '||period||', 'of', 'course', '||comma||', "they're", 'not', 'locked', 'in', '||comma||', "they're", 'free', 'to', 'go', 'at', 'anytime', '||period||', '||return||', '||return||', 'lena:', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'i', 'checked', 'at', 'the', 'soup', 'kitchen', '||dash||', 'they', 'do', 'have', 'cream', 'soups', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "that's", 'dynamite', '||period||', 'you', 'know', '||comma||', 'lena', '||comma||', 'i', 'wanted', 'to', 'talk', 'to', 'you', 'about', 'something', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'because', "you're", 'such', 'a', 'good', 'person', '||dash||', '||return||', '||return||', 'lena:', 'oh', '||comma||', 'hang', 'onto', 'that', 'thought', '||dash||', "i'm", 'rinsing', 'a', 'sweater', '||comma||', 'i', 'left', 'the', 'water', 'running', '||period||', '||leftparen||', 'goes', 'into', 'the', 'bathroom', '||period||', '||rightparen||', 'hey', '||comma||', 'jerry', '||comma||', 'can', 'you', 'get', 'me', 'a', 'towel', 'out', 'of', 'my', 'bedroom', 'closet', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'o', '||period||', 'k', '||period||', '||leftparen||', 'goes', 'to', 'the', 'closet', 'for', 'the', 'towel', 'and', 'finds', 'dozens', 'of', 'boxes', 'of', 'today', 'sponges', '||period||', '||rightparen||', '||return||', '||return||', "jerry's", 'brain:', 'oh', 'my', 'god', '||exclammark||', 'look', "what's", "goin'", 'on', 'here', '||exclammark||', 'she', 'is', 'depraved', '||exclammark||', '||leftparen||', 'grabs', 'a', 'towel', 'and', 'brings', 'it', 'to', 'lena', '||period||', '||rightparen||', 'there', 'you', 'are', '||period||', '||return||', '||return||', 'lena:', 'thanks', '||period||', 'so', '||comma||', 'you', 'were', 'saying', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'nothing', '||period||', '||return||', '||return||', 'lena:', 'no', '||comma||', 'you', 'said', 'i', 'was', 'a', 'good', 'person', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', '||return||', '||return||', 'lena:', 'you', 'seem', 'like', 'you', 'want', 'to', 'tell', 'me', 'something', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'you', 'something', '||period||', '||period||', '||period||', 'i', 'do', '||period||', '||return||', '||return||', 'lena:', 'what', 'is', 'it', '||comma||', 'jerry', '||questionmark||', 'you', 'can', 'tell', 'me', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'uh', '||period||', '||period||', '||period||', 'you', 'see', 'these', 'jeans', "i'm", 'wearing', '||questionmark||', '||return||', '||return||', 'lena:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', 'change', 'the', '32', 'waist', 'on', 'the', 'label', 'to', 'a', '31', 'on', 'all', 'my', 'jeans', '||period||', 'so', '||comma||', 'you', 'know', '||period||', "that's", 'it', '||period||', '||leftparen||', 'lena', 'is', 'puzzled', '||period||', '||rightparen||', '||return||', '||return||', 'susan:', 'come', 'on', '||comma||', 'george', '||comma||', 'just', 'tear', 'it', 'open', '||period||', '||return||', '||return||', 'george:', "i'm", 'trying', '||comma||', 'dammit', '||period||', '||return||', '||return||', 'susan:', 'tear', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'tried', 'to', 'tear', 'it', 'from', 'the', 'side', '||comma||', 'you', "can't", 'get', 'a', 'good', 'grip', 'here', '||period||', 'you', 'gotta', 'do', 'it', 'like', 'a', 'bag', 'of', 'chips', '||period||', '||return||', '||return||', 'susan:', 'here', 'give', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'wait', 'a', 'second', '||questionmark||', 'just', 'wait', '||questionmark||', '||leftparen||', 'they', 'fight', 'over', 'it', '||period||', '||rightparen||', '||return||', '||return||', 'susan:', 'give', 'it', 'to', 'me', '||period||', '||leftparen||', 'she', 'rips', 'it', 'open', '||period||', '||rightparen||', 'come', 'on', '||period||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'george', '||leftparen||', 'tosses', 'the', 'condom', 'aside', '||rightparen||', ':', "it's", 'too', 'late', '||period||', '||return||', '||return||', 'bob:', 'so', '||exclammark||', "what's", 'it', 'going', 'to', 'be', '||questionmark||', 'are', 'you', 'going', 'to', 'wear', 'the', 'ribbon', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'nervously', '||rightparen||', ':', 'no', '||exclammark||', 'never', '||period||', '||return||', '||return||', 'bob:', 'but', 'i', 'am', 'wearing', 'the', 'ribbon', '||period||', 'he', 'is', 'wearing', 'the', 'ribbon', '||period||', 'we', 'are', 'all', 'wearing', 'the', 'ribbon', '||exclammark||', 'so', 'why', "aren't", 'you', 'going', 'to', 'wear', 'the', 'ribbon', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'this', 'is', 'america', '||exclammark||', 'i', "don't", 'have', 'to', 'wear', 'anything', 'i', "don't", 'want', 'to', 'wear', '||exclammark||', '||return||', '||return||', 'cedric:', 'what', 'are', 'we', 'gonna', 'do', 'with', 'him', '||questionmark||', '||return||', '||return||', 'bob:', 'i', 'guess', 'we', 'are', 'just', 'going', 'to', 'have', 'to', 'teach', 'him', 'to', 'wear', 'the', 'ribbon', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'completely', 'turned', 'her', 'off', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'can', 'see', 'that', '||period||', 'what', 'do', 'you', 'have', 'to', 'do', 'that', 'for', '||questionmark||', 'who', 'cares', 'about', 'your', 'pants', 'size', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'wanna', 'be', 'a', '32', '||period||', '||return||', '||return||', 'george:', "i'd", 'kill', 'to', 'be', 'a', '32', '||period||', '||return||', '||return||', 'jerry:', 'she', 'said', 'i', "wasn't", 'sponge', '||dash||', 'worthy', '||period||', "wouldn't", 'waste', 'a', 'sponge', 'on', 'me', '||exclammark||', '||return||', '||return||', 'george:', 'that', 'condom', 'killed', 'me', '||period||', 'why', 'do', 'they', 'have', 'to', 'make', 'the', 'wrappers', 'on', 'those', 'things', 'so', 'hard', 'to', 'open', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'probably', 'so', 'the', 'woman', 'has', 'one', 'last', 'chance', 'to', 'change', 'her', 'mind', '||period||', '||return||', '||return||', 'george:', 'you', 'never', 'run', 'out', '||comma||', 'do', 'you', '||questionmark||', '||leftparen||', 'jerry', 'smiles', '||period||', '||rightparen||', "where's", 'kramer', '||questionmark||', "everything's", 'finished', 'here', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'told', 'him', "he'd", 'never', 'make', 'it', '||period||', 'he', 'was', 'up', 'all', 'night', '||exclammark||', 'oh', 'my', 'god', '||period||', '||period||', '||period||', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', 'at', 'you', '||period||', 'i', 'told', 'you', '||period||', 'up', 'all', 'night', 'playing', 'poker', '||period||', 'come', 'on', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'are', 'about', 'to', 'leave', '||period||', 'george', "turn's", 'back', 'and', 'looks', 'at', 'kramer', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', "where's", 'you', 'aids', 'ribbon', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'smiling', '||rightparen||', ':', 'good', 'morning', '||period||', '||return||', '||return||', 'billy:', "how'd", 'you', 'sleep', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'stretches', '||rightparen||', ':', 'great', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'billy:', 'fine', '||comma||', 'fine', '||period||', 'everything', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'yep', '||period||', '||return||', '||return||', 'billy:', 'no', 'regrets', '||questionmark||', '||return||', '||return||', 'elaine:', 'nope', '||period||', '||leftparen||', 'billy', 'leans', 'in', 'to', 'kiss', 'her', '||period||', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'billy:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'billy:', 'why', 'not', '||questionmark||', 'i', 'thought', 'you', 'said', 'everything', 'was', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'i', 'wish', 'i', 'could', 'help', 'you', '||comma||', 'but', 'i', "can't", 'afford', 'two', 'of', "'em", '||period||', '||leftparen||', 'pats', 'billy', 'on', 'the', 'shoulder', 'and', 'gets', 'out', 'of', 'bed', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'think', "she's", 'happy', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'indicates', 'with', 'his', 'head', '||rightparen||', 'the', 'cashier', '||period||', '||return||', '||return||', 'jerry:', 'ruthie', 'cohen', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'surprised', '||rightparen||', 'you', 'know', 'her', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'think', "i've", 'ever', 'spoken', 'to', 'her', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "that's", 'why', "she's", 'happy', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'handing', 'jerry', '&', 'george', 'a', 'flyer', '||rightparen||', 'good', 'morning', '||comma||', 'gentlemen', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'removing', 'his', 'coat', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', "it's", 'the', 'latest', 'offering', 'from', 'the', 'alex', 'theatre', '||period||', '||return||', '||return||', 'jerry:', 'that', 'stinky', 'old', 'movie', '||dash||', 'house', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sits', 'beside', 'jerry', '||rightparen||', 'well', '||comma||', 'you', 'should', 'smell', 'it', 'now', '||period||', 'we', 'fixed', 'up', 'the', 'place', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gesturing', 'with', 'flyer', '||rightparen||', 'with', 'spartacus', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'lighting', 'his', 'pipe', '||rightparen||', 'well', '||comma||', "it's", 'a', 'rare', 'archival', 'print', '||period||', '||leftparen||', 'jumps', 'as', 'his', 'burns', 'his', 'fingers', '||rightparen||', 'twelve', 'extra', 'minutes', '||comma||', 'full', 'wide', '||dash||', 'screen', 'cinemascope', '||comma||', 'and', 'if', 'you', 'come', 'to', 'the', 'one', "o'clock", 'show', '||comma||', 'you', 'can', 'hear', 'geoffrey', 'har', '||dash||', 'harwood', '||period||', '||return||', '||return||', 'jerry:', 'geoffrey', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'har', '||dash||', 'harwood', '||comma||', 'jerry', '||period||', 'he', 'was', 'the', 'assistant', 'wardrobe', 'man', 'on', 'spartacus', '||period||', 'some', 'fascinating', 'insights', 'into', 'the', 'production', '||period||', '||return||', '||return||', 'george:', 'why', 'would', 'i', 'spend', 'seven', 'dollars', 'to', 'see', 'a', 'movie', 'that', 'i', 'could', 'watch', 'on', 'tv', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'go', 'to', 'a', 'fine', 'restaurant', '||comma||', 'when', 'you', 'can', 'just', 'stick', 'something', 'in', 'the', 'microwave', '||questionmark||', 'why', 'go', 'to', 'the', 'park', 'and', 'fly', 'a', 'kite', '||comma||', 'when', 'you', 'can', 'just', 'pop', 'a', 'pill', '||questionmark||', '||leftparen||', 'looks', 'around', "monk's", '||rightparen||', 'listen', '||comma||', 'you', 'guys', "haven't", 'seen', 'lloyd', 'braun', '||comma||', 'have', 'you', '||questionmark||', "i'm", 'supposed', 'to', 'meet', 'him', 'here', '||period||', '||return||', '||return||', 'george:', 'lloyd', 'braun', '||questionmark||', 'what', "d'you", 'have', 'to', 'meet', 'him', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "he's", 'using', 'his', 'connections', 'in', 'the', "mayor's", 'office', '||comma||', 'to', 'uh', '||comma||', 'get', 'the', 'theatre', 'landmark', 'status', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'he', 'screwed', 'up', 'the', 'dinkins', 'campaign', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'did', '||period||', 'you', 'know', '||comma||', 'after', 'that', '||comma||', 'he', 'had', 'a', 'nervous', 'breakdown', '||questionmark||', 'had', 'to', 'spend', 'a', 'few', 'months', 'in', 'an', 'institution', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', "he's", 'doing', 'a', 'lot', 'better', 'now', '||period||', "i've", 'taken', 'him', 'under', 'my', 'wing', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'then', "i'm", 'not', 'worried', '||period||', '||return||', '||return||', 'kramer:', 'but', 'he', 'still', 'needs', 'all', 'of', 'our', 'support', '||period||', 'now', '||comma||', 'when', 'he', 'gets', 'here', 'treat', 'him', 'like', "he's", 'one', 'of', 'the', 'gang', '||comma||', 'huh', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thoughtful', '||rightparen||', 'breakdown', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'lloyd:', 'hey', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', 'lloyd', '||comma||', 'hey', 'buddy', '||period||', '||leftparen||', 'gets', 'up', 'and', 'shakes', "lloyd's", 'hand', '||rightparen||', '||return||', '||return||', 'lloyd:', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'slaps', 'lloyd', 'on', 'the', 'shoulder', '||rightparen||', 'sit', 'down', '||period||', '||leftparen||', 'sits', 'himself', '||rightparen||', '||return||', '||return||', 'lloyd:', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'lloyd', '||period||', '||return||', '||return||', 'lloyd:', 'george', '||period||', '||return||', '||return||', 'george:', 'hello', '||comma||', 'lloyd', '||period||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'well', '||comma||', "he's", 'doing', 'fine', '||comma||', 'george', '||period||', '||return||', '||return||', 'lloyd:', '||leftparen||', 'offering', 'packet', '||rightparen||', 'gum', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'peering', '||rightparen||', "that's", 'an', 'interesting', 'package', '||period||', '||return||', '||return||', 'lloyd:', 'yeah', '||comma||', "it's", 'from', 'china', '||period||', 'go', 'ahead', '||comma||', 'try', 'a', 'piece', '||period||', 'tell', 'me', "that's", 'not', 'the', 'most', 'delicious', 'gum', "you've", 'ever', 'tasted', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||period||', 'we', 'shall', 'all', 'try', 'a', 'piece', 'and', 'tell', 'you', 'how', 'delicious', 'it', 'is', '||period||', '||leftparen||', 'he', 'takes', 'pieces', 'for', 'himself', 'and', 'jerry', '||rightparen||', '||return||', '||return||', 'lloyd:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'chew', 'gum', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'chewing', '||rightparen||', 'mmm', '||comma||', 'different', '||period||', "where'd", 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'lloyd:', 'friend', 'of', 'mine', 'in', 'chinatown', 'gave', 'it', 'to', 'me', '||period||', 'if', 'you', 'want', 'i', 'can', 'ask', 'him', 'where', 'he', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "don't", 'bother', '||period||', '||return||', '||return||', 'lloyd:', 'no', '||comma||', "it's", 'no', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'it', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'jerry', '||period||', 'lloyd', 'says', "it's", 'no', 'problem', '||period||', "he's", 'capable', 'of', 'locating', 'the', 'gum', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||comma||', 'delicious', '||period||', 'this', 'is', 'delicious', '||period||', 'mmm', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', 'i', 'think', 'this', 'ruthie', 'cohen', 'gave', 'me', 'the', 'wrong', 'change', '||period||', "didn't", 'i', 'pay', 'with', 'a', 'twenty', '||questionmark||', "i'm", 'sure', 'i', 'paid', 'with', 'a', 'twenty', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'finally', 'figured', 'out', 'what', 'the', 'flavor', 'is', 'in', 'this', 'gum', '||period||', "it's", 'a', 'little', 'lo', '||dash||', 'mein', '||dash||', 'y', '||period||', '||leftparen||', 'he', 'spits', 'it', 'into', 'the', 'waste', 'bin', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'kind', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'chinese', 'gum', '||comma||', 'lloyd', 'braun', 'gave', 'me', '||period||', '||return||', '||return||', 'elaine:', 'lloyd', 'braun', '||questionmark||', "how's", 'he', 'doing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'almost', 'gleeful', '||rightparen||', 'after', 'dinkins', 'lost', 'the', 'election', '||comma||', 'he', 'had', 'a', 'complete', 'nervous', 'breakdown', '||period||', 'they', 'had', 'to', 'lock', 'him', 'up', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', "that's", 'around', 'the', 'same', 'time', 'i', 'broke', 'up', 'with', 'lloyd', '||period||', 'y', '||period||', '||period||', '||period||', 'you', "don't", 'think', 'that', 'i', 'had', 'anything', 'to', 'do', 'with', 'his', 'breakdown', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'remember', 'when', 'we', 'parted', 'company', '||comma||', 'i', 'was', 'babbling', 'incoherently', 'for', 'months', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'well', '||comma||', 'i', 'got', 'news', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'the', 'whole', 'time', 'that', 'i', 'was', 'growing', 'up', '||comma||', 'all', 'i', 'ever', 'heard', 'from', 'my', 'mother', 'was', "'why", "can't", 'you', 'be', 'more', 'like', 'that', 'lloyd', 'braun', '||questionmark||', "'", '||return||', '||return||', 'jerry:', 'and', 'in', 'the', 'end', 'lloyd', 'braun', 'became', 'more', 'like', 'you', '||period||', '||return||', '||return||', 'george:', 'right', '||comma||', 'gotta', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', "aren't", 'you', 'coming', 'with', 'us', 'to', 'spartacus', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'i', 'gotta', 'deliver', 'some', 'christmas', 'presents', 'to', 'my', 'parents', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'your', 'parents', 'were', 'outta', 'town', '||questionmark||', '||return||', '||return||', 'george:', 'why', "d'you", 'think', "i'm", 'going', 'now', '||questionmark||', '||return||', '||return||', '[street:', 'queens]', '||return||', '||return||', 'pop:', 'georgie', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'mr', 'lazzari', '||period||', '||return||', '||return||', 'pop:', 'back', 'in', 'the', 'old', 'neighborhood', '||comma||', 'ah', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'just', 'delivering', 'some', 'presents', 'to', 'my', 'folks', '||period||', '||return||', '||return||', 'pop:', 'oh', '||comma||', 'snazzy', 'car', '||period||', 'le', 'baron', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'eighty', '||dash||', 'three', '||period||', 'used', 'to', 'belong', 'to', 'john', 'voight', '||period||', '||return||', '||return||', 'pop:', 'the', 'actor', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'pop:', 'mind', 'if', 'i', 'look', 'under', 'the', 'hood', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', 'no', '||period||', 'go', 'ahead', '||comma||', 'pop', '||comma||', 'you', 'always', 'knew', 'your', 'cars', '||period||', '||return||', '||return||', 'pop:', 'oh', '||comma||', 'deena', '||exclammark||', 'deena', '||comma||', 'deena', '||comma||', 'l', '||period||', '||period||', '||period||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'deena:', 'george', 'costanza', '||comma||', 'is', 'that', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'hey', 'deena', '||comma||', 'come', 'on', '||comma||', 'give', 'us', 'a', 'hug', '||period||', '||leftparen||', 'they', 'hug', '||rightparen||', 'oh', 'my', 'gosh', '||comma||', 'you', 'look', 'as', 'pretty', 'as', 'you', 'did', 'back', 'in', 'high', 'school', '||period||', '||return||', '||return||', 'deena:', 'boy', '||comma||', 'those', 'were', 'some', 'crazy', 'times', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'speaking', 'of', 'crazy', '||comma||', 'did', 'you', 'hear', 'about', 'lloyd', 'braun', '||questionmark||', '||return||', '||return||', '[alex', 'theatre:', 'lobby]', '||return||', '||return||', 'kramer:', 'the', 'alex', 'was', 'built', 'in', 'nineteen', 'twenty', '||dash||', 'two', '||comma||', 'during', 'the', 'golden', 'era', 'of', 'movie', 'palaces', '||period||', 'minor', 'restorations', 'in', 'nineteen', 'forty', '||dash||', 'one', '||comma||', 'forty', '||dash||', 'seven', '||comma||', 'fifty', '||dash||', 'two', '||comma||', 'fifty', '||dash||', 'eight', '||comma||', 'sixty', '||dash||', 'three', '||comma||', 'and', 'currently', 'to', 'our', 'present', 'period', 'of', 'time', '||period||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', "you're", 'really', 'getting', 'into', 'this', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', 'i', 'am', '||period||', 'the', 'icing', 'on', 'the', 'cake', 'would', 'be', 'getting', 'that', 'landmark', 'status', 'from', 'the', 'city', '||period||', "we're", 'hoping', 'lloyd', 'braun', 'can', 'pull', 'a', 'few', 'strings', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'can', 'lloyd', 'really', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'lloyd', 'braun', 'can', 'do', 'anything', 'he', 'puts', 'his', 'mind', 'to', '||period||', "he's", 'fine', '||comma||', 'jerry', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'and', 'you', 'should', 'say', 'hello', 'to', 'him', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'concerned', '||rightparen||', 'what', '||questionmark||', 'lloyd', 'is', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'no', '||comma||', 'no', '||comma||', "i'd", 'rather', '||period||', '||period||', '||period||', '||return||', '||return||', 'lloyd:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'big', 'fake', 'smile', '||rightparen||', 'lloyd', '||comma||', 'yes', '||period||', 'hello', '||period||', '||return||', '||return||', 'lloyd:', 'kramer', 'tell', 'you', '||questionmark||', 'we', 'reserved', 'some', 'special', 'seats', '||comma||', 'so', 'we', 'can', 'all', 'sit', 'together', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reluctant', '||rightparen||', 'oh', '||comma||', 'well', '||period||', '||period||', '||period||', 'i', '||comma||', 'uh', '||comma||', 'actually', 'lloyd', '||comma||', 'jerry', 'and', 'i', 'have', 'to', 'sit', 'in', 'the', 'front', 'row', '||comma||', 'uhm', '||comma||', '||leftparen||', 'desperately', 'inventing', '||rightparen||', 'because', 'uh', '||comma||', 'because', '||comma||', 'because', 'he', '||comma||', 'he', 'forgot', 'his', 'glasses', '||period||', 'so', 'uh', '||comma||', 'thanks', 'for', 'getting', 'us', '||period||', '||period||', '||period||', 'uhm', '||comma||', "we'll", 'see', 'you', 'afterwards', '||period||', '||return||', '||return||', 'lloyd:', 'that', 'was', 'odd', '||period||', 'am', 'i', 'crazy', '||comma||', 'or', 'does', 'jerry', 'not', 'wear', 'glasses', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'emphatic', '||rightparen||', "you're", 'not', 'crazy', '||period||', 'jerry', 'does', 'wear', 'glasses', '||period||', 'he', 'just', 'forgot', "'em", '||comma||', "that's", 'all', '||period||', '||leftparen||', 'puts', 'an', 'arm', 'round', "lloyd's", 'shoulder', '||rightparen||', 'not', 'crazy', '||period||', '||return||', '||return||', '[alex', 'theatre:', 'auditorium]', '||return||', '||return||', 'jerry:', "we're", 'all', 'the', 'way', 'in', 'the', 'front', 'row', '||period||', 'why', "couldn't", 'we', 'sit', 'in', 'the', 'special', 'seats', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'but', 'i', "didn't", 'want', 'lloyd', 'thinking', 'i', 'was', 'leading', 'him', 'on', 'again', '||period||', 'seeing', 'him', 'made', 'me', 'feel', 'very', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'you', "don't", 'wanna', 'be', 'uncomfortable', '||period||', '||return||', '||return||', '[street:', 'queens]', '||return||', '||return||', 'deena:', 'poor', 'lloyd', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'completely', 'bonkers', '||exclammark||', '||return||', '||return||', 'deena:', 'sorry', 'i', "can't", 'be', 'so', 'flip', 'about', 'this', 'kind', 'of', 'thing', '||period||', 'you', 'know', '||comma||', 'after', 'what', 'happened', 'to', 'pop', '||period||', '||return||', '||return||', 'george:', 'pop', '||questionmark||', 'what', 'happened', 'to', 'pop', '||questionmark||', '||return||', '||return||', 'deena:', 'i', 'thought', 'you', 'heard', '||period||', 'he', 'had', 'a', 'nervous', 'breakdown', 'last', 'year', '||period||', "that's", 'why', "i'm", 'taking', 'care', 'of', 'him', '||period||', '||return||', '||return||', 'pop:', 'oh', '||comma||', 'i', 'tell', 'you', '||comma||', 'they', "don't", 'build', "'em", 'like', 'this', 'any', 'more', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'a', 'little', 'worried', '||rightparen||', 'he', 'uh', '||comma||', 'he', "doesn't", 'have', 'the', 'auto', 'shop', 'any', 'more', '||questionmark||', '||return||', '||return||', 'deena:', 'uhn', '||comma||', 'it', 'was', 'too', 'much', 'for', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'very', 'worried', '||rightparen||', 'uhm', '||comma||', 'i', '||comma||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'deena:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', 'remembered', '||comma||', 'i', 'gotta', 'be', 'someplace', '||period||', 'yuh', '||dash||', 'hu', '||dash||', 'hur', '||comma||', "that's", 'enough', '||period||', 'pop', '||period||', 'pop', '||comma||', 'put', 'down', 'the', 'wrench', '||comma||', 'pop', '||period||', '||return||', '||return||', '[alex', 'theatre:', 'auditorium]', '||return||', '||return||', 'george:', 'pop', '||exclammark||', 'pop', '||exclammark||', '||exclammark||', '||return||', '||return||', '[alex', 'theatre:', 'lobby]', '||return||', '||return||', 'lloyd:', "'s", 'a', 'great', 'movie', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'lloyd:', 'sorry', 'you', 'forgot', 'those', 'glasses', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'i', 'was', 'thinking', '||period||', '||return||', '||return||', 'lloyd:', "how'd", 'you', 'like', 'that', 'gum', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'noncommittal', '||rightparen||', 'errh', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'slapping', 'jerry', 'on', 'the', 'back', '||rightparen||', 'ah', '||comma||', 'he', 'loved', 'it', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'kramer', '||comma||', 'you', 'know', 'what', '||questionmark||', 'there', '||comma||', 'there', "isn't", 'a', 'light', 'there', '||comma||', 'in', 'the', "ladies'", 'room', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', "it's", 'being', 'repaired', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'oh', 'god', '||period||', '||return||', '||return||', 'lloyd:', 'you', 'alright', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'i', 'sat', 'too', 'close', 'to', 'the', 'screen', '||period||', 'oh', '||period||', 'i', 'just', 'gotta', 'stretch', 'out', 'in', 'a', 'hot', 'bath', '||period||', 'it', 'was', 'nice', 'to', 'see', 'you', 'again', '||comma||', 'lloyd', '||period||', '||return||', '||return||', 'elaine:', 'officer', '||period||', 'officer', '||comma||', 'is', 'there', 'some', 'reason', 'this', 'man', 'has', 'to', 'always', 'be', 'using', 'a', 'hose', '||questionmark||', 'i', 'mean', '||comma||', "he's", 'flooding', 'the', 'sidewalk', '||period||', "it's", 'a', 'waste', 'of', 'water', '||period||', "couldn't", 'he', 'just', 'use', 'a', 'broom', '||questionmark||', '||return||', '||return||', 'cop:', 'lady', '||comma||', 'you', 'sold', 'me', '||period||', '||leftparen||', 'strides', 'toward', 'florist', '||rightparen||', 'hey', '||comma||', 'you', 'with', 'the', 'hose', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'put', 'these', 'glasses', 'on', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'them', '||rightparen||', 'well', '||comma||', "what's", 'this', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'lloyd', '||comma||', "he's", 'gonna', 'be', 'here', 'any', 'minute', 'now', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'thinks', 'you', 'wear', 'those', '||period||', '||return||', '||return||', 'kramer:', "they're", 'from', 'the', 'lost', 'and', 'found', 'at', 'the', 'alex', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', "c'mon", 'kramer', '||comma||', 'this', 'is', 'ridiculous', '||period||', "i'm", 'not', 'gonna', 'put', 'these', 'on', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'okay', '||period||', 'so', "he'll", 'just', 'think', 'that', 'the', 'two', 'of', 'you', "didn't", 'sit', 'with', 'him', 'on', 'purpose', '||period||', 'ooh', 'yeah', '||comma||', "that's", 'very', 'nice', '||period||', 'very', 'nice', '||period||', '||return||', '||return||', 'george:', "'scuse", 'me', '||period||', 'i', 'uh', '||comma||', 'i', 'was', 'in', 'here', 'this', 'morning', 'and', 'uh', '||comma||', 'i', 'believe', 'i', 'paid', 'you', 'with', 'a', 'twenty', 'dollar', 'bill', '||comma||', '||leftparen||', 'smiles', '||rightparen||', 'but', 'you', 'only', 'gave', 'me', 'change', 'for', 'a', 'ten', '||period||', '||return||', '||return||', 'cashier:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'think', 'so', '||comma||', 'and', 'i', 'can', 'prove', 'it', '||period||', 'you', 'see', '||comma||', 'i', 'was', 'doodling', 'on', 'the', 'bill', 'and', 'uh', '||comma||', 'so', 'if', 'you', 'have', 'a', 'twenty', 'in', 'there', 'with', 'big', 'lips', 'on', 'it', '||period||', '||period||', '||period||', 'well', '||comma||', '||leftparen||', 'smiles', '||rightparen||', "that's", 'mine', '||period||', 'would', 'you', 'mind', 'opening', 'up', 'the', 'register', '||questionmark||', '||return||', '||return||', 'cashier:', 'not', 'unless', 'you', 'buy', 'something', '||period||', '||return||', '||return||', 'george:', 'fine', '||comma||', "i'll", 'buy', 'a', 'pack', 'of', 'gum', '||period||', '||return||', '||return||', 'lloyd:', 'hey', 'george', '||period||', 'thought', 'you', "didn't", 'chew', 'gum', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", '||period||', '||return||', '||return||', 'cashier:', 'take', 'a', 'look', '||period||', '||return||', '||return||', 'george:', 'i', 'know', 'i', 'gave', 'it', 'to', 'you', '||period||', '||return||', '||return||', 'lloyd:', 'george', '||comma||', 'would', 'you', 'mind', '||period||', "i'm", 'kind', 'of', 'in', 'a', 'hurry', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'fine', '||period||', 'fine', '||period||', '||leftparen||', 'to', 'customer', '||rightparen||', 'excuse', 'me', '||period||', '||leftparen||', 'heading', 'for', 'the', 'door', '||rightparen||', 'think', "i'm", 'gonna', 'forget', 'about', 'this', '||questionmark||', 'i', "haven't", 'forgotten', 'about', 'this', '||period||', 'i', "don't", 'forget', 'that', 'easily', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||comma||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'lloyd', '||period||', '||return||', '||return||', 'lloyd:', 'hi', 'jerry', '||period||', 'got', 'some', 'more', 'of', 'that', 'gum', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unenthusiastic', '||rightparen||', 'oh', '||comma||', 'the', 'gum', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "let's", 'all', 'enjoy', 'a', 'chew', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'not', 'happy', '||rightparen||', 'uh', '||comma||', 'alright', '||period||', '||leftparen||', 'he', 'takes', 'a', 'piece', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'boy', '||period||', '||return||', '||return||', 'kramer:', 'now', 'see', '||comma||', 'this', 'is', 'what', 'the', 'holidays', 'are', 'all', 'about', '||period||', 'three', 'buddies', '||comma||', 'sitting', 'around', '||comma||', 'chewing', 'gum', '||comma||', 'huh', '||questionmark||', 'mmm', '||comma||', 'mmm', '||comma||', 'yeah', '||period||', 'so', 'uh', '||comma||', 'you', 'know', '||comma||', 'lloyd', '||comma||', 'he', 'thinks', 'he', 'can', 'get', 'more', 'of', 'this', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "lloyd's", 'a', 'very', 'industrious', 'fellow', '||period||', "i'm", 'sure', 'he', 'can', 'accomplish', 'anything', 'he', 'sets', 'his', 'mind', 'to', '||period||', '||return||', '||return||', 'lloyd:', 'actually', '||comma||', 'the', "importer's", 'right', 'in', 'chinatown', '||period||', "i'll", 'introduce', 'you', 'to', 'him', '||comma||', 'you', 'can', 'get', 'it', 'whenever', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', "'s", 'not', 'necessary', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||comma||', 'you', 'know', '||comma||', 'lloyd', 'wants', 'to', 'do', 'you', 'a', 'favour', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'that', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'lloyd:', 'well', '||comma||', 'if', 'you', "don't", 'want', 'to', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'sure', 'sure', '||comma||', 'he', 'wants', 'to', '||period||', "it's", 'very', 'kind', 'of', 'you', '||period||', 'yeah', '||comma||', 'jerry', '||comma||', 'he', 'appreciates', 'it', '||period||', "don't", 'you', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'i', 'do', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'lloyd:', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||questionmark||', '||return||', '||return||', 'lloyd:', 'how', 'about', 'that', 'elaine', 'today', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'baby', '||comma||', 'what', 'was', 'that', 'all', 'about', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'lloyd:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'she', 'was', 'practically', 'undressing', 'in', 'front', 'of', 'me', 'at', 'the', 'theatre', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'see', 'anything', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'uh', '||comma||', 'really', 'missed', 'a', 'show', '||comma||', 'buddy', '||period||', 'wooh', '||comma||', 'ba', '||dash||', 'boom', '||comma||', 'ba', '||dash||', 'boom', '||dash||', 'ba', '||dash||', 'ba', '||dash||', 'ba', '||dash||', 'boom', '||dash||', 'ba', '||period||', '||return||', '||return||', 'deena:', "you're", 'probably', 'wondering', 'why', 'i', 'wanted', 'to', 'see', 'you', 'again', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||period||', '||leftparen||', 'grins', '||comma||', 'snorts', '||rightparen||', "it's", 'understandable', '||period||', '||return||', '||return||', 'deena:', "i'm", 'glad', 'you', 'feel', 'that', 'way', '||period||', 'because', 'since', 'my', "father's", 'breakdown', 'i', 'uh', '||comma||', 'become', 'very', 'sensitive', 'to', 'the', 'warning', 'signs', '||period||', '||return||', '||return||', 'george:', 'warning', 'signs', '||questionmark||', '||return||', '||return||', 'deena:', 'nervousness', '||comma||', 'irritability', '||comma||', 'paranoia', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'disbelief', '||rightparen||', 'what', '||questionmark||', '||leftparen||', 'laugh', '||rightparen||', 'wh', '||period||', '||period||', '||period||', "what're", 'you', 'talking', 'about', '||questionmark||', "i'm", 'not', 'the', 'one', 'with', 'the', 'problem', '||period||', '||leftparen||', 'defensive', '||rightparen||', 'lloyd', 'braun', 'was', 'in', 'the', 'nuthouse', '||comma||', 'not', 'me', '||period||', '||return||', '||return||', 'deena:', 'yet', 'again', '||comma||', 'taking', 'pleasure', 'in', 'the', 'misfortunes', 'of', 'others', '||period||', '||return||', '||return||', 'george:', 'all', 'my', 'friends', 'do', 'that', '||period||', '||return||', '||return||', 'deena:', 'george', '||comma||', "i'm", 'only', 'trying', 'to', 'help', '||period||', '||period||', '||period||', '||return||', '||return||', 'deena:', "i'm", '||period||', '||period||', '||period||', "i'm", 'concerned', '||period||', 'george', '||questionmark||', 'george', '||comma||', 'are', 'you', 'listening', 'to', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'see', 'that', 'woman', 'on', 'the', 'horse', '||questionmark||', '||leftparen||', 'points', '||rightparen||', '||return||', '||return||', 'george:', 'she', 'stole', 'twenty', 'dollars', 'from', 'me', '||period||', '||leftparen||', 'getting', 'angry', '||rightparen||', 'yeah', '||comma||', 'i', "might've", 'gotten', 'it', 'back', '||comma||', 'but', 'lloyd', 'braun', 'interfered', '||exclammark||', '||return||', '||return||', 'deena:', 'so', 'again', 'it', 'all', 'comes', 'back', 'to', 'lloyd', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'rising', 'to', 'his', 'feet', '||rightparen||', 'hey', '||exclammark||', 'hey', '||comma||', 'you', '||exclammark||', '||leftparen||', 'setting', 'off', 'after', 'her', '||rightparen||', 'come', 'back', 'here', '||exclammark||', '||exclammark||', "don't", 'gallop', 'away', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'you', 'say', 'she', 'was', 'on', 'a', 'horse', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'telling', 'you', '||comma||', 'that', 'cashier', 'is', 'riding', 'horses', 'on', 'my', 'money', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "here's", 'what', 'i', 'propose', '||period||', 'go', 'down', 'to', 'the', 'stables', '||comma||', 'snoop', 'around', '||period||', 'see', 'if', 'any', 'high', '||dash||', 'flying', "cashier's", 'been', 'throwing', 'twenty', 'dollar', 'bills', 'around', 'with', 'big', 'lips', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'it', "isn't", 'chesty', 'la', 'rue', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sits', 'beside', 'jerry', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'chewing', 'gum', 'with', 'lloyd', 'braun', '||comma||', 'and', 'he', 'was', 'bragging', 'about', 'the', 'peepshow', 'you', 'gave', 'him', 'at', 'the', 'alex', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', 'it', 'away', '||rightparen||', 'oh', 'god', '||period||', 'i', 'lost', 'a', 'button', '||comma||', 'so', 'my', 'blouse', 'was', 'wide', 'open', '||period||', 'i', 'musta', 'left', 'it', 'at', 'the', 'theatre', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "it's", 'in', 'the', 'lost', 'and', 'found', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'know', '||period||', 'i', 'have', 'to', 'go', 'check', 'it', 'out', '||period||', "it's", 'a', 'beautiful', 'button', 'too', '||comma||', 'you', 'know', '||period||', "it's", 'antique', 'ivory', '||period||', 'it', 'was', 'my', "mother's", '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'way', 'you', 'were', 'wolfing', 'down', 'that', 'popcorn', '||comma||', 'maybe', 'you', 'ate', 'it', '||period||', '||return||', '||return||', '[alex', 'theatre:', 'lobby]', '||return||', '||return||', 'kramer:', 'mr', 'har', '||dash||', 'harwood', '||period||', 'well', '||comma||', 'what', 'an', 'unexpected', 'surprise', 'to', 'have', 'you', 'back', 'at', 'the', 'alex', 'theatre', '||period||', '||return||', '||return||', 'haarwood:', 'well', 'i', '||comma||', "i'm", 'in', 'a', 'bit', 'of', 'a', 'quandary', '||period||', "i've", 'misplaced', 'my', 'spectacles', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "let's", 'look', 'in', 'lost', 'and', 'found', '||comma||', 'shall', 'we', '||questionmark||', '||return||', '||return||', 'haarwood:', "they're", 'half', '||dash||', 'glasses', '||period||', '||return||', '||return||', 'kramer:', 'brown', '||questionmark||', '||return||', '||return||', 'haarwood:', 'mmm', '||comma||', 'yes', '||comma||', 'yes', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||period||', 'ah', '||comma||', 'well', 'if', "they're", 'not', 'in', 'the', 'box', '||comma||', "i'm", 'sure', "they'll", 'turn', 'up', 'soon', '||period||', 'listen', '||comma||', 'could', 'you', 'keep', 'an', 'eye', 'on', 'the', 'place', '||questionmark||', 'i', 'wanna', 'go', 'out', 'and', 'get', 'some', 'paraffin', 'wax', '||comma||', 'and', 'bring', 'out', 'the', 'lustre', 'of', 'this', 'vintage', 'countertop', '||period||', '||return||', '||return||', 'haarwood:', 'certainly', '||period||', '||return||', '||return||', 'haarwood:', 'oh', 'my', 'goodness', '||period||', 'what', 'a', 'spanking', 'button', '||period||', '||return||', '||return||', "[george's", 'car:', 'street', 'outside', 'alex]', '||return||', '||return||', 'george:', '||leftparen||', 'glances', 'in', 'mirror', '||rightparen||', 'alright', '||period||', 'alright', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'annoyed', '||rightparen||', 'hang', 'on', '||comma||', "it's", 'warming', 'up', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'angrily', '||rightparen||', 'oh', 'you', 'mother', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'what', 'is', 'your', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hello', '||comma||', "it's", 'you', '||exclammark||', '||leftparen||', 'angry', '||rightparen||', 'listen', 'lady', '||comma||', 'i', 'got', 'six', 'minutes', 'left', 'on', 'that', 'meter', '||comma||', 'and', "i'm", 'not', 'budging', 'til', 'you', 'admit', 'you', 'stole', 'my', 'twenty', 'dollars', '||period||', '||leftparen||', 'smug', '||rightparen||', 'huh', '||dash||', 'hu', '||dash||', 'hur', '||comma||', "you're", 'not', 'so', 'tough', 'when', "you're", 'not', 'on', 'your', 'horse', '||comma||', 'are', 'you', 'ruthie', '||questionmark||', '||return||', '||return||', 'cashier:', 'your', "car's", 'on', 'fire', '||period||', '||return||', '||return||', 'george:', 'aah', '||exclammark||', 'fire', '||exclammark||', '||return||', '||return||', 'cashier:', '||leftparen||', 'after', 'george', '||rightparen||', 'merry', 'christmas', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'fire', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'your', 'hose', '||exclammark||', "where's", 'your', 'hose', '||questionmark||', '||exclammark||', '||return||', '||return||', 'florist:', 'cop', 'made', 'me', 'disconnect', 'it', '||period||', '||return||', '||return||', 'kramer:', 'jeez', '||exclammark||', 'what', 'happened', 'to', 'your', 'car', '||comma||', 'buddy', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'jon', 'voight', 'car', 'is', 'no', 'more', '||period||', '||return||', '||return||', 'kramer:', 'wow', '||period||', 'well', '||comma||', "don't", 'you', 'sweat', 'it', '||period||', 'you', 'can', 'use', 'my', 'car', 'any', 'time', 'you', 'want', 'to', '||period||', '||return||', '||return||', 'george:', 'no', 'kidding', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', 'kidding', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'thanks', '||period||', 'i', 'owe', 'you', 'a', 'big', 'one', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'merry', 'christmas', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'staring', 'at', 'the', 'wreck', '||rightparen||', 'whatever', '||period||', '||return||', '||return||', '[alex', 'theatre:', 'lobby]', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'm", 'here', '||period||', "where's", 'braun', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||comma||', "he's", 'not', 'here', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', "i'll", 'go', 'downtown', 'to', 'chinatown', 'with', 'him', '||comma||', 'but', 'that', 'is', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', "i'm", 'gonna', 'need', 'those', 'glasses', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', "they're", 'geoffrey', "haarwood's", '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'proffering', '||rightparen||', 'here', '||comma||', 'try', 'this', 'pair', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'these', 'are', 'really', 'strong', 'glasses', '||period||', '||return||', '||return||', 'lloyd:', 'hey', 'gum', '||dash||', 'buddy', '||period||', 'nice', 'frames', '||period||', 'you', 'ready', 'to', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'lacking', 'enthusiasm', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'clapping', 'jerry', 'on', 'the', 'back', '||rightparen||', 'oh', 'yeah', '||comma||', "he's", 'all', 'ready', 'to', 'go', '||period||', '||return||', '||return||', 'lloyd:', 'anybody', 'see', 'elaine', 'today', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'she', 'called', 'a', 'little', 'earlier', '||period||', "she's", 'coming', 'over', 'to', 'check', 'out', 'lost', 'and', 'found', '||period||', '||return||', '||return||', 'lloyd:', 'maybe', "i'll", 'stick', 'around', 'and', 'see', 'what', "she's", 'wearing', 'today', '||period||', 'or', 'not', 'wearing', '||comma||', 'if', 'you', 'know', 'what', 'i', 'mean', '||period||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', "let's", 'just', 'stick', 'around', '||period||', '||return||', '||return||', 'lloyd:', 'ah', '||comma||', 'tell', 'you', 'what', '||comma||', "they're", 'expecting', 'us', 'though', '||period||', 'lemme', 'just', 'grab', 'a', 'hotdog', 'here', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'lloyd:', "i'd", 'like', 'a', 'hotdog', '||comma||', 'please', '||period||', '||return||', '||return||', 'attendant:', 'are', 'you', 'outta', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'kramer:', 'wh', '||period||', '||period||', '||period||', 'wh', '||period||', '||period||', '||period||', 'wh', '||period||', '||period||', '||period||', "what's", 'the', 'problem', 'here', '||questionmark||', '||return||', '||return||', 'attendant:', 'this', "hotdog's", 'been', 'here', 'since', 'the', 'silent', 'era', '||period||', "you'd", 'have', 'to', 'be', 'insane', 'to', 'eat', 'it', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'this', 'man', 'is', 'not', 'insane', '||period||', 'now', "there's", 'nothing', 'wrong', 'with', 'it', 'or', 'you', '||period||', '||return||', '||return||', 'lloyd:', 'kramer', '||comma||', 'maybe', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "i'll", 'show', 'you', '||period||', '||leftparen||', 'slams', 'a', 'bill', 'down', 'on', 'the', 'counter', '||rightparen||', 'one', 'hotdog', 'please', '||period||', '||return||', '||return||', 'attendant:', '||leftparen||', 'on', 'your', 'head', 'be', 'it', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||comma||', "doesn't", 'that', 'smell', 'good', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'here', 'we', 'go', '||comma||', 'yeah', '||period||', '||leftparen||', 'he', 'takes', 'a', 'big', 'bite', '||rightparen||', 'mmm', '||comma||', 'oh', '||period||', "that's", 'delicious', '||period||', 'mmm', '||period||', "it's", 'a', 'perfectly', 'sane', 'food', 'to', 'eat', '||period||', '||leftparen||', 'he', 'takes', 'another', 'bite', '||rightparen||', '||return||', '||return||', 'kramer:', 'uhm', '||comma||', 'interesting', 'texture', '||period||', "it's", 'chewy', '||period||', '||leftparen||', 'he', 'half', '||dash||', 'coughs', '||comma||', 'half', '||dash||', 'retches', '||rightparen||', 'i', 'gotta', 'get', '||comma||', 'some', 'air', '||period||', '||return||', '||return||', '[street', 'outside', 'alex:', 'later]', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', "'scuse", 'me', '||comma||', "weren't", 'you', 'told', 'to', 'stop', 'using', 'that', 'hose', '||questionmark||', '||return||', '||return||', 'florist:', 'how', 'would', 'you', 'happen', 'to', 'know', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'uhm', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'florist:', '||leftparen||', 'accusing', '||rightparen||', "you're", 'that', 'lady', 'that', 'was', 'talking', 'to', 'the', 'cops', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'voice', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'hey', '||comma||', 'joe', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'wait', '||exclammark||', "you're", 'soaking', 'me', '||comma||', "you're", 'soaking', 'me', '||exclammark||', '||return||', '||return||', '[alex', 'theatre:', 'lobby]', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'hey', 'everybody', '||period||', '||return||', '||return||', 'lloyd:', 'whoah', '||comma||', 'elaine', '||exclammark||', 'once', 'again', '||comma||', "you've", 'managed', 'to', 'top', 'yourself', '||period||', "c'mon", 'jerry', '||comma||', "let's", 'go', '||period||', "car's", 'out', 'front', '||period||', '||return||', '||return||', 'jerry:', 'lloyd', '||questionmark||', '||return||', '||return||', 'jerry:', 'lloyd', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'exasperated', '||rightparen||', 'what', 'is', "lloyd's", 'problem', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'honey', '||comma||', 'i', 'know', "you're", 'trying', 'to', 'get', 'lloyd', 'to', 'notice', 'you', '||comma||', 'but', 'this', 'is', 'too', 'much', '||period||', 'parading', 'around', 'in', 'a', 'wet', 't', '||dash||', 'shirt', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||comma||', 'i', 'got', 'sprayed', 'with', 'a', 'hose', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', "i'm", 'sorry', '||comma||', 'but', 'the', 'alex', 'is', 'a', 'family', 'theatre', '||comma||', 'not', 'one', 'of', 'your', 'swing', 'joints', '||period||', '||return||', '||return||', 'deena:', 'so', '||comma||', 'you', 'want', 'my', 'father', 'to', 'pay', 'for', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'saw', 'him', '||period||', 'he', 'was', 'fiddling', 'with', 'the', 'engine', '||period||', 'god', 'knows', 'what', 'he', 'did', 'there', '||period||', '||return||', '||return||', 'deena:', 'and', 'i', 'suppose', 'lloyd', 'braun', 'had', 'something', 'to', 'do', 'with', 'it', 'too', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'lloyd', 'braun', '||period||', 'but', 'the', 'cashier', '||period||', '||return||', '||return||', 'deena:', 'what', 'cashier', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'remember', 'the', 'woman', 'on', 'the', 'horse', '||questionmark||', 'she', 'wanted', 'my', 'spot', '||period||', '||return||', '||return||', 'deena:', 'to', 'park', 'her', 'horse', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'she', "wasn't", 'on', 'the', 'horse', '||period||', '||return||', '||return||', 'deena:', 'so', '||comma||', 'your', 'car', 'caught', 'fire', 'because', 'of', 'my', 'father', 'and', 'the', 'woman', 'on', 'the', 'horse', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'points', '||rightparen||', 'and', 'him', '||exclammark||', '||return||', '||return||', 'deena:', 'the', 'man', 'with', 'the', 'flowers', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'the', 'flower', 'guy', '||period||', 'listen', '||comma||', 'i', 'know', 'this', 'all', 'sounds', 'a', 'little', 'crazy', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'it', '||period||', 'look', '||comma||', "that's", 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'deena:', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', 'seinfeld', '||period||', 'my', 'best', 'friend', '||period||', 'he', 'can', 'explain', 'all', 'of', 'this', '||period||', '||leftparen||', 'calls', 'to', 'jerry', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'over', 'here', 'jerry', '||period||', "it's", 'me', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'where', "y'going", '||questionmark||', "it's", '||period||', '||period||', '||period||', "what're", '||period||', '||period||', '||period||', '||return||', '||return||', 'deena:', '||leftparen||', 'doubtful', '||rightparen||', 'that', 'was', 'your', 'best', 'friend', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'but', 'he', "doesn't", 'wear', 'glasses', '||period||', '||return||', '||return||', 'deena:', 'that', 'man', 'was', 'wearing', 'glasses', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', "don't", 'you', 'see', '||period||', '||leftparen||', 'emphatic', '||rightparen||', 'he', 'was', 'doing', 'it', 'to', 'fool', 'lloyd', 'braun', '||exclammark||', '||return||', '||return||', 'lloyd:', "i'll", 'run', 'in', 'and', 'get', 'the', 'gum', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'lloyd:', 'got', 'any', 'money', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'handing', 'it', 'over', '||rightparen||', 'here', '||period||', '||return||', '||return||', 'lloyd:', '||leftparen||', 'climbing', 'out', 'of', 'the', 'car', '||rightparen||', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'deena', '||comma||', 'i', 'know', 'you', 'think', "i'm", 'crazy', '||comma||', 'but', "i'm", 'not', '||period||', 'this', 'is', 'just', 'a', 'series', 'of', 'bad', 'coincidences', '||period||', '||return||', '||return||', 'deena:', 'i', "don't", 'know', '||comma||', 'george', '||period||', 'i', "don't", 'know', 'what', 'to', 'believe', '||period||', '||return||', '||return||', 'george:', 'believe', 'me', '||comma||', 'i', 'am', 'not', 'crazy', '||period||', '||return||', '||return||', 'deena:', 'well', '||comma||', 'i', 'guess', "it's", 'possible', '||period||', '||return||', '||return||', 'lloyd:', 'here', "y'go", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'indistinct', '||rightparen||', 'got', 'all', 'this', '||questionmark||', '||return||', '||return||', 'lloyd:', 'yeah', '||period||', 'a', 'hundred', "dollar's", 'worth', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'incredulous', '||rightparen||', 'i', 'gave', 'you', 'a', 'hundred', 'dollars', '||questionmark||', '||exclammark||', '||return||', '||return||', 'lloyd:', 'you', 'sure', 'did', '||period||', 'am', 'i', 'crazy', '||comma||', 'or', 'is', 'that', 'a', 'lotta', 'gum', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'lotta', 'gum', '||exclammark||', '||return||', '||return||', 'kramer:', 'mr', 'hararwood', '||period||', 'found', 'your', 'glasses', '||period||', '||return||', '||return||', 'haarwood:', 'oh', '||comma||', 'splendid', '||period||', 'welcome', 'to', 'the', 'institute', 'for', 'the', 'preservation', 'of', 'motion', 'picture', 'costumes', 'and', 'wardrobe', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'the', 'i', '||period||', 'p', '||period||', 'm', '||period||', 'p', '||period||', 'c', '||period||', 'w', '||period||', '||return||', '||return||', 'haarwood:', 'well', 'eh', '||comma||', 'we', 'prefer', 'to', 'call', 'it', 'the', 'institute', '||period||', '||return||', '||return||', 'kramer:', 'is', 'that', 'from', 'henry', 'the', 'eighth', '||questionmark||', '||return||', '||return||', 'haarwood:', 'yes', '||comma||', 'yes', '||comma||', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', "we're", 'screening', 'that', 'tonight', 'at', 'the', 'alex', '||period||', 'do', 'you', 'think', 'that', 'i', 'could', 'wear', 'that', 'to', 'promote', 'the', 'theatre', '||questionmark||', '||return||', '||return||', 'haarwood:', 'well', '||comma||', 'i', '||period||', '||period||', '||period||', "i'd", 'love', 'to', 'lend', 'it', 'to', 'you', '||comma||', 'but', 'i', 'doubt', 'if', 'it', 'would', 'fit', 'a', 'man', 'of', 'your', 'impressive', '||comma||', 'raymond', 'massey', '||dash||', 'like', '||comma||', 'physique', '||period||', 'the', 'only', 'person', 'who', 'could', 'really', 'fit', 'into', 'this', 'costume', '||comma||', 'would', 'have', 'to', 'be', 'a', 'short', '||comma||', 'stocky', '||comma||', 'man', 'of', 'somewhat', 'generous', 'proportions', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'an', 'idea', 'occurs', '||rightparen||', 'you', "don't", 'say', '||period||', '||return||', '||return||', 'kramer:', "you're", 'really', 'helping', 'me', 'out', 'with', 'this', '||comma||', 'buddy', '||period||', 'kids', 'are', 'gonna', 'be', 'so', 'thrilled', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'you', 'really', 'cashed', 'in', 'on', 'that', 'favor', 'pretty', 'quick', '||period||', '||return||', '||return||', 'kramer:', 'remember', '||comma||', "you're", 'a', 'king', '||comma||', 'you', 'must', 'project', 'a', 'royal', 'bearing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', 'undertone', '||rightparen||', 'oh', '||comma||', "i'm", 'gonna', 'give', 'you', 'a', 'royal', 'bearing', '||period||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', 'lemme', 'get', 'a', 'pack', 'of', 'gum', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'handing', 'over', 'a', 'bill', '||rightparen||', 'can', 'i', 'get', 'a', 'pack', 'of', 'gum', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'guy:', 'i', 'beg', 'your', 'pardon', '||comma||', 'your', 'majesty', '||comma||', 'but', 'we', "don't", 'accept', 'bills', 'with', 'lipstick', 'on', 'the', 'president', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'huh', '||comma||', 'so', 'i', 'had', 'it', 'all', 'along', '||period||', 'how', "d'you", 'like', 'that', '||questionmark||', '||leftparen||', 'snorts', '||rightparen||', 'i', 'guess', 'i', 'owe', 'that', 'cashier', 'an', 'apology', '||period||', '||return||', '||return||', 'deena:', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'deena', '||comma||', "it's", 'not', 'what', 'you', 'think', '||period||', '||return||', '||return||', 'george:', 'th', '||period||', '||period||', '||period||', 'this', "isn't", 'mine', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'it', 'from', 'the', 'institute', '||period||', 'the', 'institute', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'dee', '||period||', '||period||', '||period||', 'deena', '||exclammark||', '||return||', '||return||', '[alex', 'theatre:', 'lobby]', '||return||', '||return||', 'kramer:', 'ahh', '||comma||', 'mr', 'haarwood', '||period||', 'well', '||comma||', 'you', 'certainly', 'know', 'how', 'to', 'dress', 'for', 'a', 'premiere', '||period||', '||return||', '||return||', 'haarwood:', 'well', '||comma||', 'thank', 'you', '||period||', 'uh', '||comma||', 'where', 'is', 'your', 'friend', 'king', 'henry', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'he', 'ran', 'away', '||period||', '||return||', '||return||', 'lloyd:', 'hey', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'i', 'need', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'that', 'button', 'looks', 'very', 'familiar', '||period||', '||return||', '||return||', 'haarwood:', 'yes', '||comma||', 'it', '||comma||', 'it', '||comma||', "it's", 'antique', 'ivory', '||period||', '||return||', '||return||', 'elaine:', 'i', '||comma||', 'i', 'think', "that's", 'my', 'button', '||period||', '||leftparen||', 'wanders', 'over', 'to', 'haarwood', '||rightparen||', 'you', 'know', '||comma||', "i've", 'been', 'looking', 'all', 'over', 'for', 'it', '||period||', 'did', '||comma||', 'did', 'you', 'find', 'it', 'here', '||questionmark||', '||return||', '||return||', 'haarwood:', 'yes', '||comma||', 'it', 'was', 'in', 'the', 'lost', 'and', 'found', '||period||', '||return||', '||return||', 'elaine:', 'shall', 'i', 'undo', 'it', '||questionmark||', '||return||', '||return||', 'haarwood:', 'oh', 'yes', '||comma||', 'of', 'course', 'you', 'can', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'haarwood:', "i'm", 'a', 'little', 'ticklish', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||leftparen||', 'giggly', '||rightparen||', 'tickle', '||comma||', 'tickle', '||period||', '||return||', '||return||', 'lloyd:', "we've", 'really', 'gotta', 'get', 'that', 'elaine', 'a', 'boyfriend', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'tell', 'me', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'thinking', '||rightparen||', 'i', "can't", 'believe', "i'm", 'going', 'out', 'with', 'this', 'guy', '||period||', 'wow', '||exclammark||', "he's", 'so', 'cool', '||period||', 'maybe', "he'll", 'write', 'a', 'song', 'about', 'me', '||period||', 'that', 'would', 'be', 'amazing', '||period||', 'oh', '||comma||', 'elaine', '||comma||', 'you', 'are', 'so', 'beautiful', '||period||', 'so', '||comma||', 'so', 'beautiful', '||period||', 'not', 'so', 'mention', 'your', 'personality', 'which', 'is', 'so', '||comma||', 'so', '||comma||', 'interesting', '||period||', 'if', 'you', 'want', '||comma||', 'you', 'can', 'quit', 'your', 'job', 'and', 'never', 'work', 'again', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'have', 'got', 'to', 'come', 'see', 'him', '||period||', 'he', 'is', 'so', 'terrific', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "he'll", 'write', 'a', 'song', 'about', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'right', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'like', 'that', 'really', 'matters', '||period||', '||return||', '||return||', 'jerry:', 'so', 'i', 'take', 'it', "he's", 'spongeworthy', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "he's", 'a', 'musician', '||period||', 'i', 'guess', "they're", 'supposed', 'to', 'be', 'very', '||comma||', 'you', 'know', '||comma||', 'uninhibited', 'and', 'free', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'actually', '||comma||', "he's", '||dash||', "he's", 'not', 'that', 'way', 'at', 'all', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'in', 'fact', '||comma||', 'he', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'moaning', '||rightparen||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'wanna', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "you're", 'among', 'friends', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', '||rightparen||', 'well', '||comma||', 'actually', '||comma||', 'he', '||comma||', 'um', '||comma||', "doesn't", 'really', 'like', 'to', 'do', '||period||', '||period||', '||period||', 'everything', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', "it's", 'surprising', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'it', 'is', '||period||', 'it', 'is', 'surprising', '||period||', 'does', 'that', 'bother', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', '||comma||', 'it', "doesn't", 'bother', 'me', '||period||', 'i', 'mean', '||comma||', 'it', 'would', 'be', 'nice', '||period||', "i'm", 'not', 'gonna', 'lie', 'to', 'you', 'and', 'say', 'it', "wouldn't", 'be', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', 'why', 'not', '||questionmark||', "you're", 'there', '||period||', '||return||', '||return||', 'elaine:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'said', 'he', 'was', 'just', 'coming', 'out', 'of', 'a', 'very', 'serious', 'relationship', '||period||', 'maybe', "he's", '||comma||', 'you', 'know', '||comma||', 'still', '||period||', '||period||', '||period||', '||period||', 'kind', 'of', '||period||', '||period||', '||period||', 'he', '||period||', '||period||', '||period||', 'not', 'gonna', 'happen', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||exclammark||', 'listen', '||comma||', 'i', 'need', 'you', 'to', 'come', 'downstairs', '||comma||', 'help', 'me', 'get', 'my', 'stuff', 'outta', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', 'what', 'stuff', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'came', 'from', 'the', 'price', 'club', '||period||', "i'm", 'loaded', 'up', '||comma||', 'baby', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'what', 'are', 'you', '||comma||', 'outta', 'your', 'mind', '||questionmark||', 'look', 'at', 'this', '||period||', 'what', 'did', 'you', 'buy', 'here', '||questionmark||', 'you', 'will', 'never', 'be', 'able', 'to', 'finish', 'all', 'this', 'stuff', '||period||', '||return||', '||return||', 'kramer:', 'course', 'i', 'will', '||period||', 'these', 'are', 'staples', '||period||', '||return||', '||return||', 'jerry:', 'a', 'four', '||dash||', 'pound', 'can', 'of', 'black', 'olives', '||questionmark||', "that's", 'a', 'staple', '||questionmark||', '||return||', '||return||', 'kramer:', 'lindsay', 'olives', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'a', 'forty', '||dash||', 'eight', 'pack', 'of', 'eggo', 'waffles', '||questionmark||', 'a', 'gallon', 'of', 'barbecue', 'sauce', '||questionmark||', 'ten', 'pounds', 'of', 'cocktail', 'meatballs', '||questionmark||', '||return||', '||return||', 'kramer:', '$17', '||period||', '50', '||period||', 'you', "can't", 'beat', 'that', '||period||', '||return||', '||return||', 'jerry:', 'look', '||period||', '||period||', '||period||', 'look', 'at', 'this', 'can', 'of', 'tuna', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'star', 'kist', '||comma||', 'jerry', '||period||', 'most', 'tuna', "don't", 'make', 'their', 'cut', '||period||', '||return||', '||return||', 'jerry:', 'this', "isn't", 'for', 'a', 'person', '||period||', 'this', 'is', 'for', 'biosphere', '3', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'clyde', '||exclammark||', '||return||', '||return||', 'clyde:', 'hey', '||comma||', 'kramer', '||exclammark||', "what's", 'happening', '||comma||', 'dude', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'ahh', '||period||', 'hey', '||comma||', 'this', 'is', 'jerry', 'here', '||period||', '||return||', '||return||', 'clyde:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'clyde', '||comma||', 'he', 'plays', 'backup', 'with', 'john', 'germaine', '||period||', '||return||', '||return||', 'jerry:', 'john', 'germaine', '||questionmark||', 'that', 'is', 'amazing', '||period||', 'i', 'was', 'just', 'talking', 'about', 'him', 'upstairs', 'with', 'elaine', '||period||', '||return||', '||return||', 'clyde:', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', 'my', 'friend', 'elaine', 'and', 'him', 'are', "goin'", 'out', '||period||', "they're", 'pretty', 'hot', 'and', 'heavy', '||period||', '||return||', '||return||', 'clyde:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'how', "'bout", 'giving', 'me', 'a', 'hand', '||questionmark||', 'you', 'know', '||comma||', 'bring', 'some', 'of', 'this', 'stuff', 'upstairs', '||period||', '||return||', '||return||', 'clyde:', 'oh', '||comma||', 'sorry', 'kramer', '||comma||', 'i', 'got', 'to', 'watch', 'the', 'hands', '||period||', 'my', 'hands', 'are', 'my', 'life', '||period||', '||return||', '||return||', 'estelle:', 'georgie', '||comma||', 'can', 'you', 'zip', 'me', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'yeah', '||comma||', 'one', 'second', '||period||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'all', 'right', '||period||', "let's", 'not', 'get', 'into', 'panic', 'mode', '||exclammark||', "let's", 'not', 'make', 'a', 'big', 'deal', 'outta', 'this', 'thing', 'or', "we're", 'never', 'gonna', 'get', 'through', 'this', 'night', '||period||', '||return||', '||return||', 'estelle:', 'well', '||comma||', "i'm", 'meeting', 'your', 'in', '||dash||', 'laws', '||comma||', 'i', 'think', 'i', 'should', 'look', 'nice', '||period||', '||return||', '||return||', 'george:', 'my', 'in', '||dash||', 'laws', '||period||', 'oh', '||comma||', 'my', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'so', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', 'your', 'old', 'man', 'can', 'look', 'pretty', 'good', 'when', 'he', 'wants', 'to', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', "don't", 'like', 'that', 'tie', '||period||', '||return||', '||return||', 'frank:', "what's", 'the', 'matter', 'with', 'this', 'tie', '||questionmark||', "i've", 'hardly', 'worn', 'it', '||period||', '||return||', '||return||', 'estelle:', "it's", 'too', 'thin', '||period||', "they're", 'wearing', 'wide', 'now', '||period||', '||return||', '||return||', 'frank:', 'how', 'do', 'you', 'know', 'what', 'kind', 'of', 'ties', 'they', 'wear', '||questionmark||', '||return||', '||return||', 'estelle:', 'go', 'to', 'any', 'office', 'building', 'on', '7th', 'avenue', 'and', 'tell', 'me', 'if', "there's", 'anyone', 'there', 'wearing', 'a', 'thin', 'tie', 'like', 'that', '||period||', 'go', 'ahead', '||exclammark||', '||return||', '||return||', 'frank:', 'oh', '||comma||', 'get', 'the', 'hell', 'outta', 'here', '||period||', '7th', 'avenue', '||period||', '||return||', '||return||', 'estelle:', 'george', '||comma||', 'do', 'you', 'think', 'he', 'should', 'wear', 'a', 'tie', 'like', 'that', '||questionmark||', '||return||', '||return||', 'frank:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'he', 'should', 'wear', 'whatever', 'tie', 'he', 'wants', '||period||', '||return||', '||return||', 'frank:', 'we', 'gotta', 'stop', 'off', 'and', 'pick', 'up', 'a', 'marble', 'rye', 'from', "schnitzer's", '||period||', '||return||', '||return||', 'estelle:', "it's", 'out', 'of', 'our', 'way', '||period||', 'why', "can't", 'we', 'pick', 'up', 'something', 'at', "lord's", '||questionmark||', "it's", 'right', 'over', 'here', '||period||', '||return||', '||return||', 'frank:', 'no', '||exclammark||', 'we', 'have', 'to', 'go', 'to', "schnitzer's", '||exclammark||', "i'll", 'show', 'these', 'people', 'something', 'about', 'taste', '||exclammark||', '||return||', '||return||', 'george:', 'this', 'is', 'gonna', 'be', 'fun', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "you'll", 'never', 'guess', 'who', 'i', 'bumped', 'into', '||period||', 'this', 'guy', 'clyde', '||period||', "he's", 'in', 'your', 'friend', 'john', "germaine's", 'band', 'there', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'did', 'he', 'have', 'to', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', 'i', 'told', 'him', 'you', 'two', 'were', 'pretty', 'hot', 'and', 'heavy', '||period||', '||return||', '||return||', 'elaine:', 'hot', 'and', 'heavy', '||questionmark||', 'you', 'said', 'hot', 'and', 'heavy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'do', 'that', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'if', 'he', 'tells', 'john', '||questionmark||', 'then', "john's", 'gonna', 'think', 'that', 'i', 'think', 'that', "we're", 'hot', 'and', 'heavy', '||period||', 'i', "don't", 'want', 'john', 'thinking', 'that', "i'm", 'hot', 'and', 'heavy', 'if', "he's", 'not', 'hot', 'and', 'heavy', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||return||', '||return||', 'elaine:', "i'm", 'trying', 'to', 'get', 'a', 'little', 'squirrel', 'to', 'come', 'over', 'to', 'me', 'here', '||period||', 'i', "don't", 'wanna', 'make', 'any', 'big', '||comma||', 'sudden', 'movements', '||period||', "i'll", 'frighten', 'him', 'away', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'clyde', 'might', 'not', 'tell', 'him', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'should', 'have', 'helped', 'kramer', 'with', 'those', 'packages', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', '||return||', '||return||', 'dennis:', 'let', 'me', 'give', 'you', 'a', 'hand', '||period||', 'hey', '||comma||', 'kramer', '||period||', 'i', 'wonder', '||comma||', 'could', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', "i'm", 'taking', 'the', 'family', 'to', 'disneyworld', 'next', 'week', '||period||', 'i', 'wonder', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'dennis:', 'i', 'wonder', '||comma||', 'could', 'you', 'pick', 'up', 'my', 'mail', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'sure', '||period||', 'sure', '||period||', '||return||', '||return||', 'dennis:', 'in', 'fact', '||comma||', 'you', 'know', 'what', '||comma||', 'how', 'would', 'you', 'like', 'to', 'take', 'my', 'hansom', 'cab', 'for', 'the', 'week', '||questionmark||', '||return||', '||return||', 'kramer:', 'drive', 'the', 'horse', '||questionmark||', '||return||', '||return||', 'dennis:', "it'll", 'just', 'be', 'sitting', 'there', '||period||', 'you', 'can', 'really', 'clean', 'up', '||period||', '500', 'bucks', 'a', 'day', '||period||', "i'll", 'split', 'it', 'with', 'ya', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'giddyup', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'delicious', '||comma||', 'mrs', '||period||', 'ross', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'oh', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'what', 'are', 'you', 'complimenting', 'her', 'for', '||questionmark||', 'she', "didn't", 'make', 'it', 'rowenna', 'did', '||period||', '||return||', '||return||', 'frank:', 'what', 'is', 'this', 'thing', 'anyway', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', "it's", 'cornish', 'gamehen', '||period||', '||return||', '||return||', 'frank:', 'what', 'is', 'that', '||comma||', 'like', 'a', 'little', 'chicken', '||questionmark||', '||return||', '||return||', 'george:', "it's", '||comma||', 'uh', '||comma||', "it's", 'not', 'a', 'little', 'chicken', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'little', 'chicken', '||period||', "it's", 'a', 'gamebird', '||period||', '||return||', '||return||', 'frank:', 'gamebird', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'frank:', 'what', 'do', 'you', 'mean', '||questionmark||', 'like', '||comma||', 'you', '||dash||', 'you', 'hunt', 'it', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'yes', '||period||', '||return||', '||return||', 'frank:', 'how', 'hard', 'could', 'it', 'be', 'to', 'kill', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', "couldn't", 'help', 'but', 'notice', 'that', 'you', 'have', 'quite', 'a', 'library', 'in', 'there', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'if', 'i', 'had', 'a', 'dime', 'for', 'every', 'book', "he's", 'actually', 'read', '||comma||', '||leftparen||', 'laughing', '||rightparen||', "i'd", 'be', 'broke', '||period||', '||return||', '||return||', 'susan:', 'more', 'wine', 'anyone', '||questionmark||', '||return||', '||return||', 'frank:', 'yeah', '||period||', "i'll", 'take', 'some', '||period||', '||return||', '||return||', 'susan:', 'hmmm', '||questionmark||', '||return||', '||return||', 'frank:', 'thank', 'you', '||period||', '||return||', '||return||', 'susan:', 'how', 'do', 'you', 'like', 'the', 'merlot', '||questionmark||', '||return||', '||return||', 'estelle:', 'merlot', '||questionmark||', 'i', 'never', 'heard', 'of', 'it', '||period||', 'did', 'they', 'just', 'invent', 'it', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'oh', '||comma||', 'mother', '||period||', '||return||', '||return||', 'george:', "she's", '||comma||', 'uh', '||comma||', "she's", 'heard', 'of', 'merlot', '||period||', '||return||', '||return||', 'frank:', 'let', 'me', 'understand', '||comma||', 'you', 'got', 'the', 'hen', '||comma||', 'the', 'chicken', 'and', 'the', 'rooster', '||period||', 'the', 'rooster', 'goes', 'with', 'the', 'chicken', '||period||', 'so', '||comma||', "who's", 'having', 'sex', 'with', 'the', 'hen', '||questionmark||', '||return||', '||return||', 'george:', 'why', "don't", 'we', 'talk', 'about', 'it', 'another', 'time', '||period||', '||return||', '||return||', 'frank:', 'but', 'you', 'see', 'my', 'point', 'here', '||questionmark||', 'you', 'only', 'hear', 'of', 'a', 'hen', '||comma||', 'a', 'rooster', 'and', 'a', 'chicken', '||period||', "something's", 'missing', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', "something's", 'missing', 'all', 'right', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', "they're", 'all', 'chickens', '||period||', 'the', 'rooster', 'has', 'sex', 'with', 'all', 'of', 'them', '||period||', '||return||', '||return||', 'frank:', "that's", 'perverse', '||period||', '||return||', '||return||', 'george:', 'did', 'anybody', 'see', 'firestorm', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'firestorm', '||comma||', "that's", 'a', 'hell', 'of', 'a', 'picture', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'remember', 'when', 'they', 'had', 'the', 'helicopter', 'land', 'on', 'top', 'of', 'that', 'car', '||dash||', '||dash||', '||return||', '||return||', 'frank:', 'hey', '||exclammark||', 'hey', '||exclammark||', 'come', 'on', '||exclammark||', 'come', 'on', '||exclammark||', 'i', "haven't", 'seen', 'it', 'yet', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'it', "doesn't", 'have', 'anything', 'to', 'do', 'with', 'the', 'plot', '||exclammark||', '||return||', '||return||', 'frank:', 'still', '||exclammark||', 'still', '||exclammark||', 'i', 'like', 'to', 'go', 'in', 'fresh', '||exclammark||', '||return||', '||return||', 'george:', 'oh', 'mother', 'of', 'god', '||period||', '||return||', '||return||', 'kramer:', 'of', 'course', '||comma||', 'uh', '||comma||', 'this', 'is', 'central', 'park', '||period||', 'uh', '||comma||', 'this', 'was', 'designed', 'in', '1850', 'by', 'joe', 'peppitone', '||period||', 'um', '||comma||', 'built', 'during', 'the', 'civil', 'war', 'so', 'the', 'northern', 'armies', 'could', 'practice', 'fighting', 'on', '||period||', '||period||', '||period||', 'on', 'grass', '||period||', 'oh', '||comma||', 'yeah', '||period||', 'giddyup', '||period||', 'on', 'rusty', '||exclammark||', '||return||', '||return||', 'john:', 'thank', 'you', '||period||', 'now', '||comma||', "i'd", 'like', 'to', 'play', 'something', 'th', '||dash||', '||dash||', 'well', '||comma||', 'actually', '||comma||', "it's", 'my', 'latest', 'so', "it's", 'nice', 'and', 'fresh', '||period||', "it's", 'called', '||quotemark||', 'hot', 'and', 'heavy', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'thank', 'god', "that's", 'over', '||period||', '||return||', '||return||', 'estelle:', 'the', 'mother', 'seems', 'to', 'hit', 'the', 'sauce', 'pretty', 'hard', '||period||', 'i', "didn't", 'like', 'that', '||period||', '||return||', '||return||', 'frank:', 'and', 'who', "doesn't", 'serve', 'cake', 'after', 'a', 'meal', '||questionmark||', 'what', 'kind', 'of', 'people', '||questionmark||', 'would', 'it', 'kill', 'them', 'to', 'put', 'out', 'a', 'pound', 'cake', '||questionmark||', 'something', '||exclammark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'they', "didn't", 'give', 'you', 'a', 'piece', 'of', 'cake', '||questionmark||', 'big', 'deal', '||period||', '||return||', '||return||', 'estelle:', 'it', 'is', 'a', 'big', 'deal', '||period||', "you're", 'supposed', 'to', 'serve', 'cake', 'after', 'a', 'meal', '||period||', "i'm", 'sorry', '||period||', "it's", 'impolite', '||period||', '||return||', '||return||', 'frank:', 'not', 'impolite', '||period||', '||period||', '||period||', "it's", 'stupid', '||comma||', "that's", 'what', 'it', 'is', '||period||', 'you', 'gotta', 'be', 'stupid', 'to', 'do', 'something', 'like', 'that', '||exclammark||', '||return||', '||return||', 'estelle:', 'your', "father's", 'absolutely', 'right', '||period||', "we're", 'sitting', 'there', 'like', 'idiots', 'drinking', 'coffee', 'without', 'a', 'piece', 'of', 'cake', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'is', 'this', '||questionmark||', 'the', 'marble', 'rye', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'oh', '||comma||', 'dear', '||period||', 'i', 'forgot', 'to', 'put', 'out', 'that', '||dash||', 'that', 'bread', 'they', 'brought', '||period||', '||return||', '||return||', 'estelle:', 'we', 'forgot', 'to', 'bring', 'it', 'in', '||period||', '||return||', '||return||', 'frank:', 'no', '||comma||', 'i', 'brought', 'it', 'in', '||period||', 'they', 'never', 'put', 'it', 'out', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'susan:', 'i', "don't", 'know', '||period||', "where'd", 'you', 'put', 'it', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'right', 'over', 'there', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', "it's", 'gone', '||period||', '||return||', '||return||', 'george:', 'you', 'stole', 'the', 'bread', '||questionmark||', '||return||', '||return||', 'frank:', 'what', 'do', 'you', 'mean', 'stole', '||questionmark||', "it's", 'my', 'bread', '||period||', 'they', "didn't", 'eat', 'it', '||period||', 'why', 'should', 'i', 'leave', 'it', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'we', 'brought', 'it', 'for', 'them', '||exclammark||', '||return||', '||return||', 'frank:', 'apparently', '||comma||', 'it', "wasn't", 'good', 'enough', 'for', 'them', 'to', 'serve', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'is', 'it', 'possible', 'they', 'took', 'it', 'back', '||questionmark||', '||return||', '||return||', 'susan:', 'who', 'would', 'bring', 'a', 'bread', 'and', 'take', 'it', 'back', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'those', 'people', '||comma||', "that's", 'who', '||period||', 'i', 'think', "they're", 'sick', '||period||', '||return||', '||return||', 'estelle:', 'people', 'take', 'buses', 'to', 'get', 'that', 'rye', '||period||', '||return||', '||return||', 'george:', 'maybe', 'they', 'forgot', 'to', 'put', 'it', 'out', '||exclammark||', '||return||', '||return||', 'frank:', 'aw', '||comma||', 'they', "didn't", 'forget', 'to', 'put', 'it', 'out', '||exclammark||', "it's", 'deliberate', '||exclammark||', 'deliberate', '||comma||', 'i', 'tell', 'ya', '||exclammark||', '||return||', '||return||', 'jerry:', 'he', 'stole', 'back', 'the', 'rye', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'why', '||questionmark||', 'why', '||questionmark||', "'cause", "he's", 'off', 'his', 'rocker', '||exclammark||', "that's", 'why', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'do', 'the', "ross's", 'know', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', "they're", 'all', 'very', 'suspicious', '||period||', '||return||', '||return||', 'jerry:', 'why', "wouldn't", 'they', 'be', '||questionmark||', 'a', 'rye', 'bread', "doesn't", 'just', 'disappear', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', 'because', 'of', 'that', 'stupid', 'rye', 'bread', '||comma||', 'i', 'gotta', 'keep', 'them', 'all', 'separated', 'for', 'the', 'rest', 'of', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', 'bad', 'situation', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'what', "i'd", 'like', 'to', 'do', '||period||', "i'd", 'like', 'to', 'replace', 'that', 'rye', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'replace', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'you', 'go', 'out', '||comma||', 'you', 'get', 'another', 'rye', '||period||', 'of', 'course', '||comma||', 'it', 'would', 'have', 'to', 'be', 'the', 'same', 'one', 'from', "schnitzer's", '||period||', 'you', 'put', 'it', 'in', 'the', 'kitchen', 'somewhere', 'and', 'you', 'say', 'ohh', '||exclammark||', 'there', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'there', 'ya', 'go', '||period||', "what's", 'so', 'hard', 'about', 'that', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'so', 'hard', 'about', 'that', '||questionmark||', 'how', 'am', 'i', 'supposed', 'to', 'get', 'it', 'in', 'there', '||questionmark||', 'i', "can't", 'just', 'walk', 'in', 'with', 'it', '||period||', 'i', 'have', 'to', 'get', 'the', 'rosses', 'out', 'of', 'the', 'apartment', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'all', 'right', '||period||', "don't", 'panic', '||period||', "let's", 'just', 'think', 'about', 'it', '||period||', 'get', 'the', "ross's", 'out', 'of', 'the', 'apartment', '||period||', 'that', "can't", 'be', 'so', 'hard', '||period||', 'wait', 'a', 'minute', '||period||', 'wait', 'a', 'second', '||period||', 'wait', 'a', 'second', '||exclammark||', 'you', 'know', '||comma||', "kramer's", 'been', 'driving', 'that', 'hansom', 'cab', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "kramer'll", 'take', 'them', 'around', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'george:', 'and', "it's", 'their', 'anniversary', 'friday', 'night', '||period||', 'i', 'could', 'send', 'them', 'for', 'a', 'hansom', 'cab', 'ride', '||period||', 'y', '||dash||', '||dash||', 'you', 'think', "they'd", 'like', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'kidding', '||questionmark||', 'people', 'love', 'it', '||period||', "there's", 'something', 'about', 'the', 'clip', 'clop', '||comma||', 'clip', 'clop', '||period||', "they're", 'nuts', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'they', 'go', 'off', 'for', 'the', 'ride', '||comma||', 'by', 'the', 'time', 'they', 'come', 'back', 'the', 'bread', 'is', 'there', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'susan', '||questionmark||', '||return||', '||return||', 'george:', "she's", 'working', 'late', 'that', 'night', '||period||', "we're", '||dash||', 'were', 'supposed', 'to', 'have', 'dinner', 'with', 'everybody', 'at', 'eight', "o'clock", 'so', "i'll", 'set', 'up', 'the', 'ride', 'for', 'seven', "o'clock", '||period||', '||return||', '||return||', 'jerry:', 'beautiful', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'think', "kramer'll", 'do', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'of', 'course', "i'll", 'do', 'it', '||period||', "i'd", 'be', 'happy', 'to', '||period||', 'so', '||comma||', 'all', 'i', 'gotta', 'do', 'is', 'be', 'there', 'at', 'seven', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'just', 'take', "'em", 'out', 'and', 'ride', "'em", 'around', 'for', 'about', '||period||', '||period||', 'half', 'an', 'hour', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'are', 'you', 'doing', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'beef', '||dash||', 'a', '||dash||', 'reeno', '||period||', '||period||', 'and', 'i', 'got', 'fifty', 'cans', '||period||', 'you', 'want', 'some', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', 'thanks', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'think', 'i', 'bought', 'too', 'much', 'at', 'that', 'price', 'club', '||period||', 'i', "don't", 'have', 'any', 'room', 'for', 'it', 'all', '||period||', '||return||', '||return||', 'george:', 'hold', 'on', '||period||', 'hold', 'on', '||period||', 'wait', 'a', 'minute', '||period||', 'how', 'am', 'i', 'gonna', 'get', 'the', 'rye', 'bread', 'into', 'the', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'put', 'it', 'under', 'your', 'shirt', '||period||', '||return||', '||return||', 'george:', 'have', 'you', 'ever', 'seen', 'a', "schnitzer's", 'rye', '||questionmark||', 'it', '||dash||', "it's", 'huge', '||exclammark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'ya', 'what', '||comma||', "i'll", 'bring', 'it', 'over', '||period||', "i'll", 'stop', 'by', "schnitzer's", '||comma||', "i'll", 'come', 'by', 'five', 'after', 'seven', 'right', 'after', 'they', 'leave', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'all', 'locking', 'in', 'now', '||period||', 'it', 'is', 'all', 'locking', 'in', '||exclammark||', '||leftparen||', 'laughing', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'is', 'that', 'your', 'horse', 'outside', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "that's", 'rusty', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', "he's", 'outside', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', 'come', 'on', '||period||', 'i', 'wanna', 'go', 'see', 'him', '||period||', '||return||', '||return||', 'kramer:', 'you', 'wanna', 'go', 'see', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hey', '||exclammark||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', "i'll", 'show', 'ya', 'rusty', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'lainey', '||comma||', 'wanna', 'see', 'the', 'horsey', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'really', 'did', 'me', 'in', 'this', 'time', '||comma||', "didn't", 'ya', '||questionmark||', 'first', 'guy', 'i', 'like', 'in', 'a', 'really', 'long', 'time', '||period||', 'i', 'mean', '||comma||', "we're", 'getting', 'along', '||comma||', 'everything', 'is', 'just', 'great', '||period||', 'i', 'mean', '||comma||', 'all', 'right', '||comma||', 'so', 'he', "doesn't", 'do', '||period||', '||period||', '||period||', 'everything', '||comma||', 'and', 'then', 'you', 'have', 'to', 'come', 'along', 'with', 'your', 'hot', 'and', 'your', 'heavy', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'think', 'clyde', 'told', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'wrote', 'a', 'song', 'about', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', "it's", 'a', 'good', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', "it's", 'not', 'a', 'good', 'thing', '||exclammark||', "it's", 'a', 'bad', 'thing', '||exclammark||', 'do', 'you', 'know', 'what', 'this', 'is', 'like', '||questionmark||', 'to', 'have', 'no', 'control', 'over', 'a', 'relationship', '||questionmark||', 'and', '||dash||', 'and', 'you', 'feel', 'sick', 'to', 'your', 'stomach', 'all', 'the', 'time', '||questionmark||', 'do', 'you', 'know', 'what', "that's", 'like', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', "i've", 'read', 'articles', 'and', 'i', 'must', 'say', 'it', '||comma||', "doesn't", 'sound', 'very', 'pleasant', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'one', 'of', 'these', 'days', '||comma||', 'something', 'terrible', 'is', 'gonna', 'happen', 'to', 'you', '||period||', 'it', 'has', 'to', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||period||', "i'm", 'gonna', 'be', 'just', 'fine', '||comma||', 'but', 'as', 'far', 'as', 'your', 'situation', '||comma||', "you're", 'seeing', 'him', 'tonight', 'so', 'talk', 'to', 'him', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", '||exclammark||', "he's", 'got', 'a', 'big', 'showcase', 'for', 'record', 'producers', 'at', 'his', 'late', 'show', 'tonight', '||period||', 'i', "don't", 'wanna', 'upset', 'him', '||period||', 'aw', '||comma||', 'what', 'the', 'hell', '||comma||', "i'll", 'upset', 'him', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'yeah', 'george', '||comma||', 'i', 'gotta', 'tell', 'ya', '||comma||', 'this', 'is', 'a', 'very', 'nice', 'gesture', '||period||', 'we', 'really', 'appreciate', 'it', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', 'well', '||comma||', 'you', 'know', '||comma||', "it's", 'your', 'anniversary', '||period||', "it's", '||dash||', "it's", 'the', 'least', 'i', 'can', 'do', '||period||', 'i', '||dash||', 'i', 'just', 'want', 'you', 'guys', 'to', 'go', 'out', 'and', 'have', 'a', 'good', 'time', '||period||', 'ha', 'ha', '||period||', 'so', '||comma||', 'you', 'think', 'we', 'should', '||comma||', 'uh', '||comma||', 'we', 'should', 'get', 'downstairs', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'oh', '||comma||', 'we', 'got', 'about', 'twenty', 'minutes', '||period||', 'you', '||comma||', 'uh', '||comma||', 'seem', 'a', 'little', 'nervous', 'george', '||period||', 'anything', 'wrong', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'nothing', '||period||', "i'm", 'fine', '||period||', "everything's", 'fine', '||period||', 'fine', '||period||', 'just', 'get', 'a', 'little', 'nervous', 'on', 'the', 'weekends', '||comma||', "that's", 'all', '||period||', 'could', 'i', '||comma||', 'uh', '||comma||', 'could', 'i', 'get', 'a', 'glass', 'of', 'water', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', "we've", 'got', 'water', '||period||', 'i', "don't", 'think', 'we', 'have', 'any', 'bread', '||comma||', 'but', "we've", 'got', 'water', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'there', 'ya', 'go', '||period||', "that's", 'beef', '||dash||', 'a', '||dash||', 'reeno', '||period||', '||leftparen||', 'singing', '||rightparen||', "i'm", 'so', 'keen', '||dash||', 'o', 'on', 'beef', '||dash||', 'a', '||dash||', 'reeno', 'what', 'a', 'delicious', 'cuisine', '||dash||', 'o', 'fit', 'for', 'a', 'king', 'and', 'queen', '||dash||', 'o', '||exclammark||', 'yeah', '||period||', 'eat', 'up', '||period||', 'i', 'got', 'thirty', 'four', 'more', 'cans', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'nice', 'night', 'for', 'a', 'hansom', 'cab', 'ride', '||comma||', "'ay", 'george', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'you', 'know', '||comma||', 'george', 'we', "haven't", 'done', 'anything', 'romantic', 'like', 'this', 'in', '||period||', '||period||', '||period||', '||period||', 'years', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thinking', '||rightparen||', 'oh', 'my', 'god', '||comma||', "it's", '701', '||period||', 'what', 'have', 'i', 'done', '||questionmark||', 'my', 'whole', 'plan', 'is', 'depending', 'on', 'kramer', '||questionmark||', 'have', 'i', 'learned', 'nothing', '||questionmark||', 'how', 'could', 'i', 'make', 'such', 'a', 'stupid', 'mistake', '||questionmark||', "he'll", 'never', 'show', 'up', '||exclammark||', '||return||', '||return||', 'kramer:', 'ah', 'ha', '||exclammark||', '||return||', '||return||', 'george:', 'there', 'he', 'is', '||period||', 'right', 'on', 'time', 'as', 'usual', '||period||', '||return||', '||return||', 'counter', 'woman:', '53', '||period||', '||return||', '||return||', 'mabel:', '53', '||period||', "i'd", 'like', 'a', 'marble', 'rye', '||comma||', 'no', 'plastic', '||comma||', 'in', 'a', 'bag', '||period||', '||return||', '||return||', 'counter', 'woman:', 'ah', '||exclammark||', "you're", 'lucky', '||period||', "it's", 'our', 'last', 'one', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', "that's", 'your', 'last', 'marble', 'rye', '||questionmark||', '||return||', '||return||', 'counter', 'woman:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', "there's", 'none', 'left', '||questionmark||', '||return||', '||return||', 'counter', 'woman:', "that's", 'what', 'i', 'said', '||period||', 'number', '54', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'excuse', 'me', '||period||', 'i', 'know', 'this', 'is', 'gonna', 'sound', 'crazy', 'but', 'i', '||dash||', 'i', 'have', 'to', 'have', 'that', 'rye', '||period||', "it's", 'a', '||dash||', "it's", 'a', 'long', 'story', '||comma||', 'but', 'a', "person's", 'whole', 'future', 'may', 'depend', 'on', 'it', '||period||', '||return||', '||return||', 'mabel:', 'well', '||comma||', "i'm", 'sorry', '||comma||', 'but', 'you', 'should', 'have', 'got', 'here', 'earlier', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'well', '||comma||', 'be', 'that', 'as', 'it', 'may', '||comma||', 'if', 'you', 'could', 'just', 'find', 'it', 'in', 'yourself', 'to', 'give', 'it', 'up', '||period||', '||return||', '||return||', 'mabel:', "you're", 'not', 'getting', 'this', 'rye', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'all', 'right', '||period||', "i'll", 'tell', 'ya', 'what', "i'm", 'gonna', 'do', '||comma||', 'i', 'will', 'give', 'you', 'double', 'what', 'you', 'paid', 'for', 'it', '||period||', '||return||', '||return||', 'mabel:', "you're", 'in', 'my', 'way', '||exclammark||', '||return||', '||return||', 'kramer:', 'ahh', '||exclammark||', 'mr', '||period||', 'ross', '||period||', 'mrs', '||period||', 'ross', '||period||', 'my', 'name', 'is', 'cosmo', 'and', "i'll", 'be', 'your', 'driver', 'for', 'this', 'evening', '||period||', 'we', 'have', 'blankets', 'for', 'your', 'comfort', '||period||', 'i', 'also', 'have', 'hot', 'chocolate', 'if', 'the', 'mood', 'should', 'strike', 'you', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'my', 'favorite', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'if', "we're", 'all', 'set', 'to', 'go', '||comma||', 'why', "don't", 'you', 'two', 'hop', 'aboard', 'and', 'let', 'me', 'show', 'you', 'a', 'little', 'taste', 'of', 'old', 'new', 'york', '||period||', '||period||', '||period||', 'the', 'way', 'it', 'once', 'was', '||period||', 'oh', '||comma||', 'happy', 'anniversary', '||period||', 'on', '||comma||', 'rusty', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'look', '||comma||', "i'll", 'tell', 'ya', 'what', '||comma||', "i'll", 'give', 'you', '$50', '||period||', 'now', '||comma||', 'be', 'reasonable', 'you', 'cannot', 'turn', 'down', '$50', 'for', 'a', '$6', 'rye', '||period||', '||return||', '||return||', 'mabel:', 'no', '||questionmark||', 'watch', 'me', '||period||', '||return||', '||return||', 'jerry:', 'give', 'me', 'that', 'rye', '||exclammark||', '||return||', '||return||', 'mabel:', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'want', 'that', 'rye', '||comma||', 'lady', '||exclammark||', '||return||', '||return||', 'mabel:', 'help', '||exclammark||', 'someone', 'help', '||exclammark||', '||return||', '||return||', 'jerry:', 'shut', 'up', '||comma||', 'you', 'old', 'bag', '||exclammark||', '||return||', '||return||', 'mabel:', 'stop', 'thief', '||exclammark||', 'stop', 'him', '||exclammark||', "he's", 'got', 'my', 'marble', 'rye', '||exclammark||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', 'to', 'just', 'show', 'up', 'unexpectedly', 'like', 'this', '||period||', 'i', 'know', "you've", 'got', 'your', 'big', 'showcase', 'coming', 'up', 'later', 'and', 'i', 'know', 'how', 'important', 'it', 'is', '||comma||', 'i', 'know', 'how', 'hard', 'you', 'work', 'for', 'this', 'night', '||comma||', 'but', 'i', 'just', 'had', 'to', 'tell', 'you', 'that', 'i', 'never', 'told', 'jerry', 'hot', 'and', 'heavy', '||period||', 'i', "didn't", 'think', 'we', 'were', 'hot', 'and', 'heavy', '||period||', 'i', 'mean', '||dash||', 'i', 'mean', '||comma||', "who's", 'hot', 'and', "who's", 'heavy', '||questionmark||', '||return||', '||return||', 'john:', 'whoa', '||period||', 'hold', 'on', '||comma||', 'elaine', 'i', '||period||', '||period||', '||period||', '||period||', '||period||', "i'm", 'kinda', 'disappointed', '||period||', '||return||', '||return||', 'elaine:', 'disappointed', '||questionmark||', '||return||', '||return||', 'john:', 'yeah', '||period||', 'i', 'mean', '||comma||', 'i', 'was', 'excited', 'when', 'clyde', 'told', 'me', 'that', '||period||', '||return||', '||return||', 'elaine:', 'you', 'were', '||questionmark||', '||return||', '||return||', 'john:', 'absolutely', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', 'whew', '||exclammark||', 'i', 'am', 'so', 'relieved', '||exclammark||', '||return||', '||return||', 'john:', 'listen', '||comma||', 'uh', '||comma||', "i've", 'still', 'got', 'a', 'couple', 'of', 'hours', 'to', 'kill', 'before', 'the', 'next', 'show', '||period||', 'my', 'place', 'is', 'only', 'a', 'few', 'blocks', 'from', 'here', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'john:', 'and', 'you', 'know', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'john:', "i've", 'been', 'thinking', 'about', 'what', 'we', 'do', 'and', "i'm", 'thinking', '||period||', '||period||', 'of', '||period||', '||period||', '||period||', 'adding', 'a', 'new', 'number', 'to', 'my', '||comma||', 'you', 'know', '||comma||', 'repertoire', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', '||return||', '||return||', 'kramer:', "y'aah", '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', '||leftparen||', 'sniffing', '||rightparen||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'i', 'think', "it's", 'the', 'horse', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'oh', '||comma||', 'god', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "how's", 'everything', '||questionmark||', 'you', '||period||', '||period||', 'you', 'need', 'anything', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'this', 'is', '||dash||', 'this', 'is', '||period||', '||period||', '||period||', 'horrible', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'excuse', 'me', '||comma||', '||period||', '||period||', '||period||', 'what', 'do', 'you', 'feed', 'this', 'animal', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'know', '||comma||', 'oats', 'and', 'hay', '||period||', 'you', 'know', '||comma||', 'they', 'like', 'that', 'stuff', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'i', "can't", 'take', 'this', '||period||', 'let', 'me', 'out', 'of', 'this', 'thing', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'turn', 'this', 'thing', 'around', '||period||', "we've", 'had', 'it', '||period||', 'we', "can't", 'breathe', 'back', 'here', '||exclammark||', 'and', 'hurry', 'it', 'up', '||exclammark||', '||return||', '||return||', 'kramer:', 'rusty', '||exclammark||', 'rusty', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'whistling', '||rightparen||', '||return||', '||return||', 'kramer:', 'whoa', '||exclammark||', '||return||', '||return||', 'george:', 'wha', '||dash||', 'what', 'happened', '||questionmark||', 'what', 'are', 'you', 'doing', 'back', 'so', 'soon', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'ask', 'rusty', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'terribly', 'sorry', '||comma||', 'mr', '||period||', 'ross', '||period||', 'one', 'never', 'knows', 'how', 'the', 'gastrointestinal', 'workings', 'of', 'the', 'equine', 'are', 'going', 'to', 'function', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'thanks', 'for', 'nothing', '||exclammark||', 'come', 'on', '||comma||', 'george', '||period||', "let's", 'go', 'upstairs', '||period||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'horse', 'is', 'gassy', '||period||', 'must', 'have', 'been', 'the', 'beef', '||dash||', 'a', '||dash||', 'reeno', '||period||', '||return||', '||return||', 'george:', 'beef', '||dash||', 'a', '||dash||', 'reeno', '||questionmark||', 'you', 'fed', 'the', 'horse', 'beef', '||dash||', 'a', '||dash||', 'reeno', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'overbought', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', '||rightparen||', '||return||', '||return||', 'music', 'guy:', "what's", 'going', 'on', '||questionmark||', 'where', 'is', 'he', '||questionmark||', '||return||', '||return||', 'manager:', 'uh', '||period||', '||period||', '||period||', "he'll", 'be', 'here', 'soon', '||period||', '||return||', '||return||', 'music', 'guy:', "i'll", 'give', 'him', 'ten', 'more', 'minutes', '||period||', "i'm", 'not', 'gonna', 'stay', 'here', 'all', 'night', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'did', 'you', 'give', 'him', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'a', 'can', '||period||', 'but', 'he', 'really', 'liked', 'it', '||comma||', 'though', '||period||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'up', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'hey', '||comma||', 'what', 'do', 'you', 'want', 'me', 'to', 'do', 'with', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'come', 'out', '||period||', "they're", 'standing', 'right', 'by', 'the', 'door', '||period||', 'throw', 'it', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'yeah', '||period||', "it's", 'the', 'only', 'way', '||period||', 'come', 'on', '||period||', 'what', 'are', 'you', '||comma||', 'kidding', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'will', 'you', 'get', 'this', 'horse', 'outta', 'here', '||period||', "he's", 'killing', 'me', '||period||', 'i', "can't", 'get', 'any', 'oxygen', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'wanna', 'go', 'back', 'on', 'there', '||exclammark||', '||return||', '||return||', 'george:', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grunting', 'as', 'he', 'throws', 'bread', 'into', 'the', 'air', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'grunting', '||rightparen||', 'hey', '||exclammark||', 'hey', '||comma||', 'wait', 'a', 'second', '||period||', 'i', 'got', 'an', 'idea', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', '||period||', "don't", 'be', 'silly', '||comma||', 'john', '||comma||', 'you', 'were', 'very', 'good', '||period||', 'you', 'just', "don't", 'have', 'to', 'try', 'so', 'hard', '||period||', 'good', 'luck', '||comma||', 'honey', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||exclammark||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||exclammark||', 'i', 'never', 'baited', 'a', 'hook', 'with', 'a', 'rye', 'before', '||period||', 'your', 'hook', 'is', 'too', 'small', '||period||', 'this', 'is', 'for', '||comma||', 'like', '||comma||', 'a', 'muffin', '||period||', 'all', 'right', '||period||', 'take', 'it', 'away', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||period||', 'come', 'on', '||period||', 'come', 'on', '||period||', 'yeah', '||period||', 'yeah', '||period||', '||leftparen||', 'grunting', '||rightparen||', '||return||', '||return||', 'manager:', 'ladies', 'and', 'gentlemen', '||comma||', 'john', 'germaine', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'lock', 'your', 'keys', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'george:', 'how', '||questionmark||', 'cause', 'im', 'an', 'idiot', '||period||', '||return||', '||return||', 'jerry:', 'so', 'why', "don't", 'you', 'get', 'a', 'locksmith', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'going', 'to', '||comma||', 'but', 'then', 'i', 'found', 'out', 'that', 'the', 'auto', 'club', 'has', 'this', 'free', 'locksmith', 'service', '||comma||', 'so', 'i', 'signed', 'up', '||period||', 'just', 'waiting', 'for', 'the', 'membership', 'to', 'kick', 'in', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'has', 'your', 'car', 'been', 'sitting', 'in', 'the', 'yankee', 'parking', 'lot', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'about', 'three', 'days', '||period||', '||return||', '||return||', 'kramer:', 'hello', 'boys', '||period||', '||return||', '||return||', 'jerry:', 'y', '||dash||', "you're", 'not', "playin'", 'golf', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'indeed', '||period||', 'the', 'calendar', 'says', 'winter', '||comma||', 'but', 'he', 'gods', 'of', 'spring', 'are', 'out', '||period||', '||return||', '||return||', 'george:', 'are', 'the', 'courses', 'open', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "i'm", 'sneaking', 'in', 'with', 'stan', 'the', 'caddy', '||comma||', "we've", 'been', 'going', 'through', 'the', 'caddies', 'entrance', '||period||', '||return||', '||return||', 'george:', 'huh', '||comma||', 'no', 'kidding', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', "i'll", 'tell', 'ya', 'something', 'else', '||period||', "stan's", 'advice', 'has', 'transformed', 'my', 'game', '||period||', "he's", 'never', 'wrong', '||period||', 'oh', '||comma||', 'he', 'thinks', 'eventually', "i'll", 'have', 'a', 'shot', 'at', 'making', 'it', 'big', 'on', 'the', 'senior', 'tour', '||period||', '||leftparen||', 'sucks', 'in', 'air', 'through', 'tight', 'lips', '||rightparen||', 'oh', '||comma||', "that's", 'my', 'dream', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'really', '||comma||', "you're", 'getting', 'that', 'good', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'the', 'real', 'deal', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'here', '||comma||', 'stan', '||comma||', 'in', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'there', 'he', 'is', '||comma||', 'yeah', '||dash||', 'jerry', '||comma||', 'george', '||comma||', '*this*', 'is', 'stan', 'the', 'caddy', '||period||', '||return||', '||return||', 'george:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'stan:', 'nice', 'to', 'meet', 'you', '||period||', 'ready', 'to', 'hit', 'the', 'links', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'you', 'betcha', '||period||', '||return||', '||return||', 'stan:', 'what', 'are', 'those', '||comma||', 'ah', '||comma||', 'cotton', 'pants', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'why', '||comma||', 'is', 'it', 'too', 'cold', 'out', '||questionmark||', '||return||', '||return||', 'stan:', "here's", 'what', 'you', 'do', 'you', 'bring', 'a', 'lightweight', 'jacket', '||comma||', 'that', 'way', 'the', 'sun', 'comes', 'out', '||comma||', 'you', 'play', 'the', 'jacket', 'off', 'the', 'sweater', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'that', 'makes', 'sense', '||comma||', "that's", 'a', 'good', 'call', '||comma||', 'stan', '||period||', 'alright', '||comma||', "we'll", 'see', 'you', 'guys', 'later', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "we'll", 'see', 'ya', '||period||', '||return||', '||return||', 'george', '&', 'jerry:', '||leftparen||', 'together', '||dash||', '||dash||', 'with', 'arms', 'extended', '||dash||', '||dash||', 'palms', 'upwards', '||rightparen||', 'stan', 'the', 'caddy', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'elaine', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', 'hi', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'thinking', 'to', 'herself', '||rightparen||', ':', 'oh', '||comma||', 'great', '||period||', "it's", 'the', 'bra', '||dash||', 'less', 'wonder', '||period||', 'who', 'does', 'she', 'think', "she's", 'kidding', '||questionmark||', 'look', 'at', 'her', '||comma||', "she's", 'totally', 'out', 'of', 'control', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'i', 'was', 'thinking', 'that', 'woman', 'looks', 'like', 'elaine', 'benes', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'ha', 'ha', 'ha', '||period||', 'what', 'have', 'you', 'been', 'up', 'to', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', "i've", 'just', 'been', 'hanging', 'out', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'nodding', '||rightparen||', ':', 'i', 'see', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'hmm', '||period||', 'oh', '||comma||', 'listen', '||exclammark||', "i'm", 'having', 'a', 'birthday', 'party', 'tomorrow', 'evening', '||comma||', "i'd", 'love', 'it', 'if', 'you', 'came', 'by', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'tomorrow', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', 'um', '||dash||', 'hm', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'if', 'i', 'can', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'nooo', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'm", 'just', 'really', '||comma||', 'really', 'busy', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'oh', '||comma||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'well', '||comma||', 'i', 'hope', 'you', 'can', 'get', 'me', 'a', 'gift', 'anyway', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'elaine:', 'ah', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'wilhelm:', 'george', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'he', 'drops', 'a', 'paper', 'airplane', 'he', 'was', 'holding', '||rightparen||', 'mr', '||period||', 'wilhelm', '||exclammark||', '||return||', '||return||', 'wilhelm:', "i'm", 'sorry', 'to', 'interrupt', 'you', '||comma||', 'but', 'mr', '||period||', 'steinbrenner', 'and', 'i', 'really', 'want', 'you', 'to', 'know', 'we', 'appreciate', 'all', 'the', 'hours', "you've", 'been', 'putting', 'in', 'oh', '||comma||', 'and', '||comma||', 'ah', '||comma||', 'confidentially', '||comma||', 'sozonkel', '||comma||', 'our', 'assistant', 'to', 'the', 'general', 'manger', '||comma||', "hasn't", 'really', 'been', 'working', 'out', '||period||', 'and', 'the', 'boss', 'thinks', "you're", 'the', 'man', 'for', 'the', 'job', '||exclammark||', 'so', '||comma||', 'keep', 'it', 'under', 'your', 'hat', '||exclammark||', '||return||', '||return||', 'george:', 'assistant', 'to', 'the', 'general', 'manager', '||exclammark||', '||exclammark||', 'do', 'you', 'know', 'what', 'means', '||questionmark||', '||exclammark||', '||questionmark||', "he'd", 'could', 'be', "askin'", 'my', 'advice', 'on', 'trades', '||exclammark||', 'trades', '||comma||', 'jerry', '||comma||', "i'm", 'a', 'heartbeat', 'away', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'a', 'hell', 'of', 'an', 'organization', "they're", 'running', 'up', 'there', '||period||', 'i', "can't", 'understand', 'why', 'they', "haven't", 'won', 'a', 'pennant', 'in', '15', 'years', '||period||', '||return||', '||return||', 'george:', 'and', '||comma||', 'it', 'is', 'all', 'because', 'of', 'that', 'car', '||return||', '||return||', 'george:', 'see', '||comma||', 'steinbrenner', 'is', 'like', 'the', 'first', 'guy', 'in', '||comma||', 'at', 'the', 'crack', 'of', 'dawn', '||period||', 'he', 'sees', 'my', 'car', '||comma||', 'he', 'figures', "i'm", 'the', 'first', 'guy', 'in', '||return||', '||return||', 'george:', 'then', '||comma||', 'the', 'last', 'person', 'to', 'leave', 'is', 'wilhelm', '||period||', 'he', 'sees', 'my', 'car', '||comma||', 'he', 'figures', "i'm", 'burning', 'the', 'midnight', 'oil', '||period||', 'between', 'the', 'two', 'of', 'them', '||comma||', 'they', 'think', "i'm", 'working', 'an', '18', 'hour', 'day', '||exclammark||', '||leftparen||', 'he', 'stands', 'there', 'with', 'his', 'hands', 'on', 'his', 'hips', '||comma||', 'a', 'wide', 'grin', '||dash||', 'laughing', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'locking', 'your', 'keys', 'in', 'your', 'car', 'is', 'the', 'best', 'career', 'move', 'you', 'ever', 'made', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'how', 'ya', 'doing', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'better', '||comma||', 'now', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'sue', 'ellen', 'mishke', '||questionmark||', '||return||', '||return||', 'jerry:', 'sue', 'ellen', 'mishke', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'the', 'woman', 'i', 'grew', 'up', 'with', 'in', 'maryland', '||comma||', 'she', 'moved', 'here', 'last', 'year', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'sounds', 'familiar', '||period||', '||return||', '||return||', 'elaine:', 'the', 'heiress', 'to', 'the', "o'henry", 'candy', 'bar', 'fortune', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||comma||', 'you', 'mentioned', 'her', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||period||', 'yes', 'i', 'ran', 'into', 'her', 'today', '||period||', 'this', 'woman', 'has', 'never', '||comma||', 'not', 'once', '||comma||', 'ever', '||comma||', 'as', 'long', 'as', 'i', 'have', 'known', 'her', '||comma||', 'worn', 'a', 'bra', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'that', 'is', 'disgusting', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'that', 'is', 'just', 'shameless', '||comma||', 'i', "don't", 'know', '||comma||', "there's", 'no', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'shes', 'a', 'pig', '||period||', 'the', "woman's", 'a', 'pig', '||comma||', 'what', 'wrong', 'with', 'her', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', "it's", 'wrong', '||comma||', "it's", 'rude', '||comma||', 'and', "it's", 'incorrect', '||period||', '||return||', '||return||', 'george:', "it's", 'disgusting', '||dash||', '||dash||', '||return||', '||return||', 'elaine', '||leftparen||', 'getting', 'up', 'to', 'leave', '||rightparen||', ':', 'alright', '||comma||', "there's", 'no', '||dash||', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'come', 'on', '||exclammark||', 'come', '||dash||', 'on', '||period||', '||return||', '||return||', 'jerry:', "we're", 'only', 'kidding', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', "don't", 'understand', '||period||', 'see', '||comma||', 'she', "hasn't", 'changed', 'at', 'all', '||period||', 'she', 'stole', 'my', 'boyfriend', 'when', 'i', 'was', 'in', 'high', 'school', '||period||', '||leftparen||', 'flashback', 'sequence', '||rightparen||', 'i', 'was', 'at', 'this', 'party', '||comma||', 'and', 'i', 'was', 'dating', 'this', '*really*', 'cute', 'guy', '||comma||', 'his', 'name', 'was', 'tom', 'cosley', '||comma||', 'by', 'the', 'way', '||comma||', 'and', 'she', 'goes', 'walking', 'by', '||comma||', 'in', 'this', 'little', 'floozy', 'outfit', '||comma||', 'and', 'he', 'follows', 'her', '||comma||', 'right', 'out', 'the', 'door', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'excited', '||rightparen||', ':', "she's", 'your', 'lex', 'luthor', '||exclammark||', '||return||', '||return||', 'elaine:', 'her', "birthday's", "comin'", 'up', '||comma||', 'see', '||comma||', 'so', 'i', 'decided', 'to', 'get', 'her', 'a', 'little', 'present', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'going', 'to', 'get', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'very', 'traditional', '||comma||', 'a', 'very', 'supportive', '||comma||', 'brazier', '||period||', '||return||', '||return||', 'jerry:', "there's", 'nothing', 'subtle', 'about', 'that', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'she', 'might', 'just', 'think', 'its', 'a', 'gift', '||period||', '||return||', '||return||', 'jerry:', 'have', 'i', 'ever', 'bought', 'you', 'a', 'jock', 'strap', 'as', 'a', 'gift', '||questionmark||', '||return||', '||return||', 'george:', 'ahh', '||comma||', 'hey', '||dash||', 'ho', '||period||', 'ahhhhh', '||leftparen||', 'exhales', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'are', 'you', 'doing', 'here', '||comma||', "aren't", 'you', 'supposed', 'to', 'be', 'at', 'work', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', "i'm", 'thinking', 'about', 'getting', 'out', 'of', 'town', 'with', 'susan', 'for', 'a', 'few', 'days', '||period||', '||period||', '||period||', '||period||', 'her', 'parents', 'rebuilt', 'the', 'cabin', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "you're", 'just', 'taking', 'off', 'from', 'work', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', 'well', '||comma||', 'they', "won't", 'know', '||period||', 'i', 'got', 'the', 'car', 'there', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'think', 'this', 'is', 'such', 'a', 'good', 'idea', '||comma||', 'with', 'you', 'being', 'on', 'the', 'verge', 'of', 'this', 'big', 'promotion', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'presence', '||comma||', 'in', 'that', 'office', '||comma||', 'can', 'only', 'hurt', 'my', 'chances', '||period||', '||return||', '||return||', 'receptionist:', '||leftparen||', 'on', 'intercom', '||rightparen||', 'sue', 'ellen', 'mishke', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', 'sue', 'ellen', 'mishke', '||questionmark||', 'ah', '||comma||', 'alright', '||comma||', 'send', 'her', 'in', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hellllloo', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'i', 'happened', 'to', 'be', 'in', 'the', 'neighborhood', '||comma||', 'so', 'i', 'thought', "i'd", 'stop', 'in', '||comma||', 'and', 'thank', 'you', 'for', 'your', 'lovely', 'gift', '||period||', '||return||', '||return||', 'elaine:', 'ohhhhh', '||period||', "you're", '||period||', '||period||', '||period||', '||period||', 'welcome', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'is', 'anything', 'wrong', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'sue', 'ellen', '||comma||', "it's", 'a', '||comma||', "it's", 'not', 'a', 'top', '||comma||', "it's", 'a', 'bra', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'oh', '||comma||', 'i', 'know', '||period||', 'thanks', 'again', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'the', 'life', '||exclammark||', "isn't", 'it', '||comma||', 'huh', '||comma||', 'kid', '||questionmark||', '||return||', '||return||', 'susan:', 'wanna', 'check', 'out', 'a', 'swap', 'meet', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'maybe', '||period||', '||leftparen||', 'snifs', '||rightparen||', "where'd", 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'it', 'was', 'on', 'the', 'windshield', 'of', 'the', 'car', 'when', 'we', 'came', 'out', 'of', 'that', 'rest', 'stop', '||period||', '||return||', '||return||', 'jerry', ':', 'yello', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'a', 'pay', 'phone', '||rightparen||', 'hey', '||comma||', 'hey', '||comma||', "it's", 'george', '||comma||', 'i', 'need', 'ya', 'to', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'jerry:', "what's", "goin'", 'on', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', 'remembered', '||comma||', 'th', '||dash||', 'th', '||dash||', "there's", 'this', 'chinese', 'restaurant', 'out', 'near', 'yankee', 'stadium', '||comma||', 'that', 'puts', 'flyers', 'on', 'all', 'the', 'cars', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'this', 'is', 'what', 'ya', 'gotta', 'do', 'i', 'need', 'ya', 'to', 'go', 'out', 'to', 'the', 'parking', 'lot', 'at', 'yankee', 'stadium', '||comma||', 'take', 'the', 'flyers', 'off', 'my', 'car', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'last', 'time', 'you', 'had', 'me', "throwin'", 'a', 'rye', 'bread', 'up', 'three', 'floors', 'to', 'you', '||comma||', 'now', 'you', 'want', 'me', 'to', 'go', 'up', 'to', 'the', 'bronx', '||comma||', 'take', 'flyers', 'off', 'your', 'car', '||comma||', 'where', 'does', 'it', 'end', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'fine', '||period||', "i'll", 'drive', 'the', '3', 'hours', 'each', 'way', '||comma||', '6', 'hours', 'all', 'together', '||comma||', 'and', 'take', "'em", 'off', 'myself', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||comma||', "i'll", 'do', 'it', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'oowe', '||leftparen||', 'kramer', 'noise', '||dash||', '||dash||', 'hes', 'eating', 'something', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'are', 'ya', 'up', 'to', '||questionmark||', '||return||', '||return||', 'kramer:', "nothin'", '||period||', '||return||', '||return||', 'jerry:', 'you', 'wanna', 'go', 'with', 'me', 'up', 'to', '||leftparen||', 'clap', '||rightparen||', 'the', 'bronx', 'and', 'see', 'if', "there's", 'any', 'flyers', 'on', "george's", 'car', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'excited', '||rightparen||', ':', 'sure', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'i', 'coulda', 'said', 'just', 'about', 'anything', 'there', '||comma||', "couldn't", 'i', '||questionmark||', '||leftparen||', 'throws', 'coat', 'over', 'his', 'right', 'shoulder', '||rightparen||', '||return||', '||return||', 'kramer:', 'yep', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||comma||', 'look', 'at', 'this', 'mess', '||exclammark||', 'you', 'know', "what's", 'gonna', 'happen', 'if', 'they', 'see', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'wheehh', '||return||', '||return||', 'jerry:', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'gotta', 'get', 'it', 'washed', '||leftparen||', 'pulls', 'off', 'a', 'few', 'flyers', '||rightparen||', '||period||', '||period||', '||period||', '||period||', 'ah', '||comma||', 'the', 'keys', 'are', 'locked', 'inside', '||exclammark||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'second', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'ya', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', "i'll", 'just', 'snag', 'the', 'lock', 'with', 'this', '||period||', 'auhh', 'here', 'we', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'this', 'quite', 'a', 'life', 'i', 'lead', 'here', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', '[leaving', 'the', 'gentle', 'touch', 'car', 'wash:', 'jerry', 'and', 'kramer', 'driving', "george's", 'car', '||period||', 'kramer', 'is', 'behind', 'the', 'wheel', '||period||', ']', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'george', 'has', 'gotta', 'be', 'happy', 'about', 'this', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'indifferent', '||rightparen||', ':', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'kramer', '||comma||', 'is', 'that', 'woman', 'just', 'wearing', 'a', 'bra', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'mama', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||exclammark||', '||exclammark||', '||leftparen||', 'jerry', 'points', 'to', 'the', 'lamp', 'post', 'they', 'are', 'about', 'to', 'crash', 'into', '||rightparen||', '||return||', '||return||', 'elaine:', 'my', 'god', '||comma||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'got', 'a', 'cut', 'on', 'my', 'head', 'and', 'i', 'banged', 'my', 'shoulder', '||period||', '||leftparen||', 'he', 'has', 'a', 'large', 'band', '||dash||', 'aid', 'on', 'his', 'forehead', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'i', 'have', 'to', 'bring', 'his', 'car', 'back', 'up', 'to', 'the', 'stadium', '||comma||', 'if', 'it', 'can', 'make', 'it', '||period||', '||return||', '||return||', 'elaine:', 'so', 'how', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'was', "starin'", 'at', 'some', 'woman', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'i', "couldn't", 'help', 'it', '||comma||', 'you', 'saw', 'what', 'she', 'was', 'wearing', '||period||', '||return||', '||return||', 'elaine:', 'what', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', 'there', 'was', 'this', 'beautiful', 'woman', 'walking', 'down', 'the', 'street', 'wearing', '*just*', 'a', 'bra', '||period||', 'i', "can't", 'get', 'that', 'image', 'out', 'of', 'my', 'mind', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'was', 'it', 'a', 'tall', 'woman', '||comma||', 'in', 'a', 'black', 'blazer', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'ohhh', '||exclammark||', "that's", 'sue', 'ellen', 'mishke', '||exclammark||', '||return||', '||return||', 'jerry:', 'sue', 'ellen', 'mishke', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'the', 'bra', 'i', 'gave', 'here', '||comma||', "she's", 'wearing', 'it', 'as', 'a', 'top', '||exclammark||', 'the', 'woman', 'is', 'walking', 'around', 'in', 'broad', 'daylight', 'with', 'nothing', 'but', 'a', 'bra', 'on', '||comma||', "she's", 'a', 'menace', 'to', 'society', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'you', 'know', '||comma||', 'my', 'arm', 'really', 'hurts', '||period||', 'i', 'wonder', 'if', 'its', 'gonna', 'affect', 'my', 'golf', 'swing', '||period||', '||return||', '||return||', 'kramer:', 'oohh', '||period||', '||return||', '||return||', 'stan', '||leftparen||', 'out', 'of', 'breath', '||rightparen||', ':', 'i', 'got', 'your', 'message', '||comma||', "how's", 'the', 'shoulder', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'my', 'left', 'arm', '||comma||', 'i', "can't", 'swing', 'it', '||exclammark||', '||return||', '||return||', 'stan:', 'oh', '||comma||', 'no', '||period||', 'not', 'the', 'left', 'arm', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'what', 'happens', 'if', 'i', "can't", 'play', 'like', 'i', 'was', '||questionmark||', 'what', 'about', 'the', 'tour', '||comma||', 'and', 'all', 'my', 'dreams', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'i', 'got', 'it', '||exclammark||', "let's", 'sue', 'her', '||exclammark||', '||return||', '||return||', 'kramer:', 'sue', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "she's", 'loaded', '||period||', "she's", 'the', 'heiress', 'to', 'the', "o'henry", 'candy', 'bar', 'fortune', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', "can't", '||period||', 'i', 'learned', 'my', 'lesson', 'from', 'that', 'coffee', 'company', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'listen', 'to', 'me', '||period||', 'listen', '||exclammark||', 'this', 'is', 'a', 'once', 'in', 'a', 'lifetime', 'opportunity', '||period||', 'your', 'dreams', 'have', 'been', 'shattered', '||comma||', "somebody's", 'got', 'to', 'be', 'held', 'accountable', '||period||', 'come', 'on', '||comma||', "we'll", 'take', 'for', 'every', 'penny', "she's", 'got', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'think', '||comma||', 'stan', '||questionmark||', '||return||', '||return||', 'stan:', "let's", 'go', 'for', 'the', 'green', '||exclammark||', 'you', 'know', 'a', 'good', 'lawyer', '||questionmark||', '||return||', '||return||', 'jackie:', 'so', "you're", 'driving', 'in', 'the', 'car', '||comma||', "you're", 'with', 'your', 'friend', '||comma||', 'minding', 'your', 'own', 'business', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jackie:', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'then', 'we', 'saw', 'this', 'woman', '||comma||', 'and', 'she', 'was', 'wearing', 'a', 'bra', 'with', 'no', 'top', '||period||', '||return||', '||return||', 'jackie:', 'no', 'top', '||questionmark||', 'she', "didn't", 'have', 'a', 'top', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'so', 'i', 'got', 'distracted', 'and', 'i', 'crashed', 'the', 'car', '||period||', '||return||', '||return||', 'jackie:', 'well', 'how', 'would', 'you', 'describe', 'this', 'woman', '||questionmark||', 'would', 'you', 'say', 'she', 'was', 'an', 'attractive', 'woman', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jackie:', 'so', 'we', 'got', 'an', 'attractive', 'woman', '||comma||', 'wearing', 'a', 'bra', '||comma||', 'no', 'top', '||comma||', "walkin'", 'around', 'in', 'broad', 'daylight', '||period||', "she's", 'flouting', "society's", 'conventions', '||exclammark||', '||return||', '||return||', 'kramer:', 'she', 'was', 'flouting', '||period||', '||return||', '||return||', 'jackie:', "that's", 'totally', 'inappropriate', '||period||', "it's", 'lewd', '||comma||', 'lascivious', '||comma||', 'salacious', '||comma||', 'outrageous', '||exclammark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'outrageous', '||period||', 'and', "she's", 'the', 'heir', 'to', 'the', "o'henry", 'candy', 'bar', 'fortune', '||period||', '||return||', '||return||', 'jackie:', 'could', 'you', 'repeat', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'said', "she's", 'the', 'heir', 'to', 'the', "o'henry", 'candy', 'bar', 'fortune', '||period||', '||return||', '||return||', 'jackie:', "o'henry", '||questionmark||', "that's", 'one', 'of', 'our', 'top', '||dash||', 'selling', 'candy', 'bars', '||period||', "it's", 'got', 'chocolate', '||comma||', 'peanuts', '||comma||', 'nougat', '||comma||', "it's", 'delicious', '||comma||', 'scrumptious', '||comma||', 'outstanding', '||exclammark||', 'have', 'you', 'been', 'to', 'a', 'doctor', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'jackie', '||leftparen||', 'speaking', 'to', 'the', 'intercom', '||rightparen||', ':', 'susie', '||comma||', 'call', 'dr', '||period||', 'bison', '||comma||', 'set', 'up', 'an', 'appointment', 'for', 'mr', '||period||', 'kramer', '||comma||', 'tell', 'him', "it's", 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', 'so', 'whadda', 'ya', 'think', '||comma||', 'jackie', '||questionmark||', 'i', 'mean', 'we', 'got', 'a', 'case', '||questionmark||', '||return||', '||return||', 'jackie:', 'like', 'taking', 'candy', 'from', 'a', 'baby', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'got', 'it', '||period||', 'how', "'bout", 'this', '||questionmark||', 'how', "'bout", 'this', '||questionmark||', 'we', 'trade', 'jim', 'leyritz', 'and', 'bernie', 'williams', '||comma||', 'for', 'barry', 'bonds', '||comma||', 'huh', '||questionmark||', 'whadda', 'ya', 'think', '||questionmark||', 'that', 'way', 'i', 'have', 'griffey', 'and', 'bonds', '||comma||', 'in', 'the', 'same', 'outfield', '||exclammark||', 'now', 'you', 'got', 'a', 'team', '||exclammark||', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'susan:', 'i', "don't", 'know', '||comma||', 'george', '||period||', "i'm", 'still', 'worried', 'about', 'this', 'car', 'thing', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'would', 'ya', 'stop', 'worrying', '||questionmark||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'what', 'about', 'the', 'flyers', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', 'took', 'the', 'flyers', 'off', 'the', 'car', '||comma||', 'i', 'got', 'the', 'whole', 'thing', 'covered', '||period||', '||return||', '||return||', 'steinbrenner:', 'come', 'in', '||exclammark||', '||return||', '||return||', 'steinbrenner:', 'ah', '||comma||', 'wilhelm', '||period||', '||return||', '||return||', 'wilhelm:', 'mr', '||period||', 'steinbrenner', '||comma||', 'i', 'am', 'very', 'concerned', 'about', 'george', 'costanza', '||period||', '||return||', '||return||', 'steinbrenner:', 'how', "'bout", 'a', "'good", "morning'", '||questionmark||', '||return||', '||return||', 'wilhelm:', 'oh', 'yes', 'sir', '||comma||', 'good', 'morning', '||comma||', 'good', 'morning', '||comma||', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'good', 'morning', 'to', 'you', '||comma||', 'wilhelm', '||period||', '||return||', '||return||', 'wilhelm:', 'uh', '||dash||', 'a', 'anyway', '||comma||', 'his', "car's", 'in', 'the', 'parking', 'lot', '||comma||', 'the', 'front', 'end', 'is', 'bashed', 'in', '||comma||', 'and', "there's", 'blood', 'in', 'the', 'car', '||comma||', 'and', 'we', "can't", 'find', 'him', 'anywhere', '||period||', 'obviously', 'he', 'was', 'in', 'some', 'sort', 'of', 'a', 'terrible', 'car', 'accident', '||comma||', 'and', 'trooper', 'that', 'he', 'is', '||comma||', 'he', 'tried', 'to', 'make', 'it', 'into', 'work', '||comma||', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'alright', '||comma||', 'wilhelm', '||comma||', 'listen', 'to', 'me', '||period||', 'i', 'want', 'the', 'stadium', 'scoured', '||period||', 'he', 'could', 'be', 'bleeding', 'to', 'death', 'in', 'the', 'bullpen', '||period||', '||return||', '||return||', 'wilhelm:', 'yes', 'sir', '||period||', '||leftparen||', 'he', 'starts', 'backing', 'up', 'to', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'steinbrenner:', 'put', 'everyone', 'on', 'alert', '||comma||', 'check', 'all', 'the', 'area', 'hospitals', '||comma||', 'clinics', '||comma||', 'shelters', '||comma||', "we've", 'gotta', 'find', 'that', 'kid', '||period||', '||return||', '||return||', 'wilhelm:', 'yes', 'sir', '||comma||', 'yes', 'sir', '||period||', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', '||return||', '||return||', 'steinbrenner:', 'we', 'must', 'find', 'george', '||period||', '||return||', '||return||', 'wilhelm:', 'yes', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'find', 'him', '||comma||', 'wilhelm', '||exclammark||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'from', 'behind', 'the', 'closed', 'door', 'in', 'the', 'hallway', '||rightparen||', 'yes', 'sir', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'excuse', 'me', '||comma||', 'do', 'you', 'happen', 'to', 'know', 'the', 'gentleman', 'across', 'the', 'hall', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'mesmerized', '||rightparen||', ':', 'yes', '||comma||', 'yes', '||comma||', 'i', 'do', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'do', 'you', 'happen', 'to', 'know', 'if', "he'll", 'be', 'back', 'anytime', 'soon', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'sue', 'ellen:', 'oh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'is', 'there', '||comma||', 'something', 'i', 'can', 'help', 'you', 'with', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', 'no', '||comma||', 'i', 'really', 'just', 'needed', 'to', 'speak', 'with', 'him', '||period||', '||leftparen||', 'exhales', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'can', 'wait', 'for', 'him', 'in', 'here', 'if', 'you', 'like', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'oh', '||comma||', 'well', 'maybe', 'i', 'will', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'if', 'you', "don't", 'mind', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'thanks', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'steinbrenner:', 'what', 'is', 'with', 'these', 'people', '||comma||', 'all', 'day', 'long', '||period||', 'come', 'in', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'wilhelm:', 'ah', '||comma||', 'mr', '||period||', 'steinbrenner', '||comma||', 'you', 'know', '||comma||', 'w', '||dash||', "we've", 'searched', 'everywhere', '||comma||', 'th', '||dash||', "there's", 'no', 'sign', 'of', 'him', '||period||', 'n', '||dash||', 'n', '||dash||', 'not', 'even', 'anyone', 'who', 'remotely', 'fits', 'his', 'description', '||comma||', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'oh', 'my', 'god', '||period||', 'do', 'you', 'know', 'what', 'this', 'means', '||comma||', 'wilhelm', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'what', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'steinbrenner:', "he's", 'dead', '||exclammark||', 'ca', '||dash||', "costanza's", 'dead', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'no', 'no', 'no', 'sir', '||period||', 'well', '||comma||', 'you', 'see', '||comma||', 'i', "don't", 'think', '||dash||', '||dash||', '||return||', '||return||', 'steinbrenner:', 'oh', '||comma||', 'as', 'quickly', 'as', 'he', 'came', 'here', '||comma||', "he's", 'gone', '||period||', 'the', 'poor', 'little', 'guy', '||exclammark||', 'easy', '||period||', 'easy', '||comma||', 'big', 'stein', '||comma||', 'get', 'it', 'together', '||period||', 'ok', '||comma||', 'wilhelm', '||period||', '||return||', '||return||', 'wilhelm:', 'yessir', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'find', 'out', 'where', 'his', 'parents', 'live', '||period||', '||return||', '||return||', 'wilhelm:', 'parents', '||period||', '||return||', '||return||', 'steinbrenner:', "i'm", 'gonna', 'personally', 'notify', 'them', '||period||', '||period||', '||period||', '||period||', 'and', '||comma||', 'ah', '||comma||', 'line', 'up', 'some', 'candidates', 'to', 'fill', 'that', 'assistant', 'to', 'the', 'general', 'manager', 'position', '||return||', '||return||', 'wilhelm:', 'yessir', '||period||', '||leftparen||', 'he', 'starts', 'backing', 'up', 'to', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'steinbrenner:', 'we', "can't", 'grieve', 'forever', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'right', '||period||', 'yessir', '||period||', '||return||', '||return||', 'steinbrenner:', 'we', 'gotta', 'get', 'back', 'to', 'business', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'yes', 'sir', '||exclammark||', '||leftparen||', 'closes', 'the', 'door', '||rightparen||', '||return||', '||return||', 'steinbrenner:', 'back', 'to', 'business', 'wilhelm', '||exclammark||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'from', 'behind', 'the', 'closed', 'door', 'in', 'the', 'hallway', '||rightparen||', 'yes', 'sir', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'buddy', '||comma||', '||leftparen||', 'claps', '||rightparen||', "he's", 'taking', 'the', 'case', '||exclammark||', 'jackie', 'chiles', 'is', 'right', 'on', 'it', '||exclammark||', 'right', 'on', 'it', '||comma||', "he's", 'all', 'over', 'it', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'not', 'happy', '||rightparen||', ':', 'oh', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', '||comma||', 'wh', '||dash||', 'wh', '||dash||', "what's", 'wrong', '||comma||', 'come', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||return||', '||return||', 'kramer:', 'uuh', '||dash||', '||return||', '||return||', 'jerry:', 'so', 'the', 'woman', 'was', 'walking', 'around', 'in', 'a', 'bra', '||return||', '||return||', 'kramer:', 'yeah', '||dash||', '||return||', '||return||', 'jerry:', 'i', 'mean', "it's", 'no', 'big', 'deal', '||period||', "you're", 'still', "drivin'", '||period||', 'you', 'should', 'have', 'been', 'watching', 'the', 'road', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'your', 'attitude', 'has', 'certainly', 'changed', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'my', 'attitude', 'has', 'changed', '||period||', '||return||', '||return||', 'kramer:', 'now', 'listen', '||comma||', 'jerry', '||comma||', "i'm", 'gonna', 'need', 'you', 'to', 'testify', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', '||comma||', 'yet', 'in', 'a', 'high', 'and', 'whiney', 'tone', '||rightparen||', 'well', '||comma||', 'i', "don't", 'know', 'if', 'i', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'jerry', '||comma||', 'you', 'gotta', 'testify', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', 'i', "don't", 'think', 'i', 'can', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'this', 'is', 'a', 'million', 'dollars', "we're", "talkin'", 'about', '||comma||', 'jerry', '||comma||', 'now', 'this', 'is', 'the', 'big', 'league', '||comma||', 'the', 'big', 'time', '||comma||', 'now', 'i', 'need', 'you', 'on', 'my', 'team', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'just', 'not', 'sure', 'how', 'i', 'feel', 'about', 'it', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'alright', "what's", 'gotten', 'into', 'you', '||comma||', "what's", 'happened', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', "nothing's", 'happened', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'in', 'disgust', '||rightparen||', ':', 'goohhhhck', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'picking', 'up', 'the', 'wrapper', '||rightparen||', ':', 'ohhhh', '||comma||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', 'th', '||dash||', 'th', '||dash||', 'that', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'see', '||period||', '||period||', '||period||', '||period||', 'yessss', '||period||', 'little', 'miss', 'candy', 'bar', 'paid', 'a', 'visit', '||comma||', "didn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'it', 'is', 'not', 'what', 'you', 'think', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'ah', '||comma||', 'ahhhhh', '||exclammark||', 'i', 'know', 'what', 'i', 'think', '||period||', 'i', 'think', "you're", 'gaga', 'over', 'this', 'dame', '||period||', "she's", 'twisted', 'you', 'around', 'her', 'little', 'finger', '||comma||', 'and', 'now', '||comma||', "you're", 'willing', 'to', 'sell', 'me', '||comma||', 'and', 'elaine', '||comma||', 'and', 'whoever', 'else', 'you', 'have', 'to', '||comma||', 'right', 'down', 'the', 'river', '||period||', '||return||', '||return||', 'jerry:', 'and', 'what', 'about', 'yooou', '||questionmark||', '||exclammark||', '||questionmark||', "tryin'", 'to', 'bilk', 'an', 'innocent', 'bystander', 'out', 'of', 'a', 'family', 'fortune', '||comma||', 'built', 'on', 'sweat', 'and', 'toil', '||comma||', 'manufacturing', 'quality', "o'henry", 'candy', 'bars', '||comma||', 'for', 'honest', '||comma||', 'hard', '||dash||', 'working', 'americans', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", 'just', 'out', 'for', 'sex', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'just', 'out', 'for', 'money', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer', 'and', 'jerry', '||leftparen||', 'together', '||rightparen||', ':', 'ah', '||comma||', 'ah', '||comma||', 'ahhhhh', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'steinbrenner:', 'mrs', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'estelle', '||leftparen||', 'smiling', '||rightparen||', ':', 'yesss', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'my', 'name', 'is', 'george', 'steinbrenner', '||comma||', "i'm", 'afraid', 'i', 'have', 'some', 'very', 'sad', 'new', 'about', 'your', 'son', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'gasps', '||rightparen||', '||return||', '||return||', 'estelle', '||leftparen||', 'crying', '||rightparen||', ':', 'i', "can't", 'believe', 'it', '||comma||', 'he', 'was', 'so', 'young', '||period||', 'how', 'could', 'this', 'have', 'happened', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'well', '||comma||', "he'd", 'been', 'logging', 'some', 'pretty', 'heavy', 'hours', '||comma||', 'first', 'one', 'in', 'in', 'the', 'morning', '||comma||', 'last', 'one', 'to', 'leave', 'at', 'night', '||period||', 'that', 'kid', 'was', 'a', 'human', 'dynamo', '||period||', '||return||', '||return||', 'estelle:', 'are', 'you', 'sure', "you're", 'talking', 'about', 'george', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'you', 'are', 'mr', '||period||', 'and', 'mrs', '||period||', 'costanza', '||questionmark||', '||return||', '||return||', 'frank', '||leftparen||', 'yelling', '||rightparen||', ':', 'what', 'the', 'hell', 'did', 'you', 'trade', 'jay', 'buener', 'for', '||questionmark||', '||exclammark||', '||questionmark||', 'he', 'had', '30', 'home', 'runs', '||comma||', 'and', 'over', '100', 'rbis', 'last', 'year', '||period||', "he's", 'got', 'a', 'rocket', 'for', 'an', 'arm', '||dash||', '||dash||', 'you', "don't", 'know', 'what', 'the', 'hell', "you're", "doin'", '||exclammark||', '||exclammark||', '||return||', '||return||', 'steinbrenner:', 'well', '||comma||', 'buhner', 'was', 'a', 'good', 'prospect', '||comma||', 'no', 'question', 'about', 'it', '||period||', 'but', 'my', 'baseball', 'people', 'love', 'ken', "phelps'", 'bat', '||period||', 'they', 'kept', 'saying', "'ken", 'phelps', '||comma||', 'ken', "phelps'", '||period||', '||return||', '||return||', 'jerry\x92s', 'outgoing', 'message:', 'im', 'not', 'here', '||comma||', 'leave', 'a', 'message', '||period||', '||return||', '||return||', 'frank', '||leftparen||', 'from', 'the', 'answering', 'machine', '||rightparen||', ':', 'jerry', '||comma||', "it's", 'frank', 'costanza', '||comma||', 'mr', '||period||', 'steinbrenners', 'here', '||comma||', 'george', 'is', 'dead', '||comma||', 'call', 'me', 'back', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'answering', 'phone', '||rightparen||', ':', 'hello', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'on', 'a', 'pay', 'phone', '||rightparen||', ':', 'hey', '||comma||', "it's", 'george', '||period||', '||return||', '||return||', 'jerry:', 'where', 'have', 'you', 'been', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'just', 'got', 'the', 'most', 'bizarre', 'message', 'from', 'you', 'father', '||comma||', 'steinbrenner', 'is', 'at', 'you', 'house', '||comma||', 'they', 'think', "you're", 'dead', '||exclammark||', '||return||', '||return||', 'george:', 'dead', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'and', 'we', 'had', 'an', 'accident', 'with', 'your', 'car', '||comma||', "it's", 'a', '||comma||', 'its', 'a', 'little', 'crumpled', '||period||', '||return||', '||return||', 'george:', 'my', 'cars', 'a', 'little', 'crumpled', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', "didn't", 'know', 'what', 'to', 'do', 'so', 'i', 'put', 'it', 'back', 'at', 'the', 'stadium', '||period||', 'oh', '||comma||', 'wait', 'a', 'second', '||comma||', 'wait', 'a', 'second', '||comma||', 'they', 'saw', 'the', 'car', '||comma||', 'they', 'saw', 'the', 'blood', '||comma||', 'they', "couldn't", 'find', 'ya', '||comma||', "that's", 'why', 'steinbrenner', 'thinks', "you're", 'dead', '||exclammark||', '||return||', '||return||', 'george:', 'allright', '||comma||', 'i', 'gotta', 'head', 'back', 'right', 'away', '||comma||', "i'll", '||dash||', 'ill', '||dash||', '||dash||', 'i', 'gotta', 'figure', 'something', 'out', 'here', '||period||', '||return||', '||return||', 'jerry:', 'well', 'you', 'gotta', 'call', 'your', 'parents', '||period||', '||return||', '||return||', 'george:', 'i', "can't", '||comma||', 'steinbrenner', 'might', 'still', 'be', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', "aren't", 'you', 'gonna', 'tell', 'your', 'parents', "you're", 'still', 'alive', '||questionmark||', '||return||', '||return||', 'george:', 'oouuoo', '||exclammark||', 'they', 'could', 'use', 'the', 'break', '||exclammark||', '||return||', '||return||', 'peterman', '||leftparen||', 'holding', 'up', 'a', 'bra', '||rightparen||', ':', 'elaine', '||comma||', 'do', 'you', 'see', 'this', '||questionmark||', 'do', 'you', 'see', 'what', "i'm", 'holding', 'in', 'my', 'hands', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "it's", 'a', 'bra', '||period||', '||return||', '||return||', 'peterman:', 'i', 'saw', 'a', 'woman', 'in', 'our', 'hallway', 'wearing', 'one', 'of', 'these', 'as', 'a', 'top', '||period||', '||leftparen||', 'sits', 'on', 'the', 'corner', 'of', 'the', 'desk', '||rightparen||', 'what', 'exquisite', 'beauty', '||comma||', 'i', 'ran', 'down', 'the', 'hallway', 'to', 'talk', 'to', 'her', '||comma||', 'but', 'the', 'elevator', 'door', 'closed', '||period||', 'it', 'was', 'not', 'to', 'be', '||period||', 'perhaps', 'our', 'paths', 'will', 'cross', 'again', 'some', 'day', '||period||', '||return||', '||return||', 'elaine:', 'w', '||dash||', 'what', 'is', 'this', 'all', 'about', '||questionmark||', '||return||', '||return||', 'peterman:', 'i', 'wanna', 'market', 'this', 'item', 'as', 'a', 'new', 'direction', 'in', "women's", 'fashion', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||dash||', 'oh', '||comma||', 'but', '||dash||', '||return||', '||return||', 'peterman:', "we're", 'gonna', 'sell', 'this', 'as', 'a', 'top', '||period||', "here's", 'the', 'angle', 'zelda', 'fitzgerald', '||comma||', 'aaaand', '||comma||', 'somebody', 'in', 'the', '20s', '||comma||', 'wearing', 'this', 'at', 'wild', 'parties', '||comma||', 'driving', 'all', 'the', 'men', 'crazy', '||leftparen||', 'tosses', 'the', 'bra', 'on', 'elaines', 'desk', '||rightparen||', 'have', 'it', 'on', 'my', 'desk', 'by', 'the', 'end', 'of', 'the', 'week', '||period||', '||return||', '||return||', 'steinbrenner:', 'come', 'in', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'george:', 'mr', '||period||', 'steinbrenner', '||dash||', '||dash||', '||return||', '||return||', 'steinbrenner', '||leftparen||', 'shocked', '||rightparen||', ':', 'ahhh', '||comma||', 'ahhh', '||exclammark||', 'ah', '||comma||', 'ah', 'ah', '||exclammark||', 'is', 'it', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "it's", 'me', 'sir', '||period||', "it's", 'been', 'a', 'harrowing', 'few', 'days', '||period||', 'uuh', '||comma||', 'after', 'the', 'car', 'accident', '||comma||', 'i', '||dash||', 'i', 'crawled', 'into', 'a', 'ditch', '||comma||', 'and', 'managed', 'to', 'survive', 'on', '||comma||', 'grubs', 'and', 'puddle', 'water', '||comma||', 'until', 'a', 'kindly', 'old', 'gentleman', 'picked', 'me', 'up', '||period||', '||return||', '||return||', 'steinbrenner:', 'grubs', '||comma||', 'huh', '||questionmark||', 'gotta', 'admit', '||comma||', 'i', 'never', 'tasted', 'one', 'of', 'those', '||period||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'as', 'i', 'was', 'lying', 'in', 'the', 'puddle', '||comma||', 'i', '||dash||', 'i', 'think', 'i', 'may', 'have', 'found', 'a', 'way', 'for', 'us', 'to', 'get', 'bonds', 'and', 'griffey', '||comma||', 'and', 'we', "wouldn't", 'have', 'to', 'give', 'up', 'that', 'much', '||period||', '||return||', '||return||', 'steinbrenner:', 'well', '||comma||', "don't", 'tell', 'it', 'to', 'me', 'george', '||comma||', 'tell', 'it', 'to', 'the', 'new', 'assistant', 'to', 'the', 'general', 'manager', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'get', 'the', 'job', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'well', '||comma||', 'once', 'you', 'were', 'dead', '||comma||', 'we', "couldn't", 'just', 'sit', 'on', 'our', 'hands', '||period||', 'we', 'had', 'to', 'make', 'a', 'move', '||period||', '||period||', '||period||', '||return||', '||return||', 'steinbrenner:', 'but', '||comma||', 'you', 'still', 'have', 'your', 'old', 'job', '||period||', 'of', 'course', '||comma||', "we'll", 'have', 'to', 'dock', 'you', 'for', 'the', 'time', 'you', 'missed', '||period||', "we're", 'running', 'a', 'ball', 'club', 'here', '||period||', 'if', 'i', 'give', 'special', 'treatment', 'to', 'you', '||comma||', 'everyone', 'will', 'want', 'it', '||period||', 'next', 'thing', 'you', 'know', 'its', 'chaos', '||exclammark||', 'and', 'i', 'can', 'tell', 'you', 'this', '||comma||', '||leftparen||', 'george', 'closes', 'the', 'door', '||rightparen||', 'chaos', 'does', 'not', 'work', 'for', 'the', 'new', 'york', 'yankees', '||exclammark||', 'not', 'as', 'long', 'as', "i'm", 'running', 'the', 'show', '||exclammark||', '||return||', '||return||', 'jackie:', 'so', 'it', 'was', 'the', 'meeting', 'on', 'the', 'street', 'that', 'prompted', 'you', 'to', 'buy', 'the', 'bra', 'for', 'miss', 'mishke', '||comma||', 'would', 'you', 'say', 'that', 'was', 'correct', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'on', 'the', 'witness', 'stand', '||rightparen||', ':', 'yes', '||period||', '||period||', '||period||', 'ummm', '||comma||', '||leftparen||', 'leans', 'into', 'the', 'microphone', '||comma||', 'pulling', 'it', 'closer', 'it', 'squeaks', '||rightparen||', 'yes', '||comma||', "that's", 'correct', '||period||', '||return||', '||return||', 'jackie:', 'and', 'you', 'have', 'also', 'brought', 'with', 'you', '||comma||', 'another', 'bra', '||comma||', '||leftparen||', 'goes', 'over', 'to', 'the', 'table', 'and', 'pulls', 'a', 'bra', 'out', 'of', 'a', 'bag', '||rightparen||', 'exactly', 'like', '||comma||', 'the', 'one', 'that', 'she', 'so', 'flagrantly', 'exhibited', 'herself', 'in', '||exclammark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "that's", 'correct', '||period||', '||return||', '||return||', 'jackie:', 'uh', '||comma||', 'what', 'was', 'you', 'golf', 'score', '||comma||', 'the', 'last', 'round', 'you', 'played', 'uh', '||comma||', 'before', 'you', 'shoulder', 'was', 'injured', '||questionmark||', '||return||', '||return||', 'kramer:', 'three', 'under', 'par', '||period||', '||return||', '||return||', 'jackie', '||leftparen||', 'impressed', '||rightparen||', ':', 'oooohhhh', '||comma||', 'three', 'under', 'par', '||comma||', "hmmthat's", 'what', 'the', 'professionals', 'shoot', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'if', "they're", 'lucky', '||period||', '||return||', '||return||', 'jackie:', 'well', 'would', 'you', 'tell', 'this', 'jury', 'exactly', 'what', 'you', 'saw', 'at', 'the', 'corner', 'of', '83rd', 'street', 'and', 'columbus', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'hesitant', '||rightparen||', ':', 'i', '||period||', '||period||', '||period||', "don't", 'remember', '||period||', '||return||', '||return||', 'jackie:', 'well', '||comma||', 'did', 'you', '||comma||', 'or', 'did', 'you', 'not', '||comma||', 'see', 'the', 'defendant', '||comma||', 'wearing', 'the', 'bra', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'maybe', '||period||', '||return||', '||return||', 'jackie:', 'mr', '||period||', 'seinfeld', '||comma||', 'i', 'might', 'remind', 'you', 'that', 'you', 'are', 'under', 'oath', '||period||', 'now', 'i', 'ask', 'you', 'again', '||comma||', 'did', 'you', 'or', 'did', 'you', 'not', '||comma||', 'see', 'this', 'woman', 'wearing', 'a', 'bra', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', '||period||', 'alright', '||comma||', 'alright', '||comma||', 'i', 'saw', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'and', 'she', 'was', 'beautiful', 'in', 'that', 'bra', '||exclammark||', "i'm", 'crazy', 'about', 'her', '||exclammark||', 'i', 'love', 'her', 'whole', 'free', 'swinging', '||comma||', 'free', 'wheeling', 'attitude', '||exclammark||', '||return||', '||return||', 'judge', '||leftparen||', 'banging', 'his', 'gavel', '||rightparen||', ':', 'this', 'court', 'will', 'come', 'to', 'order', '||exclammark||', '||return||', '||return||', 'jackie:', 'no', 'further', 'questions', '||comma||', 'your', 'honor', '||period||', '||return||', '||return||', 'judge:', 'you', 'may', 'step', 'down', '||period||', '||return||', '||return||', 'jackie:', 'well', 'kramer', '||comma||', 'i', 'think', 'we', 'got', 'this', 'wrapped', 'up', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', "what's", 'your', 'read', '||comma||', 'stan', '||questionmark||', '||return||', '||return||', 'stan:', "you're", 'close', '||comma||', "you're", 'on', 'the', 'green', '||period||', 'you', 'just', 'have', 'to', 'go', 'for', 'the', 'cup', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'stan:', 'have', 'her', 'try', 'on', 'the', 'bra', '||comma||', 'see', 'if', 'it', 'fits', '||period||', '||return||', '||return||', 'jackie:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', 'do', 'it', '||comma||', 'jackie', '||period||', "stan's", 'the', 'man', '||period||', '||return||', '||return||', 'jackie:', 'stan', '||questionmark||', 'who', 'the', 'hell', 'is', 'stan', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'my', 'caddy', '||period||', '||return||', '||return||', 'jackie:', "you're", 'caddy', '||questionmark||', '||exclammark||', '||questionmark||', 'this', 'is', 'a', 'big', 'mistake', '||exclammark||', '||return||', '||return||', 'kramer:', 'gu', '||dash||', 'gu', '||dash||', 'cada', '||dash||', '||return||', '||return||', 'jackie:', 'your', 'honor', '||comma||', 'we', 'request', 'at', 'this', 'time', '||comma||', 'that', 'miss', 'mishke', '||period||', '||period||', '||period||', 'try', 'on', 'the', 'bra', '||period||', '||return||', '||return||', 'judge:', '||leftparen||', 'bangs', 'the', 'gavel', 'twice', '||rightparen||', 'this', 'court', 'will', 'come', 'to', 'order', '||exclammark||', 'go', 'ahead', 'miss', 'mishke', '||comma||', 'try', 'it', 'on', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'uhhh', '||dash||', 'ah', '||comma||', 'it', "doesn't", 'fit', '||period||', '||period||', '||period||', 'i', '||comma||', 'i', '||dash||', 'i', "can't", 'put', 'it', 'on', '||period||', '||return||', '||return||', 'jackie', '||leftparen||', 'to', 'kramer', 'and', 'stan', '||rightparen||', ':', 'damn', 'fools', '||exclammark||', 'look', 'at', 'that', '||exclammark||', 'we', 'got', "nothin'", 'now', '||comma||', "nothin'", '||exclammark||', "i've", 'been', 'practicing', 'law', 'for', '25', 'years', '||comma||', "you're", "listenin'", 'to', 'a', 'caddy', '||exclammark||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'ok', '||dash||', '||return||', '||return||', 'jackie', ':', 'this', 'is', 'a', 'public', 'humiliation', '||exclammark||', 'you', "can't", 'let', 'the', 'defendant', '||comma||', 'have', 'control', 'of', 'the', 'key', 'piece', 'of', 'evidence', '||period||', 'plus', '||comma||', "she's", 'trying', 'it', 'on', 'over', 'a', 'leotard', '||comma||', 'of', 'course', 'a', "bra's", 'not', 'gonna', 'fit', 'on', 'over', 'a', 'leotard', '||period||', 'a', 'bras', 'gotta', 'fit', 'right', 'up', 'against', 'a', "person's", 'skin', '||comma||', 'like', 'a', 'glove', '||exclammark||', '||return||', '||return||', 'woman', '#1:', 'oh', '||comma||', 'hey', '||comma||', 'elaine', '||comma||', 'how', "'bout", 'some', 'lunch', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', 'i', '||dash||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'woman', '#2:', 'great', 'job', 'on', 'the', 'gatzby', 'swing', 'top', '||period||', "it's", 'a', 'winner', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'woman', '#1:', 'are', 'you', 'sure', 'you', "don't", 'wanna', 'go', '||questionmark||', 'we', 'have', 'reservations', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "don't", 'think', "you'll", 'have', 'any', 'trouble', "gettin'", 'a', 'table', '||period||', '||return||', '||return||', 'woman', '#1:', 'ciao', '||period||', '||return||', '||return||', 'woman', '#2:', 'ba', '||dash||', 'bye', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'awed', '||rightparen||', 'oh', '||comma||', 'look', 'at', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'miss', 'the', 'days', 'they', 'made', 'toys', 'that', 'could', 'kill', 'a', 'kid', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'excited', '||rightparen||', 'oh', '||comma||', 'cool', '||exclammark||', 'look', 'at', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'admiring', 'christie', '||rightparen||', 'yeah', '||comma||', "i'm", 'right', 'there', 'with', 'ya', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'excited', '||rightparen||', 'that', 'is', 'a', 'schwinn', 'stingray', '||exclammark||', 'and', "it's", 'the', "girl's", 'model', '||exclammark||', 'oh', '||comma||', 'i', 'always', 'wanted', 'one', 'of', 'these', 'when', 'i', 'was', 'little', '||period||', '||return||', '||return||', 'elaine:', 'what', "d'you", 'think', 'jerry', '||questionmark||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tearing', 'himself', 'away', 'from', 'christie', '||rightparen||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'be', 'great', 'for', 'your', 'paper', 'route', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'i', 'love', 'it', '||period||', "i'm", 'getting', 'it', '||period||', '||return||', '||return||', 'elaine:', 'can', 'you', 'help', 'me', 'get', 'it', 'down', '||comma||', 'jer', '||questionmark||', 'jerry', '||period||', '||return||', '||return||', 'christie:', 'i', 'think', 'your', 'friend', 'needs', 'some', 'help', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'only', 'way', 'to', 'really', 'help', 'her', 'is', 'to', 'just', 'let', 'her', 'be', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'susan:', 'a', 'little', 'baby', 'girl', '||questionmark||', '||return||', '||return||', 'ken:', 'doctor', 'says', 'it', 'could', 'be', 'any', 'day', 'now', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'through', 'mouthful', 'of', 'food', '||rightparen||', 'so', '||comma||', 'carrie', '||comma||', 'you', 'and', 'susan', 'are', 'cousins', '||period||', 'so', 'your', 'baby', 'daughter', 'is', 'gonna', 'be', "susan's", 'second', 'cousin', '||comma||', 'right', '||questionmark||', 'so', 'what', 'does', 'that', 'make', 'me', '||questionmark||', '||return||', '||return||', 'carrie:', "doesn't", 'make', 'you', 'anything', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'jokingly', '||rightparen||', 'well', '||comma||', 'so', '||comma||', 'legally', '||comma||', 'i', 'could', 'marry', 'your', 'daughter', '||period||', '||return||', '||return||', 'susan:', 'so', '||comma||', 'have', 'you', 'picked', 'out', 'a', 'name', 'yet', '||questionmark||', '||return||', '||return||', 'carrie:', 'well', '||comma||', "we've", 'narrowed', 'it', 'down', 'to', 'a', 'few', '||period||', 'we', 'like', 'kimberley', '||period||', '||return||', '||return||', 'susan:', 'aww', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'negative', '||rightparen||', 'hu', '||dash||', 'ho', '||comma||', 'boy', '||period||', '||return||', '||return||', 'ken:', 'you', "don't", 'like', 'kimberley', '||questionmark||', '||return||', '||return||', 'george:', 'ech', '||period||', 'what', 'else', 'you', 'got', '||questionmark||', '||return||', '||return||', 'ken:', 'how', 'about', 'joan', '||questionmark||', '||return||', '||return||', 'george:', 'aw', "c'mon", '||comma||', "i'm", 'eating', 'here', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'warning', '||rightparen||', 'george', '||exclammark||', '||return||', '||return||', 'carrie:', 'pamela', '||questionmark||', '||return||', '||return||', 'george:', 'pamela', '||questionmark||', '||exclammark||', 'awright', '||comma||', 'i', 'tell', 'you', 'what', '||period||', 'you', 'look', 'like', 'nice', 'people', '||comma||', "i'm", 'gonna', 'help', 'you', 'out', '||period||', 'you', 'want', 'a', 'beautiful', 'name', '||questionmark||', 'soda', '||period||', '||return||', '||return||', 'ken:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'soda', '||period||', 's', '||dash||', 'o', '||dash||', 'd', '||dash||', 'a', '||period||', 'soda', '||period||', '||return||', '||return||', 'carrie:', 'i', "don't", 'know', '||comma||', 'it', 'sounds', 'a', 'little', 'strange', '||period||', '||return||', '||return||', 'george:', 'all', 'names', 'sound', 'strange', 'the', 'first', 'time', 'you', 'hear', "'em", '||period||', 'what', '||comma||', 'you', 'telling', 'me', 'people', 'loved', 'the', 'name', 'blanche', 'the', 'first', 'time', 'they', 'heard', 'it', '||questionmark||', '||return||', '||return||', 'ken:', 'yeah', '||comma||', 'but', 'uh', '||period||', '||period||', '||period||', 'soda', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "that's", 'right', '||period||', "it's", 'working', '||period||', '||return||', '||return||', 'carrie:', "we'll", 'put', 'it', 'on', 'the', 'list', '||period||', '||return||', '||return||', 'george:', 'i', 'solve', 'problems', '||period||', "that's", 'just', 'what', 'i', 'do', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sniffing', 'a', 'slice', 'of', 'meat', '||rightparen||', 'yeah', '||comma||', 'oh', 'boy', '||period||', 'mmm', '||comma||', "that's", 'good', '||period||', '||return||', '||return||', 'jerry:', "you're", 'really', 'going', 'to', 'town', 'with', 'that', 'turkey', 'there', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'i', 'got', 'a', 'big', 'appetite', '||period||', '||return||', '||return||', 'kramer:', 'uhh', '||comma||', 'jerry', '||comma||', 'you', 'got', 'no', 'mustard', '||comma||', 'huh', '||period||', '||return||', '||return||', 'jerry:', "it's", 'on', 'the', 'door', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'examining', 'a', 'yellow', 'squeeze', 'bottle', '||rightparen||', 'what', '||comma||', 'this', 'yellow', 'stuff', '||questionmark||', 'no', '||comma||', 'i', 'said', 'mustard', '||comma||', 'jerry', '||period||', 'dijon', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', "'s", 'no', 'good', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', "that's", 'bush', 'league', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||period||', 'wha', '||period||', '||period||', '||period||', 'wait', '||period||', '||period||', '||period||', 'what', '||comma||', "you're", 'gonna', 'leave', 'it', 'there', '||questionmark||', "that's", 'like', 'half', 'a', 'pound', 'of', 'turkey', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'i', "can't", 'eat', 'that', '||period||', 'you', "can't", 'eat', 'a', 'sandwich', 'without', 'dijon', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcasm', '||rightparen||', 'yeah', '||comma||', "you're", 'right', '||period||', 'i', 'really', 'should', 'keep', 'more', 'of', 'your', 'favourites', 'on', 'hand', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', "i'm", 'getting', 'a', 'vibe', 'here', '||period||', 'what', '||comma||', 'are', 'you', 'unhappy', 'with', 'our', 'arrangement', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'arrangement', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'was', 'under', 'the', 'impression', 'that', 'i', 'could', 'take', 'anything', 'i', 'wanted', 'from', 'your', 'fridge', '||comma||', 'and', 'you', 'could', 'take', 'whatever', 'you', 'want', 'from', 'mine', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcasm', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', 'lemme', 'know', 'when', 'you', 'get', 'something', 'in', 'there', 'and', 'i', 'will', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "what's", 'with', 'your', 'neck', '||questionmark||', '||return||', '||return||', 'elaine:', 'still', 'killing', 'me', 'from', 'having', 'to', 'get', 'that', 'bike', 'off', 'the', 'wall', '||period||', '||leftparen||', 'pointedly', '||rightparen||', 'by', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', "it's", 'any', 'consolation', '||comma||', 'i', 'did', 'get', 'her', 'number', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sitting', '||rightparen||', 'ah', '||comma||', 'i', 'think', 'i', 'really', 'strained', 'it', '||period||', 'ow', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'i', 'doubt', 'you', 'strained', 'it', '||period||', 'maybe', 'you', 'pulled', 'it', '||period||', '||return||', '||return||', 'elaine:', 'ach', '||comma||', 'maybe', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'twist', 'it', '||questionmark||', 'you', 'coulda', 'twisted', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'wrench', 'it', '||questionmark||', 'did', 'you', 'jam', 'it', '||questionmark||', 'maybe', 'you', 'squeezed', 'it', '||period||', 'turned', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', '<img', 'src=http:', '//tinyurl', '||period||', 'com/2b9c', 'width=200', '>', '||return||', '||return||', 'elaine:', '||leftparen||', 'patience', 'exhausted', '||rightparen||', 'you', 'know', 'what', '||comma||', 'why', "don't", 'you', 'just', 'shut', 'the', 'hell', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'awright', '||period||', '||return||', '||return||', 'elaine:', 'god', '||period||', 'man', '||comma||', 'this', 'is', 'killing', 'me', '||period||', 'right', 'now', '||comma||', 'i', 'would', 'give', 'that', 'bike', 'to', 'the', 'first', 'person', 'who', 'could', 'make', 'this', 'pain', 'go', 'away', '||period||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', 'you', 'really', 'hurting', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||comma||', "it's", 'just', 'awful', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'hmm', '||period||', 'well', '||comma||', 'your', 'arterioles', 'have', 'constricted', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'lean', 'forward', '||comma||', 'relax', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'worried', '||rightparen||', 'what', '||questionmark||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'encounter', 'shiatsu', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'minute', '||period||', 'kramer', '||comma||', 'you', 'know', 'what', "you're", 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'continuing', 'to', 'work', '||rightparen||', 'ohh', 'yeah', '||period||', 'a', 'wise', 'man', 'once', 'taught', 'me', 'the', 'healing', 'power', 'of', 'the', "body's", 'natural', 'pressure', 'points', '||period||', '||return||', '||return||', 'elaine:', 'ah', 'hah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'he', 'sells', 'tee', '||dash||', 'shirts', 'outside', 'the', 'world', 'trade', 'centre', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'seriously', 'worried', '||rightparen||', 'wha', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'a', 'genius', '||period||', 'here', 'we', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'from', 'pain', '||comma||', 'will', 'come', 'pleasure', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||questionmark||', 'voila', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pleasantly', 'surprised', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', 'that', 'is', 'unbelievable', '||period||', 'the', 'pain', 'is', 'totally', 'gone', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'even', 'more', 'amazing', 'is', 'his', 'formal', 'training', 'is', 'in', 'pediatrics', '||period||', '||return||', '||return||', 'kramer:', 'awright', '||comma||', 'my', 'work', 'is', 'done', 'here', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'big', 'smile', '||rightparen||', 'oh', 'man', '||exclammark||', 'kramer', '||comma||', 'thank', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'closing', 'the', 'door', '||rightparen||', 'yeah', '||comma||', 'you', 'can', 'send', 'that', 'bike', 'over', 'any', 'time', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'after', 'kramer', '||rightparen||', 'what', '||questionmark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', '||comma||', 'what', 'is', 'he', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', '||leftparen||', 'realising', '||rightparen||', 'oh', '||comma||', "'cos", 'you', 'said', "you'd", 'give', 'the', 'bike', 'to', 'anyone', 'who', 'fixes', 'your', 'neck', '||period||', '||return||', '||return||', 'elaine:', 'you', 'really', 'think', 'he', 'wants', 'the', 'bike', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'it', 'took', 'him', 'like', 'ten', 'seconds', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'the', 'most', "he's", 'worked', 'in', 'the', 'last', 'four', 'months', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'they', 'really', 'went', 'for', 'that', 'soda', '||period||', '||return||', '||return||', 'susan:', 'what', '||comma||', 'are', 'you', 'crazy', '||questionmark||', 'they', 'hated', 'it', '||period||', 'they', 'were', 'just', 'humouring', 'you', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'alright', '||period||', 'believe', 'me', '||comma||', 'that', "kid's", 'gonna', 'be', 'called', 'soda', '||period||', '||return||', '||return||', 'susan:', 'i', 'can', 'tell', 'you', '||comma||', 'i', 'would', 'never', 'name', 'my', 'child', 'soda', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', 'course', 'not', '||period||', 'i', 'got', 'a', 'great', 'name', 'for', 'our', 'kids', '||period||', 'a', 'real', 'original', '||period||', 'you', 'wanna', 'hear', 'what', 'it', 'is', '||questionmark||', 'huh', '||comma||', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'susan:', 'what', 'is', 'that', '||questionmark||', 'sign', 'language', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'seven', '||period||', '||return||', '||return||', 'susan:', 'seven', 'costanza', '||questionmark||', "you're", 'serious', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', "it's", 'a', 'beautiful', 'name', 'for', 'a', 'boy', 'or', 'a', 'girl', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'especially', 'a', 'girl', '||period||', 'or', 'a', 'boy', '||period||', '||return||', '||return||', 'susan:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', "don't", 'like', 'the', 'name', '||questionmark||', '||return||', '||return||', 'susan:', "it's", 'not', 'a', 'name', '||period||', "it's", 'a', 'number', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', "it's", 'mickey', "mantle's", 'number', '||period||', 'so', 'not', 'only', 'is', 'it', 'an', 'all', 'around', 'beautiful', 'name', '||comma||', 'it', 'is', 'also', 'a', 'living', 'tribute', '||period||', '||return||', '||return||', 'susan:', "it's", 'awful', '||period||', 'i', 'hate', 'it', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', '||rightparen||', 'well', '||comma||', "that's", 'the', 'name', '||exclammark||', '||return||', '||return||', 'susan:', '||leftparen||', 'also', 'angry', '||rightparen||', 'oh', 'no', 'it', 'is', 'not', '||exclammark||', 'no', 'child', 'of', 'mine', 'is', 'ever', 'going', 'to', 'be', 'named', 'seven', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'yelling', '||rightparen||', 'awright', '||comma||', "let's", 'just', 'stay', 'calm', 'here', '||exclammark||', "don't", 'get', 'all', 'crazy', 'on', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'seven', '||questionmark||', 'yeah', '||comma||', 'i', 'guess', 'i', 'could', 'see', 'it', '||period||', 'seven', '||period||', 'seven', 'periods', 'of', 'school', '||comma||', 'seven', 'beatings', 'a', 'day', '||period||', 'roughly', 'seven', 'stitches', 'a', 'beating', '||comma||', 'and', 'eventually', 'seven', 'years', 'to', 'life', '||period||', 'yeah', '||comma||', "you're", 'doing', 'that', 'child', 'quite', 'a', 'service', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'adamant', '||rightparen||', 'yes', 'i', 'am', '||period||', 'i', 'defy', 'you', 'to', 'come', 'up', 'with', 'a', 'better', 'name', 'than', 'seven', '||period||', '||return||', '||return||', 'jerry:', 'awright', '||comma||', "let's", 'see', '||period||', 'how', 'about', 'mug', '||questionmark||', '||leftparen||', 'picks', 'up', 'the', 'mug', '||rightparen||', 'mug', 'costanza', '||comma||', "that's", 'original', '||period||', '||leftparen||', 'he', 'turns', 'and', 'sees', 'another', 'item', '||rightparen||', 'or', 'uh', '||comma||', 'ketchup', '||questionmark||', 'pretty', 'name', 'for', 'a', 'girl', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'you', 'having', 'a', 'good', 'time', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'fifty', 'right', 'here', 'in', 'the', 'cupboard', '||period||', 'how', 'about', 'bisquik', '||questionmark||', 'pimento', '||period||', 'gherkin', '||period||', 'sauce', '||period||', 'maxwell', 'house', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouts', '||rightparen||', 'awright', 'already', '||exclammark||', '||exclammark||', 'this', 'is', 'a', 'very', 'key', 'issue', 'with', 'me', '||comma||', 'jerry', '||period||', 'i', 'had', 'this', 'name', 'for', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'forgot', 'to', 'call', 'christie', '||period||', '||return||', '||return||', 'george:', 'christie', '||questionmark||', "that's", 'the', 'one', 'you', 'met', 'in', 'the', 'antique', 'store', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'she', 'had', 'this', 'great', 'black', 'and', 'white', 'dress', '||comma||', 'with', 'a', 'scoop', 'neck', '||period||', 'she', 'looked', 'like', 'some', 'kinda', 'superhero', '||period||', '||return||', '||return||', 'george:', 'and', 'you', 'met', 'her', 'in', 'an', 'antique', 'store', '||exclammark||', 'i', "don't", 'know', 'how', 'you', 'do', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smug', '||rightparen||', "i'm", 'not', 'engaged', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'got', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'putting', 'the', 'items', 'on', 'the', 'counter', '||rightparen||', 'got', 'the', 'answer', '||comma||', 'jerry', '||period||', 'refrigerator', 'problem', '||comma||', 'is', 'solved', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'no', 'problem', '||period||', 'you', 'can', 'take', 'whatever', 'you', 'want', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'will', '||period||', 'but', 'now', '||comma||', "i'm", 'accountable', '||period||', 'alright', '||comma||', 'i', 'take', 'what', 'i', 'want', '||period||', '||return||', '||return||', 'kramer:', 'here', '||period||', 'i', 'write', 'it', 'down', '||period||', '||leftparen||', 'he', 'writes', '||rightparen||', '||quotemark||', 'one', 'cupcake', '||period||', '||quotemark||', 'and', 'then', 'i', 'put', 'it', 'in', 'the', 'bowl', '||period||', '||leftparen||', 'he', 'tears', 'off', 'the', 'sheet', '||comma||', 'crumples', 'it', 'and', 'drops', 'it', 'into', 'the', 'bowl', '||rightparen||', 'there', '||period||', 'very', 'simple', '||period||', '||return||', '||return||', 'jerry:', 'sort', 'of', 'a', 'mooching', 'inventory', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'not', 'mooching', '||period||', "'cos", 'at', 'the', 'end', 'of', 'the', 'week', '||comma||', 'you', 'add', "'em", 'all', 'up', '||comma||', 'and', 'you', 'give', 'me', 'the', 'bill', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'now', 'look', 'i', 'gotta', 'run', 'some', 'errands', '||comma||', 'so', 'look', '||period||', 'when', 'elaine', 'comes', 'by', 'with', 'that', 'bike', '||comma||', 'you', 'hang', 'onto', 'it', 'for', 'me', '||comma||', 'alright', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', "don't", 'know', 'if', "you're", 'getting', 'that', 'bike', '||period||', '||return||', '||return||', 'kramer:', 'yes', 'i', 'am', '||period||', 'we', 'had', 'a', 'verbal', 'contract', '||period||', 'if', 'we', "can't", 'take', 'each', 'other', 'at', 'our', 'word', '||comma||', 'all', 'is', 'lost', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'waving', 'at', 'the', 'bowl', '||rightparen||', 'oh', 'yeah', '||comma||', 'yeah', '||period||', 'put', 'that', 'on', 'my', 'tab', '||period||', '||return||', '||return||', 'jerry:', 'well', 'this', 'is', 'it', '||period||', 'the', 'food', 'is', 'atrocious', '||comma||', 'but', 'the', 'busboys', 'are', 'the', 'best', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'maitre', "d':", 'may', 'i', 'take', 'your', 'coat', '||comma||', 'miss', '||questionmark||', '||return||', '||return||', 'christie:', 'yes', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'the', 'same', 'outfit', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'exact', 'same', 'outfit', '||period||', '||return||', '||return||', 'george:', 'how', 'many', 'days', 'was', 'it', 'between', 'encounters', '||period||', '||return||', '||return||', 'jerry:', 'three', '||period||', '||return||', '||return||', 'george:', 'three', 'days', '||period||', 'well', '||comma||', 'maybe', 'you', 'caught', 'her', 'on', 'the', 'cusp', 'of', 'a', 'new', 'wash', 'cycle', '||period||', 'you', 'know', '||comma||', 'she', 'did', 'laundry', 'the', 'day', 'after', 'she', 'met', 'you', '||comma||', 'everything', 'got', 'clean', 'and', 'she', 'started', 'all', 'over', 'again', '||period||', '||return||', '||return||', 'jerry:', 'possibly', '||comma||', 'but', 'then', "shouldn't", 'the', 'outfit', 'only', 'reappear', 'again', 'at', 'the', 'end', 'of', 'the', 'cycle', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'she', 'moved', 'it', 'up', 'in', 'the', 'rotation', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', "it's", 'our', 'first', 'date', '||comma||', "she's", 'already', 'in', 'reruns', '||questionmark||', '||return||', '||return||', 'george:', 'very', 'curious', '||period||', '||return||', '||return||', 'jerry:', 'indeed', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'einstein', 'wore', 'the', 'exact', 'same', 'outfit', 'every', 'day', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'she', 'splits', 'the', 'atom', '||comma||', "i'll", 'let', 'it', 'slide', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'picking', 'up', 'his', 'coat', '||rightparen||', 'awright', '||comma||', "i'm", 'heading', 'home', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'did', 'susan', 'change', 'her', 'mind', 'about', 'the', 'name', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', '||rightparen||', 'not', 'yet', '||comma||', 'but', "she's", 'weakening', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'george', '||comma||', 'just', 'because', 'your', 'life', 'is', 'destroyed', '||comma||', "don't", 'destroy', 'someone', "else's", '||period||', '||return||', '||return||', 'george:', "it's", 'mickey', 'mantle', '||comma||', 'jerry', '||period||', 'my', 'idol', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', "'mickey'", '||questionmark||', '||return||', '||return||', 'george:', "'mickey'", '||questionmark||', '||leftparen||', 'incredulous', '||rightparen||', "'mickey'", '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'holding', 'up', 'a', 'can', '||rightparen||', 'hey', '||comma||', 'is', 'this', 'your', 'half', 'a', 'can', 'of', 'soda', 'in', 'the', 'fridge', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "that's", 'yours', '||period||', 'my', 'half', 'is', 'gone', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'put', 'my', 'half', 'a', 'can', 'here', 'on', 'the', 'tab', '||period||', 'why', '||comma||', "what's", 'your', 'beef', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'cannot', 'buy', 'half', 'a', 'can', 'of', 'soda', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'not', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'wanna', 'get', 'into', 'the', 'whole', 'physics', 'of', 'carbonation', 'with', 'you', 'here', '||comma||', 'but', 'you', 'know', 'the', 'sound', 'a', 'can', 'makes', 'when', 'you', 'open', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'the', 'sound', 'of', 'you', 'buying', 'a', 'whole', 'can', '||period||', 'and', 'the', 'same', 'goes', 'for', 'this', '||comma||', 'okay', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'when', 'you', 'pierce', 'the', 'skin', 'of', 'a', 'piece', 'of', 'fruit', '||comma||', "you've", 'bought', 'the', 'whole', 'fruit', '||period||', 'not', 'a', 'third', 'of', 'an', 'apple', '||comma||', 'not', 'a', 'half', 'of', 'a', 'banana', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'you', 'bite', 'it', '||comma||', 'you', 'bought', 'it', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'alright', '||period||', "i'll", 'make', 'the', 'necessary', 'adjustments', '||comma||', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||leftparen||', 'pointedly', '||rightparen||', 'so', '||comma||', "how's", 'the', 'neck', '||questionmark||', 'nice', 'and', 'loose', '||questionmark||', '||return||', '||return||', 'elaine:', 'lookit', '||comma||', 'kramer', '||comma||', 'you', 'are', 'not', 'getting', 'this', 'bike', '||period||', 'i', "don't", 'even', 'know', 'why', 'you', 'ant', 'it', '||period||', '||leftparen||', 'laughingly', '||rightparen||', 'i', 'mean', '||comma||', "it's", 'a', "girl's", 'bike', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'deadly', 'serious', '||rightparen||', "it's", 'a', 'verbal', 'contract', '||period||', 'we', 'had', 'a', 'deal', '||period||', '||return||', '||return||', 'elaine:', 'no', 'we', "didn't", '||period||', 'you', 'take', 'these', 'things', 'too', 'literally', '||period||', "it's", 'like', 'saying', '||comma||', "you're", 'hungry', 'enough', 'to', 'eat', 'a', 'horse', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'my', 'friend', 'jay', 'reimenschneider', 'eats', 'horse', 'all', 'the', 'time', '||period||', 'he', 'gets', 'it', 'from', 'his', 'butcher', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'not', 'the', 'point', '||period||', '||leftparen||', 'emphatic', '||rightparen||', 'the', 'point', 'is', '||comma||', 'you', 'just', "can't", 'have', 'the', 'bike', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'i', 'am', 'really', 'surprised', 'at', 'you', '||period||', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', 'you', 'are', 'the', 'last', 'person', 'i', 'figured', 'would', 'do', 'something', 'like', 'this', '||period||', 'i', 'mean', '||comma||', 'george', '||comma||', 'yeah', '||comma||', 'i', 'can', 'see', 'that', '||period||', 'even', 'jerry', '||period||', 'but', 'not', 'you', '||comma||', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'always', 'put', 'you', 'up', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', "they're", 'over', 'here', '||period||', 'now', "you're", '||period||', '||period||', '||period||', 'aww', '||dash||', 'whawww', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grudging', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'points', '||rightparen||', 'digidi', '||period||', '||return||', '||return||', 'george:', 'aw', "c'mon", '||period||', "it's", 'a', 'fantastic', 'name', '||period||', "it's", 'a', 'real', 'original', '||comma||', 'nobody', 'else', 'is', 'gonna', 'have', 'it', 'and', 'i', 'absolutely', 'love', 'it', '||period||', '||return||', '||return||', 'susan:', 'well', '||comma||', 'i', 'dunno', 'how', 'original', "it's", 'gonna', 'be', 'any', 'more', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'susan:', 'well', 'i', 'was', 'telling', 'carrie', 'about', 'our', 'argument', '||comma||', 'and', 'when', 'i', 'told', 'them', 'the', 'name', '||comma||', 'they', 'just', 'loved', 'it', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "what're", 'you', 'saying', '||questionmark||', '||return||', '||return||', 'susan:', "they're", 'gonna', 'name', 'their', 'baby', 'seven', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'disbelief', '||rightparen||', 'what', '||questionmark||', '||exclammark||', "they're", 'stealing', 'the', 'name', '||questionmark||', '||exclammark||', "that's", 'my', 'name', '||comma||', 'i', 'made', 'it', 'up', '||exclammark||', '||return||', '||return||', 'susan:', 'i', "can't", 'believe', 'that', "they're", 'using', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'anger', '||rightparen||', 'well', 'now', "it's", 'not', 'gonna', 'be', 'original', '||exclammark||', "it's", 'gonna', 'lose', 'all', 'its', 'cachet', '||exclammark||', '||return||', '||return||', 'susan:', 'i', 'dunno', 'how', 'much', 'cachet', 'it', 'had', 'to', 'begin', 'with', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'rage', '||rightparen||', 'oh', '||comma||', "it's", 'got', 'cachet', '||comma||', 'baby', '||exclammark||', "it's", 'got', 'cachet', 'up', 'the', 'yin', '||dash||', 'yang', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'pain', '||rightparen||', 'oh', 'god', '||exclammark||', 'oh', '||comma||', 'god', '||period||', '||leftparen||', 'bitter', '||rightparen||', 'kramer', '||exclammark||', '||return||', '||return||', 'man:', 'watch', 'your', 'step', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pain', '||rightparen||', 'oh', '||comma||', 'ah', '||period||', '||leftparen||', 'bitter', '||rightparen||', 'stupid', 'kramer', '||period||', '||return||', '||return||', 'christie:', 'excuse', 'me', '||period||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'christie:', 'over', 'here', '||period||', 'i', 'thought', 'that', 'was', 'you', '||period||', "you're", "jerry's", 'friend', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', 'uh', '||comma||', 'christie', '||questionmark||', '||return||', '||return||', 'christie:', 'yes', '||period||', 'how', "y'doing", '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'bearing', 'up', '||rightparen||', "i'm", 'fine', '||period||', '||return||', '||return||', 'christie:', 'well', '||comma||', 'i', 'gotta', 'run', '||period||', 'it', 'was', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'after', 'christie', '||rightparen||', 'okay', '||comma||', 'oh', '||comma||', 'it', 'was', 'good', 'to', '||comma||', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'voice', '1', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', "lookin'", 'good', '||period||', '||return||', '||return||', 'voice', '2', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'hey', 'cosmo', '||comma||', 'nice', 'wheels', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'that', 'right', '||exclammark||', '||return||', '||return||', 'kid:', '||leftparen||', 'scorn', '||rightparen||', 'hey', '||comma||', "you're", 'riding', 'a', "girl's", 'bike', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouting', '||rightparen||', 'kramer', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'ken', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'hello', '||period||', '||return||', '||return||', 'george:', 'hello', '||comma||', 'ken', '||period||', "it's", 'george', 'costanza', '||period||', 'i', 'think', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'angry', 'shout', '||rightparen||', 'kramer', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||return||', '||return||', 'elaine:', 'ow', '||exclammark||', 'god', '||exclammark||', 'is', 'kramer', 'back', 'from', 'his', 'little', 'joyride', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', "haven't", 'seen', 'him', '||period||', "how's", 'the', 'neck', '||questionmark||', '||return||', '||return||', 'elaine:', 'his', 'chiropractic', 'job', 'was', 'a', 'crock', '||period||', "it's", 'even', 'worse', 'than', 'it', 'was', 'before', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "i'm", 'surprised', '||period||', '||leftparen||', 'sarcasm', '||rightparen||', 'i', 'would', 'think', 'kramer', 'would', 'have', 'a', 'knack', 'for', 'moving', 'pieces', 'of', 'a', "person's", 'spine', 'around', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'you', 'know', 'what', '||comma||', 'i', 'think', 'i', 'ran', 'into', 'that', 'girl', 'from', 'the', 'antique', 'store', '||period||', "what's", 'her', 'name', '||comma||', 'christie', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'saw', 'her', '||questionmark||', 'what', 'was', 'she', 'wearing', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'i', "couldn't", 'see', '||period||', 'i', "couldn't", 'look', 'down', 'because', 'of', 'my', 'neck', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'you', 'get', 'a', 'glimpse', '||questionmark||', 'an', 'impression', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', "d'you", 'care', '||questionmark||', '||return||', '||return||', 'jerry:', 'both', 'times', "i've", 'seen', 'her', "she's", 'worn', 'the', 'same', 'dress', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'have', 'a', 'nice', 'ride', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'great', 'ride', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "that's", 'good', '||period||', "'cos", 'it', 'was', 'your', 'last', '||exclammark||', '||return||', '||return||', 'kramer:', "what're", 'you', 'talking', 'about', '||questionmark||', '||exclammark||', 'we', 'had', 'a', 'deal', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'anger', '||rightparen||', 'you', 'better', 'give', 'me', 'back', 'that', 'bike', '||exclammark||', '||leftparen||', 'indicating', 'neck', '||rightparen||', 'look', 'at', 'this', '||exclammark||', 'look', '||exclammark||', 'ow', '||period||', 'i', "couldn't", 'even', 'crawl', 'out', 'of', 'bed', 'this', 'morning', '||period||', '||return||', '||return||', 'kramer:', 'bed', '||questionmark||', 'you', 'should', 'be', 'sleeping', 'on', 'a', 'wooden', 'board', 'for', 'at', 'least', 'a', 'week', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'you', 'never', 'told', 'me', 'that', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'common', 'sense', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'what', 'is', 'he', 'talking', 'about', '||questionmark||', "he's", 'being', 'ridiculous', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'look', '||period||', 'jerry', '||comma||', 'you', 'know', 'the', 'whole', 'story', '||comma||', 'you', 'should', 'settle', 'this', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'flattered', 'that', 'you', 'would', 'both', 'appeal', 'to', 'my', 'wisdom', '||comma||', 'but', 'unfortunately', '||comma||', 'my', 'friendship', 'to', 'each', 'of', 'you', 'precludes', 'my', 'getting', 'involved', '||period||', 'what', 'you', 'need', 'is', 'an', 'impartial', 'mediator', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'd", 'go', 'for', 'that', '||period||', 'would', 'you', 'go', 'for', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "i'm", 'down', '||period||', '||return||', '||return||', 'jerry:', 'course', '||comma||', 'it', 'would', 'have', 'to', 'be', 'someone', 'who', "hasn't", 'heard', 'the', 'story', 'before', '||period||', 'someone', 'who', 'is', 'unencumbered', 'by', 'any', 'emotional', 'attachment', '||period||', 'someone', 'whose', 'heart', 'is', 'so', 'dark', '||comma||', 'it', 'cannot', 'be', 'swayed', 'by', 'pity', '||comma||', 'compassion', '||comma||', 'or', 'human', 'emotion', 'of', 'any', 'kind', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "that's", 'the', 'situation', '||period||', '||return||', '||return||', 'newman:', 'mmm', '||period||', 'you', 'present', 'an', 'interesting', 'dilemma', '||period||', 'each', 'of', 'you', 'seemingly', 'has', 'a', 'legitimate', 'claim', 'to', 'the', 'bicycle', '||comma||', 'and', 'yet', 'the', 'bicycle', 'can', 'have', 'only', 'one', 'rightful', 'owner', '||period||', 'quite', 'the', 'conundrum', '||period||', 'as', 'a', 'federal', 'employee', '||comma||', 'i', 'believe', 'the', 'law', 'is', 'all', 'we', 'have', '||period||', '||leftparen||', 'getting', 'worked', 'up', '||rightparen||', "it's", 'all', 'that', 'separates', 'us', 'from', 'the', 'savages', 'who', "don't", 'deserve', 'even', 'the', 'privilege', 'of', 'the', 'daily', 'mail', '||period||', '||leftparen||', 'angry', '||rightparen||', 'stuffing', 'parcels', 'into', 'mailboxes', 'where', 'they', "don't", 'belong', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||exclammark||', '||return||', '||return||', 'newman:', '||period||', '||period||', '||period||', 'but', '||comma||', 'you', 'must', 'promise', 'that', 'you', 'will', 'abide', 'by', 'my', 'decision', '||comma||', 'no', 'matter', 'how', 'unjust', 'it', 'may', 'seem', 'to', 'either', 'of', 'you', '||period||', 'do', 'i', 'have', 'your', 'word', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'newman:', 'alright', '||comma||', "let's", 'begin', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'excited', '||rightparen||', 'ooh', '||comma||', 'my', 'cocoa', '||exclammark||', '||return||', '||return||', 'ken:', 'why', "can't", 'we', 'use', 'seven', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'my', 'name', '||period||', 'i', 'made', 'it', 'up', '||period||', 'you', "can't", 'just', 'steal', 'it', '||period||', '||return||', '||return||', 'carrie:', 'well', '||comma||', "it's", 'not', 'as', 'if', "susan's", 'pregnant', '||period||', "you've", 'already', 'postponed', 'the', 'wedding', '||period||', 'who', 'knows', 'if', "you'll", 'ever', 'get', 'married', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', 'hey', '||period||', "don't", 'worry', 'about', 'me', '||period||', "i'm", 'not', 'a', 'waffler', '||period||', 'i', "don't", 'waffle', '||exclammark||', '||return||', '||return||', 'ken:', 'right', '||comma||', "we're", 'both', 'big', 'mickey', 'mantle', 'fans', '||comma||', 'and', 'we', 'love', 'the', 'name', '||period||', "it's", 'very', 'unusual', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'what', 'happened', 'to', 'soda', '||questionmark||', '||exclammark||', 'i', 'thought', 'we', 'all', 'agreed', 'on', 'soda', '||period||', '||return||', '||return||', 'ken:', '||leftparen||', 'emphatic', '||rightparen||', 'well', '||comma||', 'we', "don't", 'care', 'for', 'soda', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'care', 'for', 'soda', '||questionmark||', '||exclammark||', '||return||', '||return||', 'carrie:', '||leftparen||', 'worked', 'up', '||rightparen||', 'no', '||comma||', 'no', '||period||', 'we', "don't", 'like', 'soda', 'at', 'all', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'how', "d'you", 'not', 'like', 'soda', '||questionmark||', '||exclammark||', "it's", 'bubbly', '||comma||', "it's", 'refreshing', '||exclammark||', '||return||', '||return||', 'carrie:', 'oh', '||exclammark||', '||return||', '||return||', 'ken:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'carrie:', 'i', 'felt', 'something', '||period||', '||return||', '||return||', 'ken:', 'are', 'you', 'okay', '||comma||', 'honey', '||questionmark||', '||return||', '||return||', 'carrie:', 'i', 'think', "i'm", 'going', 'into', 'labour', '||period||', '||return||', '||return||', 'ken:', 'oh', 'god', '||comma||', 'oh', 'god', '||period||', 'okay', '||comma||', "let's", 'not', 'panic', '||period||', "let's", 'just', 'get', 'to', 'the', 'hospital', '||period||', '||period||', '||period||', '||return||', '||return||', 'carrie:', 'okay', '||period||', '||return||', '||return||', 'ken:', '||period||', '||period||', '||period||', 'alright', '||questionmark||', 'i', 'got', 'the', 'suitcase', 'packed', '||comma||', 'right', 'here', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'six', '||questionmark||', '||return||', '||return||', 'george:', 'nine', '||period||', 'thirt', '||period||', '||period||', '||period||', "thirteen's", 'no', 'good', '||period||', '||return||', '||return||', 'george:', 'fourteen', '||period||', '||leftparen||', 'shouting', 'after', 'ken', '||rightparen||', 'fourteen', '||exclammark||', '||return||', '||return||', 'christie:', 'are', 'you', 'okay', '||comma||', 'jerry', '||questionmark||', 'you', 'seem', 'quiet', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'just', 'a', 'little', 'uh', '||comma||', 'worn', 'out', '||period||', '||return||', '||return||', 'christie:', 'i', 'know', 'exactly', 'what', 'you', 'mean', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'sure', 'you', 'do', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'what', 'in', "god's", 'name', 'is', 'going', 'on', 'here', '||questionmark||', 'is', 'she', 'wearing', 'the', 'same', 'thing', 'over', 'and', 'over', 'again', '||questionmark||', 'or', 'does', 'she', 'have', 'a', 'closet', 'full', 'of', 'these', '||comma||', 'like', 'superman', '||questionmark||', "i've", 'got', 'to', 'unlock', 'this', 'mystery', '||period||', '||return||', '||return||', 'christie:', '||leftparen||', 'horrified', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'christie:', 'ahh', '||period||', 'i', "can't", 'go', 'to', 'the', 'movies', 'like', 'this', '||period||', 'do', 'you', 'mind', 'if', 'we', 'go', 'back', 'to', 'my', 'apartment', '||comma||', 'so', 'i', 'can', 'change', '||questionmark||', '||return||', '||return||', 'jerry:', 'change', '||questionmark||', '||leftparen||', 'thoughtful', '||rightparen||', 'yes', '||comma||', 'i', 'think', "that's", 'a', 'super', 'idea', '||period||', '||return||', '||return||', 'carrie:', 'are', 'we', 'almost', 'there', '||questionmark||', '||return||', '||return||', 'ken:', 'just', 'keep', 'breathing', '||comma||', 'okay', '||period||', '||return||', '||return||', 'carrie:', '||leftparen||', 'deep', 'breaths', '||rightparen||', 'okay', '||comma||', 'okay', '||period||', '||return||', '||return||', 'ken:', 'okay', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'carrie', '||rightparen||', 'you', 'know', '||comma||', 'the', 'thing', 'is', '||comma||', 'i', 'kinda', 'promised', 'the', 'widow', 'mantle', 'that', 'i', 'would', 'name', 'my', 'baby', 'seven', '||period||', '||return||', '||return||', 'ken:', "now's", 'not', 'the', 'best', 'time', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'carrie', '||rightparen||', "it's", 'just', 'that', '||comma||', 'i', 'know', 'her', '||comma||', 'and', 'boy', '||period||', '||period||', '||period||', '||return||', '||return||', 'ken:', '||leftparen||', 'firm', '||rightparen||', 'george', '||exclammark||', "she's", 'in', 'labour', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', 'shout', '||rightparen||', 'so', 'am', 'i', '||exclammark||', '||return||', '||return||', 'newman:', 'well', '||comma||', "you've", 'both', 'presented', 'very', 'convincing', 'arguments', '||period||', 'on', 'the', 'one', 'hand', '||comma||', 'elaine', '||comma||', 'your', 'promise', 'was', 'given', 'in', 'haste', '||period||', 'but', 'was', 'it', 'not', 'still', 'a', 'promise', '||questionmark||', 'hmm', '||questionmark||', '||return||', '||return||', 'newman:', 'and', '||comma||', 'kramer', '||comma||', 'you', 'did', 'provide', 'a', 'service', 'in', 'exchange', 'for', 'compensation', '||period||', 'but', '||comma||', 'does', 'the', 'fee', '||comma||', 'once', 'paid', '||comma||', 'not', 'entitle', 'the', 'buyer', 'to', 'some', 'assurance', 'of', 'reliability', '||questionmark||', 'hmm', '||questionmark||', 'huh', '||questionmark||', 'ahh', '||period||', 'these', 'were', 'not', 'easy', 'questions', 'to', 'answer', '||period||', 'not', 'for', 'any', 'man', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', '||period||', '||period||', '||period||', 'but', 'i', 'have', 'made', 'a', 'decision', '||period||', '||leftparen||', 'revelatory', '||rightparen||', 'we', 'will', 'cut', 'the', 'bike', 'down', 'the', 'middle', '||comma||', 'and', 'give', 'half', 'to', 'each', 'of', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shout', '||rightparen||', 'what', '||questionmark||', '||exclammark||', 'this', 'is', 'your', 'solution', '||questionmark||', '||exclammark||', 'to', 'ruin', 'the', 'bike', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'fine', '||period||', 'fine', '||period||', 'go', 'ahead', '||period||', '||leftparen||', 'standing', '||rightparen||', 'cut', 'the', 'stupid', 'thing', 'in', 'half', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'give', 'it', 'to', 'her', '||period||', "i'd", 'rather', 'it', 'belonged', 'to', 'another', 'than', 'see', 'it', 'destroyed', '||period||', 'newman', '||comma||', 'give', 'it', 'to', 'her', '||comma||', 'i', 'beg', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'y', '||dash||', 'yeah', '||period||', '||return||', '||return||', 'newman:', 'not', 'so', 'fast', '||comma||', 'elaine', '||exclammark||', 'only', 'the', "bike's", 'true', 'owner', 'would', 'rather', 'give', 'it', 'away', 'than', 'see', 'it', 'come', 'to', 'harm', '||period||', 'kramer', '||comma||', 'the', 'bike', 'is', 'yours', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'sweet', 'justice', '||period||', 'newman', '||comma||', 'you', 'are', 'wise', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'frustration', '||rightparen||', 'but', 'this', "isn't", 'fair', '||exclammark||', 'lookit', '||comma||', 'my', 'neck', 'is', 'still', 'hurting', 'me', '||comma||', 'and', 'now', 'you', 'have', 'the', 'bike', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'tell', 'it', 'to', 'the', 'judge', '||comma||', 'honey', '||period||', "i'm", 'going', 'for', 'a', 'ride', '||period||', '||return||', '||return||', 'christie:', 'here', 'we', 'are', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'around', '||rightparen||', 'ah', '||comma||', 'so', 'this', 'is', 'the', 'fortress', 'of', 'solitude', '||period||', '||return||', '||return||', 'christie:', 'well', '||comma||', 'i', 'guess', "i'll", 'go', 'change', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'change', '||period||', 'by', 'all', 'means', '||comma||', 'change', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'august', 'seventeen', '||comma||', 'nineteen', '||dash||', 'ninety', '||dash||', 'two', '||period||', 'the', 'same', 'dress', '||exclammark||', 'she', 'never', 'changes', '||exclammark||', 'oh', 'my', 'god', '||period||', '||leftparen||', 'looking', 'around', '||rightparen||', "she's", 'gotta', 'have', 'hundreds', 'of', 'these', 'dresses', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'there', 'must', 'be', 'a', 'secret', 'stash', 'around', 'here', 'somewhere', '||period||', '||return||', '||return||', 'christie:', 'ahem', '||exclammark||', 'are', 'you', 'looking', 'for', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', "what're", 'you', 'doing', '||questionmark||', 'i', 'thought', 'you', 'were', 'changing', '||period||', '||return||', '||return||', 'christie:', 'no', '||comma||', 'i', '||comma||', "i'm", 'thinking', 'we', 'should', 'just', 'call', 'it', 'a', 'night', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', "c'mon", '||comma||', 'put', 'something', 'else', 'on', '||period||', "it's", 'early', '||comma||', "let's", 'go', 'out', '||period||', '||return||', '||return||', 'christie:', 'if', "it's", 'all', 'the', 'same', 'to', 'you', '||comma||', 'i', 'think', "i'm", 'just', 'gonna', 'go', 'to', 'bed', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "i'm", 'kinda', 'tired', 'myself', '||period||', 'maybe', "i'll", 'just', 'sleep', 'here', 'on', 'the', 'couch', '||period||', 'then', 'in', 'the', 'morning', '||comma||', "you'll", 'get', 'dressed', '||comma||', "we'll", 'walk', 'out', 'together', '||period||', 'both', 'dressed', '||comma||', 'different', 'clothes', '||period||', 'well', '||comma||', "i'll", 'be', 'in', 'the', 'same', 'clothes', '||period||', "you'll", 'of', 'course', 'be', 'in', 'different', 'clothes', '||comma||', 'because', "it's", 'your', 'apartment', '||period||', 'but', "we'll", 'go', 'downstairs', '||comma||', 'me', 'in', 'my', 'same', 'clothes', '||comma||', 'you', 'in', 'your', 'different', 'clothes', '||period||', '||return||', '||return||', 'christie:', '||leftparen||', 'unequivocal', '||rightparen||', 'jerry', '||period||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', 'you', 'wanna', 'throw', 'something', 'on', 'and', 'walk', 'me', 'to', 'a', 'cab', '||questionmark||', '||return||', '||return||', 'christie:', '||leftparen||', 'gesturing', '||rightparen||', 'get', 'out', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'tell', 'me', 'what', "you're", 'wearing', 'tomorrow', '||period||', "i'll", 'help', 'you', 'lay', 'it', 'out', 'on', 'the', 'bed', '||period||', '||return||', '||return||', 'ken:', 'okay', '||comma||', 'breathe', '||comma||', 'honey', '||period||', 'breathe', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'carrie', '||rightparen||', 'you', 'know', '||comma||', "you're", 'really', 'being', 'very', 'selfish', '||period||', 'it', 'would', 'be', 'nice', 'if', 'you', 'would', 'think', 'of', 'someone', 'other', 'than', 'yourself', 'every', 'now', 'and', 'then', '||exclammark||', '||return||', '||return||', 'carrie:', '||leftparen||', 'shouts', '||rightparen||', "i'm", 'having', 'a', 'baby', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ken:', 'george', '||comma||', "you're", 'not', 'getting', 'seven', '||exclammark||', 'now', 'get', 'outta', 'here', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'desperate', '||rightparen||', 'please', '||exclammark||', 'i', 'have', 'so', 'little', '||exclammark||', '||return||', '||return||', 'orderly:', 'sorry', 'sir', '||comma||', "it's", 'family', 'only', '||period||', '||return||', '||return||', 'george:', "i'm", 'family', '||period||', "i'm", 'having', 'sex', 'with', 'the', 'cousin', '||exclammark||', '||return||', '||return||', 'george:', 'seven', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'christie', '||questionmark||', 'i', 'was', 'wondering', 'if', 'we', 'could', 'get', 'together', 'again', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'oh', 'really', '||questionmark||', 'well', 'you', "can't", 'break', 'up', 'with', 'me', 'over', 'the', 'phone', '||period||', "c'mon", '||comma||', 'you', 'gotta', 'do', 'this', 'in', 'person', '||period||', 'it', "doesn't", 'even', 'have', 'to', 'be', 'one', 'on', 'one', '||comma||', 'you', 'can', 'bring', 'a', 'group', 'of', 'friends', '||period||', 'i', 'just', 'wanna', 'see', 'you', '||period||', 'wait', '||comma||', "don't", 'hang', 'up', 'on', 'me', '||period||', '||leftparen||', 'hurriedly', '||rightparen||', 'why', "d'you", 'wear', 'the', 'same', 'dress', 'all', 'the', 'time', '||questionmark||', 'hello', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'indicating', 'the', 'cereal', '||rightparen||', 'hey', '||comma||', 'jerry', '||comma||', 'if', "you're", 'gonna', 'be', 'snacking', 'on', 'these', '||comma||', 'you', "can't", 'expect', 'me', 'to', 'pay', 'for', 'the', 'whole', 'box', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'hobo', 'joe', '||period||', 'i', "didn't", 'wanna', 'put', 'a', 'damper', 'on', 'your', 'little', 'smorgasbord', 'here', '||comma||', 'but', "it's", 'the', 'end', 'of', 'the', 'week', '||comma||', 'so', 'i', 'added', 'up', 'your', 'tab', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'does', 'a', 'double', 'take', '||rightparen||', 'yikes', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'pretty', 'steep', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'have', 'this', 'kind', 'of', 'cash', '||period||', '||return||', '||return||', 'jerry:', 'few', 'do', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'good', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'until', 'this', 'bill', 'is', 'paid', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'the', 'food', 'court', 'is', 'closed', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', 'alright', '||period||', "i'll", 'get', 'that', 'money', 'for', 'you', 'in', 'five', 'minutes', '||period||', 'and', '||comma||', "don't", 'eat', 'any', 'more', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "that's", 'my', 'bike', '||exclammark||', 'along', 'the', 'sidewalk', 'comes', 'a', 'happy', '||dash||', 'looking', 'newman', '||comma||', 'pedalling', 'the', 'schwinn', 'for', 'all', "he's", 'worth', '||period||', 'he', 'rings', 'the', 'bell', '||period||', '||return||', '||return||', 'newman:', 'gangway', '||exclammark||', '||return||', '||return||', 'elaine:', 'this', 'is', 'my', 'bike', '||exclammark||', '||return||', '||return||', 'newman:', 'oh', 'no', '||period||', 'no', 'no', 'no', 'no', '||period||', 'i', 'bought', 'it', 'from', 'kramer', '||period||', 'he', 'was', 'hard', 'up', 'for', 'cash', '||period||', 'fifty', 'bucks', '||exclammark||', '||leftparen||', 'he', 'laughs', '||rightparen||', 'can', 'you', 'believe', 'it', '||questionmark||', 'of', 'course', '||comma||', 'i', 'had', 'to', 'make', 'some', 'minor', 'modifications', '||comma||', 'you', 'know', '||period||', 'solid', 'tires', '||comma||', 'reinforced', 'seatpost', '||comma||', 'heavy', 'duty', 'shocks', '||period||', 'but', '||comma||', 'baby', '||comma||', 'this', 'is', 'one', 'sweet', 'ride', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'chasing', 'newman', '||rightparen||', 'no', '||comma||', 'you', 'better', 'gimme', 'back', 'that', 'bike', '||period||', 'newman', '||comma||', 'gimme', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'hey', '||exclammark||', '||exclammark||', 'help', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', "you're", 'back', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'back', '||comma||', 'baby', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'great', '||period||', 'one', 'of', 'the', 'best', 'jobs', 'i', 'ever', 'had', '||period||', '||return||', '||return||', 'kramer:', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'killed', '||period||', '||return||', '||return||', 'kramer:', 'you', 'killed', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'off', 'his', 'jacket', '||rightparen||', 'slaughtered', '||period||', 'wiped', 'the', 'floor', 'with', "'em", 'and', '||leftparen||', 'hanging', 'up', 'jacket', '||rightparen||', 'not', 'only', 'that', '||comma||', 'the', 'money', 'was', 'unbelievable', '||period||', '||return||', '||return||', 'kramer:', 'unbelievable', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'highest', 'paying', 'job', 'i', 'ever', 'had', '||period||', '||return||', '||return||', 'kramer:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reluctant', '||rightparen||', 'nah', '||comma||', 'nah', '||period||', "i'd", 'rather', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', "c'mon", '||period||', '||return||', '||return||', 'jerry:', 'nah', '||period||', "it's", 'not', 'good', 'for', 'friends', 'to', 'talk', 'about', 'money', '||comma||', 'it', 'can', 'affect', 'the', 'friendship', '||period||', '||return||', '||return||', 'kramer:', 'i', 'tell', 'you', 'how', 'much', 'i', 'make', '||period||', '||return||', '||return||', 'jerry:', 'and', "i'm", 'always', 'impressed', '||period||', '||return||', '||return||', 'kramer:', 'just', 'show', 'me', 'the', 'cheque', '||comma||', "c'mon", '||period||', '||return||', '||return||', 'jerry:', 'awright', '||comma||', 'fine', '||period||', 'you', 'wanna', 'see', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'wanna', 'see', 'it', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'here', '||comma||', 'check', 'that', 'out', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stunned', '||rightparen||', 'whuf', '||exclammark||', 'this', 'is', 'unbelievable', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'kramer:', 'my', 'god', '||comma||', "you're", 'rich', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'back', 'the', 'check', '||rightparen||', 'oh', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'know', 'you', 'made', 'that', 'kinda', 'money', '||period||', '||leftparen||', 'subdued', '||rightparen||', 'jeez', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'think', 'i', 'can', 'talk', 'to', 'you', 'any', 'more', '||period||', 'i', 'feel', 'inferior', '||period||', '||return||', '||return||', 'jerry:', 'i', 'never', 'shoulda', 'told', 'you', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'jerry', '||comma||', 'i', 'think', 'this', 'changes', 'the', 'relationship', '||period||', 'i', 'mean', '||comma||', 'i', 'feel', 'it', '||period||', 'do', 'you', 'feel', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "can't", 'feel', 'anything', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "what're", 'you', 'gonna', 'do', 'with', 'all', 'that', 'money', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'i', 'was', 'thinking', 'of', 'donating', 'a', 'large', 'portion', 'of', 'it', 'to', 'charity', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pleased', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'deadpan', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'should', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'to', 'tell', 'you', 'the', 'truth', '||comma||', 'i', 'was', 'thinking', 'of', 'buying', 'my', 'father', 'a', 'new', 'car', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'you', 'see', '||comma||', "that's", 'nice', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'a', 'cadillac', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiles', '||rightparen||', 'cadillac', '||period||', 'ooh', '||dash||', 'la', '||dash||', 'la', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'thinking', '||rightparen||', 'that', 'would', 'really', 'blow', 'his', 'mind', '||period||', "he's", 'always', 'wanted', 'one', '||comma||', 'his', 'whole', 'life', '||comma||', "he's", 'never', 'been', 'able', 'to', 'afford', 'it', '||period||', '||leftparen||', 'decisive', '||rightparen||', "i'm", 'gonna', 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', "you're", 'gonna', 'score', 'some', 'big', 'points', 'with', 'the', 'man', 'upstairs', 'on', 'this', 'one', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "isn't", 'that', 'what', "it's", 'all', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'was', 'pippi', 'longstocking', '||questionmark||', '||return||', '||return||', 'katy:', 'pippi', 'longstocking', '||questionmark||', '||leftparen||', 'thoughtful', '||rightparen||', 'hmm', '||comma||', 'i', "don't", "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'did', 'she', 'have', 'anything', 'to', 'do', 'with', 'hitler', '||questionmark||', '||return||', '||return||', 'katy:', 'hitler', '||questionmark||', '||leftparen||', 'thinks', '||rightparen||', 'maybe', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'george', '||period||', '||return||', '||return||', 'george:', 'have', 'you', 'seen', 'jerry', '||questionmark||', '||leftparen||', 'sitting', 'beside', 'elaine', '||rightparen||', 'i', 'told', 'him', 'two', "o'clock", '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'indicating', '||rightparen||', 'you', 'remember', 'katy', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'distracted', '||rightparen||', 'mm', '||questionmark||', '||leftparen||', 'acknowledges', 'katy', '||rightparen||', 'oh', '||comma||', 'hi', '||period||', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'we', 'met', 'uh', '||comma||', 'skiing', 'that', 'time', '||period||', "you're", 'uh', '||comma||', 'married', 'to', 'the', 'eye', 'guy', '||period||', '||return||', '||return||', 'katy:', 'also', 'ear', '||comma||', 'nose', 'and', 'throat', '||period||', '||return||', '||return||', 'george:', 'nose', '||period||', '||leftparen||', 'chuckles', '||rightparen||', "what's", 'the', 'worst', 'that', 'can', 'happen', 'to', 'a', 'nose', '||questionmark||', 'what', 'does', 'it', 'get', '||questionmark||', 'stuffed', '||questionmark||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'katy:', '||leftparen||', 'amused', '||rightparen||', "he's", 'funny', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'you', "don't", 'have', 'to', 'tell', 'me', '||period||', '||return||', '||return||', 'george:', 'ahh', '||comma||', 'ladies', '||comma||', 'please', '||comma||', 'please', '||period||', '||leftparen||', 'chuckles', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'know', 'what', '||questionmark||', 'he', 'got', 'engaged', '||period||', '||return||', '||return||', 'katy:', 'oh', '||comma||', 'you', 'did', '||questionmark||', '||leftparen||', 'disappointed', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'is', 'that', 'bad', '||questionmark||', '||return||', '||return||', 'katy:', 'i', 'actually', "would've", 'set', 'you', 'up', 'with', 'a', 'friend', 'of', 'mine', '||period||', '||return||', '||return||', 'george:', 'oh', '||dash||', 'ho', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'katy:', "you'd", 'be', 'perfect', 'for', 'her', '||period||', 'she', 'loves', 'quirky', '||comma||', 'funny', 'guys', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'curious', '||rightparen||', 'bald', '||questionmark||', 'uh', '||questionmark||', '||return||', '||return||', 'katy:', 'loves', 'bald', '||period||', '||return||', '||return||', 'george:', 'loves', 'bald', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', 'wow', '||period||', 'who', 'uh', '||comma||', 'who', 'is', 'she', '||questionmark||', '||return||', '||return||', 'katy:', 'marisa', 'tomei', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'taken', 'aback', '||rightparen||', 'the', 'actress', '||questionmark||', '||return||', '||return||', 'katy:', 'yeah', '||period||', '||return||', '||return||', 'george:', "you're", 'friends', 'with', 'marisa', 'tomei', '||questionmark||', '||return||', '||return||', 'katy:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'excited', '||rightparen||', "that's", '||comma||', "that's", 'incredible', '||period||', 'my', 'cousin', 'vinnie', '||comma||', 'i', 'love', 'her', '||comma||', 'she', 'was', 'fantastic', '||exclammark||', '||return||', '||return||', 'katy:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'more', 'excitement', '||rightparen||', 'you', 'were', 'gonna', 'fix', 'me', 'up', 'with', 'her', '||questionmark||', '||return||', '||return||', 'katy:', 'yeah', '||comma||', "she's", 'just', 'been', 'sitting', 'home', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'fever', 'pitch', '||rightparen||', 'marisa', "tomei's", 'sitting', 'home', '||comma||', 'elaine', '||exclammark||', 'wh', '||period||', '||period||', 'why', "didn't", 'you', 'tell', 'me', 'that', 'katy', 'was', 'friends', 'with', 'marisa', 'tomei', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'deadpan', '||rightparen||', 'oh', '||comma||', 'i', "don't", 'know', 'what', 'i', 'was', 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'i', 'want', 'this', 'baby', 'fully', 'loaded', '||period||', '||leftparen||', 'listens', '||rightparen||', 'well', '||comma||', 'how', 'soon', 'can', 'you', 'get', 'it', 'there', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'oh', '||comma||', "that's", 'terrific', '||period||', '||leftparen||', 'listens', '||rightparen||', 'okay', '||comma||', 'thanks', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'guess', 'what', '||period||', 'i', 'just', 'bought', 'my', 'father', 'a', 'cadillac', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'wow', '||comma||', "you're", 'quite', 'the', 'good', 'son', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'a', 'very', 'good', 'boy', '||period||', "i'm", 'flying', 'down', 'there', 'and', 'surprising', 'him', '||period||', '||return||', '||return||', 'george:', 'you', 'gonna', 'sleep', 'on', 'the', 'fold', '||dash||', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joyless', '||rightparen||', 'yeah', '||comma||', 'yes', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'you', 'uh', '||comma||', 'you', 'ever', 'hear', 'of', 'marisa', 'tomei', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'actress', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', "she's", 'uh', '||comma||', "she's", 'something', '||comma||', "isn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', 'katy', '||comma||', "elaine's", 'friend', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'happens', 'to', 'be', 'very', 'good', 'friends', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'marisa', 'tomei', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', 'how', 'does', 'she', 'know', 'marisa', 'tomei', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'i', "didn't", 'ask', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'ask', 'how', 'she', 'knows', 'marisa', 'tomei', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'the', 'point', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'george:', 'can', 'i', 'finish', '||questionmark||', '||return||', '||return||', 'jerry:', 'go', 'ahead', '||period||', 'seems', 'like', 'a', 'reasonable', 'question', '||comma||', 'is', 'all', "i'm", 'saying', '||period||', 'i', "would've", 'asked', 'her', '||period||', '||return||', '||return||', 'george:', 'alright', '||exclammark||', 'so', '||comma||', 'she', 'said', '||comma||', 'that', 'she', "could've", 'fixed', 'me', 'up', 'with', 'her', '||period||', '||return||', '||return||', 'jerry:', 'what', "d'you", 'mean', '||comma||', "could've", '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', 'if', 'i', 'uh', '||comma||', "wasn't", 'engaged', '||period||', '||return||', '||return||', 'jerry:', 'ohh', '||exclammark||', '||return||', '||return||', 'george:', 'coulda', 'fixed', 'me', 'up', 'with', 'marisa', 'tomei', '||period||', 'she', 'said', 'i', 'was', 'just', 'her', 'type', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'animated', '||rightparen||', 'yeah', '||period||', 'yeah', '||period||', 'you', 'know', 'the', 'odds', 'of', 'me', 'being', "anyone's", 'type', '||questionmark||', '||exclammark||', 'i', 'have', 'never', 'been', "anyone's", 'type', '||comma||', 'but', 'apparently', '||comma||', 'this', 'marisa', 'tomei', 'loves', 'funny', '||comma||', 'quirky', '||comma||', 'bald', 'men', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'she', 'won', 'an', 'academy', 'award', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sarcasm', '||rightparen||', 'hu', '||dash||', 'hu', '||comma||', 'like', 'i', "don't", 'know', 'that', '||questionmark||', '||leftparen||', 'excitement', '||rightparen||', 'my', 'cousin', 'vinnie', '||comma||', 'i', 'love', 'that', '||exclammark||', 'i', '||comma||', 'george', 'costanza', '||comma||', 'could', 'be', 'on', 'a', 'date', 'with', 'an', 'oscar', 'winner', '||exclammark||', 'an', 'oscar', 'winner', '||comma||', 'jerry', '||exclammark||', 'you', 'know', 'what', "that's", 'like', '||questionmark||', "it's", 'like', 'if', 'fifty', 'years', 'ago', '||comma||', 'someone', 'fixed', 'me', 'up', 'with', 'katherine', 'hepburn', '||questionmark||', 'same', 'thing', '||exclammark||', '||return||', '||return||', 'jerry:', 'now', "there's", 'a', 'match', '||period||', 'you', 'and', 'katherine', 'hepburn', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', "you've", 'seen', 'her', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'katherine', 'hepburn', '||questionmark||', 'oh', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shout', '||rightparen||', 'marisa', 'tomei', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', "she's", 'beautiful', '||comma||', 'right', '||questionmark||', "she's", 'just', 'my', 'type', '||period||', 'the', 'dark', 'hair', '||comma||', 'the', 'full', 'lips', '||period||', '||return||', '||return||', 'jerry:', 'you', 'like', 'full', 'lips', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'love', 'full', 'lips', '||period||', 'something', 'you', 'can', 'really', 'put', 'the', 'lipstick', 'on', '||period||', '||return||', '||return||', 'jerry:', 'mmm', '||dash||', 'mmm', '||period||', 'too', 'bad', "you're", 'engaged', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'downcast', '||rightparen||', 'yeah', '||comma||', 'too', 'bad', '||period||', 'too', 'bad', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'about', 'the', 'pie', '||rightparen||', 'this', 'is', 'no', 'good', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'nick:', 'hi', '||comma||', 'uh', '||comma||', 'excuse', 'me', '||period||', "i'm", 'uh', '||comma||', "i'm", 'with', 'plaza', 'cable', '||period||', "i'm", 'sorry', 'to', 'bother', 'you', '||period||', 'i', '||period||', '||period||', '||period||', "i'm", 'looking', 'for', 'the', 'guy', 'who', 'lives', 'over', 'here', '||period||', 'been', 'waiting', 'about', 'uh', '||comma||', 'heh', '||comma||', 'two', 'hours', '||period||', 'you', 'uh', '||comma||', 'happen', 'to', 'know', 'where', 'he', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'nick:', 'if', 'you', 'see', 'him', '||comma||', 'could', 'you', 'just', 'tell', 'him', 'the', 'cable', 'company', 'was', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'nick:', 'thanks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'about', 'the', 'cable', 'guy', '||rightparen||', 'nice', 'people', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'lemme', 'ask', 'you', 'a', 'question', '||period||', 'what', 'if', 'i', 'got', 'a', 'cup', 'of', 'coffee', 'with', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'about', 'susan', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'worked', 'up', '||rightparen||', 'i', "can't", 'have', 'a', 'cup', 'of', 'coffee', 'with', 'a', 'person', '||questionmark||', '||exclammark||', "i'm", 'not', 'allowed', 'to', 'have', 'coffee', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'would', 'you', 'tell', 'susan', 'about', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'not', 'necessarily', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', 'you', "can't", 'tell', 'susan', 'about', 'it', '||comma||', 'then', "there's", 'something', 'wrong', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouts', '||rightparen||', 'of', 'course', "there's", 'something', 'wrong', '||exclammark||', '||leftparen||', 'points', 'at', 'jerry', '||rightparen||', 'we', 'had', 'a', 'pact', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'cable', "guy's", 'looking', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'yeah', '||comma||', 'i', 'been', 'getting', 'hbo', 'and', 'showtime', 'for', 'free', '||period||', 'see', '||comma||', 'they', 'just', 'found', 'out', 'about', 'it', '||comma||', 'so', 'now', 'they', 'wanna', 'come', 'and', 'take', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'said', 'he', 'was', 'waiting', 'about', 'two', 'hours', '||period||', 'seemed', 'a', 'little', 'put', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'was', 'he', '||questionmark||', 'was', 'he', '||questionmark||', 'i', 'guess', 'the', 'cable', 'man', "doesn't", 'like', 'to', 'be', 'kept', 'waiting', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'seem', 'too', 'bothered', 'by', 'it', '||period||', '||return||', '||return||', 'kramer:', 'you', 'remember', 'what', 'they', 'did', 'to', 'me', 'ten', 'years', 'ago', '||questionmark||', '||quotemark||', 'oh', '||comma||', "we'll", 'be', 'there', 'in', 'the', 'morning', 'between', 'nine', 'and', 'one', '||quotemark||', '||comma||', 'or', '||quotemark||', "we'll", 'be', 'there', 'between', 'two', 'and', 'six', '||quotemark||', '||exclammark||', '||leftparen||', 'quiet', 'anger', '||rightparen||', 'and', 'i', 'sat', 'there', '||comma||', 'hour', 'after', 'hour', '||comma||', 'without', 'so', 'much', 'as', 'a', 'phone', 'call', '||period||', 'finally', '||comma||', 'they', 'show', 'up', '||comma||', 'no', 'apology', '||comma||', 'tracking', 'mud', 'all', 'over', 'my', 'nice', 'clean', 'floors', '||period||', '||leftparen||', 'malice', '||rightparen||', 'now', '||comma||', 'they', 'want', 'me', 'to', 'accommodate', 'them', '||period||', 'well', '||comma||', 'looks', 'like', 'the', "shoe's", 'on', 'the', 'other', 'foot', '||comma||', "doesn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', "i've", 'never', 'seen', 'you', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', "don't", 'wanna', 'get', 'on', 'my', 'bad', 'side', '||period||', '||return||', '||return||', 'marisa:', '||period||', '||period||', '||period||', 'positrack', '||comma||', 'which', 'was', 'not', 'available', 'on', 'the', 'sixty', '||dash||', 'four', 'buick', 'skylark', '||period||', '||return||', '||return||', 'susan:', 'hey', '||period||', '||leftparen||', 'glances', 'at', 'tv', '||rightparen||', 'hey', "what're", 'you', 'watching', '||questionmark||', 'what', 'is', 'that', '||questionmark||', 'my', 'cousin', 'vinnie', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'susan:', 'i', 'thought', 'you', 'saw', 'that', 'before', '||period||', 'how', 'come', "you're", 'watching', 'that', 'again', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||period||', '||period||', 'i', '||period||', '||period||', 'i', 'dunno', '||period||', '||return||', '||return||', 'susan:', 'did', 'you', 'know', 'marisa', 'tomei', 'won', 'an', 'oscar', 'for', 'that', '||questionmark||', 'boy', '||comma||', "she's", 'beautiful', '||comma||', "don't", 'you', 'think', '||questionmark||', 'i', 'wish', 'i', 'looked', 'like', 'that', '||period||', '||return||', '||return||', 'susan:', 'turn', 'it', 'off', '||period||', "you're", 'making', 'me', 'jealous', '||period||', "i'm", 'gonna', 'think', 'you', 'like', 'her', 'more', 'than', 'you', 'like', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'forcing', 'a', 'laugh', '||rightparen||', 'hu', '||comma||', 'ha', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'hello', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'whispering', '||rightparen||', 'elaine', '||comma||', "it's", 'me', '||comma||', 'george', '||period||', '||return||', '||return||', 'elaine:', 'george', '||period||', 'how', 'come', "you're", 'whispering', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'quiet', '||rightparen||', 'never', 'mind', '||comma||', 'never', 'mind', '||period||', 'i', 'need', 'you', 'to', 'do', 'me', 'a', 'favour', '||period||', 'uhm', '||comma||', 'remember', 'what', 'we', 'were', 'talking', 'about', 'at', 'the', 'coffee', 'shop', 'earlier', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'quiet', '||rightparen||', 'think', '||comma||', 'a', 'second', '||period||', 'you', 'know', '||comma||', 'your', 'friend', 'was', 'talking', 'about', 'me', 'and', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ech', '||comma||', 'george', '||comma||', 'i', 'have', 'no', 'idea', 'what', "you're", 'talking', 'about', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'quiet', '||rightparen||', 'the', 'actress', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shouts', '||rightparen||', 'marisa', 'tomei', '||exclammark||', '||return||', '||return||', 'susan', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'calling', 'to', 'susan', '||rightparen||', 'uh', '||comma||', 'ah', '||comma||', 'nothing', '||period||', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'yeah', '||comma||', 'what', 'about', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'uhm', '||comma||', 'i', 'think', "i'd", 'like', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||leftparen||', 'shocked', '||rightparen||', 'what', '||questionmark||', '||exclammark||', 'george', '||comma||', 'no', 'way', '||period||', "you're", 'engaged', '||exclammark||', '||return||', '||return||', 'george:', 'a', 'cup', 'of', 'coffee', '||period||', 'that', '||comma||', 'that', "doesn't", 'mean', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||period||', 'no', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'forget', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'elaine', '||exclammark||', '||leftparen||', 'shouts', '||rightparen||', 'elaine', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', "d'oh", '||period||', '||period||', '||period||', 'oh', '||comma||', 'oh', '||comma||', 'the', 'judge', '||exclammark||', 'i', 'hate', 'this', 'guy', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', "you're", 'buying', 'your', 'father', 'a', 'car', '||period||', '||return||', '||return||', 'jerry:', 'and', '||comma||', 'best', 'of', 'all', '||comma||', "it's", 'a', 'cadillac', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sharp', 'intake', 'of', 'breath', '||rightparen||', 'hoh', '||period||', 'a', 'cadillac', '||exclammark||', '||leftparen||', 'impressed', '||rightparen||', 'wow', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', 'no', 'idea', 'you', 'had', 'this', 'kind', 'of', 'money', '||period||', '||return||', '||return||', 'jerry:', 'ahh', '||comma||', 'i', 'uh', '||comma||', 'i', "don't", 'like', 'to', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'thought', 'you', 'were', 'doing', 'okay', '||period||', 'i', 'just', "didn't", 'think', 'you', 'were', 'in', 'this', 'kind', 'of', '||comma||', 'you', 'know', '||comma||', 'uh', '||period||', '||period||', '||period||', 'position', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "it's", 'just', 'money', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||rightparen||', 'so', '||comma||', "when're", 'you', 'getting', 'back', 'from', 'florida', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "don't", 'know', '||comma||', 'play', 'it', 'by', 'ear', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', '||leftparen||', 'big', 'smile', '||rightparen||', 'just', '||comma||', 'things', 'seem', 'a', 'little', 'more', 'exciting', 'when', "you're", 'around', '||period||', "that's", 'all', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'squeaky', '||rightparen||', 'sure', '||comma||', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'quiet', '||comma||', 'quiet', '||period||', '||return||', '||return||', 'nick:', 'hey', '||comma||', 'uh', '||comma||', 'you', 'know', 'the', 'guy', 'who', 'lives', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'nick:', '||leftparen||', 'quietly', 'angry', '||rightparen||', 'all', 'morning', 'i', 'been', 'waiting', 'here', '||period||', 'all', 'morning', '||period||', '||return||', '||return||', 'nick:', '||leftparen||', 'still', 'angry', '||rightparen||', 'the', 'guy', 'says', "he's", 'gonna', 'be', 'home', '||period||', 'i', 'show', 'up', 'and', 'all', 'i', 'do', 'is', 'wait', '||period||', "i'm", 'getting', 'pretty', 'sick', 'and', 'tired', 'of', 'it', '||period||', "i'm", 'not', 'gonna', 'put', 'up', 'with', 'it', 'much', 'longer', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'loving', 'this', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', "there's", 'a', 'guy', 'out', 'here', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointedly', 'to', 'elaine', '||rightparen||', 'oh', '||period||', 'thanks', 'very', 'much', 'for', 'yesterday', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'he', 'want', 'me', 'to', 'fix', 'him', 'up', 'with', 'marisa', 'tomei', '||period||', 'i', 'am', 'not', 'gonna', 'be', 'a', 'part', 'of', 'this', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', 'fixed', 'up', '||questionmark||', 'a', 'cup', 'of', 'coffee', '||exclammark||', 'a', 'cup', 'of', 'coffee', 'is', 'not', 'a', 'fix', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'wanna', 'meet', 'her', '||period||', 'you', 'wanna', 'see', 'if', 'she', 'likes', 'you', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'defensive', '||rightparen||', 'so', 'what', '||questionmark||', 'so', 'what', 'if', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrill', '||rightparen||', "you're", 'engaged', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'worked', 'up', '||rightparen||', "i'm", 'aware', '||exclammark||', "i'm", 'aware', '||exclammark||', '||exclammark||', 'but', 'this', 'is', 'marisa', 'tomei', '||comma||', 'elaine', '||period||', 'an', 'oscar', 'winner', '||exclammark||', 'how', 'can', 'i', 'live', 'the', 'rest', 'of', 'my', 'life', '||comma||', 'knowing', 'i', 'coulda', 'been', 'with', 'marisa', 'tomei', '||questionmark||', 'she', 'said', 'i', 'was', 'just', 'her', 'type', '||exclammark||', 'she', 'loves', 'short', '||comma||', 'stocky', '||comma||', 'balding', 'funny', 'men', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'notice', 'you', 'threw', "'stocky'", 'in', 'there', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'what', 'the', 'hell', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'george', '||exclammark||', "it's", 'cheating', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'adamant', '||rightparen||', "it's", 'not', 'cheating', 'if', "there's", 'no', 'sex', '||exclammark||', '||return||', '||return||', 'elaine:', 'yes', 'it', 'is', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'ahh', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'for', 'support', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'uhm', '||comma||', 'hold', '||comma||', 'hold', 'on', 'a', 'second', '||period||', '||leftparen||', 'pauses', 'counting', '||rightparen||', "i'm", '||comma||', "i'm", 'sorry', '||comma||', 'i', "didn't", 'hear', 'what', 'you', 'said', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleading', '||rightparen||', 'elaine', '||comma||', "c'mon", '||period||', 'would', 'you', 'just', 'make', 'the', 'call', '||questionmark||', '||leftparen||', 'indicates', 'the', 'phone', '||rightparen||', 'please', '||comma||', 'make', 'the', 'call', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'distractedly', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'fine', '||comma||', "i'll", 'make', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'triumph', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'eight', '||dash||', 'fifty', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||period||', '||return||', '||return||', 'elaine:', 'so', 'uh', '||comma||', 'how', 'are', 'you', 'getting', 'to', 'the', 'airport', '||questionmark||', "d'you", 'need', 'a', 'ride', '||comma||', 'or', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "don't", 'be', 'silly', '||comma||', "i've", 'arranged', 'a', 'car', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sure', '||questionmark||', 'you', 'sure', '||questionmark||', "'cos", '||comma||', 'you', 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "i'll", 'let', 'you', 'pick', 'me', 'up', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'big', 'smile', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||period||', 'uhm', '||comma||', 'is', 'katy', 'there', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'wh', '||period||', '||period||', '||period||', '||questionmark||', 'uhm', '||comma||', 'what', '||questionmark||', '||leftparen||', 'listens', '||rightparen||', 'oh', '||comma||', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'could', 'you', 'tell', 'her', 'elaine', 'called', '||questionmark||', 'yeah', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||comma||', "she's", 'in', 'the', 'hospital', '||period||', '||leftparen||', 'concerned', '||rightparen||', 'she', 'has', 'an', 'arrhythmia', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'impatient', '||rightparen||', 'what', 'about', 'marisa', 'tomei', '||questionmark||', '||exclammark||', '||return||', '||return||', 'helen:', 'morty', '||comma||', 'what', "d'you", 'have', 'to', 'open', 'this', 'box', 'for', '||questionmark||', '||leftparen||', 'waving', 'at', 'another', 'box', '||rightparen||', "there's", 'already', 'a', 'box', 'of', 'cookies', 'open', '||period||', '||return||', '||return||', 'morty:', 'i', 'wanted', 'a', 'chip', 'ahoy', '||period||', '||return||', '||return||', 'helen:', 'i', "don't", 'like', 'all', 'these', 'open', 'boxes', '||period||', '||return||', '||return||', 'morty:', 'look', '||comma||', 'i', 'got', 'a', 'few', 'good', 'years', 'left', '||period||', 'if', 'i', 'want', 'a', 'chip', 'ahoy', '||comma||', "i'm", 'having', 'it', '||period||', '||return||', '||return||', 'jerry:', 'surprise', '||exclammark||', '||return||', '||return||', 'morty:', '||leftparen||', 'shout', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'helen:', '||leftparen||', 'shock', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'morty:', 'what', 'the', 'hell', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'a', 'good', 'son', '||period||', '||return||', '||return||', 'helen:', 'just', 'like', 'that', '||questionmark||', 'no', 'calls', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', 'like', 'that', '||period||', '||return||', '||return||', 'morty:', 'boy', '||comma||', 'you', 'are', 'really', 'something', '||period||', '||return||', '||return||', 'helen:', 'to', 'what', 'do', 'we', 'owe', 'this', 'great', 'honour', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'wanna', 'know', '||questionmark||', 'come', 'on', 'outside', '||period||', '||return||', '||return||', 'morty:', 'outside', '||questionmark||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'helen:', 'whenever', 'jerry', 'comes', '||comma||', 'something', 'exciting', 'happens', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'laughs', '||rightparen||', 'heh', 'hah', '||exclammark||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', "c'mon", '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'morty:', 'look', 'at', 'this', '||exclammark||', 'look', 'at', 'this', '||exclammark||', '||leftparen||', 'excited', '||rightparen||', 'you', 'bought', 'a', 'cadillac', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'bought', 'it', 'for', 'you', '||period||', "it's", 'yours', '||period||', '||return||', '||return||', 'morty:', 'you', 'what', '||questionmark||', 'you', 'bought', 'me', 'a', 'cadillac', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'bought', 'you', 'a', 'cadillac', '||period||', '||leftparen||', 'hands', 'over', 'the', 'keys', '||rightparen||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'sharply', '||comma||', 'to', 'jerry', '||rightparen||', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'helen', '||rightparen||', 'you', "don't", 'want', 'it', '||questionmark||', 'are', 'you', 'kidding', '||questionmark||', '||return||', '||return||', 'helen:', "he's", 'not', 'buying', 'us', 'a', 'cadillac', '||period||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', '||comma||', 'nuts', '||questionmark||', '||return||', '||return||', 'helen:', "it's", 'a', 'very', 'nice', 'gesture', 'jerry', '||comma||', 'but', 'take', 'it', 'back', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'can', 'you', 'believe', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'helen:', "i'm", 'not', 'letting', 'him', 'buy', 'us', 'a', 'cadillac', '||period||', 'he', "hasn't", 'got', 'that', 'kind', 'of', 'money', '||period||', '||return||', '||return||', 'jerry:', 'how', "d'you", 'know', '||questionmark||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'get', 'out', 'of', 'here', 'mister', 'big', 'shot', '||period||', '||return||', '||return||', 'jerry:', 'why', "can't", 'i', 'buy', 'my', 'father', 'a', 'car', '||questionmark||', '||return||', '||return||', 'helen:', 'your', 'father', "doesn't", 'need', 'a', 'car', '||period||', '||return||', '||return||', 'morty:', 'yes', '||comma||', 'i', 'do', '||exclammark||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'morty', '||period||', '||return||', '||return||', 'morty:', "we're", 'keeping', 'it', '||period||', '||return||', '||return||', 'helen:', 'over', 'my', 'dead', 'body', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'under', 'his', 'breath', '||rightparen||', 'well', '||comma||', 'this', 'worked', 'out', 'just', 'as', 'i', 'had', 'hoped', '||period||', '||return||', '||return||', 'machine', '||leftparen||', 'kramer', '||rightparen||', ':', 'giddyup', '||period||', '||return||', '||return||', 'nick', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'yeah', '||comma||', 'this', 'is', 'nick', 'stevens', '||comma||', 'from', 'plaza', 'cable', '||period||', '||return||', '||return||', 'nick', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'well', '||comma||', 'i', 'waited', 'all', 'morning', 'again', '||period||', 'you', 'said', 'you', 'were', 'gonna', 'be', 'there', 'from', 'nine', 'to', 'one', '||period||', '||return||', '||return||', 'nick', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'i', 'was', 'there', '||period||', 'where', 'were', 'you', '||questionmark||', 'you', 'think', 'i', 'got', 'nothing', 'better', 'to', 'do', 'than', 'stand', 'outside', 'all', 'morning', '||comma||', 'waiting', 'for', 'you', 'to', 'show', 'up', '||questionmark||', '||exclammark||', '||return||', '||return||', 'nick', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', "you're", 'not', 'gonna', 'get', 'away', 'with', 'this', '||exclammark||', '||return||', '||return||', 'morty:', 'hey', 'jerry', '||comma||', 'look', 'at', 'this', '||period||', 'my', "seat's", 'got', 'a', 'memory', '||comma||', 'in', 'case', 'somebody', 'moves', 'it', '||period||', 'i', 'could', 'be', 'in', 'prison', 'for', 'five', 'years', '||period||', 'i', 'come', 'out', '||comma||', 'my', 'seat', 'goes', 'right', 'back', 'to', 'where', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', "that's", 'what', 'i', 'was', 'thinking', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'pointing', '||rightparen||', 'hello', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hiya', '||comma||', 'jack', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'indicating', '||rightparen||', 'so', '||comma||', 'how', "d'you", 'like', 'this', '||questionmark||', '||return||', '||return||', 'jack:', "who's", 'car', '||questionmark||', '||return||', '||return||', 'morty:', "it's", 'mine', '||period||', '||return||', '||return||', 'jack:', 'yours', '||questionmark||', '||return||', '||return||', 'morty:', "that's", 'right', '||period||', 'my', 'son', 'bought', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'jack:', 'he', 'what', '||questionmark||', '||return||', '||return||', 'morty:', 'my', 'son', 'bought', 'me', 'the', 'car', '||period||', "it's", 'a', 'present', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'disbelief', '||rightparen||', 'you', 'bought', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||period||', 'i', 'bought', 'it', '||period||', '||return||', '||return||', 'morty:', 'you', 'ever', 'see', 'one', 'so', 'nice', '||questionmark||', '||return||', '||return||', 'jack:', 'some', 'car', '||period||', '||return||', '||return||', 'morty:', 'you', 'wanna', 'take', 'a', 'ride', '||questionmark||', '||return||', '||return||', 'jack:', 'no', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'morty:', "c'mon", '||comma||', 'take', 'a', 'ride', '||period||', '||return||', '||return||', 'jack:', 'i', "don't", 'wanna', 'take', 'a', 'ride', '||period||', '||return||', '||return||', 'morty:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jack:', 'i', "don't", 'feel', 'like', 'taking', 'a', 'ride', '||period||', 'do', 'i', 'have', 'to', 'take', 'a', 'ride', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'he', "doesn't", 'wanna', 'take', 'a', 'ride', '||period||', '||return||', '||return||', 'morty:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'worked', 'up', '||rightparen||', 'what', "d'you", 'think', '||questionmark||', "i've", 'never', 'ridden', 'in', 'a', 'cadillac', 'before', '||questionmark||', 'believe', 'me', '||comma||', "i've", 'ridden', 'in', 'a', 'cadillac', 'hundreds', 'of', 'times', '||period||', 'thousands', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'skeptical', '||rightparen||', 'thousands', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jack:', 'what', '||questionmark||', "d'you", 'think', "you're", 'such', 'a', 'big', 'shot', 'now', '||comma||', 'because', 'you', 'got', 'a', 'cadillac', '||questionmark||', '||return||', '||return||', 'morty:', '||leftparen||', 'dismissive', '||rightparen||', 'ahh', '||exclammark||', '||return||', '||return||', 'jack:', '||leftparen||', 'dismissive', '||rightparen||', 'yaah', '||exclammark||', '||return||', '||return||', 'morty:', 'could', 'you', 'believe', 'that', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'aahh', '||exclammark||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'i', 'was', 'thinking', 'about', 'what', 'you', 'said', '||period||', 'about', 'uh', '||comma||', 'me', 'and', 'marisa', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'about', 'the', 'uh', '||comma||', 'two', 'of', 'us', 'getting', 'together', '||period||', 'and', 'i', 'know', 'that', 'i', 'said', 'i', 'was', 'engaged', '||comma||', 'but', '||leftparen||', 'laughs', '||rightparen||', 'uh', '||comma||', 'you', 'know', '||comma||', "it's", 'really', 'just', 'something', 'you', 'say', '||period||', "it's", 'like', '||comma||', 'going', 'steady', '||period||', 'you', 'know', 'uh', '||comma||', 'going', 'steady', '||comma||', 'engaged', '||comma||', "it's", '||comma||', "it's", 'all', 'just', 'stuff', 'you', 'say', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'anyway', '||comma||', 'i', 'was', 'watching', 'uh', '||comma||', 'my', 'cousin', 'vinnie', '||comma||', 'on', 'the', 'uh', '||comma||', 'on', 'the', 'tape', 'the', 'other', 'day', '||comma||', 'and', 'i', 'was', 'thinking', 'that', 'uh', '||comma||', 'you', 'know', '||comma||', 'the', 'two', 'of', 'us', 'might', 'take', 'a', 'meeting', '||comma||', 'as', 'they', 'say', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'so', '||comma||', 'what', "d'you", '||comma||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'urgent', '||rightparen||', 'move', 'a', 'pinkie', '||comma||', 'if', "it's", 'yes', '||period||', 'can', 'you', 'move', 'a', 'pinkie', '||questionmark||', '||return||', '||return||', 'kramer:', "y'hello", '||period||', '||return||', '||return||', 'nick', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'inexpertly', 'disguising', 'his', 'voice', '||rightparen||', 'hi', '||comma||', 'uh', 'ah', '||comma||', 'mister', 'kramer', '||comma||', 'ah', '||comma||', 'this', 'is', 'mcnab', 'down', 'at', 'the', 'phone', 'company', '||period||', "we've", 'got', 'a', 'report', 'about', 'some', 'trouble', 'on', 'your', 'line', '||period||', '||return||', '||return||', 'kramer:', 'hmm', '||period||', 'well', '||comma||', 'i', "haven't", 'had', 'any', 'trouble', '||period||', '||return||', '||return||', 'nick', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'uh', '||comma||', 'the', 'thing', 'is', '||comma||', 'we', 'happen', 'to', 'have', 'a', 'man', 'right', 'in', 'your', 'neighbourhood', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'playing', 'along', '||rightparen||', 'ohh', '||comma||', 'is', 'that', 'right', '||questionmark||', 'well', '||comma||', 'i', 'have', 'been', 'having', 'a', 'little', 'trouble', 'with', 'my', 'call', '||dash||', 'waiting', '||period||', '||return||', '||return||', 'nick:', 'we', 'can', 'fix', 'that', '||period||', 'we', 'can', 'fix', 'that', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sitting', 'back', 'on', 'the', 'couch', '||rightparen||', 'oh', '||comma||', 'can', 'you', '||questionmark||', "that's", 'funny', '||comma||', 'because', '||comma||', 'as', 'it', 'happens', '||comma||', 'i', "don't", 'have', 'call', '||dash||', 'waiting', '||period||', 'seems', 'to', 'me', 'that', 'the', 'phone', 'company', 'would', 'know', 'that', '||period||', '||return||', '||return||', 'nick:', 'oh', '||comma||', 'right', '||period||', '||leftparen||', 'laughing', 'it', 'off', '||rightparen||', "i'm", 'sorry', '||comma||', 'i', 'was', 'looking', 'at', 'the', 'wrong', 'work', 'order', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'could', 'you', 'hold', 'on', 'for', 'a', 'second', '||questionmark||', "i've", 'got', 'something', 'on', 'the', 'stove', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'mcnab', '||exclammark||', '||return||', '||return||', 'kramer:', "chunnel's", 'on', 'hbo', 'tonight', '||period||', 'why', "don't", 'you', 'stop', 'by', '||questionmark||', '||return||', '||return||', 'morty:', 'alright', '||period||', 'next', 'thing', 'on', 'the', 'agenda', '||comma||', 'the', 'restoration', 'of', 'the', 'fence', 'at', 'the', 'briarwood', 'gate', '||period||', 'at', 'the', 'present', 'time', '||comma||', 'we', 'are', 'still', 'accepting', 'bids', '||period||', '||return||', '||return||', 'herb:', "c'mon", 'morty', '||comma||', "it's", 'been', 'broken', 'for', 'six', 'months', 'already', '||period||', 'what', 'the', 'hell', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'i', '||comma||', 'as', 'your', 'president', '||comma||', 'have', 'to', 'find', 'the', 'best', 'price', '||comma||', 'and', 'right', 'now', '||comma||', 'i', 'for', 'one', '||comma||', 'do', 'not', 'think', "it's", 'cost', '||dash||', 'feasible', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'half', 'to', 'himself', '||rightparen||', "i'll", 'bet', 'you', "don't", '||period||', '||return||', '||return||', 'morty:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jack:', "c'mon", 'morty', '||comma||', 'the', 'jig', 'is', 'up', '||exclammark||', '||return||', '||return||', 'morty:', "what're", 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jack:', "i'm", 'sorry', '||period||', "i'm", 'sitting', 'here', '||comma||', 'the', 'whole', 'meeting', '||comma||', 'holding', 'my', 'tongue', '||period||', "i've", 'known', 'you', 'a', 'long', 'time', '||comma||', 'morty', '||comma||', 'but', 'i', 'cannot', 'hold', 'it', 'in', 'any', 'longer', '||period||', '||return||', '||return||', 'herb:', "what's", 'going', 'on', '||comma||', 'jack', '||questionmark||', '||return||', '||return||', 'jack:', "i'll", 'tell', 'you', "what's", 'going', 'on', '||period||', 'morty', 'seinfeld', 'has', 'been', 'stealing', 'funds', 'from', 'the', 'treasury', '||period||', '||return||', '||return||', 'morty:', 'stealing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ralph:', 'what', 'proof', 'do', 'you', 'have', '||questionmark||', '||return||', '||return||', 'jack:', 'proof', '||questionmark||', 'you', 'want', 'proof', '||questionmark||', "he's", 'driving', 'around', 'in', 'a', 'brand', 'new', 'cadillac', '||period||', 'now', 'what', 'more', 'proof', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'morty:', 'my', 'son', 'bought', 'me', 'that', 'car', '||exclammark||', '||return||', '||return||', 'jack:', 'your', 'son', '||questionmark||', '||return||', '||return||', 'morty:', 'yeah', '||period||', '||return||', '||return||', 'jack:', 'your', 'son', 'could', 'never', 'afford', 'that', 'car', '||period||', 'we', 'all', 'saw', 'his', 'act', '||comma||', 'last', 'year', '||comma||', 'at', 'the', 'playhouse', '||period||', "he's", 'lucky', 'he', 'can', 'pay', 'his', 'rent', '||exclammark||', '||return||', '||return||', 'herb:', "jack's", 'right', '||exclammark||', 'he', 'stinks', '||exclammark||', '||return||', '||return||', 'ralph:', "it's", 'his', 'material', '||period||', '||return||', '||return||', 'morty:', 'i', 'tell', 'you', '||comma||', 'he', 'bought', 'it', 'for', 'me', '||exclammark||', '||return||', '||return||', 'herb:', '||leftparen||', 'bangs', 'table', 'with', 'his', 'fist', '||rightparen||', 'i', 'move', 'for', 'a', 'full', 'investigation', '||exclammark||', '||return||', '||return||', 'ralph:', 'i', 'second', '||period||', '||return||', '||return||', 'marisa:', '||period||', '||period||', '||period||', 'go', 'introduce', 'myself', '||period||', '||return||', '||return||', 'susan:', 'hey', '||exclammark||', "what're", 'you', 'watching', '||questionmark||', '||leftparen||', 'looks', 'at', 'tv', '||rightparen||', 'only', 'you', '||questionmark||', "that's", 'another', 'marisa', 'tomei', 'movie', '||comma||', 'and', "you've", 'seen', 'that', 'one', 'too', '||period||', '||leftparen||', 'jokingly', '||rightparen||', 'what', '||comma||', "d'you", 'have', 'a', 'thing', 'for', 'her', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'laughing', 'it', 'off', 'and', 'trying', 'too', 'hard', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'have', 'a', 'thing', 'for', 'marisa', 'tomei', '||period||', 'like', 'she', 'would', 'ever', 'go', 'out', 'with', 'a', 'short', '||comma||', 'stocky', '||comma||', 'bald', 'man', '||period||', '||leftparen||', 'forced', 'laughter', '||rightparen||', 'hu', 'hu', '||comma||', 'ha', 'ha', '||period||', 'like', "that's", 'her', 'type', '||period||', 'huh', '||period||', "she's", 'an', 'oscar', 'winner', '||period||', '||leftparen||', 'nervous', 'laughter', '||rightparen||', 'he', 'heh', '||period||', 'besides', '||comma||', 'i', "don't", 'even', 'know', 'her', '||period||', "it's", 'not', 'like', "anyone's", 'trying', 'to', 'fix', 'us', 'up', '||period||', 'who', '||comma||', 'who', 'would', 'try', 'and', 'fix', 'me', 'up', 'with', 'marisa', 'tomei', '||questionmark||', '||return||', '||return||', 'susan:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'marisa:', 'have', 'i', 'told', 'you', 'how', 'much', 'i', 'love', 'you', 'today', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'in', 'the', 'last', 'fifteen', 'minutes', '||period||', '||return||', '||return||', 'marisa:', 'well', '||comma||', 'i', 'do', 'love', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'george:', 'and', 'i', 'love', 'you', '||comma||', 'marisa', '||period||', '||return||', '||return||', 'marisa:', 'well', 'then', '||comma||', "c'mon", '||comma||', 'get', 'dressed', '||period||', "we're", 'going', 'to', 'be', 'late', 'for', 'the', 'premiere', '||period||', '||return||', '||return||', 'helen:', 'impeachment', '||questionmark||', '||return||', '||return||', 'morty:', "that's", 'right', '||period||', 'have', 'you', 'ever', 'heard', 'of', 'anything', 'like', 'that', '||questionmark||', '||return||', '||return||', 'helen:', 'can', 'they', 'do', 'that', '||questionmark||', '||return||', '||return||', 'morty:', 'if', 'they', 'get', 'the', 'votes', '||period||', '||return||', '||return||', 'helen:', 'i', 'told', 'you', 'we', "shouldn't", 'have', 'let', 'him', 'give', 'us', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'you', 'tell', "'em", 'i', 'got', 'the', 'bill', 'of', 'sale', '||questionmark||', 'that', 'proves', 'i', 'paid', 'for', 'it', '||period||', '||return||', '||return||', 'morty:', 'it', "doesn't", 'make', 'a', 'difference', '||period||', 'they', 'think', "we're", 'in', 'cahoots', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'you', 'could', 'put', 'a', 'fence', 'around', 'these', 'condos', '||comma||', 'and', 'call', 'it', 'an', 'insane', 'asylum', '||period||', 'nobody', 'would', 'know', 'the', 'difference', '||exclammark||', '||return||', '||return||', 'morty:', 'no', '||dash||', "one's", 'ever', 'been', 'impeached', 'before', '||period||', 'i', "couldn't", 'live', 'here', '||period||', "we'd", 'have', 'to', 'move', 'to', 'boca', '||period||', '||return||', '||return||', 'evelyn:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'evelyn', '||period||', '||return||', '||return||', 'evelyn:', 'hello', '||comma||', 'jerry', '||period||', '||leftparen||', 'to', 'the', 'senior', 'seinfelds', '||rightparen||', 'i', 'just', 'got', 'off', 'the', 'phone', 'with', 'saul', 'brandus', '||period||', '||return||', '||return||', 'helen:', "what'd", 'he', 'say', '||questionmark||', '||return||', '||return||', 'evelyn:', "he's", 'voting', 'to', 'impeach', '||period||', '||return||', '||return||', 'evelyn:', 'not', 'because', 'he', 'think', 'you', 'stole', 'the', 'money', '||comma||', 'but', 'mainly', 'because', 'you', 'never', 'thanked', 'him', 'for', 'giving', 'you', 'his', 'aisle', 'seat', 'at', 'freddy', "roman's", 'show', '||period||', '||return||', '||return||', 'morty:', 'i', 'did', 'so', 'thank', 'him', '||exclammark||', '||return||', '||return||', 'helen:', '||leftparen||', 'admonishing', '||rightparen||', 'no', '||comma||', 'he', 'never', 'heard', 'you', '||period||', '||leftparen||', 'prods', "morty's", 'back', '||rightparen||', 'i', 'told', 'you', 'he', "didn't", 'hear', 'you', '||period||', '||return||', '||return||', 'morty:', 'ah', '||comma||', "he's", 'deaf', 'anyway', '||period||', '||return||', '||return||', 'evelyn:', 'now', '||comma||', 'my', 'sources', 'tell', 'me', '||comma||', "there's", 'three', 'votes', 'for', 'impeachment', '||comma||', 'three', 'votes', 'against', 'impeachment', '||comma||', 'and', 'one', 'undecided', '||period||', '||return||', '||return||', 'morty:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'evelyn:', 'mrs', 'choate', '||period||', '||return||', '||return||', 'jerry:', "who's", 'she', '||questionmark||', '||return||', '||return||', 'morty:', 'oh', '||comma||', 'that', 'one', '||period||', "she's", 'been', 'a', 'member', 'of', 'the', 'board', 'longer', 'than', 'anybody', '||period||', "she's", 'very', 'tough', 'to', 'deal', 'with', '||period||', '||return||', '||return||', 'helen:', 'maybe', 'we', 'should', 'have', 'her', 'over', 'for', 'coffee', '||comma||', 'and', 'explain', 'our', 'side', 'of', 'it', '||questionmark||', '||return||', '||return||', 'morty:', "that's", 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'evelyn:', 'okay', '||period||', "i'll", 'see', 'you', 'at', 'the', "lichtenberg's", '||comma||', 'tonight', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'surprise', '||rightparen||', 'the', "lichtenberg's", '||questionmark||', '||return||', '||return||', 'evelyn:', 'yes', '||comma||', "they're", 'having', 'a', 'party', '||period||', '||return||', '||return||', 'helen:', 'we', "weren't", 'invited', '||period||', '||return||', '||return||', 'evelyn:', 'oh', '||period||', 'probably', 'they', 'think', "you're", 'too', 'good', 'for', 'them', '||period||', 'you', 'know', '||comma||', 'because', 'of', 'the', 'car', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'last', 'week', '||comma||', 'on', 'seinfeld', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'ow', '||period||', 'stupid', 'fold', '||dash||', 'out', '||exclammark||', "why'd", 'they', 'put', 'the', 'bar', 'in', 'the', 'middle', 'of', 'the', 'bed', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'flirtatious', '||rightparen||', 'hi', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', 'wh', '||period||', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'clears', 'throat', '||rightparen||', 'i', 'was', 'thinking', '||comma||', 'i', 'mean', '||comma||', "i'm", 'not', 'really', 'doing', 'that', 'much', 'this', 'weekend', '||comma||', 'and', 'i', 'thought', '||comma||', 'well', '||comma||', 'huh', '||comma||', 'what', 'the', 'hell', '||comma||', 'maybe', "i'll", 'come', 'down', 'there', 'and', 'hang', 'out', 'a', 'little', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'a', 'little', 'confused', '||rightparen||', 'you', 'wanna', 'hang', 'out', 'here', '||comma||', 'at', 'phase', 'two', 'of', 'the', 'pines', 'of', 'mar', 'gables', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'just', 'two', 'hours', 'by', 'plane', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'gee', '||comma||', 'i', 'dunno', 'what', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'elaine:', 'dammit', '||exclammark||', 'i', 'got', 'another', 'call', '||period||', 'uh', '||comma||', 'hang', 'on', '||comma||', "don't", 'hang', 'up', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'urgent', 'whisper', '||rightparen||', 'elaine', '||exclammark||', 'you', 'have', 'got', 'to', 'get', 'me', 'marisa', "tomei's", 'phone', 'number', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'impatient', '||rightparen||', 'okay', '||comma||', 'george', '||comma||', 'i', 'am', 'on', 'the', 'other', 'line', '||period||', 'i', 'promise', 'you', '||comma||', "i'll", 'get', 'you', 'her', 'number', '||period||', '||return||', '||return||', 'george:', 'yeahhh', '||period||', '||return||', '||return||', 'elaine:', 'goodbye', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', 'and', 'flirty', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'disappointed', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'be', 'back', 'on', 'monday', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'if', 'you', 'need', 'that', 'ride', '||comma||', 'just', 'uhm', '||comma||', 'gimme', 'a', 'call', '||period||', '||leftparen||', 'little', 'laugh', '||rightparen||', 'heh', '||period||', 'i', 'can', 'meet', 'you', 'at', 'the', 'gate', '||comma||', 'jer', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', 'whatever', '||period||', 'alright', '||comma||', "i'll", 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'urgent', '||rightparen||', 'jerry', '||questionmark||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'putting', 'the', 'phone', 'back', 'to', 'his', 'ear', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'breathy', '||rightparen||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||period||', '||return||', '||return||', 'john:', 'hello', '||comma||', 'mister', 'kramer', '||questionmark||', 'this', 'is', 'john', 'hanaran', '||comma||', 'from', 'con', 'ed', '||period||', '||return||', '||return||', 'kramer:', 'ohh', '||comma||', "it's", 'hanaran', 'now', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'john', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'yeah', '||period||', "we've", 'had', 'some', 'reports', 'of', 'power', 'surges', 'in', 'your', 'building', '||period||', 'it', 'seems', 'some', 'jokers', 'were', 'up', 'on', 'the', 'roof', '||comma||', 'and', 'they', "must've", 'damaged', 'some', 'of', 'the', 'wires', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', "don't", 'say', '||period||', '||return||', '||return||', 'john:', '||leftparen||', 'a', 'little', 'confused', 'by', 'kramer', '||rightparen||', 'yeah', '||period||', 'either', 'way', '||comma||', 'we', 'need', 'to', 'get', 'into', 'your', 'apartment', 'and', 'do', 'a', 'safety', 'check', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'impressed', '||rightparen||', 'ohh', '||comma||', "you're", 'good', '||period||', 'you', 'are', 'really', 'good', '||period||', '||return||', '||return||', 'john:', '||leftparen||', 'confused', '||rightparen||', "what're", 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'marisa', 'tomei', '||exclammark||', 'i', '||comma||', 'just', 'spoke', 'to', 'marisa', 'tomei', '||exclammark||', '||leftparen||', 'sitting', 'opposite', 'elaine', '||rightparen||', 'and', 'i', "wasn't", 'even', 'that', 'nervous', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', "can't", 'remember', 'the', 'last', 'time', 'i', 'called', 'a', 'woman', 'without', 'being', 'nervous', '||period||', 'i', '||comma||', 'usually', '||comma||', "i'm", 'pacing', 'all', 'over', 'the', 'room', '||comma||', "i'm", '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'at', 'her', 'watch', '||rightparen||', 'okay', '||comma||', 'well', "that's", 'all', 'the', 'time', 'we', 'have', 'for', 'today', '||period||', 'why', "don't", 'we', 'pick', 'up', 'with', 'this', 'next', 'week', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'where', 'you', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'stuff', 'to', 'do', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'you', "can't", 'leave', 'yet', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'have', 'to', 'discuss', 'my', 'alibi', '||period||', '||return||', '||return||', 'elaine:', 'alibi', '||questionmark||', 'what', 'does', 'that', 'have', 'to', 'do', 'with', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'usually', 'spend', 'saturday', 'afternoons', 'with', 'susan', '||period||', "she's", 'gonna', 'want', 'to', 'know', 'what', "i'm", 'doing', '||period||', 'i', "can't", 'use', 'jerry', '||comma||', "he's", 'in', 'florida', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'so', 'you', 'wanna', 'say', 'you', 'were', 'with', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pulls', 'a', 'face', '||rightparen||', 'puh', '||period||', 'okay', '||comma||', 'fine', '||period||', 'you', 'were', 'with', 'me', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||comma||', 'wait', '||period||', 'why', 'are', 'we', 'together', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'the', 'difference', '||questionmark||', '||return||', '||return||', 'george:', 'because', '||comma||', 'if', 'you', 'ever', 'see', 'her', 'and', 'it', 'comes', 'up', '||comma||', 'we', 'have', 'to', 'be', 'in', 'sync', '||period||', 'hmm', '||questionmark||', '||return||', '||return||', 'george:', 'okay', '||period||', 'now', '||comma||', 'why', 'do', 'i', 'have', 'to', 'see', '||leftparen||', 'points', '||rightparen||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', 'because', '||comma||', "i'm", 'going', 'to', 'the', 'dentist', '||comma||', 'and', "i'm", 'afraid', '||comma||', 'and', 'i', 'want', 'you', 'to', 'go', 'with', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'dismissive', '||rightparen||', "it's", 'no', 'good', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointedly', '||rightparen||', 'okay', '||period||', 'fine', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'like', 'the', 'way', 'you', 'just', 'rejected', 'my', 'suggestion', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', "let's", 'not', 'get', 'so', 'defensive', 'here', '||period||', 'this', 'is', 'a', 'give', 'and', 'take', 'process', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'that', 'my', 'suggestion', 'was', 'good', '||period||', 'and', '||comma||', 'i', 'think', 'you', "could've", 'been', 'a', 'little', 'more', 'tactful', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'explaining', '||comma||', 'with', 'lots', 'of', 'hand', 'gestures', '||rightparen||', 'okay', '||comma||', 'look', '||period||', "we've", 'never', 'worked', 'together', 'on', 'a', 'lie', '||period||', 'now', '||comma||', 'you', "don't", 'understand', 'how', 'i', 'work', '||period||', 'i', 'have', 'a', 'certain', 'way', 'of', 'working', '||period||', 'jerry', 'and', 'i', 'have', 'worked', 'together', 'a', 'few', 'times', '||period||', 'he', 'knows', 'how', 'i', 'work', '||period||', "it's", 'not', 'a', 'personal', 'thing', '||comma||', "y'know", '||questionmark||', "we're", 'just', 'trying', 'to', 'come', 'up', 'with', 'the', 'best', 'possible', 'lie', '||period||', "that's", 'what', 'this', 'is', 'all', 'about', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'weary', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'george:', 'alright', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'fine', '||period||', '||return||', '||return||', 'george:', 'good', '||period||', '||return||', '||return||', 'elaine:', 'fine', '||comma||', 'fine', '||comma||', 'fine', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', 'how', 'about', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pleased', 'with', 'himself', '||rightparen||', 'you', 'are', 'having', 'problems', 'with', 'your', 'boyfriend', 'and', 'i', 'am', 'meeting', 'you', 'to', 'discuss', 'the', 'situation', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'have', 'a', 'boyfriend', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'pleased', '||rightparen||', 'she', "doesn't", 'know', 'that', '||period||', 'we', 'say', 'that', 'you', 'do', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'convinced', '||rightparen||', 'ech', '||period||', '||return||', '||return||', 'george:', "it's", 'good', '||period||', 'believe', 'me', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'my', 'idea', 'was', 'just', 'as', 'good', '||period||', '||return||', '||return||', 'george:', 'the', 'dentist', 'thing', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointed', '||rightparen||', 'yeah', '||comma||', 'right', '||period||', 'the', 'dentist', 'thing', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'the', 'dentist', 'thing', 'was', 'not', 'good', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'alright', '||period||', "what's", 'his', 'name', '||questionmark||', 'who', 'is', 'he', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'after', 'a', "moment's", 'thought', '||rightparen||', 'art', 'vandelay', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'incredulity', '||rightparen||', 'art', 'vandelay', '||questionmark||', 'this', 'is', 'my', 'boyfriend', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'your', 'boyfriend', '||period||', '||return||', '||return||', 'elaine:', 'what', 'does', 'he', 'do', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'an', 'importer', '||period||', '||return||', '||return||', 'elaine:', 'just', 'imports', '||questionmark||', 'no', 'exports', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'irritated', '||rightparen||', "he's", 'an', 'importer', '||dash||', 'exporter', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||period||', 'so', '||comma||', "i'm", 'dating', 'art', 'vandelay', '||period||', 'what', 'is', 'the', 'problem', "we're", 'discussing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'thoughtful', '||rightparen||', 'yes', '||period||', 'yes', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', '||rightparen||', 'yi', '||dash||', 'yi', '||dash||', 'yi', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', '||leftparen||', 'explaining', '||comma||', 'with', 'hand', 'gestures', '||rightparen||', 'how', "'bout", 'this', '||questionmark||', 'how', 'about', '||comma||', "he's", 'thinking', 'of', 'quitting', 'the', 'exporting', '||comma||', 'and', 'just', 'focussing', 'in', 'on', 'the', 'importing', '||period||', 'and', 'this', 'is', 'causing', 'a', 'problem', '||comma||', 'because', '||comma||', 'why', 'not', 'do', 'both', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'irked', '||rightparen||', 'oh', '||comma||', 'what', '||questionmark||', 'you', "don't", 'like', 'that', 'suggestion', 'either', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'very', 'complicated', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'definitely', 'irritated', '||rightparen||', 'you', 'know', '||comma||', 'it', 'seems', 'to', 'me', 'that', "it's", 'all', 'you', '||comma||', 'and', 'none', 'of', 'my', 'ideas', 'are', 'getting', 'in', '||period||', 'you', 'know', '||comma||', 'i', 'mean', '||comma||', 'you', 'just', 'know', 'it', 'all', 'and', 'i', 'am', 'miss', 'stupid', '||period||', 'right', '||questionmark||', '||return||', '||return||', 'morty:', "what're", 'you', 'doing', '||questionmark||', 'are', 'you', 'making', 'coffee', '||questionmark||', '||return||', '||return||', 'helen:', 'yeah', '||period||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'maybe', 'you', 'better', 'make', 'a', 'pot', 'of', 'tea', '||comma||', 'too', '||period||', '||return||', '||return||', 'helen:', 'morty', '||comma||', "you're", 'driving', 'me', 'crazy', '||period||', '||return||', '||return||', 'morty:', 'look', '||comma||', 'i', "don't", 'want', 'anything', 'to', 'go', 'wrong', '||period||', 'if', 'this', 'woman', 'votes', 'to', 'impeach', 'me', '||comma||', "i'll", 'be', 'a', 'laughing', 'stock', '||period||', '||return||', '||return||', 'helen:', 'you', 'wanna', 'drive', 'a', 'cadillac', '||questionmark||', 'expect', 'to', 'pay', 'the', 'consequences', '||period||', '||return||', '||return||', 'morty:', 'there', 'she', 'is', '||period||', '||return||', '||return||', 'morty:', 'hello', '||period||', 'hello', '||comma||', 'mrs', 'choate', '||period||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'come', 'in', '||comma||', 'come', 'in', '||period||', 'may', 'i', 'take', 'your', 'coat', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'no', '||comma||', 'no', '||period||', 'i', 'prefer', 'to', 'wear', 'it', '||period||', "nobody's", 'taking', 'my', 'coat', '||period||', '||return||', '||return||', 'helen:', 'ah', '||comma||', 'how', "'bout", 'a', 'cup', 'of', 'coffee', 'or', 'something', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'coffee', '||questionmark||', 'ach', '||period||', "i'll", 'take', 'hot', 'water', 'with', 'lemon', '||comma||', 'if', 'you', 'have', 'it', '||period||', '||return||', '||return||', 'helen:', "i'll", 'see', '||period||', '||leftparen||', 'indicating', 'the', 'couch', '||rightparen||', 'have', 'a', 'seat', '||period||', "that's", 'a', 'lovely', 'scarf', "you're", 'wearing', '||period||', 'where', 'did', 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'ahh', '||comma||', "they're", 'a', 'dime', 'a', 'dozen', '||period||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'hi', 'jerry', '||period||', 'mrs', 'choate', '||comma||', '||leftparen||', 'indicating', '||rightparen||', 'this', 'is', 'my', 'son', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'gimme', 'that', 'rye', '||exclammark||', '||rightparen||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'stop', 'it', '||period||', 'let', 'go', '||period||', 'help', '||exclammark||', 'someone', '||comma||', 'help', '||exclammark||', '||return||', '||return||', 'jerry:', 'shut', 'up', '||comma||', 'you', 'old', 'bag', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', '||leftparen||', 'shouting', 'after', 'him', '||rightparen||', 'thief', '||exclammark||', 'stop', 'him', '||exclammark||', 'stop', 'him', '||comma||', "he's", 'got', 'my', 'rye', '||exclammark||', '||return||', '||return||', 'jerry:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'hello', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'holding', "jerry's", 'shoulders', '||rightparen||', 'jerry', 'lives', 'in', 'new', 'york', '||period||', 'you', 'just', 'came', 'from', 'new', 'york', '||comma||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'yeah', '||period||', 'i', 'was', 'visiting', 'my', 'daughter', '||comma||', 'and', "i'll", 'never', 'go', 'back', '||period||', 'the', 'crime', 'there', 'is', 'just', 'terrible', '||period||', 'do', 'you', 'know', 'i', 'got', 'mugged', 'for', 'a', 'marble', 'rye', '||comma||', 'right', 'on', 'the', 'street', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'sympathy', '||rightparen||', 'oh', '||comma||', "that's", 'terrible', '||period||', 'they', 'stole', 'a', 'rye', '||questionmark||', 'why', 'would', 'they', 'steal', 'a', 'rye', '||questionmark||', '||return||', '||return||', 'morty:', "that's", 'what', 'the', "city's", 'turning', 'into', '||period||', "they'll", 'steal', 'anything', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', "they're", 'like', 'savages', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "there's", 'some', 'sickos', 'out', 'there', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', '||leftparen||', 'peering', 'at', 'jerry', '||rightparen||', 'you', 'look', 'very', 'familiar', '||period||', 'have', 'we', 'ever', 'met', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'ever', 'go', 'to', 'camp', 'tiyoga', '||questionmark||', '||return||', '||return||', 'helen:', 'maybe', "you've", 'seen', 'him', 'on', 'television', '||period||', '||return||', '||return||', 'morty:', "jerry's", 'a', 'comedian', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'naw', '||comma||', 'i', "don't", 'watch', 'tv', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'opening', 'the', 'door', '||rightparen||', 'well', '||comma||', 'it', 'was', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', "don't", 'go', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', 'think', "i'll", 'go', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'so', '||comma||', 'morty', '||comma||', "what's", 'this', 'all', 'about', '||questionmark||', 'what', "d'you", 'want', '||questionmark||', '||return||', '||return||', 'susan:', 'hey', '||comma||', "where're", 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'wha', '||period||', '||period||', '||questionmark||', 'i', "didn't", 'tell', 'you', '||questionmark||', 'i', 'gotta', 'go', 'meet', 'elaine', '||period||', '||return||', '||return||', 'susan:', 'elaine', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'she', '||period||', '||period||', "she's", 'having', 'some', 'problems', 'with', 'this', 'guy', "she's", 'seeing', '||period||', '||return||', '||return||', 'susan:', 'i', "didn't", 'even', 'know', 'she', 'was', 'dating', 'anyone', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', "she's", 'seeing', 'this', 'guy', '||comma||', 'art', 'vandelay', '||period||', '||return||', '||return||', 'susan:', 'so', 'what', 'does', 'he', 'do', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'an', 'importer', '||dash||', 'exporter', '||period||', '||return||', '||return||', 'susan:', 'what', 'kind', 'of', 'problems', 'are', 'they', 'having', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'happy', 'delivering', "elaine's", 'lie', '||rightparen||', 'well', '||comma||', 'he', 'uh', '||comma||', 'he', 'wants', 'to', 'uh', '||comma||', 'quit', 'the', 'exporting', 'and', 'uh', '||comma||', 'focus', 'just', 'on', 'the', 'importing', '||period||', 'and', "it's", 'a', 'problem', '||comma||', 'because', 'she', 'thinks', 'the', 'exporting', 'is', 'as', 'important', 'as', 'the', 'importing', '||period||', '||return||', '||return||', 'susan:', 'are', 'you', 'having', 'an', 'affair', 'with', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'to', 'laugh', 'it', 'off', '||rightparen||', 'right', '||period||', "c'mon", '||exclammark||', "i'm", 'having', 'an', 'affair', 'with', 'elaine', '||questionmark||', '||exclammark||', 'if', 'i', 'was', 'having', 'an', 'affair', 'with', 'elaine', '||comma||', 'i', "wouldn't", 'tell', 'you', "i'm", 'going', 'to', 'see', 'elaine', '||period||', 'i', 'would', 'make', 'up', 'some', 'other', 'person', 'to', 'tell', 'you', 'i', 'was', 'gonna', 'go', 'see', '||comma||', 'and', 'then', 'i', 'would', 'go', 'see', 'ela', '||period||', '||period||', 'elaine', '||period||', '||return||', '||return||', 'susan:', 'huh', '||questionmark||', '||return||', '||return||', 'nick:', '||leftparen||', 'yelling', 'after', 'the', 'fleeing', 'kramer', '||rightparen||', "i'll", 'get', 'you', '||exclammark||', "i'll", 'get', 'you', 'kramer', '||exclammark||', 'you', "won't", 'get', 'away', 'with', 'this', '||exclammark||', '||return||', '||return||', 'morty:', 'alright', '||comma||', 'are', 'you', 'ready', 'to', 'eat', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'glancing', 'at', 'her', 'watch', '||rightparen||', 'oh', '||comma||', 'right', '||comma||', "let's", 'go', '||period||', 'jerry', '||comma||', "let's", 'go', '||comma||', "it's", 'time', 'to', 'eat', '||period||', "we're", 'going', 'to', 'dinner', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'dinner', '||questionmark||', 'w', '||period||', '||period||', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'pulling', 'on', 'a', 'coat', '||rightparen||', "it's", 'four', '||dash||', 'thirty', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bewildered', '||rightparen||', 'four', '||dash||', 'thirty', '||questionmark||', 'who', 'eats', 'dinner', 'at', 'four', '||dash||', 'thirty', '||questionmark||', '||return||', '||return||', 'morty:', 'by', 'the', 'time', 'we', 'sit', 'down', '||comma||', "it'll", 'be', 'quarter', 'to', 'five', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', 'why', 'we', 'have', 'to', 'eat', 'now', '||period||', '||return||', '||return||', 'helen:', 'we', 'gotta', 'catch', 'the', 'early', '||dash||', 'bird', '||period||', "it's", 'only', 'between', 'four', '||dash||', 'thirty', 'and', 'six', '||period||', '||return||', '||return||', 'morty:', 'yeah', '||period||', 'they', 'give', 'you', 'a', 'tenderloin', '||comma||', 'a', 'salad', 'and', 'a', 'baked', 'potato', '||comma||', 'for', 'four', '||dash||', 'ninety', '||dash||', 'five', '||period||', 'you', 'know', 'what', 'that', 'cost', 'you', 'after', 'six', '||questionmark||', '||return||', '||return||', 'jerry:', "can't", 'we', 'eat', 'at', 'a', 'decent', 'hour', '||questionmark||', "i'll", 'treat', '||comma||', 'okay', '||questionmark||', '||return||', '||return||', 'helen:', "you're", 'not', 'buying', 'us', 'dinner', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'emphatic', '||rightparen||', "i'm", 'not', 'force', '||dash||', 'feeding', 'myself', 'a', 'steak', 'at', 'four', '||dash||', 'thirty', 'to', 'save', 'a', 'coupla', 'bucks', '||comma||', "i'll", 'tell', 'you', 'that', '||exclammark||', '||return||', '||return||', 'helen:', 'alright', '||comma||', '||leftparen||', 'sitting', 'on', 'the', 'couch', '||rightparen||', "we'll", 'wait', '||period||', '||leftparen||', 'pointedly', '||rightparen||', 'but', "it's", 'unheard', 'of', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'so', '||comma||', 'anyway', '||comma||', 'if', 'you', 'think', 'about', 'it', '||comma||', 'manure', 'is', 'not', 'really', 'that', 'bad', 'a', 'word', '||period||', 'i', 'mean', '||comma||', "it's", "'newer'", '||comma||', 'which', 'is', 'good', '||comma||', 'and', 'a', "'ma'", 'in', 'front', 'of', 'it', '||comma||', 'which', 'is', 'also', 'good', '||period||', 'ma', '||dash||', 'newer', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'marisa:', '||leftparen||', 'laughing', '||rightparen||', "you're", 'so', 'right', '||period||', 'i', 'never', 'thought', 'of', 'it', 'like', 'that', '||period||', 'manure', '||period||', "'ma'", 'and', 'the', "'newer'", '||period||', '||return||', '||return||', 'marisa:', 'did', 'you', 'just', 'make', 'that', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'think', "i'm", 'doing', 'material', 'here', '||questionmark||', '||return||', '||return||', 'marisa:', '||leftparen||', 'laughs', '||rightparen||', 'no', '||comma||', 'no', '||period||', "it's", 'hard', 'to', 'believe', 'anyone', 'could', 'be', 'so', 'spontaneously', 'funny', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'modest', '||rightparen||', 'and', "i'm", 'a', 'little', 'tired', '||period||', '||return||', '||return||', 'marisa:', 'so', '||comma||', 'tell', 'me', '||comma||', 'how', 'is', 'it', 'that', 'a', 'man', 'like', 'you', '||comma||', 'so', 'bald', '||comma||', 'and', 'so', 'quirky', 'and', 'funny', '||comma||', 'how', 'is', 'it', "you're", 'not', 'taken', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'marisa', '||period||', 'see', '||comma||', 'the', 'thing', 'is', '||period||', '||period||', '||period||', "i'm", 'sort', 'of', 'engaged', '||period||', '||return||', '||return||', 'marisa:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "i'm", '||comma||', 'you', 'know', '||comma||', 'engaged', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||rightparen||', ':', 'hey', 'look', '||comma||', "there's", 'a', 'spot', 'right', 'in', 'front', '||period||', '||return||', '||return||', 'morty', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'always', '||comma||', 'jerry', '||period||', 'always', '||period||', '||return||', '||return||', 'doris:', 'was', 'that', 'delicious', 'or', 'what', '||questionmark||', '||return||', '||return||', 'jack:', 'where', 'you', 'gonna', 'get', 'a', 'better', 'meal', 'than', 'that', '||questionmark||', '||return||', '||return||', 'doris:', 'better', 'than', "danny's", '||period||', '||return||', '||return||', 'jack:', "danny's", '||questionmark||', '||leftparen||', 'scoffs', '||rightparen||', "c'mon", '||exclammark||', '||return||', '||return||', 'morty:', 'hello', 'jack', '||period||', '||return||', '||return||', 'helen:', 'doris', '||period||', '||return||', '||return||', 'doris:', 'hello', '||comma||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'jack', '||period||', '||return||', '||return||', 'doris:', 'hello', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'doris', '||period||', '||return||', '||return||', 'jack:', 'hello', 'morty', '||period||', '||leftparen||', 'looking', 'at', 'watch', '||rightparen||', 'well', '||comma||', 'missed', 'the', 'early', 'bird', '||period||', '||return||', '||return||', 'morty:', 'yeah', '||comma||', 'so', '||questionmark||', '||return||', '||return||', 'jack:', '||leftparen||', 'pointed', '||rightparen||', 'must', 'be', 'nice', 'to', 'have', 'that', 'kind', 'of', 'money', '||period||', '||return||', '||return||', 'jack:', 'bernie', '||comma||', 'look', "who's", 'eating', 'at', 'six', "o'clock", '||period||', '||leftparen||', 'pointed', '||rightparen||', 'your', 'suddenly', 'well', '||dash||', 'to', '||dash||', 'do', 'president', '||period||', 'but', '||comma||', 'you', 'enjoy', 'your', 'last', 'meal', 'in', 'office', '||period||', 'tomorrow', '||comma||', 'they', 'kick', 'you', 'out', '||comma||', "you'll", 'have', 'plenty', 'of', 'time', 'to', 'drive', 'around', 'in', 'your', 'cadillac', '||period||', '||return||', '||return||', 'morty:', "they're", 'not', 'kicking', 'me', 'out', '||period||', 'you', "don't", 'have', 'the', 'votes', '||period||', '||return||', '||return||', 'jack:', "that's", 'what', 'you', 'think', '||period||', '||return||', '||return||', 'morty:', "we'll", 'see', '||period||', '||return||', '||return||', 'jack:', 'yes', '||comma||', 'we', 'will', '||period||', '||return||', '||return||', 'jerry:', 'awright', '||comma||', "let's", 'eat', 'already', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'susan', '||period||', '||return||', '||return||', 'susan:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'come', 'in', '||comma||', 'come', 'in', '||period||', 'have', 'a', 'seat', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'standing', '||rightparen||', 'uh', '||comma||', 'elaine', '||comma||', 'i', 'have', 'to', 'ask', 'you', 'a', 'question', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'sure', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'dead', 'serious', '||rightparen||', 'are', 'you', 'having', 'an', 'affair', 'with', 'george', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'disbelief', '||rightparen||', 'wha', '||period||', '||period||', '||period||', '||questionmark||', '||exclammark||', '||leftparen||', 'uncontrolled', 'laughter', '||rightparen||', 'ha', 'ha', 'ha', '||period||', 'ha', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughter', '||rightparen||', "don't", 'be', 'ridiculous', '||exclammark||', '||leftparen||', 'laughter', '||rightparen||', 'i', 'mean', '||comma||', 'why', 'would', 'anyone', 'wanna', 'sleep', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'well', '||comma||', 'obviously', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', '||period||', '||leftparen||', 'disbelief', '||rightparen||', 'ap', '||period||', '||period||', 'ap', '||comma||', 'chu', '||period||', '||period||', '||period||', 'why', 'would', 'you', 'think', 'i', 'was', 'having', 'an', 'affair', 'with', 'george', '||questionmark||', '||return||', '||return||', 'susan:', 'ohh', '||comma||', 'because', 'he', 'said', 'that', 'he', 'had', 'to', 'talk', 'with', 'you', 'earlier', 'about', 'some', 'problem', 'that', 'you', 'were', 'having', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'recalling', 'the', 'arranged', 'lie', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'did', 'have', 'to', 'talk', 'with', 'him', '||period||', 'i', 'definitely', 'had', 'to', 'talk', 'with', 'him', '||period||', 'having', 'a', 'problem', 'with', 'my', 'boyfriend', '||period||', '||return||', '||return||', 'susan:', 'art', 'vandelay', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'art', 'vandelay', '||period||', '||return||', '||return||', 'susan:', "i'm", 'sorry', '||period||', '||leftparen||', 'laughing', 'it', 'off', '||rightparen||', 'i', 'feel', 'like', 'an', 'idiot', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||rightparen||', 'no', '||comma||', 'no', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'huh', '||dash||', 'hu', '||dash||', 'hu', '||period||', "it's", 'okay', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'just', 'forget', 'that', 'we', 'ever', 'talked', '||period||', 'okay', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'is', 'so', 'forgotten', '||period||', '||return||', '||return||', 'susan:', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||leftparen||', 'relieved', '||rightparen||', 'okay', '||comma||', 'no', 'problem', '||period||', '||return||', '||return||', 'susan:', 'so', '||comma||', 'was', 'george', 'helpful', 'at', 'all', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'unconvincing', '||rightparen||', 'yeah', '||period||', 'oh', '||comma||', 'yes', '||comma||', 'yes', '||comma||', 'he', 'was', 'very', 'helpful', '||period||', '||leftparen||', 'hesitant', '||rightparen||', 'uhm', '||comma||', 'because', '||comma||', 'you', 'know', '||comma||', 'art', 'and', 'i', 'were', 'getting', 'into', 'this', 'whole', 'thing', 'about', 'his', 'business', '||period||', 'uhm', '||comma||', 'you', 'know', "he's", 'an', 'importer', '||dash||', 'exporter', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'not', 'convinced', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'explaining', '||comma||', 'with', 'gestures', '||rightparen||', 'uhm', '||comma||', 'george', 'felt', 'that', 'i', 'was', 'too', 'adamant', 'in', 'my', 'stand', 'that', 'art', 'should', 'focus', 'on', 'the', 'exporting', 'and', 'forget', 'about', 'the', 'importing', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'spotting', 'an', 'inconsistency', '||rightparen||', 'wait', 'a', 'minute', '||period||', 'i', 'thought', 'that', 'art', 'wanted', 'to', 'give', 'up', 'the', 'exporting', '||period||', '||return||', '||return||', 'elaine:', "what'd", 'i', 'say', '||questionmark||', '||return||', '||return||', 'susan:', 'the', 'importing', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'caught', 'out', '||rightparen||', 'i', 'did', '||period||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'so', '||comma||', 'what', 'does', 'he', 'uh', '||comma||', 'import', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'extemporising', '||rightparen||', 'uh', '||period||', '||period||', '||period||', 'chips', '||period||', '||return||', '||return||', 'susan:', 'oh', '||period||', 'what', 'kinda', 'chips', '||questionmark||', '||return||', '||return||', 'elaine:', 'potato', '||period||', '||return||', '||return||', 'susan:', 'ah', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'embroidering', '||rightparen||', 'some', 'corn', '||period||', '||return||', '||return||', 'susan:', 'and', 'what', 'does', 'he', 'export', '||questionmark||', '||return||', '||return||', 'elaine:', 'diapers', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'fake', 'smile', '||rightparen||', "i'm", 'sorry', 'for', 'bothering', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', "it's", 'okay', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'herself', '||rightparen||', "c'mon", '||comma||', 'george', '||comma||', 'pick', 'up', '||period||', 'oh', '||comma||', 'pick', 'up', '||period||', 'oh', '||comma||', 'pick', 'up', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'susan:', 'hi', '||period||', '||leftparen||', 'pointedly', '||rightparen||', 'so', '||comma||', 'george', '||comma||', 'what', 'does', 'art', 'vandelay', 'import', '||questionmark||', '||return||', '||return||', 'george:', 'matches', '||questionmark||', 'long', 'matches', '||period||', '||return||', '||return||', 'herb:', '||period||', '||period||', '||period||', 'there', 'she', 'is', '||period||', 'okay', '||comma||', 'if', 'i', 'can', 'have', 'your', 'attention', 'for', 'a', 'minute', 'here', '||period||', "we're", 'calling', 'this', 'emergency', 'meeting', 'of', 'the', 'board', 'of', 'phase', 'two', '||comma||', 'to', 'consider', 'a', 'motion', 'of', 'impeachment', 'of', 'our', 'president', '||comma||', '||leftparen||', 'indicating', '||rightparen||', 'morty', 'seinfeld', '||period||', '||return||', '||return||', 'morty:', 'nervous', '||comma||', 'jack', '||questionmark||', '||return||', '||return||', 'jack:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'morty:', 'because', 'i', 'have', 'the', 'votes', '||period||', '||return||', '||return||', 'morty:', 'nice', 'to', 'see', 'you', '||comma||', 'mrs', 'choate', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'hello', '||comma||', 'morty', '||period||', '||return||', '||return||', 'herb:', 'building', 'a', '||period||', 'are', 'you', 'for', '||comma||', 'or', 'against', '||comma||', 'the', 'motion', 'to', 'impeach', '||questionmark||', '||return||', '||return||', 'ralph:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'herb:', 'it', 'means', '||comma||', 'if', "you're", 'for', 'the', 'motion', '||comma||', "you're", 'against', 'morty', '||period||', '||return||', '||return||', 'ralph:', 'so', 'why', "don't", 'you', 'say', 'that', '||questionmark||', '||return||', '||return||', 'herb:', 'hey', '||comma||', "i'm", 'running', 'the', 'meeting', '||period||', '||return||', '||return||', 'ralph:', 'if', 'you', 'think', 'so', '||period||', '||return||', '||return||', 'herb:', 'building', 'a', '||questionmark||', '||return||', '||return||', 'building', 'a:', 'for', 'impeachment', '||period||', '||return||', '||return||', 'herb:', 'building', 'b', '||questionmark||', '||return||', '||return||', 'building', 'b:', 'against', 'impeachment', '||period||', '||return||', '||return||', 'herb:', 'building', 'c', '||questionmark||', '||return||', '||return||', 'building', 'c:', 'for', 'impeachment', '||period||', '||return||', '||return||', 'herb:', 'building', 'd', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'against', 'impeachment', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'a', 'whisper', 'to', 'morty', '||rightparen||', 'i', "can't", 'believe', 'you', 'got', 'that', 'old', 'bag', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', 'help', '||exclammark||', 'someone', 'help', '||exclammark||', '||return||', '||return||', 'jerry:', 'shut', 'up', '||comma||', 'you', 'old', 'bag', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', '||leftparen||', 'after', 'jerry', '||rightparen||', 'oh', '||comma||', 'thief', '||exclammark||', 'thief', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'choate:', "it's", 'him', '||period||', '||leftparen||', 'pointing', 'at', 'morty', '||rightparen||', "it's", 'your', 'son', '||period||', 'now', 'i', 'know', 'where', 'i', 'saw', 'him', '||period||', 'he', 'stole', 'my', 'marble', 'rye', '||period||', '||return||', '||return||', 'morty:', 'my', 'son', 'never', 'stole', 'anything', '||period||', "he's", 'a', 'good', 'boy', '||period||', '||return||', '||return||', 'ralph:', 'they', 'should', 'lock', 'him', 'up', '||period||', '||return||', '||return||', 'mrs', '||period||', 'choate:', '||leftparen||', 'pointing', 'at', 'morty', '||rightparen||', 'like', 'father', '||comma||', 'like', 'son', '||period||', '||leftparen||', 'thumps', 'table', '||rightparen||', 'i', 'change', 'my', 'vote', '||period||', 'i', 'vote', 'to', 'impeach', '||exclammark||', '||return||', '||return||', 'building', 'b:', 'me', 'too', '||period||', 'i', 'change', 'my', 'vote', '||period||', '||return||', '||return||', 'herb:', 'all', 'those', 'in', 'favour', '||comma||', 'say', 'aye', '||period||', '||return||', '||return||', 'all', '||leftparen||', 'except', 'morty', '||rightparen||', ':', 'aye', '||period||', '||return||', '||return||', 'herb:', 'all', 'opposed', '||period||', '||return||', '||return||', 'herb:', 'the', 'ayes', 'have', 'it', '||period||', 'the', 'motion', 'passes', '||period||', '||return||', '||return||', 'herb:', 'morty', 'seinfeld', '||comma||', 'you', 'are', 'officially', 'dismissed', 'as', 'condo', 'president', '||period||', 'as', 'vice', '||dash||', 'president', '||comma||', 'jack', 'klompus', '||comma||', 'in', 'accordance', 'with', 'the', 'phase', 'two', 'constitution', '||comma||', 'is', 'hereby', 'installed', 'as', 'president', '||period||', '||return||', '||return||', 'herb:', 'hear', '||comma||', 'hear', '||comma||', 'jack', '||period||', '||return||', '||return||', 'nick:', '||leftparen||', 'weary', '||rightparen||', 'alright', '||comma||', 'i', 'know', "you're", 'in', 'there', '||period||', 'i', 'know', 'you', 'can', 'hear', 'me', '||period||', 'you', 'win', '||comma||', 'okay', '||questionmark||', 'you', 'win', '||period||', 'i', "can't", 'do', 'it', 'any', 'more', '||period||', 'what', "d'you", 'want', 'from', 'me', '||questionmark||', 'apology', '||questionmark||', 'alright', '||comma||', "i'm", 'sorry', '||period||', 'there', '||comma||', 'i', 'said', 'it', '||comma||', "i'm", 'sorry', '||comma||', "i'm", 'sorry', '||period||', 'i', 'see', 'now', 'how', 'we', 'made', 'you', 'feel', 'when', 'we', 'made', 'you', 'sit', 'home', 'waiting', '||period||', 'i', 'dunno', 'why', 'we', 'do', 'it', '||period||', '||leftparen||', 'upset', '||rightparen||', 'i', 'guess', 'maybe', 'we', 'just', 'kind', 'of', 'enjoy', 'taking', 'advantage', 'of', 'people', '||period||', '||leftparen||', 'reasonable', '||rightparen||', 'well', '||comma||', "that's", 'gonna', 'change', '||period||', 'from', 'now', 'on', '||comma||', 'no', 'more', "'nine", 'to', "twelve'", '||comma||', 'no', 'more', "'one", 'to', "five'", '||period||', "we're", 'gonna', 'have', 'appointments', '||period||', 'eleven', "o'clock", 'is', 'gonna', 'mean', 'eleven', "o'clock", '||period||', 'and', '||comma||', 'if', 'we', "can't", 'make', 'it', '||comma||', "we're", 'gonna', 'call', 'you', '||comma||', 'tell', 'you', 'why', '||period||', '||leftparen||', 'worked', 'up', '||rightparen||', 'for', "god's", 'sakes', '||comma||', 'if', 'a', 'doctor', 'can', 'do', 'it', '||comma||', 'why', "can't", 'we', '||questionmark||', '||leftparen||', 'almost', 'sobbing', '||rightparen||', 'anyway', '||comma||', "that's", 'it', '||period||', '||return||', '||return||', 'jerry:', 'the', 'bags', 'are', 'in', 'the', 'car', '||comma||', 'i', 'guess', 'we', 'better', 'go', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', 'sent', 'me', 'over', 'here', 'for', 'a', 'physical', 'because', 'as', 'you', 'may', 'or', 'may', 'not', 'know', '||comma||', 'he', 'and', 'i', 'are', 'going', 'on', 'a', 'trip', 'to', 'kenya', '||period||', 'africa', '||period||', 'my', 'first', 'such', 'mission', 'for', 'the', 'company', '||period||', 'the', 'massai', 'bushmen', 'wear', 'these', 'great', 'sandals', 'and', "we're", 'gonna', 'knock', 'them', 'off', '||period||', 'not', 'the', 'massai', '||comma||', 'the', 'sandals', '||period||', '||return||', '||return||', 'doctor:', "i'll", 'need', 'a', 'urine', 'sample', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'how', 'hot', 'it', 'gets', 'there', '||questionmark||', 'like', '150', 'degrees', '||period||', 'your', 'skin', 'is', 'gonna', 'be', 'simmering', 'with', 'boils', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'george', '||comma||', 'you', 'coming', 'to', 'the', 'tonight', 'show', 'on', 'thursday', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'yeah', '||period||', 'my', 'parents', 'want', 'to', 'come', 'too', '||comma||', 'is', 'that', 'ok', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'sure', '||period||', 'my', 'parents', 'will', 'be', 'there', '||period||', '||return||', '||return||', 'elaine:', 'the', 'tonight', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "they're", 'in', 'town', 'this', 'week', '||comma||', 'you', 'wanna', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', 'are', 'you', 'doing', 'new', 'material', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', "super's", 'in', 'my', 'bathroom', 'changing', 'my', 'shower', 'head', '||period||', 'have', 'they', 'changed', 'your', 'shower', 'head', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "he's", 'doing', 'mine', 'next', '||period||', "they're", 'low', 'flow', 'you', 'know', '||period||', '||return||', '||return||', 'kramer:', 'low', 'flow', '||questionmark||', 'well', 'i', "don't", 'like', 'the', 'sound', 'of', 'that', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'are', 'your', 'parents', 'doing', 'here', 'in', 'new', 'york', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'they', 'were', 'humiliated', '||period||', 'i', 'mean', 'after', 'the', 'impeachment', '||comma||', 'my', 'father', 'left', 'office', 'in', 'disgrace', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'are', 'their', 'plans', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'this', 'is', 'the', 'problem', '||period||', "they're", 'moving', 'into', 'this', 'new', 'development', '||period||', "here's", 'the', 'pamphlet', '||period||', 'del', 'boca', 'vista', '||period||', 'but', "they're", 'not', 'quite', 'ready', 'to', 'go', 'back', 'so', "they're", 'in', 'seclusion', 'here', 'for', 'a', 'while', 'at', 'uncle', "leo's", '||period||', '||return||', '||return||', 'elaine:', 'you', 'mean', 'the', 'three', 'of', 'them', 'in', 'that', 'tiny', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "leo's", 'not', 'there', '||period||', "he's", 'got', 'a', 'girlfriend', '||comma||', 'lydia', '||period||', 'in', 'fact', '||comma||', 'he', 'moved', 'in', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'uncle', "leo's", 'having', 'regular', 'sex', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', '||period||', 'it', 'devalues', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', 'what', 'time', 'do', 'we', 'have', 'to', 'be', 'at', 'the', 'the', 'tonight', 'show', 'on', 'thursday', '||period||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'be', 'there', 'at', '430', '||period||', '||return||', '||return||', 'morty:', 'but', 'it', 'comes', 'on', '1130', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', 'they', 'tape', 'it', 'in', 'the', 'afternoon', 'and', 'then', 'they', 'air', 'it', 'at', '1130', '||period||', '||return||', '||return||', 'morty:', 'how', 'long', 'they', 'been', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', '30', 'years', '||period||', '||return||', '||return||', 'morty:', 'helen', '||comma||', 'did', 'you', 'know', 'that', 'they', 'tape', 'this', 'thing', 'in', 'the', 'afternoon', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'georgie', '||comma||', 'how', 'come', 'your', 'parents', 'never', 'moved', 'to', 'florida', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'that', 'is', 'odd', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'is', '||period||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', "they're", 'retired', '||period||', '||return||', '||return||', 'jerry:', 'no', 'economic', 'reason', 'for', 'them', 'to', 'be', 'here', '||period||', '||return||', '||return||', 'george:', 'they', 'have', 'no', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'no', 'social', 'reason', 'for', 'them', 'to', 'be', 'here', '||period||', '||return||', '||return||', 'elaine:', "you're", 'all', 'grown', 'up', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "they're", 'all', 'through', 'ruining', 'my', 'life', '||period||', 'what', 'the', 'hell', 'are', 'they', 'still', 'doing', 'here', '||questionmark||', 'lemme', 'see', 'this', 'pamphlet', '||period||', 'hm', '||period||', 'all', 'right', '||comma||', 'so', "i'll", '||comma||', 'uh', '||comma||', 'get', 'back', 'to', 'you', '||period||', '||return||', '||return||', 'helen:', 'where', 'can', 'i', 'buy', 'some', 'ice', '||questionmark||', 'your', 'father', 'likes', 'a', 'lot', 'of', 'ice', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'maybe', 'get', 'an', 'ice', 'tray', '||questionmark||', '||return||', '||return||', 'helen:', 'i', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'dad', 'just', 'called', 'me', '||period||', '||return||', '||return||', 'helen:', 'yeah', '||comma||', 'i', 'know', '||period||', 'his', 'phlebitis', 'is', 'acting', 'up', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'all', 'right', '||comma||', 'well', 'i', 'got', 'some', 'people', 'here', '||period||', '||return||', '||return||', 'helen:', 'ok', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'bye', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'you', 'see', 'this', '||questionmark||', 'any', 'thought', 'pops', 'into', 'their', 'head', "they're", 'calling', 'me', 'because', "it's", 'a', 'local', 'call', 'now', '||period||', '||return||', '||return||', 'elaine:', 'ahh', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'used', 'to', 'a', '1200', 'mile', 'buffer', 'zone', '||period||', 'i', "can't", 'handle', 'this', '||period||', 'plus', 'i', 'got', 'the', 'dinners', '||comma||', 'i', 'got', 'the', 'pop', 'ins', '||period||', 'they', 'pop', 'in', '||exclammark||', "it's", 'brutal', '||exclammark||', '||return||', '||return||', 'elaine:', 'they', 'have', 'no', 'idea', 'when', "they're", 'going', 'back', 'to', 'florida', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'only', 'way', 'out', 'of', 'this', 'is', 'if', 'leo', 'breaks', 'up', 'with', 'his', 'girlfriend', 'and', 'has', 'to', 'move', 'back', 'into', 'the', 'apartment', 'and', 'then', 'they', 'would', 'have', 'to', 'go', 'back', 'to', 'florida', '||period||', '||return||', '||return||', 'elaine:', "how's", 'that', 'gonna', 'happen', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', "it's", 'about', 'time', 'you', 'called', 'your', 'uncle', '||period||', "we've", 'got', 'to', 'do', 'this', 'once', 'a', 'week', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'once', 'a', 'week', '||questionmark||', '||leftparen||', 'to', 'uncle', 'leo', '||rightparen||', 'so', "how's", 'lydia', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'ah', '||comma||', "she's", 'a', 'real', 'tiger', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'how', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'man', 'like', 'you', '||comma||', 'limiting', 'yourself', 'to', 'one', 'woman', '||comma||', 'i', "don't", 'know', '||period||', 'but', "it's", 'none', 'of', 'my', 'business', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'look', 'at', 'this', '||comma||', 'i', 'told', 'them', 'medium', 'rare', '||comma||', "it's", 'medium', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'it', 'happens', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'bet', 'that', 'cook', 'is', 'an', 'anti', '||dash||', 'semite', '||period||', '||return||', '||return||', 'jerry:', 'he', 'has', 'no', 'idea', 'who', 'you', 'are', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'they', "don't", 'just', 'overcook', 'a', 'hamburger', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'anyway', '||comma||', 'the', 'point', 'i', 'was', 'making', 'before', 'goerbbles', 'made', 'your', 'hamburger', 'is', 'a', 'man', 'like', 'you', 'could', 'be', 'dating', 'women', 'twenty', 'years', 'younger', '||period||', "c'mon", 'uncle', 'leo', '||comma||', "i've", 'seen', 'the', 'way', 'women', 'look', 'at', 'you', '||period||', "when's", 'the', 'last', 'time', 'you', 'looked', 'in', 'a', 'mirror', '||questionmark||', "you're", 'an', 'adonis', '||exclammark||', "you've", 'got', 'beautiful', 'features', '||comma||', 'lovely', 'skin', '||comma||', "you're", 'in', 'the', 'prime', 'of', 'your', 'life', 'here', '||comma||', 'you', 'should', 'be', 'swinging', '||period||', 'if', 'i', 'were', 'you', "i'd", 'tell', 'this', 'lydia', 'character', '||comma||', '||quotemark||', "it's", 'been', 'real', '||comma||', '||quotemark||', 'move', 'back', 'into', 'that', 'bachelor', 'pad', 'and', 'put', 'out', 'a', 'sign', '||semicolon||', 'open', 'for', 'business', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'believe', 'me', '||comma||', 'i', 'thought', 'about', 'it', '||period||', 'but', 'she', 'is', 'so', 'perfect', 'in', 'every', 'way', '||comma||', 'i', "can't", 'see', 'a', 'flaw', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'keep', 'looking', '||period||', '||return||', '||return||', 'peterman:', "i'm", 'afraid', 'i', 'have', 'some', 'bad', 'news', '||comma||', 'elaine', '||period||', 'it', 'appears', 'you', 'will', 'not', 'be', 'accompanying', 'me', 'to', 'africa', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'peterman:', "i'm", 'afraid', "it's", 'your', 'urine', '||comma||', 'elaine', '||period||', 'you', 'tested', 'positive', 'for', 'opium', '||period||', '||return||', '||return||', 'elaine:', 'opium', '||questionmark||', '||return||', '||return||', 'peterman:', "that's", 'right', '||comma||', 'elaine', '||period||', 'white', 'lotus', '||period||', 'yam', '||dash||', 'yam', '||period||', 'shanghai', 'sally', '||period||', '||return||', '||return||', 'elaine:', "ihat's", 'impossible', '||comma||', "i've", 'never', 'done', 'a', 'drug', 'in', 'my', 'life', '||period||', 'dr', '||period||', 'strugatz', 'must', 'have', 'made', 'a', 'mistake', '||period||', '||return||', '||return||', 'peterman:', 'not', 'a', 'chance', '||period||', "i'm", 'afraid', "i'll", 'just', 'have', 'to', 'find', 'someone', 'else', 'to', 'accompany', 'me', 'on', 'my', 'journey', '||period||', 'the', 'dark', 'continent', 'is', 'no', 'place', 'for', 'an', 'addict', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'obviously', '||comma||', 'mr', '||period||', 'peterman', '||comma||', "there's", 'something', 'wrong', 'with', 'this', 'test', '||period||', 'i', "don't", 'take', 'opium', '||period||', 'let', 'me', 'take', 'another', 'one', '||comma||', 'please', '||questionmark||', "i'll", 'call', 'the', 'doctor', 'right', 'now', '||comma||', "i'll", 'take', 'a', 'pop', 'urine', 'test', '||period||', '||return||', '||return||', 'peterman:', 'all', 'right', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'thank', 'you', 'mr', '||period||', 'peterman', '||period||', '||leftparen||', 'drinks', 'a', 'glass', 'of', 'water', '||rightparen||', "i'll", 'be', 'ready', 'in', 'three', 'minutes', '||period||', '||return||', '||return||', 'george:', 'whew', '||exclammark||', 'boy', '||comma||', "it's", 'cold', 'outside', '||comma||', 'huh', '||questionmark||', 'oh', '||comma||', 'these', 'new', 'york', 'winters', '||comma||', 'huh', '||period||', 'bitter', 'cold', '||comma||', 'bitter', '||period||', '||return||', '||return||', 'frank:', 'i', 'was', 'out', 'for', 'five', 'minutes', 'before', '||comma||', 'i', "couldn't", 'feel', 'my', 'extremities', '||period||', '||return||', '||return||', 'estelle:', 'what', 'extremities', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'the', 'temperature', 'in', 'florida', 'is', 'today', '||questionmark||', 'eh', '||questionmark||', 'seventy', '||dash||', 'nine', '||period||', "that's", 'almost', 'eighty', '||period||', 'yeah', '||comma||', 'i', 'read', 'someplace', 'the', 'life', 'expectancy', 'in', 'florida', 'is', 'eighty', '||dash||', 'one', 'and', 'in', 'queens', '||comma||', 'seventy', '||dash||', 'three', '||period||', '||return||', '||return||', 'estelle:', 'so', 'george', '||comma||', 'why', 'are', 'you', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'i', "can't", 'stop', 'by', 'and', 'visit', 'my', 'parents', '||questionmark||', '||leftparen||', 'drops', 'pamphlet', 'on', 'coffee', 'table', '||rightparen||', '||return||', '||return||', 'estelle:', "what's", 'this', '||period||', '||return||', '||return||', 'george:', "that's", 'where', 'the', "seinfeld's", 'are', 'moving', '||period||', 'they', 'got', 'a', 'great', 'deal', '||period||', 'yep', '||period||', 'you', 'know', 'what', 'they', 'got', 'in', 'florida', '||questionmark||', 'jai', '||dash||', 'alai', '||exclammark||', 'you', 'bet', 'on', 'the', 'games', '||comma||', 'you', 'clean', 'up', '||period||', '||return||', '||return||', 'estelle:', 'i', "don't", 'bet', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'dolphins', '||questionmark||', 'you', 'could', 'swim', 'with', 'the', 'dolphins', 'down', 'there', '||period||', '||return||', '||return||', 'estelle:', 'i', "don't", 'swim', '||period||', '||return||', '||return||', 'george:', 'you', 'could', 'pet', 'them', '||period||', 'they', 'come', 'right', 'out', 'of', 'the', 'water', 'onto', 'the', 'sidewalks', '||period||', '||return||', '||return||', 'estelle:', 'are', 'you', 'trying', 'to', 'get', 'rid', 'of', 'us', '||questionmark||', '||return||', '||return||', 'george:', 'rid', '||questionmark||', 'nah', '||comma||', "c'mon", '||comma||', 'the', 'word', 'is', "'care'", '||period||', 'care', '||period||', 'i', 'care', 'about', 'your', 'comfort', '||comma||', 'be', 'it', 'here', 'in', 'queens', 'or', 'twelve', '||dash||', 'hundred', 'miles', 'away', '||period||', '||return||', '||return||', 'elaine:', 'no', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||questionmark||', 'jerry', '||exclammark||', '||return||', '||return||', 'kramer:', 'wha', '||comma||', 'you', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'kramer:', 'these', 'showers', 'are', 'horrible', '||period||', "there's", 'no', 'pressure', '||comma||', 'i', "can't", 'get', 'the', 'shampoo', 'out', 'of', 'my', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'me', 'either', '||period||', '||return||', '||return||', 'kramer:', 'if', 'i', "don't", 'have', 'a', 'good', 'shower', 'i', 'am', 'not', 'myself', '||period||', 'i', 'feel', 'weak', 'and', 'ineffectual', '||period||', "i'm", 'not', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'you', '||questionmark||', 'what', 'about', 'me', '||questionmark||', 'i', 'got', 'the', 'tonight', 'show', 'tonight', '||period||', "i'm", 'gonna', 'have', 'to', 'shower', 'in', 'the', 'dressing', 'room', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaving', '||rightparen||', 'aw', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'gotta', 'find', 'another', 'shower', '||period||', '||return||', '||return||', 'kramer:', 'they', 'got', 'you', 'too', '||questionmark||', '||return||', '||return||', 'newman:', 'this', 'stuff', 'is', 'awful', '||exclammark||', "i'm", 'not', 'newman', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'elaine', '||period||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'you', 'look', 'terrible', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'i', 'need', 'the', 'keys', 'to', 'your', 'apartment', '||comma||', 'i', 'gotta', 'take', 'a', 'shower', '||period||', '||return||', '||return||', 'elaine:', "what's", 'wrong', 'with', 'your', 'shower', '||questionmark||', '||return||', '||return||', 'kramer:', "there's", 'no', 'water', 'pressure', '||period||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'just', 'go', 'see', 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', "jerry's", 'got', 'nothing', '||period||', "newman's", 'got', 'nothing', '||period||', "you're", 'the', 'only', 'one', 'i', 'know', "who's", 'got', 'the', 'good', 'stuff', '||comma||', 'and', 'i', 'need', 'it', 'bad', '||comma||', 'baby', '||comma||', 'cause', 'i', 'feel', 'like', 'i', 'got', 'bugs', 'crawling', 'up', 'my', 'skin', '||period||', 'now', 'you', 'gotta', 'help', 'me', 'out', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'busting', 'in', '||rightparen||', 'not', 'on', 'my', 'watch', '||exclammark||', '||leftparen||', 'grabs', 'kramer', 'by', 'the', 'collar', '||rightparen||', 'i', "won't", 'have', 'you', 'turning', 'my', 'office', 'into', 'a', 'den', 'of', 'iniquity', '||exclammark||', 'get', 'your', 'fix', 'somewhere', 'else', '||exclammark||', '||return||', '||return||', 'elaine:', 'mr', 'peterman', '||exclammark||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', "you're", 'out', 'of', 'control', '||period||', 'you', 'need', 'help', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'peterman:', 'i', 'know', 'what', "you're", 'going', 'through', '||period||', 'i', 'too', 'once', 'fell', 'under', 'the', 'spell', 'of', 'opium', '||period||', 'it', 'was', '1979', '||period||', 'i', 'was', 'travelling', 'the', 'yangtzee', 'in', 'search', 'of', 'a', 'mongolian', 'horsehair', 'vest', '||period||', 'i', 'had', 'got', 'to', 'the', 'market', 'after', 'sundown', '||comma||', 'all', 'of', 'the', 'clothing', 'traders', 'had', 'gone', '||comma||', 'but', 'a', 'different', 'sort', 'of', 'trader', 'still', 'lurked', 'about', '||period||', '||quotemark||', 'just', 'a', 'taste', '||comma||', '||quotemark||', 'he', 'said', '||period||', 'that', 'was', 'all', 'it', 'took', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||comma||', 'i', "don't", 'know', "what's", 'going', 'on', 'here', '||period||', 'i', 'am', 'not', 'addicted', 'to', 'anything', '||period||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'elaine', '||period||', 'the', 'toll', 'road', 'of', 'denial', 'is', 'a', 'long', 'and', 'dangerous', 'one', '||period||', 'the', 'price', '||questionmark||', 'your', 'soul', '||period||', 'oh', '||comma||', 'and', 'by', 'the', 'way', '||comma||', 'you', 'have', "til'", '500', 'to', 'clear', 'out', 'your', 'desk', '||period||', "you're", 'fired', '||period||', '||return||', '||return||', 'helen:', 'all', 'they', 'serve', 'is', 'chicken', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'more', 'food', 'down', 'the', 'hall', '||period||', '||return||', '||return||', 'morty:', 'wrap', 'it', 'up', '||comma||', "we'll", 'take', 'it', 'home', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'estelle:', 'hello', 'seinfelds', '||period||', '||return||', '||return||', 'morty:', 'hello', '||period||', '||return||', '||return||', 'helen:', 'hi', '||period||', '||return||', '||return||', 'frank:', 'this', 'is', 'your', 'dressing', 'room', '||questionmark||', 'they', 'treat', 'you', 'like', 'toscanini', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'jerry', '||period||', 'i', "don't", 'know', 'how', 'you', 'could', 'do', 'this', '||period||', "i'm", 'so', 'nervous', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', "i'm", 'drunk', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', 'how', 'was', 'florida', '||questionmark||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'we', 'just', 'bought', 'a', 'new', 'place', 'down', 'there', '||period||', '||return||', '||return||', 'estelle:', 'i', 'know', '||comma||', 'we', 'were', 'looking', 'at', 'the', 'brochure', '||period||', '||return||', '||return||', 'morty:', 'what', '||questionmark||', '||return||', '||return||', 'helen:', 'why', '||comma||', 'you', 'thinking', 'of', 'moving', '||questionmark||', '||return||', '||return||', 'frank:', 'not', 'really', '||period||', '||return||', '||return||', 'morty:', 'because', 'if', 'you', 'are', '||comma||', 'you', "shouldn't", '||period||', "there's", 'nothing', 'available', 'in', 'that', 'development', '||period||', '||return||', '||return||', 'frank:', 'are', 'you', 'telling', 'me', "there's", 'not', 'one', 'condo', 'available', 'in', 'all', 'of', 'del', 'boca', 'vista', '||questionmark||', '||return||', '||return||', 'morty:', "that's", 'right', '||period||', 'they', 'went', 'like', 'hotcakes', '||period||', '||return||', '||return||', 'frank:', "how'd", 'you', 'get', 'yours', '||questionmark||', '||return||', '||return||', 'morty:', 'got', 'lucky', '||period||', '||return||', '||return||', 'frank:', 'are', 'you', 'trying', 'to', 'keep', 'us', 'out', 'of', 'del', 'boca', 'vista', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'this', "doesn't", 'seem', 'like', 'work', 'to', 'any', 'of', 'you', '||comma||', 'if', 'you', 'could', 'perhaps', 'conduct', 'your', 'psychopath', 'convention', 'down', 'the', 'hall', '||comma||', 'i', 'could', 'just', 'get', 'a', 'little', 'personal', 'space', '||period||', '||return||', '||return||', 'elaine:', 'how', 'could', 'i', 'have', 'tested', 'positive', 'twice', '||questionmark||', 'once', 'i', 'could', 'understand', '||comma||', "that's", 'a', 'mistake', '||period||', 'but', 'twice', '||questionmark||', '||return||', '||return||', 'waitress:', 'yeah', '||comma||', "it's", 'hard', 'to', 'figure', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', 'i', 'lost', 'my', 'job', '||comma||', 'i', "can't", 'go', 'to', 'africa', '||period||', 'i', 'was', 'gonna', 'meet', 'the', 'bush', '||dash||', 'men', 'of', 'the', 'kalahari', '||period||', '||return||', '||return||', 'waitress:', 'ah', '||comma||', 'the', 'bush', '||dash||', 'men', '||questionmark||', '||return||', '||return||', 'elaine:', 'and', 'the', 'bush', '||dash||', 'women', '||period||', '||return||', '||return||', 'man:', '||leftparen||', 'also', 'seated', 'at', 'the', 'counter', '||rightparen||', 'excuse', 'me', '||period||', 'i', "couldn't", 'help', 'overhearing', '||period||', 'i', 'notice', "you're", 'eating', 'a', 'poppy', 'seed', 'muffin', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'eat', 'these', 'muffins', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'man:', 'well', '||comma||', 'you', 'know', 'what', 'opium', 'is', 'made', 'from', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'though', 'receiving', 'a', 'revelation', '||rightparen||', 'poppies', '||exclammark||', '||return||', '||return||', 'jay', 'leno:', 'welcome', 'back', '||period||', 'talking', 'with', 'jerry', 'seinfeld', '||period||', 'jerry', '||comma||', 'lemme', 'ask', 'you', '||comma||', 'i', 'saw', 'some', 'people', 'back', 'there', '||comma||', 'they', 'look', 'like', '||period||', '||period||', 'family', '||questionmark||', 'is', 'that', 'family', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'got', 'some', 'family', 'backstage', '||period||', 'course', 'my', "family's", 'nuts', '||semicolon||', "they're", 'crazy', '||period||', 'yep', '||period||', 'my', 'uncle', 'leo', '||comma||', '||leftparen||', 'quick', 'take', 'of', 'uncle', 'leo', 'in', 'bet', 'with', 'lydia', '||comma||', 'watching', 'jerry', 'on', 'tv', '||period||', 'lydia', 'is', 'laughing', '||comma||', 'leo', 'is', 'not', '||rightparen||', 'i', 'had', 'lunch', 'with', 'him', 'the', 'other', 'day', '||comma||', "he's", 'one', 'of', 'these', 'guys', 'that', 'anything', 'goes', 'wrong', 'in', 'life', '||comma||', 'he', 'blames', 'it', 'on', 'anti', '||dash||', 'semitism', '||period||', 'you', 'know', 'what', 'i', 'mean', '||comma||', 'the', "spaghetti's", 'not', 'al', 'dente', '||questionmark||', "cook's", 'an', 'anti', '||dash||', 'semite', '||period||', 'loses', 'a', 'bet', 'on', 'a', 'horse', '||period||', 'secretariat', '||questionmark||', 'anti', '||dash||', 'semitic', '||period||', "doesn't", 'get', 'a', 'good', 'seat', 'at', 'the', 'temple', '||period||', 'rabbi', '||questionmark||', 'anti', '||dash||', 'semite', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'listen', 'to', 'this', '||comma||', 'uncle', 'leo', 'broke', 'up', 'with', 'his', 'girlfriend', 'because', 'of', 'the', 'bit', 'i', 'did', '||period||', 'she', 'thought', 'it', 'was', 'funny', '||comma||', 'so', 'he', 'accused', '*her*', 'of', 'being', 'an', 'anti', '||dash||', 'semite', '||period||', 'they', 'had', 'a', 'huge', 'fight', 'and', 'now', "he's", 'moving', 'back', 'into', 'his', 'apartment', '||period||', 'you', 'know', 'what', 'this', 'means', '||comma||', 'my', 'parents', 'are', 'gonna', 'go', 'back', 'to', 'florida', '||period||', '||period||', '||period||', 'what', '||questionmark||', 'what', 'number', 'is', 'this', '||questionmark||', 'oh', '||comma||', "i'm", 'terribly', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'kramer', '||comma||', 'my', 'parents', 'are', 'gonna', 'have', 'to', 'move', 'back', 'to', 'florida', '||comma||', "isn't", 'that', 'great', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'halfheartedly', '||rightparen||', 'yeah', '||comma||', 'well', "i'm", 'really', 'happy', 'for', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "you're", 'not', 'giving', 'it', 'to', 'me', '||comma||', 'man', '||period||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'just', 'took', 'a', 'bath', '||comma||', 'jerry', '||period||', 'a', 'bath', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'good', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'disgusting', '||period||', "i'm", 'sitting', 'there', 'in', 'a', 'tepid', 'pool', 'of', 'my', 'own', 'filth', '||period||', 'all', 'kinds', 'of', 'microscopic', 'parasites', 'and', 'organisms', 'having', 'sex', 'all', 'around', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'used', 'to', 'sit', 'in', 'that', 'hot', 'tub', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'that', 'was', 'superheated', 'water', '||comma||', 'nothing', 'could', 'live', 'in', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'offering', 'a', 'plate', '||rightparen||', 'chicken', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', "you're", 'not', 'gonna', 'believe', '||period||', 'i', 'found', 'out', 'why', 'i', 'was', 'testing', 'positive', 'for', 'opium', '||period||', 'poppy', 'seeds', '||exclammark||', '||return||', '||return||', 'jerry:', 'poppy', 'seeds', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'makes', 'sense', '||period||', '||leftparen||', 'offers', 'plate', 'to', 'elaine', '||rightparen||', 'want', 'some', 'chicken', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'thanks', '||period||', 'so', '||comma||', "i'm", 'gonna', 'get', 'tested', 'again', 'later', '||comma||', 'hopefully', "i'll", 'get', 'my', 'job', 'back', 'and', 'i', 'will', 'be', 'on', 'my', 'way', 'to', 'africa', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', 'well', '||comma||', 'i', 'may', 'have', 'a', 'solution', 'to', 'our', 'little', 'problem', '||period||', 'elaine', '||comma||', 'would', 'you', 'excuse', 'us', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', "c'mon", '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'i', 'have', 'a', 'private', 'matter', 'to', 'discuss', 'with', 'my', 'fellow', 'tenants', '||period||', '||leftparen||', 'opens', 'door', '||rightparen||', 'if', 'you', "don't", 'mind', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', '||return||', '||return||', 'newman:', 'look', '||comma||', 'sister', '||comma||', 'go', 'get', 'yourself', 'a', 'cup', 'of', 'coffee', '||comma||', 'all', 'right', '||questionmark||', 'beat', 'it', '||exclammark||', '||leftparen||', 'pushes', 'elaine', 'out', 'the', 'door', 'and', 'closes', 'it', '||rightparen||', 'all', 'right', '||comma||', 'now', "here's", 'the', 'lowdown', '||period||', 'from', 'a', 'certain', 'connection', '||comma||', "i've", 'been', 'able', 'to', 'locate', 'some', 'black', 'market', 'shower', 'heads', '||period||', "they're", 'all', 'made', 'in', 'the', 'former', 'yugoslavia', '||comma||', 'and', 'from', 'what', 'i', 'hear', 'the', 'serbs', 'are', 'fanatic', 'about', 'their', 'showers', '||period||', '||return||', '||return||', 'jerry:', 'not', 'from', 'the', 'footage', "i've", 'seen', '||period||', '||return||', '||return||', 'newman:', 'nevertheless', '||comma||', 'sometime', 'this', 'afternoon', '||comma||', 'behind', 'the', 'market', 'diner', '||comma||', 'an', 'unmarked', 'van', 'will', 'be', 'waiting', '||period||', "i'm", 'expecting', 'the', 'call', 'at', 'any', 'time', '||period||', 'are', 'you', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'down', '||period||', '||return||', '||return||', 'newman:', 'jerry', '||questionmark||', '||return||', '||return||', 'estelle:', 'so', '||comma||', 'georgie', '||comma||', 'we', 'have', 'some', 'big', 'news', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'big', 'news', '||questionmark||', '||return||', '||return||', 'estelle:', "we're", 'moving', 'to', 'florida', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'ecstatic', '||rightparen||', 'what', '||questionmark||', "you're", 'moving', 'to', 'florida', '||exclammark||', '||questionmark||', '||exclammark||', "that's", 'wonderful', '||exclammark||', "i'm", 'so', 'happy', '||exclammark||', '||leftparen||', 'pause', '||rightparen||', 'for', 'you', '||exclammark||', "i'm", 'so', 'happy', 'for', 'you', '||exclammark||', 'oh', '||comma||', 'what', 'do', 'you', 'need', 'this', 'cold', 'weather', 'for', '||questionmark||', '||return||', '||return||', 'frank:', 'has', 'nothing', 'to', 'do', 'with', 'the', 'weather', '||comma||', "it's", 'because', 'of', 'the', 'seinfelds', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'frank:', 'they', "don't", 'want', 'us', 'there', '||comma||', 'so', "we're", 'going', '||period||', "we're", 'moving', 'right', 'into', 'del', 'boca', 'vista', '||exclammark||', '||return||', '||return||', 'george:', 'so', "you're", 'moving', 'there', 'for', 'spite', '||exclammark||', '||return||', '||return||', 'frank:', 'absolutely', '||period||', 'no', 'one', 'tells', 'frank', 'costanza', 'what', 'to', 'do', '||exclammark||', '||return||', '||return||', 'george:', "that's", 'right', '||comma||', 'who', 'the', 'hell', 'are', 'they', '||questionmark||', 'how', 'dare', 'they', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', 'so', '||comma||', 'georgie', '||comma||', 'are', 'you', 'gonna', 'come', 'to', 'visit', 'us', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'every', 'chance', 'i', 'get', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'warmly', '||rightparen||', 'ohhh', '||period||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', 'jerry', '||exclammark||', "i'm", 'busting', '||exclammark||', "i'm", 'busting', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'parents', 'are', 'moving', 'to', 'florida', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'kidding', '||questionmark||', '||return||', '||return||', 'george:', 'can', 'you', 'believe', 'it', '||questionmark||', "it's", 'happening', '||exclammark||', "it's", 'finally', 'happening', '||exclammark||', "i'm", 'free', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'where', 'are', 'they', 'moving', 'to', '||questionmark||', '||return||', '||return||', 'george:', 'del', 'boca', 'vista', '||exclammark||', '||return||', '||return||', 'jerry:', 'del', 'boca', 'vista', '||comma||', "that's", 'where', 'my', 'parents', 'are', 'gonna', 'live', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', '||exclammark||', '||return||', '||return||', 'jerry:', 'we', 'could', 'visit', 'together', '||exclammark||', '||return||', '||return||', 'george:', 'every', 'five', 'years', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'incredible', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'know', 'and', 'you', 'know', '*why*', "they're", 'moving', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'to', 'spite', 'your', 'parents', '||exclammark||', '||return||', '||return||', 'jerry:', 'to', 'spite', 'my', 'parents', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'your', 'parents', 'are', 'crazy', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', "they're", 'out', 'of', 'their', 'minds', '||exclammark||', "it's", 'fantastic', '||exclammark||', '||return||', '||return||', 'jerry:', 'my', 'parents', 'are', 'moving', 'back', 'too', '||exclammark||', '||return||', '||return||', 'george:', 'beautiful', '||exclammark||', '||return||', '||return||', 'morty:', "i'm", 'sorry', "leo's", 'moving', 'back', 'here', '||period||', "i'm", 'not', 'ready', 'to', 'go', 'back', 'to', 'florida', '||period||', '||return||', '||return||', 'helen:', 'he', 'was', 'getting', 'along', 'so', 'well', 'with', 'that', 'woman', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'morty:', 'hello', '||questionmark||', '||return||', '||return||', 'voice:', 'this', 'is', 'frank', 'costanza', '||period||', '||return||', '||return||', 'morty:', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'frank:', 'you', 'think', 'you', 'could', 'keep', 'us', 'out', 'of', 'florida', '||questionmark||', "we're", 'moving', 'in', 'lock', '||comma||', 'stock', 'and', 'barrel', '||period||', "we're", 'gonna', 'be', 'in', 'the', 'pool', '||period||', "we're", 'gonna', 'be', 'in', 'the', 'clubhouse', '||period||', "we're", 'gonna', 'be', 'all', 'over', 'that', 'shuffleboard', 'court', '||exclammark||', 'and', 'i', 'dare', 'you', 'to', 'keep', 'me', 'out', '||exclammark||', '||return||', '||return||', 'morty:', "i'm", 'sorry', '||comma||', 'we', "can't", 'go', 'back', 'to', 'florida', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'i', "didn't", 'push', 'for', 'this', 'sooner', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'no', 'idea', 'how', 'your', 'life', 'is', 'gonna', 'improve', 'as', 'a', 'result', 'of', 'this', '||period||', 'food', 'tastes', 'better', '||period||', 'the', 'air', 'seems', 'fresher', '||period||', "you'll", 'have', 'more', 'energy', 'and', 'self', 'confidence', 'than', 'you', 'ever', 'dreamed', 'of', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'morty:', 'hello', '||comma||', 'jerry', '||questionmark||', "it's", 'your', 'father', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'dad', '||period||', '||return||', '||return||', 'morty:', 'listen', '||comma||', 'is', 'it', 'all', 'right', 'if', 'we', 'move', 'in', 'with', 'you', 'for', 'a', 'little', 'while', '||questionmark||', 'sounds', 'of', 'breaking', 'glass', '||comma||', 'jerry', 'dropped', 'his', 'bottle', '||period||', '||return||', '||return||', 'morty:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', 'a', 'bottle', 'broke', '||period||', "that's", 'all', '||period||', 'what', 'do', 'you', 'mean', '||comma||', "you're", 'gonna', 'move', 'in', 'here', '||questionmark||', '||return||', '||return||', 'morty:', 'because', 'the', 'costanzas', 'are', 'moving', 'into', 'del', 'boca', 'vista', '||period||', '||return||', '||return||', 'jerry:', 'but', "it's", 'a', 'big', 'complex', '||period||', '||return||', '||return||', 'morty:', 'you', "don't", 'understand', '||comma||', 'you', 'gotta', 'have', 'a', 'buffer', 'zone', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'fine', '||period||', 'come', 'over', 'here', '||period||', '||leftparen||', 'hangs', 'up', 'phone', '||rightparen||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'not', 'going', 'back', 'to', 'florida', '||period||', "they're", 'moving', 'here', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'your', 'parents', 'are', 'going', 'down', 'there', '||period||', 'my', 'buffer', 'zone', 'just', 'went', 'from', 'twelve', 'hundred', 'miles', 'down', 'to', 'two', 'feet', '||exclammark||', 'you', 'gotta', 'do', 'something', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "i'm", 'sorry', '||comma||', 'you', 'had', 'your', 'buffer', 'zone', 'for', 'many', 'years', '||period||', "it's", 'my', 'turn', 'to', 'live', '||comma||', 'baby', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', "you're", 'doing', '||comma||', "don't", 'you', '||questionmark||', "you're", 'killing', 'independent', 'jerry', '||exclammark||', 'i', 'gotta', 'go', 'see', 'my', 'uncle', 'leo', '||period||', 'i', 'think', 'he', 'may', 'have', 'made', 'a', 'big', 'mistake', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'move', 'back', 'with', 'lydia', '||questionmark||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', "you're", 'lucky', 'to', 'have', 'anybody', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'last', 'week', 'you', 'told', 'me', 'i', 'was', 'in', 'my', 'prime', '||comma||', 'i', 'should', 'be', 'swinging', '||period||', '||return||', '||return||', 'jerry:', 'swinging', '||questionmark||', 'what', 'are', 'you', '||comma||', 'out', 'of', 'your', 'mind', '||questionmark||', 'look', 'at', 'you', '||comma||', "you're", 'disgusting', '||period||', "you're", 'bald', '||comma||', "you're", 'paunchy', '||comma||', 'all', 'kinds', 'of', 'sounds', 'are', 'emanating', 'from', 'your', 'body', 'twenty', '||dash||', 'four', 'hours', 'a', 'day', '||period||', 'if', "there's", 'a', 'woman', 'that', 'can', 'take', 'your', 'presence', 'for', 'more', 'than', 'ten', 'consecutive', 'seconds', '||comma||', 'you', 'should', 'hang', 'on', 'to', 'her', 'like', 'grim', 'death', '||period||', 'which', 'is', 'not', 'far', 'off', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'but', "she's", 'an', 'anti', '||dash||', 'semite', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'blame', 'her', '||questionmark||', '||return||', '||return||', 'helen:', 'you', "don't", 'think', 'he', 'minds', 'us', 'staying', 'here', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'morty:', 'why', 'would', 'he', 'mind', '||questionmark||', "we're", 'his', 'parents', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'helen:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', "jerry's", 'not', 'here', '||questionmark||', '||return||', '||return||', 'helen:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||leftparen||', 'pause', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'helen:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'poppy', 'seed', '||exclammark||', 'it', 'must', 'have', 'been', 'in', 'the', 'chicken', '||period||', 'oh', '||comma||', "i'm", 'dead', '||period||', "i'm", 'going', 'to', 'the', "doctor's", 'in', 'a', 'half', 'an', 'hour', '||period||', '||return||', '||return||', 'helen:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'a', 'long', 'story', '||period||', '||return||', '||return||', 'helen:', 'just', 'a', 'second', '||comma||', 'i', 'have', 'to', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'gonna', 'do', 'in', 'there', '||questionmark||', '||return||', '||return||', 'helen:', 'what', 'am', 'i', 'gonna', 'do', 'in', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'gotta', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'helen:', 'elaine', '||comma||', 'i', 'really', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'hold', 'on', 'a', 'second', '||period||', 'mrs', '||period||', 'seinfeld', '||comma||', 'i', 'need', 'your', 'sample', '||period||', '||return||', '||return||', 'helen:', 'you', 'want', 'my', 'urine', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'need', 'a', 'clean', 'urine', 'sample', 'from', 'a', 'woman', '||period||', '||return||', '||return||', 'helen:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'please', '||comma||', 'mrs', '||period||', 'seinfeld', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'helen:', 'well', '||comma||', 'what', 'am', 'i', 'gonna', 'do', 'it', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'one', 'of', 'those', 'glasses', '||period||', '||return||', '||return||', 'helen:', "jerry's", 'glasses', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'he', "won't", 'mind', '||period||', "c'mon", '||comma||', "you're", 'his', 'mom', '||period||', '||return||', '||return||', 'helen:', 'oh', '||comma||', 'i', 'could', 'uh', '||dash||', '||dash||', 'should', 'i', 'use', 'a', 'coffee', 'cup', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'a', 'coffee', "cup's", 'fine', '||period||', '||return||', '||return||', 'helen:', 'or', 'maybe', 'a', 'juice', 'glass', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'fine', '||comma||', 'fine', '||comma||', 'a', 'juice', 'glass', 'is', 'perfect', '||period||', '||return||', '||return||', 'helen:', 'this', 'one', 'is', 'kind', 'of', 'scratched', '||period||', '||return||', '||return||', 'elaine:', 'it', "doesn't", 'matter', '||period||', '||return||', '||return||', 'helen:', 'howbout', 'a', 'milk', 'glass', '||period||', '||return||', '||return||', 'elaine:', 'a', 'milk', 'glass', '||comma||', 'a', 'juice', 'glass', '||comma||', 'any', 'glass', '||comma||', 'just', 'pick', 'a', 'glass', '||period||', '||return||', '||return||', 'helen:', 'jerry', "doesn't", 'wash', 'these', 'very', 'well', '||period||', '||return||', '||return||', 'elaine:', 'mrs', '||period||', 'seinfeld', '||comma||', 'pick', 'a', 'glass', '||exclammark||', 'pick', 'a', 'glass', '||comma||', 'mrs', '||period||', 'seinfeld', '||exclammark||', '||return||', '||return||', 'salesman:', 'all', 'right', '||comma||', 'i', 'got', 'everything', 'here', '||period||', 'i', 'got', 'the', 'cyclone', 'f', 'series', '||comma||', 'hydra', 'jet', 'flow', '||comma||', 'stockholm', 'superstream', '||comma||', 'you', 'name', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'recommend', '||questionmark||', '||return||', '||return||', 'salesman:', 'what', 'are', 'you', 'looking', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'power', '||comma||', 'man', '||period||', 'power', '||period||', '||return||', '||return||', 'newman:', 'like', 'silkwood', '||period||', '||return||', '||return||', 'kramer:', "that's", 'for', 'radiation', '||period||', '||return||', '||return||', 'newman:', "that's", 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', 'to', 'the', 'largest', 'one', '||rightparen||', 'now', '||comma||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'salesman:', "that's", 'the', 'commando', '450', '||comma||', 'i', "don't", 'sell', 'that', 'one', '||period||', 'what', 'about', 'thi', '||dash||', '||return||', '||return||', 'kramer:', 'well', "that's", 'what', 'we', 'want', '||comma||', 'the', 'commando', '450', '||period||', '||return||', '||return||', 'salesman:', 'nah', '||comma||', 'believe', 'me', '||period||', "it's", 'only', 'used', 'in', 'the', 'circus', '||period||', 'for', 'elephants', '||period||', '||return||', '||return||', 'newman:', "we'll", 'pay', 'anything', '||period||', "we've", 'got', 'the', '||leftparen||', 'hands', 'a', 'wad', 'of', 'money', 'to', 'kramer', '||rightparen||', 'what', 'about', 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', "couldn't", 'handle', 'that', '||comma||', "he's", 'delicate', '||period||', '||return||', '||return||', 'helen:', "it's", 'nice', 'being', 'back', 'at', "leo's", "jerry's", 'place', 'was', 'too', 'small', '||period||', '||return||', '||return||', 'morty:', 'first', 'leo', 'breaks', 'up', '||comma||', 'then', 'he', 'goes', 'back', '||period||', 'what', 'the', "hell's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'morty:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'super:', "it's", 'the', 'super', '||period||', "we're", 'installing', 'new', 'low', '||dash||', 'flow', 'showerheads', 'in', 'all', 'the', 'bathrooms', '||period||', '||return||', '||return||', 'morty:', 'low', 'flow', '||questionmark||', 'i', "don't", 'like', 'the', 'sound', 'of', 'that', '||period||', '||return||', '||return||', 'peterman:', 'so', 'as', 'a', 'result', 'of', 'your', 'test', 'being', 'free', 'of', 'opium', '||comma||', 'i', 'am', 'reinstating', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'yes', '||exclammark||', 'what', 'a', 'load', 'off', '||period||', 'so', 'when', 'are', 'we', 'going', 'to', 'africa', '||questionmark||', '||return||', '||return||', 'peterman:', "i'm", 'afraid', 'i', "can't", 'take', 'you', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'according', 'to', 'your', 'urine', 'analysis', '||comma||', "you're", 'menopausal', '||period||', 'you', 'have', 'the', 'metabolism', 'of', 'a', 'sixty', '||dash||', 'eight', 'year', 'old', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', 'wanted', 'to', 'see', 'the', 'bushmen', '||period||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'and', 'one', 'more', 'thing', '||period||', 'you', 'may', 'have', 'osteoporosis', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'been', 'a', 'great', 'visit', '||period||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', "i'll", 'tell', 'ya', '||period||', 'the', 'first', 'thing', "i'm", 'gonna', 'do', 'when', 'i', 'get', 'back', 'to', 'florida', 'is', 'take', 'a', 'shower', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'at', 'least', 'the', 'costanzas', 'changed', 'their', 'mind', 'and', 'decided', 'not', 'to', 'move', '||period||', 'they', "couldn't", 'bear', 'being', 'away', 'from', 'george', '||period||', '||return||', '||return||', 'helen:', 'george', 'must', 'be', 'happy', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'frank:', 'take', 'my', 'swim', 'trunks', '||period||', 'i', "won't", 'need', 'them', '||period||', '||return||', '||return||', 'estelle:', 'what', 'does', 'he', 'want', 'with', 'your', 'swim', 'trunks', '||questionmark||', '||return||', '||return||', 'frank:', 'why', 'should', 'they', 'go', 'to', 'waste', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', '[setting:', 'night', 'club]', '||return||', '||return||', 'jerry:', 'thank', 'you', '||exclammark||', 'goodnight', '||exclammark||', '||leftparen||', 'walks', 'off', 'stage', '||comma||', 'sighing', 'deeply', '||period||', 'instantly', '||comma||', 'a', 'red', '||dash||', 'headed', 'woman', 'runs', 'up', 'and', 'hugs', 'him', '||dash||', 'taking', 'jerry', 'by', 'surprise', '||rightparen||', '||return||', '||return||', 'sally:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'ward', 'her', 'off', '||rightparen||', 'hey', '||period||', 'hey', '||exclammark||', '||return||', '||return||', 'sally:', '||leftparen||', 'reminding', 'him', 'who', 'she', 'is', '||rightparen||', 'sally', 'weaver', '||exclammark||', '||leftparen||', 'sees', "jerry's", 'expression', '||dash||', 'he', 'still', 'has', 'no', 'clue', 'who', 'she', 'is', '||rightparen||', 'susan', "ross'", 'roommate', 'from', 'college', '||period||', '||period||', 'hello', '||exclammark||', '||leftparen||', 'laughs', 'slightly', '||rightparen||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||period||', 'oh', '||comma||', "i'm", 'sorry', '||period||', 'uh', '||comma||', 'oh', '||comma||', 'so', 'you', 'saw', 'the', 'show', '||questionmark||', '||return||', '||return||', 'sally:', 'saw', 'it', '||questionmark||', 'i', 'loved', 'it', '||exclammark||', 'and', 'thank', 'you', 'for', 'the', 'free', 'tickets', '||period||', 'you', 'are', 'so', 'funny', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'modest', '||rightparen||', 'oh', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'sally:', '||leftparen||', 'serious', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'i', 'mean', 'it', '||period||', "you're", 'very', 'funny', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'blunt', '||rightparen||', 'i', 'believe', 'you', '||period||', '||return||', '||return||', 'sally:', 'oh', '||comma||', 'anyway', '||comma||', 'let', 'me', 'show', 'you', 'memphis', '||period||', 'i', 'am', 'taking', 'you', '||leftparen||', 'points', 'to', 'him', '||rightparen||', 'out', 'to', 'dinner', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grabbing', 'his', 'coat', '||rightparen||', 'oh', '||comma||', "i'm", 'sorry', '||comma||', 'i', "can't", '||dash||', "i'm", 'going', 'straight', 'to', 'the', 'airport', '||period||', '||return||', '||return||', 'sally:', 'ohh', '||period||', '||period||', "that's", 'too', 'bad', '||period||', '||period||', 'susan', 'thought', "we'd", 'really', 'get', 'along', '||dash||', 'i', 'guess', 'because', "we're", 'both', 'wacko', '||exclammark||', '||leftparen||', 'jerry', 'laughs', '||rightparen||', 'you', 'know', 'what', '||comma||', 'um', '||period||', '||period||', '||leftparen||', 'turns', 'around', '||comma||', 'picking', 'up', 'a', 'large', 'gift', 'from', 'a', 'table', '||rightparen||', 'you', 'have', 'to', 'give', 'this', 'to', 'them', 'for', 'me', '||period||', 'okay', '||questionmark||', 'here', '||period||', '||leftparen||', 'hands', 'the', 'box', 'to', 'jerry', '||comma||', 'he', 'struggles', 'under', 'the', 'size', 'of', 'it', '||rightparen||', "it's", 'a', 'wedding', 'present', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||questionmark||', '||return||', '||return||', 'sally:', 'and', 'jerry', '||questionmark||', 'be', 'careful', 'with', 'it', '||comma||', 'okay', '||questionmark||', 'be', 'very', 'careful', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'frank:', 'george', '||comma||', 'as', 'you', 'may', 'be', 'aware', '||comma||', 'your', 'mother', 'and', 'i', 'are', 'not', 'moving', 'to', 'del', 'boca', 'vista', '||comma||', 'florida', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'resenting', 'the', 'fact', '||period||', 'nodding', '||rightparen||', 'i', 'am', 'aware', '||period||', '||return||', '||return||', 'frank:', 'so', '||comma||', 'i', 'was', 'wondering', '||comma||', 'would', 'it', 'be', 'okay', 'if', 'i', 'turned', 'your', 'room', 'into', 'a', 'billiard', 'parlor', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'billiard', 'parlor', '||questionmark||', '||return||', '||return||', 'frank:', 'regulation', 'table', '||comma||', 'the', 'hi', '||dash||', 'fi', '||comma||', 'maybe', 'even', 'a', 'bar', '||period||', '||period||', 'give', 'it', 'real', 'authenticity', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "that's", '||period||', '||period||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||comma||', 'frank', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sliding', 'over', 'to', 'make', 'room', 'for', 'her', '||rightparen||', 'sit', 'down', '||period||', 'join', 'us', '||comma||', 'please', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'trying', 'to', 'come', 'up', 'with', 'an', 'excuse', 'not', 'to', 'sit', 'with', 'them', '||rightparen||', 'actually', '||comma||', 'i', 'gotta', 'get', 'to', 'the', '||period||', '||period||', 'uh', '||period||', '||period||', 'thing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'somewhat', 'stern', '||rightparen||', 'oh', '||comma||', 'the', "thing's", 'cancelled', '||period||', 'sit', 'down', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'giving', 'up', '||rightparen||', 'okay', '||period||', '||period||', '||leftparen||', 'sits', '||comma||', 'george', 'laughs', '||rightparen||', 'so', '||period||', '||period||', '||leftparen||', 'trying', 'to', 'think', 'up', 'something', 'to', 'talk', 'about', '||rightparen||', 'frank', '||comma||', 'did', 'george', 'ever', 'show', 'you', 'that', 'photo', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'confused', '||rightparen||', 'what', 'photo', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'the', 'photo', 'i', 'took', 'in', 'tuscany', 'of', 'the', 'little', 'man', 'in', 'front', 'of', 'the', 'sign', 'that', 'said', '||quotemark||', 'costanza', '||quotemark||', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'interested', '||rightparen||', "there's", 'a', 'costanza', 'in', 'tuscany', '||questionmark||', '||leftparen||', 'elaine', 'nods', '||rightparen||', 'did', 'he', 'look', 'like', 'me', '||questionmark||', 'did', 'you', 'talk', 'to', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'talk', 'to', 'anyone', '||dash||', 'i', 'was', 'just', 'walking', 'by', '||comma||', 'and', 'i', 'saw', 'the', 'sign', '||comma||', 'and', 'i', 'thought', 'george', 'might', 'get', 'a', 'kick', 'out', 'of', 'it', '||period||', '||return||', '||return||', 'frank:', 'i', 'gotta', 'get', 'that', 'picture', '||dash||', 'it', 'could', 'be', 'my', 'cousin', '||comma||', 'carlo', '||period||', '||return||', '||return||', 'elaine:', 'who', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', 'out', '||comma||', 'not', 'really', 'wanting', 'to', 'talk', 'about', 'his', 'family', '||rightparen||', 'when', 'the', 'costanzas', 'came', 'here', '||comma||', 'one', 'brother', 'stayed', 'behind', '||period||', '||return||', '||return||', 'frank:', 'i', 'played', 'with', 'him', 'every', 'day', 'until', 'the', 'age', 'of', 'four', '||dash||', 'and', 'then', 'we', 'separated', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'you', "weren't", 'born', 'here', '||questionmark||', '||return||', '||return||', 'frank:', 'no', '||period||', "that's", 'why', 'i', 'can', 'never', 'be', 'president', '||period||', '||period||', 'it', 'always', 'irked', 'me', '||period||', "that's", 'why', '||comma||', 'even', 'at', 'an', 'early', 'age', '||comma||', 'i', 'had', 'no', 'interest', 'in', 'politics', '||period||', 'i', 'refuse', 'to', 'vote', '||period||', '||leftparen||', 'yelling', 'out', '||rightparen||', 'they', "don't", 'want', 'me', '||comma||', 'i', "don't", 'want', 'them', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'what', "you're", 'getting', 'all', 'riled', 'up', 'about', '||period||', 'there', 'are', 'probably', 'a', 'million', 'costanzas', '||dash||', '||return||', '||return||', 'frank:', '||leftparen||', 'cutting', 'him', 'off', '||rightparen||', "don't", 'bring', 'me', 'down', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'do', 'you', 'have', 'another', 'copy', 'of', 'that', 'photo', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', '||comma||', 'i', "don't", '||period||', 'but', '||period||', '||period||', 'well', '||comma||', 'the', 'maestro', 'might', '||period||', '||return||', '||return||', 'frank:', 'the', 'maestro', '||questionmark||', 'what', 'maestro', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'this', 'guy', 'that', 'i', 'went', 'to', 'tuscany', 'with', '||period||', "he's", 'a', 'great', 'guy', '||comma||', 'but', 'i', 'just', "wouldn't", 'feel', 'comfortable', 'calling', 'him', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'explaining', '||rightparen||', 'because', 'he', "hasn't", 'called', 'me', 'since', 'we', 'got', 'back', '||period||', '||period||', 'i', 'spilled', 'wine', 'on', 'his', '8', 'by', '10', 'photo', 'of', 'one', 'of', 'his', 'favorite', 'italian', 'opera', 'stars', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', 'the', 'three', 'tenors', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', '||leftparen||', 'trying', 'to', 'remember', '||rightparen||', 'poverotti', '||period||', '||period||', 'domingo', '||period||', '||period||', 'and', '||period||', '||period||', 'uh', '||period||', '||period||', 'the', 'other', 'guy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'nodding', '||rightparen||', 'the', 'other', 'guy', '||period||', '||return||', '||return||', '[setting:', 'airplane]', '||return||', '||return||', 'stewardess:', '||leftparen||', 'overly', 'nice', '||rightparen||', 'could', 'i', 'take', 'that', 'box', 'for', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||period||', '||period||', 'well', '||comma||', 'you', 'better', 'not', '||period||', "i'm", 'supposed', 'to', 'be', 'careful', 'with', 'it', '||period||', '||return||', '||return||', 'stewardess:', 'oh', '||comma||', 'then', '||comma||', "i'll", 'have', 'to', 'put', 'your', 'bag', 'in', 'the', 'over', '||dash||', 'head', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'okay', '||period||', '||period||', '||return||', '||return||', 'stewardess:', 'there', 'we', 'go', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'ohh', '||period||', '||period||', 'look', 'at', 'this', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'bought', 'a', 'bottle', 'of', 'bbq', 'sauce', 'in', 'memphis', '||period||', 'i', 'think', 'the', 'stewardess', 'broke', 'it', 'when', 'she', 'tried', 'to', 'jam', 'it', 'into', 'the', 'overhead', 'compartment', 'because', 'of', 'this', '||return||', '||return||', 'kramer:', 'well', '||comma||', "don't", 'press', 'the', 'panic', 'button', '||period||', "i'm", 'sure', 'that', 'we', 'can', 'still', 'salvage', 'some', 'sauce', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', 'about', 'the', 'sauce', '||period||', 'it', 'came', 'in', 'this', 'funny', 'little', 'bottle', '||comma||', 'and', 'there', 'was', 'a', 'guy', 'on', 'the', 'label', 'that', 'looked', 'exactly', 'like', 'charles', 'grodin', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taking', 'some', 'of', "jerry's", 'clothing', 'over', 'to', 'the', 'kitchen', '||rightparen||', 'i', 'see', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', "don't", 'see', '||dash||', 'because', "i'm", 'going', 'on', 'the', 'show', 'this', 'week', '||comma||', 'and', 'this', 'was', 'going', 'to', 'be', 'my', 'bit', 'on', 'the', 'show', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', "don't", 'you', 'do', 'your', 'material', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'out', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'up', '||comma||', 'sighs', '||rightparen||', 'well', '||comma||', 'you', 'better', 'get', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'thanks', 'for', 'the', 'tip', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'buddies', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'hey', '||comma||', 'this', 'is', 'for', 'you', '||period||', '||leftparen||', 'taps', 'the', 'gift', '||rightparen||', "it's", 'from', '||period||', '||period||', 'uh', '||comma||', "susan's", 'roommate', '||comma||', 'sally', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||period||', '||period||', '||leftparen||', 'starts', 'to', 'open', 'it', '||rightparen||', 'sally', 'called', 'susan', '||dash||', 'said', 'you', 'guys', 'really', 'hit', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'annoyed', 'at', 'the', 'thought', '||rightparen||', 'nobody', 'hit', 'anything', 'off', '||period||', 'she', 'just', 'gave', 'me', 'the', 'box', '||period||', '||leftparen||', 'looks', 'over', 'at', 'kramer', '||period||', 'he', 'is', 'scraping', 'the', 'bbq', 'sauce', 'off', "jerry's", 'clothes', 'with', 'a', 'knife', '||comma||', 'then', 'dipping', 'some', 'bread', 'into', 'it', '||rightparen||', 'what', 'the', 'hell', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looks', 'up', '||rightparen||', "i'm", 'salvaging', 'the', 'sauce', '||period||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||leftparen||', 'eats', 'the', 'bread', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'moving', 'out', 'into', 'the', 'living', 'room', '||rightparen||', 'jerry', '||comma||', 'why', "don't", 'you', 'do', 'a', 'bit', 'on', 'styrofoam', '||questionmark||', '||return||', '||return||', 'jerry:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'uh', '||period||', '||period||', '||leftparen||', 'starts', 'to', 'impersonate', "jerry's", 'act', '||rightparen||', '||quotemark||', 'what', 'is', 'this', 'stuff', '||questionmark||', 'why', 'do', 'we', 'need', 'this', 'stuff', '||questionmark||', '||period||', '||period||', 'and', 'why', 'do', 'they', 'make', 'it', 'so', 'small', '||period||', '||period||', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', "where's", 'the', 'punchline', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'all', 'attitude', '||period||', '||period||', '||leftparen||', 'makes', 'a', 'humorous', 'face', '||dash||', 'mocking', "jerry's", '||rightparen||', '||return||', '||return||', 'goerge:', '||leftparen||', 'taking', 'out', 'a', 'mat', 'from', 'the', 'huge', 'box', '||rightparen||', 'well', '||comma||', 'this', 'is', 'certainly', 'a', 'crappy', 'gift', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'a', 'door', 'mat', '||questionmark||', "that's", 'what', 'she', 'had', 'me', 'lug', 'up', 'from', 'memphis', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'pretty', 'chintzy', '||comma||', 'huh', '||questionmark||', 'considering', 'the', 'money', 'she', 'makes', '||period||', '||period||', "she's", 'a', 'big', 'executive', 'for', 'federal', 'express', '||period||', '||return||', '||return||', 'jerry:', 'federal', 'express', '||questionmark||', '||exclammark||', 'is', 'she', 'out', 'of', 'her', 'mind', '||questionmark||', 'why', "didn't", 'she', 'just', 'ship', 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', "it's", 'personalized', '||period||', '||leftparen||', 'holds', 'it', 'up', '||comma||', 'reading', '||rightparen||', '||quotemark||', 'the', 'costanzas', '||quotemark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'forget', 'it', '||period||', 'i', "don't", 'want', 'it', '||period||', "let's", 'just', 'get', 'rid', 'of', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', 'your', 'father', 'would', 'be', 'interested', 'in', 'that', '||period||', '||return||', '||return||', 'george:', 'i', 'doubt', 'it', '||period||', 'you', 'know', 'what', "he's", 'doing', 'now', '||questionmark||', "he's", 'putting', 'a', 'pool', 'table', 'in', 'my', 'old', 'bedroom', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interested', '||rightparen||', 'oh', 'yeah', '||questionmark||', 'well', '||comma||', 'maybe', "i'll", 'go', 'out', 'there', 'and', 'knock', 'a', 'few', 'balls', 'around', 'with', 'him', '||period||', 'you', 'know', '||comma||', 'show', 'him', 'a', 'thing', 'or', 'two', '||period||', '||period||', '||return||', '||return||', '[setting:', "george's", 'old', 'bedroom]', '||return||', '||return||', 'kramer:', 'so', '||comma||', "what's", 'your', 'game', '||questionmark||', 'what', 'do', 'you', 'like', 'to', 'play', '||questionmark||', '||return||', '||return||', 'frank:', 'eight', 'ball', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'nothing', 'doing', '||period||', "let's", '||comma||', 'you', 'and', 'me', '||comma||', 'play', 'a', 'game', 'of', 'straight', 'pool', '||period||', '||period||', 'hmm', '||questionmark||', '||return||', '||return||', 'frank:', 'you', 'like', 'to', 'gamble', '||comma||', 'cosmo', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'now', 'and', 'then', '||dash||', 'you', 'know', 'how', 'it', 'is', '||period||', '||period||', '||return||', '||return||', 'frank:', 'five', 'dollars', 'a', 'game', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', "i'll", 'break', '||period||', '||return||', '||return||', 'frank:', 'okay', '||period||', '||return||', '||return||', '[setting:', 'george', 'and', "susan's", 'apartment]', '||return||', '||return||', 'george:', "what's", 'all', 'this', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', "i'm", 'just', 'moving', 'in', 'some', 'more', 'of', 'my', 'stuff', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', 'to', 'himself', 'as', 'he', 'walks', 'to', 'the', 'bedroom', '||rightparen||', 'more', 'stuff', '||period||', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'calling', 'out', '||rightparen||', 'oh', '||comma||', 'i', 'put', 'up', 'my', 'doll', 'collection', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||exclammark||', 'what', 'is', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'susan:', '||leftparen||', 'rushing', 'in', '||rightparen||', 'what', '||questionmark||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'staring', 'at', 'the', 'doll', '||rightparen||', 'this', 'doll', '||leftparen||', 'pointing', '||rightparen||', 'looks', 'like', 'my', 'mother', '||period||', '||return||', '||return||', 'susan:', 'george', '||comma||', "it's", 'a', 'doll', '||period||', '||return||', '||return||', 'george:', 'i', 'know', "it's", 'a', 'doll', '||comma||', 'but', 'it', 'looks', 'like', 'my', 'mother', '||exclammark||', '||return||', '||return||', 'susan:', '||leftparen||', 'going', 'back', 'to', 'the', 'living', 'room', '||rightparen||', 'oh', '||comma||', 'get', 'outta', 'here', '||period||', '||period||', '||return||', '||return||', '[setting:', "george's", 'old', 'bedroom]', '||return||', '||return||', 'estelle:', "what's", 'going', 'on', 'in', 'here', '||questionmark||', '||leftparen||', 'kramer', 'hits', 'the', 'cue', 'ball', '||comma||', 'it', 'jumps', 'up', 'from', 'the', 'table', 'and', 'flies', 'off', 'screen', '||rightparen||', 'are', 'you', 'two', 'still', 'playing', '||questionmark||', '||exclammark||', "you've", 'been', 'up', 'here', 'three', 'hours', '||exclammark||', '||return||', '||return||', 'frank:', 'we', 'still', "haven't", 'finished', 'the', 'first', 'game', '||period||', '||return||', '||return||', 'estelle:', 'the', 'first', 'game', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'explaining', 'why', 'they', 'are', 'doing', 'so', 'bad', '||rightparen||', 'well', '||comma||', "we're", 'still', '||comma||', 'uh', '||comma||', 'learning', 'the', 'subtleties', 'of', 'the', 'table', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'to', 'estelle', '||rightparen||', 'he', 'knows', 'the', 'maestro', '||period||', 'he', 'could', 'have', 'the', 'picture', '||period||', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'forget', 'about', 'it', '||period||', "it's", 'not', 'your', 'cousin', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'yelling', 'out', '||rightparen||', 'you', "don't", 'know', 'that', '||exclammark||', '||leftparen||', 'estelle', 'leaves', '||comma||', 'slamming', 'the', 'door', '||rightparen||', "we're", 'gonna', 'go', 'see', 'him', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'judging', 'up', 'his', 'next', 'move', '||rightparen||', 'as', 'soon', 'as', 'the', 'game', 'is', 'over', '||period||', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'sensing', 'the', 'game', 'is', 'going', 'to', 'last', 'a', 'long', 'time', '||rightparen||', 'oh', 'boy', '||period||', '||return||', '||return||', 'kramer:', 'eleven', '||comma||', 'corner', 'pocket', '||period||', '||leftparen||', 'pulls', 'back', 'on', 'his', 'stick', '||comma||', 'accidentally', 'crashing', 'it', 'into', 'the', 'window', '||rightparen||', '||return||', '||return||', '[setting:', 'george', 'and', "susan's", 'bedroom]', '||return||', '||return||', 'george:', 'what', 'is', 'this', 'thing', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'i', 'used', 'to', 'love', 'to', 'sleep', 'with', 'my', 'dolls', 'when', 'i', 'was', 'a', 'little', 'girl', '||period||', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', "i'm", 'sorry', '||comma||', 'i', "can't", 'do', 'this', '||period||', '||period||', '||return||', '||return||', 'susan:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'feel', 'like', "i'm", 'in', 'bed', 'with', 'my', 'mother', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', '||comma||', 'you', 'have', 'got', 'to', 'buy', 'this', 'new', 'electric', 'toothbrush', 'i', 'just', 'got', '||dash||', 'the', 'ori', '||dash||', 'dent', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'just', 'making', 'conversation', '||rightparen||', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'unbelievable', '||period||', 'every', 'time', 'you', 'use', 'it', 'you', 'feel', 'like', 'you', 'just', 'came', 'from', 'the', 'dentist', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mock', 'enthusiasm', '||rightparen||', 'oh', '||comma||', "that's", 'dynamite', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'tomorrow', '||questionmark||', 'you', 'want', 'to', 'come', 'see', 'me', 'on', 'the', 'charles', 'grodin', 'show', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'else', 'is', 'on', 'the', 'show', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||period||', '||period||', 'one', 'of', 'the', 'three', 'tenors', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'interested', '||rightparen||', 'the', 'three', 'tenors', '||questionmark||', '||leftparen||', 'stands', 'up', '||rightparen||', 'which', 'one', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'uh', '||period||', '||period||', "it's", 'not', 'poverotti', '||period||', '||period||', "it's", 'not', 'domingo', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'extremely', 'excited', '||rightparen||', 'the', 'other', 'guy', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nodding', '||rightparen||', 'yeah', '||comma||', 'the', 'other', 'guy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'screams', 'out', 'in', 'joy', '||rightparen||', 'my', 'god', '||exclammark||', 'i', "can't", 'believe', 'the', 'other', "guy's", 'going', 'to', 'be', 'on', 'the', 'show', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'i', 'ruined', 'this', 'autographed', 'picture', 'of', 'him', 'that', 'belonged', 'to', 'the', 'maestro', '||period||', 'you', 'think', 'i', 'can', 'go', 'and', 'get', 'his', 'autograph', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'extremely', 'giddy', '||rightparen||', 'wow', '||exclammark||', 'the', 'other', 'guy', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'look', 'awful', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sitting', 'on', 'the', 'sofa', '||rightparen||', "i'm", 'on', 'no', 'sleep', '||comma||', 'bro', '||period||', '||return||', '||return||', 'jerry:', 'problem', 'in', 'the', 'bedroom', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'muttering', '||rightparen||', 'susan', 'has', 'the', 'doll', 'collection', '||period||', '||period||', 'one', 'of', 'the', 'dolls', 'looks', 'exactly', 'like', 'my', 'mother', '||period||', '||period||', 'she', 'likes', 'to', 'sleep', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'you', 'were', 'in', 'bed', 'with', 'your', 'mother', 'last', 'night', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'long', 'pause', '||rightparen||', '||period||', '||period||', 'felt', 'like', 'it', '||period||', 'i', 'tell', 'you', '||comma||', 'this', 'doll', 'is', 'pretty', 'spooky', '||period||', '||leftparen||', 'takes', 'off', 'his', 'glasses', '||comma||', 'rubbing', 'his', 'eye', '||rightparen||', "it's", "freakin'", 'me', 'out', 'man', '||period||', 'and', 'now', 'i', 'got', 'to', 'go', 'back', 'out', 'there', 'and', 'pick', 'up', 'this', 'doormat', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', "didn't", 'want', 'the', 'doormat', '||period||', '||return||', '||return||', 'george:', 'i', "don't", '||period||', 'susan', 'wants', 'to', 'have', 'it', 'out', 'when', 'sally', 'comes', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'sally', '||questionmark||', '||leftparen||', 'getting', 'upset', '||rightparen||', 'wait', '||comma||', 'wait', 'a', 'minute', '||dash||', "she's", 'coming', 'to', 'new', 'york', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', '||leftparen||', 'smiling', '||rightparen||', 'susan', 'said', "you'd", 'be', 'excited', '||period||', '||return||', '||return||', 'jerry:', 'excited', '||questionmark||', "i'm", 'gonna', 'kill', 'her', '||exclammark||', 'she', 'knew', 'she', 'was', 'coming', 'here', 'and', 'she', 'made', 'me', 'carry', 'that', 'box', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', "who's", 'sally', '||questionmark||', '||return||', '||return||', 'george:', "susan's", 'college', 'roommate', '||period||', '||return||', '||return||', 'jerry:', "it's", 'because', 'of', 'her', 'that', 'bottle', 'got', 'broke', 'that', 'i', 'was', 'going', 'to', 'give', 'to', 'charles', 'grodin', 'on', 'his', 'show', '||period||', '||return||', '||return||', 'george:', 'so', 'call', 'her', 'up', 'and', 'tell', 'her', 'to', 'bring', 'you', 'another', 'one', '||period||', "she'll", 'be', 'delighted', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'while', 'opening', 'a', 'cereal', 'box', '||rightparen||', 'i', 'will', '||dash||', "don't", 'worry', '||period||', '||leftparen||', 'plotting', 'revenge', '||rightparen||', 'in', 'fact', '||comma||', "i'll", 'have', 'her', 'bring', 'up', 'a', 'whole', 'case', 'of', 'the', 'stuff', '||period||', "it'll", 'be', 'really', 'heavy', '||period||', "let's", 'see', 'if', 'she', 'likes', 'sitting', 'on', 'a', 'plane', 'with', 'a', 'big', 'box', 'on', 'her', 'lap', '||exclammark||', '||return||', '||return||', 'elaine:', "that's", 'sounds', 'pretty', 'juvenile', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulling', 'out', 'the', 'toy', 'from', 'the', 'cereal', 'box', '||dash||', 'he', 'displays', 'even', 'more', 'immaturity', 'by', 'holding', 'it', 'up', '||comma||', 'smiling', '||rightparen||', 'hey', '||exclammark||', 'a', 'dinosaur', '||exclammark||', '||return||', '||return||', '[setting:', 'the', "maestro's", 'office]', '||return||', '||return||', 'frank:', 'his', 'name', 'was', 'carlo', 'costanza', '||period||', 'we', 'played', 'together', 'everyday', 'until', 'i', 'was', 'four', '||period||', 'if', 'i', 'could', 'just', 'look', 'through', 'your', 'photographs', '||comma||', 'maybe', 'i', 'could', 'recognize', 'him', '||period||', '||return||', '||return||', 'maestro:', 'unfortunately', 'those', 'photographs', 'are', 'at', 'home', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'listen', '||comma||', 'if', 'you', 'bring', "'em", 'by', '||comma||', 'maybe', 'we', 'could', 'interest', 'you', 'in', 'a', 'game', 'of', 'pool', '||period||', '||period||', 'yeah', '||comma||', 'frank', 'here', '||dash||', "he's", 'got', 'his', 'own', 'billiard', 'room', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'trying', 'to', 'concentrate', '||rightparen||', 'yes', '||comma||', "it's", '||comma||', 'uh', '||comma||', "it's", '||period||', '||period||', 'uh', '||comma||', 'uh', '||period||', '||period||', 'what', 'do', 'you', 'call', 'it', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'billiard', 'room', '||period||', '||return||', '||return||', 'frank:', 'no', '||comma||', 'not', 'billiard', '||period||', '||period||', '||leftparen||', 'scolding', '||rightparen||', 'not', 'billiards', '||period||', '||period||', 'it', 'was', '||period||', '||period||', 'come', 'on', '||comma||', 'already', '||period||', 'come', 'on', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'confused', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'frank:', 'we', 'call', 'it', '||period||', '||period||', 'the', '||comma||', 'uh', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'snaps', '||rightparen||', 'the', 'place', 'to', 'be', '||exclammark||', '||return||', '||return||', 'frank:', 'the', 'place', 'to', 'be', '||exclammark||', 'yes', '||exclammark||', "it's", 'the', 'place', 'to', 'be', '||period||', '||return||', '||return||', 'maestro:', '||leftparen||', 'agreeing', 'to', 'a', 'game', '||rightparen||', 'ah', '||comma||', 'then', 'i', 'shall', 'be', 'there', '||period||', 'and', 'now', '||comma||', 'gentlemen', '||comma||', '||leftparen||', 'making', 'dramatic', 'actions', '||rightparen||', 'if', 'you', 'will', 'excuse', 'me', '||dash||', 'i', 'must', 'prepare', 'for', 'the', 'symphony', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||questionmark||', '||return||', '||return||', 'maestro:', '||leftparen||', 'noticing', 'the', 'expressions', '||rightparen||', 'ohh', '||comma||', 'my', 'pants', '||period||', '||leftparen||', 'begins', 'putting', 'on', 'a', 'near', '||dash||', 'by', 'pair', 'of', 'pants', '||rightparen||', "it's", 'an', 'old', "conductor's", 'trick', 'i', 'learned', 'from', 'leonard', 'bernstein', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '||return||', '||return||', 'maestro:', 'you', 'keep', 'a', 'perfect', 'crease', 'by', 'not', 'sitting', 'in', 'them', 'before', 'the', 'performance', '||period||', '||return||', '||return||', 'kramer:', "that's", 'good', 'thinking', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'you', 'see', '||questionmark||', '||period||', '||period||', 'you', 'see', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', "doesn't", 'look', 'exactly', 'like', 'her', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'come', 'on', '||period||', 'if', 'my', 'mother', 'keeps', 'shrinking', '||comma||', 'this', 'is', 'exactly', 'what', "she's", 'gonna', 'look', 'like', 'in', 'ten', 'years', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'just', 'get', 'rid', 'of', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'tried', '||exclammark||', 'i', 'almost', 'threw', 'it', 'down', 'the', 'incinerator', '||comma||', 'but', 'i', "couldn't", 'do', 'it', '||period||', 'the', 'guilt', 'was', 'too', 'overwhelming', '||period||', '||leftparen||', 'grabs', 'the', 'doll', '||comma||', 'opening', 'the', 'door', 'to', 'leave', '||rightparen||', "susan's", 'so', 'attached', 'to', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'where', 'are', 'you', 'going', '||questionmark||', "don't", 'take', 'your', 'dolly', 'and', 'go', 'home', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'see', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'just', 'glad', "it's", 'outta', 'here', '||period||', '||leftparen||', 'elaine', 'exhales', 'deeply', '||dash||', 'getting', 'over', 'the', 'scare', 'of', 'the', 'doll', '||period||', 'she', 'moves', 'into', 'the', 'apartment', '||rightparen||', "what's", 'that', '||questionmark||', '||leftparen||', 'pointing', 'to', 'a', 'rolled', 'up', 'poster', 'elaine', 'is', 'carrying', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "it's", 'a', 'poster', 'of', 'the', 'three', 'tenors', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'intercom', 'buzzes', '||comma||', 'jerry', 'answers', 'it', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'sally:', '||leftparen||', 'through', 'the', 'intercom', '||rightparen||', "it's", 'sally', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'did', 'you', 'bring', 'the', 'bar', '||dash||', 'b', '||dash||', 'que', 'sauce', '||questionmark||', '||return||', '||return||', 'sally:', 'a', 'whole', 'case', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'letting', 'her', 'up', '||rightparen||', 'excellent', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'so', '||comma||', 'did', 'you', 'buy', 'that', 'electric', 'toothbrush', 'i', 'was', 'telling', 'you', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'blunt', '||comma||', 'to', 'the', 'point', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'how', 'come', '||questionmark||', 'i', 'told', 'you', '||dash||', "it's", 'fantastic', '||period||', '||return||', '||return||', 'elaine:', 'eh', '||comma||', 'i', 'like', 'mine', '||period||', '||return||', '||return||', 'jerry:', "i've", 'had', 'yours', '||comma||', "i'm", 'telling', 'you', '||dash||', 'this', 'one', 'is', 'ten', 'times', 'better', '||period||', "don't", 'you', 'believe', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'want', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'slightly', 'confused', 'by', 'her', 'behavior', '||rightparen||', 'i', "don't", 'understand', 'this', '||period||', 'why', "wouldn't", 'you', 'want', 'to', 'get', 'something', "that's", 'better', 'if', "i'm", 'telling', 'you', "it's", 'better', '||questionmark||', 'and', "it's", 'not', 'a', 'little', 'better', '||dash||', "it's", 'much', 'better', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'committing', 'to', 'the', 'conversation', '||rightparen||', 'it', "doesn't", 'matter', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'come', 'in', '||period||', '||return||', '||return||', 'sally:', '||leftparen||', 'peppy', '||rightparen||', 'well', '||comma||', 'here', 'i', 'am', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||period||', 'elaine', '||comma||', 'this', 'is', 'sally', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'how', 'was', 'your', 'flight', '||questionmark||', '||leftparen||', 'wishful', 'thinking', '||rightparen||', 'pretty', 'uncomfortable', '||questionmark||', '||return||', '||return||', 'sally:', '||leftparen||', 'setting', 'the', 'box', 'down', 'on', 'his', 'table', '||rightparen||', 'actually', '||comma||', 'the', 'seat', 'next', 'to', 'me', 'was', 'empty', '||comma||', 'so', '||comma||', 'there', 'was', 'no', 'problem', 'at', 'all', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'let', 'down', '||rightparen||', 'oh', '||period||', '||period||', '||leftparen||', 'starts', 'to', 'open', 'the', 'box', '||rightparen||', 'oh', '||comma||', 'wait', '||period||', '||period||', '||leftparen||', 'holding', 'up', 'one', 'of', 'the', 'bbq', 'jars', '||rightparen||', 'this', "isn't", 'the', 'sauce', 'that', 'i', 'asked', 'for', '||exclammark||', '||return||', '||return||', 'sally:', "that's", 'right', '||period||', "it's", 'a', 'special', 'gourmet', 'sauce', '||period||', '||quotemark||', 'the', 'pride', 'of', 'memphis', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'complaining', '||rightparen||', 'no', '||comma||', 'no', '||period||', 'i', 'wanted', 'the', 'one', 'in', 'the', 'little', 'bottle', 'with', 'that', 'guy', 'on', 'it', 'that', 'looks', 'like', 'charles', 'grodin', '||exclammark||', '||return||', '||return||', 'sally:', 'this', 'is', 'much', 'better', '||period||', 'and', 'frankly', '||comma||', 'in', 'memphis', '||comma||', 'we', 'think', 'that', 'other', 'sauce', 'as', '||leftparen||', 'whispering', '||rightparen||', 'kind', 'of', 'a', 'joke', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', "it's", 'a', 'joke', '||period||', "it's", 'supposed', 'to', 'be', 'a', 'joke', '||exclammark||', 'now', "i'm", 'going', 'on', 'the', 'charles', 'grodin', 'show', 'with', 'nothing', '||period||', '||leftparen||', 'sets', 'the', 'jar', 'down', 'angrily', '||rightparen||', 'nothing', '||exclammark||', '||return||', '||return||', 'sally:', 'you', 'could', 'just', 'do', 'your', 'material', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'peeved', '||rightparen||', 'i', "don't", 'have', 'any', 'material', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'yelling', 'out', '||rightparen||', "he's", 'got', "nothin'", '||exclammark||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'doll:', 'georgie', '||exclammark||', "don't", 'eat', 'with', 'your', 'hands', '||exclammark||', '||leftparen||', 'george', 'starts', 'eating', 'faster', '||rightparen||', 'why', 'do', 'you', 'eat', 'so', 'fast', '||questionmark||', '||exclammark||', 'you', "can't", 'even', 'taste', 'it', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'losing', 'it', '||rightparen||', "don't", 'tell', 'me', 'how', 'to', 'eat', '||exclammark||', '||return||', '||return||', 'doll:', "you're", 'wearing', 'that', 'shirt', '||questionmark||', "you've", 'had', 'it', 'for', 'five', 'years', 'already', '||exclammark||', 'why', "don't", 'you', 'get', 'a', 'new', 'shirt', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'to', 'keep', 'it', 'down', '||rightparen||', 'because', 'i', 'like', 'this', 'one', '||exclammark||', '||leftparen||', 'notices', 'people', 'staring', 'at', 'him', '||comma||', 'he', 'quickly', 'gets', 'up', '||comma||', 'collecting', 'the', 'his', 'coat', 'and', 'the', 'tiny', 'replica', '||rightparen||', "c'mon", '||comma||', "let's", 'go', '||period||', "let's", 'go', '||exclammark||', '||leftparen||', 'on', 'his', 'way', 'out', '||comma||', 'he', 'stops', 'in', 'front', 'of', 'a', 'woman', 'blocking', 'his', 'path', '||rightparen||', 'oh', '||comma||', 'hi', '||period||', '||period||', '||leftparen||', 'embarrassed', 'about', 'the', 'doll', '||comma||', 'he', 'sheepishly', 'walks', 'out', '||rightparen||', '||return||', '||return||', 'woman:', '||leftparen||', 'to', 'ruthie', '||comma||', 'the', 'cashier', '||rightparen||', 'that', 'man', 'should', 'really', 'be', 'in', 'a', 'sanitarium', '||period||', '||leftparen||', 'ruthie', 'nods', '||comma||', 'agreeing', '||rightparen||', '||return||', '||return||', '[setting:', "george's", 'old', 'bedroom]', '||return||', '||return||', 'kramer:', 'now', 'this', 'is', 'remarkable', '||period||', "i'm", 'lounging', '||comma||', 'and', 'yet', '||comma||', 'my', 'pants', 'remain', 'perfectly', 'creased', '||period||', '||return||', '||return||', 'frank:', "it's", 'him', '||exclammark||', '||leftparen||', 'standing', 'up', '||rightparen||', "it's", 'carlo', 'costanza', '||exclammark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||period||', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'frank:', "i'd", 'know', 'him', 'anywhere', '||period||', '||return||', '||return||', 'maestro:', "i've", 'seen', 'that', 'man', 'in', 'tuscany', '||period||', 'eccentric', 'fellow', '||period||', 'reputation', 'of', 'being', 'kind', 'of', 'a', 'village', 'idiot', '||period||', '||return||', '||return||', 'frank:', 'i', 'still', 'say', "we're", 'related', '||period||', '||return||', '||return||', 'maestro:', '||leftparen||', 'recognizing', 'the', 'currently', 'playing', 'song', '||rightparen||', 'ohh', '||comma||', 'i', 'love', 'this', 'piece', '||period||', '||leftparen||', 'turns', 'it', 'up', '||comma||', 'then', 'pantomimes', 'that', 'he', 'is', 'conducting', 'the', 'instruments', '||rightparen||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'come', 'on', 'frank', '||period||', "it's", 'your', 'shot', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'complaining', '||rightparen||', 'i', "can't", 'make', 'anything', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'like', 'a', 'professional', '||rightparen||', 'well', '||comma||', "that's", 'because', 'you', "don't", 'know', 'how', 'to', 'follow', 'through', 'correctly', '||period||', '||return||', '||return||', 'frank:', 'follow', 'through', '||questionmark||', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'here', '||comma||', 'come', 'on', '||comma||', "i'll", 'show', 'you', '||period||', '||period||', '||leftparen||', 'gets', 'behind', 'frank', '||comma||', 'holding', 'the', 'pool', 'stick', 'with', 'him', '||rightparen||', 'take', 'hold', 'of', 'your', 'stick', '||period||', '||period||', 'alright', '||comma||', 'bring', 'it', 'back', 'slowly', '||period||', '||period||', '||return||', '||return||', 'frank:', "it's", 'a', 'little', 'unnatural', '||comma||', 'but', 'i', 'think', "i'm", 'getting', 'the', 'hang', 'of', 'it', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'ticked', 'off', '||rightparen||', 'that', 'woman', 'is', 'such', 'an', 'idiot', '||exclammark||', 'i', 'was', 'gonna', 'do', 'this', 'whole', 'bit', 'on', 'that', 'bottle', '||dash||', 'and', 'now', 'i', 'got', 'nothing', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'have', 'you', 'ever', 'considered', 'writing', 'new', 'material', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'maybe', 'if', 'i', "didn't", 'have', 'so', 'many', 'people', 'in', 'my', 'apartment', 'all', 'the', 'time', "i'd", 'be', 'able', 'to', 'get', 'some', 'work', 'done', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'getting', 'the', 'hint', '||rightparen||', 'me', '||questionmark||', 'are', 'you', 'talking', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'deeply', 'sarcastic', '||rightparen||', 'no', '||period||', "you're", 'never', 'here', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reflecting', '||rightparen||', 'boy', '||comma||', 'that', 'doll', 'was', 'really', 'freaky', '||comma||', "wasn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'really', '||period||', '||leftparen||', 'forming', 'and', 'idea', '||rightparen||', 'hey', '||comma||', 'you', 'know', 'what', '||questionmark||', 'maybe', 'i', 'could', 'talk', 'about', 'that', 'on', 'the', 'show', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'show', 'the', 'doll', '||dash||', 'show', 'the', 'picture', 'of', "george's", 'mother', '||period||', '||period||', "it's", 'pretty', 'funny', '||period||', '||leftparen||', 'moving', 'toward', 'the', 'phone', '||rightparen||', "i'm", 'gonna', 'call', 'them', '||period||', '||return||', '||return||', 'sally:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'susan', '||questionmark||', "it's", 'jerry', '||period||', '||return||', '||return||', 'sally:', 'hi', 'jerry', '||comma||', "it's", 'sally', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disappointed', '||rightparen||', 'oh', '||period||', 'is', 'george', 'there', '||questionmark||', '||return||', '||return||', 'sally:', 'no', '||comma||', 'but', 'he', 'should', 'be', 'home', 'soon', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'listen', '||comma||', 'this', 'is', 'important', '||period||', 'tell', 'him', 'to', 'meet', 'me', 'at', 'the', 'tv', 'studio', 'with', 'a', 'picture', 'of', 'his', 'mother', 'and', 'that', 'doll', 'that', 'looks', 'like', 'her', '||period||', '||return||', '||return||', 'sally:', 'is', 'this', 'for', 'your', 'comedy', 'routine', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'obviously', 'resents', 'talking', 'to', 'her', '||rightparen||', 'yes', '||period||', '||return||', '||return||', 'sally:', '||leftparen||', 'gasps', '||rightparen||', "don't", 'worry', '||period||', '||leftparen||', 'like', 'a', 'detective', '||rightparen||', "i'm", 'on', 'the', 'case', '||period||', '||return||', '||return||', '[setting:', "george's", 'old', 'bedroom]', '||return||', '||return||', 'maestro:', '||leftparen||', 'sighs', 'slightly', '||rightparen||', 'i', '||comma||', 'uh', '||comma||', 'think', "i'll", 'get', 'some', 'air', '||period||', '||leftparen||', 'slowly', 'leaves', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||leftparen||', 'sizes', 'up', 'his', 'next', 'shot', '||period||', 'his', 'stick', 'jams', 'into', 'the', 'window', 'as', 'he', 'draws', 'back', '||rightparen||', 'see', '||questionmark||', 'this', 'is', 'no', 'good', '||period||', '||period||', '||leftparen||', 'looks', 'around', 'the', 'room', '||period||', 'his', 'sights', 'fall', 'on', 'the', "maestro's", 'baton', '||rightparen||', 'hey', '||comma||', 'the', 'baton', '||period||', '||leftparen||', 'chalks', 'it', 'up', '||rightparen||', 'i', 'got', 'a', 'hunch', '||comma||', 'fat', 'man', '||comma||', 'i', "can't", 'miss', '||period||', '||leftparen||', 'measures', 'up', 'his', 'shot', '||rightparen||', '13', 'in', 'the', 'side', 'pocket', '||period||', '||leftparen||', 'does', 'just', 'that', '||rightparen||', 'giddy', '||dash||', 'up', '||period||', '||leftparen||', 'moves', 'around', 'to', 'the', 'other', 'side', 'of', 'the', 'board', '||comma||', 'judging', 'his', 'next', 'move', '||rightparen||', 'six', 'in', 'the', 'corner', '||period||', '||leftparen||', 'hits', 'it', 'in', '||rightparen||', 'this', "table's", 'mine', '||period||', '||leftparen||', 'a', 'series', 'of', "kramer's", 'plays', 'are', 'displayed', '||comma||', 'and', '||comma||', 'on', 'the', 'last', 'ball', 'of', 'the', 'game', '||period||', '||period||', '||rightparen||', 'you', 'know', 'where', "it's", 'going', '||period||', '||period||', '||return||', '||return||', '[setting:', 'the', 'charles', 'grodin', 'show', 'dressing', 'room]', '||return||', '||return||', 'elaine', 'and', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', 'is', 'george', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'yet', '||period||', '||leftparen||', 'points', 'over', 'to', 'a', 'man', 'sitting', 'in', 'one', 'of', 'the', "room's", 'chairs', '||period||', 'whispers', '||rightparen||', 'the', 'other', 'guy', '||period||', '||return||', '||return||', 'elaine:', "it's", '||period||', '||period||', '||period||', '||period||', 'you', '||exclammark||', "it's", 'really', 'you', '||exclammark||', 'oh', '||comma||', "i'm", 'such', 'a', 'huge', 'fan', 'of', 'yours', '||period||', 'would', 'you', 'mind', 'signing', 'this', 'poster', 'for', 'me', '||questionmark||', '||return||', '||return||', 'carreras:', 'my', 'pleasure', '||period||', '||leftparen||', 'reaches', 'for', 'a', 'pen', 'as', 'elaine', 'unravels', 'her', 'poster', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'he', 'is', 'signing', '||rightparen||', 'oh', '||comma||', 'thank', 'you', 'so', 'much', '||period||', '||leftparen||', 'he', 'finishes', '||period||', 'elaine', 'gives', 'out', 'a', 'happy', 'gasp', '||rightparen||', 'thank', 'you', 'so', 'much', '||comma||', 'mr', '||period||', '||period||', '||leftparen||', 'tries', 'to', 'read', 'his', 'signature', '||rightparen||', 'camaro', '||period||', '||leftparen||', 'carreras', 'gives', 'her', 'a', 'look', 'as', 'he', 'is', 'getting', 'up', '||rightparen||', 'mr', '||period||', 'casea', '||questionmark||', '||leftparen||', 'he', 'walks', 'off', 'as', 'elaine', 'rolls', 'the', 'picture', 'back', 'up', '||period||', 'jerry', 'gives', 'his', '||quotemark||', "that's", 'a', 'shame', '||quotemark||', 'face', '||rightparen||', 'well', '||comma||', 'whatever', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', "i'm", 'gonna', 'take', 'this', 'to', 'the', 'maestro', '||period||', "he's", '||comma||', "he's", 'playing', 'at', 'the', 'queens', 'convalescent', 'center', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joking', 'around', '||rightparen||', 'well', '||comma||', "that's", 'one', 'hell', 'of', 'a', 'gig', '||period||', '||leftparen||', 'turning', 'around', '||comma||', 'he', 'picks', 'up', 'a', 'box', 'labeled', '||quotemark||', 'ori', '||dash||', 'dent', '||quotemark||', '||rightparen||', 'hey', '||comma||', 'look', '||comma||', 'i', 'got', 'something', 'for', 'you', '||period||', 'the', 'ori', '||dash||', 'dent', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mock', 'joy', '||rightparen||', 'ohh', '||period||', '||period||', 'thank', 'you', '||period||', '||leftparen||', 'accepts', 'the', 'gift', '||rightparen||', 'huh', '||period||', '||period||', '||leftparen||', 'struggles', 'under', 'the', 'size', '||rightparen||', 'wha', '||dash||', '||dash||', 'why', 'does', 'a', 'toothbrush', 'come', 'in', 'such', 'a', 'big', 'box', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'a', 'delicate', 'mechanism', '||dash||', 'it', '||comma||', 'you', 'know', '||comma||', 'needs', 'lots', 'of', 'packaging', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'trying', 'to', 'get', 'a', 'grasp', 'on', 'the', 'package', '||rightparen||', 'how', 'am', 'i', 'supposed', 'to', 'carry', 'this', 'thing', '||questionmark||', '||leftparen||', 'she', 'looks', 'up', 'to', 'see', 'jerry', 'taking', 'his', 'pants', 'off', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'want', 'to', 'sit', 'down', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'trick', 'i', 'just', 'learned', 'from', 'kramer', '||period||', 'it', 'keeps', 'a', 'crease', 'in', 'the', 'pants', '||period||', '||leftparen||', 'folds', 'his', 'pants', 'over', 'the', 'head', 'of', 'a', 'chair', '||comma||', 'then', 'sits', 'down', 'in', 'another', '||period||', 'when', 'he', 'sees', "elaine's", 'staring', 'at', 'him', '||comma||', 'he', 'makes', 'a', '||quotemark||', 'tada', '||exclammark||', '||quotemark||', 'gesture', 'with', 'his', 'hands', '||period||', 'elaine', 'holds', 'her', 'hand', 'up', '||dash||', 'as', 'if', 'to', 'say', '||quotemark||', "i'll", 'see', 'ya', '||period||', '||quotemark||', '||comma||', 'and', 'while', "she's", 'slowly', 'walking', 'out', 'jerry', 'gives', 'her', 'a', 'salute', '||rightparen||', '||return||', '||return||', '[setting:', "george's", 'old', 'bedroom]', '||return||', '||return||', 'maestro:', '||leftparen||', 'making', 'his', 'exit', '||comma||', 'he', 'lays', 'the', 'charm', 'on', 'mrs', '||period||', 'costanza', '||rightparen||', 'madame', '||comma||', 'you', 'have', 'been', 'an', 'extremely', 'gracious', 'hostess', '||period||', '||leftparen||', 'kisses', 'her', 'hand', '||rightparen||', '||return||', '||return||', 'estelle:', '||leftparen||', 'coy', '||rightparen||', 'ohh', '||period||', '||period||', 'thank', 'you', '||comma||', 'maestro', '||period||', '||leftparen||', 'giggles', 'to', 'herself', 'as', 'the', 'maestro', 'leaves', '||rightparen||', '||return||', '||return||', 'frank:', '||leftparen||', 'holding', 'up', 'a', 'picture', '||rightparen||', 'here', '||comma||', 'take', 'a', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'looking', 'at', 'it', '||rightparen||', 'yeah', '||comma||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'frank:', "it's", 'carlo', '||period||', 'i', 'found', 'him', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'handing', 'the', 'picture', 'back', '||rightparen||', "you've", 'been', 'cooped', 'up', 'in', 'this', 'room', 'too', 'long', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'yelling', 'out', '||rightparen||', 'you', 'never', 'support', 'me', '||exclammark||', "let's", 'see', 'what', 'george', 'says', 'about', 'this', '||period||', '||period||', "where're", 'my', 'pants', '||questionmark||', '||leftparen||', 'takes', 'his', 'pair', 'off', 'a', 'rack', 'and', 'leaves', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taking', 'his', 'pair', 'off', '||comma||', 'he', 'inspects', 'them', '||rightparen||', 'aw', '||comma||', 'beautiful', '||exclammark||', '||return||', '||return||', '[setting:', 'the', 'charles', 'grodin', 'show', 'dressing', 'room]', '||return||', '||return||', 'sally:', 'hey', 'there', '||comma||', 'mr', '||period||', 'hairy', 'legs', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surprised', 'to', 'see', 'her', '||comma||', 'he', 'gets', 'up', '||rightparen||', "where's", 'george', '||questionmark||', '||return||', '||return||', 'sally:', "don't", 'worry', '||comma||', 'i', 'brought', 'your', 'doll', '||period||', '||period||', '||leftparen||', 'pulls', 'out', 'an', 'extremely', 'different', 'doll', '||dash||', 'this', 'one', 'resembles', 'a', 'baker', '||rightparen||', 'tada', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'complaining', '||rightparen||', 'no', '||exclammark||', "that's", 'the', 'wrong', 'doll', '||exclammark||', '||return||', '||return||', 'sally:', 'jerry', '||comma||', 'i', 'saw', 'the', 'doll', 'you', 'were', 'talking', 'about', '||dash||', 'not', 'funny', '||exclammark||', 'this', "doll's", 'much', 'funnier', '||period||', 'look', '||comma||', 'it', 'has', 'a', 'little', 'bowtie', '||comma||', 'and', 'a', 'cute', 'little', 'hat', '||period||', '||period||', 'i', 'think', "it's", 'a', 'riot', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'slow', 'whispering', '||rightparen||', 'this', 'is', 'a', 'nightmare', '||period||', '||return||', '||return||', 'sally:', 'oh', 'well', '||comma||', "i'll", 'be', 'watching', '||period||', '||leftparen||', 'sets', 'the', 'doll', 'down', '||comma||', 'then', 'crosses', 'her', 'fingers', '||rightparen||', "don't", 'screw', 'up', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'my', 'pants', '||exclammark||', '||return||', '||return||', 'stagehand:', 'mr', '||period||', 'seinfeld', '||comma||', "you're", 'on', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'maestro:', 'elaine', '||questionmark||', 'what', 'a', 'surprise', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', "you're", 'very', 'busy', '||comma||', 'but', 'i', 'just', 'wanted', 'to', 'come', 'by', 'and', 'give', 'you', 'this', '||period||', '||return||', '||return||', 'maestro:', 'ohh', '||period||', '||period||', '||leftparen||', 'looking', 'at', 'the', 'box', '||rightparen||', 'ori', '||dash||', 'dent', '||dash||', 'that', 'electric', 'toothbrush', "i've", 'heard', 'so', 'much', 'about', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'not', 'the', 'toothbrush', '||period||', '||period||', '||leftparen||', 'holds', 'out', 'the', 'poster', '||rightparen||', 'this', '||period||', '||return||', '||return||', 'maestro:', 'ohh', '||comma||', 'what', 'a', 'sweet', 'gesture', '||period||', 'and', 'autographed', 'poster', 'of', 'my', 'favorite', 'tenor', '||comma||', 'with', '||period||', '||period||', 'those', 'two', 'other', 'guys', '||period||', 'oh', '||comma||', 'elaine', '||comma||', 'this', 'is', 'magnifico', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'i', 'just', 'felt', 'so', 'bad', 'about', 'what', 'happened', 'in', 'tuscany', '||period||', '||period||', '||return||', '||return||', 'stagehand:', '||leftparen||', 'yelling', 'from', 'off', '||dash||', 'camera', '||rightparen||', 'maestro', '||comma||', "you're", 'on', '||exclammark||', '||return||', '||return||', 'maestro:', 'oh', '||comma||', 'elaine', '||period||', '||period||', 'wait', 'for', 'me', 'after', 'the', 'concert', '||questionmark||', "we'll", 'celebrate', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'ok', '||exclammark||', '||leftparen||', 'picking', 'up', 'the', 'ori', '||dash||', 'dent', 'box', '||comma||', 'she', 'knocks', 'over', 'a', 'bottle', 'of', 'wine', '||period||', 'it', 'spills', 'all', 'over', 'the', 'poster', '||rightparen||', '||return||', '||return||', '[setting:', 'george', 'and', "susan's", 'apartment]', '||return||', '||return||', 'susan:', 'i', 'want', 'to', 'know', 'why', 'you', 'took', 'my', 'doll', 'out', 'of', 'the', 'house', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'wanted', 'a', 'second', 'opinion', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'holding', 'up', 'the', 'picture', '||rightparen||', 'take', 'a', 'look', 'at', 'this', '||period||', "doesn't", 'that', 'look', 'like', 'my', 'flesh', 'and', 'blood', '||questionmark||', 'of', 'course', '||comma||', 'your', 'mother', '||dash||', '||leftparen||', 'his', 'attention', 'is', 'drawn', 'over', 'to', "susan's", 'doll', '||period||', 'like', 'george', 'did', 'earlier', '||comma||', 'he', 'starts', 'to', 'imagine', 'that', 'the', 'doll', 'is', 'scolding', 'him', 'as', 'his', 'wife', 'would', '||rightparen||', '||return||', '||return||', 'doll:', 'oh', '||comma||', 'stop', 'bothering', 'everybody', 'with', 'that', 'picture', '||period||', "it's", 'ridiculous', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'walking', 'toward', 'the', 'doll', '||rightparen||', 'ridiculous', '||questionmark||', '||exclammark||', "i'll", 'show', 'you', 'ridiculous', '||exclammark||', '||leftparen||', 'struggles', 'with', 'susan', 'for', 'possession', 'of', 'the', 'doll', '||rightparen||', 'come', 'here', '||exclammark||', '||return||', '||return||', 'susan:', '||leftparen||', 'pleading', '||rightparen||', 'no', '||comma||', 'mr', '||period||', 'costanza', '||exclammark||', 'no', '||comma||', 'no', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'holding', 'out', 'the', 'head', 'in', 'his', 'hand', '||comma||', 'he', 'addresses', 'it', '||rightparen||', 'there', '||exclammark||', 'now', 'what', 'have', 'you', 'got', 'to', 'say', 'for', 'yourself', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'susan', '||rightparen||', 'i', 'told', 'you', 'it', 'looked', 'like', 'her', '||period||', '||period||', '||return||', '||return||', '[setting:', 'a', 'street', 'in', 'tuscany]', '||return||', '||return||', 'frank:', '||leftparen||', 'sets', 'a', 'gift', "he's", 'brought', 'down', '||rightparen||', 'carlo', '||exclammark||', "it's", 'me', '||comma||', 'frank', '||exclammark||', '||leftparen||', 'attempts', 'to', 'hug', 'the', 'guy', '||comma||', 'but', 'he', 'resists', '||dash||', 'pushing', 'frank', 'away', '||period||', 'he', 'scolds', 'frank', 'in', 'another', 'language', '||rightparen||', "i'm", 'your', 'cousin', '||comma||', 'frank', '||exclammark||', "aren't", 'you', 'carlo', '||questionmark||', '||return||', '||return||', 'man:', 'carlo', '||questionmark||', 'no', '||period||', 'mi', 'nome', 'e', 'giuseppe', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'realizing', '||rightparen||', 'what', 'do', 'you', 'know', '||period||', '||period||', 'alright', '||period||', '||leftparen||', 'picking', 'up', 'his', 'present', '||rightparen||', 'i', 'guess', 'i', 'was', 'wrong', '||period||', '||leftparen||', 'walks', 'off', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'joyful', '||rightparen||', 'june', '||period||', "it's", 'june', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'high', '||dash||', 'fiving', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'june', '||period||', "mark's", 'michelle', 'is', 'a', 'dog', '||period||', '||return||', '||return||', 'george:', 'june', '||comma||', 'june', '||comma||', 'june', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'passerby', '||rightparen||', 'hey', '||comma||', 'he', '||dash||', 'hah', '||period||', "it's", 'june', '||comma||', 'june', '||period||', '||return||', '||return||', 'george:', "it's", 'juu', '||dash||', 'uu', '||dash||', 'une', '||exclammark||', 'hey', 'hay', '||period||', 'yes', '||period||', '||return||', '||return||', 'george:', 'i', 'love', 'juu', '||dash||', 'uuu', '||dash||', 'uu', '||dash||', 'uune', '||exclammark||', '||return||', '||return||', 'george:', 'june', '||period||', 'juune', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'catering', 'hall', 'screwed', 'up', '||period||', 'the', 'wedding', 'is', 'delayed', 'until', 'june', '||period||', "it's", 'like', 'a', 'stay', 'of', 'execution', '||period||', '||return||', '||return||', 'jerry:', 'dead', 'man', 'walking', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointing', 'to', 'jerry', 'in', 'joyous', 'agreement', '||rightparen||', 'ha', '||dash||', 'ha', '||dash||', 'hah', '||period||', 'this', 'is', 'my', 'lucky', 'day', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'one', 'outta', 'twenty', 'thousand', '||period||', "that's", 'not', 'bad', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hey', '||comma||', 'wait', 'a', 'second', '||comma||', 'you', 'know', '||comma||', 'good', 'news', 'for', 'you', 'too', '||period||', "susan's", 'best', 'friend', '||comma||', 'hallie', '||questionmark||', 'broke', 'up', 'with', 'her', 'boyfriend', '||period||', '||return||', '||return||', 'jerry:', 'she', 'did', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', 'wheels', '||questionmark||', '||return||', '||return||', 'george:', 'in', 'motion', '||period||', 'the', 'wheels', 'are', 'in', 'motion', '||period||', '||return||', '||return||', 'jerry:', 'beautiful', '||period||', '||return||', '||return||', 'george:', 'aah', '||comma||', 'hey', '||period||', '||leftparen||', 'enthusiastic', '||rightparen||', 'if', 'this', 'works', 'out', '||comma||', 'forget', 'about', 'it', '||period||', 'vacations', 'together', '||comma||', 'movies', 'together', '||comma||', 'dinner', 'together', '||period||', 'it', '||period||', '||period||', "it's", 'almost', 'as', 'good', 'as', 'if', 'i', "didn't", 'get', 'married', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'set', 'it', 'up', '||period||', 'you', 'know', 'what', '||comma||', 'we', 'could', 'have', 'dinner', 'at', 'the', 'friars', 'club', '||period||', '||return||', '||return||', 'george:', 'the', 'friars', 'club', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'thinking', 'of', 'joining', '||period||', 'pat', 'cooper', 'said', 'he', 'would', 'put', 'me', 'up', 'for', 'membership', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'everybody', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'listen', '||comma||', 'uh', '||comma||', 'do', 'me', 'a', 'favour', '||comma||', 'will', 'you', '||questionmark||', 'i', 'got', 'a', 'hot', 'date', 'tonight', 'with', 'connie', '||period||', 'knock', 'on', 'my', 'door', '||comma||', 'wake', 'me', 'up', 'in', 'twenty', 'minutes', '||comma||', 'alright', '||questionmark||', '||return||', '||return||', 'jerry:', 'catnap', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||leftparen||', 'comes', 'in', '||rightparen||', 'this', 'is', 'evolutionary', '||period||', 'i', 'been', 'reading', 'this', 'book', '||comma||', 'on', 'leonardo', 'de', 'vinci', '||period||', 'see', '||comma||', 'that', 'means', "'from", "vinci'", '||comma||', "d'you", 'know', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'deadpan', '||rightparen||', 'that', 'must', 'be', 'some', 'book', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'turns', 'out', 'that', 'the', 'master', 'slept', 'only', 'twenty', 'minutes', 'every', 'three', 'hours', '||period||', 'now', '||comma||', 'that', 'works', 'out', 'to', 'two', 'and', 'a', 'half', 'extra', 'days', '||comma||', 'that', "i'm", 'awake', 'per', 'week', '||comma||', 'every', 'week', '||period||', 'which', 'means', '||comma||', 'if', 'i', 'live', 'to', 'be', 'eighty', '||comma||', 'i', 'will', 'have', 'lived', 'the', 'equivalent', 'of', 'a', 'hundred', 'and', 'five', 'years', '||period||', '||return||', '||return||', 'jerry:', 'just', 'imagine', 'how', 'much', 'more', "you'll", 'accomplish', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'got', 'a', 'lot', 'of', 'things', 'in', 'the', 'hopper', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'you', 'had', 'a', 'hopper', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiling', '||rightparen||', 'oh', '||comma||', 'i', 'got', 'a', 'hopper', '||period||', 'a', 'big', 'hopper', '||period||', '||return||', '||return||', 'peterman:', 'alright', '||comma||', 'people', '||comma||', "i'd", 'like', 'to', 'begin', 'with', 'a', 'hearty', 'hail', 'and', 'well', '||dash||', 'met', 'good', 'fellow', '||comma||', 'to', 'bob', 'grossberg', '||comma||', "who's", 'joining', 'us', 'from', 'business', 'affairs', '||period||', '||return||', '||return||', 'bob:', 'thanks', '||period||', 'hi', 'everybody', '||period||', '||return||', '||return||', 'peterman:', 'bob', '||comma||', 'we', 'have', 'a', 'little', 'baptism', 'by', 'fire', 'for', 'you', '||comma||', 'so', 'to', 'speak', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whispers', '||rightparen||', 'poor', 'bastard', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'to', 'bob', '||rightparen||', 'i', 'want', 'you', 'to', 'handle', 'all', 'the', 'fact', '||dash||', 'checking', 'and', 'the', 'copy', '||dash||', 'editing', 'for', 'the', 'new', 'catalogue', '||period||', '||return||', '||return||', 'bob:', 'ah', '||comma||', 'could', 'you', 'repeat', 'that', '||questionmark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'slower', 'and', 'louder', '||rightparen||', 'why', "don't", 'you', 'handle', 'all', 'the', 'copy', '||dash||', 'editing', '||questionmark||', '||return||', '||return||', 'bob:', '||leftparen||', 'apologetic', '||rightparen||', 'i', '||period||', '||period||', "i'm", 'sorry', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'louder', 'still', '||rightparen||', 'copy', '||dash||', 'editing', '||exclammark||', '||return||', '||return||', 'peterman:', 'eh', '||comma||', 'never', 'mind', '||period||', '||leftparen||', 'turns', 'to', 'elaine', '||rightparen||', 'elaine', '||comma||', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', "i'm", 'jerry', 'seinfeld', '||period||', 'pat', 'cooper', 'made', 'a', 'reservation', 'for', 'me', '||period||', '||return||', '||return||', 'maitre', "d':", 'yes', '||comma||', 'mr', 'seinfeld', '||comma||', 'but', 'uhm', '||comma||', 'all', 'gentlemen', 'are', 'required', 'to', 'wear', 'jackets', 'in', 'the', 'dining', 'room', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'downcast', '||rightparen||', 'oh', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'hallie:', '||leftparen||', 'smiling', '||rightparen||', 'how', 'embarrassing', 'this', 'must', 'be', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jocular', '||rightparen||', 'you', 'just', 'bought', 'your', 'own', 'dinner', '||period||', '||return||', '||return||', 'maitre', "d':", 'no', 'problem', '||period||', 'please', '||comma||', 'follow', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'passing', 'hallie', '||rightparen||', "'scuse", 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'ho', 'ho', '||period||', 'funny', '||period||', "isn't", 'he', 'funny', '||questionmark||', 'funny', 'guy', '||period||', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'george:', 'friars', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'not', 'bad', '||period||', '||leftparen||', 'pointing', 'to', 'crest', '||rightparen||', 'i', 'kinda', 'like', 'this', 'little', 'thing', 'here', '||period||', '||return||', '||return||', 'maitre', "d':", 'this', 'way', 'please', '||period||', '||return||', '||return||', 'george:', 'hup', '||comma||', 'here', 'we', 'go', '||period||', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'adamant', '||rightparen||', 'ah', '||comma||', "c'mon", '||exclammark||', "i'm", 'telling', 'you', '||comma||', 'i', 'can', 'coach', 'for', 'the', 'nfl', '||period||', "it's", 'not', 'that', 'hard', '||return||', '||return||', 'susan:', '||leftparen||', 'to', 'hallie', '||rightparen||', 'mmm', '||comma||', 'mm', '||comma||', 'mm', '||period||', 'hallie', '||leftparen||', 'points', 'to', 'her', 'plate', '||rightparen||', 'taste', 'this', 'fish', '||period||', "it's", 'really', 'delicious', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'that', 'might', 'be', 'the', 'stupidest', 'thing', "you've", 'ever', 'said', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'oh', '||comma||', 'get', 'outta', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'i', 'mean', '||comma||', 'come', 'on', '||period||', '||leftparen||', 'a', 'thought', 'occurs', '||rightparen||', 'no', '||comma||', 'the', 'stupidest', 'thing', 'you', 'ever', 'said', 'was', 'when', 'you', 'said', 'steve', 'kroft', 'from', 'sixty', 'minutes', 'is', 'the', 'same', 'guy', 'from', '*seals', 'and', 'croft*', '||period||', '||return||', '||return||', 'hallie:', '||leftparen||', 'to', 'susan', '||rightparen||', 'mmm', '||comma||', 'it', 'is', 'good', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'to', 'hallie', '||rightparen||', 'what', 'do', 'you', 'think', 'about', 'having', 'fish', 'for', 'the', 'wedding', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'watch', 'the', 'old', 'videos', '||period||', '||leftparen||', 'insistent', '||rightparen||', "i'm", 'telling', 'you', '||comma||', 'look', 'at', 'him', '||period||', '||return||', '||return||', 'hallie:', '||leftparen||', 'to', 'susan', '||rightparen||', 'oh', '||period||', 'remember', '||leftparen||', 'indistinct', '||rightparen||', 'wedding', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'look', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'kramer', '||rightparen||', 'this', 'is', 'nice', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'morning', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looks', 'at', 'watch', '||rightparen||', 'ten', '||dash||', 'thirty', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pleased', '||rightparen||', 'ah', '||comma||', 'see', '||period||', '||leftparen||', 'rubs', 'his', 'hands', 'together', '||rightparen||', 'i', 'got', 'the', 'whole', 'night', 'ahead', 'of', 'me', '||period||', '||leftparen||', 'looks', 'at', 'jerry', '||rightparen||', 'boy', '||comma||', "that's", 'a', 'nice', 'jacket', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'realising', '||rightparen||', 'ohh', '||comma||', 'i', "don't", 'believe', 'this', '||period||', 'i', 'forgot', 'to', 'give', 'it', 'back', '||period||', 'it', 'belongs', 'to', 'the', 'friars', 'club', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'like', 'that', 'crest', '||period||', '||leftparen||', 'he', 'shakes', 'cereal', 'into', 'the', 'bowl', '||rightparen||', 'alright', '||comma||', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'jerry:', 'breakfast', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pouring', 'cereal', '||rightparen||', 'oh', 'yeah', '||period||', 'most', 'important', 'meal', 'of', 'the', 'day', '||period||', '||return||', '||return||', 'jerry:', 'so', 'this', 'da', 'vinci', 'sleep', 'is', 'working', 'out', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enthusiastic', '||rightparen||', 'oh', '||comma||', "i'm", 'percolating', '||comma||', 'jerry', '||period||', "i'm", 'telling', 'you', '||comma||', 'i', 'have', 'never', 'felt', 'so', 'fertile', '||period||', "i'm", 'mossy', '||comma||', 'jerry', '||period||', 'my', 'brain', 'is', 'mossy', '||period||', 'listen', 'to', 'this', 'idea', '||period||', '||leftparen||', 'fetches', 'a', 'spoon', 'from', 'the', 'drawer', '||rightparen||', 'a', 'restaurant', 'that', 'serves', 'only', 'peanut', 'butter', 'and', 'jelly', '||period||', '||leftparen||', 'clicks', 'tongue', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', "d'you", 'call', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'p', 'b', 'and', "j's", '||period||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'deadpan', '||rightparen||', 'i', 'think', 'you', 'need', 'more', 'sleep', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'dismissive', '||rightparen||', 'ahh', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "how'd", 'your', 'date', 'work', 'out', 'with', 'the', 'mysterious', 'connie', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'am', 'telling', 'you', '||comma||', 'this', 'woman', 'is', 'strange', '||period||', 'she', 'never', 'wants', 'to', 'leave', 'the', 'apartment', '||period||', "it's", 'almost', 'like', 'she', "doesn't", 'wanna', 'be', 'seen', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'now', "you're", 'being', 'ridiculous', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', '||rightparen||', 'he', 'he', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'indicates', 'the', 'bowl', 'of', 'cereal', '||rightparen||', 'no', 'milk', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'hey', 'jerry', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'prodding', 'jerry', '||rightparen||', "c'mon", 'buddy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'startled', '||rightparen||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'awake', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'wha', '||period||', '||period||', '||questionmark||', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'w', '||period||', '||period||', '||period||', "it's", 'four', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'aghast', '||rightparen||', 'four', 'in', 'the', 'morning', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "what's", 'wrong', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'bored', '||period||', 'i', 'got', 'all', 'this', 'free', 'time', 'on', 'my', 'hands', '||comma||', 'i', 'dunno', 'what', 'to', 'do', '||period||', 'you', 'wanna', 'do', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'would', 'you', 'just', 'get', 'out', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'wanna', 'rent', 'a', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'ready', 'for', 'lunch', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'irked', '||rightparen||', "i'm", 'stuck', 'here', '||comma||', 'editing', 'the', 'stupid', 'catalogue', '||comma||', 'because', 'of', 'stupid', 'bob', 'grossberg', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'there', 'is', 'something', 'really', 'suspicious', 'about', 'this', 'guy', '||period||', 'every', 'time', 'mr', 'peterman', 'tries', 'to', 'assign', 'him', 'any', 'work', '||comma||', 'he', 'says', 'he', "can't", 'hear', '||comma||', 'and', 'it', 'all', 'gets', 'dumped', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', "he's", 'faking', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'but', "i'd", 'like', 'to', 'try', 'that', 'earpiece', 'on', '||comma||', 'see', 'if', "it's", 'real', '||period||', '||return||', '||return||', 'bob:', 'hey', 'elaine', '||period||', '||leftparen||', 'he', 'spots', 'jerry', '||rightparen||', 'oh', '||comma||', 'you', 'have', 'a', 'friend', '||period||', '||return||', '||return||', 'bob:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'just', 'wanted', 'to', 'say', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'bob', '||comma||', 'you', 'know', 'what', '||questionmark||', "i'm", 'kinda', 'swamped', 'here', '||period||', 'you', 'think', 'you', 'could', 'give', 'me', 'a', 'hand', 'with', 'some', 'of', 'the', 'catalogue', '||questionmark||', '||return||', '||return||', 'bob:', '||leftparen||', 'cupping', 'his', 'hand', 'behind', 'his', 'ear', '||rightparen||', 'i', '||period||', '||period||', "i'm", 'sorry', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'slower', 'and', 'louder', '||rightparen||', "i'm", 'kind', 'of', 'swamped', '||period||', '||return||', '||return||', 'bob:', 'thank', 'you', '||period||', "i'm", 'having', 'lunch', 'with', 'mr', 'p', '||period||', 'i', 'better', 'get', 'going', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'see', 'that', '||questionmark||', 'did', 'you', 'see', 'that', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'was', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'somehow', 'i', 'thought', "he'd", 'be', 'taller', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'listen', '||comma||', "we'll", 'have', 'to', 'do', 'this', 'again', 'some', 'other', 'time', '||comma||', 'okay', '||questionmark||', 'i', 'got', 'a', 'lotta', 'work', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'standing', '||rightparen||', 'alright', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'bob', '||period||', '||return||', '||return||', 'jerry:', 'bob', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'bobby', '||comma||', 'over', 'here', '||period||', '||return||', '||return||', 'jerry:', 'bob', '||period||', 'oh', '||comma||', 'bob', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'louder', '||rightparen||', 'bob', '||exclammark||', '||return||', '||return||', 'bob:', 'hi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'urgent', 'whisper', '||rightparen||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'makes', 'an', 'irked', 'noise', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'was', 'just', 'in', 'the', 'bathroom', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'really', "doesn't", 'want', 'to', 'know', '||rightparen||', 'okay', '||comma||', 'jerry', '||comma||', 'please', '||comma||', 'please', '||period||', "i'm", 'really', 'busy', 'here', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'was', 'just', 'in', 'the', 'bathroom', 'with', 'that', 'bob', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'kinda', 'tried', 'to', 'test', 'his', 'hearing', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', "what'd", 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'kinda', 'snuck', 'up', 'behind', 'him', 'at', 'the', 'urinal', 'and', 'tried', 'to', 'see', 'if', 'he', 'could', 'hear', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'hopeful', '||rightparen||', 'and', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'he', 'flinched', '||comma||', 'sort', 'of', '||period||', '||return||', '||return||', 'elaine:', 'what', "d'you", 'mean', '||comma||', 'sort', 'of', '||questionmark||', "what'd", 'he', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'he', 'kinda', 'moved', 'his', 'head', '||comma||', 'you', 'know', '||period||', 'it', 'mighta', 'been', 'on', 'the', 'zip', 'up', '||comma||', 'i', 'dunno', '||period||', '||return||', '||return||', 'elaine:', 'so', 'you', "don't", 'know', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcasm', '||rightparen||', 'alright', '||comma||', 'good', 'job', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'come', 'in', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', '||rightparen||', 'last', 'night', '||comma||', 'huh', '||questionmark||', 'was', 'that', 'something', '||comma||', 'or', 'was', 'that', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'was', 'something', '||period||', '||return||', '||return||', 'george:', 'ah', '||period||', "she's", 'great', '||comma||', "isn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'positive', '||rightparen||', 'fantastic', '||period||', 'fantastic', 'woman', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'nuts', 'about', 'her', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'she', 'could', 'be', 'an', "'it'", '||questionmark||', 'could', 'she', 'be', 'an', "'it'", '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'could', 'be', 'an', "'it'", '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'claps', 'hands', 'triumphantly', '||rightparen||', 'we', 'might', 'have', 'an', "'it'", '||exclammark||', '||return||', '||return||', 'jerry:', "she's", 'got', "'it'", 'written', 'all', 'over', 'her', '||period||', '||return||', '||return||', 'george:', "she's", 'got', 'everything', '||comma||', 'right', '||questionmark||', '||leftparen||', 'counts', 'on', 'his', 'fingers', '||rightparen||', "she's", 'intelligent', '||comma||', "she's", 'smart', '||comma||', "she's", 'got', 'a', 'great', 'sense', 'of', 'humour', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'dunno', '||period||', 'i', "didn't", 'really', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "she's", 'smart', '||period||', 'you', 'take', 'my', 'word', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'whatever', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gleeful', '||rightparen||', 'hehee', '||period||', 'w', '||period||', '||period||', 'we', 'could', 'be', 'like', 'the', 'gatsbys', '||period||', "didn't", 'they', 'always', 'like', '||comma||', 'you', 'know', '||comma||', 'a', 'bunch', 'of', 'people', 'around', '||comma||', 'and', 'they', 'were', 'all', 'best', 'friends', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', "doesn't", 'sound', 'right', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'so', '||comma||', 'tonight', "she's", 'got', 'tickets', 'for', 'that', 'show', "she's", 'been', 'working', 'on', '||period||', 'the', 'flying', 'sandos', 'brother', '||period||', '||return||', '||return||', 'jerry:', 'flying', 'sandos', '||period||', 'beautiful', '||period||', '||return||', '||return||', 'george:', 'great', '||period||', 'seven', '||dash||', 'thirty', '||comma||', 'alright', '||questionmark||', '||return||', '||return||', 'jerry:', 'walk', 'me', 'down', 'to', 'the', 'friars', '||period||', '||return||', '||return||', 'george:', 'sure', '||period||', 'so', '||comma||', 'uh', '||comma||', 'jerry', '||comma||', "there's", 'an', 'empty', 'apartment', 'in', 'my', 'building', '||period||', 'if', 'you', 'and', 'hallie', 'want', '||comma||', 'we', 'could', 'try', 'and', 'hold', 'it', '||comma||', 'may', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'here', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'th', '||period||', '||period||', 'the', 'jacket', '||comma||', "it's", 'not', 'here', '||period||', "it's", 'gotta', 'be', 'here', 'somewhere', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'boy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'thanks', 'for', 'that', 'four', 'a', '||period||', 'm', '||period||', 'wakeup', 'call', 'last', 'night', '||period||', '||leftparen||', 'frustrated', '||rightparen||', 'where', 'the', 'hell', 'is', 'that', 'jacket', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'the', 'one', 'with', 'the', 'crest', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'well', '||comma||', "that's", 'at', 'the', 'cleaners', '||period||', '||return||', '||return||', 'jerry:', 'the', 'cleaners', '||questionmark||', 'how', 'did', 'it', 'get', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'i', 'borrowed', 'it', 'last', 'night', 'and', 'it', 'got', 'a', 'little', 'dirty', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'irritated', '||rightparen||', 'great', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', 'to', 'himself', '||rightparen||', 'somehow', 'i', 'dozed', 'off', 'and', 'woke', 'up', 'in', 'a', 'pile', 'of', 'garbage', '||period||', '||return||', '||return||', 'jerry:', 'somehow', '||questionmark||', "you've", 'had', 'an', 'hour', 'and', 'twenty', 'minutes', 'sleep', 'in', 'three', 'days', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'so', '||comma||', 'look', '||comma||', 'the', 'cleaner', 'said', 'you', 'could', 'pick', 'it', 'up', 'tonight', 'at', 'six', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'i', 'just', 'hope', 'i', 'can', 'get', 'it', 'to', 'the', 'friars', 'club', 'before', 'the', 'show', '||period||', '||return||', '||return||', 'george:', "won't", 'be', 'a', 'problem', '||period||', '||period||', '||period||', '||leftparen||', 'mumbles', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'louder', '||rightparen||', 'hey', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'watch', 'out', '||comma||', 'boy', '||period||', '||return||', '||return||', 'elaine:', 'can', 'you', 'give', 'us', 'a', 'hand', 'with', 'some', 'of', 'these', 'boxes', '||comma||', 'bob', '||questionmark||', '||return||', '||return||', 'elaine:', 'bob', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sexily', '||rightparen||', 'i', 'want', 'you', 'so', 'bad', '||comma||', 'bob', '||period||', 'you', 'turn', 'me', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'so', 'much', '||period||', "you're", 'so', 'damn', '||period||', '||period||', '||period||', 'sexy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sexy', '||rightparen||', 'ohh', '||period||', "i'm", 'starting', 'to', 'unbutton', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dropping', 'the', 'sexy', 'voice', '||rightparen||', 'anything', 'getting', 'through', '||questionmark||', 'bob', '||questionmark||', '||return||', '||return||', 'hallie:', 'well', '||comma||', 'they', 'perform', 'all', 'over', '||period||', 'europe', 'mostly', '||period||', '||return||', '||return||', 'george:', 'a', '||dash||', 'ha', '||comma||', 'huh', '||period||', '||leftparen||', 'mumbles', '||rightparen||', 'tours', '||period||', '||return||', '||return||', 'hallie:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'sorry', '||comma||', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'george/susan:', 'hey', '||exclammark||', '||return||', '||return||', 'susan:', 'jerry', '||period||', '||return||', '||return||', 'george:', "isn't", 'that', 'the', 'uh', '||comma||', 'friars', 'club', 'jacket', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', "wasn't", 'ready', 'on', 'time', '||period||', 'i', 'have', 'to', 'return', 'it', 'after', 'the', 'show', '||period||', '||return||', '||return||', 'george:', 'sure', '||comma||', 'sure', '||comma||', 'sure', '||comma||', 'sure', '||period||', '||leftparen||', 'patting', 'jerry', 'on', 'the', 'shoulders', '||rightparen||', 'how', 'about', 'these', 'seats', '||questionmark||', 'are', 'these', 'fantastic', '||comma||', 'huh', '||questionmark||', 'huh', '||questionmark||', 'i', 'feel', 'like', 'lincoln', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'well', '||comma||', "let's", 'hope', 'this', 'evening', 'turns', 'out', 'a', 'little', 'better', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'uhm', '||comma||', 'are', 'you', 'sure', 'you', "don't", 'wanna', 'go', 'to', 'the', 'movies', '||questionmark||', '||return||', '||return||', 'connie:', 'mmm', '||comma||', 'no', '||comma||', 'cosmo', '||period||', 'i', 'like', 'just', 'being', 'here', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'uh', '||comma||', "it's", 'a', 'bold', 'adventure', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||period||', 'well', '||comma||', 'this', 'is', 'uh', '||comma||', 'risky', 'business', '||comma||', 'huh', '||questionmark||', "i'm", 'all', 'a', '||dash||', 'twitter', '||period||', '||return||', '||return||', 'sandos', 'brother', '1:', 'how', 'would', 'you', 'kind', 'people', 'like', 'to', 'lend', 'a', 'hand', 'with', 'our', 'next', 'trick', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', '||rightparen||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'sandos', 'brother', '1:', 'please', '||comma||', 'take', 'off', 'your', 'jacket', '||period||', '||return||', '||return||', 'jerry:', 'my', 'jacket', '||questionmark||', '||return||', '||return||', 'sandos', 'brother', '1:', 'yes', '||comma||', 'the', 'jacket', '||period||', '||leftparen||', 'turns', 'to', 'the', 'crowd', '||rightparen||', 'what', 'do', 'you', 'say', '||comma||', 'ladies', 'and', 'gentlemen', '||questionmark||', '||return||', '||return||', 'sandos', 'brother', '1:', '||leftparen||', 'to', 'jerry', '||rightparen||', "can't", 'argue', 'with', 'that', '||period||', '||return||', '||return||', 'hallie:', "c'mon", '||period||', '||return||', '||return||', 'susan:', 'do', 'it', '||period||', 'come', 'on', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'george:', 'give', 'him', 'the', 'jacket', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'giving', 'in', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'sandos', 'brother', '1:', 'and', 'now', '||comma||', 'we', 'say', 'the', 'magic', 'word', '||period||', '||leftparen||', 'gestures', 'with', 'his', 'hand', '||rightparen||', 'agrabah', '||exclammark||', 'and', 'we', 'make', 'it', 'disappear', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'passionate', '||rightparen||', 'oh', 'cosmo', '||period||', 'mm', '||dash||', 'mmm', '||comma||', 'cosmo', '||period||', 'oh', 'cosmo', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'uncomfortable', '||rightparen||', 'uh', '||comma||', 'honey', '||comma||', 'can', 'you', 'move', 'a', 'little', '||comma||', 'this', 'hurts', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'worried', '||rightparen||', 'cosmo', '||questionmark||', '||return||', '||return||', 'connie:', '||leftparen||', 'panicky', '||rightparen||', 'oh', 'my', 'god', '||period||', 'cosmo', '||comma||', 'wake', 'up', '||exclammark||', '||return||', '||return||', 'connie:', 'cosmo', '||questionmark||', '||return||', '||return||', 'connie:', '||leftparen||', 'horrified', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', "he's", 'dead', '||exclammark||', "he's", 'dead', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'into', 'phone', '||rightparen||', 'yeah', '||comma||', 'tommy', '||comma||', 'this', 'is', 'connie', '||period||', 'you', 'gotta', 'help', 'me', '||period||', 'some', 'guy', 'dropped', 'dead', 'on', 'top', 'of', 'me', '||period||', '||leftparen||', 'listens', '||rightparen||', 'i', "can't", 'call', 'the', 'cops', '||comma||', "'cos", 'joey', 'might', 'find', 'out', '||period||', '||leftparen||', 'listens', '||rightparen||', 'i', "can't", '||period||', "i'm", 'stuck', '||period||', 'you', 'gotta', 'help', 'me', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'very', 'exciting', '||period||', 'the', 'inner', 'sanctum', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'i', '||period||', '||period||', 'i', 'was', 'in', 'the', 'audience', 'earlier', '||period||', 'you', 'threw', 'my', 'jacket', 'down', '||period||', 'i', 'just', 'wanted', 'to', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'sandos', 'brother', '2:', 'jacket', '||questionmark||', 'what', 'jacket', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'explaining', '||rightparen||', 'i', 'had', 'a', 'jacket', 'with', 'a', 'crest', 'on', 'it', '||period||', 'you', 'came', 'into', 'the', 'audience', '||comma||', 'you', 'threw', 'it', 'away', '||period||', 'agrabah', '||period||', '||return||', '||return||', 'sandos', 'brother', '2:', 'a', '||period||', '||period||', 'are', 'you', 'sure', 'it', 'was', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'was', 'either', 'you', 'or', 'one', 'of', 'your', 'brothers', '||period||', '||return||', '||return||', 'sandos', 'brother', '2:', 'well', '||comma||', 'two', 'of', 'them', 'have', 'left', 'already', '||period||', '||return||', '||return||', 'sandos', 'brother', '2:', '||leftparen||', 'shaking', 'his', 'head', 'apologetically', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'it', "doesn't", 'even', 'belong', 'to', 'me', '||period||', 'it', 'belongs', 'to', 'the', 'friars', 'club', '||period||', '||return||', '||return||', 'sandos', 'brother', '2:', 'sorry', '||period||', '||return||', '||return||', 'hallie:', 'jerry', '||comma||', "i'm", 'sure', "it'll", 'turn', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cynical', '||rightparen||', "i'm", 'sure', 'it', "won't", '||period||', '||return||', '||return||', 'hallie:', "don't", 'worry', '||period||', "i'll", 'get', 'the', 'jacket', 'back', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'cheerful', '||rightparen||', 'alright', '||comma||', 'there', 'you', 'go', '||period||', "she's", 'gonna', 'get', 'the', 'jacket', 'back', '||period||', '||leftparen||', 'claps', 'hands', '||rightparen||', 'so', '||comma||', "let's", 'go', 'get', 'some', 'coffee', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'downcast', '||rightparen||', 'no', '||comma||', "i'm", 'a', 'little', 'tired', '||period||', 'i', 'think', "i'll", 'go', 'home', '||period||', '||return||', '||return||', 'susan:', 'aww', '||comma||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "we'll", 'do', 'it', 'another', 'time', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'bright', '||rightparen||', 'george', '||comma||', "we'll", 'go', '||period||', '||return||', '||return||', 'george:', 'i', '||comma||', 'uh', '||comma||', 'oh', '||comma||', 'broke', 'a', 'shoelace', 'today', '||period||', '||return||', '||return||', 'susan:', 'oh', '||comma||', 'i', 'can', 'get', 'you', 'shoelaces', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'susan:', 'so', '||comma||', 'what', 'colour', '||questionmark||', '||return||', '||return||', 'george:', 'brown', '||period||', '||return||', '||return||', 'george:', 'maybe', 'a', 'black', '||period||', '||return||', '||return||', 'susan:', 'mmm', '||period||', '||return||', '||return||', 'waitress:', 'more', 'coffee', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'urgent', '||rightparen||', 'no', '||exclammark||', 'check', '||exclammark||', '||leftparen||', 'quieter', '||rightparen||', 'please', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'after', 'the', 'guys', '||rightparen||', 'that', 'nut', 'is', 'always', 'up', 'to', 'something', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||exclammark||', 'sh', '||period||', '||period||', '||exclammark||', 'shii', '||exclammark||', 'mama', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'aah', '||exclammark||', 'aagh', '||exclammark||', '||return||', '||return||', 'peterman:', 'elaine', '||period||', 'i', 'think', "i've", 'been', 'working', 'you', 'a', 'little', 'too', 'hard', '||comma||', 'lately', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrugging', 'it', 'off', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'peterman:', 'so', '||comma||', 'i', 'have', 'two', 'tickets', 'for', 'you', '||leftparen||', 'holds', 'up', 'the', 'bits', 'of', 'card', '||rightparen||', 'to', 'the', 'flying', 'sandos', 'brothers', 'magic', 'show', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pleased', '||rightparen||', 'ah', '||period||', '||return||', '||return||', 'peterman:', 'it', 'is', 'a', 'real', 'hoot', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'delighted', '||rightparen||', 'well', '||comma||', 'thank', 'you', 'mr', 'peterman', '||period||', '||return||', '||return||', 'peterman:', 'ah', '||comma||', 'the', 'tickets', 'are', 'for', 'tonight', '||period||', 'so', 'you', 'and', 'bob', 'can', 'knock', 'off', 'a', 'little', 'early', '||comma||', 'so', 'you', 'both', 'can', 'get', 'ready', '||period||', '||return||', '||return||', 'elaine:', 'mr', 'peterman', '||comma||', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'interrupting', '||rightparen||', "there's", 'no', 'need', 'to', 'deny', 'it', '||comma||', 'elaine', '||period||', 'i', 'heard', 'every', 'word', 'you', 'said', '||period||', '||return||', '||return||', 'peterman:', 'and', 'i', 'know', 'you', "wouldn't", 'be', 'just', 'having', 'fun', 'with', 'his', 'handicap', '||period||', '||leftparen||', 'staring', 'away', '||rightparen||', 'that', 'kind', 'of', 'cruelty', 'would', 'be', 'grounds', 'for', 'dismissal', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'resigned', '||rightparen||', 'of', 'course', '||comma||', 'mr', 'peterman', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'tell', "'em", "i'll", 'come', 'down', 'and', 'talk', 'to', "'em", '||period||', 'okay', '||comma||', 'bye', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'well', '||comma||', 'that', 'was', 'the', 'friars', 'club', '||period||', "d'you", 'think', "they're", 'gonna', 'let', 'a', 'jacket', '||dash||', 'stealer', 'join', '||questionmark||', 'i', "don't", 'think', 'so', '||exclammark||', "they're", 'gonna', 'charge', 'me', 'eight', 'hundred', 'dollars', 'for', 'the', 'jacket', '||comma||', 'and', 'i', 'gotta', 'deal', 'with', 'pat', 'cooper', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'worked', 'up', '||rightparen||', 'wh', '||period||', '||period||', 'what', 'kinda', 'show', 'is', 'that', 'sandos', 'brothers', '||questionmark||', 'they', 'take', 'your', 'jacket', '||comma||', 'then', 'they', 'just', 'throw', 'it', '||questionmark||', 'i', 'never', 'heard', 'of', 'that', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'a', 'little', 'unusual', '||period||', 'so', '||comma||', 'uh', '||comma||', 'susan', 'and', 'i', 'were', 'thinking', '||comma||', 'uh', '||comma||', 'dinner', 'at', 'our', 'house', 'saturday', 'night', '||period||', 'just', 'the', 'four', 'of', 'us', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unenthusiastic', '||rightparen||', 'uhh', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'worried', '||rightparen||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'impassive', '||rightparen||', 'ah', '||comma||', "i'm", 'a', 'little', 'turned', 'off', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', '||rightparen||', "c'mon", '||comma||', "what're", 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'ahh', '||comma||', "i'm", '||comma||', "i'm", 'kinda', 'soured', '||period||', '||return||', '||return||', 'george:', "you're", 'soured', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'soured', '||period||', '||return||', '||return||', 'george:', "don't", 'be', 'soured', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', "i'm", 'soured', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', "what're", 'you', 'kidding', 'me', '||questionmark||', 'we', 'were', 'all', 'getting', 'along', 'so', 'well', '||period||', 'where', 'is', 'all', 'this', 'coming', 'from', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'know', '||comma||', 'frankly', '||comma||', 'i', "don't", 'think', 'she', 'was', 'too', 'concerned', 'about', 'my', 'jacket', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', "what're", 'you', 'talking', 'about', '||questionmark||', '||exclammark||', "she's", 'very', 'concerned', '||exclammark||', 'she', 'said', 'she', 'was', 'gonna', 'get', 'it', 'back', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'indifferent', '||rightparen||', 'yeah', '||comma||', "we'll", 'see', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'worked', 'up', '||rightparen||', 'because', 'if', 'she', 'gets', 'it', 'back', '||comma||', 'then', "you'll", 'have', 'no', 'reason', 'to', 'be', 'sour', '||period||', "you'll", 'de', '||dash||', 'sour', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'try', 'and', 'de', '||dash||', 'sour', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'aggravated', '||rightparen||', 'oh', '||comma||', "that's", 'not', 'good', 'enough', '||exclammark||', 'you', "don't", 'try', 'and', 'de', '||dash||', 'sour', '||period||', 'you', 'have', 'to', 'sweeten', 'too', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sharp', '||rightparen||', "i'll", 'try', '||exclammark||', "i'll", 'try', 'and', 'de', '||dash||', 'sour', 'and', 'sweeten', '||period||', '||return||', '||return||', 'george:', 'i', 'wanna', 'get', 'it', 'back', 'when', 'we', 'were', 'the', 'gatsbys', '||period||', '||return||', '||return||', 'jerry:', 'i', 'still', "don't", 'know', 'what', 'that', 'means', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'neither', 'does', 'he', '||rightparen||', 'yeah', '||comma||', 'well', '||period||', '||return||', '||return||', 'kramer:', 'god', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'astonished', '||rightparen||', 'oh', 'god', '||exclammark||', 'what', 'happened', 'to', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'animated', '||rightparen||', 'she', 'tried', 'to', 'kill', 'me', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouts', '||rightparen||', 'connie', '||exclammark||', '||return||', '||return||', 'jerry:', "what'd", 'she', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||exclammark||', '||leftparen||', 'building', 'to', 'a', 'shout', '||rightparen||', 'but', 'i', 'woke', 'up', 'in', 'the', 'hudson', 'river', 'in', 'a', 'sack', '||exclammark||', '||exclammark||', 'i', 'think', 'she', 'drugged', 'me', '||comma||', 'but', "she's", 'a', 'murderer', 'and', "i'm", 'calling', 'the', 'cops', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bewildered', '||rightparen||', 'why', 'would', 'she', 'try', 'and', 'kill', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'animated', '||rightparen||', 'well', '||comma||', "isn't", 'it', 'obvious', '||questionmark||', 'she', "doesn't", 'want', 'anybody', 'else', 'to', 'have', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'door', '||rightparen||', 'gah', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "there's", 'uncle', 'milty', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleased', '||rightparen||', 'yeah', '||comma||', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', 'and', "there's", 'david', 'steinberg', '||period||', '||return||', '||return||', 'george:', 'the', 'comedian', '||comma||', 'or', 'the', 'manager', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'manager', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', '||comma||', "there's", 'pat', '||period||', '||leftparen||', 'calls', '||rightparen||', 'hey', '||comma||', 'pat', '||period||', '||return||', '||return||', 'pat:', 'hey', '||comma||', 'jerry', '||period||', 'what', 'the', 'hell', 'went', 'wrong', '||questionmark||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'are', 'you', 'a', 'kleptomaniac', '||comma||', 'or', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'forgot', 'to', 'take', 'it', 'off', '||period||', '||return||', '||return||', 'pat:', '||leftparen||', 'dubious', '||rightparen||', 'you', 'forgot', 'to', 'take', 'it', 'off', '||questionmark||', 'oh', '||comma||', 'you', 'go', 'into', 'a', 'department', 'store', '||comma||', 'you', 'put', 'a', 'suit', 'on', '||comma||', 'and', 'you', 'walk', 'right', 'out', '||period||', 'what', 'are', 'you', 'some', 'sort', 'of', 'an', 'idiot', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'pat:', "where's", 'the', 'jacket', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'one', 'of', 'the', 'gypsies', 'took', 'it', '||period||', '||return||', '||return||', 'pat:', '||leftparen||', 'skeptical', '||rightparen||', 'aww', '||comma||', 'the', 'gypsies', 'took', 'it', '||exclammark||', 'of', 'course', '||comma||', 'new', 'york', 'has', 'a', 'lot', 'of', 'gypsies', '||exclammark||', 'oh', '||comma||', 'on', 'every', 'block', "there's", 'a', 'gypsy', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'meekly', '||rightparen||', 'well', '||comma||', "it's", 'true', '||period||', 'i', 'saw', 'it', '||period||', '||return||', '||return||', 'pat:', '||leftparen||', 'probing', '||rightparen||', 'excuse', 'me', '||comma||', 'are', 'you', 'an', 'entertainer', '||questionmark||', 'are', 'you', 'in', 'showbusiness', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'pat:', '||leftparen||', 'interrupting', '||rightparen||', 'then', 'what', 'am', 'i', 'talking', 'to', 'you', 'for', '||questionmark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'jerry', '||comma||', 'bring', 'the', 'jacket', 'back', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', '||return||', '||return||', 'george:', 'look', 'at', 'that', 'guy', '||period||', 'right', 'there', '||period||', "isn't", 'that', 'the', 'guy', 'from', 'the', 'show', '||questionmark||', "he's", '||period||', '||period||', "he's", 'wearing', 'the', 'jacket', '||period||', '||return||', '||return||', 'jerry:', 'god', '||comma||', "you're", 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'motioning', 'jerry', 'to', 'follow', '||rightparen||', "c'mon", '||period||', '||return||', '||return||', 'maitre', "d':", 'wait', 'a', 'second', '||exclammark||', 'excuse', 'me', 'gentlemen', '||comma||', 'are', 'you', 'members', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'a', 'prospective', 'member', '||period||', '||return||', '||return||', 'maitre', "d':", 'until', 'then', '||comma||', '||leftparen||', 'pointing', '||rightparen||', "that's", 'the', 'way', 'out', '||period||', '||return||', '||return||', 'jerry:', 'but', 'that', 'guy', 'has', 'my', 'jacket', '||period||', '||return||', '||return||', 'maitre', "d':", "c'mon", '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'the', 'guy', 'is', 'wearing', 'a', 'jacket', 'that', 'my', 'friend', 'is', '||period||', '||period||', '||period||', '||return||', '||return||', 'maitre', "d':", 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||return||', '||return||', 'maitre', "d':", "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'if', 'i', 'could', 'talk', 'to', 'the', 'guy', 'for', 'just', 'a', 'sec', '||period||', '||period||', '||period||', '||return||', '||return||', 'bob:', 'these', 'seats', 'are', 'fantastic', '||period||', 'it', 'was', 'really', 'nice', 'of', 'mr', 'peterman', 'to', 'give', 'us', 'these', 'tickets', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'flat', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', 'was', 'nice', '||period||', '||return||', '||return||', 'bob:', '||leftparen||', 'smiling', '||rightparen||', 'yeah', '||period||', 'got', 'our', 'own', 'little', 'private', 'box', 'here', '||comma||', "don't", 'we', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pushing', 'bob', 'away', '||rightparen||', 'get', 'offa', 'me', '||exclammark||', 'stop', 'it', '||period||', 'stop', 'it', '||period||', '||return||', '||return||', 'elaine:', 'get', 'offa', 'me', '||exclammark||', '||return||', '||return||', 'elaine:', 'get', 'a', 'hold', 'of', 'yourself', '||comma||', 'bob', '||exclammark||', '||leftparen||', 'throwing', 'bob', 'back', 'between', 'the', 'seats', '||rightparen||', 'get', 'a', 'hold', 'of', 'yourself', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', 'how', 'that', 'guy', 'gave', 'us', 'the', 'slip', 'at', 'the', 'friars', 'club', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'you', '||comma||', 'he', 'probably', 'went', 'out', 'the', 'back', '||period||', '||return||', '||return||', 'jerry:', 'ouf', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "it's", 'you', '||exclammark||', '||leftparen||', 'pointing', '||rightparen||', 'th', '||period||', '||period||', "that's", 'my', 'friars', 'club', 'jacket', '||exclammark||', '||return||', '||return||', 'sandos', 'brother', '1:', 'no', '||comma||', 'it', 'is', 'not', '||period||', 'it', 'is', 'my', 'jacket', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'adamant', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "that's", 'my', 'jacket', '||comma||', 'give', 'it', 'back', '||period||', '||return||', '||return||', 'sandos', 'brother', '1:', 'no', '||comma||', 'it', 'is', 'not', '||period||', 'this', 'is', 'mine', '||period||', '||return||', '||return||', 'jerry:', "c'mon", 'i', 'need', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'determined', '||rightparen||', 'i', 'wanna', 'join', '||period||', 'i', 'need', 'it', 'to', 'become', 'a', 'member', '||period||', '||return||', '||return||', 'george:', 'give', "'im", 'the', 'jacket', 'already', '||exclammark||', '||return||', '||return||', 'sandos', 'brother', '1:', '||leftparen||', 'yelling', '||rightparen||', 'help', '||exclammark||', 'help', '||exclammark||', '||leftparen||', 'foreign', 'language', '||rightparen||', 'azobar', '||exclammark||', 'azobar', 'disay', '||exclammark||', '||return||', '||return||', 'george:', "what's", 'he', 'yelling', 'about', '||questionmark||', "they're", 'stealing', 'jackets', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'can', 'you', 'believe', 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'examining', '||rightparen||', 'hey', 'george', '||comma||', 'you', 'know', 'what', '||questionmark||', 'i', 'think', 'this', 'crest', 'is', 'different', '||period||', "it's", 'got', 'a', 'moose', 'on', 'it', '||period||', '||return||', '||return||', 'george:', 'moose', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'subdued', '||rightparen||', 'i', "don't", 'think', 'this', 'is', 'the', 'jacket', '||period||', '||return||', '||return||', 'hallie:', 'no', '||comma||', "it's", 'not', '||period||', '||return||', '||return||', 'hallie:', 'this', 'is', 'the', 'jacket', '||period||', '||return||', '||return||', 'jerry:', 'ohh', '||comma||', 'you', 'got', 'the', 'jacket', 'back', '||period||', '||return||', '||return||', 'george:', 'ohh', '||comma||', 'yeahh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'the', 'jacket', '||rightparen||', 'thank', 'you', '||period||', '||return||', '||return||', 'hallie:', 'it', 'got', 'a', 'little', 'dirty', '||comma||', 'so', 'they', 'wanted', 'to', 'clean', 'it', 'before', 'they', 'gave', 'it', 'back', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'smiling', '||rightparen||', 'oh', '||comma||', "that's", 'nice', 'of', "'em", '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'that', 'is', 'really', 'nice', '||period||', '||return||', '||return||', 'hallie:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'hallie:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'yeahh', '||period||', '||return||', '||return||', 'hallie:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'forced', 'buoyancy', '||rightparen||', 'hey', '||comma||', 'you', 'know', '||comma||', "let's", 'call', 'susan', '||comma||', "we'll", 'go', 'have', 'coffee', '||period||', '||return||', '||return||', 'hallie:', '||leftparen||', 'flat', '||rightparen||', "i'll", 'see', 'you', 'at', 'the', 'wedding', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'moody', '||rightparen||', 'great', '||exclammark||', 'now', "she's", 'sour', '||exclammark||', '||return||', '||return||', 'jerry:', 'maybe', "she'll", 'sweeten', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', '||rightparen||', 'she', "won't", 'sweeten', '||comma||', 'and', "i'm", 'bitter', '||exclammark||', '||return||', '||return||', 'sandos', 'brother', '1:', '||leftparen||', 'pointing', '||rightparen||', 'there', 'they', 'are', '||exclammark||', '||return||', '||return||', 'george:', 'here', '||period||', '||leftparen||', 'panicky', '||rightparen||', "we'll", 'leave', 'it', 'here', 'for', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', '||rightparen||', "that's", 'her', '||comma||', 'officer', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'shocked', '||rightparen||', 'kramer', '||exclammark||', 'oh', 'my', 'god', '||comma||', 'i', 'thought', 'you', 'were', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'animated', '||rightparen||', 'what', '||questionmark||', 'sleeping', 'with', 'the', 'fishes', '||questionmark||', 'i', 'guess', 'i', 'woke', 'up', '||exclammark||', '||return||', '||return||', 'detective:', "you're", 'under', 'arrest', 'for', 'the', 'attempted', 'murder', 'of', 'cosmo', 'kramer', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'defensive', '||rightparen||', 'i', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'yeah', '||exclammark||', 'yeah', '||exclammark||', '||return||', '||return||', 'detective:', 'get', 'your', 'coat', '||comma||', 'we', 'gotta', 'take', 'you', 'in', '||period||', '||return||', '||return||', 'connie:', 'can', 'i', 'call', 'my', 'lawyer', '||questionmark||', '||return||', '||return||', 'detective:', 'okay', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'connie:', '||leftparen||', 'on', 'phone', '||rightparen||', 'you', 'gotta', 'meet', 'me', 'at', 'the', 'police', 'station', '||period||', "they're", 'arresting', 'me', 'for', 'attempted', 'murder', '||period||', '||return||', '||return||', 'jackie:', 'attempted', 'murder', '||questionmark||', 'of', 'whom', '||questionmark||', '||return||', '||return||', 'connie:', 'this', 'guy', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'jackie:', 'oh', '||period||', '||leftparen||', 'hesitantly', '||rightparen||', 'cosmo', 'kramer', '||questionmark||', '||return||', '||return||', 'connie:', '||leftparen||', 'surprised', '||rightparen||', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'jackie:', '||leftparen||', 'adamant', '||rightparen||', 'i', "don't", 'want', 'nothing', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'looking', 'for', 'a', 'crested', 'blazer', '||return||', '||return||', 'craig:', 'a', 'crested', 'blazer', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i've", 'worn', 'one', 'once', 'and', 'i', 'really', 'think', 'it', 'did', 'something', 'for', 'me', '||period||', '||return||', '||return||', 'craig:', '||leftparen||', 'turning', 'around', '||rightparen||', 'yes', '||period||', 'i', 'think', 'we', 'may', 'have', 'something', '||period||', '||leftparen||', 'picks', 'up', 'a', 'blazer', '||rightparen||', 'the', 'joseph', 'aboud', 'crested', 'blazer', 'is', 'the', 'finest', '||period||', '||period||', '||period||', '||period||', "that's", 'hand', 'ticking', 'around', 'the', 'crest', 'and', 'these', 'are', 'the', 'world', 'famous', 'corriso', 'buttons', 'made', 'from', 'the', 'finest', 'andulo', 'corn', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'softly', '||rightparen||', 'hmm', '||period||', '||period||', "they'll", 'match', 'my', 'sneakers', '||period||', '||return||', '||return||', 'craig:', 'it', 'looks', 'fabulous', 'on', 'you', '||period||', '||period||', '||period||', 'shall', 'i', 'wrap', 'it', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||period||', '||period||', '||period||', "i'm", 'not', 'sure', '||period||', "i'll", 'tell', 'you', 'what', '||period||', "i'll", 'come', 'back', 'later', 'with', 'someone', 'and', 'see', 'what', 'they', 'think', '||period||', '||return||', '||return||', 'craig:', '||leftparen||', 'doubtful', '||rightparen||', 'a', 'hum', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'craig:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'i', "didn't", 'like', 'the', 'crest', 'all', 'that', 'much', '||period||', '||comma||', 'but', 'the', 'guy', 'spent', 'fifteen', 'minutes', 'with', 'me', 'so', 'to', 'get', 'out', 'of', 'the', 'store', 'i', 'told', 'i', 'wanted', 'to', 'see', 'what', 'someone', 'else', 'thought', '||period||', '||period||', '||period||', '||period||', 'and', 'then', 'he', 'makes', 'a', 'face', 'like', 'he', "doesn't", 'believe', 'me', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', 'so', 'he', 'knew', 'that', 'you', 'were', 'making', 'it', 'up', '||period||', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||period||', '||period||', 'he', 'caught', 'me', 'so', "here's", 'what', 'i', 'want', 'you', 'to', 'do', '||period||', 'come', 'back', 'with', 'me', 'to', 'the', 'store', 'and', "we'll", 'pretend', 'to', 'look', 'at', 'the', 'coat', '||period||', '||return||', '||return||', 'elaine:', "that's", 'ridiculous', '||period||', 'why', 'do', 'do', 'you', 'want', 'to', 'go', 'back', 'there', 'if', 'you', "don't", 'want', 'the', 'coat', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'he', 'thinks', 'i', 'was', 'lying', 'and', 'i', 'want', 'to', 'show', 'him', 'i', "wasn't", '||period||', '||return||', '||return||', 'elaine:', 'but', 'you', 'were', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'if', 'you', 'go', 'back', 'with', 'me', '||comma||', 'then', "i'm", 'not', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'on', 'the', 'phone', '||rightparen||', 'all', 'right', 'fine', '||period||', '||period||', '||period||', '||period||', 'whatever', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'problems', 'with', 'the', 'house', 'guest', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'house', 'guest', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'friend', 'of', "susan's", 'is', 'staying', 'with', 'us', 'for', 'two', 'weeks', '||period||', '||period||', '||period||', 'now', 'am', 'i', 'wrong', 'or', 'is', 'that', 'excessive', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'bob', 'sacamano', 'he', 'stayed', 'with', 'me', 'once', 'for', 'a', 'year', 'and', 'a', 'half', '||period||', '||return||', '||return||', 'elaine:', 'who', 'is', 'he', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'a', 'wig', 'master', '||return||', '||return||', 'elaine:', 'what', 'is', 'a', 'wig', 'master', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'with', 'the', 'touring', 'company', 'of', 'joseph', 'and', 'the', 'amazing', 'technicolor', 'dreamcoat', '||period||', "he's", 'the', 'guy', 'in', 'charge', 'of', 'the', 'wigs', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||period||', '||period||', 'imagine', '||period||', '||period||', 'liking', 'wigs', 'to', 'the', 'point', 'it', 'becomes', 'a', 'career', 'choice', '||period||', '||return||', '||return||', 'kramer:', 'about', 'some', 'tickets', 'george', '||comma||', 'you', 'know', "i'd", 'kill', 'for', 'a', 'peek', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', '||rightparen||', 'yeah', '||comma||', 'sure', '||comma||', 'sure', '||comma||', '||comma||', '||comma||', 'i', 'got', 'to', 'drop', 'my', 'car', 'off', 'at', 'the', 'new', 'lot', '||period||', '||return||', '||return||', 'kramer:', 'euh', 'what', '||period||', '||period||', '||period||', 'what', 'lot', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'jiffy', 'park', '||period||', "it's", 'incredible', '||period||', '||period||', 'seventy', '||dash||', 'five', 'dollars', 'a', 'month', '||period||', '||return||', '||return||', 'kramer:', 'seventy', '||dash||', 'five', 'bucks', 'a', 'month', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', 'and', 'you', 'get', 'this', 'really', 'cool', 't', '||dash||', 'shirt', 'when', 'you', 'sign', 'on', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', "i'm", 'down', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'proud', 'of', 'himself', '||rightparen||', 'remember', 'me', '||questionmark||', 'i', 'said', 'i', "'d", 'come', 'back', 'with', 'someone', 'and', 'i', 'did', '||period||', 'surprised', '||questionmark||', '||period||', '||return||', '||return||', 'craig:', 'no', 'i', 'believed', 'you', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||period||', 'well', 'elaine', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'up', 'to', 'the', 'salesman', '||rightparen||', '||return||', '||return||', 'craig:', 'oh', '||exclammark||', '||period||', '||period||', '||period||', 'hello', "i'm", 'craig', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', '||period||', '||period||', 'hi', '||period||', '||return||', '||return||', 'craig:', 'well', '||leftparen||', 'picks', 'up', 'the', 'blazer', 'again', '||rightparen||', 'here', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', 'joseph', 'aboud', '||period||', '||period||', 'and', 'look', 'at', 'this', 'hand', 'ticking', 'around', 'the', 'crest', '||period||', '||return||', '||return||', 'craig:', 'you', 'know', 'your', 'coats', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', "i'm", 'in', 'the', 'biz', '||period||', '||period||', 'i', 'work', 'for', 'j', '||period||', 'peterman', '||period||', '||return||', '||return||', 'craig:', 'i', 'love', 'j', '||period||', 'peterman', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'giggling', '||rightparen||', 'ohhh', '||exclammark||', '||exclammark||', '||period||', '||return||', '||return||', 'craig:', 'i', 'especially', 'enjoy', 'the', 'catalogue', '||comma||', 'those', 'fanciful', 'narratives', 'really', 'take', 'me', 'away', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ohhh', '||exclammark||', '||exclammark||', 'really', '||period||', '||period||', 'well', 'you', 'know', 'what', '||comma||', 'i', 'write', 'those', '||period||', '||return||', '||return||', 'craig:', 'no', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeeeahh', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'impatiently', 'cutting', 'in', '||rightparen||', 'hey', 'elaine', 'what', 'about', 'the', 'crest', '||period||', '||questionmark||', 'what', "d'you", 'think', 'of', 'the', 'crest', 'here', '||period||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', "it's", 'great', '||period||', 'i', 'think', 'you', 'should', 'get', 'it', '||period||', '||return||', '||return||', 'craig:', 'well', '||period||', '||period||', '||period||', '||period||', 'will', 'it', 'be', 'check', 'or', 'credit', 'card', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'giving', 'up', '||rightparen||', 'check', '||period||', '||return||', '||return||', 'craig:', "i'll", 'need', 'you', 'to', 'write', 'down', 'your', 'phone', 'number', 'on', 'the', 'check', 'for', 'me', '||period||', '||leftparen||', 'turning', 'to', 'elaine', '||rightparen||', 'perhaps', 'you', 'could', 'do', 'the', 'same', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', 'and', 'giggles', 'like', 'a', 'schoolgirl', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', "weren't", 'supposed', 'to', 'say', 'that', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', 'really', 'did', 'like', 'it', '||return||', '||return||', 'jerry:', "that's", 'not', 'the', 'point', '||period||', 'you', 'put', 'me', 'in', 'a', 'position', 'where', 'i', 'had', 'no', 'choice', '||period||', '||return||', '||return||', 'elaine:', 'uhn', '||period||', '||period||', '||period||', 'sorry', '||exclammark||', '||return||', '||return||', 'jerry:', 'and', 'what', 'about', 'that', 'guy', 'asking', 'you', 'out', 'right', 'in', 'front', 'of', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'the', 'big', 'deal', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', "'s", 'very', 'emasculating', '||comma||', 'he', "doesn't", 'know', 'the', 'nature', 'of', 'our', 'relationship', '||period||', "you're", 'there', 'approving', 'new', 'clothes', '||period||', '||period||', '||period||', '||period||', '||period||', "that's", 'a', 'girlfriend', 'job', '||exclammark||', 'how', 'dare', 'he', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'he', 'dared', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'ethan:', '||leftparen||', 'sitting', 'in', 'the', 'couch', 'and', 'combing', 'his', 'wigs', '||rightparen||', 'hi', 'george', '||period||', '||period||', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'good', '||period||', '||period||', '||period||', '||period||', 'good', 'day', '||leftparen||', 'not', 'too', 'convincing', '||rightparen||', 'you', '||questionmark||', '||return||', '||return||', 'ethan:', 'i', 'am', 'getting', 'so', 'much', 'work', 'done', '||period||', '||period||', '||period||', '||period||', '||period||', 'see', '||questionmark||', '||return||', '||return||', 'george:', 'very', 'nice', '||return||', '||return||', 'susan:', '||leftparen||', 'walks', 'in', '||rightparen||', 'hi', 'sweety', 'how', 'was', 'your', 'day', '||questionmark||', '||return||', '||return||', 'ethan:', 'i', 'already', 'ask', 'him', 'that', '||period||', 'he', 'said', 'good', '||period||', '||period||', '||period||', 'good', 'day', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'frantically', 'pulling', 'at', 'his', 'doorknob', '||rightparen||', 'thank', 'god', "you're", 'home', '||period||', "i'm", 'wiped', 'out', '||period||', 'i', 'drop', 'my', 'car', 'at', 'jiffy', 'park', 'and', 'i', 'forgot', 'to', 'take', 'my', 'apartment', 'keys', 'off', 'the', 'ring', '||period||', 'so', 'you', 'got', 'my', 'spare', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', 'gave', 'it', 'back', 'to', 'you', '||return||', '||return||', 'kramer:', "y'did", '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'phfwelll', '||period||', 'look', '||period||', '||period||', 'hum', '||period||', '||period||', '||period||', '||period||', '||period||', 'can', 'you', 'take', 'me', 'over', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'come', 'on', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'come', 'on', 'jerry', '||comma||', "it's", 'all', 'the', 'way', 'over', 'to', 'twelfth', 'avenue', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'didn', '||comma||', 't', 'tell', 'you', 'to', 'park', 'in', 'that', 'lot', '||period||', '||period||', 'now', "someone's", 'gonna', 'have', 'to', 'drive', 'you', 'every', 'time', 'you', 'need', 'your', 'car', '||period||', '||questionmark||', 'take', 'the', 'bus', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'not', 'going', 'to', 'take', 'the', 'bus', "that's", 'why', 'i', 'got', 'a', 'car', '||exclammark||', '||return||', '||return||', 'jerry:', 'forget', 'it', '||period||', '||return||', '||return||', 'kramer:', 'awright', "i'm", 'gonna', 'get', 'george', 'to', 'pick', 'me', 'up', '||period||', '||return||', '||return||', 'jerry:', 'he', 'wont', 'take', 'ya', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'grabs', 'the', 'phone', 'quick', '||rightparen||', 'got', 'it', '||comma||', 'got', 'it', '||comma||', '||period||', '||period||', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'can', 'you', 'take', 'me', 'over', 'to', 'the', 'jiffy', 'park', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||exclammark||', '||exclammark||', "i'll", 'pick', 'you', 'up', 'right', 'now', '||period||', '||period||', '||period||', '||period||', '||period||', 'all', 'right', 'all', 'right', '||period||', '||period||', '||period||', '||period||', 'hey', '||exclammark||', 'gotta', 'go', '||period||', '||return||', '||return||', 'george:', 'so', 'the', 'wig', 'master', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'the', 'wig', 'master', 'said', 'you', 'could', 'stop', 'by', 'the', 'theater', 'tonight', '||period||', '||period||', 'and', "he'll", 'show', 'you', 'around', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'pick', 'a', 'station', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'like', "'em", 'all', '||leftparen||', 'still', 'fiddles', 'with', 'the', 'radio', '||rightparen||', '||return||', '||return||', 'george:', 'aw', 'great', '||period||', 'now', 'the', 'volume', 'knob', 'fell', 'off', '||return||', '||return||', 'kramer:', '||leftparen||', 'seems', 'to', 'pickup', 'something', 'on', 'the', 'floor', '||rightparen||', '||period||', '||period||', '||period||', '||period||', "'s'this", '||questionmark||', '||return||', '||return||', 'kramer:', 'gawd', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'a', '||period||', '||period||', '||period||', '||period||', 'ca', '||period||', '||period||', '||period||', '||period||', '||period||', 'ca', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'condom', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'like', 'working', 'there', 'at', 'the', '||period||', '||period||', '||period||', '||period||', 'hum', '||period||', '||period||', '||period||', 'andover', 'shop', '||questionmark||', 'i', 'mean', "it's", 'a', 'pretty', 'swanky', 'upscale', 'clientele', '||period||', '||return||', '||return||', 'craig:', 'hmmm', '||return||', '||return||', 'elaine:', 'except', 'for', 'jerry', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'craig:', 'so', 'did', 'you', 'see', 'anything', "you'd", 'like', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'craig:', 'cause', 'i', 'can', 'get', 'you', 'a', 'considerable', 'discount', '||period||', '||return||', '||return||', 'elaine:', 'really', '||exclammark||', '||period||', '||period||', '||period||', 'well', 'actually', 'yeah', 'i', 'did', 'see', 'this', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "'mazing", 'little', 'black', 'dress', '||period||', '||period||', '||period||', 'it', 'was', 'sleeveless', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'craig:', 'the', 'nicole', 'miller', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'craig:', "i'll", 'take', 'care', 'of', 'it', '||period||', '||return||', '||return||', 'elaine:', 'really', '||period||', '||period||', '||period||', '||period||', 'but', 'i', 'barely', 'know', 'you', '||period||', '||return||', '||return||', 'craig:', 'well', '||period||', '||period||', '||period||', 'hum', '||period||', '||period||', '||period||', '||period||', '||period||', "we'll", 'just', 'have', 'to', 'do', 'something', 'about', 'that', '||period||', "won't", 'we', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', 'ah', '||exclammark||', 'ah', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'greg', '||return||', '||return||', 'craig:', "it's", 'craig', '||return||', '||return||', 'jerry:', 'ah', '||exclammark||', 'right', '||period||', '||period||', '||period||', 'nice', '||period||', 'lunch', 'with', 'elaine', '||questionmark||', '||return||', '||return||', 'craig:', 'yes', 'lovely', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "'m", 'just', 'curious', '||comma||', 'how', 'did', 'you', 'know', 'she', "wasn't", 'my', 'girlfriend', '||questionmark||', '||return||', '||return||', 'craig:', 'well', 'i', 'could', 'just', 'sense', 'it', '||return||', '||return||', 'jerry:', 'because', 'you', 'know', 'we', 'used', 'to', 'go', 'out', '||period||', '||return||', '||return||', 'craig:', 'oh', '||exclammark||', 'you', 'did', '||return||', '||return||', 'jerry:', 'oh', 'yeah', 'we', 'went', 'way', 'out', 'and', 'wild', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'jerr', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'elaine', '||period||', '||return||', '||return||', 'lady:', 'would', 'you', 'like', 'to', 'buy', 'a', 'rose', 'for', 'your', 'wife', '||questionmark||', '||leftparen||', 'to', 'craig', '||rightparen||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'know', "she's", 'not', 'my', 'wife', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'want', 'to', 'know', 'how', 'did', 'that', 'get', 'into', 'my', 'car', '||questionmark||', '||return||', '||return||', 'attendant:', 'hey', 'look', '||period||', '||period||', 'you', 'walk', 'in', 'to', 'this', 'city', 'you', 'got', 'to', 'expect', 'things', 'are', 'gonna', 'stick', 'to', 'your', 'foot', '||period||', 'you', 'open', 'in', 'your', 'car', 'and', 'bing', '||exclammark||', '||exclammark||', 'condom', '||period||', '||return||', '||return||', 'george:', 'that', "doesn't", 'explain', 'the', 'lipstick', 'on', 'the', 'dashboard', '||questionmark||', '||return||', '||return||', 'attendant:', 'here', 'take', 'a', 'few', 'shirts', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'attendant:', "i'm", 'terribly', 'sorry', 'mr', 'kramer', 'but', 'we', "can't", 'get', 'your', 'car', 'now', '||comma||', 'the', 'keys', 'seems', 'to', 'have', 'been', 'misplaced', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'minute', 'i', 'need', 'those', 'keys', '||period||', 'i', 'wont', 'be', 'able', 'to', 'get', 'into', 'my', 'apartment', '||period||', '||return||', '||return||', 'attendant:', 'aaye', 'mr', 'kramer', '||period||', '||period||', '||period||', '||period||', 'you', 'like', 'cadillacs', '||questionmark||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'yeah', 'i', 'like', 'cadillacs', '||leftparen||', 'cautiously', '||rightparen||', 'why', '||questionmark||', 'what', 'you', 'got', 'on', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'attendant:', 'take', 'that', 'pink', 'eldorado', 'cadillac', 'over', 'there', '||comma||', "it's", 'a', 'mary', 'kay', 'car', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'mary', 'kay', 'uh', '||questionmark||', '||return||', '||return||', 'attendant:', 'mary', 'kay', 'car', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'well', 'listen', 'see', 'you', 'later', '||period||', '||period||', 'thanks', 'for', 'driving', 'me', 'by', '||period||', '||period||', '||return||', '||return||', 'hooker:', 'hey', '||exclammark||', '||exclammark||', 'whats', 'happening', '||questionmark||', '||return||', '||return||', 'george:', "we're", 'gonna', 'hang', 'around', 'here', 'a', 'little', 'while', '||period||', '||period||', '||period||', '||period||', 'something', 'funny', 'going', 'on', 'here', '||return||', '||return||', 'elaine:', 'you', 'were', 'wrong', 'about', 'craig', '||period||', "he's", 'a', 'very', 'sweet', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'about', 'the', 'ponytail', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'about', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "c'mon", 'ponytail', '||period||', '||period||', '||period||', 'get', 'real', '||period||', '||return||', '||return||', 'elaine:', 'all', 'i', 'know', "he's", 'promised', 'me', 'a', 'discount', 'on', 'that', 'dress', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', 'he', 'did', '||period||', '||period||', 'the', "guy's", 'working', 'ya', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', 'jerry', "i've", 'been', 'around', 'long', 'enough', 'to', 'know', 'when', "i'm", 'being', 'worked', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'slept', 'with', 'him', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'just', 'met', 'him', 'this', 'morning', '||period||', '||return||', '||return||', 'jerry:', "it's", 'been', 'known', 'to', 'happen', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'telling', 'you', 'right', 'now', 'elaine', '||comma||', 'this', 'guy', "'s", 'gonna', 'dangle', 'that', 'dress', 'in', 'front', 'of', 'you', 'like', 'a', 'dirt', 'farmer', 'dangles', 'a', 'carrot', 'in', 'front', 'of', 'a', 'mule', '||period||', '||return||', '||return||', 'elaine:', '||period||', 'well', 'this', 'is', 'all', 'very', 'flattering', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupts', '||rightparen||', 'like', 'a', 'shark', 'fisherman', 'with', 'a', 'bucket', 'of', '||leftparen||', '||questionmark||', '||rightparen||', 'ch', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continues', '||rightparen||', 'like', 'a', 'shrimp', 'farmer', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ethan:', 'well', "that's", 'the', 'grand', 'tour', '||period||', '||period||', '||period||', 'aw', 'but', 'i', 'save', 'the', 'best', 'for', 'last', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ethan:', 'behold', '||period||', '||period||', 'the', 'technicolor', 'dreamcoat', '||period||', '||return||', '||return||', 'kramer:', 'oooooh', '||period||', '||period||', '||period||', 'pops', '||period||', '||period||', '||period||', '||period||', 'wow', '||exclammark||', '||exclammark||', 'spectacular', '||period||', '||return||', '||return||', 'george:', "s'cuse", 'me', '||period||', '||period||', 'do', 'you', 'mind', 'if', 'i', 'ask', 'you', 'a', 'few', 'questions', '||questionmark||', '||return||', '||return||', 'hooker:', 'are', 'you', 'a', 'cop', '||questionmark||', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', 'nonono', "i'm", 'not', 'a', 'cop', '||period||', '||period||', '||period||', 'heum', '||period||', '||period||', '||period||', 'i', 'work', 'for', 'the', 'yankees', '||period||', '||return||', '||return||', 'hooker:', 'urghh', 'they', 'stink', '||period||', '||return||', '||return||', 'george:', 'nevertheless', '||period||', '||period||', 'i', 'was', 'wondering', 'if', 'you', 'and', 'your', '||period||', 'friends', 'are', 'doing', 'business', 'here', 'at', 'the', 'jiffy', 'park', '||period||', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||period||', 'hum', 'what', 'do', 'you', 'people', 'call', 'it', '||questionmark||', 'turning', 'tricks', '||questionmark||', 'anyway', 'i', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', '||period||', 'found', 'a', 'condom', 'in', 'my', 'car', '||period||', '||period||', '||period||', '||period||', 'and', "i'm", 'not', 'saying', "it's", 'yours', 'but', '||period||', '||period||', '||period||', '||period||', 'i', 'want', 'to', 'know', 'if', 'i', 'should', 'just', 'change', 'parking', 'lots', '||period||', '||return||', '||return||', 'hooker:', 'get', 'lost', 'mister', '||comma||', "i'm", 'trying', 'to', 'make', 'a', 'living', 'here', '||period||', '||return||', '||return||', 'george:', "i'll", 'pay', 'you', 'for', 'your', 'time', '||period||', '||period||', '||period||', '||period||', 'i', 'just', '||period||', '||period||', 'i', 'just', 'need', 'some', 'information', '||period||', 'how', 'much', 'do', 'you', 'want', '||questionmark||', 'ten', '||period||', '||period||', '||period||', '||period||', 'fifteen', '||questionmark||', 'you', 'have', 'change', 'for', 'twenty', '||questionmark||', '||return||', '||return||', 'hooker:', 'fifteen', '||questionmark||', '||return||', '||return||', 'susan:', '||leftparen||', 'walks', 'in', '||rightparen||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'hi', 'honey', '||period||', '||period||', '||return||', '||return||', 'susan:', '||period||', '||period||', 'so', "you're", 'telling', 'me', 'the', 'truth', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', "i'm", 'telling', 'the', 'truth', '||period||', '||return||', '||return||', 'susan:', 'because', 'i', 'have', 'to', 'be', 'able', 'to', 'trust', 'you', '||period||', '||period||', '||period||', 'if', 'i', "can't", 'trust', 'you', 'then', "there's", 'no', 'way', 'that', 'this', 'can', 'work', '||period||', '||return||', '||return||', 'george:', 'really', '||exclammark||', '||return||', '||return||', 'susan:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'well', 'then', '||period||', '||period||', '||period||', 'then', 'you', 'really', 'have', 'something', 'to', 'think', 'about', 'because', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'know', 'if', "there's", 'any', 'doubt', 'in', 'your', 'mind', '||period||', '||period||', '||period||', '||period||', 'and', '||period||', '||period||', 'and', '||comma||', '||comma||', 'it', "doesn't", 'even', 'have', 'to', 'be', 'a', 'big', 'doubt', '||comma||', 'you', 'know', 'even', 'a', 'tiny', 'doubt', '||comma||', 'a', 'dot', 'of', 'a', 'doubt', '||period||', '||period||', 'and', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', "there's", 'no', 'doubt', '||period||', '||return||', '||return||', 'george:', 'because', 'if', "there's", 'any', 'doubt', 'at', 'all', 'i', '||period||', '||period||', '||period||', 'i', 'feel', 'we', 'should', 'cultivate', 'it', '||period||', '||return||', '||return||', 'susan:', 'cultivate', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'you', 'know', '||period||', 'deal', 'with', 'it', '||period||', 'we', 'have', 'to', 'deal', 'with', 'the', 'doubt', '||comma||', 'susan', 'the', 'doubt', '||exclammark||', '||exclammark||', 'must', 'be', 'dealt', 'with', '||period||', '||return||', '||return||', 'susan:', 'i', 'have', 'no', 'doubt', 'george', '||period||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'hesitates', '||rightparen||', '||period||', '||period||', '||period||', 'nooooooooooo', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||period||', '||period||', '||period||', 'i', "can't", 'wait', 'to', 'get', 'that', 'dress', '||period||', '||period||', '||return||', '||return||', 'craig:', 'yeah', '||period||', '||period||', '||period||', 'it', 'should', 'arrive', 'eminently', '||period||', '||return||', '||return||', 'elaine:', 'arrive', '||questionmark||', '||return||', '||return||', 'craig:', 'yes', '||exclammark||', 'from', 'milan', '||period||', '||return||', '||return||', 'elaine:', 'but', 'you', 'said', 'it', 'was', 'in', 'the', 'store', '||exclammark||', '||period||', '||return||', '||return||', 'craig:', 'no', 'no', 'no', 'we', 'sold', 'out', 'we', 'had', 'to', 'order', 'some', 'more', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', 'thought', '||period||', '||period||', 'nicole', 'miller', 'was', 'made', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'craig:', '||leftparen||', 'interrupts', '||rightparen||', 'eeen', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'ian:', 'hey', 'craig', '||period||', '||return||', '||return||', 'craig:', 'elaine', 'this', 'is', 'een', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'e', '||dash||', 'an', '||return||', '||return||', 'ian:', 'een', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'e', '||dash||', 'an', '||return||', '||return||', 'craig:', 'een', '||period||', '||period||', '||period||', "he's", 'a', 'friend', 'a', 'mine', 'from', 'england', '||return||', '||return||', 'ian:', '||leftparen||', 'word', 'missing', '||rightparen||', 'what', 'are', 'doing', '||questionmark||', '||return||', '||return||', 'craig:', "i'm", 'working', 'at', 'the', 'andover', 'shop', 'actually', '||period||', '||period||', '||period||', '||period||', 'you', 'should', 'come', 'by', '||period||', "i'll", 'get', 'you', 'a', 'great', 'discount', '||period||', '||return||', '||return||', 'ian:', 'maybe', 'i', 'will', '||period||', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'craig:', 'bye', '||return||', '||return||', 'ian:', '||period||', '||period||', 'cheery', '||dash||', 'o', '||return||', '||return||', 'elaine:', 'bye', 'eeeen', '||period||', '||return||', '||return||', 'elaine:', 'so', "you're", 'giving', 'him', 'a', 'discount', 'too', '||questionmark||', '||return||', '||return||', 'craig:', 'hummm', 'why', 'so', 'surprised', '||questionmark||', '||return||', '||return||', 'elaine:', 'hem', '||exclammark||', '||exclammark||', 'no', 'reason', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'that', 'clothing', 'salesman', 'had', 'a', 'lot', 'of', 'nerve', 'hitting', 'on', 'elaine', 'right', 'in', 'front', 'of', 'me', '||period||', 'he', 'stands', 'to', 'make', 'a', 'big', 'commission', 'too', 'on', 'that', 'jacket', 'with', 'the', 'crest', 'that', 'nobody', 'seems', 'to', 'like', '||period||', 'you', 'know', 'what', "i'm", 'gonna', 'do', '||period||', '||questionmark||', "i'm", 'gonna', 'take', 'that', 'jacket', 'back', '||period||', '||period||', "i'm", 'putting', 'this', 'guy', '||period||', '||period||', '||period||', '||period||', 'right', 'out', 'of', 'commission', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'heeeeeummmrph', '||period||', '||period||', '||period||', '||period||', "i'm", 'gonna', 'turn', 'in', '||return||', '||return||', 'jerry:', 'turn', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'had', 'a', 'tough', 'day', '||return||', '||return||', 'jerry:', "it's", 'only', 'nine', 'o', 'clock', '||period||', '||return||', '||return||', 'kramer:', 'well', '||period||', '||period||', 'i', "don't", 'argue', 'with', 'the', 'body', 'jerry', '||period||', "it's", 'an', 'argument', 'you', "can't", 'win', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'go', 'to', 'sleep', 'at', 'nine', 'o', 'clock', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'can', 'go', 'to', 'your', 'room', 'and', 'read', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'look', '||comma||', 'you', 'know', '||comma||', "you're", 'the', 'one', "who's", 'locked', 'out', '||period||', "i'm", 'letting', 'you', 'stay', 'here', '||period||', "you're", 'wearing', 'my', 'bathrobe', '||period||', 'you', 'should', 'adapt', 'to', 'me', '||period||', '||return||', '||return||', 'kramer:', 'but', "i'm", 'tired', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'why', "don't", 'you', 'go', 'sleep', 'over', 'at', "newman's", '||period||', '||return||', '||return||', 'kramer:', 'aah', '||exclammark||', "he's", 'got', 'a', 'girl', 'up', 'there', '||period||', 'this', 'quilt', 'is', 'too', 'thin', '||period||', '||period||', '||period||', 'i', 'know', "i'm", 'gonna', 'get', 'cold', '||period||', 'i', "don't", 'even', 'fit', 'on', 'this', 'couch', '||period||', "don't", 'even', 'know', 'if', "i'm", 'gonna', 'sleep', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', "that's", 'all', 'i', 'got', '||period||', '||return||', '||return||', 'kramer:', 'can', 'i', 'sleep', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'got', 'that', 'big', 'comfortable', 'bed', 'and', 'that', 'nice', 'warm', 'quilt', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "there's", 'no', 'way', "you're", 'sleeping', 'with', 'me', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'i', 'really', 'have', 'to', 'explain', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'elaine', 'pops', 'in', 'at', 'that', 'moment', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "squire's", 'walking', 'stick', '||period||', 'i', 'had', 'to', 'write', 'about', 'it', 'for', 'the', 'catalogue', '||period||', '||return||', '||return||', 'kramer:', 'wow', '||period||', '||return||', '||return||', 'elaine:', 'you', 'want', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeaaahmm', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'can', 'have', '||comma||', 'i', "don't", 'need', 'it', 'anymore', '||period||', '||return||', '||return||', 'kramer:', 'ooh', 'mama', '||period||', '||period||', '||period||', '||leftparen||', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'ok', 'so', '||period||', '||period||', 'i', 'am', 'positive', 'you', 'are', 'wrong', 'about', 'craig', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', 'he', 'told', 'a', 'man', "he'd", 'give', 'him', 'a', 'discount', 'too', '||period||', '||period||', '||period||', 'a', 'man', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'who', 'is', 'he', '||questionmark||', '||return||', '||return||', 'elaine:', 'some', 'friend', 'of', 'his', 'from', 'england', '||period||', '||return||', '||return||', 'jerry:', "don't", 'you', 'see', '||questionmark||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "it's", 'all', 'a', 'big', 'scam', '||period||', '||return||', '||return||', 'elaine:', "you're", 'nuts', '||exclammark||', '||return||', '||return||', 'kramer:', 'how', 'do', 'you', 'know', "he's", 'not', 'wondering', 'the', 'same', 'thing', 'about', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', "d'you", 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'i', 'mean', '||questionmark||', '||period||', '||period||', 'well', 'perhaps', 'he', 'thinks', 'that', "you're", 'working', 'him', 'for', 'the', 'discount', '||period||', 'shaking', 'that', 'little', 'butt', 'of', 'yours', 'into', 'big', '||comma||', 'big', 'savings', '||period||', '||period||', '||period||', '||period||', 'and', 'then', 'when', 'you', 'get', 'it', '||comma||', 'you', 'know', '||comma||', 'you', 'drop', 'him', 'like', 'a', 'hot', 'potato', '||period||', '||return||', '||return||', 'elaine:', 'aawwh', 'please', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'now', 'see', 'the', 'two', 'of', 'you', 'need', 'to', 'work', 'on', 'trust', '||period||', '||period||', '||period||', 'and', 'then', 'and', 'only', 'then', 'will', 'there', 'be', 'a', 'free', 'exchange', 'of', 'sex', 'and', 'discounts', '||period||', '||period||', 'cornerstones', 'of', 'a', 'healthy', 'relationship', '||period||', '||period||', '||period||', '||period||', 'and', 'now', 'if', 'you', 'would', '||leftparen||', 'taps', 'twice', 'on', 'the', 'door', '||rightparen||', 'excuse', 'us', '||period||', 'we', 'need', 'to', 'get', 'to', 'bed', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'softly', '||rightparen||', 'hmmm', '||period||', '||period||', '||period||', '||period||', 'patio', "furniture's", 'on', 'sale', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', '||period||', '||period||', 'huh', '||period||', '||period||', '||period||', 'i', 'think', 'i', 'made', 'a', 'big', 'mistake', '||period||', "i'd", 'like', 'my', 'deposit', 'back', 'please', '||period||', '||return||', '||return||', 'attendant:', 'whats', 'the', 'problem', '||return||', '||return||', 'george:', 'you', 'got', 'hookers', 'turning', 'tricks', 'in', 'my', 'car', '||period||', "how's", 'that', 'for', 'starters', '||period||', '||return||', '||return||', 'attendant:', 'haaan', '||exclammark||', 'that', 'is', 'all', 'hearsay', '||period||', '||return||', '||return||', 'george:', 'allright', '||comma||', 'very', 'good', "i'd", 'like', 'my', 'car', 'and', 'my', 'deposit', 'back', 'please', '||return||', '||return||', 'attendant:', "can't", 'do', "it'", '||return||', '||return||', 'george:', "whadday'mean", '||period||', '||questionmark||', '||return||', '||return||', 'attendant:', 'if', 'you', 'read', 'the', 'agreement', 'you', 'signed', 'the', 'deposit', 'is', 'not', 'refundable', '||period||', '||return||', '||return||', 'george:', 'well', 'does', 'it', 'say', 'anywhere', 'in', 'the', 'contract', 'about', 'my', 'car', 'being', 'used', 'as', 'a', 'whorehouse', '||questionmark||', "'cause", 'i', "don't", 'remember', 'reading', 'that', 'clause', 'either', '||period||', '||period||', '||return||', '||return||', 'attendant:', 'what', 'can', 'i', 'tell', 'you', 'buddy', '||period||', 'take', 'it', 'up', 'with', 'consumer', 'affairs', '||period||', '||return||', '||return||', 'george:', '||period||', 'all', 'right', '||comma||', 'just', 'give', 'me', 'my', 'car', 'and', 'let', 'me', 'get', 'the', 'hell', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'attendant:', 'well', "that's", 'going', 'to', 'be', 'a', 'problem', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'attendant:', "it's", 'all', 'the', 'way', 'in', 'the', 'back', '||period||', "can't", 'get', 'it', 'out', 'for', 'a', 'couple', 'of', 'days', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||period||', '||period||', 'i', 'want', 'my', 'car', '||exclammark||', '||exclammark||', '||return||', '||return||', 'attendant:', 'we', 'ask', 'that', 'you', 'please', 'bear', 'with', 'us', '||period||', '||return||', '||return||', 'george:', 'bear', 'with', 'you', '||exclammark||', 'this', 'is', 'a', 'parking', 'lot', 'people', 'are', 'supposed', 'to', 'be', 'able', 'to', 'get', '||return||', '||return||', 'attendant:', 'ideally', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', "i'd", 'like', 'to', 'return', 'this', 'jacket', '||period||', '||return||', '||return||', 'teller:', 'certainly', '||period||', 'may', 'i', 'ask', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'for', 'spite', '||period||', '||period||', '||period||', '||return||', '||return||', 'teller:', 'spite', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||period||', 'i', "don't", 'care', 'for', 'the', 'salesman', 'that', 'sold', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'teller:', 'i', "don't", 'think', 'you', 'can', 'return', 'an', 'item', 'for', 'spite', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'teller:', 'well', 'if', 'there', 'was', 'some', 'problem', 'with', 'the', 'garment', '||period||', 'if', 'it', 'were', 'unsatisfactory', 'in', 'some', 'way', '||comma||', 'then', 'we', 'could', 'do', 'it', 'for', 'you', '||comma||', 'but', "i'm", 'afraid', 'spite', "doesn't", 'fit', 'into', 'any', 'of', 'our', 'conditions', 'for', 'a', 'refund', '||return||', '||return||', 'jerry:', "that's", 'ridiculous', '||comma||', 'i', 'want', 'to', 'return', 'it', '||period||', "what's", 'the', 'difference', 'what', 'the', 'reason', 'is', '||period||', '||return||', '||return||', 'teller:', 'let', 'me', 'speak', 'with', 'the', 'manager', '||period||', '||period||', '||period||', 'excuse', 'me', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'bob', '||exclammark||', '||return||', '||return||', 'teller:', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'spite', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'manager', 'walks', 'over', '||rightparen||', '||return||', '||return||', 'bob:', 'what', 'seems', 'to', 'be', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'want', 'to', 'return', 'this', 'jacket', 'and', 'she', 'asked', 'me', 'why', 'and', 'i', 'said', 'for', 'spite', 'and', 'now', 'she', "won't", 'take', 'it', 'back', '||period||', '||return||', '||return||', 'bob:', "that's", 'true', '||period||', 'you', "can't", 'return', 'an', 'item', 'based', 'purely', 'on', 'spite', '||period||', '||return||', '||return||', 'jerry:', '||period||', 'well', 'so', 'fine', 'then', '||period||', '||period||', 'then', 'i', "don't", 'want', 'it', 'and', 'then', "that's", 'why', "i'm", 'returning', 'it', '||return||', '||return||', 'bob:', 'well', 'you', 'already', 'said', 'spite', 'so', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'changed', 'my', 'mind', '||period||', '||period||', '||return||', '||return||', 'bob:', 'no', '||period||', '||period||', '||period||', 'you', 'said', 'spite', '||period||', '||period||', '||period||', 'too', 'late', '||period||', '||return||', '||return||', 'kramer:', "it's", 'halloween', '||leftparen||', 'not', 'sure', '||rightparen||', '||return||', '||return||', 'charmaine:', 'get', 'a', 'calendar', 'honey', '||exclammark||', "it's", 'the', "90's", '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'elaine', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'hey', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'these', 'are', 'my', 'friends', 'jerry', 'and', 'elaine', '||period||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'hi', '||exclammark||', 'how', "'r", 'u', 'doing', '||questionmark||', '||return||', '||return||', 'charmaine:', 'hi', "i'm", 'charmaine', '||return||', '||return||', 'ethan:', "i'm", 'ethan', '||return||', '||return||', 'kramer:', 'yes', '||comma||', "she's", 'the', 'costume', 'designer', 'and', "he's", 'the', 'wig', 'master', 'for', 'the', 'show', '||period||', '||return||', '||return||', 'jerry:', 'hey', "you're", 'staying', 'with', 'my', 'friend', 'george', '||period||', '||return||', '||return||', 'ethan:', 'right', 'george', '||exclammark||', 'i', 'get', 'the', 'feeling', 'he', "doesn't", 'want', 'me', 'there', '||period||', '||return||', '||return||', 'jerry:', 'well', 'he', "doesn't", 'even', 'want', 'himself', 'there', '||period||', '||return||', '||return||', 'charmaine:', 'why', "don't", 'you', 'sit', 'down', 'and', 'join', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||leftparen||', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', "can't", 'i', "'ve", 'got', 'to', 'meet', 'a', 'friend', '||period||', '||return||', '||return||', 'kramer:', 'well', 'what', 'are', 'we', '||period||', '||period||', '||period||', 'dog', 'meat', '||period||', '||return||', '||return||', 'ethan:', '||leftparen||', 'to', 'waiter', '||rightparen||', '||period||', '||period||', '||period||', '||period||', 'champagne', 'coolies', '||comma||', 'please', '||period||', '||return||', '||return||', 'ethan:', '||leftparen||', 'to', 'elaine', '||rightparen||', "you've", 'got', 'really', 'beautiful', 'hair', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'thanks', '||comma||', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'ethan:', 'have', 'you', 'ever', 'thought', 'about', 'selling', 'it', '||period||', 'it', 'would', 'make', 'a', 'brilliant', 'wig', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'they', 'make', 'wigs', 'out', 'of', 'human', 'hairs', '||questionmark||', '||return||', '||return||', 'ethan:', '||period||', '||period||', 'and', 'pay', 'plenty', 'for', 'them', '||period||', '||return||', '||return||', 'elaine:', 'well', 'you', 'guys', 'are', 'gonna', 'have', 'fun', 'here', 'so', '||period||', '||period||', 'bye', 'take', 'care', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'see', 'ou', 'later', '||period||', '||period||', '||return||', '||return||', 'all:', 'bye', '||comma||', 'now', '||period||', '||period||', '||period||', '||return||', '||return||', 'charmaine:', 'oh', '||exclammark||', 'i', 'just', 'remembered', 'i', "'ve", 'got', 'to', 'get', 'the', 'dreamcoat', 'from', 'the', 'dry', 'cleaners', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'you', 'gonna', 'let', 'me', 'try', 'the', 'other', 'one', 'right', '||questionmark||', "'", '||return||', '||return||', 'charmaine:', 'yeah', '||period||', 'but', 'you', 'gonna', 'have', 'to', 'be', 'really', 'careful', 'with', 'it', '||comma||', "it's", 'my', 'only', 'backup', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'who', 'do', 'you', 'think', "you're", 'talking', 'to', '||period||', '||return||', '||return||', 'charmaine:', 'ok', '||period||', 'buh', '||dash||', 'bye', '||exclammark||', '||return||', '||return||', 'kramer:', 'bye', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'bye', '||exclammark||', '||return||', '||return||', 'ethan:', "there's", 'your', 'champagne', 'coolie', '||period||', 'well', 'looks', 'like', "it's", 'just', 'you', 'and', 'me', 'cowboy', '||exclammark||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'guess', 'so', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'here', 'we', 'are', '||period||', '||return||', '||return||', 'craig:', 'i', '||period||', '||period||', '||period||', '||period||', 'am', '||period||', '||period||', 'beat', '||period||', '||leftparen||', 'sits', 'on', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', '||rightparen||', '||return||', '||return||', 'craig:', 'ohh', '||exclammark||', "that's", 'nice', '||period||', '||return||', '||return||', 'elaine:', 'so', '||period||', 'ehmmmm', '||period||', 'so', '||comma||', 'do', 'you', 'have', 'any', 'ideas', 'when', 'the', 'nicole', 'millers', 'are', 'coming', 'in', '||questionmark||', '||return||', '||return||', 'craig:', 'oh', '||exclammark||', 'yeah', '||period||', 'the', 'nicole', 'millers', '||period||', '||period||', '||period||', 'hemm', '||period||', '||period||', 'well', 'the', 'funniest', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||exclammark||', '||return||', '||return||', 'craig:', "i've", 'learned', 'that', 'the', 'new', "shipment's", 'coming', 'in', 'by', 'boat', '||period||', '||period||', '||period||', 'which', 'does', 'tend', 'to', 'take', 'a', 'little', 'longer', 'with', '||comma||', 'you', 'know', '||comma||', 'what', 'with', 'the', 'waves', 'and', 'all', '||period||', '||period||', 'so', "you'll", 'just', 'have', 'to', 'be', 'a', 'little', 'bit', 'patient', '||period||', '||return||', '||return||', 'elaine:', 'hummm', '||period||', '||period||', '||period||', '||period||', 'so', "you've", 'no', 'idea', 'when', '||period||', '||period||', "they'll", 'arrive', '||period||', '||return||', '||return||', 'craig:', '||leftparen||', 'yawns', '||rightparen||', '||period||', '||period||', '||period||', 'nno', '||period||', '||period||', '||period||', '||period||', 'i', 'really', "don't", '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'ethan:', 'how', 'can', 'she', 'go', 'with', 'a', 'guy', 'like', 'that', '||comma||', "he's", 'a', 'mess', '||period||', '||period||', '||period||', 'i', 'just', "don't", 'see', 'them', 'together', 'at', 'all', '||return||', '||return||', 'jessie:', 'ethan', '||questionmark||', '||return||', '||return||', 'ethan:', 'yes', '||period||', '||period||', '||return||', '||return||', 'jessie:', '||period||', 'hi', "it's", 'me', 'jessie', '||period||', '||period||', '||period||', '||period||', 'george', "hamilton's", 'personal', 'assistant', '||period||', '||return||', '||return||', 'ethan:', '||period||', 'right', '||comma||', 'right', '||period||', '||return||', '||return||', 'ethan:', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'jessie:', 'nice', 'to', 'see', 'you', '||period||', '||period||', '||return||', '||return||', 'ethan:', 'this', 'is', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||period||', '||return||', '||return||', 'jessie:', 'yeah', '||comma||', 'hummm', '||leftparen||', 'turns', 'back', 'to', 'ethan', '||rightparen||', 'ethan', '||comma||', 'what', 'brings', 'you', 'in', 'to', 'town', '||period||', '||return||', '||return||', 'ethan:', "i'm", 'touring', 'with', 'joseph', 'and', 'the', 'amazing', 'technicolor', 'dreamcoat', '||return||', '||return||', 'jessie:', "you're", 'kidding', '||period||', '||period||', '||period||', 'listen', 'maybe', 'you', 'and', 'i', 'should', '||period||', '||period||', '||period||', 'ehmmm', 'get', 'together', '||period||', 'have', 'you', 'been', 'on', 'the', 'slide', 'at', 'club', 'usa', "it's", '||period||', '||period||', '||period||', 'intense', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interrupts', '||rightparen||', 'excuse', 'me', '||period||', '||period||', '||period||', 'excuse', 'me', '||period||', '||period||', '||period||', 'are', 'you', 'asking', 'him', 'out', '||questionmark||', '||return||', '||return||', 'jessie:', 'yeah', '||period||', '||period||', '||period||', 'i', 'guess', 'you', 'could', 'say', 'that', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'right', 'in', 'front', 'of', 'me', '||exclammark||', '||period||', 'how', 'do', 'you', 'know', "we're", 'not', 'together', '||period||', 'two', 'guys', '||comma||', "sittin'", "laughin'", 'drinking', 'champagne', 'coolies', '||period||', '||return||', '||return||', 'jessie:', 'i', 'dunno', 'i', 'just', "didn't", 'think', 'you', 'were', '||period||', '||return||', '||return||', 'jerry:', 'well', "we're", 'sitting', 'here', 'together', '||period||', 'why', "wouldn't", 'you', 'think', 'that', '||period||', '||return||', '||return||', 'jessie:', 'i', 'dont', 'know', '||period||', 'i', 'just', "didn't", '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'very', 'emasculating', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'bob:', '||period||', 'hi', 'this', 'is', 'bob', 'from', 'the', 'andover', 'shop', '||period||', "i'm", 'trying', 'to', 'reach', 'craig', 'stewart', '||period||', 'he', 'left', 'this', 'number', '||period||', '||return||', '||return||', 'elaine:', 'uhmmm', 'huh', '||exclammark||', 'is', 'it', 'important', '||period||', '||questionmark||', '||return||', '||return||', 'bob:', 'well', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'let', 'me', 'ask', 'you', 'something', '||period||', 'ahemm', '||period||', '||period||', 'do', 'you', 'know', 'when', 'the', 'nicole', 'millers', 'are', 'coming', 'in', 'from', 'milan', '||questionmark||', '||period||', '||return||', '||return||', 'bob:', 'nicole', 'millers', '||comma||', "we're", 'not', 'expecting', 'any', 'nicole', 'millers', '||comma||', 'in', 'fact', 'we', 'have', 'too', 'many', 'as', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'well', 'do', 'you', 'have', 'any', 'in', 'a', '||period||', '||period||', '||period||', 'size', 'four', '||period||', '||questionmark||', '||return||', '||return||', 'bob:', 'yes', 'several', '||period||', '||period||', 'just', 'tell', 'him', 'he', "doesn't", 'have', 'to', 'be', 'in', 'tomorrow', 'before', 'eleven', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastically', '||rightparen||', 'oh', '||exclammark||', 'yeah', "i'll", 'make', 'sure', 'he', 'gets', 'the', 'message', '||period||', '||leftparen||', 'looks', 'at', 'the', 'sleeping', 'craig', 'and', 'thinks', '||rightparen||', 'they', 'make', 'wigs', 'out', 'of', 'human', 'hair', '||questionmark||', '||leftparen||', 'still', 'thinking', '||comma||', "ethan's", 'voice', '||rightparen||', 'and', 'pay', 'plenty', 'for', 'them', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looks', 'inside', 'the', 'car', 'and', 'gasps', '||rightparen||', 'ohhh', 'sweet', 'maria', '||period||', 'hey', '||exclammark||', 'lets', 'go', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'what', 'are', 'you', 'doing', 'in', 'my', 'car', '||questionmark||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'where', 'you', 'going', '||period||', '||return||', '||return||', 'hooker:', 'hey', '||period||', 'you', 'just', 'cost', 'me', 'some', 'money', 'mr', '||period||', '||leftparen||', 'starts', 'hitting', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'cool', 'it', 'lady', '||leftparen||', 'they', 'struggle', 'and', 'we', 'here', 'a', 'siren', '||rightparen||', '||return||', '||return||', 'police:', 'policer', 'officer', '||period||', 'freeze', 'right', 'there', '||period||', '||return||', '||return||', 'police:', 'ok', 'big', 'daddy', '||period||', 'take', 'the', 'hat', 'off', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'awright', 'turn', 'to', 'your', 'right', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'hesitates', '||rightparen||', 'i', 'said', 'turn', 'pimp', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'cries', '||rightparen||', "i'm", 'not', 'a', 'pimp', '||period||', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||return||', '||return||', 'george:', 'i', 'believe', 'the', 'doors', 'on', 'the', 'bathroom', 'stalls', '||comma||', 'here', 'at', 'the', 'stadium', '||comma||', "don't", 'offer', 'much', 'by', 'way', 'of', 'privacy', '||period||', 'but', 'i', 'was', 'thinking', 'if', 'we', 'extend', 'the', 'doors', 'all', 'the', 'way', 'to', 'the', 'floors', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'all', 'the', 'way', 'to', 'the', 'floor', '||exclammark||', 'what', 'are', 'you', 'crazy', '||exclammark||', "you'd", 'suffocate', 'in', 'there', '||period||', 'your', 'lucky', 'you', 'have', 'any', 'doors', 'at', 'all', '||period||', 'you', 'know', 'when', 'i', 'was', 'in', 'the', 'army', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'hey', 'costanza', '||period||', "what's", 'that', 'your', 'eating', 'over', 'there', '||questionmark||', 'it', 'looks', 'pretty', 'tasty', '||period||', '||return||', '||return||', 'george:', "it's", 'a', 'calzone', '||comma||', 'sir', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'a', 'calzone', 'huh', '||period||', 'pass', 'it', 'down', 'here', '||period||', "let's", 'have', 'a', 'look', 'at', 'at', 'it', '||period||', 'i', 'want', 'a', 'little', 'taste', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||period||', 'pass', 'it', 'down', 'here', '||period||', "that's", 'a', 'good', 'boy', '||period||', 'okay', '||period||', "what's", 'in', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||period||', 'cheese', '||comma||', 'pepperoni', '||comma||', 'eggplant', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'eggplant', '||period||', 'yes', '||period||', "that's", 'a', 'hell', 'of', 'a', 'thing', '||period||', 'okay', "let's", 'get', 'back', 'to', 'business', '||period||', 'okay', 'here', 'you', 'go', '||period||', 'very', 'good', '||comma||', 'very', 'good', '||period||', 'excellent', '||period||', 'excellent', 'calzone', 'you', 'got', 'there', 'costanza', '||period||', 'okay', 'a', 'little', 'jealous', 'now', '||period||', 'okay', 'lets', 'go', '||period||', 'ok', 'last', 'week', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'know', 'that', 'eggplant', 'was', 'very', 'good', '||period||', 'everybody', 'out', '||period||', 'i', 'got', 'eggplant', 'on', 'my', 'mind', '||period||', 'costanza', 'get', 'me', 'couple', 'of', 'those', 'calzones', 'right', 'now', '||period||', 'pronto', '||period||', 'move', 'out', '||period||', 'pigstein', "what's", 'an', 'eggplant', 'calzone', '||period||', 'must', 'have', 'one', '||period||', 'everybody', 'out', '||period||', 'out', '||period||', '||return||', '||return||', 'elaine:', 'one', 'of', 'those', 'fabric', 'wholesalers', '||period||', 'this', 'guy', 'todd', 'gack', '||period||', 'i', 'won', 'a', 'bet', 'from', 'him', '||period||', '||return||', '||return||', 'jerry:', 'what', 'bet', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'bet', 'me', 'dustin', 'hoffman', 'was', 'in', 'star', 'wars', '||period||', '||return||', '||return||', 'jerry:', 'dustin', 'hoffman', 'in', 'star', 'wars', '||exclammark||', '||questionmark||', '||exclammark||', 'short', 'jewish', 'guy', 'against', 'darth', 'vader', '||period||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', "that's", 'what', 'i', 'said', '||period||', '||return||', '||return||', 'jerry:', 'so', 'the', 'bet', 'was', 'that', 'the', 'loser', 'has', 'to', 'buy', 'dinner', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'feel', 'this', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', "that's", 'hot', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', "it's", 'piquing', 'hot', '||period||', "it's", 'fresh', 'out', 'of', 'the', 'dryer', '||period||', 'hey', 'elaine', 'you', 'have', 'to', 'feel', 'my', 'pants', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'all', 'right', '||period||', 'you', "don't", 'know', 'what', 'your', 'missing', '||period||', "i'm", 'loving', 'this', 'jerry', '||period||', 'i', 'am', 'never', 'putting', 'on', 'another', 'piece', 'of', 'clothing', 'unless', "it's", 'straight', 'out', 'of', 'the', 'dryer', '||period||', '||return||', '||return||', 'jerry:', 'so', 'know', 'every', 'time', 'you', 'get', 'dressed', '||period||', 'you', 'are', 'going', 'to', 'go', 'down', 'to', 'the', 'basement', 'and', 'use', 'the', 'dryer', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', "it's", 'a', 'warm', 'and', 'wonderful', 'feeling', '||comma||', 'jerry', '||period||', 'so', 'what', 'are', 'you', 'doing', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'got', 'a', 'date', 'with', 'nikki', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', "she's", 'a', 'beauty', '||period||', '||return||', '||return||', 'jerry:', "she's", 'also', 'quite', 'bold', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'bold', 'and', 'beautiful', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'i', 'am', 'loving', 'this', 'calzone', '||period||', 'the', 'pita', 'pocket', 'prevents', 'it', 'from', 'dripping', '||period||', 'the', 'pita', 'pocket', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', 'what', 'is', 'it', 'watson', '||questionmark||', 'a', 'lost', 'and', 'found', '||period||', 'no', '||period||', 'i', "don't", 'think', 'we', 'need', 'that', '||period||', 'if', 'people', 'keel', 'over', 'because', 'they', 'lost', 'something', "that's", 'there', 'tough', 'luck', '||period||', 'you', 'got', 'a', 'drip', 'on', 'your', 'mouth', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'a', 'lost', 'and', 'found', 'could', 'be', 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'hold', 'on', 'watson', '||period||', 'you', 'like', 'lost', 'and', 'found', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'definitely', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'all', 'right', 'lost', 'and', 'found', '||period||', 'but', 'these', 'got', 'to', 'be', 'a', 'time', 'limit', '||period||', "we're", 'not', 'running', 'a', 'pawn', 'shop', 'here', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'nikki', '||period||', '||return||', '||return||', 'nikki:', 'hi', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||period||', 'this', 'is', 'todd', 'gack', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'of', 'course', '||period||', 'todd', 'gack', '||period||', 'you', 'did', 'you', 'bet', 'was', 'in', 'star', 'wars', '||questionmark||', 'sammy', 'davis', 'jr', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', 'movie', 'are', 'you', 'guys', 'seeing', '||questionmark||', '||return||', '||return||', 'nikki:', '||quotemark||', 'means', 'to', 'an', 'end', '||quotemark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'we', 'were', 'going', 'to', 'see', 'that', 'but', 'it', 'was', 'sold', 'out', '||period||', 'so', 'were', 'going', 'to', 'see', '||quotemark||', 'blame', 'it', 'on', 'the', 'rain', '||quotemark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'see', 'what', 'you', 'can', 'do', '||questionmark||', '||return||', '||return||', 'nikki:', 'okay', '||period||', '||return||', '||return||', 'elaine:', "what's", 'she', 'going', 'to', 'do', '||questionmark||', "there's", 'no', 'more', 'tickets', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'see', '||period||', '||return||', '||return||', 'todd:', 'hey', 'jerry', '||period||', 'do', 'you', 'like', 'cigars', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'todd:', 'i', 'am', 'going', 'to', 'montreal', 'tomorrow', 'and', 'they', 'sell', 'them', 'dirt', 'cheap', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'that', 'might', 'be', 'a', 'nice', 'idea', 'for', "george's", 'wedding', '||period||', '||return||', '||return||', 'todd:', 'so', 'do', 'you', 'want', 'a', 'box', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', 'if', 'there', 'cheap', 'why', 'not', '||period||', '||return||', '||return||', 'todd:', 'all', 'right', 'i', 'buy', 'a', 'box', 'and', 'give', 'to', 'elaine', '||period||', '||return||', '||return||', 'nikki:', 'okay', 'two', 'tickets', '||quotemark||', 'means', 'to', 'an', 'end', '||quotemark||', '||return||', '||return||', 'jerry:', 'told', 'you', '||period||', '||return||', '||return||', 'elaine:', 'how', 'did', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'nikki:', 'i', 'just', 'talked', 'to', 'the', 'manager', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'enjoy', '||quotemark||', 'blame', 'it', 'on', 'the', 'rain', '||quotemark||', '||return||', '||return||', 'george:', 'there', 'putting', 'in', 'a', 'lost', 'and', 'found', 'because', 'of', 'me', '||period||', "there's", 'a', 'time', 'limit', 'but', 'still', '||period||', '||return||', '||return||', 'jerry:', 'there', 'really', 'building', 'a', 'utopian', 'society', 'up', 'there', 'huh', '||period||', 'and', 'you', 'tribute', 'all', 'this', 'to', 'the', 'calzone', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'am', 'like', 'a', 'drug', 'dealer', '||period||', 'i', 'got', 'the', 'guy', 'hooked', '||period||', 'i', 'am', 'having', 'lunch', 'at', 'his', 'desk', 'everyday', 'this', 'week', '||period||', 'he', "doesn't", 'make', 'a', 'move', 'without', 'me', '||period||', "it's", 'very', 'exciting', '||period||', '||return||', '||return||', 'jerry:', 'with', 'you', 'two', 'guys', 'at', 'the', 'helm', '||period||', 'the', 'last', 'piece', 'of', 'the', 'puzzle', 'is', 'in', 'place', '||period||', '||return||', '||return||', 'george:', 'so', 'let', 'me', 'ask', 'you', 'a', 'question', 'about', 'the', 'tip', 'jar', '||period||', 'i', 'had', 'a', 'little', 'thing', 'with', 'the', 'calzone', 'guy', 'this', 'week', '||period||', 'i', 'go', 'to', 'drop', 'a', 'buck', 'in', 'the', 'tip', 'jar', 'and', 'just', 'as', 'i', 'am', 'about', 'to', 'drop', 'it', 'in', 'he', 'looks', 'the', 'other', 'way', '||period||', 'and', 'then', 'when', 'i', 'am', 'leaving', 'he', 'gives', 'me', 'this', 'look', 'think', 'thanks', 'for', 'nothing', '||period||', 'i', 'mean', 'if', 'they', "don't", 'notice', 'it', "what's", 'the', 'point', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', "don't", 'make', 'it', 'a', 'habit', 'of', 'giving', 'to', 'the', 'blind', '||period||', '||return||', '||return||', 'george:', 'not', 'bills', '||period||', '||return||', '||return||', 'jerry:', 'so', 'george', '||period||', 'remember', 'when', 'i', 'told', 'you', 'nikki', 'gets', 'whatever', 'she', 'wants', '||period||', 'we', 'are', 'at', 'the', 'movies', 'last', 'night', '||period||', "it's", 'sold', 'out', '||period||', 'nikki', 'goes', 'and', 'talks', 'to', 'the', 'manager', '||period||', 'right', 'in', '||period||', '||return||', '||return||', 'george:', 'beautiful', 'women', '||period||', 'you', 'know', 'they', 'could', 'get', 'away', 'with', 'murder', '||period||', 'you', 'never', 'she', 'any', 'of', 'them', 'lift', 'anything', 'over', 'three', 'pounds', '||period||', 'they', 'get', 'whatever', 'they', 'want', 'whenever', 'they', 'want', 'it', '||period||', 'you', "can't", 'stop', 'them', '||period||', '||return||', '||return||', 'jerry:', "she's", 'like', 'a', 'beautiful', 'godzilla', '||period||', '||return||', '||return||', 'george:', 'without', 'thousands', 'of', 'fleeing', 'japanese', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'all', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'am', 'looking', 'for', 'quarters', 'for', 'the', 'dryer', '||period||', '||return||', '||return||', 'jerry:', 'why', "can't", 'you', 'do', 'this', 'on', 'your', 'table', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'i', "don't", 'have', 'a', 'table', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'so', 'how', 'was', '||quotemark||', 'blame', 'it', 'on', 'the', 'rain', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'huh', '||period||', 'yeah', 'thanks', 'for', 'getting', 'us', 'tickets', 'too', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', '||exclammark||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'was', 'the', 'movie', 'part', 'of', 'the', 'bet', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'we', 'were', 'both', 'in', 'the', 'mood', 'for', 'one', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'elaine', '||comma||', 'it', 'is', 'not', 'my', 'way', 'to', 'intrude', 'on', 'the', 'personal', 'lives', 'of', 'close', 'fiends', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'is', 'that', 'so', '||period||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', 'but', 'i', 'feel', 'i', 'must', 'inform', 'you', 'that', 'what', 'happened', 'last', 'night', 'was', 'more', 'than', 'a', 'simple', 'bet', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'dustin', 'hoffman', 'in', 'star', 'wars', '||period||', 'he', 'made', 'a', 'bet', 'he', 'knew', 'he', 'was', 'going', 'to', 'lose', 'just', 'to', 'take', 'you', 'to', 'dinner', '||return||', '||return||', 'elaine:', 'if', 'he', 'wanted', 'to', 'ask', 'me', 'out', 'why', "didn't", 'he', 'just', 'ask', 'me', '||period||', '||return||', '||return||', 'jerry:', 'because', 'if', 'he', "doesn't", 'ask', 'you', 'out', 'he', "doesn't", 'get', 'rejected', '||period||', 'he', 'has', 'found', 'a', 'dating', 'loop', 'hole', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'buy', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'happened', 'after', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', 'he', 'walked', 'me', 'home', '||period||', '||return||', '||return||', 'jerry:', 'to', 'the', 'door', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "that's", 'a', 'date', '||period||', '||return||', '||return||', 'elaine:', 'no', "it's", 'not', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'never', 'walk', 'you', 'home', '||period||', '||return||', '||return||', 'elaine:', "that's", 'just', 'because', 'your', 'a', 'jackass', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||exclammark||', '||exclammark||', 'i', 'found', 'a', 'quarter', '||period||', 'anybody', 'want', 'there', 'clothes', 'heated', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'so', 'how', 'did', 'you', 'leave', 'it', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'supposed', 'to', 'meet', 'him', 'to', 'pick', 'up', 'your', 'cigars', '||period||', '||return||', '||return||', 'jerry:', "that's", 'another', 'loop', 'hole', '||period||', "that's", 'two', 'dates', 'without', 'asking', 'you', 'out', '||period||', '||return||', '||return||', 'elaine:', 'your', 'crazy', '||exclammark||', '||return||', '||return||', 'jerry:', 'crazy', 'like', 'a', 'man', '||period||', '||return||', '||return||', 'worker:', 'number', '49', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'my', 'last', 'name', 'is', 'costanza', '||period||', "that's", 'italian', '||period||', 'so', 'you', 'and', 'i', 'are', 'like', 'country', 'men', '||period||', "pisano's", '||exclammark||', '||return||', '||return||', 'worker:', '$', '6', '||period||', '50', 'your', 'change', '||period||', '||return||', '||return||', 'george:', 'and', 'i', 'always', 'take', 'care', 'of', 'my', "pisano's", '||period||', 'so', 'here', 'is', 'a', 'little', 'something', '||period||', '||leftparen||', 'drop', 'in', 'tip', 'and', 'worker', 'looks', 'the', 'other', 'way', '||comma||', 'so', 'george', 'decides', 'to', 'take', 'it', 'out', 'and', 'try', 'again', 'only', 'to', 'get', 'caught', '||rightparen||', '||return||', '||return||', 'worker:', 'hey', '||exclammark||', 'you', 'steal', 'my', 'money', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'no', 'no', '||period||', "that's", 'not', 'what', 'i', 'was', 'trying', 'to', 'do', '||period||', '||return||', '||return||', 'worker:', 'i', 'know', 'what', 'you', 'try', 'to', 'do', '||period||', 'get', 'out', '||period||', "don't", 'ever', 'come', 'back', 'ever', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'your', 'calzones', 'mr', '||period||', 'steinbrenner', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'beautiful', '||period||', 'i', 'am', 'starving', 'george', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'tomorrow', 'maybe', "we'd", 'try', 'a', 'little', 'corn', 'beef', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'corn', 'beef', '||period||', 'i', "don't", 'think', 'so', '||period||', 'it', 'is', 'a', 'little', 'fatty', '||period||', '||return||', '||return||', 'george:', 'how', 'about', 'chinese', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'uhhhhh', '||period||', 'no', '||period||', 'too', 'many', 'containers', '||period||', 'big', 'mess', '||comma||', 'big', 'mess', '||period||', 'too', 'sloppy', '||period||', 'i', 'want', 'to', 'stick', 'with', 'the', 'calzones', 'from', "pisano's", '||period||', "that's", 'the', 'ticket', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'thought', 'it', 'would', 'be', 'nice', '||period||', 'a', 'little', 'variety', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'george', 'let', 'me', 'tell', 'you', 'something', '||period||', 'when', 'i', 'find', 'something', 'i', 'like', 'i', 'stick', 'with', 'it', '||period||', 'from', '1973', 'to', '1982', 'i', 'ate', 'the', 'exact', 'same', 'lunch', 'everyday', '||period||', 'turkey', 'chili', 'in', 'a', 'bowl', 'made', 'out', 'of', 'bread', '||period||', 'bread', 'bowl', 'george', '||period||', 'first', 'you', 'eat', 'the', 'chili', 'then', 'you', 'eat', 'the', 'bowl', '||period||', "there's", 'nothing', 'more', 'satisfying', 'than', 'looking', 'down', 'after', 'lunch', 'and', 'seeing', 'nothing', 'but', 'a', 'table', '||period||', '||return||', '||return||', 'elaine:', 'thanks', 'for', 'the', 'dinner', '||period||', '||return||', '||return||', 'todd:', 'well', 'i', 'had', 'to', 'give', 'these', 'cigars', 'and', 'we', 'were', 'both', 'hungry', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'todd', '||period||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'um', '||period||', 'was', 'this', 'whole', 'date', 'thing', 'just', 'a', 'way', 'of', 'asking', 'me', 'out', '||questionmark||', '||return||', '||return||', 'todd:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'mean', 'dustin', 'hoffman', 'in', 'star', 'wars', '||questionmark||', '||return||', '||return||', 'todd:', 'elaine', 'that', 'was', 'a', 'legitimate', 'bet', 'and', 'i', 'lost', 'so', 'i', 'bought', 'you', 'dinner', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'all', 'right', '||period||', 'okay', 'well', '||comma||', 'goodnight', '||period||', '||return||', '||return||', 'todd:', 'hey', '||comma||', 'if', 'your', 'not', 'doing', 'anything', 'saturday', 'do', 'you', 'want', 'to', 'meet', 'somewhere', '||questionmark||', '||return||', '||return||', 'elaine:', 'see', 'what', 'is', 'that', '||questionmark||', 'is', 'that', 'a', 'date', '||questionmark||', '||return||', '||return||', 'todd:', 'why', "can't", 'two', 'people', 'go', 'and', 'do', 'something', 'without', 'it', 'being', 'a', 'date', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'i', 'am', 'sorry', "it's", 'not', 'a', 'date', '||period||', '||return||', '||return||', 'todd:', 'no', 'way', '||period||', 'so', "i'll", 'see', 'you', 'saturday', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', '||return||', '||return||', 'todd:', 'pick', 'you', 'up', 'at', '800', 'p', '||period||', 'm', '||period||', '||return||', '||return||', 'police', 'officer:', 'do', 'you', 'know', 'what', 'the', 'posted', 'speed', 'limit', 'on', 'this', 'road', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'got', 'to', 'be', '55', '||period||', '||return||', '||return||', 'police', 'officer:', "that's", 'right', 'it', 'is', '||period||', 'do', 'you', 'know', 'how', 'fast', 'you', 'were', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'lot', 'faster', 'than', 'that', '||exclammark||', '||return||', '||return||', 'police', 'officer:', 'step', 'out', 'of', 'the', 'car', 'sir', '||period||', '||return||', '||return||', 'jerry:', 'okay', 'dokey', '||return||', '||return||', 'police', 'officer:', 'can', 'i', 'have', 'your', 'license', 'and', 'registration', 'please', '||questionmark||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', 'nikki', '||exclammark||', '||return||', '||return||', 'nikki:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'would', 'you', 'mind', 'bringing', 'the', 'officer', 'the', 'registration', '||questionmark||', '||return||', '||return||', 'nikki:', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'police', 'officer:', 'i', 'got', 'you', 'on', 'the', 'radar', 'at', '93', 'miles', 'per', 'hour', '||period||', '||return||', '||return||', 'jerry:', 'you', 'must', 'have', 'gotten', 'me', 'when', 'i', 'slowed', 'down', 'to', 'take', 'that', 'curve', 'because', 'for', 'a', 'while', 'there', 'i', 'was', 'doing', 'well', 'over', '100', '||period||', '||return||', '||return||', 'nikki:', 'officer', '||period||', 'hi', '||period||', 'do', 'you', 'really', 'have', 'to', 'give', 'us', 'a', 'ticket', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', 'nik', '||period||', "that's", 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', 'i', 'am', 'waiting', 'for', 'my', 'shirt', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'your', 'shirt', 'in', 'my', 'oven', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'have', 'any', 'quarters', 'for', 'the', 'dryer', '||period||', 'anyway', 'this', 'is', 'better', '||period||', 'and', "it's", 'more', 'convenient', '||period||', '||return||', '||return||', 'jerry:', 'for', 'both', 'of', 'us', '||period||', '||return||', '||return||', 'kramer:', 'and', 'i', 'have', 'a', 'lot', 'more', 'control', '||period||', 'i', 'have', 'one', 'shirt', 'going', 'for', '10', 'minutes', 'at', '325', 'degrees', '||period||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'your', 'oven', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'am', 'baking', 'a', 'pie', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'cigars', '||comma||', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'some', 'cubans', 'for', "george's", 'wedding', '||period||', 'they', 'were', 'more', 'than', 'i', 'wanted', 'to', 'pay', 'for', 'but', 'what', 'the', 'hell', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', 'baby', '||period||', 'spit', '||comma||', 'spit', '||period||', 'what', 'are', 'these', '||questionmark||', '||quotemark||', 'perducto', 'de', 'peru', '||quotemark||', 'jerry', '||comma||', 'if', 'you', 'think', 'these', 'are', 'cubans', 'you', 'have', 'another', 'thing', 'coming', '||period||', '||return||', '||return||', 'jerry:', 'peru', '||exclammark||', 'i', 'paid', '$300', 'bucks', 'for', 'these', '||period||', 'i', 'could', 'have', 'bought', 'a', 'house', 'in', 'peru', 'for', '$300', 'bucks', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'got', 'ripped', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'to', 'pay', 'this', 'todd', 'gack', 'guy', '$300', 'bucks', 'just', 'so', 'he', 'has', 'some', 'excuse', 'to', 'see', 'elaine', 'again', 'without', 'asking', 'her', 'out', '||period||', '||return||', '||return||', 'kramer:', "that's", 'a', 'nice', 'name', '||period||', 'todd', 'gack', '||period||', 'is', 'that', 'dutch', '||questionmark||', '||leftparen||', 'dingggggg', '||rightparen||', 'oh', 'baby', '||period||', 'here', 'we', 'go', '||period||', 'uh', 'momma', '||period||', '||leftparen||', 'putting', 'his', 'fresh', 'out', 'of', 'the', 'oven', 'shirt', 'on', '||rightparen||', 'hey', 'george', 'hey', '||period||', '||return||', '||return||', 'george:', 'well', 'this', 'is', 'bad', '||period||', 'i', 'am', 'really', 'in', 'a', 'bad', 'situation', 'now', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'is', 'steinbrenner', 'going', 'to', 'do', 'if', 'he', "doesn't", 'get', 'his', 'calzones', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'he', 'going', 'to', 'do', '||questionmark||', "that's", 'exactly', 'the', 'point', '||period||', 'nobody', 'knows', 'what', 'this', 'guy', 'is', 'capable', 'of', '||exclammark||', 'he', 'fires', 'people', 'like', 'it', 'is', 'a', 'bodily', 'function', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'get', 'someone', 'else', 'from', 'the', 'office', 'to', 'go', 'get', "pisano's", 'for', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'before', 'you', 'know', 'it', "he'll", 'be', 'having', 'lunch', 'with', 'him', '||period||', 'you', 'know', 'how', 'these', 'interoffice', 'politics', 'work', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'never', 'had', 'a', 'job', '||period||', '||return||', '||return||', 'kramer:', 'i', 'decided', 'to', 'go', 'with', 'the', 'brown', 'one', "'s", '||period||', '||leftparen||', 'pants', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "kramer's", 'cooking', 'up', 'some', 'corduroy', '||period||', '||return||', '||return||', 'george:', 'there', 'has', 'got', 'to', 'be', 'some', 'way', 'to', 'get', 'back', 'into', "pisano's", '||period||', '||return||', '||return||', 'kramer:', "pisano's", '||period||', "that's", 'the', 'place', 'by', 'the', 'stadium', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', "you've", 'heard', 'of', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'newman', 'raves', 'about', 'it', '||period||', "it's", 'on', 'his', 'mail', 'route', '||period||', 'he', 'goes', 'by', 'there', 'everyday', '||period||', '||return||', '||return||', 'george:', "i'll", 'see', 'you', 'guys', 'later', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'pie', 'are', 'you', 'cooking', '||questionmark||', '||return||', '||return||', 'kramer:', 'huckleberry', '||period||', '||return||', '||return||', 'newman:', 'you', 'certainly', 'are', 'in', 'a', 'bind', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'and', 'since', 'you', 'go', 'buy', 'there', 'everyday', '||period||', 'i', 'was', 'hoping', 'that', 'we', 'could', 'help', 'each', 'other', 'out', '||period||', '||return||', '||return||', 'newman:', 'oh', 'well', '||period||', 'let', 'me', 'perfectly', 'blunt', '||period||', 'i', "don't", 'care', 'for', 'you', 'costanza', '||period||', 'you', 'hang', 'out', 'at', 'the', 'west', 'side', 'of', 'the', 'building', 'with', 'seinfeld', 'all', 'day', 'and', 'just', 'it', 'up', 'wasting', 'your', 'lives', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'going', 'to', 'help', 'me', 'or', 'not', '||questionmark||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', 'all', 'right', '||period||', "i'll", 'help', 'you', 'but', 'i', 'will', 'except', 'something', 'in', 'return', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'well', 'for', 'starters', 'i', 'want', 'a', 'calzone', 'of', 'my', 'own', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||return||', '||return||', 'newman:', 'and', 'a', 'slice', 'of', 'pepperoni', 'pizza', 'and', 'a', 'large', 'soda', 'and', 'three', 'times', 'a', 'week', 'i', 'will', 'require', 'a', 'canolie', '||period||', '||return||', '||return||', 'george:', "that's", 'a', 'little', 'steep', "don't", 'you', 'think', '||questionmark||', '||return||', '||return||', 'newman:', 'you', 'know', 'i', 'hear', 'mr', '||period||', 'steinbrenner', 'can', 'be', 'a', 'bit', 'erratic', '||period||', 'i', 'would', 'hate', 'to', 'see', 'him', 'when', "he's", 'hungry', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'newman:', 'do', 'we', 'have', 'a', 'deal', '||questionmark||', '||return||', '||return||', 'george:', 'but', 'i', 'have', 'to', 'have', 'them', 'by', 'one', "o'clock", '||period||', "he's", 'very', 'regiment', 'about', 'his', 'meals', '||period||', '||return||', '||return||', 'newman:', 'i', 'know', 'exactly', 'how', 'he', 'feels', '||period||', 'pleasure', 'doing', 'business', 'with', 'you', '||period||', 'do', 'come', 'again', '||period||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'nice', '||period||', '||return||', '||return||', 'todd:', 'gack', '||period||', 'party', 'of', 'four', '||period||', '||return||', '||return||', 'elaine:', 'party', 'of', 'four', '||questionmark||', 'who', 'are', 'we', 'meeting', '||questionmark||', '||return||', '||return||', 'todd:', 'mom', '||exclammark||', 'dad', '||exclammark||', 'this', 'is', 'elaine', '||period||', '||return||', '||return||', 'mom:', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'hellllllooooo', '||period||', '||return||', '||return||', 'mom:', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'todd:', 'bye', 'mom', '||period||', '||return||', '||return||', 'mom:', "she's", 'wonderful', '||period||', '||return||', '||return||', 'elaine:', 'what', 'the', 'hell', 'was', 'that', '||questionmark||', '||return||', '||return||', 'todd:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'did', 'you', 'introduce', 'me', 'to', 'your', 'parents', '||questionmark||', '||return||', '||return||', 'todd:', 'there', 'nice', 'people', '||period||', 'i', 'thought', 'you', 'would', 'like', 'them', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', 'todd', '||period||', 'admit', 'it', '||comma||', 'this', 'is', 'a', 'date', '||period||', '||return||', '||return||', 'todd:', 'why', 'is', 'this', 'a', 'date', '||questionmark||', '||return||', '||return||', 'elaine:', 'saturday', 'night', 'with', 'your', 'parents', '||period||', 'unless', "i'm", 'your', 'sister', 'this', 'is', 'a', 'date', '||period||', '||return||', '||return||', 'todd:', 'elaine', '||period||', 'i', "don't", 'understand', 'why', 'you', "can't", 'meet', 'someone', "else's", 'parents', 'without', 'classifying', 'it', 'as', 'a', 'date', '||period||', '||return||', '||return||', 'elaine:', 'well', 'if', "it's", 'not', 'a', 'date', 'then', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'todd:', "it's", 'a', 'lovely', 'evening', 'together', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'believe', 'this', '||period||', '||return||', '||return||', 'todd:', 'well', 'i', 'am', 'getting', 'a', 'cab', 'want', 'to', 'join', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', "i'll", 'just', 'walk', 'home', '||period||', '||return||', '||return||', 'todd:', 'okay', 'goodnight', '||period||', '||leftparen||', 'goes', 'to', 'kiss', 'her', '||rightparen||', '||return||', '||return||', 'elaine:', 'now', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'newman:', 'hello', '||period||', 'what', "'s", 'this', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'was', 'dropping', 'of', 'the', 'calzone', 'money', 'for', 'the', 'week', '||period||', '||period||', '||period||', '||period||', 'um', "shouldn't", 'you', 'be', 'at', 'work', 'by', 'now', '||questionmark||', '||return||', '||return||', 'newman:', 'work', '||questionmark||', "it's", 'raining', '||period||', '||return||', '||return||', 'george:', 'soooooo', '||return||', '||return||', 'newman:', 'i', 'called', 'in', 'sick', '||period||', 'i', "don't", 'work', 'in', 'the', 'rain', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'work', 'in', 'the', 'rain', '||questionmark||', 'your', 'a', 'mailman', '||period||', '||quotemark||', 'neither', 'rain', 'nor', 'sleet', 'nor', 'snow', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', "it's", 'the', 'first', 'one', '||period||', '||return||', '||return||', 'newman:', 'i', 'was', 'never', 'that', 'big', 'on', 'creeds', '||period||', '||return||', '||return||', 'george:', 'you', 'were', 'supposed', 'to', 'deliver', 'my', 'calzones', '||period||', 'we', 'had', 'a', 'deal', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'believe', 'the', 'deal', 'was', 'that', 'i', 'get', 'the', 'calzones', 'on', 'my', 'mail', 'route', '||period||', 'well', 'today', 'i', "won't", 'be', 'going', 'on', 'my', 'mail', 'route', '||exclammark||', 'will', 'i', '||period||', 'perhaps', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'but', "i'm", 'paying', 'you', '||exclammark||', '||return||', '||return||', 'newman:', 'yes', 'thank', 'you', '||period||', '||leftparen||', 'slams', 'door', '||rightparen||', '||return||', '||return||', 'george:', 'newman', '||exclammark||', '||exclammark||', '||return||', '||return||', 'nikki:', 'peru', '||questionmark||', 'i', 'thought', 'you', 'wanted', 'cigars', 'from', 'cuba', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'did', '||period||', '||return||', '||return||', 'nikki:', 'well', 'if', 'these', "aren't", 'what', 'you', 'wanted', 'then', 'why', 'did', 'you', 'pay', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'what', 'could', 'i', 'do', '||questionmark||', 'unless', 'you', 'pay', 'him', 'a', 'visit', '||period||', '||return||', '||return||', 'nikki:', 'okay', '||period||', '||return||', '||return||', 'george:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'look', 'i', 'need', 'you', 'to', 'do', 'me', 'a', 'favor', '||period||', 'i', 'need', 'you', 'to', 'get', 'me', 'lunch', 'at', "pisano's", '||period||', '||return||', '||return||', 'kramer:', 'what', 'happened', 'to', 'newman', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'called', 'in', 'sick', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', 'right', "it's", 'raining', '||period||', '||return||', '||return||', 'george:', 'can', 'you', 'do', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'time', 'do', 'you', 'need', 'it', 'at', '||questionmark||', '||return||', '||return||', 'george:', '100', 'p', '||period||', 'm', '||period||', 'do', 'you', 'need', 'any', 'money', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'i', 'got', 'eight', 'tons', 'of', 'change', '||period||', "i'm", 'loaded', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'hold', 'that', 'bus', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', "it's", 'really', 'wet', 'out', 'there', '||period||', '||return||', '||return||', 'worker:', 'what', 'can', 'i', 'get', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'here', 'you', 'make', 'a', 'pretty', 'mean', 'calzone', '||period||', '||return||', '||return||', 'worker:', 'calzone', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', 'calzone', '||period||', '||return||', '||return||', 'worker:', 'the', 'best', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'lay', 'them', 'on', 'me', '||period||', "i'll", 'take', 'three', '||period||', '||return||', '||return||', 'worker:', 'three', 'calzones', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', "that's", 'a', 'big', 'oven', '||period||', 'huh', '||period||', 'listen', '||period||', 'i', 'was', 'wondering', 'if', 'you', 'could', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'todd', '||period||', '||return||', '||return||', 'todd:', 'hi', '||period||', 'you', 'know', 'nikki', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'sure', '||period||', '||return||', '||return||', 'nikki:', 'wait', '||period||', 'elaine', 'will', 'settle', 'this', '||period||', "what's", 'the', '||quotemark||', 'm', '||quotemark||', 'stand', 'for', 'in', 'richard', 'm', '||period||', 'nixon', '||questionmark||', '||return||', '||return||', 'elaine:', 'milhouse', '||period||', '||return||', '||return||', 'nikki:', 'i', 'told', 'you', 'so', '||period||', 'he', 'said', 'it', 'was', 'moe', '||period||', 'you', 'owe', 'me', 'a', 'dinner', '||period||', '||return||', '||return||', 'worker:', 'your', 'order', 'is', 'ready', '||period||', 'three', 'calzones', 'and', 'one', 'shirt', 'and', 'jacket', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'this', 'is', 'all', 'burned', 'up', '||period||', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'worker:', 'what', 'the', 'hell', 'do', 'i', 'know', 'about', 'cooking', 'a', 'shirt', '||questionmark||', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', 'your', 'paying', 'in', 'pennies', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'all', 'i', 'got', '||period||', '||return||', '||return||', 'worker:', 'no', '||period||', 'you', 'have', 'to', 'have', 'bills', '||period||', 'paper', 'money', '||period||', 'you', "can't", 'pay', 'with', 'this', '||period||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', 'this', 'is', 'all', 'i', 'got', '||period||', '||return||', '||return||', 'worker:', 'then', 'no', 'calzones', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', '||questionmark||', 'where', 'have', 'you', 'been', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'guy', "wouldn't", 'give', 'them', 'to', 'me', 'because', 'i', 'wanted', 'to', 'pay', 'in', 'change', '||period||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'happened', 'to', 'your', 'shirt', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'overcooked', 'it', '||period||', "it's", 'ruined', '||period||', '||return||', '||return||', 'george:', 'your', 'clothes', 'smell', 'just', 'like', "pisano's", '||period||', "there's", 'another', 'italian', 'place', 'on', 'jerome', '||period||', 'maybe', 'i', 'can', 'fool', 'him', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', '||leftparen||', 'on', 'phone', '||rightparen||', "that's", 'right', '||period||', 'do', 'you', 'want', 'to', 'say', 'it', 'again', '||period||', "i'll", 'say', 'it', 'again', '||period||', 'i', "hadn't", 'had', 'a', 'pimple', 'since', 'i', 'was', 'eighteen', 'and', 'i', "don't", 'care', 'that', 'you', "don't", 'believe', 'me', 'or', 'not', '||period||', 'and', "how's", 'this', '||period||', 'your', 'fired', '||period||', 'okay', 'your', 'not', '||period||', 'i', 'am', 'just', 'a', 'little', 'hungry', '||period||', "where's", 'costanza', 'with', 'my', 'calzone', '||period||', "it's", '115', '||period||', "he's", 'late', '||period||', 'that', 'smell', '||period||', 'i', 'have', 'to', 'call', 'you', 'back', '||period||', 'costanza', '||period||', "he's", 'in', 'the', 'building', '||period||', 'costanza', 'is', 'in', 'the', 'building', 'and', "he's", 'not', 'in', 'this', 'office', '||period||', 'costanza', '||exclammark||', "i'll", 'get', 'you', '||period||', '||return||', '||return||', 'jerry:', 'stupid', 'cigars', '||period||', 'you', 'know', 'if', 'i', "didn't", 'send', 'nikki', 'over', 'to', 'talk', 'to', 'him', 'they', "wouldn't", 'be', 'together', '||period||', '||return||', '||return||', 'elaine:', 'these', 'are', 'terrible', '||period||', '||return||', '||return||', 'jerry:', "it's", 'like', 'trying', 'to', 'smoke', 'a', 'chicken', 'bone', '||period||', '||return||', '||return||', 'elaine:', 'what', 'kind', 'of', 'a', 'name', 'is', 'todd', 'gack', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "it's", 'dutch', '||period||', 'i', 'got', 'to', 'get', 'going', '||period||', '||return||', '||return||', 'elaine:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', '||period||', 'promised', 'nikki', 'that', "i'd", 'walk', 'her', 'dog', 'for', 'her', '||period||', '||return||', '||return||', 'elaine:', 'but', 'she', 'broke', 'up', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'know', '||period||', 'but', 'some', 'how', 'she', 'explained', 'it', 'to', 'me', 'and', 'i', "couldn't", 'say', 'no', '||period||', '||return||', '||return||', 'elaine:', 'it', 'smells', 'like', 'a', 'rubber', 'fire', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'said', 'rubber', 'fire', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'ever', 'pay', 'todd', 'for', 'these', 'things', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', "it's", 'being', 'taken', 'care', 'of', 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', 'you', 'gack', '||questionmark||', '||return||', '||return||', 'todd:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', "here's", 'your', 'money', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'george', '||period||', 'why', 'do', 'these', 'clothes', 'smell', 'like', "pisano's", '||questionmark||', '||return||', '||return||', 'george:', 'because', 'they', 'were', 'heated', 'up', 'there', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'heating', 'up', 'your', 'clothes', '||questionmark||', "that's", 'not', 'a', 'bad', 'idea', '||period||', '||return||', '||return||', 'wilhelm:', 'and', 'you', 'can', 'tell', 'the', 'players', 'that', 'i', 'reimburse', 'the', 'trainer', 'for', 'the', 'cigarettes', 'and', 'the', 'dive', 'checks', '||period||', '||return||', '||return||', 'george:', 'sorry', '||comma||', 'the', 'players', 'will', 'be', 'reimbursed', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'the', 'trainer', '||comma||', 'george', '||period||', 'tell', 'the', 'players', "i'll", 'reimburse', 'the', 'trainer', '||period||', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', 'this', 'is', 'the', 'third', 'time', "i've", 'had', 'to', 'repeat', 'myself', '||period||', '||return||', '||return||', 'george:', 'sorry', '||comma||', 'mr', 'wilhelm', '||period||', '||return||', '||return||', 'wilhelm:', 'look', '||comma||', 'sorry', "doesn't", 'cut', 'it', '||period||', "we're", 'running', 'a', 'ball', 'club', 'here', 'george', '||period||', "you've", 'got', 'to', 'pay', 'attention', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'sir', '||period||', 'it', "won't", 'happen', 'again', '||period||', '||return||', '||return||', 'wilhelm:', 'lemme', 'see', '||comma||', 'i', 'uh', '||comma||', 'i', 'had', 'an', 'assignment', 'for', 'you', '||period||', '||period||', '||period||', 'uh', '||period||', '||return||', '||return||', 'wilhelm:', 'lemme', 'think', 'here', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'mr', 'peterman', '||period||', '||return||', '||return||', 'peterman:', 'you', 'know', 'what', 'a', 'huge', 'fan', 'i', 'am', 'of', 'john', 'f', 'kennedy', '||period||', '||return||', '||return||', 'elaine:', 'i', 'do', '||period||', '||return||', '||return||', 'peterman:', 'it', 'was', 'the', 'peace', 'corps', 'that', 'gave', 'me', 'my', 'start', 'in', 'this', 'business', '||period||', '||leftparen||', 'nostalgic', '||rightparen||', 'clothing', 'the', 'naked', 'natives', 'of', 'bantu', 'besh', '||period||', '||return||', '||return||', 'elaine:', 'the', 'pygmy', 'pullover', '||period||', '||return||', '||return||', 'peterman:', "sotheby's", 'is', 'having', 'an', 'auction', 'of', "jfk's", 'memorabilia', '||period||', 'one', 'item', 'in', 'particular', 'has', 'caught', 'my', 'eye', '||period||', 'the', 'presidential', 'golf', 'clubs', '||period||', 'to', 'me', '||comma||', 'they', 'capture', 'that', 'indefinable', 'romance', 'that', 'was', 'camelot', '||period||', '||return||', '||return||', 'elaine:', 'whatever', '||period||', '||return||', '||return||', 'peterman:', 'but', '||comma||', 'unfortunately', 'i', 'will', 'be', 'out', 'of', 'town', 'with', 'my', 'lady', '||dash||', 'friend', 'and', 'therefore', 'unable', 'to', 'bid', 'on', 'the', 'lot', '||period||', 'i', 'was', 'hoping', 'maybe', 'you', 'would', 'go', 'in', 'my', 'stead', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||leftparen||', 'pleasant', 'surprise', '||rightparen||', 'oh', 'yeah', '||comma||', "i'd", 'be', 'happy', 'to', '||period||', 'uhm', '||comma||', 'how', 'much', "d'you", 'want', 'this', 'thing', '||questionmark||', '||leftparen||', 'smilingly', '||rightparen||', 'i', 'mean', '||comma||', 'you', 'know', '||comma||', 'how', 'high', 'are', 'you', 'willing', 'to', 'go', '||questionmark||', '||return||', '||return||', 'peterman:', 'i', 'would', 'see', 'no', 'trouble', 'in', 'spending', 'up', 'to', '||comma||', 'say', '||comma||', 'ten', 'thousand', 'dollars', '||period||', 'have', 'my', 'secretary', 'give', 'you', 'a', 'signed', 'cheque', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||period||', '||return||', '||return||', 'wilhelm:', '||period||', '||period||', '||period||', 'when', "you're", 'done', 'george', '||comma||', 'and', 'bring', 'it', 'directly', 'to', 'me', '||period||', 'mr', 'steinbrenner', 'is', 'very', 'interested', 'in', 'this', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'sir', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'drying', 'his', 'hands', 'and', 'heading', 'for', 'the', 'door', '||rightparen||', 'yes', '||comma||', 'george', '||period||', 'i', 'want', 'you', 'to', 'make', 'this', 'project', 'a', 'top', 'priority', '||period||', '||return||', '||return||', 'george:', 'i', 'will', '||comma||', 'sir', '||period||', 'top', 'priority', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'exiting', '||rightparen||', 'top', 'priority', '||period||', '||return||', '||return||', 'george:', 'top', 'priority', '||period||', '||return||', '||return||', 'george:', 'so', 'he', 'walks', 'out', 'of', 'the', 'stall', '||comma||', "he's", 'been', 'talking', 'the', 'whole', 'time', '||period||', '||return||', '||return||', 'jerry:', 'he', 'pulled', 'an', 'lbj', 'on', 'you', '||period||', '||return||', '||return||', 'george:', 'lbj', '||questionmark||', '||return||', '||return||', 'jerry:', 'lyndon', 'johnson', '||comma||', 'used', 'to', 'do', 'that', 'to', 'his', 'staffers', '||period||', '||return||', '||return||', 'george:', 'no', 'kidding', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', "he'd", 'hold', 'national', 'security', 'meetings', 'in', 'there', '||period||', 'he', 'planned', 'the', 'hanoi', 'bombing', 'after', 'a', 'bad', 'thai', 'meal', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'still', "don't", 'know', 'what', "i'm", 'supposed', 'to', 'do', '||period||', 'i', "don't", 'even', 'know', 'what', 'my', 'assignment', 'is', '||period||', '||return||', '||return||', 'jerry:', 'ask', 'him', 'to', 'repeat', 'it', '||period||', 'tell', 'him', 'there', 'was', 'an', 'echo', 'in', 'there', '||period||', '||return||', '||return||', 'george:', 'i', "can't", '||period||', "he's", 'been', 'on', 'my', 'case', 'about', 'not', 'paying', 'attention', '||period||', 'besides', '||comma||', "it's", 'too', 'late', '||comma||', 'i', 'already', 'told', 'him', 'i', 'heard', 'him', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', 'you', 'do', '||questionmark||', 'ask', 'him', 'a', 'follow', '||dash||', 'up', 'question', '||period||', 'tell', 'him', "you're", 'having', 'trouble', 'getting', 'started', '||comma||', 'and', 'you', 'want', 'his', 'advice', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'follow', '||dash||', 'up', 'question', '||comma||', "that'll", 'work', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'have', 'my', 'keys', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'tossing', 'car', 'keys', 'to', 'jerry', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'catching', 'keys', '||rightparen||', '||period||', '||period||', '||period||', 'back', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'shoulda', 'come', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'newman:', 'we', 'made', 'quite', 'a', 'haul', '||period||', '||return||', '||return||', 'george:', "where'd", 'you', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'price', 'club', '||period||', '||return||', '||return||', 'george:', 'why', "didn't", 'you', 'take', 'your', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'the', 'steering', 'wheel', 'fell', 'off', '||period||', 'i', "don't", 'know', 'where', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', "what're", 'you', 'doing', '||period||', '||leftparen||', 'fetching', 'the', 'bottle', 'from', 'the', 'trash', '||rightparen||', "don't", 'throw', 'that', 'away', '||period||', '||return||', '||return||', 'newman:', 'well', '||comma||', "i'm", 'not', 'paying', 'the', 'five', 'cents', 'for', 'that', 'stupid', 'recycling', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'you', "don't", 'pay', 'five', 'cents', '||comma||', 'you', 'get', 'five', 'cents', 'back', '||period||', 'here', '||comma||', 'read', 'the', 'label', 'here', '||period||', '||leftparen||', 'reads', 'from', 'bottle', '||rightparen||', 'vermont', '||comma||', 'connecticut', '||comma||', 'massachusetts', '||comma||', 'new', 'york', '||period||', 'refund', '||comma||', '||leftparen||', 'brings', 'bottle', 'up', 'close', 'to', "newman's", 'eyes', '||rightparen||', 'vrrup', '||comma||', 'five', 'cents', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'taking', 'bottle', '||rightparen||', 'refund', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', "d'you", 'think', 'the', 'hoboes', 'are', 'doing', '||questionmark||', '||return||', '||return||', 'newman:', 'i', "don't", 'know', '||comma||', "they're", 'deranged', '||period||', '||return||', '||return||', 'george:', 'awright', '||comma||', 'listen', '||comma||', 'can', 'you', 'uh', '||comma||', 'gimme', 'a', 'lift', 'back', 'to', 'my', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "can't", '||period||', 'i', 'gotta', 'pick', 'up', 'elaine', '||period||', "i'm", 'taking', 'her', 'to', 'this', 'kennedy', 'auction', '||period||', '||return||', '||return||', 'george:', 'awright', '||comma||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'peering', 'at', 'bottle', 'label', '||rightparen||', 'what', 'is', 'this', "'mi", '||comma||', 'ten', "cents'", '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'michigan', '||period||', 'in', 'michigan', 'you', 'get', 'ten', 'cents', '||period||', '||return||', '||return||', 'newman:', 'ten', 'cents', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'newman:', 'wait', 'a', 'minute', '||period||', 'you', 'mean', 'you', 'get', 'five', 'cents', 'here', '||comma||', 'and', 'ten', 'cents', 'there', '||period||', 'you', 'could', 'round', 'up', 'bottles', 'here', 'and', 'run', "'em", 'out', 'to', 'michigan', 'for', 'the', 'difference', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'it', "doesn't", 'work', '||period||', '||return||', '||return||', 'newman:', 'what', "d'you", 'mean', 'it', "doesn't", 'work', '||questionmark||', 'you', 'get', 'enough', 'bottles', 'together', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'you', 'overload', 'your', 'inventory', 'and', 'you', 'blow', 'your', 'margins', 'on', 'gasoline', '||period||', 'trust', 'me', '||comma||', 'it', "doesn't", 'work', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 're', '||dash||', 'entering', '||rightparen||', 'hey', '||comma||', "you're", 'not', 'talking', 'that', 'michigan', 'deposit', 'bottle', 'scam', 'again', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', "i'm", 'off', 'that', '||period||', '||return||', '||return||', 'newman:', 'you', 'tried', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'every', 'which', 'way', '||period||', "couldn't", 'crunch', 'the', 'numbers', '||period||', 'it', 'drove', 'me', 'crazy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', '||rightparen||', 'you', 'two', 'keep', 'an', 'eye', 'on', 'each', 'other', '||questionmark||', '||return||', '||return||', 'newman/kramer:', '||leftparen||', 'simultaneous', '||rightparen||', 'no', 'problem', '||period||', 'you', 'bet', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', 'you', "didn't", 'hear', 'my', 'car', 'making', 'a', 'funny', 'noise', '||questionmark||', 'i', 'know', 'those', 'two', 'idiots', 'did', 'something', 'to', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "didn't", 'hear', 'anything', '||period||', '||leftparen||', 'she', 'spots', 'a', 'familiar', 'face', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||comma||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'jerry:', 'sue', 'ellen', 'mishke', '||comma||', 'the', 'braless', "'o", "henry'", 'candy', 'bar', 'heiress', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'well', '||period||', 'hello', 'elaine', '||period||', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'sue', 'ellen', '||period||', '||return||', '||return||', 'jerry:', 'hi', 'sue', 'ellen', '||period||', '||return||', '||return||', 'sue', 'ellen:', "i'm", 'surprised', 'to', 'see', 'you', 'here', '||period||', 'come', 'to', 'catch', 'a', 'glimpse', 'of', 'high', 'society', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'faked', 'laughter', '||rightparen||', 'oh', '||comma||', 'ho', 'ha', 'ha', '||period||', 'no', '||comma||', 'no', '||comma||', "i'm", 'actually', 'here', 'to', 'bid', '||comma||', 'sue', 'ellen', '||period||', 'i', 'mean', 'that', 'is', 'if', 'anything', 'is', 'to', 'my', 'liking', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'here', 'to', 'catch', 'a', 'glimpse', '||period||', '||period||', '||period||', 'of', 'high', 'society', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'well', '||comma||', 'i', 'hope', 'you', 'find', 'something', 'that', 'fits', 'your', 'budget', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'half', 'under', 'her', 'breath', 'and', 'half', 'to', 'jerry', '||rightparen||', 'i', '||period||', '||period||', '||period||', 'hate', 'that', 'woman', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'understand', '||period||', 'you', 'fill', 'an', 'eighteen', '||dash||', 'wheeler', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'an', 'eighteen', '||dash||', "wheeler's", 'no', 'good', '||period||', 'too', 'much', 'overhead', '||period||', 'you', 'got', 'permits', '||comma||', 'weigh', '||dash||', 'stations', '||comma||', 'tolls', '||period||', '||period||', '||period||', 'look', '||comma||', "you're", 'way', 'outta', 'your', 'league', '||period||', '||return||', '||return||', 'newman:', 'i', 'wanna', 'learn', '||period||', 'i', 'want', 'to', 'know', 'why', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'loudly', '||comma||', 'for', 'the', 'benefit', 'of', 'sue', '||dash||', 'ellen', '||rightparen||', 'oh', '||period||', 'those', 'are', 'handsome', '||period||', 'look', 'at', 'that', 'set', '||period||', 'yeah', '||comma||', 'think', 'i', 'might', 'bid', 'on', 'those', '||period||', '||return||', '||return||', 'auctioneer:', 'lot', 'number', 'seven', 'forty', '||dash||', 'five', '||period||', 'we', 'have', 'a', 'full', 'set', 'of', 'golf', 'clubs', '||comma||', 'that', 'were', 'owned', 'by', 'president', 'john', 'f', 'kennedy', '||comma||', 'as', 'seen', 'in', 'the', 'famous', 'photograph', 'of', 'the', 'president', 'chipping', 'at', 'burning', 'tree', 'on', 'the', 'morning', 'of', 'the', 'bay', 'of', 'pigs', 'invasion', '||period||', 'the', 'set', 'in', 'perfect', 'condition', '||comma||', 'and', 'we', 'will', 'start', 'the', 'bidding', 'at', 'four', 'thousand', 'dollars', '||period||', 'four', 'thousand', 'dollars', '||questionmark||', 'do', 'i', 'have', 'four', 'thousand', 'dollars', '||questionmark||', '||return||', '||return||', 'auctioneer:', 'i', 'have', 'four', 'thousand', 'dollars', '||period||', 'do', 'i', 'have', 'five', '||questionmark||', '||leftparen||', 'another', 'person', 'bids', '||rightparen||', 'five', 'thousand', 'dollars', '||period||', 'i', 'have', 'five', 'thousand', 'dollars', '||period||', 'do', 'i', 'have', 'six', '||questionmark||', 'six', 'thousand', 'dollars', 'for', 'this', 'set', 'of', 'beautiful', 'clubs', '||period||', '||leftparen||', 'another', 'bid', '||rightparen||', 'six', '||period||', 'i', 'have', 'six', 'thousand', 'dollars', '||period||', 'can', 'i', 'have', 'sixty', '||dash||', 'five', 'hundred', '||questionmark||', '||return||', '||return||', 'auctioneer:', 'sixty', '||dash||', 'five', 'hundred', 'to', 'the', 'dark', '||dash||', 'haired', 'person', 'on', 'the', 'right', '||period||', 'we', 'are', 'at', 'sixty', '||dash||', 'five', 'hundred', '||comma||', 'do', 'i', 'hear', 'sixty', '||dash||', 'six', 'hundred', '||questionmark||', '||return||', '||return||', 'auctioneer:', 'the', "president's", 'own', 'golf', 'clubs', '||period||', 'leisure', 'life', 'at', 'camelot', '||period||', 'sixty', '||dash||', 'five', 'hundred', 'going', 'once', '||period||', '||period||', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'eight', 'thousand', '||period||', '||return||', '||return||', 'auctioneer:', 'eight', 'thousand', '||period||', 'we', 'have', 'eight', 'thousand', '||period||', 'the', 'bid', 'is', 'now', 'eight', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', 'is', 'she', 'doing', '||questionmark||', "she's", 'starting', 'in', 'on', 'the', 'bidding', 'now', '||questionmark||', '||leftparen||', 'to', 'auctioneer', '||rightparen||', 'eighty', '||dash||', 'five', 'hundred', '||exclammark||', '||return||', '||return||', 'auctioneer:', 'we', 'have', 'eighty', '||dash||', 'five', '||period||', '||period||', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'nine', 'thousand', '||period||', '||return||', '||return||', 'auctioneer:', 'nine', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'think', 'she', 'wants', 'those', 'clubs', '||period||', '||return||', '||return||', 'auctioneer:', 'do', 'i', 'hear', 'ninety', '||dash||', 'five', '||questionmark||', 'ninety', '||dash||', 'five', 'hundred', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'ninety', '||dash||', 'five', 'hundred', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'ten', 'thousand', '||period||', '||return||', '||return||', 'auctioneer:', 'ten', 'thousand', '||comma||', 'to', 'the', 'shapely', 'woman', 'on', 'the', 'left', '||period||', 'ten', 'thousand', 'going', 'once', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'your', 'ceiling', '||period||', '||return||', '||return||', 'auctioneer:', 'ten', 'thousand', 'going', 'twice', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'determined', '||rightparen||', 'eleven', 'thousand', '||exclammark||', '||return||', '||return||', 'sue', 'ellen:', 'twelve', 'thousand', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'angrier', '||rightparen||', 'thirteen', 'thousand', '||exclammark||', '||return||', '||return||', 'sue', 'ellen:', 'fourteen', 'thousand', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'vicious', '||rightparen||', 'fifteen', 'thousand', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'peterman', 'is', 'gonna', 'kill', 'me', '||period||', '||return||', '||return||', 'jerry:', 'i', 'really', 'thought', 'you', 'had', 'her', 'there', 'at', 'seventeen', 'thousand', '||period||', '||return||', '||return||', 'elaine:', 'why', "didn't", 'you', 'stop', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'hear', 'this', 'clunking', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'listening', '||rightparen||', 'a', 'little', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'you', 'know', 'what', '||questionmark||', '||leftparen||', 'indicates', 'clubs', '||rightparen||', "i'm", 'gonna', 'grab', 'these', 'from', 'you', 'later', '||period||', "you'll", 'take', 'care', 'of', "'em", '||comma||', 'okay', '||questionmark||', 'okay', '||period||', 'see', 'you', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'alrighty', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'god', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'angry', '||rightparen||', 'oh', '||comma||', 'you', 'idiots', '||exclammark||', '||return||', '||return||', 'newman:', 'so', 'we', 'could', 'put', 'the', 'bottles', 'in', 'a', 'u', '||dash||', 'haul', '||period||', 'you', 'know', '||comma||', 'go', 'lean', 'and', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'newman', '||comma||', "it's", 'a', 'dead', '||dash||', 'end', '||comma||', "c'mon", '||period||', '||leftparen||', 'jerry', 'enters', '||rightparen||', 'hey', '||comma||', 'there', 'he', 'is', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'you', 'put', 'your', 'groceries', 'under', 'the', 'hood', 'of', 'my', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'newman', '||rightparen||', 'aw', '||comma||', "that's", 'right', '||comma||', 'we', 'forgot', 'about', 'those', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'to', 'kramer', '||rightparen||', "that's", 'where', 'my', 'missing', 'soda', 'is', '||period||', '||return||', '||return||', 'jerry:', 'and', 'your', 'crab', 'legs', '||comma||', 'and', 'a', 'thing', 'of', 'cheese', '||period||', 'the', 'triple', '||dash||', 'a', 'guy', 'said', 'i', 'was', 'this', 'close', 'to', 'sucking', 'a', 'muffin', 'down', 'the', 'carburetor', '||period||', 'what', 'were', 'you', 'thinking', '||questionmark||', '||return||', '||return||', 'kramer:', 'we', 'ran', 'outta', 'space', '||period||', '||return||', '||return||', 'jerry:', 'now', 'i', 'gotta', 'take', 'the', 'car', 'down', 'to', 'tony', 'and', 'get', 'it', 'checked', 'out', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'tony', '||comma||', "he's", 'good', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "he's", 'real', 'good', '||period||', 'but', "he's", 'so', 'obsessive', 'about', 'the', 'car', '||period||', 'he', 'makes', 'me', 'feel', 'guilty', 'about', 'every', 'little', 'thing', "that's", 'wrong', 'with', 'it', '||period||', 'i', 'gotta', 'get', 'it', 'washed', 'before', 'i', 'bring', 'it', 'down', 'to', 'him', '||comma||', 'or', "i'm", 'afraid', "he'll", 'yell', 'at', 'me', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'offering', 'the', 'artichoke', 'can', '||rightparen||', "'choke", '||questionmark||', "'", '||return||', '||return||', 'jerry:', 'no', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'lovingly', '||rightparen||', 'oh', '||comma||', 'yeah', '||period||', 'i', 'remember', 'this', 'car', '||period||', 'beautiful', 'car', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'so', '||comma||', 'anyway', '||comma||', 'the', "engine's", 'been', 'idling', 'a', 'little', 'rough', '||period||', 'i', 'thought', 'it', 'might', 'be', 'time', 'for', 'a', 'check', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "there's", 'really', 'nothing', 'wrong', 'on', 'the', 'inside', '||period||', '||return||', '||return||', 'tony:', 'well', '||comma||', 'the', 'shift', 'knob', 'is', 'loose', '||period||', 'you', 'know', 'about', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "hadn't", 'noticed', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'accusingly', '||rightparen||', 'have', 'you', 'been', 'picking', 'at', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'i', 'been', 'picking', 'at', 'it', '||questionmark||', 'no', '||period||', 'you', 'know', '||period||', "it's", 'just', 'wear', 'and', 'tear', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'disapprovingly', '||rightparen||', 'wear', 'and', 'tear', '||period||', 'i', 'see', '||period||', '||return||', '||return||', 'jerry:', 'the', 'engine', 'is', 'really', 'the', 'only', 'thing', 'that', 'needs', 'checking', '||period||', '||return||', '||return||', 'tony:', 'you', 'been', 'rotating', 'the', 'tires', '||questionmark||', '||return||', '||return||', 'jerry:', 'try', 'to', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'sharp', '||rightparen||', 'you', "don't", 'try', 'to', '||period||', 'you', 'do', 'it', '||exclammark||', 'fifty', '||dash||', 'one', 'percent', 'of', 'all', 'turns', 'are', 'right', 'turns', '||period||', 'you', 'know', 'that', '||questionmark||', "'try", 'to', '||period||', "'", '||return||', '||return||', 'peterman:', 'twenty', 'thousand', 'dollars', '||exclammark||', '||questionmark||', '||exclammark||', 'elaine', '||comma||', "that's", 'twice', 'the', 'amount', 'i', 'authorised', 'you', 'to', 'spend', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'mr', 'peterman', '||comma||', 'but', 'but', 'but', 'but', 'once', 'i', 'saw', 'them', '||comma||', 'i', 'just', "couldn't", 'stand', 'to', 'let', 'anyone', 'else', 'have', 'them', '||period||', '||leftparen||', 'warming', 'to', 'her', 'subject', '||rightparen||', 'you', 'know', '||comma||', 'certainly', 'not', 'some', 'stuck', '||dash||', 'up', 'candy', 'bar', 'heiress', 'who', 'shamelessly', 'flaunts', 'herself', 'in', 'public', 'without', 'any', 'regard', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'ingratiatingly', '||rightparen||', 'they', 'should', 'be', 'here', 'today', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'mr', 'wilhelm', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'entering', 'the', 'office', '||rightparen||', 'yes', 'george', '||period||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'i', 'was', 'just', 'uh', '||period||', '||period||', '||period||', 'i', 'just', 'had', 'one', 'little', 'question', 'about', 'uh', '||comma||', 'my', 'assignment', '||period||', '||return||', '||return||', 'wilhelm:', 'yes', '||comma||', 'well', 'i', 'trust', 'things', 'are', 'moving', 'smoothly', '||period||', 'mr', "steinbrenner's", 'counting', 'on', 'you', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||period||', 'very', 'smooth', '||comma||', 'super', 'smooth', '||period||', 'no', '||comma||', 'but', 'i', 'really', 'wanna', 'attack', 'this', 'thing', '||comma||', 'you', 'know', '||period||', 'sink', 'my', 'teeth', 'into', 'it', '||period||', 'so', 'i', 'was', 'just', 'wondering', '||period||', '||period||', '||period||', 'what', 'do', 'you', 'think', 'would', 'be', 'the', 'very', 'best', 'way', 'to', 'get', 'started', '||questionmark||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'confusion', '||rightparen||', 'get', 'started', '||questionmark||', 'i', "don't", 'understand', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'was', 'wondering', '||period||', '||period||', '||period||', '||return||', '||return||', 'wilhelm:', 'you', 'mean', 'you', "haven't", 'been', 'to', 'payroll', '||questionmark||', '||return||', '||return||', 'george:', 'payroll', '||questionmark||', 'no', '||comma||', 'no', '||comma||', 'i', "haven't", 'done', 'that', '||period||', '||return||', '||return||', 'wilhelm:', 'well', '||comma||', "what's", 'the', 'problem', '||questionmark||', 'now', 'come', 'on', 'george', '||period||', 'i', 'told', 'the', 'big', 'man', 'you', 'were', 'moving', 'on', 'this', '||period||', 'now', '||comma||', "don't", 'let', 'him', 'down', '||exclammark||', '||return||', '||return||', 'george:', 'payroll', '||exclammark||', '||exclammark||', '||return||', '||return||', '[yankee', 'stadium:', 'payroll', 'office]', '||return||', '||return||', 'george:', 'hello', 'there', '||period||', "i'm", 'george', 'costanza', '||period||', '||return||', '||return||', 'clerk:', 'yes', '||questionmark||', '||return||', '||return||', 'george:', 'assistant', 'to', 'the', 'travelling', 'secretary', '||period||', '||leftparen||', 'fishing', 'for', 'a', 'reaction', '||rightparen||', "i'm", 'uh', '||comma||', 'working', 'on', 'the', 'project', '||period||', '||return||', '||return||', 'clerk:', 'what', 'project', '||questionmark||', '||return||', '||return||', 'george:', 'payroll', 'project', '||period||', 'wilhelm', '||questionmark||', 'big', 'uh', '||comma||', 'big', 'payroll', 'project', '||period||', '||return||', '||return||', 'clerk:', "you're", 'gonna', 'have', 'to', 'fill', 'me', 'in', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||comma||', "i'll", 'just', 'uh', '||comma||', "i'll", 'just', 'look', 'around', 'for', 'a', 'little', 'while', '||period||', '||leftparen||', 'moving', 'to', 'come', 'round', 'the', 'counter', '||rightparen||', "i'll", 'just', 'browse', 'around', '||period||', '||return||', '||return||', 'clerk:', '||leftparen||', 'blocking', 'george', '||rightparen||', 'hey', '||comma||', 'wait', '||comma||', 'hey', '||period||', 'excuse', 'me', '||comma||', 'uh', '||comma||', 'you', "can't", 'come', 'back', 'here', '||period||', '||return||', '||return||', 'george:', 'look', '||comma||', 'i', 'am', 'under', 'direct', 'orders', 'from', 'mr', 'wilhelm', '||period||', 'so', 'if', 'you', 'have', 'a', 'problem', 'with', 'that', '||comma||', 'maybe', 'you', 'should', 'just', 'take', 'it', 'up', 'with', 'him', '||period||', '||return||', '||return||', 'clerk:', 'well', '||comma||', 'maybe', 'i', 'will', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'spotting', 'possible', 'salvation', '||rightparen||', 'you', 'know', 'what', '||comma||', 'i', 'urge', 'you', 'to', 'take', 'it', 'up', 'with', 'him', '||period||', 'go', 'ahead', '||comma||', 'give', 'him', 'a', 'call', '||comma||', "he'll", 'tell', 'you', 'what', "i'm", 'doing', 'here', '||period||', '||leftparen||', 'half', 'to', 'himself', '||rightparen||', 'then', 'you', 'can', 'tell', 'me', '||period||', '||return||', '||return||', 'clerk:', '||leftparen||', 'on', 'phone', '||rightparen||', 'mr', 'wilhelm', '||comma||', 'uh', '||comma||', 'this', 'is', 'lafarge', 'in', 'payroll', '||period||', 'uh', '||comma||', "there's", 'a', 'costanza', 'here', '||comma||', 'says', "he's", 'working', 'on', 'some', 'project', '||questionmark||', '||return||', '||return||', 'clerk:', '||leftparen||', 'on', 'phone', '||rightparen||', 'oh', '||period||', '||leftparen||', 'he', 'swaps', 'the', 'phone', 'to', 'his', 'other', 'ear', '||rightparen||', 'oh', '||comma||', 'i', 'see', '||period||', '||leftparen||', 'listens', '||rightparen||', 'interesting', '||period||', '||leftparen||', 'listens', '||rightparen||', 'well', '||comma||', "that's", 'quite', 'a', 'project', '||period||', 'alright', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'clerk:', '||leftparen||', 'apologetically', '||rightparen||', 'ah', '||comma||', "i'm", 'sorry', 'uh', '||comma||', 'that', 'i', 'doubted', 'you', '||period||', 'whatever', 'you', 'need', '||comma||', 'just', 'uh', '||comma||', 'make', 'yourself', 'at', 'home', '||period||', '||return||', '||return||', 'george:', 'so', 'he', 'explained', 'it', 'all', 'to', 'you', '||questionmark||', '||return||', '||return||', 'clerk:', 'yes', '||comma||', 'he', 'explained', 'it', 'all', 'very', 'clearly', '||period||', '||return||', '||return||', 'george:', "what'd", 'he', 'tell', 'you', '||questionmark||', '||return||', '||return||', 'clerk:', '||leftparen||', 'upset', '||rightparen||', 'look', '||exclammark||', 'you', 'were', 'right', '||comma||', 'i', 'was', 'wrong', '||exclammark||', 'you', "don't", 'have', 'to', 'humiliate', 'me', 'about', 'it', '||comma||', 'alright', '||exclammark||', '||return||', '||return||', 'newman:', 'damn', '||exclammark||', '||return||', '||return||', 'newman', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'oh', '||comma||', "mother's", 'day', '||period||', '||leftparen||', 'inspiration', 'strikes', '||rightparen||', 'wait', 'a', 'second', '||period||', "mother's", 'day', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'triumphant', '||rightparen||', 'yessss', '||exclammark||', '||return||', '||return||', 'newman:', 'ahaha', '||exclammark||', '||return||', '||return||', 'newman:', 'come', 'on', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'wha', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'the', 'truck', '||comma||', 'kramer', '||period||', 'the', 'truck', '||exclammark||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'newman', '||comma||', 'i', 'told', 'you', 'to', 'let', 'this', 'thing', 'go', '||period||', '||return||', '||return||', 'newman:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', 'no', '||period||', 'listen', 'to', 'me', '||period||', 'most', 'days', '||comma||', 'the', 'post', 'office', 'sends', 'one', 'truckload', 'of', 'mail', 'to', 'the', 'second', 'domestic', 'regional', 'sorting', 'facility', 'in', 'sagenaw', '||comma||', 'michigan', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interested', '||rightparen||', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'newman:', 'but', '||comma||', 'on', 'the', 'week', 'before', 'holidays', '||comma||', 'we', 'see', 'a', 'surge', '||period||', 'on', "alentine's", 'day', '||comma||', 'we', 'send', 'two', 'trucks', '||period||', 'on', 'christmas', '||comma||', 'four', '||comma||', 'packed', 'to', 'the', 'brim', '||period||', 'and', 'tomorrow', '||comma||', 'if', 'history', 'is', 'any', 'guide', '||comma||', 'will', 'see', 'some', 'spillover', 'into', 'a', 'fifth', 'truck', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'realisation', '||rightparen||', "mother's", 'day', '||period||', '||return||', '||return||', 'newman:', 'the', 'mother', 'of', 'all', 'mail', 'days', '||period||', 'and', 'guess', 'who', 'signed', 'up', 'for', 'the', 'truck', '||period||', '||return||', '||return||', 'kramer:', 'a', 'free', 'truck', '||questionmark||', 'oh', 'boy', '||comma||', 'that', 'completely', 'changes', 'our', 'cost', 'structure', '||period||', 'our', 'g', 'and', 'a', 'goes', 'down', 'fifty', 'percent', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'excited', '||rightparen||', 'we', 'carry', 'a', 'coupla', 'bags', 'of', 'mail', '||comma||', 'and', 'the', 'rest', 'is', 'ours', '||exclammark||', '||return||', '||return||', 'kramer:', 'newman', '||comma||', 'you', 'magnificent', 'bastard', '||comma||', 'you', 'did', 'it', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'triumph', '||rightparen||', 'let', 'the', 'collecting', 'begin', '||exclammark||', '||return||', '||return||', '[yankee', 'stadium:', "george's", 'office]', '||return||', '||return||', 'wilhelm:', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'wilhelm:', '||period||', '||period||', '||period||', 'did', 'you', 'go', 'down', 'to', 'payroll', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', '||rightparen||', 'yes', '||comma||', 'payroll', '||period||', 'yes', 'i', 'did', '||period||', 'very', 'productive', '||period||', 'payroll', '||period||', '||period||', '||period||', 'paid', 'off', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'pleased', '||rightparen||', 'well', 'then', '||comma||', 'i', 'guess', "you'll", 'be', 'heading', 'downtown', 'then', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||period||', 'downtown', '||period||', 'definitely', '||period||', '||return||', '||return||', 'wilhelm:', 'well', '||comma||', "i'm", 'very', 'interested', 'to', 'see', 'how', 'this', 'thing', 'turns', 'out', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', 'yeah', '||comma||', 'you', 'said', 'it', '||period||', '||leftparen||', 'to', 'wilhelm', '||rightparen||', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'mr', 'wilhelm', '||period||', 'uh', '||comma||', 'do', 'you', 'really', 'think', '||period||', '||period||', '||period||', 'well', '||comma||', 'is', 'this', 'downtown', 'trip', 'really', 'necessary', '||comma||', 'you', 'know', '||comma||', 'for', 'the', 'project', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'oh', 'no', '||comma||', "you've", 'got', 'to', 'go', 'downtown', '||comma||', 'george', '||period||', "it's", 'all', 'downtown', '||period||', 'just', 'like', 'the', 'song', 'says', '||period||', '||return||', '||return||', 'george:', 'the', 'song', '||questionmark||', '||return||', '||return||', 'wilhelm:', "there's", 'your', 'answer', '||period||', 'downtown', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thoughtful', '||rightparen||', 'downtown', '||period||', '||return||', '||return||', 'jerry:', 'the', 'song', 'downtown', '||questionmark||', 'you', 'mean', 'the', 'petula', 'clark', 'song', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sure', 'he', "didn't", 'just', 'mention', 'it', 'because', 'you', 'happened', 'to', 'be', 'going', 'downtown', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'he', 'was', 'trying', 'to', 'tell', 'me', 'something', '||comma||', 'like', 'it', 'had', 'some', 'sort', 'of', 'a', 'meaning', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'so', 'how', 'does', 'it', 'go', '||questionmark||', '||return||', '||return||', 'george:', "'when", "you're", 'alone', '||comma||', 'and', 'life', 'is', 'making', 'you', 'lonely', '||comma||', 'you', 'can', 'always', 'go', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'jerry:', "'", '||period||', '||period||', '||period||', 'downtown', '||period||', "'", '||return||', '||return||', 'george:', "'maybe", 'you', 'know', 'some', 'little', 'places', 'to', 'go', '||comma||', 'where', 'they', 'never', 'close', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'jerry:', "'", '||period||', '||period||', '||period||', 'downtown', '||period||', "'", '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||period||', "'little", 'places', 'to', 'go', '||comma||', 'where', 'they', 'never', 'close', '||period||', "'", "what's", 'a', 'little', 'place', 'that', 'never', 'closes', '||questionmark||', '||return||', '||return||', 'jerry:', 'seven', '||dash||', 'eleven', '||questionmark||', '||return||', '||return||', 'george:', "'just", 'listen', 'to', 'the', 'music', 'of', 'the', 'traffic', '||comma||', 'in', 'the', 'city', '||period||', 'linger', 'on', 'the', 'sidewalk', '||comma||', 'where', 'the', 'neon', 'lights', 'are', 'pretty', '||period||', "'", 'where', 'the', 'neon', 'lights', 'are', 'pretty', '||period||', 'the', 'broadway', 'area', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "that's", 'midtown', '||period||', '||return||', '||return||', 'george:', "'the", 'lights', 'are', 'much', 'brighter', 'there', '||period||', 'you', 'can', 'forget', 'all', 'your', 'troubles', '||comma||', 'forget', 'all', 'your', 'cares', '||comma||', 'just', 'go', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'jerry:', "'", '||period||', '||period||', '||period||', 'down', 'town', '||period||', "'", '||return||', '||return||', 'george:', "'things'll", 'be', 'great', '||comma||', 'when', "you're", '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'jerry:', "'", '||period||', '||period||', '||period||', 'downtown', '||period||', "'", '||return||', '||return||', 'george:', 'i', 'got', 'nothing', '||comma||', 'jerry', '||period||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "'don't", 'hang', 'around', 'and', 'let', 'your', 'troubles', 'surround', 'you', '||period||', 'there', 'are', 'movie', 'shows', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'george:', 'you', 'think', 'i', 'should', 'come', 'clean', '||questionmark||', 'what', "d'you", 'think', '||comma||', 'you', 'think', 'i', 'should', 'confess', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'can', 'you', 'lose', '||questionmark||', '||return||', '||return||', 'tony', '||leftparen||', 'o', '||period||', 's', '||period||', '||rightparen||', ':', 'yeah', '||comma||', 'jerry', '||comma||', "it's", 'tony', 'abato', 'at', 'the', 'shop', '||period||', 'look', '||comma||', 'we', 'gotta', 'talk', '||period||', 'you', 'better', 'come', 'down', '||comma||', 'any', 'time', 'after', 'four', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'listen', '||comma||', 'i', 'need', 'to', 'come', 'over', 'and', 'pick', 'up', 'the', 'clubs', 'for', 'peterman', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'know', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'worry', '||rightparen||', 'oh', 'no', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', "it's", 'no', 'big', 'deal', '||period||', 'i', 'left', 'the', 'clubs', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'elaine:', 'you', 'left', 'them', 'in', 'the', 'car', '||questionmark||', 'how', 'could', 'you', 'leave', 'them', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'forgot', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'go', 'down', 'and', 'get', 'them', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', 'the', "car's", 'at', 'the', 'mechanics', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'this', 'is', 'great', '||period||', 'alright', '||comma||', 'well', '||comma||', 'where', 'is', 'the', 'mechanic', '||questionmark||', "i'll", 'just', 'go', 'and', 'pick', "'em", 'up', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'you', "can't", '||period||', "he's", 'working', 'on', 'the', 'car', 'right', 'now', '||period||', 'you', 'can', 'not', 'disturb', 'him', 'while', "he's", 'working', '||period||', 'but', "i'm", 'going', 'down', 'there', 'in', 'like', 'an', 'hour', '||comma||', 'if', 'you', 'wanna', 'meet', 'me', 'down', 'there', '||period||', 'you', 'know', 'the', 'place', '||comma||', "it's", 'on', 'fifty', '||dash||', 'sixth', 'street', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'resigned', '||rightparen||', 'ugh', '||comma||', 'okay', '||comma||', 'alright', '||comma||', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'tony', '||period||', '||return||', '||return||', 'tony:', 'thanks', 'for', 'coming', 'in', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'tony:', 'i', 'think', 'i', 'know', "what's", "goin'", 'on', 'here', '||comma||', 'and', 'i', 'just', 'wanna', 'hear', 'it', 'from', 'you', '||period||', 'but', 'i', 'want', 'you', 'to', 'be', 'straight', 'with', 'me', '||period||', "don't", 'lie', 'to', 'me', '||comma||', 'jerry', '||period||', 'you', 'know', 'that', 'motor', 'oil', "you're", "puttin'", 'in', 'there', '||questionmark||', '||leftparen||', 'reproachful', '||rightparen||', 'from', 'one', 'of', 'those', 'quicky', 'lube', 'places', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'change', 'it', 'so', 'often', '||comma||', 'i', 'mean', 'to', 'come', 'all', 'the', 'way', 'down', 'here', '||period||', '||period||', '||period||', '||return||', '||return||', 'tony:', 'jerry', '||comma||', 'motor', 'oil', 'is', 'the', 'lifeblood', 'of', 'a', 'car', '||period||', 'okay', '||comma||', 'you', 'put', 'in', 'a', 'low', '||dash||', 'grade', 'oil', '||comma||', 'you', 'could', 'damage', 'vital', 'engine', 'parts', '||period||', 'okay', '||period||', '||leftparen||', 'holds', 'up', 'component', '||rightparen||', 'see', 'this', 'gasket', '||questionmark||', '||leftparen||', 'throws', 'it', 'down', '||rightparen||', 'i', 'have', 'no', 'confidence', 'in', 'that', 'gasket', '||period||', '||return||', '||return||', 'jerry:', 'i', 'really', 'wanna', '||period||', '||period||', '||period||', '||return||', '||return||', 'tony:', "here's", 'what', 'i', 'wanna', 'do', '||period||', 'i', 'wanna', 'overhaul', 'the', 'entire', 'engine', '||period||', 'but', "it's", 'gonna', 'take', 'a', 'major', 'commitment', 'from', 'you', '||period||', "you're", 'gonna', 'have', 'to', 'keep', 'it', 'under', 'sixty', 'miles', 'an', 'hour', 'for', 'a', 'while', '||period||', 'you', 'gotta', 'come', 'in', '||comma||', 'and', 'you', 'gotta', 'get', 'the', 'oil', 'changed', 'every', 'thousand', 'miles', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'money', 'is', 'this', 'gonna', 'cost', 'me', '||questionmark||', '||return||', '||return||', 'tony:', '||leftparen||', 'contempt', '||rightparen||', 'huh', '||period||', 'i', "don't", 'understand', 'you', '||period||', "it's", 'your', 'own', 'car', "we're", 'talking', 'about', '||period||', 'you', 'know', 'you', 'wrote', 'the', 'wrong', 'mileage', 'down', 'on', 'the', 'form', '||questionmark||', 'you', 'barely', 'know', 'the', 'car', '||period||', 'you', "don't", 'know', 'the', 'mileage', '||comma||', 'you', "don't", 'know', 'the', 'tyre', 'pressure', '||period||', 'when', 'was', 'the', 'last', 'time', 'you', 'even', 'checked', 'the', 'washer', 'fluid', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'washer', 'fluid', 'is', 'fine', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'angry', '||rightparen||', 'the', 'washer', 'fluid', 'is', 'not', 'fine', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'you', 'know', 'what', '||comma||', 'uhm', '||period||', '||period||', '||period||', 'i', 'just', 'wanna', 'take', 'my', 'car', '||comma||', 'and', "i'm", 'gonna', 'bring', 'it', 'someplace', 'else', '||period||', '||return||', '||return||', 'tony:', 'what', "d'you", 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'just', '||comma||', 'can', 'i', 'have', 'my', 'car', '||questionmark||', 'i', 'wanna', 'pay', 'my', 'bill', '||comma||', "i'm", 'gonna', 'be', 'on', 'my', 'way', '||period||', '||return||', '||return||', 'tony:', 'well', '||comma||', 'the', "car's", 'on', 'a', 'lift', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'just', 'get', 'it', 'down', '||period||', '||return||', '||return||', 'tony:', '||leftparen||', 'subdued', '||rightparen||', 'alright', '||period||', 'okay', '||period||', 'well', '||comma||', 'uhm', '||comma||', 'wait', 'here', 'and', "i'll", 'uh', '||comma||', "i'll", 'bring', 'it', 'around', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'thank', 'you', '||comma||', 'very', 'much', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', "where's", 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'bringing', 'it', '||period||', '||return||', '||return||', 'elaine:', 'good', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'last', 'week', 'on', 'seinfeld', '||period||', '||return||', '||return||', 'so', 'far:', 'newman', 'and', 'kramer', 'are', 'using', 'a', 'usps', 'mail', 'truck', 'to', 'run', 'deposit', 'bottles', 'and', 'cans', 'to', 'michigan', '||comma||', 'in', 'order', 'to', 'collect', '10', 'cents', 'on', 'each', 'of', 'them', '||period||', 'george', 'has', 'been', 'given', 'an', 'assignment', 'by', 'mr', 'wilhelm', '||comma||', 'but', 'he', "hasn't", 'a', 'clue', 'what', 'it', 'is', '||period||', 'elaine', 'outbids', 'sue', '||dash||', 'ellen', 'mishke', 'at', 'an', 'auction', '||comma||', 'to', 'buy', 'john', 'f', "kennedy's", 'golf', 'clubs', 'on', 'behalf', 'of', 'mr', 'peterman', '||comma||', 'and', 'leaves', 'them', 'in', 'the', 'back', 'of', "jerry's", 'car', '||period||', 'kramer', 'and', 'newman', 'have', 'left', 'groceries', 'under', 'the', 'hood', 'of', "jerry's", 'car', '||comma||', 'meaning', 'jerry', 'has', 'to', 'take', 'it', 'to', 'tony', 'the', 'mechanic', '||comma||', 'who', 'loves', 'the', 'car', 'more', 'than', 'jerry', 'does', '||period||', 'when', 'jerry', 'asks', 'for', 'his', 'car', 'back', '||comma||', 'tony', 'flees', 'in', 'it', '||comma||', 'taking', "jfk's", 'clubs', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'thank', 'you', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', "what'd", 'they', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'sending', 'a', 'detective', 'to', 'my', 'apartment', 'tomorrow', '||period||', '||return||', '||return||', 'elaine:', 'what', 'the', 'hell', 'were', 'you', 'thinking', 'leaving', 'my', 'clubs', 'in', 'that', 'car', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "didn't", 'count', 'on', 'my', 'mechanic', 'pulling', 'a', 'mary', '||dash||', 'beth', 'whitehead', '||comma||', 'did', 'i', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'kind', 'of', 'maniac', 'is', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'very', 'special', 'maniac', '||period||', '||return||', '||return||', 'elaine:', 'what', 'am', 'i', 'supposed', 'to', 'tell', 'mr', 'peterman', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'why', "couldn't", 'you', 'take', 'better', 'care', 'of', 'that', 'car', '||questionmark||', '||exclammark||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'are', 'they', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'mr', 'peterman', '||comma||', 'uh', '||period||', '||period||', '||period||', 'there', 'seems', 'to', 'be', 'a', 'bit', 'of', 'a', 'snag', '||period||', '||return||', '||return||', 'peterman:', 'snag', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'seems', 'that', 'a', 'psychotic', 'mechanic', 'has', 'absconded', 'with', 'my', "friend's", 'car', '||period||', '||return||', '||return||', 'peterman:', 'what', 'does', 'that', 'have', 'to', 'do', 'with', 'my', 'clubs', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'happened', 'to', 'be', 'in', 'the', 'back', 'seat', 'at', 'the', 'time', '||period||', '||return||', '||return||', 'detective:', 'what', 'was', 'the', 'suspect', 'wearing', 'at', 'the', 'time', 'of', 'the', 'incident', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'like', "mechanic's", 'pants', '||comma||', 'a', 'shirt', 'that', 'said', "'tony'", '||period||', 'lemme', 'ask', 'you', 'something', '||comma||', 'have', 'you', 'ever', 'seen', 'a', 'case', 'like', 'this', 'before', '||questionmark||', '||return||', '||return||', 'detective:', 'all', 'the', 'time', '||period||', 'a', 'mechanic', 'forms', 'an', 'emotional', 'attachment', '||comma||', 'thinks', "he'sgonna", 'lose', 'the', 'car', '||comma||', 'he', 'panics', '||comma||', 'he', 'does', 'something', 'rash', '||period||', "i'm", 'gonna', 'ask', 'you', 'somepersonal', 'questions', '||period||', "i'm", 'sorry', 'if', 'i', 'touch', 'a', 'nerve', '||comma||', 'but', 'i', 'think', "it'll", 'help', 'with', 'the', 'case', '||period||', 'had', 'you', 'been', 'taking', 'good', 'care', 'of', 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'had', 'i', 'been', 'taking', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'detective:', 'well', '||comma||', 'did', 'you', 'leave', 'the', 'a/c', 'on', '||questionmark||', 'do', 'you', 'zip', 'over', 'speed', 'bumps', '||questionmark||', 'do', 'you', 'ride', 'the', 'clutch', '||questionmark||', 'things', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'w', '||dash||', 'well', '||comma||', 'what', 'does', 'it', 'matter', '||questionmark||', "it's", 'my', 'car', '||comma||', 'i', 'can', 'do', 'whatever', 'i', 'want', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'not', 'that', 'i', 'would', 'think', 'of', 'doing', 'such', 'things', '||period||', '||return||', '||return||', 'detective:', '||leftparen||', 'making', 'a', 'note', '||rightparen||', 'alright', 'mr', 'seinfeld', '||comma||', "we'll", 'let', 'you', 'know', 'if', 'we', 'find', 'anything', '||period||', 'i', 'gotta', 'be', 'honest', 'with', 'you', '||comma||', 'these', 'cases', 'never', 'end', 'up', 'well', '||period||', '||return||', '||return||', 'jerry:', 'well', 'uh', '||comma||', 'whatever', 'you', 'can', 'do', '||period||', 'thanks', '||period||', '||return||', '||return||', '[yankee', 'stadium:', "george's", 'office]', '||return||', '||return||', 'george:', '||leftparen||', 'hesitant', '||rightparen||', 'uh', '||comma||', 'mr', 'wilhelm', '||period||', 'uh', '||comma||', 'about', 'the', 'project', '||period||', '||period||', '||period||', '||return||', '||return||', 'wilhelm:', "that's", 'what', 'i', 'came', 'to', 'talk', 'to', 'you', 'about', '||period||', 'great', 'job', 'george', '||period||', '||leftparen||', 'shakes', "george's", 'hand', '||rightparen||', 'you', 'really', 'nailed', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'did', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'oh', 'yes', '||comma||', 'i', 'read', 'through', 'it', 'this', 'morning', '||period||', 'i', "couldn't", 'have', 'done', 'it', 'better', 'myself', '||comma||', 'and', 'i', 'turned', 'it', 'right', 'over', 'to', 'mr', 'steinbrenner', '||period||', 'good', 'work', 'george', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'get', 'it', '||period||', 'he', 'assigns', 'it', 'to', 'you', '||comma||', 'you', "don't", 'do', 'it', '||period||', 'somehow', 'it', 'gets', 'done', '||comma||', 'and', 'now', "he's", 'telling', 'you', 'what', 'a', 'great', 'job', 'you', 'did', '||period||', '||return||', '||return||', 'george:', 'maybe', 'somebody', 'did', 'it', 'and', "didn't", 'take', 'credit', 'for', 'it', '||period||', 'maybe', 'it', 'was', 'already', 'done', 'and', "didn't", 'need', 'doing', 'in', 'the', 'first', 'place', '||period||', 'i', 'have', 'no', 'idea', 'who', 'did', 'it', '||comma||', 'what', 'they', 'did', '||comma||', 'or', 'how', 'they', 'did', 'it', 'so', 'well', '||period||', 'and', 'you', 'know', 'what', '||questionmark||', 'jimmy', 'crack', 'corn', 'and', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'wilhelm:', 'the', 'gardener', 'did', 'a', 'nice', 'job', 'planting', 'the', 'rose', 'bushes', '||comma||', "didn't", 'he', 'dear', '||questionmark||', '||return||', '||return||', 'mrs', 'wilhelm', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'you', 'planted', 'the', 'rose', 'bushes', '||comma||', 'dear', '||period||', '||return||', '||return||', 'wilhelm:', 'i', 'did', '||questionmark||', '||return||', '||return||', 'mrs', 'wilhelm', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'yesterday', '||period||', 'you', 'remember', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'thinks', 'for', 'a', 'moment', '||rightparen||', "that's", 'right', '||period||', '||leftparen||', 'pause', '||rightparen||', "what's", 'for', 'dinner', '||questionmark||', '||return||', '||return||', 'mrs', 'wilhelm', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'we', 'just', 'ate', '||period||', 'did', 'you', 'forget', 'to', 'take', 'your', 'medicine', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'point', 'is', '||comma||', 'however', 'it', 'got', 'done', '||comma||', "it's", 'done', '||period||', 'so', '||comma||', 'any', 'luck', 'with', 'the', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'the', 'police', 'have', 'no', 'leads', '||leftparen||', 'sitting', 'on', 'the', 'couch', 'arm', '||rightparen||', 'and', 'i', 'just', 'found', 'out', 'today', 'my', 'insurance', "doesn't", 'cover', 'it', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', "don't", 'consider', 'it', 'stolen', '||comma||', 'if', 'you', 'wilfully', 'give', 'the', 'guy', 'the', 'keys', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||period||', 'what', 'did', 'the', 'detective', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'looking', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', "y'hello", '||period||', '||return||', '||return||', 'detective', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'mr', 'seinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'detective', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', "it's", 'detective', 'mcmahon', '||period||', '||period||', '||period||', '||return||', '||return||', 'detective', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', '||period||', '||period||', '||period||', "i'm", 'at', 'the', 'warehouse', 'on', 'pier', '38', '||period||', 'ah', '||comma||', 'i', 'think', "you'd", 'better', 'get', 'down', 'here', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'okay', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'they', 'may', 'have', 'found', 'the', 'car', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'makes', 'surprise', 'noise', '||rightparen||', 'are', 'the', 'clubs', 'in', 'it', '||questionmark||', 'ask', 'him', '||period||', '||return||', '||return||', 'jerry:', 'are', 'there', 'golf', 'clubs', 'in', 'the', 'back', '||questionmark||', '||return||', '||return||', 'detective', '||leftparen||', 'v', '||period||', 'o', '||period||', '||rightparen||', ':', 'we', 'really', "can't", 'tell', '||period||', 'you', 'better', 'bring', 'your', 'service', 'records', '||period||', '||return||', '||return||', 'young', 'cop:', 'watch', 'where', 'you', 'step', '||period||', "there's", 'quite', 'a', 'bit', 'of', '||period||', '||period||', '||period||', 'grease', '||period||', 'detective', '||comma||', 'jerry', 'seinfeld', 'is', 'here', '||period||', '||return||', '||return||', 'detective:', 'how', "d'you", 'do', '||period||', 'thanks', 'for', 'coming', 'down', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'indicating', '||rightparen||', 'this', 'is', 'elaine', 'benes', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'explaining', '||rightparen||', 'we', 'used', 'to', 'date', '||comma||', 'but', 'now', "we're", 'just', 'friends', '||period||', '||return||', '||return||', 'detective:', 'i', 'see', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'detective:', "i'm", 'sorry', 'to', 'make', 'you', 'go', 'through', 'this', '||comma||', 'but', 'we', 'need', 'to', 'make', 'sure', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "what's", 'going', 'on', '||questionmark||', 'what', 'is', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'detective:', 'one', 'of', 'our', 'patrolmen', 'stumbled', 'over', 'this', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'horrified', '||rightparen||', 'huuh', '||exclammark||', '||leftparen||', 'she', 'turns', 'away', 'and', 'covers', 'her', 'mouth', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'detective:', 'the', 'block', 'is', 'nearly', 'split', 'apart', '||period||', 'we', 'found', 'the', 'overhead', 'cams', 'thirty', 'feet', 'away', '||period||', 'we', 'can', 'only', 'hope', 'the', 'body', 'sold', 'for', 'scrap', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'detective:', 'and', 'we', 'know', "it's", 'a', 'saab', '||period||', 'the', 'angle', 'on', 'the', 'vee', '||dash||', '6', 'is', 'definitely', 'ninety', '||dash||', 'two', '||period||', 'the', 'model', 'is', 'hard', 'to', 'determine', 'because', 'the', 'drive', 'train', 'is', 'all', 'burnt', 'out', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'smell', '||questionmark||', '||return||', '||return||', 'detective:', 'look', 'at', 'the', 'clutch', '||period||', '||return||', '||return||', 'elaine:', 'uuh', '||period||', '||return||', '||return||', 'young', 'cop:', 'excuse', 'me', '||period||', '||return||', '||return||', 'detective:', 'whoever', 'did', 'this', "didn't", 'just', 'dismantle', 'it', '||period||', 'i', 'mean', '||comma||', 'they', 'took', 'their', 'time', '||comma||', 'they', 'had', 'fun', '||period||', 'they', 'were', 'very', 'systematic', '||period||', 'they', 'went', 'out', 'of', 'their', 'way', 'to', 'gouge', 'the', 'sides', 'of', 'every', 'piston', '||comma||', 'and', 'the', 'turbo', 'was', 'separated', 'from', 'the', 'housing', 'and', 'shoved', 'right', 'up', 'the', 'exhaust', 'pipe', '||period||', '||return||', '||return||', 'elaine:', 'uhh', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||period||', 'turbo', '||questionmark||', 'i', "didn't", 'have', 'a', 'turbo', '||period||', '||return||', '||return||', 'detective:', 'your', "car's", 'not', 'a', 'turbo', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'a', 'nine', '||dash||', 'hundred', 's', '||period||', '||leftparen||', 'happy', '||rightparen||', "it's", 'a', 'turbo', '||comma||', 'elaine', '||comma||', 'a', 'turbo', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sobbing', 'happiness', '||rightparen||', "it's", 'a', 'tu', '||dash||', 'hur', '||dash||', 'bo', '||period||', '||return||', '||return||', 'woman:', 'excuse', 'me', '||comma||', 'did', 'you', 'say', 'turbo', '||questionmark||', 'saab', 'turbo', 'nine', '||dash||', 'thousand', '||questionmark||', 'is', 'it', '||period||', '||period||', '||period||', '||leftparen||', 'voice', 'breaking', '||rightparen||', 'midnight', 'blue', '||questionmark||', '||return||', '||return||', 'detective:', '||leftparen||', 'condolences', '||rightparen||', 'yes', "ma'am", '||period||', '||return||', '||return||', 'kramer/newman:', '||leftparen||', 'singing', '||rightparen||', 'nine', 'thousand', '||comma||', 'nine', 'hundred', 'and', 'ninety', '||dash||', 'nine', 'bottle', 'and', 'cans', 'in', 'the', 'trunk', '||comma||', 'nine', 'thousand', '||comma||', 'nine', 'hundred', 'and', 'ninety', '||dash||', 'nine', 'bottles', 'and', 'cans', '||period||', 'at', 'ten', 'cents', 'a', 'bottle', 'and', 'ten', 'cents', 'a', 'can', '||comma||', "we're", 'pulling', 'in', 'five', 'hundred', 'dollars', 'a', 'man', '||period||', 'nine', 'thousand', '||comma||', 'nine', 'hundred', 'and', 'ninety', '||dash||', 'eight', 'bottle', 'and', 'cans', 'in', 'the', 'trunk', '||comma||', 'nine', 'thousand', '||comma||', 'nine', 'hundred', 'and', 'ninety', '||dash||', 'eight', 'bottles', 'and', 'cans', '||period||', 'we', 'fill', 'up', 'with', 'gas', '||comma||', 'we', 'count', 'up', 'our', 'cash', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'tony:', 'hey', 'jerry', '||comma||', "it's", 'tony', '||period||', '||return||', '||return||', 'jerry:', 'tony', '||comma||', 'where', 'are', 'you', '||questionmark||', '||return||', '||return||', 'tony:', 'aw', 'look', '||comma||', 'i', 'just', 'want', 'you', 'to', 'know', 'that', 'the', 'car', 'is', 'fine', '||period||', 'i', 'got', 'her', 'all', 'fixed', 'up', '||period||', "we're", 'in', 'a', 'nice', 'area', '||comma||', 'no', 'potholes', '||comma||', 'no', 'traffic', '||period||', 'so', "there's", 'nothing', 'to', 'worry', 'about', '||period||', 'okay', '||questionmark||', 'in', 'fact', '||comma||', 'here', '||comma||', 'somebody', 'wants', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'tony', '||comma||', 'y', '||dash||', 'you', 'better', 'bring', 'that', 'car', 'back', '||exclammark||', '||return||', '||return||', 'tony:', '||leftparen||', 'angry', '||rightparen||', "nobody's", 'giving', 'anything', 'back', '||exclammark||', 'you', 'tried', 'to', 'take', 'it', 'from', 'me', '||comma||', 'i', "don't", 'forget', 'that', '||period||', '||return||', '||return||', 'jerry:', 'tony', '||comma||', 'it', 'is', 'my', 'car', '||comma||', 'and', 'i', 'want', 'it', 'back', '||exclammark||', '||return||', '||return||', 'tony:', 'oh', '||comma||', 'your', 'car', '||period||', 'you', 'want', 'your', 'car', 'back', '||exclammark||', '||return||', '||return||', 'jerry:', 'tony', '||period||', '||return||', '||return||', 'tony:', 'listen', '||comma||', 'that', 'registration', 'may', 'have', 'your', 'name', 'on', 'it', '||comma||', 'jerry', '||period||', 'but', 'this', "engine's", 'running', 'on', 'my', 'sweat', 'and', 'my', 'blood', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'exasperated', '||rightparen||', 'where', 'do', 'i', 'find', 'these', 'guys', '||questionmark||', '||return||', '||return||', 'newman:', 'how', 'much', 'gas', 'we', 'got', '||questionmark||', '||return||', '||return||', 'kramer:', 'three', 'quarters', 'of', 'a', 'tank', '||period||', '||return||', '||return||', 'kramer:', "that's", 'better', 'than', 'we', 'estimated', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'smugly', '||rightparen||', 'that', 'is', 'seven', 'dollars', 'and', 'twenty', '||dash||', 'two', 'cents', 'better', '||period||', '||return||', '||return||', 'newman:', 'maybe', 'we', 'could', 'uh', '||comma||', 'stop', 'for', 'a', 'snack', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'no', '||comma||', "that's", 'not', 'in', 'the', 'budget', '||period||', '||return||', '||return||', 'newman:', 'yeah', 'well', '||comma||', 'the', 'budget', 'changed', '||comma||', 'you', 'know', '||period||', 'i', 'mean', '||comma||', 'it', 'might', 'be', 'a', 'good', 'investment', '||period||', '||return||', '||return||', 'kramer:', "that's", 'not', 'a', 'good', 'investment', '||comma||', "that's", 'a', 'loss', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "d'you", 'see', 'that', 'car', '||questionmark||', 'looks', 'like', "jerry's", '||period||', "i'm", 'gonna', 'check', 'out', 'that', 'license', 'plate', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'those', 'are', 'new', 'york', 'plates', '||period||', '||return||', '||return||', 'newman:', 'is', 'that', "jerry's", 'number', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||comma||', 'but', "that's", 'new', 'york', 'and', "we're", 'in', 'ohio', '||period||', 'those', 'are', 'pretty', 'good', 'odds', '||period||', '||return||', '||return||', 'newman:', "what're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'calling', 'jerry', '||period||', '||return||', '||return||', 'newman:', 'on', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'brought', 'my', 'phone', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'phone', '||rightparen||', "y'hello", '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'hey', 'jerry', '||comma||', "what's", 'your', 'licence', 'plate', 'number', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||comma||', "what's", 'up', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'i', 'think', 'i', 'spotted', 'your', 'car', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', "you're", 'kidding', '||period||', '||leftparen||', 'dives', 'for', 'his', 'wallet', '||rightparen||', 'hang', 'on', 'a', 'second', '||period||', '||leftparen||', 'reading', 'from', 'his', 'registration', '||rightparen||', "it's", 'jvn', '728', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'checks', 'the', 'car', 'ahead', 'of', 'him', '||rightparen||', 'hey', '||comma||', "that's", 'it', '||exclammark||', "that's", 'it', '||period||', 'hey', '||comma||', 'uh', 'look', '||comma||', 'we', 'got', 'him', '||period||', "we're", 'driving', 'right', 'behind', 'him', 'in', 'a', 'truck', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', 'yeah', '||comma||', 'yeah', '||comma||', 'he', 'said', 'he', 'brought', 'it', 'to', 'the', 'country', '||period||', '||return||', '||return||', 'kramer:', 'well', "we're", 'in', 'the', 'country', 'and', "we're", 'right', 'on', 'his', 'tail', '||period||', '||return||', '||return||', 'jerry:', 'good', 'work', 'kramer', '||comma||', 'this', 'is', 'incredible', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "don't", 'worry', 'jerry', '||period||', "we're", 'right', 'on', 'this', 'guy', 'like', 'stink', 'on', 'a', 'monkey', '||exclammark||', "i'll", 'check', 'back', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'elaine', 'benes', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'me', '||period||', 'kramer', 'found', 'the', 'car', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||comma||', 'where', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'somewhere', 'in', 'the', 'country', '||comma||', "they're", 'following', "'em", '||period||', '||return||', '||return||', 'elaine:', 'are', 'the', 'clubs', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', "they're", 'tailing', 'him', '||period||', "i'm", 'waiting', 'for', 'them', 'to', 'call', 'me', 'back', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', "i'm", 'heading', 'over', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', "what's", 'the', 'status', '||questionmark||', '||return||', '||return||', 'jerry:', 'last', 'check', '||dash||', 'in', '||comma||', 'they', 'were', 'still', 'on', 'him', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'have', 'they', 'called', 'the', 'police', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'they', "won't", 'call', 'the', 'police', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'afraid', "they'll", 'get', 'in', 'trouble', 'for', 'misusing', 'a', 'mail', 'truck', '||period||', 'kramer', "doesn't", 'want', 'a', 'record', '||period||', '||return||', '||return||', 'elaine:', 'kramer', 'has', 'a', 'record', '||period||', '||return||', '||return||', 'jerry:', 'not', 'a', 'federal', 'record', '||period||', '||return||', '||return||', 'elaine/jerry:', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'nothing', '||period||', "we're", 'still', 'following', 'him', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'second', '||comma||', "he's", 'getting', 'off', '||period||', 'yeah', '||comma||', "he's", 'gonna', 'be', 'going', 'south', 'on', 'the', 'one', '||dash||', 'thirty', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', 'keep', 'following', 'him', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'alright', '||comma||', "i'll", 'follow', 'him', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'we', "can't", 'follow', 'him', '||comma||', "we're", 'going', 'north', 'to', 'michigan', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'hey', 'listen', '||comma||', 'i', "can't", '||period||', "it's", 'gonna', 'be', 'taking', 'us', 'out', 'of', 'our', 'way', '||period||', '||return||', '||return||', 'elaine:', 'i', 'need', 'those', 'clubs', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', 'want', 'my', 'car', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'know', 'what', 'to', 'do', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'we', 'got', 'ten', 'thousand', 'deposit', 'bottles', 'here', '||period||', 'i', 'mean', '||comma||', 'this', 'guy', 'could', 'be', 'going', 'to', 'arkansas', '||period||', '||return||', '||return||', 'jerry:', 'keep', 'following', 'him', 'kramer', '||period||', "don't", 'let', 'me', 'down', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', "don't", 'listen', 'to', 'him', '||period||', 'i', 'mean', '||comma||', 'we', "can't", 'afford', 'a', 'detour', '||period||', 'our', 'budget', "won't", 'hold', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'know', 'what', 'to', 'do', 'man', '||exclammark||', '||return||', '||return||', 'newman:', 'kramer', '||exclammark||', 'stay', 'left', '||period||', 'left', '||comma||', 'left', '||comma||', 'left', '||period||', '||return||', '||return||', 'elaine/jerry:', 'right', '||period||', 'go', 'right', '||exclammark||', '/south', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||exclammark||', 'alright', '||period||', "i'm", 'getting', 'off', '||exclammark||', "i'm", 'gonna', 'go', 'on', 'the', 'ramp', '||period||', '||return||', '||return||', 'newman:', 'i', 'hope', 'you', 'realise', 'what', "you've", 'done', '||period||', "you've", 'destroyed', 'our', 'whole', 'venture', '||period||', '||return||', '||return||', 'kramer:', 'this', 'ramp', 'is', 'steep', '||period||', '||return||', '||return||', 'newman:', 'all', 'my', 'work', '||comma||', 'my', 'planning', '||comma||', 'my', 'genius', '||period||', 'all', 'for', 'nought', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'look', '||comma||', "we're", 'pulling', 'too', 'much', 'weight', '||period||', "he's", 'getting', 'away', 'from', 'us', 'here', '||period||', '||leftparen||', 'indicating', '||rightparen||', 'take', 'the', 'wheel', '||period||', '||return||', '||return||', 'newman:', "what're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'climbing', 'though', 'into', 'the', 'back', 'of', 'the', 'truck', '||rightparen||', "i'm", 'gonna', 'get', 'something', '||period||', '||return||', '||return||', 'newman:', 'are', 'you', 'crazy', '||questionmark||', '||return||', '||return||', 'kramer:', 'keep', 'your', 'foot', 'on', 'the', 'gas', '||period||', '||return||', '||return||', 'newman:', 'hey', '||exclammark||', "you're", 'not', 'dumping', 'those', 'bottles', 'back', 'there', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'newman:', 'hey', 'kramer', '||comma||', 'those', 'have', 'wholesale', 'value', '||exclammark||', 'we', 'could', 'cut', 'our', 'losses', '||period||', '||return||', '||return||', 'kramer:', 'look', 'out', 'below', '||exclammark||', '||exclammark||', '||return||', '||return||', '[yankee', 'stadium:', "steinbrenner's", 'office]', '||return||', '||return||', 'steinbrenner:', '||leftparen||', 'to', 'himself', '||rightparen||', 'with', 'this', 'magnifying', 'glass', '||comma||', 'i', 'feel', 'like', 'a', 'scientist', '||period||', '||return||', '||return||', 'george:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'ah', '||comma||', 'come', 'in', 'george', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'steinbrenner:', 'uh', '||comma||', 'wilhelm', 'gave', 'me', 'this', 'project', 'you', 'worked', 'on', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'yes', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'let', 'me', 'ask', 'you', 'something', '||comma||', 'george', '||period||', 'you', 'having', 'any', 'personal', 'problems', 'at', 'home', '||questionmark||', 'girl', 'trouble', '||comma||', 'love', 'trouble', 'of', 'any', 'kind', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'wondering', 'where', 'this', 'is', 'leading', '||rightparen||', 'no', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'what', 'about', 'drugs', '||questionmark||', 'you', 'doing', 'some', 'of', 'that', 'crack', 'cocaine', '||questionmark||', 'you', 'on', 'the', 'pipe', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'worried', 'now', '||rightparen||', 'no', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'are', 'you', 'seeing', 'a', 'psychiatrist', '||questionmark||', 'bcause', 'i', 'got', 'a', 'flash', 'for', 'you', 'young', 'man', '||comma||', "you're", 'non', 'compos', 'mentis', '||exclammark||', 'you', 'got', 'some', 'bats', 'in', 'the', 'belfry', '||exclammark||', '||return||', '||return||', 'george:', "what're", '||period||', '||period||', "what're", 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'george', '||comma||', "i've", 'read', 'this', 'report', '||period||', "it's", 'very', 'troubling', '||comma||', 'very', 'troubling', 'indeed', '||period||', "it's", 'a', 'sick', 'mind', 'at', 'work', 'here', '||period||', '||return||', '||return||', 'steinbrenner:', 'okay', '||comma||', 'come', 'on', 'boys', '||comma||', 'come', 'on', 'in', 'here', '||period||', 'george', '||comma||', 'this', 'is', 'herb', 'and', 'dan', '||period||', '||return||', '||return||', 'steinbrenner:', "they're", 'gonna', 'take', 'you', 'away', 'to', 'a', 'nice', 'place', 'where', 'you', 'can', 'get', 'some', 'help', '||period||', "they're", 'very', 'friendly', 'people', 'there', '||period||', 'my', 'brother', '||dash||', 'in', '||dash||', 'law', 'was', 'there', 'for', 'a', 'couple', 'of', 'weeks', '||period||', 'the', 'man', 'was', 'obsessed', 'with', 'lactating', 'women', '||period||', 'they', 'completely', 'cured', 'him', '||comma||', 'although', 'he', 'still', 'eats', 'a', 'lot', 'of', 'cheese', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'see', '||comma||', 'mister', '||period||', '||period||', 'i', "didn't", 'write', 'that', 'report', '||period||', 'that', '||comma||', "that's", 'not', 'mine', '||period||', '||return||', '||return||', 'steinbrenner:', 'of', 'course', 'you', "didn't", 'george', '||period||', 'of', 'course', 'you', "didn't", 'write', 'it', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'do', 'it', '||exclammark||', 'it', '||period||', '||period||', 'it', 'just', 'got', 'done', '||period||', 'i', "don't", 'know', 'how', 'it', 'got', 'done', '||comma||', 'but', 'it', 'did', '||period||', '||return||', '||return||', 'steinbrenner:', 'of', 'course', '||period||', 'of', 'course', 'it', 'got', 'done', '||period||', 'things', 'get', 'done', 'all', 'the', 'time', '||comma||', 'i', 'understand', '||period||', '||leftparen||', 'as', 'george', 'disappears', '||rightparen||', "don't", 'worry', '||comma||', 'your', "job'll", 'be', 'waiting', 'for', 'you', 'when', 'you', 'get', 'back', '||period||', '||leftparen||', 'banging', 'his', 'fist', 'on', 'his', 'desk', '||rightparen||', 'get', 'better', 'george', '||period||', 'get', 'better', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'frustrated', '||rightparen||', 'damn', '||period||', 'i', "don't", 'understand', 'this', '||period||', "i've", 'ditched', 'every', 'bottle', 'and', 'can', '||comma||', 'and', 'we', 'still', "can't", 'gain', '||period||', "it's", 'like', "we're", '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'sluggish', '||period||', '||return||', '||return||', 'newman:', 'i', 'went', 'through', 'all', 'those', 'bottles', 'and', 'all', 'those', 'cans', '||comma||', 'for', 'what', '||questionmark||', 'what', 'a', 'waste', '||period||', 'and', "i'm", 'really', 'gonna', 'catch', 'hell', 'for', 'those', 'missing', 'mailbags', '||period||', '||return||', '||return||', 'kramer:', 'heyy', '||comma||', "wasn't", 'that', 'a', 'pie', 'stand', 'back', 'there', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'perks', 'up', '||rightparen||', 'a', 'pie', 'stand', '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'home', '||dash||', 'made', 'pies', '||comma||', 'two', 'hundred', 'yards', 'back', '||period||', '||return||', '||return||', 'newman:', 'aww', '||comma||', "c'mon", '||comma||', 'pull', 'over', '||comma||', 'pull', 'over', 'will', 'ya', '||period||', '||return||', '||return||', 'newman:', 'where', '||questionmark||', 'i', '||period||', '||period||', 'i', '||period||', '||period||', 'i', "don't", 'see', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', 'open', 'the', 'door', '||comma||', 'you', 'get', 'a', 'better', 'look', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'see', 'any', 'pie', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', '||period||', '||period||', '||period||', 'aargh', '||exclammark||', '||return||', '||return||', 'newman:', 'kramer', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', "i'm", 'sorry', 'newman', '||comma||', 'you', 'were', 'holding', 'us', 'back', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'after', 'speeding', 'truck', '||rightparen||', 'kramer', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouting', '||rightparen||', 'jerry', '||exclammark||', "we've", 'lost', 'the', 'fat', 'man', '||comma||', 'and', "we're", 'running', 'lean', '||period||', "we're", 'back', 'on', 'track', '||comma||', 'buddy', '||exclammark||', '||return||', '||return||', 'newman:', 'federal', 'employee', '||period||', 'federal', 'employee', '||period||', '||return||', '||return||', 'farmer:', 'hello', 'stranger', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'a', 'touch', 'desperate', '||rightparen||', 'ah', '||comma||', 'look', '||comma||', 'i', '||period||', '||period||', "i'm", 'sorry', 'to', 'bother', 'you', '||comma||', 'but', "i'm", 'a', 'us', 'postal', 'worker', 'and', 'my', 'mail', 'truck', 'was', 'just', 'ambushed', 'by', 'a', 'band', 'of', 'backwoods', 'mail', '||dash||', 'hating', 'survivalists', '||period||', '||return||', '||return||', 'farmer:', 'calm', 'down', '||comma||', 'now', '||period||', 'calm', 'down', '||period||', "don't", 'worry', '||comma||', "we'll", 'take', 'care', 'of', 'you', '||period||', 'this', 'farm', "ain't", 'much', '||comma||', 'but', 'uh', '||comma||', "you're", 'welcome', 'to', 'what', 'we', 'have', '||period||', 'hot', 'bath', '||comma||', 'hearty', 'meal', '||comma||', 'clean', 'bed', '||period||', '||return||', '||return||', 'newman:', 'oh', '||comma||', 'thank', 'you', '||comma||', 'sir', '||period||', '||return||', '||return||', 'farmer:', 'just', 'have', 'one', 'rule', '||period||', 'keep', 'your', 'hands', 'off', 'my', 'daughter', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'we', 'got', "'im", '||period||', "i'm", 'riding', 'his', 'tail', '||period||', "there's", 'no', 'escape', '||period||', "he's", 'running', 'scared', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', "how's", 'the', 'gas', 'situation', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'checks', 'dial', '||rightparen||', 'i', 'got', 'enough', 'to', 'get', 'to', 'memphis', '||period||', '||return||', '||return||', 'kramer:', "he's", 'reaching', 'in', 'back', '||period||', "he's", 'grabbing', 'at', 'something', '||period||', '||return||', '||return||', 'kramer:', "he's", 'pulling', 'out', 'a', 'gun', '||exclammark||', "he's", 'got', 'a', 'gun', '||comma||', 'jerry', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'duck', '||comma||', 'kramer', '||exclammark||', 'duck', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'a', 'golf', 'club', '||exclammark||', "it's", 'no', 'gun', '||period||', 'he', 'threw', 'a', 'golf', 'club', 'at', 'me', '||exclammark||', '||return||', '||return||', 'elaine:', 'those', 'are', "jfk's", 'golf', 'clubs', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'm", 'under', 'fire', 'here', '||period||', '||leftparen||', 'another', 'club', 'hits', '||rightparen||', "i'm", 'under', 'heavy', 'fire', 'here', '||comma||', 'boy', '||period||', '||leftparen||', 'another', 'hit', '||rightparen||', 'jeez', '||exclammark||', 'that', 'was', 'a', 'five', '||dash||', 'iron', '||exclammark||', '||return||', '||return||', 'elaine:', 'stop', 'the', 'truck', '||comma||', 'kramer', '||period||', 'pick', 'up', 'the', 'clubs', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "don't", 'stop', '||comma||', 'kramer', '||period||', 'keep', 'going', '||comma||', "don't", 'let', 'him', 'get', 'away', '||period||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'minute', '||comma||', 'i', 'think', "he's", 'done', '||period||', '||leftparen||', 'peers', 'at', 'the', 'saab', '||rightparen||', 'oh', 'no', '||comma||', "he's", 'taking', 'out', 'the', 'woods', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'noise', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yelling', 'at', 'tony', '||rightparen||', "you'll", 'have', 'to', 'do', 'a', 'lot', 'better', 'than', 'that', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hearing', 'the', 'noises', '||rightparen||', "what's", 'happening', '||exclammark||', '||return||', '||return||', 'kramer:', 'this', 'truck', 'is', 'dying', '||period||', "we're", 'losing', 'him', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', 'we', 'lost', 'him', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disappointment', '||rightparen||', 'dammit', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quietly', '||rightparen||', 'can', 'you', 'stop', 'and', 'pick', 'up', 'those', 'clubs', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'subdued', '||rightparen||', 'yeah', '||comma||', 'yeah', '||comma||', "i'll", 'get', "'em", '||period||', '||return||', '||return||', 'farmer:', 'enjoy', 'that', 'mutton', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'mouth', 'full', '||rightparen||', "it's", 'delicious', 'mutton', '||period||', 'this', 'is', 'uh', '||comma||', 'this', 'is', 'outta', 'sight', '||period||', 'i', 'would', '||comma||', 'i', 'would', 'love', 'to', 'get', 'the', 'recipe', '||period||', "it's", 'very', 'good', '||period||', '||return||', '||return||', 'farmer:', 'that', 'cider', 'too', 'strong', 'for', 'you', '||questionmark||', '||return||', '||return||', 'newman:', 'no', '||comma||', 'no', '||period||', 'i', 'love', 'strong', 'cider', '||period||', '||leftparen||', 'for', 'the', "farmer's", "daughter's", 'benefit', '||rightparen||', "i'm", 'a', 'big', '||comma||', 'strong', '||comma||', 'cider', 'guy', '||period||', '||return||', '||return||', 'farmer:', 'gonna', 'be', 'milking', 'holsteins', 'in', 'the', 'morning', '||comma||', 'if', "you'd", 'like', 'to', 'lend', 'a', 'hand', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'reluctant', '||rightparen||', 'you', 'know', '||comma||', 'i', "don't", 'really', 'know', 'that', 'much', 'about', 'uh', '||period||', '||period||', 'i', "don't", 'have', 'any', '||period||', '||period||', 'i', "don't", '||period||', '||period||', 'i', "don't", 'think', 'i', 'know', 'much', 'about', 'that', '||period||', '||return||', '||return||', 'farmer:', 'ahh', '||comma||', 'susie', "here'll", 'teach', 'you', '||period||', '||return||', '||return||', 'farmer:', 'just', 'gotta', 'pull', 'on', 'the', 'teat', 'a', 'little', '||period||', '||return||', '||return||', 'susie:', '||leftparen||', 'suggestive', '||rightparen||', 'nice', 'having', 'a', 'big', '||comma||', 'strong', '||comma||', 'man', 'around', '||period||', '||return||', '||return||', 'newman:', 'you', 'know', '||comma||', 'those', 'mail', 'bags', '||comma||', 'they', 'get', 'mighty', 'heavy', '||period||', 'i', 'uh', '||comma||', 'i', 'nautilus', '||comma||', 'of', 'course', '||period||', '||leftparen||', 'puffs', 'out', 'his', 'chest', '||rightparen||', '||return||', '||return||', 'newman:', '||leftparen||', 'breaking', 'from', 'his', 'pose', '||rightparen||', 'can', 'i', 'have', 'some', 'gravy', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'desperate', '||rightparen||', 'steinbrenner', 'had', 'me', 'committed', '||exclammark||', "i'm", 'in', 'the', 'nuthouse', '||exclammark||', '||return||', '||return||', 'deena:', "i'll", 'be', 'back', 'same', 'time', 'next', 'week', '||comma||', 'pop', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'quieter', 'desperation', '||rightparen||', 'they', 'took', 'my', 'belt', '||comma||', 'jerry', '||period||', 'i', 'got', 'nothing', 'to', 'hold', 'my', 'pants', 'up', '||period||', '||leftparen||', 'listens', '||rightparen||', 'well', '||comma||', 'you', 'gotta', 'come', 'over', 'here', 'now', '||exclammark||', 'just', 'tell', "'em", 'what', 'we', 'talked', 'about', '||comma||', 'how', 'i', '||comma||', 'how', 'i', '||comma||', 'i', "didn't", 'do', 'the', 'project', '||period||', '||return||', '||return||', 'deena:', 'george', '||questionmark||', '||return||', '||return||', 'deena:', 'i', 'see', "you're", 'finally', 'getting', 'some', 'help', '||period||', '||return||', '||return||', 'george:', 'aw', '||comma||', 'hoh', '||comma||', 'oh', 'deena', '||comma||', 'thank', 'god', '||period||', '||leftparen||', 'he', 'hugs', 'deena', '||rightparen||', 'thank', 'god', "you're", 'here', '||period||', 'listen', '||comma||', 'you', 'gotta', 'help', 'me', '||period||', 'you', 'gotta', 'tell', 'these', 'people', 'that', "i'm", 'okay', '||period||', 'you', 'know', 'that', 'i', "don't", 'belong', 'in', 'here', '||period||', '||return||', '||return||', 'deena:', 'george', '||comma||', 'this', 'is', 'the', 'best', 'thing', 'for', 'you', '||period||', '||leftparen||', 'she', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', 'yea', '||period||', '||period||', '||period||', '||leftparen||', 'sinks', 'in', '||rightparen||', 'what', '||questionmark||', 'no', '||comma||', 'no', '||exclammark||', '||return||', '||return||', 'george:', 'deena', '||exclammark||', 'deena', '||comma||', 'wait', 'a', '||period||', '||period||', '||period||', 'deena', '||comma||', 'help', '||exclammark||', '||return||', '||return||', 'pop:', 'is', 'that', 'little', 'georgie', 'c', '||questionmark||', "how's", 'the', 'folks', '||questionmark||', 'you', 'still', 'got', 'that', 'nice', 'little', 'car', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'screaming', 'in', 'panic', '||rightparen||', 'aaah', '||exclammark||', '||exclammark||', 'aaah', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'you', 'doing', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'pushing', 'past', 'kramer', '||rightparen||', 'kramer', '||comma||', 'help', 'me', '||exclammark||', 'help', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'takes', 'one', 'look', 'and', 'sets', 'off', 'after', 'newman', '||rightparen||', 'jeez', '||exclammark||', '||return||', '||return||', 'farmer:', '||leftparen||', 'taking', 'aim', '||rightparen||', 'i', 'told', 'you', 'to', 'keep', 'away', 'from', 'my', 'daughter', '||exclammark||', '||return||', '||return||', 'susie:', 'no', 'daddy', '||comma||', "you'll", 'hurt', 'him', '||exclammark||', 'i', 'love', 'him', '||exclammark||', '||leftparen||', 'waving', 'after', 'newman', '||rightparen||', 'goodbye', 'norman', '||comma||', 'goodbye', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'excited', '||rightparen||', 'elaine', '||exclammark||', 'you', 'found', 'the', 'clubs', '||period||', "that's", 'wonderful', 'news', '||period||', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'the', 'soul', 'of', 'happiness', '||rightparen||', 'yep', '||period||', 'lemme', 'get', "'em", 'for', 'you', '||comma||', 'mr', 'peterman', '||period||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', "i'll", 'be', 'inaugrating', 'them', 'this', 'weekend', '||comma||', 'with', 'none', 'other', 'than', 'ethel', 'kennedy', '||period||', 'a', 'woman', 'whose', 'triumph', 'in', 'the', 'face', 'of', 'tragedy', 'is', 'exceeded', 'only', 'by', 'her', 'proclivity', 'to', 'procreate', '||period||', '||return||', '||return||', 'elaine:', 'the', 'uh', '||comma||', 'the', 'letter', 'of', '||comma||', "authenticity's", 'in', 'the', 'side', 'pocket', 'there', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||period||', 'i', 'never', 'knew', 'kennedy', 'had', 'such', 'a', 'temper', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'spotting', 'a', 'chance', 'to', 'keep', 'her', 'job', '||rightparen||', 'oh', '||period||', 'oh', 'yeah', '||period||', 'the', 'only', 'thing', 'worse', 'was', 'his', 'slice', '||period||', '||leftparen||', 'she', 'laughs', 'nervously', '||rightparen||', '||return||', '||return||', 'peterman:', 'see', 'you', 'on', 'monday', '||period||', '||return||', '||return||', 'elaine:', 'have', 'a', 'good', 'game', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'hairdo', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'up', 'from', 'a', 'menu', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'look', 'like', 'brenda', 'starr', '||period||', '||return||', '||return||', 'elaine:', 'is', 'that', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'better', 'than', 'dondi', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'my', 'god', '||comma||', 'look', 'at', 'that', '||period||', '||leftparen||', 'jerry', 'looks', 'over', 'at', 'the', 'table', '||period||', 'a', 'man', 'and', 'a', 'woman', 'are', 'dining', '||rightparen||', 'david', 'and', 'beth', 'lookner', '||period||', '||leftparen||', 'leaning', 'in', 'for', 'confidentiality', '||rightparen||', 'you', 'know', '||comma||', 'i', 'heard', 'a', 'rumor', 'their', 'marriage', 'was', 'a', 'little', 'rocky', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'interested', '||comma||', 'still', 'looking', 'at', 'the', 'couple', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'have', 'a', 'little', 'thing', 'for', 'beth', 'lookner', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'have', 'to', 'admit', '||comma||', "i've", 'always', 'thought', 'david', 'was', 'kind', 'of', 'sponge', '||dash||', 'worthy', '||period||', '||leftparen||', 'winks', '||comma||', 'making', 'a', 'clicking', 'sound', 'with', 'her', 'tongue', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', "i've", 'been', "waitin'", 'out', 'their', 'marriage', 'for', 'three', 'years', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'me', 'too', '||period||', 'well', '||comma||', "i've", 'been', 'waiting', 'out', 'two', 'or', 'three', 'marriages', '||comma||', 'but', 'this', 'is', 'the', 'one', 'i', 'really', 'had', 'my', 'eye', 'on', '||period||', '||return||', '||return||', 'george:', 'this', 'car', 'out', 'there', 'is', 'taking', 'up', '||comma||', 'like', '||comma||', 'three', 'parking', 'spaces', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', '||leftparen||', 'laughs', 'at', "george's", 'misfortune', '||rightparen||', "that's", 'mine', '||period||', '||return||', '||return||', 'george:', 'you', 'have', 'a', 'car', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'my', 'friend', '||comma||', 'elise', '||comma||', 'lent', 'it', 'to', 'me', 'for', 'the', 'week', '||period||', "she's", 'out', 'of', 'town', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'noting', '||rightparen||', 'you', 'know', '||comma||', "i've", 'never', 'seen', 'you', 'drive', '||period||', '||return||', '||return||', 'george:', 'me', 'either', '||period||', '||return||', '||return||', 'beth:', '||leftparen||', 'unsure', 'as', 'to', 'whether', "it's", 'him', 'or', 'not', '||rightparen||', 'jerry', '||questionmark||', 'elaine', '||comma||', 'hi', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'overly', 'generous', '||rightparen||', 'hi', '||comma||', 'david', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'beth', '||exclammark||', '||return||', '||return||', 'beth:', 'oh', '||comma||', 'uh', '||comma||', 'george', '||comma||', '||leftparen||', 'introducing', 'to', 'two', '||rightparen||', 'this', 'is', 'my', 'husband', '||comma||', 'david', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hi', '||period||', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||rightparen||', '||return||', '||return||', 'david:', 'hello', '||period||', 'so', '||comma||', 'george', '||comma||', 'uh', '||comma||', "you're", 'the', 'one', 'who', 'works', 'for', 'the', 'yankees', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'why', '||comma||', 'what', 'do', 'you', 'do', '||questionmark||', '||return||', '||return||', 'david:', 'well', '||comma||', 'i', 'sell', 'insurance', '||comma||', 'but', 'beth', 'used', 'to', 'be', 'don', "mattingly's", 'doctor', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'beth:', 'mm', '||dash||', 'hm', '||period||', '||return||', '||return||', 'david:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', 'slightly', '||rightparen||', 'a', 'physician', 'married', 'to', 'a', 'salesman', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'well', '||comma||', 'i', 'gotta', 'tell', 'you', '||comma||', 'beth', '||comma||', 'you', 'coulda', 'done', 'a', 'lot', 'better', 'than', 'him', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'hey', '||comma||', 'mickey', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'mickey:', "i'm", 'very', 'nervous', '||period||', "i'm", 'auditioning', 'to', 'be', 'in', 'the', "actor's", 'studio', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'a', 'method', '||comma||', 'jerry', '||period||', "it's", 'intense', '||period||', '||leftparen||', 'clicks', 'his', 'tongue', '||rightparen||', '||return||', '||return||', 'mickey:', "kramer's", 'going', 'to', 'be', 'my', 'scene', 'partner', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', '||return||', '||return||', 'mickey:', 'he', "doesn't", 'have', 'to', 'say', 'anything', '||comma||', 'he', 'just', 'has', 'to', 'sit', 'there', '||period||', "i'm", 'playing', 'a', 'detective', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', "i'm", 'playing', 'a', 'business', 'man', 'accused', 'of', 'murder', '||period||', '||return||', '||return||', 'jerry:', 'ohh', 'boy', '||period||', 'well', '||comma||', 'i', 'gotta', 'meet', 'elaine', 'and', 'run', 'some', 'errands', '||period||', 'so', '||period||', '||period||', '||leftparen||', 'goes', 'for', 'his', 'coat', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'fixing', 'up', 'his', 'pants', '||rightparen||', 'yeah', '||period||', '||period||', 'look', 'at', 'this', '||comma||', 'mickey', '||period||', 'these', 'pants', 'are', "fallin'", 'apart', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'fishing', 'for', 'his', 'keys', 'in', 'a', 'kitchen', 'drawer', '||rightparen||', 'you', 'know', '||comma||', 'when', 'i', 'first', 'met', 'you', '||comma||', 'kramer', '||comma||', 'you', 'used', 'to', 'wear', 'jeans', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'over', "mickey's", 'shoulder', 'at', 'the', 'script', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', 'i', 'was', 'a', 'different', 'man', 'then', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jokingly', 'playing', 'off', "kramer's", 'statement', '||rightparen||', 'with', 'a', 'different', 'body', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'slightly', 'offended', '||rightparen||', 'hey', '||comma||', 'i', 'got', 'the', 'body', 'of', 'a', '||period||', '||period||', 'taught', '||comma||', 'pre', '||dash||', 'teen', '||comma||', 'swedish', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'ehh', '||comma||', 'i', 'dunno', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', 'what', 'are', 'you', "thinkin'", '||questionmark||', '||leftparen||', 'getting', 'upset', '||rightparen||', 'you', 'think', 'that', "i'm", 'not', 'able', 'to', 'wear', 'jeans', 'anymore', '||questionmark||', 'is', 'that', 'what', "you're", "sayin'", '||questionmark||', 'because', 'if', "that's", 'what', "you're", "sayin'", '||comma||', 'jerry', '||comma||', "i'll", 'go', 'and', "i'll", 'buy', 'some', 'jeans', '||period||', '||leftparen||', 'jerry', 'shrugs', '||period||', 'kramer', 'raises', 'his', 'voice', 'to', 'a', 'menacing', 'tone', '||rightparen||', 'i', 'swear', 'to', 'god', 'i', 'will', '||exclammark||', '||leftparen||', "jerry's", 'showing', 'off', 'a', 'skeptical', 'face', '||period||', '||return||', '||return||', '[setting:', "elaine's", 'car]', '||return||', '||return||', 'elaine:', 'god', '||comma||', 'it', 'is', 'so', 'great', 'to', 'drive', 'again', '||period||', 'i', 'miss', 'it', 'so', 'much', '||exclammark||', '||leftparen||', 'suddenly', 'swerves', 'to', 'the', 'right', '||comma||', 'then', 'yells', 'out', 'of', 'her', 'window', '||rightparen||', 'how', 'about', 'a', 'left', 'turn', 'signal', '||comma||', 'ya', 'moron', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'his', 'thoughts', '||rightparen||', "i'm", 'so', 'nauseous', '||period||', "she's", 'the', 'worst', 'driver', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||questionmark||', 'on', 'my', 'first', 'road', 'test', '||comma||', 'i', 'hit', 'a', 'dog', '||period||', '||leftparen||', 'jerry', 'nods', '||comma||', 'blinking', '||rightparen||', 'i', 'think', 'it', 'was', 'a', 'golden', 'retriever', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'it', 'was', 'a', '||dash||', 'it', 'was', 'a', 'yellow', 'lab', '||period||', '||leftparen||', 'picks', 'up', 'the', 'car', 'phone', '||rightparen||', "i'm", 'gonna', 'check', 'my', 'messages', '||period||', '||leftparen||', 'begins', 'to', 'dial', 'as', 'she', 'pulls', 'up', 'to', 'a', 'pedestrian', 'crosswalk', '||period||', 'she', 'stops', 'right', 'before', 'hitting', 'a', 'man', 'crossing', 'the', 'street', '||rightparen||', '||return||', '||return||', 'man:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'once', 'again', '||comma||', 'the', 'audience', 'hears', 'his', 'thoughts', '||rightparen||', "i'm", 'so', 'car', 'sick', '||period||', "i'm", 'gonna', 'vomit', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||exclammark||', 'jerry', '||exclammark||', 'my', 'friend', '||comma||', 'kim', 'called', '||dash||', 'david', 'and', 'beth', 'got', 'separated', 'last', 'night', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'out', 'of', 'it', '||rightparen||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', "they're", "gettin'", 'divorced', '||exclammark||', '||leftparen||', 'quickly', 'breaks', '||comma||', 'stopping', 'traffic', '||rightparen||', '||return||', '||return||', '[setting:', "monk's", 'coffee', 'shop]', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'now', '||comma||', 'what', 'is', 'our', 'move', '||questionmark||', 'what', 'do', 'we', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'but', 'we', "don't", 'have', 'much', 'time', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'agreeing', '||rightparen||', 'mm', '||period||', '||return||', '||return||', 'jerry:', 'the', "city's", 'probably', 'teeming', 'with', 'people', "who've", 'been', 'waiting', 'out', 'that', 'marriage', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||return||', '||return||', 'jerry:', "it's", 'like', 'when', 'tenant', 'dies', 'in', 'a', 'rent', 'controlled', 'building', '||dash||', 'you', 'gotta', 'take', 'immediate', 'action', '||period||', '||return||', '||return||', 'elaine:', 'yeeah', '||comma||', 'but', 'david', 'and', 'beth', 'are', 'going', 'to', 'need', 'their', 'grieving', 'time', '||period||', '||return||', '||return||', 'jerry:', 'their', 'grieving', 'time', 'is', 'a', 'luxury', 'i', "can't", 'afford', '||period||', "i'm", 'calling', 'beth', 'tonight', '||comma||', 'and', 'if', 'you', 'want', 'a', 'clean', 'shot', 'at', 'david', '||comma||', 'i', 'suggest', 'you', 'do', 'likewise', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'nodding', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'but', 'we', 'gotta', 'make', 'it', 'seem', 'like', "we're", 'not', 'calling', 'for', 'dates', '||period||', '||return||', '||return||', 'elaine:', 'then', 'why', 'are', 'we', 'calling', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', 'question', '||period||', '||leftparen||', 'more', 'to', 'himself', 'than', 'to', 'elaine', '||rightparen||', 'why', 'are', 'we', 'calling', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||exclammark||', '||leftparen||', 'jerry', 'has', 'a', 'surprised', 'look', '||rightparen||', "i've", 'got', 'it', '||exclammark||', "i've", 'got', 'it', '||exclammark||', "we're", 'calling', 'just', 'to', 'say', '||comma||', '||quotemark||', "i'm", 'there', 'for', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nodding', '||comma||', 'trying', 'it', 'out', '||rightparen||', '||quotemark||', "i'm", 'there', 'for', 'you', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'then', '||comma||', 'after', 'a', 'period', 'of', 'being', '||quotemark||', 'there', 'for', 'you', '||quotemark||', '||comma||', 'we', 'slowly', 'remove', 'the', 'two', 'words', '||quotemark||', 'for', 'you', '||quotemark||', '||comma||', 'and', "we're", 'just', '||leftparen||', 'makes', 'a', '||quotemark||', 'ta', '||dash||', 'da', '||exclammark||', '||quotemark||', 'gesture', '||rightparen||', '||quotemark||', 'there', '||quotemark||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'remember', 'beth', 'and', 'david', 'from', 'yesterday', '||questionmark||', 'they', 'got', 'separated', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||leftparen||', 'realizes', '||rightparen||', 'well', '||comma||', 'you', "don't", 'think', 'it', 'had', 'anything', 'to', 'do', 'with', 'what', 'i', 'said', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "what'd", 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'that', '||comma||', 'that', 'thing', 'about', 'her', 'being', 'too', 'good', 'for', 'him', '||period||', 'i', 'mean', '||comma||', 'i', 'was', 'just', "bein'", 'folksy', '||period||', 'they', 'could', 'tell', 'i', 'was', 'just', 'being', 'folksy', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'thought', 'you', 'were', 'being', 'folksy', '||period||', '||return||', '||return||', 'george:', 'totally', 'folksy', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'uh', '||period||', '||period||', '||leftparen||', 'kramer', 'walks', 'around', 'a', 'little', '||rightparen||', "what'd", 'you', 'get', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||comma||', 'i', 'bought', 'dungarees', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', "they're", 'painted', 'on', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "they're", 'slim', '||dash||', 'fit', '||period||', '||return||', '||return||', 'jerry:', 'slim', '||dash||', 'fit', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'talking', 'fast', '||rightparen||', 'yeah', '||comma||', "they're", 'streamlined', '||period||', '||return||', '||return||', 'jerry:', "you're", "walkin'", 'like', 'frankenstein', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'making', 'his', 'way', 'toward', 'the', 'door', '||rightparen||', 'what', '||questionmark||', 'they', 'just', 'gotta', 'be', 'worked', 'in', 'a', 'little', 'bit', '||comma||', "that's", 'all', '||period||', '||leftparen||', 'pulling', 'the', 'door', 'shut', 'behind', 'him', '||rightparen||', 'alright', '||comma||', 'see', 'you', 'later', '||period||', '||return||', '||return||', '[setting:', "elaine's", 'apartment]', '||return||', '||return||', 'elaine:', '||leftparen||', 'mock', 'sympathy', '||rightparen||', 'well', '||period||', '||period||', 'david', '||comma||', 'it', 'happens', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'beth', '||comma||', 'these', 'things', 'happen', '||period||', '||leftparen||', 'brief', 'pause', '||rightparen||', 'so', '||comma||', 'have', 'you', 'told', 'many', '||period||', '||period||', 'people', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "it's", 'really', "nobody's", 'business', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'i', 'just', 'called', 'to', 'tell', 'you', 'that', '||comma||', "i'm", 'there', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', '||quotemark||', 'there', '||quotemark||', 'is', '||comma||', 'um', '||period||', '||period||', 'anywhere', 'you', 'want', 'me', 'to', 'be', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'dinner', 'would', 'be', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'and', 'i', 'could', 'just', 'be', 'there', '||period||', '||leftparen||', 'adding', '||rightparen||', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'gotta', 'help', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "can't", 'get', 'my', 'pants', 'off', '||comma||', 'and', "mickey's", 'audition', 'is', 'in', 'twenty', 'minutes', '||exclammark||', 'you', 'know', '||comma||', "i'm", 'supposed', 'to', 'be', 'a', 'business', 'man', '||comma||', 'i', 'gotta', 'be', 'in', 'costume', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||period||', 'uh', '||comma||', 'undo', 'them', '||period||', "i'll", 'help', 'you', 'get', 'them', 'off', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'bracing', 'himself', 'on', 'a', 'bar', 'stool', '||rightparen||', 'yeah', '||comma||', 'i', 'already', 'did', 'it', '||period||', 'it', "won't", 'come', 'off', '||period||', 'the', "zipper's", 'suck', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walks', 'over', 'and', 'starts', 'pulling', 'on', "kramer's", 'pants', '||rightparen||', 'you', 'just', 'gotta', 'wiggle', 'your', 'hips', 'a', 'little', 'bit', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'wiggling', 'and', 'floppin', '||rightparen||', 'pull', 'down', '||return||', '||return||', 'jerry:', '||leftparen||', 'stops', 'pulling', 'on', 'the', 'pants', '||rightparen||', 'alright', '||comma||', 'alright', '||comma||', "that's", 'no', 'good', '||period||', '||leftparen||', 'moves', 'kramer', 'over', 'to', 'the', 'couch', '||rightparen||', 'let', 'me', 'try', 'getting', 'them', 'from', 'the', 'bottom', '||period||', '||leftparen||', 'goes', 'for', "kramer's", 'leg', '||rightparen||', 'just', 'gimme', 'one', 'leg', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'feet', 'off', 'the', 'ground', '||comma||', 'his', 'body', 'going', 'everywhere', 'on', 'the', 'couch', '||rightparen||', 'wait', '||comma||', 'jerry', '||period||', '||period||', '||period||', 'wait', 'a', 'minu', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'pulling', 'on', "kramer's", 'pants', 'from', 'the', 'ankles', '||rightparen||', 'man', 'these', 'are', 'tight', '||period||', '||leftparen||', 'yanking', '||rightparen||', 'squinch', 'your', 'hips', 'in', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'pulling', '||rightparen||', 'squinch', 'em', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'getting', 'pulled', 'and', 'pulled', '||rightparen||', 'i', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', 'ei', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stops', '||rightparen||', 'alright', '||comma||', "that's", 'not', 'gonna', 'work', '||comma||', "it's", 'not', 'gonna', 'work', '||period||', 'let', 'me', 'just', 'think', 'for', 'a', 'second', 'here', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'starts', 'to', 'tilt', 'back', 'onto', 'the', 'couch', '||rightparen||', 'you', 'better', 'get', 'me', '||period||', '||leftparen||', 'falls', 'back', 'and', 'jerry', 'starts', 'to', 'him', 'upright', '||rightparen||', 'get', 'me', 'up', '||comma||', 'get', 'me', 'up', '||comma||', 'get', 'me', 'up', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'it', '||comma||', 'hold', 'it', '||period||', '||period||', '||period||', 'look', 'your', 'gonna', 'need', 'the', 'jaws', 'of', 'life', 'to', 'get', 'out', 'of', 'those', 'things', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'walking', 'toward', 'the', 'door', '||rightparen||', 'look', 'i', "don't", 'have', 'time', 'to', 'wait', '||comma||', "i'm", 'gonna', 'be', 'late', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'kramer', 'waddling', 'out', 'the', 'door', '||rightparen||', 'maybe', 'you', 'can', 'soak', 'in', 'the', 'tub', '||period||', '||return||', '||return||', 'kramer:', 'you', 'better', 'get', 'the', 'door', '||period||', '||return||', '||return||', '[setting:', 'restaurant]', '||return||', '||return||', 'beth:', 'it', 'was', 'nice', 'to', 'get', 'your', 'call', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'just', 'want', 'you', 'to', 'know', "i'm", 'there', 'for', 'you', '||period||', 'course', 'now', "i'm", 'here', 'for', 'you', '||comma||', 'but', 'when', "i'm", 'not', 'here', 'for', 'you', '||comma||', "i'm", 'there', 'for', 'you', '||period||', '||return||', '||return||', 'beth:', '||leftparen||', 'laughing', '||rightparen||', 'well', 'where', 'ever', 'you', 'are', 'i', 'appreciate', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'how', 'did', 'this', 'all', 'happen', '||questionmark||', '||return||', '||return||', 'beth:', 'well', 'actually', '||comma||', 'it', 'had', 'a', 'lot', 'to', 'do', 'with', "george's", 'comment', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stunned', '||rightparen||', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'beth:', 'i', 'thought', 'maybe', 'i', 'could', 'do', 'better', '||period||', '||return||', '||return||', 'jerry:', 'maybe', '||comma||', 'maybe', '||return||', '||return||', 'beth:', 'well', 'it', "wasn't", 'just', 'that', '||comma||', 'i', 'realized', 'after', '3', 'years', 'of', 'marriage', 'that', "david's", 'little', 'quirks', 'were', 'getting', 'on', 'my', 'nerves', 'a', 'little', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'agreeing', '||rightparen||', 'well', 'three', 'years', 'is', 'a', 'long', 'time', 'to', 'be', 'married', '||period||', '||return||', '||return||', 'beth:', 'like', 'in', 'the', 'middle', 'of', 'our', 'fight', 'last', 'night', 'he', 'did', 'this', 'thing', 'that', 'he', 'always', 'does', 'where', 'he', 'asks', 'questions', 'to', 'himself', '||comma||', 'aloud', '||period||', 'and', 'then', 'answers', 'them', '||period||', '||return||', '||return||', 'david:', 'am', 'i', 'happy', 'beth', 'left', 'me', '||questionmark||', 'of', 'course', 'not', '||period||', 'do', 'i', 'hope', 'to', 'pick', 'up', 'the', 'pieces', 'and', 'move', 'on', '||questionmark||', 'absolutely', '||return||', '||return||', 'elaine:', "you're", 'gonna', 'pick', 'up', 'the', 'pieces', '||period||', '||return||', '||return||', 'david:', 'just', 'had', 'our', 'third', 'anniversary', 'on', 'april', '8th', '||return||', '||return||', 'elaine:', '10th', '||return||', '||return||', 'david:', '||leftparen||', 'very', 'sad', '||rightparen||', 'right', '||return||', '||return||', 'elaine:', 'right', '||return||', '||return||', 'david:', '||leftparen||', 'mad', '||rightparen||', 'you', 'know', 'as', 'far', 'as', "i'm", 'concerned', '||comma||', 'this', 'whole', 'thing', 'is', "george's", 'fault', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'david', 'the', 'thing', 'about', 'george', 'is', 'that', "he's", 'an', 'idiot', '||period||', '||return||', '||return||', '[setting:', 'play', 'house]', '||return||', '||return||', 'casting', 'director:', 'alright', '||comma||', 'auditioning', 'next', 'is', 'mickey', 'abbott', '||leftparen||', 'mickey', 'starts', 'looking', 'around', 'for', 'kramer', 'and', 'checks', 'his', 'watch', '||rightparen||', 'doing', 'a', 'scene', 'from', 'the', 'terrance', 'clifford', 'play', '||quotemark||', 'press', 'wounds', 'in', 'ithaca', '||quotemark||', '||return||', '||return||', 'mickey:', '||leftparen||', 'stands', 'up', '||rightparen||', 'sorry', 'my', 'scene', 'partner', "isn't", 'here', 'yet', 'so', 'i', 'guess', 'uh', '||period||', '||period||', '||leftparen||', 'kramer', 'enters', 'and', 'runs', 'into', 'some', 'chairs', '||rightparen||', 'oh', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'quietly', 'talking', 'to', 'kramer', '||rightparen||', "what's", 'with', 'the', 'jeans', "you're", 'supposed', 'to', 'be', 'a', 'business', 'man', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', "it's", 'a', 'long', 'story', '||period||', '||return||', '||return||', 'mickey:', 'well', 'just', 'get', 'up', 'there', '||return||', '||return||', 'mickey:', 'so', '||comma||', 'bradley', '||period||', 'i', 'guess', 'this', 'is', 'the', 'last', 'place', 'you', 'expected', 'to', 'find', 'yourself', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'takes', 'a', 'breath', '||rightparen||', '||return||', '||return||', 'mickey:', 'well', "we're", 'gonna', 'be', 'here', 'a', 'while', 'so', 'take', 'a', 'seat', '||period||', '||leftparen||', 'kramer', 'starts', 'trying', 'to', 'sit', 'down', '||comma||', 'mickey', 'has', 'his', 'back', 'to', 'him', 'and', 'gets', 'out', 'a', 'pack', 'of', 'cigarettes', '||comma||', 'mickey', 'then', 'turns', 'around', 'once', 'he', 'has', 'his', 'cigarette', 'to', 'find', 'kramer', 'struggling', 'to', 'sit', 'down', '||rightparen||', 'you', 'know', 'if', 'it', "hadn't", 'been', 'for', 'that', 'secretary', 'of', 'yours', '||period||', '||period||', '||period||', 'i', 'said', 'sit', 'down', '||exclammark||', '||leftparen||', 'kramer', 'still', 'trying', 'to', 'sit', 'down', '||comma||', 'mickey', 'throws', 'the', 'pack', 'of', 'cigarettes', 'to', 'the', 'floor', '||rightparen||', 'are', 'you', 'deaf', 'bradley', '||questionmark||', '||exclammark||', 'i', 'said', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'trying', 'to', 'sit', 'down', '||comma||', 'says', 'under', 'his', 'breath', '||rightparen||', "i'm", 'trying', '||period||', '{hard', 'to', 'make', 'out}', '||return||', '||return||', 'mickey:', '||leftparen||', 'almost', 'starts', 'to', 'laugh', '||rightparen||', 'bradley', '||exclammark||', '||leftparen||', 'looking', 'to', 'the', 'crowd', '||rightparen||', "it's", 'very', 'important', 'that', 'you', 'sit', 'down', '||leftparen||', 'kramer', 'still', 'trying', 'to', 'sit', 'down', '||rightparen||', 'now', 'for', 'the', 'last', 'time', '||comma||', '||leftparen||', 'angry', '||rightparen||', 'try', 'again', 'to', 'sit', 'down', '||exclammark||', '||leftparen||', 'running', 'at', 'kramer', 'with', 'his', 'arms', 'in', 'the', 'air', '||rightparen||', 'sit', 'down', 'you', 'big', 'stupid', 'ape', '||exclammark||', '||leftparen||', 'mickey', 'tackles', 'kramer', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'did', 'i', 'have', 'a', 'great', 'time', 'with', 'david', 'lickner', 'last', 'night', '||questionmark||', 'i', 'sure', 'did', '||period||', '||leftparen||', 'jerry', 'comes', 'over', 'to', 'the', 'couch', 'with', 'a', 'beverage', 'and', 'sits', 'down', '||rightparen||', 'do', 'i', 'think', 'there', 'is', 'a', 'future', 'here', '||questionmark||', 'i', "don't", 'see', 'why', 'not', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', '||comma||', 'that', 'there', 'for', 'you', 'crap', 'was', 'a', 'stroke', 'of', 'genius', '||period||', '||return||', '||return||', 'elaine:', 'ooooh', '||comma||', 'please', '||period||', '||return||', '||return||', 'jerry:', 'never', 'mind', '||return||', '||return||', 'elaine:', 'ah', 'come', 'on', '||return||', '||return||', 'jerry:', "you're", 'a', 'genius', '||exclammark||', '||return||', '||return||', 'elaine:', 'aaalright', '||exclammark||', '||return||', '||return||', 'elaine:', 'mmmnn', '||comma||', 'georgie', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'confused', '||rightparen||', 'what', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', '||questionmark||', "you're", 'the', 'man', 'of', 'the', 'hour', '||comma||', "that's", "what's", 'going', 'on', '||period||', '||return||', '||return||', 'elaine:', 'right', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'thanks', 'to', 'you', 'and', 'your', 'little', 'comment', 'there', 'to', 'david', 'and', 'beth', '||period||', 'jerry', 'and', 'i', 'are', 'in', 'prime', 'pouncing', 'position', 'to', 'scoop', 'these', 'two', 'up', '||leftparen||', 'jerry', 'and', 'elaine', 'do', 'a', 'little', 'slow', 'dance', 'of', 'joy', '||rightparen||', 'before', 'they', 'know', 'what', 'hit', 'em', '||period||', '||return||', '||return||', 'george:', 'so', 'it', 'was', 'my', 'comment', 'that', 'broke', 'them', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'according', 'to', 'them', '||return||', '||return||', 'elaine:', 'ya', '||return||', '||return||', 'george:', 'i', 'feel', 'terrible', '||comma||', 'i', "can't", 'be', 'responsible', 'for', 'breaking', 'up', 'a', 'marriage', '||period||', 'oh', 'no', '||leftparen||', 'starting', 'moving', 'for', 'the', 'door', '||comma||', 'elaine', 'begins', 'to', 'stop', 'him', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'moving', 'over', 'to', 'block', 'the', 'door', '||rightparen||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'gotta', 'go', 'talk', 'to', 'beth', '||period||', '||return||', '||return||', 'jerry:', 'talk', 'to', 'beth', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'gotta', 'undo', 'what', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'undoing', 'anything', '||period||', '||return||', '||return||', 'george:', 'oh', 'yes', 'i', 'am', '||return||', '||return||', 'jerry:', 'oh', 'no', "you're", 'not', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'starts', 'to', 'try', 'to', 'get', 'passed', 'jerry', 'and', 'elaine', '||rightparen||', 'alright', 'get', 'out', 'of', 'my', 'way', '||period||', '||leftparen||', 'jerry', 'and', 'elaine', 'push', 'him', 'back', '||comma||', 'george', 'very', 'annoyed', '||rightparen||', 'alright', "don't", 'make', 'me', 'get', 'physical', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'put', 'her', 'finger', 'in', "george's", 'face', '||rightparen||', 'you', 'be', 'careful', 'george', '||period||', '||return||', '||return||', '[setting:', "beth's", 'apartment]', '||return||', '||return||', 'beth:', '||leftparen||', 'opens', 'the', 'door', 'to', 'reveal', 'a', 'ruffed', 'up', 'george', '||rightparen||', 'george', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'hi', 'beth', '||leftparen||', 'scene', 'ends', 'then', 're', '||dash||', 'begins', 'with', 'beth', 'and', 'george', 'on', "beth's", 'couch', '||rightparen||', 'um', 'anyway', 'jerry', 'told', 'me', 'that', 'uh', '||period||', '||period||', 'it', 'might', 'have', 'been', 'my', 'comment', 'in', 'the', 'coffee', 'shop', 'that', 'broke', 'you', 'up', '||period||', '||return||', '||return||', 'beth:', 'oh', '||comma||', 'well', 'you', 'know', "it's", 'funny', 'george', '||period||', 'sometimes', 'you', "don't", 'know', 'how', "you're", 'really', 'feeling', 'about', 'something', 'until', 'a', 'person', 'like', 'you', 'comes', 'along', 'and', 'articulates', 'it', 'so', 'perfectly', '||period||', '||return||', '||return||', 'george:', 'oh', '||leftparen||', 'snorts', '||rightparen||', 'articulate', '||period||', '||period||', '||period||', '||period||', 'me', '||questionmark||', "i've", 'never', 'articulated', 'anything', '||comma||', "i'm", 'completely', 'incoherent', '||period||', '||return||', '||return||', 'beth:', '||leftparen||', 'gets', 'up', 'to', 'answer', 'the', 'phone', '||rightparen||', 'i', "don't", 'know', 'about', 'that', '||period||', 'hold', 'on', '||leftparen||', 'picks', 'phone', 'up', '||rightparen||', 'hello', '||period||', '||period||', '||period||', 'hi', '||leftparen||', 'pauses', 'for', 'jerry', 'to', 'speak', '||rightparen||', 'ya', 'last', 'night', 'i', 'had', 'a', 'good', 'time', 'too', '||leftparen||', 'pauses', 'for', 'jerry', 'to', 'speak', '||rightparen||', 'really', '||questionmark||', "that's", 'so', 'funny', "he's", 'here', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'talking', 'to', 'beth', 'on', 'the', 'phone', '||rightparen||', 'could', 'you', 'put', 'him', 'on', '||comma||', "i'd", 'love', 'to', 'say', 'hello', '||period||', '||return||', '||return||', 'beth:', '||leftparen||', 'talk', 'to', 'jerry', '||rightparen||', 'sure', '||period||', '||leftparen||', 'starts', 'to', 'hand', 'george', 'the', 'phone', '||rightparen||', 'george', "it's", 'jerry', '||period||', '||return||', '||return||', 'george:', 'he', '||period||', '||period||', 'he', 'wants', 'to', 'talk', 'to', 'me', '||questionmark||', '||return||', '||return||', 'beth:', 'ya', 'he', 'says', 'he', 'wants', 'to', 'say', 'hello', '||period||', '||return||', '||return||', 'george:', 'sweet', 'guy', '||leftparen||', 'receives', 'the', 'phone', 'from', 'beth', '||comma||', 'starts', 'to', 'talk', 'to', 'jerry', '||rightparen||', 'hello', '||return||', '||return||', 'jerry:', 'george', 'what', 'the', 'hell', 'are', 'you', 'doing', 'over', 'there', '||questionmark||', 'i', 'told', 'you', 'to', 'mind', 'your', 'own', 'business', 'now', 'stay', 'out', 'of', 'my', 'affairs', '||exclammark||', '||return||', '||return||', 'george:', 'oh', 'jerry', '||comma||', 'that', 'is', 'so', 'sweet', 'of', 'you', 'but', 'actually', 'i', 'already', 'ate', '||period||', '||return||', '||return||', 'jerry:', 'ate', '||questionmark||', 'what', '||questionmark||', 'what', 'the', 'hell', 'are', 'you', 'talking', 'about', '||questionmark||', 'now', 'you', 'listen', 'to', 'me', '||comma||', 'you', 'get', 'out', 'of', 'that', 'apartment', 'this', 'instant', '||period||', 'if', 'you', 'screw', 'this', 'up', 'for', 'me', 'i', 'swear', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'cuts', 'into', 'jerry', 'talking', '||rightparen||', 'chocolate', 'chip', 'mint', '||questionmark||', 'oh', 'well', '||comma||', 'actually', 'jerry', 'i', 'prefer', 'chocolate', 'chip', '||period||', 'what', 'is', 'it', 'about', 'the', 'chocolate', 'and', 'the', 'mint', 'that', 'makes', 'it', 'go', 'so', 'well', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'of', 'course', 'you', 'can', 'use', 'it', '||comma||', 'sure', '||period||', '||leftparen||', 'jerry', 'saying', 'stuff', 'through', 'the', 'phone', '||rightparen||', 'ok', '||comma||', 'bye', '||period||', '||leftparen||', 'hangs', 'the', 'phone', 'up', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'are', 'you', 'still', 'wearing', 'those', 'things', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'ya', '||comma||', 'i', 'think', 'they', 'are', 'starting', 'to', 'loosen', 'up', 'a', 'bit', '||period||', '||leftparen||', 'mrs', '||period||', 'anvino', 'come', 'to', "jerry's", 'threshold', '||rightparen||', 'oh', 'hi', 'mrs', '||period||', 'anvino', '||period||', '||return||', '||return||', 'mrs', '||period||', 'anvino:', 'oh', 'kramer', 'would', 'you', 'do', 'me', 'a', 'favor', 'my', 'baby', 'sitter', "hasn't", 'show', 'up', 'could', 'you', 'come', 'watch', 'joey', 'for', 'an', 'hour', 'i', 'gotta', 'run', 'out', '||period||', '||return||', '||return||', 'kramer:', 'sure', 'mrs', '||period||', 'anvino', '||comma||', 'ya', '||period||', '||return||', '||return||', 'mrs', '||period||', 'anvino:', "he's", 'sleeping', 'already', '||comma||', 'you', "don't", 'have', 'to', 'do', 'anything', '||comma||', 'just', 'wait', 'till', 'i', 'get', 'back', '||return||', '||return||', 'kramer:', '||leftparen||', 'salutes', 'jerry', 'on', 'his', 'way', 'out', '||rightparen||', 'see', 'you', 'later', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'see', 'you', 'later', '||return||', '||return||', 'jerry:', 'hello', '||return||', '||return||', 'beth:', 'hi', 'jerry', "it's", 'beth', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'excited', '||rightparen||', 'oh', '||comma||', 'hi', 'beth', '||return||', '||return||', 'beth:', 'hi', '||comma||', "i've", 'been', 'doing', 'a', 'lot', 'of', 'thinking', 'today', 'and', 'i', "don't", 'know', 'maybe', 'i', 'made', 'a', 'huge', 'mistake', '||return||', '||return||', 'jerry:', '||leftparen||', 'under', 'his', 'breath', '||rightparen||', 'george', '||period||', '||return||', '||return||', 'beth:', "i'm", 'feeling', 'really', 'confused', '||period||', '||return||', '||return||', 'jerry:', 'um', '||period||', "i'll", 'call', 'you', 'back', 'ok', '||questionmark||', '||return||', '||return||', 'beth:', 'ok', '||return||', '||return||', 'jerry:', 'trouble', '||return||', '||return||', 'elaine:', 'what', '||return||', '||return||', 'jerry:', 'george', '||return||', '||return||', 'elaine:', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'ya', '||return||', '||return||', 'elaine:', 'dam', '||return||', '||return||', 'jerry:', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'do', 'we', 'do', '||questionmark||', 'you', 'get', 'your', 'ass', 'over', 'to', "beth's", '||comma||', 'toot', 'sweet', '||period||', "that's", 'what', 'you', 'do', 'and', 'turn', 'on', 'some', 'of', 'that', 'so', 'called', 'charm', "you're", 'always', 'telling', 'me', 'about', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'i', 'could', 'try', 'and', 'do', 'that', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pushing', 'jerry', '||rightparen||', 'you', "don't", 'try', '||comma||', 'you', 'do', 'it', '||exclammark||', 'i', 'got', 'the', 'loser', 'in', 'this', 'relationship', 'and', "i'm", 'breathing', 'new', 'life', 'into', 'him', '||comma||', 'you', 'give', 'me', 'three', 'more', 'days', '||comma||', 'he', "won't", 'be', 'able', 'to', 'remember', 'her', 'name', '||period||', 'you', 'got', 'the', 'winner', '||comma||', 'you', 'got', 'the', 'easy', 'part', '||period||', 'alright', "let's", 'go', '||leftparen||', 'claps', '||rightparen||', "i'll", 'drive', 'you', 'over', 'there', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'no', 'you', 'go', 'on', 'ahead', '||comma||', "i'll", 'take', 'the', 'bus', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "i'm", 'parked', 'right', 'outside', '||comma||', "let's", 'go', '||period||', 'come', 'on', '||leftparen||', 'grabs', "jerry's", 'arm', '||rightparen||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', "i'll", 'take', 'the', 'subway', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pulling', 'jerry', 'out', 'the', 'door', '||rightparen||', 'nah', 'it', "doesn't", 'matter', 'come', 'on', '||comma||', "i'll", 'take', 'you', '||period||', '||return||', '||return||', 'jerry:', 'na', '||comma||', 'uh', '||comma||', 'no', '||comma||', 'uh', '||comma||', "i'll", 'hitch', 'hike', '||period||', '||return||', '||return||', 'elaine:', "what's", 'your', 'problem', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'really', 'not', 'necessary', '||period||', '||return||', '||return||', '[setting:', "monk's]", '||return||', '||return||', 'george:', '||leftparen||', 'breaks', 'a', 'long', 'silence', '||rightparen||', 'the', 'uh', '||comma||', 'the', 'shoe', 'laces', 'that', 'you', 'bought', 'me', '||comma||', 'they', 'uh', '||comma||', 'they', 'worked', 'out', 'well', '||period||', '||leftparen||', 'thumbs', 'up', '||rightparen||', '||return||', '||return||', 'susan:', 'well', 'you', 'know', '||comma||', 'if', 'you', 'need', 'some', 'more', '||period||', 'i', 'can', 'get', 'them', 'for', 'ya', '||period||', '||return||', '||return||', 'george:', 'should', 'be', 'a', 'while', 'though', '||period||', '||return||', '||return||', '[setting:', 'jerry', 'and', 'elaine', 'driving', 'through', 'the', 'city]', '||return||', '||return||', 'elaine:', '||leftparen||', 'car', 'tires', 'screeching', '||rightparen||', 'woah', '||comma||', 'ahhh', '||period||', 'hehe', 'ha', 'ha', 'ha', '||period||', 'that', 'was', 'close', '||period||', 'confide', 'in', 'her', '||comma||', 'open', 'up', 'to', 'her', '||period||', 'you', 'know', 'women', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'feel', 'so', 'good', '||period||', '||return||', '||return||', '[setting:', "beth's", 'apartment]', '||return||', '||return||', 'jerry:', 'anyway', 'beth', '||comma||', 'you', 'know', 'i', 'was', 'thinking', 'on', 'my', 'way', 'over', 'how', 'when', 'i', 'was', '9', '||period||', 'i', 'wanted', 'these', 'handball', 'sneakers', '||comma||', 'they', 'were', 'all', 'black', 'but', 'they', 'came', 'in', 'adult', 'sizes', 'so', 'you', 'know', 'i', 'never', 'got', 'the', 'sneakers', '||period||', '||leftparen||', 'beth', 'looks', 'him', 'confused', '||rightparen||', '||return||', '||return||', 'beth:', 'oh', 'really', '||questionmark||', '||return||', '||return||', '[setting:', 'elaine', 'and', 'david', 'walking]', '||return||', '||return||', 'elaine:', 'my', 'father', 'left', 'us', 'when', 'i', 'was', '9', 'so', 'i', 'guess', 'that', 'is', 'why', 'i', 'have', 'such', 'a', 'fear', 'of', 'abandonment', '||period||', '||return||', '||return||', 'david:', 'wow', "that's", 'so', 'touching', '||return||', '||return||', 'elaine:', 'yes', 'it', 'is', '||period||', '||return||', '||return||', 'david:', '||leftparen||', 'looking', 'in', 'through', 'the', 'window', '||rightparen||', 'hey', "it's", 'george', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'maybe', 'we', 'should', 'go', 'some', 'place', 'else', '||period||', '||return||', '||return||', 'david:', 'no', '||comma||', "let's", 'go', 'in', '||period||', '||return||', '||return||', 'george:', 'oh', 'uh', 'hi', 'hi', '||comma||', 'david', '||return||', '||return||', 'david:', 'hi', 'george', '||return||', '||return||', 'george:', 'elaine', '||return||', '||return||', 'elaine:', 'hi', '||return||', '||return||', 'george:', 'listen', 'uh', '||comma||', 'david', '||comma||', 'i', '||comma||', 'i', '||comma||', 'i', 'want', 'to', 'apologize', 'about', 'that', 'comment', '||return||', '||return||', 'david:', '||leftparen||', 'interrupting', '||rightparen||', 'george', 'please', '||comma||', 'please', "i'm", 'fine', '||period||', '||return||', '||return||', 'george:', 'oh', 'ya', '||comma||', 'this', 'is', 'my', 'fiance', '||comma||', 'susan', '||period||', 'this', 'is', 'david', '||return||', '||return||', 'susan:', 'david', '||return||', '||return||', 'david:', 'oh', 'fiance', '||period||', 'boy', 'you', 'coulda', 'done', 'a', 'lot', 'better', 'than', 'him', '||period||', '||leftparen||', 'susan', 'laughs', '||rightparen||', 'come', 'on', 'elaine', 'lets', 'go', '||period||', '||return||', '||return||', '[setting:', 'the', 'anvino', 'apartment]', '||return||', '||return||', 'joey:', '||leftparen||', 'wakes', 'up', 'to', 'see', 'a', 'shadow', 'image', 'of', 'kramer', 'and', 'takes', 'off', 'out', 'of', 'the', 'apartment', '||rightparen||', 'aah', '||exclammark||', "it's", 'frankinstein', '||exclammark||', 'frankinstein', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'waddling', 'after', 'joey', '||rightparen||', 'joey', '||exclammark||', 'joey', '||exclammark||', '||return||', '||return||', '[setting:', 'apartment}', '||return||', '||return||', 'girl:', 'mickey', 'you', 'were', 'so', 'incredible', 'in', 'that', 'scene', 'yesterday', '||comma||', 'the', 'rage', '||period||', '||return||', '||return||', 'mickey:', 'right', '||comma||', 'the', 'rage', '||period||', 'tons', 'of', 'rage', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'going', 'to', 'the', 'phone', '||rightparen||', 'i', "don't", 'believe', 'this', '||return||', '||return||', 'mickey:', '||leftparen||', 'phone', 'rings', '||comma||', 'sighs', '||comma||', 'answers', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'kramer:', 'mickey', '||return||', '||return||', 'mickey:', 'oh', 'hi', 'kramer', '||period||', 'what', 'do', 'you', 'want', '||comma||', "i'm", 'a', 'little', 'busy', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'you', 'gotta', 'do', 'me', 'a', 'favor', '||period||', '||return||', '||return||', 'mickey:', 'what', '||questionmark||', 'now', '||questionmark||', 'i', "can't", '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'owe', 'me', '||period||', 'i', 'got', 'you', 'into', "actor's", 'studio', '||period||', 'they', 'thought', 'what', 'we', 'did', 'was', 'the', 'scene', '||period||', '||return||', '||return||', 'mickey:', 'oh', 'alright', '||comma||', 'alright', '||period||', "i'll", 'be', 'right', 'over', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'coming', 'back', 'to', 'the', 'table', 'from', 'the', 'bathroom', '||rightparen||', 'oh', 'uh', '||period||', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'susan:', '||leftparen||', 'sighs', '||rightparen||', 'you', 'know', 'what', 'george', '||comma||', 'uh', '||period||', 'why', "don't", 'you', 'go', 'ahead', '||period||', 'i', 'think', "i'd", 'like', 'to', 'be', 'alone', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'george:', 'oh', 'sure', '||comma||', 'sure', '||period||', 'you', 'wanna', 'be', 'alone', '||comma||', 'sure', '||period||', 'i', 'understand', 'that', '||comma||', 'you', 'wanna', 'a', 'little', 'time', 'to', 'think', 'uh', 'thing', '||period||', '||period||', 'ponder', 'things', '||period||', '||period||', 'you', 'know', '||period||', '||period||', 'ruminant', '||period||', '||period||', '||leftparen||', 'chuckles', '||rightparen||', 'you', 'go', 'ahead', '||comma||', 'lotta', 'stuff', 'on', 'your', 'mind', '||period||', '||period||', 'you', 'think', 'things', 'out', '||period||', '||period||', 'think', '||comma||', 'mull', '||comma||', 'mull', '||comma||', 'do', 'a', 'lot', 'of', 'mulling', '||period||', '||leftparen||', 'short', 'laugh', 'then', 'exits', "monk's", '||rightparen||', '||return||', '||return||', '[setting:', 'anvino', 'apartment', '||comma||', "joey's", 'bedroom]', '||return||', '||return||', 'kramer:', 'i', 'gotta', 'go', 'find', 'this', 'kid', '||period||', 'so', 'all', 'you', 'gotta', 'do', 'is', 'lay', 'here', '||comma||', 'pretend', "you're", 'asleep', 'in', 'case', 'she', 'gets', 'back', '||comma||', 'here', '||leftparen||', 'grabs', 'the', 'covers', 'and', 'throws', 'em', 'over', 'mickey', '||rightparen||', 'keep', 'the', 'covers', 'over', 'ya', '||period||', '||return||', '||return||', 'mickey:', 'why', "don't", 'you', 'just', 'cut', 'the', 'stupid', 'pants', 'and', 'get', 'them', 'off', 'already/', '||return||', '||return||', 'kramer:', "i'm", 'breaking', 'them', 'in', '||comma||', 'and', "they're", 'feeling', 'better', '||period||', '||return||', '||return||', 'mickey:', 'what', 'am', 'i', 'gonna', 'do', 'in', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'keep', 'the', 'lights', 'down', 'and', 'your', 'eyes', 'closed', '||period||', "i'll", 'be', 'back', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'jerry', '||exclammark||', 'je', 'jerry', 'jerry', '||period||', 'the', 'most', 'unbelievable', 'thing', 'has', 'just', 'happened', '||comma||', "it's", 'too', 'unbelievable', '||exclammark||', "i'm", 'sitting', 'in', 'the', 'coffee', 'shop', '||comma||', "i'm", 'talking', 'to', 'susan', '||comma||', 'were', 'talking', 'about', 'shoe', 'laces', '||leftparen||', 'does', 'two', 'guns', 'to', 'the', 'head', '||rightparen||', 'so', 'in', 'walks', '||period||', '||period||', 'in', 'walks', 'david', '||comma||', 'right', '||comma||', 'he', 'walks', 'right', 'to', 'the', 'table', '||period||', '||period||', 'righ', 'i', 'introduced', 'him', 'to', 'susan', '||period||', '||period||', 'and', 'he', 'says', 'get', 'this', '||leftparen||', 'laughs', '||rightparen||', 'he', 'says', "'boy", 'you', 'could', 'do', 'a', 'lot', 'better', 'than', 'this', "guy'", 'huh', 'right', '||leftparen||', 'more', 'laughing', 'by', 'george', '||comma||', 'jerry', 'is', 'totally', 'just', 'mellow', 'and', 'straight', 'faced', '||rightparen||', 'the', 'exact', 'same', 'thing', 'that', 'i', 'said', 'to', 'him', '||comma||', 'just', 'to', 'get', 'back', 'at', 'me', 'just', 'to', 'get', 'back', 'at', 'me', '||period||', '||period||', 'and', 'then', '||comma||', 'and', 'then', 'she', 'says', 'she', 'wants', 'to', 'be', 'alone', 'for', 'awhile', '||period||', '||period||', 'alone', 'jerry', '||exclammark||', 'i', 'think', 'that', 'she', 'thinks', 'that', 'she', 'could', 'do', 'better', '||leftparen||', 'laughs', '||rightparen||', 'do', 'you', 'appreciate', 'this', '||questionmark||', 'do', 'you', 'see', 'the', 'irony', 'of', 'this', '||questionmark||', 'do', 'you', 'see', 'what', 'is', 'going', 'on', 'here', '||questionmark||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'nauseous', '||period||', '||return||', '||return||', 'george:', 'is', 'that', "what's", 'hurting', 'your', 'appreciation', 'for', 'the', 'story', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'little', '||return||', '||return||', 'george:', 'because', "it's", 'really', 'a', 'pretty', 'good', 'little', 'story', '||period||', "don't", 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'bad', '||period||', '||return||', '||return||', 'george:', 'yea', '||return||', '||return||', 'kramer:', 'joey', '||comma||', 'there', 'you', 'are', '||period||', 'hey', '||return||', '||return||', 'joey:', 'ah', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'joey', '||return||', '||return||', 'joey:', '||leftparen||', 'runs', 'into', 'the', 'arms', 'of', 'a', 'police', 'officer', '||rightparen||', 'a', 'monster', '||return||', '||return||', 'kramer:', "i'm", 'the', 'babysitter', '||return||', '||return||', 'mrs', '||period||', 'anvino:', 'goodnight', '||comma||', 'honey', '||period||', '||return||', '||return||', 'mickey:', 'goodnight', '||return||', '||return||', 'jerry:', "it's", 'gotta', 'have', 'something', 'to', 'do', 'with', 'kramer', '||return||', '||return||', '[setting:', 'david', 'and', 'elaine', 'at', "david's", 'apartment]', '||return||', '||return||', 'david:', 'elaine', '||comma||', "here's", 'to', 'you', 'being', 'there', '||period||', '||return||', '||return||', 'elaine:', 'and', 'here', '||period||', '||return||', '||return||', 'david:', 'excuse', 'me', '||period||', '||leftparen||', 'answers', 'the', 'door', '||rightparen||', 'beth', '||return||', '||return||', 'beth:', 'david', '||return||', '||return||', 'elaine:', '||leftparen||', 'takes', 'a', 'huge', 'shot', '||rightparen||', "i'll", 'tell', 'ya', '||comma||', "it's", 'not', 'bad', '||period||', '||return||', '||return||', '[setting:', 'george', 'and', "susans'", 'apartment]', '||return||', '||return||', 'susan:', 'george', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'places', 'the', 'doll', 'presumingly', 'where', 'it', 'belongs', 'on', 'a', 'shelf', '||rightparen||', 'ya', '||questionmark||', '||return||', '||return||', 'susan:', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'minute', '||questionmark||', '||return||', '||return||', 'george:', 'ya', '||comma||', 'sure', 'sure', '||period||', '||return||', '||return||', 'susan:', "i've", 'been', 'doing', 'a', 'lot', 'of', 'thinking', 'about', 'the', 'wedding', 'and', 'all', '||period||', 'and', 'uh', '||leftparen||', 'george', 'puts', 'his', 'head', 'down', 'and', 'his', 'hand', 'on', 'her', 'shoulder', 'as', 'if', 'to', 'brace', 'himself', 'for', 'something', 'big', '||rightparen||', "i've", 'decided', 'to', 'go', 'with', 'the', 'chicken', '||period||', '||return||', '||return||', '[setting:', 'kramer', 'at', 'the', 'police', 'station]', '||return||', '||return||', 'officer:', 'so', 'chasing', 'little', 'kids', 'huh', '||questionmark||', "you're", 'in', 'a', 'lot', 'of', 'trouble', 'mister', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'look', '||comma||', 'i', 'was', 'baby', '||dash||', 'sitting', '||return||', '||return||', 'officer:', 'ya', 'ya', 'right', '||period||', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'officer:', 'what', 'are', 'you', 'deaf', '||questionmark||', 'i', 'said', 'sit', 'down', '||exclammark||', '||leftparen||', 'kramer', 'tries', 'to', 'sit', 'down', 'but', 'struggles', '||rightparen||', 'hey', '||comma||', 'for', 'the', 'last', 'time', '||comma||', 'sit', 'down', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'somewhat', 'under', 'his', 'breath', '||rightparen||', 'ya', 'ya', '||period||', '||return||', '||return||', 'susan:', 'hi', '||period||', '||return||', '||return||', 'clerk:', 'hi', '||period||', '||period||', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'susan:', 'yes', '||comma||', "we'd", 'like', 'some', 'wedding', 'invitations', '||period||', '||return||', '||return||', 'clerk:', 'ohh', '||exclammark||', 'well', '||period||', '||period||', '||period||', 'congratulations', '||return||', '||return||', 'susan:', '||leftparen||', 'happily', '||rightparen||', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'mildly', 'embarrassed', '||rightparen||', 'yeah', '||period||', '||period||', 'thank', 'you', '||period||', '||return||', '||return||', 'clerk:', 'when', "'s", 'the', 'wedding', '||questionmark||', '||return||', '||return||', 'susan:', 'june', '||return||', '||return||', 'george:', 'late', 'june', '||period||', '||return||', '||return||', 'clerk:', 'oh', '||exclammark||', 'well', '||comma||', 'we', 'have', 'quite', 'a', 'few', 'to', 'pick', 'from', '||leftparen||', 'turns', 'around', 'and', 'picks', 'up', 'a', 'huge', 'binder', '||rightparen||', "they're", 'arranged', 'in', 'order', 'of', 'price', '||comma||', 'the', 'most', 'expensive', 'are', 'in', 'the', 'front', '||period||', '||return||', '||return||', 'george:', 'he', '||period||', '||period||', 'hmmm', '||period||', 'humm', '||period||', '||period||', '||period||', 'what', 'about', 'this', 'one', '||period||', '||return||', '||return||', 'clerk:', 'hmmm', '||comma||', '||period||', '||period||', 'to', 'tell', 'you', 'the', 'truth', 'they', "haven't", 'manufactured', 'that', 'one', 'for', 'a', 'number', 'of', 'years', '||period||', 'i', 'might', 'have', 'couple', 'of', 'boxes', 'left', 'in', 'our', 'warehouse', 'in', 'new', 'jersey', '||period||', "i'd", 'have', 'to', 'check', '||period||', '||return||', '||return||', 'susan:', 'oh', '||exclammark||', 'no', '||period||', 'george', "that's", 'so', 'ugly', 'we', "don't", 'want', 'that', '||period||', '||return||', '||return||', 'george:', "what's", 'the', 'difference', 'you', 'just', 'read', 'it', 'and', 'mail', 'it', 'right', 'back', '||period||', 'these', "we'll", 'do', '||period||', '||return||', '||return||', 'susan:', 'why', "don't", 'they', "make'em", 'anymore', '||questionmark||', '||return||', '||return||', 'clerk:', 'well', '||period||', '||period||', 'for', 'one', 'thing', 'the', 'glue', "isn't", 'very', 'adhesive', '||period||', 'it', 'takes', 'a', 'lot', 'of', 'moisture', 'to', 'make', 'them', 'stick', '||period||', '||return||', '||return||', 'george:', 'so', 'we', 'pick', 'up', 'some', '||leftparen||', 'word', 'missing', '||rightparen||', '||return||', '||return||', 'susan:', '||leftparen||', 'disappointed', '||rightparen||', 'all', 'right', '||period||', 'you', 'see', 'what', 'i', 'do', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'george', '||period||', '||period||', '||period||', '||period||', '||period||', 'lily', '||period||', '||period||', '||return||', '||return||', 'susan:', 'no', '||period||', 'susan', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', "it's", 'lily', '||return||', '||return||', 'susan:', 'i', 'think', 'i', 'know', 'my', 'own', 'name', '||period||', '||return||', '||return||', 'george:', "it's", 'susan', '||return||', '||return||', 'kramer:', '||leftparen||', 'lost', 'for', 'words', '||rightparen||', 'well', 'you', 'look', 'like', 'a', 'lily', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "it's", 'coming', 'jerry', '||comma||', "it's", 'coming', '||period||', '||return||', '||return||', 'jerry:', "what's", 'coming', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'day', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'ahhh', '||period||', '||period||', '||period||', 'the', 'day', '||period||', '||period||', '||return||', '||return||', 'george:', 'we', 'ordered', 'the', 'wedding', 'invitations', 'today', '||comma||', '||comma||', 'nothing', 'can', 'stop', 'it', 'now', '||period||', 'nothing', '||period||', "it's", 'here', '||exclammark||', "it's", 'happening', '||period||', 'can', 'i', 'do', 'this', '||questionmark||', 'i', "can't", 'do', 'this', '||period||', '||period||', '||period||', 'look', 'at', 'me', '||period||', 'look', 'at', 'me', 'i', "can't", 'do', 'this', '||comma||', 'i', "can't", 'do', 'this', '||leftparen||', 'manic', '||rightparen||', 'help', 'me', 'jerry', '||comma||', 'help', 'me', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'just', 'break', 'it', 'off', 'with', 'her', '||period||', 'tell', 'her', "it's", 'over', '||return||', '||return||', 'george:', 'i', "can't", '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', 'take', 'it', 'easy', '||comma||', 'just', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'a', 'letter', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'letter', '||period||', '||return||', '||return||', 'george:', 'i', '||period||', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', 'write', 'a', 'letter', 'and', 'then', 'i', '||period||', '||period||', 'i', 'go', 'to', 'china', '||period||', 'i', 'disappear', 'in', 'a', 'sea', 'of', 'people', 'for', 'like', 'six', 'months', '||comma||', 'a', 'year', 'you', 'know', 'just', 'while', 'things', 'simmer', 'down', '||period||', 'ehm', '||period||', '||period||', 'ehm', '||period||', '||period||', '||period||', 'dear', 'susan', '||period||', "i'm", 'sorry', '||period||', 'i', 'made', 'a', 'terrible', 'mistake', '||period||', "i'm", 'really', '||comma||', 'really', 'sorry', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'too', 'short', '||questionmark||', '||return||', '||return||', 'both:', 'seems', 'a', 'little', 'short', '||comma||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'go', 'to', 'china', 'what', 'about', 'your', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'job', '||period||', '||period||', 'arghhh', '||return||', '||return||', 'jerry:', 'so', 'write', 'a', 'letter', '||period||', '||period||', 'move', 'to', 'another', '||period||', '||period||', '||period||', 'move', 'to', 'staten', 'island', '||period||', '||comma||', "'lot", 'easier', 'to', 'blend', 'in', 'a', 'sea', 'of', 'people', 'in', 'staten', 'island', 'than', 'china', 'believe', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'yeah', '||exclammark||', '||period||', '||period||', 'staten', 'island', '||period||', 'what', 'about', 'my', 'clothes', '||comma||', 'how', 'do', 'i', 'get', 'the', 'rest', 'of', 'the', 'clothes', '||questionmark||', '||return||', '||return||', 'jerry:', 'aagh', '||exclammark||', 'you', 'come', 'back', 'for', 'your', 'clothes', '||return||', '||return||', 'george:', "i'm", 'not', 'going', 'back', 'in', 'there', '||period||', '||return||', '||return||', 'jerry:', 'so', 'forget', 'about', 'your', 'clothes', '||period||', '||return||', '||return||', 'george:', 'well', "i'm", 'not', 'starting', 'up', 'a', 'whole', 'new', 'wardrobe', 'now', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'freedom', 'with', 'no', 'clothes', 'is', 'a', 'lot', 'better', 'than', 'no', 'freedom', 'with', 'clothes', '||period||', '||return||', '||return||', 'george:', 'if', "she'd", 'just', 'take', 'a', 'plane', 'somewhere', '||period||', '||return||', '||return||', 'jerry:', 'and', 'what', '||comma||', 'hope', 'for', 'a', 'crash', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'happens', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', 'the', 'odds', 'are', 'on', 'a', 'crash', "it's", 'a', 'million', 'to', 'one', '||period||', '||return||', '||return||', 'george:', "it's", 'something', '||period||', "it's", 'hope', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||period||', '||period||', '||period||', '||leftparen||', 'sees', 'george', '||rightparen||', 'hey', '||exclammark||', '||exclammark||', 'georgie', '||period||', 'you', 'know', 'what', 'i', 'just', 'realized', '||semicolon||', 'the', 'wedding', 'is', 'like', 'a', 'month', 'away', '||period||', 'ha', '||period||', '||period||', 'haa', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'euhh', '||period||', '||period||', '||period||', 'elaine', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||period||', '||period||', '||period||', 'oh', '||exclammark||', 'by', 'the', 'way', '||period||', 'what', 'am', 'i', 'going', 'to', 'be', 'in', 'the', 'wedding', 'party', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', "jerry's", 'gonna', 'be', 'the', 'best', 'man', 'and', "kramer's", 'gonna', 'be', 'the', 'usher', 'so', 'what', 'am', 'i', 'gonna', 'be', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'i', "don't", 'think', "you're", 'anything', '||period||', '||return||', '||return||', 'elaine:', 'wel', '||period||', '||period||', '||period||', 'i', 'have', 'to', 'be', 'something', '||period||', 'i', "'m", 'a', 'close', 'friend', '||period||', '||period||', '||period||', '||period||', 'what', 'about', 'being', 'a', 'bridesmaid', '||period||', '||return||', '||return||', 'george:', 'those', 'are', "susan's", 'friends', '||period||', '||return||', '||return||', 'elaine:', 'well', 'then', '||period||', '||period||', '||period||', 'aaahh', 'how', 'about', 'being', 'an', 'usher', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', "i'll", 'ask', 'susan', 'about', 'it', 'later', '||period||', '||return||', '||return||', 'elaine:', 'you', "don't", 'ask', '||period||', '||period||', 'you', 'tell', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', 'about', 'the', 'letter', '||comma||', 'should', 'i', 'think', 'about', 'the', 'letter', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', 'elaine', 'if', 'a', 'guy', 'wanted', 'to', 'end', 'a', 'relationship', 'with', 'you', '||period||', 'what', 'could', 'he', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'start', 'smoking', '||period||', '||return||', '||return||', 'george:', 'smoking', '||period||', '||return||', '||return||', 'jerry:', 'does', 'she', 'hate', 'cigarettes', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'she', 'hates', 'cigarettes', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', "don't", 'smoke', '||period||', '||return||', '||return||', 'george:', 'nooooooo', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'think', "i'm", 'getting', 'a', 'little', 'depressed', 'about', "george's", 'wedding', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'well', 'once', 'he', 'gets', 'married', "that's", 'it', '||comma||', "she'll", 'probably', 'get', 'pregnant', '||comma||', "they'll", 'move', 'to', 'westchester', '||period||', "i'll", 'never', 'see', 'him', 'again', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', "you're", 'probably', 'right', '||period||', '||return||', '||return||', 'jerry:', 'then', "it'll", 'just', 'be', 'me', '||comma||', 'you', 'and', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'not', 'me', 'pal', '||period||', 'i', "can't", 'keep', 'this', 'up', 'much', 'longer', '||period||', "i'm", 'sick', 'of', 'being', 'single', '||period||', "i'm", 'getting', 'out', '||period||', '||return||', '||return||', 'jerry:', 'so', "it's", 'just', 'gonna', 'be', 'me', 'and', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'yep', '||exclammark||', 'just', 'you', 'and', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'see', 'you', '||period||', '||period||', '||period||', 'me', 'and', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||exclammark||', 'buddy', '||period||', 'i', 'thought', 'of', 'a', 'great', 'invention', 'for', 'driving', '||period||', 'a', 'periscope', 'in', 'a', 'car', '||comma||', 'so', 'you', 'can', 'see', 'the', 'traffic', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'annoyed', '||rightparen||', 'how', 'you', 'gonna', 'drive', 'when', 'looking', 'through', 'a', 'periscope', '||questionmark||', 'besides', "it's", 'not', 'a', 'submarine', 'and', "there's", 'no', 'room', 'for', 'a', 'periscope', 'in', 'a', 'car', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||exclammark||', 'you', 'make', 'a', 'higher', 'roof', '||period||', '||return||', '||return||', 'jerry:', "they're", 'not', 'making', 'higher', 'roofs', '||period||', '||return||', '||return||', 'kramer:', 'why', "can't", 'you', 'make', 'a', 'higher', 'roof', '||period||', '||return||', '||return||', 'jerry:', 'because', "it's", 'a', 'stupid', 'idea', '||period||', 'no', "one's", 'gonna', 'go', 'for', 'it', '||period||', "don't", 'you', 'understand', "it's", 'stupid', '||comma||', 'stupid', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', '||period||', '||period||', 'stupid', '||comma||', 'stupid', '||period||', '||return||', '||return||', 'jeannie:', 'hey', '||exclammark||', 'hey', '||exclammark||', 'look', 'out', '||period||', '||leftparen||', 'she', 'pulls', 'him', 'back', 'saving', 'his', 'life', '||period||', '||rightparen||', 'ok', '||exclammark||', '||comma||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||period||', '||period||', 'thanks', '||period||', 'oh', '||exclammark||', 'my', 'god', 'you', 'saved', 'my', 'life', '||period||', '||return||', '||return||', 'jeannie:', "shouldn't", 'there', 'be', 'some', 'kind', 'of', 'reward', 'for', 'that', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'thank', 'you', '||period||', '||return||', '||return||', 'jeannie:', 'you', 'know', 'you', 'should', 'be', 'a', 'lot', 'more', 'careful', 'crossing', 'the', 'street', 'like', 'that', '||comma||', 'otherwise', 'you', 'could', 'die', '||period||', '||period||', 'if', 'that', 'bothers', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jeannie:', 'you', 'see', '||period||', '||period||', '||leftparen||', 'points', 'to', 'his', 'collar', '||rightparen||', 'to', 'me', 'this', 'is', 'a', 'waste', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'jeannie:', 'the', 'shirt', 'you', 'got', 'on', 'under', 'your', 'sweather', '||period||', 'it', 'sits', 'for', 'three', 'weeks', 'in', 'your', 'drawer', '||comma||', 'waiting', 'to', 'come', 'out', '||period||', 'and', 'when', 'it', 'finally', 'does', '||period||', 'it', 'sticks', 'up', 'only', 'half', 'an', 'inch', 'out', 'of', 'your', 'collar', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'jeannie:', 'jeannie', 'steinman', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'same', 'initials', '||period||', 'how', 'do', 'you', 'like', 'that', '||questionmark||', '||return||', '||return||', 'jeannie:', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'george:', 'listen', 'i', 'was', 'talking', 'to', 'elaine', 'today', 'and', 'she', 'said', "she'd", 'would', 'really', 'like', 'to', 'be', 'an', 'usher', 'at', 'the', 'wedding', '||return||', '||return||', 'susan:', 'no', '||period||', 'out', 'of', 'the', 'question', '||period||', 'i', "don't", 'want', 'any', 'women', 'ushers', 'at', 'my', 'wedding', 'and', 'while', "we're", 'on', 'the', 'subject', '||comma||', 'kramer', 'is', 'not', 'an', 'usher', 'either', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'susan:', 'he', "doesn't", 'even', 'know', 'my', 'name', '||period||', '||return||', '||return||', 'george:', 'that', 'was', 'an', 'honest', 'mistake', '||period||', '||return||', '||return||', 'susan:', 'nah', '||exclammark||', "he's", 'too', 'weird', "he'd", 'fall', 'or', 'something', '||period||', "he'd", 'ruin', 'the', 'whole', 'ceremony', '||period||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', "you're", 'right', '||period||', '||period||', "you're", 'probably', 'right', '||period||', '||return||', '||return||', 'susan:', 'whadda', 'doing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shrugs', 'and', 'lights', 'it', 'up', '||rightparen||', '||return||', '||return||', 'susan:', 'since', 'when', 'do', 'you', 'smoke', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'coughs', '||rightparen||', "i've", 'always', 'smoked', '||period||', '||return||', '||return||', 'susan:', "i've", 'never', 'seen', 'you', 'smoke', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeeah', '||period||', '||period||', 'well', '||comma||', 'big', 'smoker', '||period||', '||period||', '||period||', 'i', '||leftparen||', 'coughs', 'some', 'more', '||rightparen||', 'gave', 'it', 'up', 'for', 'a', 'while', 'but', 'it', 'was', 'too', 'tough', '||period||', "y'", 'know', '||period||', '||period||', '||period||', '||period||', '||period||', 'i', 'got', 'no', 'will', 'power', '||period||', '||return||', '||return||', 'susan:', 'i', "don't", 'like', 'this', 'one', 'bit', '||period||', '||return||', '||return||', 'george:', 'well', '||leftparen||', 'coughs', '||rightparen||', 'i', "can't", 'stop', 'now', '||period||', '||period||', '||period||', '||leftparen||', 'coughs', '||rightparen||', "i'm", 'addicted', '||period||', '||period||', '||period||', '||return||', '||return||', 'susan:', 'well', 'you', 'are', 'gonna', 'have', 'to', 'quit', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'waitress:', 'menus', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'know', 'what', 'i', 'want', '||period||', '||return||', '||return||', 'waitress:', 'the', 'usual', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||comma||', '||return||', '||return||', 'waitress:', 'and', 'for', 'you', '||questionmark||', '||return||', '||return||', 'jeannie:', "i'll", 'have', 'a', 'bowl', 'of', 'cheerios', '||comma||', 'not', 'to', 'much', 'milk', '||period||', '||return||', '||return||', 'waitress:', 'ok', 'two', 'bowls', 'of', 'cheerios', '||period||', '||return||', '||return||', 'jeannie:', 'you', 'too', '||period||', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'did', 'you', 'hear', 'the', 'bank', 'on', 'the', 'corner', 'is', 'offering', 'a', '100', 'dollars', 'if', 'you', 'go', 'in', 'there', 'and', 'they', "don't", 'greet', 'you', 'with', 'a', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||exclammark||', 'really', '||period||', "that's", 'nice', '||period||', '||return||', '||return||', 'kramer:', 'now', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "i'm", 'in', 'love', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'no', "it's", 'true', '||period||', 'this', 'woman', 'saved', 'my', 'life', '||period||', 'i', 'was', 'crossing', 'the', 'street', '||period||', 'i', 'was', 'almost', 'hit', 'by', 'a', 'car', '||period||', '||period||', '||period||', 'and', 'then', 'we', 'talked', 'and', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'the', 'whole', 'thing', 'just', 'seemed', 'like', 'a', 'dream', '||period||', '||return||', '||return||', 'kramer:', 'if', 'a', 'guy', 'saved', 'your', 'life', "you'd", 'be', 'in', 'love', 'with', 'him', 'too', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'this', 'woman', 'is', 'different', '||comma||', "she's", 'incredible', '||period||', "she's", 'just', 'like', 'me', '||period||', 'she', 'talks', 'like', 'me', '||comma||', 'she', 'acts', 'like', 'me', '||period||', 'she', 'even', 'ordered', 'cereal', 'at', 'a', 'restaurant', '||period||', 'we', 'even', 'have', 'the', 'same', 'initials', '||period||', 'wait', 'a', 'minute', '||comma||', 'i', 'just', 'realised', "what's", 'going', 'on', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'now', 'i', 'know', 'what', "i've", 'been', 'looking', 'for', 'all', 'these', 'years', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'myself', '||exclammark||', '||leftparen||', 'kramer', 'is', 'speechless', '||rightparen||', "i've", 'been', 'waiting', 'for', 'me', 'to', 'come', 'along', 'and', 'now', 'i', "'ve", 'swept', 'myself', 'off', 'my', 'feet', '||period||', '||return||', '||return||', 'kramer:', 'you', 'stop', 'it', 'man', '||period||', '||period||', "you're", 'freaking', 'me', 'out', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'teller:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'wait', 'a', 'second', '||period||', 'you', "didn't", 'say', 'hello', '||period||', '||return||', '||return||', 'teller:', 'yes', 'i', 'did', '||return||', '||return||', 'kramer:', 'no', 'no', 'you', "didn't", '||period||', '||period||', '||period||', 'hundred', 'dollars', '||period||', '||period||', 'i', 'get', 'a', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'teller:', 'no', '||comma||', 'no', 'i', 'said', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', 'you', 'said', 'hey', '||exclammark||', '||return||', '||return||', 'teller:', 'well', '||period||', '||period||', 'hey', '||exclammark||', 'is', 'hello', '||comma||', 'same', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'the', 'add', 'said', 'that', 'the', "bank's", 'gonna', 'pay', 'a', 'hundred', 'dollars', 'if', 'you', 'are', 'not', 'greeted', 'with', 'a', 'hello', '||return||', '||return||', 'teller:', "you're", 'taking', 'that', 'much', 'to', 'literally', '||period||', 'now', 'sir', '||comma||', 'do', 'you', 'have', 'any', 'business', 'to', 'transact', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'want', 'to', 'speak', 'to', 'the', 'manager', '||period||', '||return||', '||return||', 'teller:', 'well', '||comma||', "he's", 'not', 'here', 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', 'then', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'elaine:', 'so', "i'm", 'not', 'gonna', 'be', 'an', 'usher', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', "i'm", 'nothing', '||period||', 'jerry', 'is', 'best', 'man', '||comma||', 'kramer', 'is', 'an', 'usher', 'and', 'i', 'am', 'nothing', '||period||', '||return||', '||return||', 'george:', 'well', "kramer's", 'not', 'an', 'usher', 'anymore', '||period||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', "you've", 'been', 'demoted', '||period||', '||return||', '||return||', 'kramer:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'you', 'called', 'her', 'by', 'the', 'wrong', 'name', '||period||', '||return||', '||return||', 'kramer:', 'but', 'she', 'really', 'looks', 'like', 'a', 'lily', '||return||', '||return||', 'elaine:', 'jerry', '||leftparen||', 'as', 'they', 'come', 'into', 'the', 'apt', '||period||', '||rightparen||', 'jerry', '||comma||', 'susan', 'says', 'i', "can't", 'be', 'an', 'usher', 'at', 'he', 'wedding', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'me', 'neither', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shrugs', '||rightparen||', 'hey', 'george', 'i', 'think', 'i', 'want', 'to', 'bring', 'a', 'date', 'to', 'the', 'wedding', '||return||', '||return||', 'george:', 'who', '||exclammark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'just', 'met', 'her', '||comma||', "she's", 'incredible', '||period||', '||return||', '||return||', 'elaine:', 'aaawh', '||period||', '||period||', '||period||', 'this', 'is', 'great', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', 'now', "i'm", 'gonna', 'be', 'stuck', 'at', 'the', 'singles', 'table', 'with', 'all', 'the', 'losers', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'go', 'with', 'kramer', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', 'no', 'no', 'no', '||period||', 'weddings', 'are', 'a', 'great', 'place', 'to', 'meet', 'chicks', '||period||', 'i', 'have', 'to', 'be', 'unfettered', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'see', 'what', 'this', 'is', 'turning', 'in', 'to', '||questionmark||', 'do', 'i', 'need', 'this', '||period||', 'i', 'have', 'to', 'get', 'out', 'of', 'this', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'try', 'the', 'cigarettes', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', 'they', 'made', 'me', 'sick', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'lets', 'get', 'down', 'here', '||period||', 'you', 'really', 'want', 'to', 'get', 'out', 'of', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'i', 'got', 'two', 'words', 'for', 'you', '||semicolon||', 'pre', '||dash||', 'nup', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'ask', 'her', 'to', 'sign', 'a', 'pre', '||dash||', 'nup', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'that', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'most', 'women', 'when', "they're", 'asked', 'to', 'sign', 'a', 'pre', '||dash||', 'nup', 'are', 'so', 'offended', 'they', 'back', 'out', 'of', 'the', 'marriage', '||period||', '||return||', '||return||', 'george:', 'they', 'are', '||questionmark||', '||period||', '||period||', '||period||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "wouldn't", 'sign', 'one', '||period||', '||return||', '||return||', 'george:', 'pre', '||dash||', 'nup', 'of', 'course', '||period||', '||period||', 'kramer', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'susan:', 'hi', '||period||', 'hey', "i've", 'been', 'going', 'over', 'the', 'list', '||period||', 'what', 'about', 'the', 'drake', '||questionmark||', 'wanna', 'invite', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'got', 'to', 'invite', 'the', 'drake', '||period||', 'listen', 'hem', '||period||', '||period||', '||period||', "there's", 'something', "that's", 'been', 'on', 'my', 'mind', 'and', 'we', "haven't", 'really', 'talked', 'about', 'it', '||period||', '||period||', 'i', "t's", 'kind', 'of', 'important', 'to', 'me', '||period||', '||return||', '||return||', 'susan:', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'i', '||period||', '||period||', 'put', 'a', 'lot', 'of', 'thought', 'into', 'this', 'and', 'i', 'think', 'i', 'would', 'like', 'you', 'to', 'sign', 'a', 'prenuptual', 'agreement', '||period||', '||return||', '||return||', 'susan:', 'a', 'pre', '||dash||', 'nup', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'susan:', '||leftparen||', 'burst', 'out', 'laughing', '||rightparen||', '||return||', '||return||', 'george:', "what's", 'so', 'funny', '||questionmark||', '||return||', '||return||', 'susan:', 'ha', '||period||', 'ha', '||period||', 'ha', '||period||', 'ha', '||period||', '||period||', '||period||', 'you', "don't", 'have', 'any', 'money', '||period||', 'i', 'make', 'more', 'money', 'than', 'you', 'do', '||period||', 'ha', '||period||', 'ha', '||period||', 'ha', '||period||', 'yeah', '||period||', '||period||', 'give', 'me', 'the', 'papers', "i'll", 'sign', "'em", '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', 'a', 'pre', '||dash||', 'nup', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||period||', '||leftparen||', 'gets', 'up', 'and', 'opens', 'the', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', '||period||', '||period||', '||period||', 'hey', 'jeannie', '||period||', '||return||', '||return||', 'jeannie:', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'remember', 'i', 'told', 'you', 'about', 'the', 'bank', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'well', 'i', 'went', 'in', 'there', 'and', 'they', 'said', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', 'is', 'the', 'same', 'thing', 'as', 'hello', '||period||', 'what', 'do', 'you', 'think', 'jeannie', '||period||', '||return||', '||return||', 'jeannie:', 'yeah', 'i', 'think', "it's", 'the', 'same', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'big', 'surprise', '||leftparen||', 'he', 'leaves', 'frustrated', '||rightparen||', '||return||', '||return||', 'delivery', 'man:', 'delivery', 'from', 'melody', 'stationaries', '||period||', '||return||', '||return||', 'susan:', 'oh', 'those', 'are', 'the', 'invitations', '||period||', '||return||', '||return||', 'delivery', 'man:', 'just', 'sign', 'there', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||exclammark||', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'see', 'ya', 'later', '||period||', '||return||', '||return||', 'susan:', 'urgh', '||period||', '||period||', 'these', 'are', 'so', 'cheap', '||period||', '||leftparen||', 'as', 'george', 'leaves', '||rightparen||', 'and', "don't", 'forget', 'tommorrow', "we're", 'going', 'shopping', 'for', 'some', 'rings', '||comma||', 'so', "don't", 'make', 'any', 'plans', '||period||', '||period||', '||period||', 'and', 'this', 'time', "we're", 'not', 'skimping', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'jeannie', 'left', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "she's", 'coming', 'to', 'see', 'my', 'act', 'tonight', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||exclammark||', 'well', "that's", 'nice', '||period||', "i'm", 'sure', "that's", 'right', 'up', 'her', 'alley', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "nothin'", '||return||', '||return||', 'jerry:', 'something', 'on', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'looks', 'like', 'there', 'is', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', "something's", 'on', 'your', 'mind', '||period||', 'out', 'with', 'it', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'like', 'her', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'like', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', 'i', "don't", 'like', '||comma||', 'i', 'never', 'like', 'her', 'from', 'the', 'get', '||dash||', 'go', '||period||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', 'everything', 'she', 'thinks', '||period||', 'you', 'think', '||period||', 'everything', 'you', 'think', 'she', 'thinks', '||period||', 'no', 'i', "can't", 'take', 'it', '||period||', 'i', "can't", 'take', 'it', 'jerry', '||period||', "it's", 'too', 'much', '||period||', "it's", 'too', 'much', '||period||', '||return||', '||return||', 'jerry:', 'well', 'you', "can't", 'take', 'her', 'maybe', 'you', "can't", 'take', 'me', 'either', '||period||', '||return||', '||return||', 'kramer:', 'so', "that's", 'how', "it's", 'going', 'to', 'be', '||return||', '||return||', 'jerry:', "that's", 'how', "it's", 'gonna', 'be', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'god', 'help', 'us', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'susan:', 'eurk', '||period||', '||period||', 'awful', '||return||', '||return||', 'manager:', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'uh', '||period||', '||period||', 'i', 'was', 'in', 'here', 'the', 'other', 'day', 'and', 'i', 'went', 'up', 'to', 'that', 'teller', 'and', 'he', "didn't", 'say', 'hello', '||period||', '||return||', '||return||', 'manager:', 'then', 'you', 'are', 'entitled', 'to', 'a', 'hundred', 'dollars', '||period||', "that's", 'our', 'policy', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||comma||', 'but', 'he', "wouldn't", 'give', 'me', 'the', 'money', '||period||', '||return||', '||return||', 'manager:', 'hehummm', '||period||', '||period||', 'jim', '||period||', '||period||', '||period||', 'can', 'i', 'see', 'you', 'for', 'a', 'second', '||return||', '||return||', 'jim:', 'uh', '||period||', '||period||', 'yes', 'can', 'you', 'give', 'me', 'a', 'minute', '||period||', '||return||', '||return||', 'manager:', 'yea', '||period||', '||period||', '||period||', '||period||', 'hum', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "he'll", 'be', '||period||', 'hum', '||period||', '||period||', 'right', 'over', '||period||', '||leftparen||', 'awkward', 'pause', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'knocks', 'on', 'desk', '||rightparen||', 'is', 'thi', 'oak', '||questionmark||', '||return||', '||return||', 'manager:', "'think", "it's", 'pine', '||period||', '||return||', '||return||', 'kramer:', 'pine', 'is', 'good', '||period||', '||return||', '||return||', 'manager:', 'yeah', '||period||', "pine's", 'okay', '||period||', '||return||', '||return||', 'jim:', 'you', 'want', 'to', 'see', 'me', '||return||', '||return||', 'manager:', 'yeah', '||period||', '||period||', '||period||', 'hum', '||period||', '||period||', 'jim', '||comma||', 'a', 'man', 'here', 'says', 'came', 'in', 'the', 'other', 'day', '||comma||', 'you', "didn't", 'say', 'hello', '||questionmark||', '||return||', '||return||', 'jim:', 'no', '||comma||', 'no', "that's", 'not', 'true', '||comma||', 'i', 'said', 'hey', '||exclammark||', 'you', 'know', 'like', 'a', 'friendly', 'greeting', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'but', "that's", 'not', 'hello', '||period||', '||return||', '||return||', 'manager:', "that's", 'a', 'tough', 'one', '||period||', '||return||', '||return||', 'kramer:', 'uhummm', '||period||', '||period||', '||period||', '||return||', '||return||', 'manager:', 'you', 'know', 'what', '||comma||', 'let', 'me', 'bring', 'some', 'other', 'people', 'in', 'on', 'this', '||period||', '||period||', '||period||', 'barbara', '||comma||', 'jane', '||comma||', 'mike', 'can', 'i', 'see', 'you', 'please', '||period||', '||return||', '||return||', 'barbara:', 'how', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'jane:', "what's", 'happening', '||questionmark||', '||return||', '||return||', 'mike:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'manager:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'can', 'you', 'excuse', 'us', 'for', 'one', 'minute', '||period||', 'just', 'one', 'minute', '||period||', '||return||', '||return||', 'manager:', 'thanks', '||period||', '||leftparen||', 'they', 'huddle', '||rightparen||', '||return||', '||return||', 'some', 'guy:', "how's", 'it', 'going', '||questionmark||', '||return||', '||return||', 'manager:', 'thanks', '||comma||', 'thanks', 'everybody', '||period||', '||leftparen||', 'they', 'leave', '||rightparen||', 'sir', '||comma||', 'have', 'a', 'seat', '||period||', '||return||', '||return||', 'manager:', 'well', '||comma||', "we've", 'discussed', 'this', '||comma||', "here's", 'the', 'feeling', '||period||', 'you', 'got', 'a', 'greeting', 'starts', 'with', 'an', 'h', "how's", 'twenty', 'bucks', 'sound', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'take', 'it', '||period||', '||return||', '||return||', 'manager:', 'awright', 'sir', '||leftparen||', 'they', 'shake', 'hands', '||rightparen||', '||return||', '||return||', 'jerry:', 'will', 'you', 'marry', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'would', 'like', 'to', 'propose', 'a', 'toast', '||period||', '||period||', '||period||', '||period||', 'wait', 'a', 'second', '||period||', '||period||', 'george', '||exclammark||', 'george', 'costanza', 'come', 'in', 'here', '||period||', '||return||', '||return||', 'jeannie:', 'georgie', 'boy', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'big', 'news', '||semicolon||', "i'm", 'getting', 'married', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'married', '||comma||', 'what', '||exclammark||', '||leftparen||', 'astounded', '||rightparen||', '||return||', '||return||', 'jerry:', 'september', '21st', '||comma||', 'first', 'day', 'of', 'autumn', '||period||', 'leaves', 'changing', 'colours', '||period||', '||period||', 'beautiful', 'colors', '||period||', '||return||', '||return||', 'jeannie:', '||period||', '||period||', '||period||', 'all', 'that', 'crap', '||period||', '||return||', '||return||', 'jerry:', 'you', 'see', '||comma||', 'i', 'kept', 'up', 'my', 'end', 'of', 'the', 'pact', '||period||', '||return||', '||return||', 'george:', 'good', 'for', 'you', '||leftparen||', 'sympathetic', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', 'look', '||comma||', 'champagne', '||period||', '||period||', '||return||', '||return||', 'george:', 'hehehe', '||period||', '||period||', '||leftparen||', 'feebly', '||rightparen||', '||return||', '||return||', 'jerry:', 'to', 'our', 'future', 'wives', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'been', 'quite', 'a', 'night', 'i', 'could', 'sure', 'use', 'a', 'cup', 'of', 'coffee', '||period||', '||return||', '||return||', 'jeannie:', 'hey', '||exclammark||', "what's", 'the', 'deal', 'with', 'decaf', '||semicolon||', 'how', 'do', 'they', 'get', 'the', 'caffeine', 'out', 'of', 'there', 'and', 'then', 'where', 'does', 'it', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'weakly', '||rightparen||', 'i', 'dunno', '||return||', '||return||', 'jeannie:', "that's", 'a', 'shame', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'waitress', '||rightparen||', "i'", 'll', 'just', 'have', 'a', 'cup', 'of', 'coffee', '||period||', '||return||', '||return||', 'jeannie:', 'bowl', 'of', 'corn', 'flakes', '||period||', '||return||', '||return||', 'jerry:', 'more', 'cereal', '||questionmark||', "that's", 'your', 'third', 'bowl', 'today', '||comma||', 'you', 'had', 'it', 'for', 'breakfast', 'and', 'lunch', '||period||', '||return||', '||return||', 'jeannie:', 'hey', '||exclammark||', 'so', "what's", 'the', 'deal', 'with', 'brunch', '||comma||', 'i', 'mean', 'that', 'if', "it's", 'a', 'combination', 'of', 'breakfast', 'and', 'lunch', '||period||', 'how', 'comes', "there's", 'no', 'lupper', 'or', 'no', 'linner', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||exclammark||', 'frank', 'just', 'called', 'me', '||period||', 'congratulations', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', 'thanks', '||return||', '||return||', 'kramer:', 'look', "i'm", 'sorry', 'about', 'before', '||period||', '||period||', '||period||', '||period||', 'i', 'mean', "i'm", 'sure', "i'll", 'learn', 'to', 'like', 'her', '||comma||', 'jerry', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', "c'mon", '||comma||', "c'mon", "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'may', 'have', 'made', 'a', 'big', 'mistake', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'all', 'of', 'a', 'sudden', 'it', 'hit', 'me', '||comma||', 'i', 'realized', 'what', 'the', 'problem', 'is', '||semicolon||', 'i', "can't", 'be', 'with', 'someone', 'like', 'me', '||period||', '||period||', 'i', 'hate', 'myself', '||exclammark||', '||exclammark||', 'if', 'anything', 'i', 'need', 'to', 'get', 'the', 'exact', 'opposite', 'of', 'me', '||period||', '||period||', '||period||', '||period||', "it's", 'too', 'much', '||period||', "it's", 'too', 'much', 'i', "can't", 'take', 'it', '||period||', '||period||', '||period||', 'i', "can't", 'take', 'it', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'mocking', '||rightparen||', 'too', 'bad', 'you', 'got', 'engaged', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'too', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'oh', '||exclammark||', 'hi', 'george', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'what', '||exclammark||', '||period||', '||period||', 'really', '||exclammark||', 'all', 'right', "i'll", 'call', 'elaine', '||comma||', "we'll", 'meet', 'you', 'down', 'there', '||period||', '||return||', '||return||', 'kramer:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'just', 'took', 'susan', 'to', 'the', 'hospital', '||return||', '||return||', 'jerry:', 'so', 'she', 'was', 'just', 'lying', 'there', '||period||', '||return||', '||return||', 'george:', 'tsss', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'wonder', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||period||', '||period||', '||period||', 'hmmm', 'ha', '||exclammark||', "here's", 'the', 'doctor', '||period||', '||return||', '||return||', 'doctor:', 'excuse', 'me', '||comma||', 'are', 'you', 'the', 'husband', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'not', 'yet', '||period||', '||period||', 'fianc', '||period||', '||return||', '||return||', 'doctor:', 'well', '||comma||', "i'm", 'sorry', '||period||', '||period||', '||period||', '||period||', '||period||', "she's", 'gone', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "what's", 'that', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'doctor:', 'she', 'expired', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'doctor:', 'yes', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', '||period||', '||period||', "she's", 'dead', '||questionmark||', '||return||', '||return||', 'doctor:', 'yes', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'huh', '||exclammark||', '||return||', '||return||', 'doctor:', 'let', 'me', 'ask', 'you', '||semicolon||', 'had', 'she', 'been', 'exposed', 'to', 'any', 'kind', 'of', 'inexpensive', 'glue', '||questionmark||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'doctor:', 'we', 'found', 'traces', 'of', 'a', 'certain', 'toxic', 'adhesive', 'commonly', 'found', 'in', 'very', 'low', 'priced', 'envelopes', '||period||', '||return||', '||return||', 'george:', 'well', 'she', 'was', 'sending', 'out', 'our', 'wedding', 'invitations', '||period||', '||return||', '||return||', 'doctor:', "that's", 'probably', 'what', 'did', 'it', '||period||', '||return||', '||return||', 'george:', 'we', 'were', 'expecting', 'about', 'two', 'hundred', 'people', '||period||', '||period||', '||period||', 'well', '||period||', '||period||', '||period||', 'thank', 'you', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', "she's", 'ahem', '||period||', '||period||', '||period||', '||period||', 'gone', '||return||', '||return||', 'jerry:', 'dead', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'so', 'sorry', 'george', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'me', 'too', '||return||', '||return||', 'kramer:', 'poor', 'lily', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'it', 'happen', '||questionmark||', '||return||', '||return||', 'george:', 'apparently', 'the', 'glue', 'in', 'the', 'wedding', 'invitations', 'was', 'a', '||period||', '||period||', '||period||', '||period||', 'toxic', '||period||', '||return||', '||return||', 'all:', 'aah', '||exclammark||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'well', "that's", 'weird', '||return||', '||return||', 'jerry:', 'so', 'i', 'guess', '||comma||', "you're", 'not', 'getting', 'married', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'embarrassed', 'with', 'a', 'touch', 'of', 'unrestrained', 'jubilation', '||rightparen||', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'but', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'now', "i'm", 'engaged', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'thought', "we'd", 'both', 'be', 'getting', 'married', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||period||', '||period||', 'what', 'can', 'i', 'tell', 'ya', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', '||leftparen||', 'they', 'start', 'to', 'leave', 'except', 'jerry', '||rightparen||', '||return||', '||return||', 'george:', 'well', 'humm', '||period||', '||period||', 'lets', 'get', 'some', 'coffee', '||period||', '||return||', '||return||', 'jerry:', 'we', 'had', 'a', 'pact', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', 'yes', "i'd", 'like', 'to', 'speak', 'to', 'marisa', 'tomei', '||comma||', 'please', '||questionmark||', 'marisa', '||comma||', 'hi', "it's", 'george', 'costanza', '||period||', '||period||', "i'm", 'the', 'short', '||comma||', 'funny', '||comma||', 'quirky', 'bald', 'man', 'you', 'met', 'a', 'little', 'while', 'ago', '||comma||', 'heh', '||exclammark||', 'yeah', 'i', 'was', 'just', 'calling', "'cos", 'i', 'wanted', 'you', 'to', 'know', 'that', "i'm", 'not', 'engaged', 'anymore', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'well', 'huh', '||comma||', 'she', 'died', '||period||', '||period||', '||period||', '||period||', 'toxic', 'glue', 'from', 'the', 'wedding', 'invitations', '||period||', '||period||', '||period||', '||period||', '||period||', 'well', 'we', 'were', 'expecting', 'about', 'two', 'hundred', 'people', '||period||', 'yeah', '||period||', '||period||', '||period||', 'anyway', '||period||', '||period||', 'hum', 'i', 'got', 'the', 'funeral', 'tomorrow', 'but', 'huh', '||period||', '||period||', 'my', 'weekend', 'is', 'pretty', 'wide', 'open', 'and', 'i', 'was', 'wondering', '||period||', '||period||', '||period||', '||leftparen||', 'dial', 'tone', 'interrupts', 'george', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', 'hello', '||period||', '||period||', '||period||', 'hello', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', "it's", 'a', 'magnificent', 'stone', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'they', 'put', 'it', 'up', 'this', 'morning', '||period||', '||return||', '||return||', 'george:', "it's", 'just', 'a', 'magnificent', 'stone', '||period||', '||leftparen||', 'turns', 'to', 'jerry', '||rightparen||', 'jerry', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'george', '||period||', '||period||', '||period||', "we'll", 'leave', 'you', 'alone', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', "i'm", 'sure', 'there', 'are', 'things', "you'd", 'like', 'to', 'say', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', "i'm", 'good', '||period||', 'really', '||period||', '||return||', '||return||', 'george:', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||comma||', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', "susan's", 'stone', '||rightparen||', '||period||', '||period||', '||period||', 'and', 'then', '||comma||', 'right', 'after', 'the', 'all', '||dash||', 'star', 'break', '||comma||', 'we', '||comma||', 'we', 'just', 'swept', 'the', 'orioles', '||period||', 'four', 'games', '||period||', 'in', 'baltimore', '||period||', '||leftparen||', 'adjusts', 'necktie', 'nervously', '||rightparen||', 'so', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'that', 'was', 'awkward', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'mind', 'the', 'cemetery', '||period||', '||return||', '||return||', 'george:', 'what', 'were', 'you', 'saying', 'to', 'the', 'rosses', 'over', 'there', '||comma||', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "don't", 'know', '||period||', 'i', 'told', 'them', 'her', 'death', 'takes', 'place', 'in', 'the', 'shadow', 'of', 'new', 'life', '||period||', "she's", 'not', 'really', 'dead', 'if', 'we', 'find', 'a', 'way', 'to', 'remember', 'her', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'star', 'trek', 'ii', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'identifying', 'it', '||rightparen||', 'wrath', 'of', 'khan', '||exclammark||', '||return||', '||return||', 'jerry:', 'right', '||period||', 'kramer', 'and', 'i', 'saw', 'it', 'last', 'night', '||period||', 'spock', 'dies', '||comma||', 'they', 'wrap', 'him', 'up', 'in', 'a', 'towel', '||comma||', 'and', 'they', 'shoot', 'him', 'out', 'the', 'bowel', 'of', 'the', 'ship', 'in', 'that', 'big', 'sunglasses', 'case', '||period||', '||return||', '||return||', 'george:', 'that', 'was', 'a', 'hell', 'of', 'a', 'thing', 'when', 'spock', 'died', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', 'anyway', '||comma||', 'the', '||comma||', 'uh', '||period||', '||period||', '||period||', 'the', 'stone', 'is', 'up', '||comma||', 'i', 'paid', 'my', 'respects', '||comma||', 'guess', "that's", 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', "it's", 'over', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'mourned', 'for', 'three', 'long', 'months', '||exclammark||', 'summer', 'months', '||comma||', 'too', '||exclammark||', 'anybody', 'could', 'grieve', 'in', 'january', '||exclammark||', "it's", 'time', 'for', 'george', 'to', 'start', 'being', 'george', 'again', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'so', 'uh', '||comma||', "let's", 'do', 'something', 'later', '||period||', 'how', "'bout", 'a', 'movie', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'nothing', 'says', 'george', 'like', 'a', 'movie', '||exclammark||', '||return||', '||return||', 'kramer:', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'you', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', "can't", '||period||', 'i', 'got', 'my', 'martial', 'arts', 'class', '||period||', '||return||', '||return||', 'george:', 'george', 'is', 'going', 'to', 'the', 'movies', '||exclammark||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'so', "how's", 'your', 'karate', 'class', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pronouncing', 'it', '||quotemark||', 'kar', '||dash||', 'ah', '||dash||', 'tay', '||quotemark||', '||rightparen||', 'karate', '||comma||', 'jerry', '||period||', 'karate', '||period||', 'the', 'lifetime', 'pursuit', 'of', 'balance', 'and', 'harmony', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'but', 'with', 'punching', 'and', 'kicking', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'karate', 'is', 'not', 'here', '||leftparen||', 'pointing', 'to', 'the', 'ground', '||rightparen||', '||period||', "it's", 'here', '||leftparen||', 'points', 'to', 'head', '||rightparen||', '||comma||', 'and', 'here', '||leftparen||', 'points', 'to', 'chest', '||rightparen||', '||comma||', 'and', 'here', '||leftparen||', 'makes', 'a', 'circle', 'with', 'his', 'hands', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'i', 'gotta', 'go', 'to', 'the', 'airport', 'to', 'pick', 'up', 'elaine', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', "she's", 'been', 'away', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'been', 'in', 'mexico', 'for', 'six', 'weeks', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'really', 'think', "you're", 'wrong', '||period||', 'we', 'just', 'went', 'to', 'the', 'fireworks', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'july', '4th', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'm", 'outta', 'here', '||comma||', 'and', 'when', 'i', 'get', 'back', '||comma||', 'i', "don't", 'want', 'to', 'see', 'you', 'here', '||leftparen||', 'points', 'to', 'kitchen', '||rightparen||', '||comma||', 'here', '||leftparen||', 'points', 'to', 'living', 'room', '||rightparen||', '||comma||', 'or', 'here', '||leftparen||', 'makes', 'similar', 'circle', 'with', 'his', 'hands', '||rightparen||', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'unbelievable', '||period||', 'six', 'weeks', 'of', 'traveling', 'through', 'mexico', 'all', 'on', "peterman's", 'peso', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'so', 'did', 'you', 'get', 'any', 'good', 'ideas', 'for', 'the', 'catalog', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'tons', '||exclammark||', '||return||', '||return||', 'jerry:', 'anything', 'you', "couldn't", 'have', 'gotten', 'tearing', 'open', 'a', 'bag', 'of', 'doritos', 'and', 'watching', 'viva', 'zapata', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', 'sarcastically', '||rightparen||', 'you', "don't", 'respect', 'my', 'work', 'at', 'all', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", '||period||', '||return||', '||return||', 'elaine:', 'so', "what's", 'been', 'going', 'on', 'around', 'this', 'dump', '||questionmark||', "how's", 'your', 'fiancee', '||questionmark||', '||return||', '||return||', 'jerry:', 'my', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'jeannie', '||period||', '||period||', '||period||', 'your', 'fiancee', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||comma||', 'that', '||period||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'spill', 'it', '||comma||', 'jerome', '||period||', '||return||', '||return||', 'jerry:', "there's", 'really', 'not', 'that', 'much', 'to', 'tell', '||period||', '||return||', '||return||', 'jerry', '&', 'jeannie:', '||leftparen||', 'simultaneously', '||rightparen||', 'i', 'hate', 'you', '||exclammark||', '||return||', '||return||', 'jeannie:', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continuing', '||rightparen||', 'no', 'rejection', '||comma||', 'no', 'guilt', '||comma||', 'no', 'remorse', '||period||', '||return||', '||return||', 'elaine:', "you've", 'never', 'felt', 'remorse', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'i', 'feel', 'bad', 'about', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'bet', 'your', 'parents', 'were', 'upset', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'eh', '||period||', '||return||', '||return||', 'elaine:', 'you', "haven't", 'told', 'them', 'yet', '||comma||', 'have', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'dugan:', '||quotemark||', 'so', 'i', 'pressed', 'through', 'the', 'rushes', '||comma||', 'there', 'below', 'me', '||comma||', 'the', 'shimmering', 'waters', 'of', 'lake', 'victoria', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'oh', '||comma||', 'for', 'the', 'love', 'of', 'god', '||comma||', 'man', '||exclammark||', 'just', 'tell', 'me', 'what', 'the', 'product', 'is', '||period||', '||return||', '||return||', 'dugan:', "it's", 'a', '||comma||', 'uh', '||comma||', 'washcloth', '||period||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'no', 'washcloths', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'mr', '||period||', 'peterman', '||comma||', "i've", 'got', 'a', 'really', 'good', 'idea', 'for', 'a', 'hat', '||period||', 'it', 'combines', 'the', 'spirit', 'of', 'old', 'mexico', 'with', 'a', 'little', 'big', 'city', 'panache', '||period||', 'i', 'like', 'to', 'call', 'it', 'the', 'urban', 'sombrero', '||period||', '||return||', '||return||', 'j', '||period||', 'peterman:', '||leftparen||', 'rubbing', 'his', 'neck', '||rightparen||', 'oh', '||comma||', 'my', 'neck', 'is', 'one', 'gargantuan', 'monkey', 'fist', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'okay', '||comma||', 'mr', '||period||', 'peterman', '||questionmark||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'yes', '||comma||', 'yes', '||period||', 'go', 'on', '||comma||', 'go', 'on', '||comma||', 'go', 'on', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'see', '||comma||', "it's", '||period||', '||period||', '||period||', 'businessmen', 'taking', 'siestas', '||period||', 'you', 'know', '||comma||', "it's", 'the', '||comma||', 'uh', '||comma||', 'the', 'urban', 'sombrero', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'inhales', 'deeply', '||rightparen||', 'i', 'tell', 'you', '||comma||', 'jerry', '||comma||', "i'm", 'feeling', 'something', '||period||', 'something', 'i', "haven't", 'felt', 'in', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'jerry:', 'pride', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'autonomy', '||comma||', 'complete', 'and', 'total', 'autonomy', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "you're", 'your', 'own', 'boss', 'now', '||period||', '||return||', '||return||', 'george:', 'i', 'wanna', 'go', 'to', 'a', 'tractor', 'pull', '||period||', '||return||', '||return||', 'jerry:', 'go', 'ahead', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'staying', 'out', 'all', 'night', '||exclammark||', '||return||', '||return||', 'jerry:', "who's", 'stopping', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'wanna', 'bite', 'into', 'a', 'big', 'hunk', 'of', 'cheese', '||comma||', 'just', 'bite', 'into', 'it', 'like', "it's", 'an', 'apple', '||period||', '||return||', '||return||', 'jerry:', 'whatever', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'god', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'dolores', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'mulva', '||period||', '||return||', '||return||', 'dolores:', 'jerry', '||comma||', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'dolores', '||period||', 'george', '||comma||', 'you', 'remember', 'dolores', '||questionmark||', '||return||', '||return||', 'george:', 'dolores', '||exclammark||', '||return||', '||return||', 'dolores:', 'hi', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'heard', 'you', 'got', 'engaged', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'dolores', '||comma||', 'i', 'did', '||period||', 'it', "didn't", 'work', 'out', '||comma||', 'though', '||comma||', 'dolores', '||period||', '||return||', '||return||', 'dolores:', 'oh', '||comma||', "that's", 'too', 'bad', '||period||', 'you', 'know', '||period||', '||period||', '||period||', 'we', 'should', 'get', 'together', 'sometime', '||period||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'bye', '||comma||', 'dolores', '||period||', '||return||', '||return||', 'george:', 'i', 'thought', 'mulva', 'hated', 'you', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'did', 'i', '||period||', 'you', 'know', 'what', '||questionmark||', 'i', 'bet', 'it', 'was', 'the', 'engagement', '||period||', "i've", 'shown', 'i', 'can', 'go', 'all', 'the', 'way', '||period||', '||return||', '||return||', 'george:', 'all', 'the', 'way', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', 'our', '||quotemark||', 'all', 'the', 'way', '||quotemark||', '||comma||', 'their', '||quotemark||', 'all', 'the', 'way', '||period||', '||quotemark||', 'i', 'got', 'the', 'stink', 'of', 'responsibility', 'on', 'me', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'and', 'you', 'were', 'engaged', 'for', 'like', 'a', 'minute', '||comma||', 'i', 'was', 'engaged', 'for', 'a', 'year', '||period||', '||return||', '||return||', 'jerry:', 'you', 'stink', 'worse', 'than', 'i', 'do', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'feeling', 'something', 'else', 'here', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'secretary:', 'elaine', '||comma||', "it's", 'mr', '||period||', 'peterman', 'on', 'the', 'phone', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'answers', 'the', 'phone', '||rightparen||', 'hello', '||comma||', 'mr', '||period||', 'peterman', '||comma||', 'how', 'are', 'you', 'feeling', '||questionmark||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'elaine', '||comma||', "i'll", 'be', 'blunt', '||period||', "i'm", 'burnt', 'out', '||period||', "i'm", 'fried', '||period||', 'my', 'mind', 'is', 'as', 'barren', 'as', 'the', 'surface', 'of', 'the', 'moon', '||period||', 'i', 'can', 'run', 'that', 'catalog', 'no', 'longer', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'well', '||comma||', "who's", 'gonna', 'do', 'it', '||questionmark||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'me', '||questionmark||', 'why', 'me', '||questionmark||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'why', '||comma||', 'indeed', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||comma||', 'you', "can't", 'leave', '||period||', '||return||', '||return||', 'j', '||period||', 'peterman:', "i've", 'already', 'left', '||comma||', 'elaine', '||period||', "i'm", 'in', 'burma', '||period||', '||return||', '||return||', 'elaine:', 'burma', '||questionmark||', '||return||', '||return||', 'j', '||period||', 'peterman:', 'you', 'most', 'likely', 'know', 'it', 'as', 'myanmar', '||comma||', 'but', 'it', 'will', 'always', 'be', 'burma', 'to', 'me', '||period||', 'bonne', 'chance', '||comma||', 'elaine', '||period||', '||leftparen||', 'to', 'a', 'passerby', '||rightparen||', 'you', 'there', 'on', 'the', 'motorbike', '||exclammark||', 'sell', 'me', 'one', 'of', 'your', 'melons', '||exclammark||', '||leftparen||', 'runs', 'after', 'him', '||rightparen||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', '||questionmark||', '||return||', '||return||', 'elaine:', 'burma', '||period||', '||return||', '||return||', 'jerry:', "isn't", 'it', 'myanmar', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'he', 'wants', 'me', 'to', 'run', 'the', 'catalog', '||exclammark||', "it's", 'crazy', '||exclammark||', 'i', "can't", 'be', 'in', 'charge', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'certainly', 'not', '||period||', '||return||', '||return||', 'elaine:', 'i', 'mean', '||comma||', 'i', "can't", 'give', 'people', 'orders', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', "one's", 'gonna', 'listen', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'qualified', 'to', 'run', 'the', 'catalog', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'not', 'qualified', 'to', 'work', 'at', 'the', 'catalog', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||leftparen||', 'notices', 'elaine', '||rightparen||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'peterman', 'ran', 'off', 'to', 'burma', '||comma||', 'and', 'now', 'he', 'wants', 'me', 'to', 'run', 'the', 'catalog', '||period||', '||return||', '||return||', 'kramer:', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'myanmar', '||period||', '||return||', '||return||', 'kramer:', 'the', 'discount', 'pharmacy', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'just', 'gonna', 'tell', 'him', 'no', '||period||', 'i', "can't", 'run', 'the', 'catalog', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', 'whoa', '||period||', "can't", '||questionmark||', 'when', 'did', 'that', 'word', 'enter', 'your', 'vocabulary', '||questionmark||', 'what', '||comma||', 'is', 'the', 'job', 'too', 'difficult', '||questionmark||', '||leftparen||', 'jerry', 'nods', '||rightparen||', 'what', '||comma||', 'you', "don't", 'have', 'enough', 'experience', '||questionmark||', '||leftparen||', 'jerry', 'shakes', 'his', 'head', '||rightparen||', 'oh', '||comma||', "you're", 'not', 'smart', 'enough', '||questionmark||', '||leftparen||', 'jerry', 'shakes', 'his', 'head', '||rightparen||', "where's", 'your', 'confidence', '||questionmark||', '||leftparen||', 'jerry', 'shrugs', 'his', 'shoulders', '||rightparen||', 'look', '||comma||', 'elaine', '||comma||', 'let', 'me', 'tell', 'you', 'a', 'story', '||period||', 'when', 'i', 'first', 'studied', 'karate', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'karate', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'karate', '||period||', 'i', 'had', 'no', 'support', '||period||', 'not', 'from', 'him', '||comma||', 'not', 'from', 'newman', '||comma||', 'no', 'one', '||period||', 'the', 'first', 'time', 'i', 'sparred', 'with', 'an', 'opponent', '||comma||', 'i', 'was', 'terrified', '||period||', 'my', 'legs', '||comma||', 'they', 'were', 'like', 'noodles', '||period||', 'but', 'then', 'i', 'looked', 'inside', '||comma||', 'and', 'i', 'found', 'my', 'katra', '||period||', '||return||', '||return||', 'elaine:', 'katra', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'your', 'spirit', '||comma||', 'your', '||comma||', 'uh', '||comma||', 'being', '||period||', 'the', 'part', 'of', 'you', 'that', 'says', '||comma||', '||quotemark||', 'yes', '||comma||', 'i', 'can', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'sammy', 'davis', 'had', 'it', '||period||', '||return||', '||return||', 'kramer:', 'so', 'i', 'listened', 'to', 'my', 'katra', 'and', 'now', '<vreep>', "i'm", 'dominating', 'the', 'dojo', '||period||', "i'm", 'class', 'champion', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', '||comma||', 'i', 'have', 'watched', 'peterman', 'run', 'the', 'company', '||period||', '||return||', '||return||', 'kramer:', 'sure', 'you', 'have', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', 'how', 'to', 'do', 'it', '||period||', 'pair', 'of', 'pants', '||comma||', 'a', 'stupid', 'story', '||comma||', 'a', 'huge', 'markup', '||period||', 'i', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', 'you', 'follow', 'your', 'katra', '||comma||', 'and', 'you', 'can', 'do', 'anything', '||period||', '||leftparen||', 'leads', 'her', 'to', 'the', 'door', '||rightparen||', 'now', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'excitedly', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'that', 'kid', 'is', 'gonna', 'be', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "she's", 'not', '||period||', '||return||', '||return||', 'joey:', 'come', 'on', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'there', '||period||', '||return||', '||return||', 'joey:', 'come', 'on', '||period||', "mom's", 'down', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'joey', '||period||', '||return||', '||return||', 'jerry:', 'you', 'guys', 'both', 'have', 'class', 'at', 'the', 'same', 'time', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "we're", 'in', 'the', 'same', 'class', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', "you're", 'in', 'the', 'same', 'class', '||questionmark||', '||return||', '||return||', 'kramer:', 'he', 'almost', 'beat', 'me', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "you're", 'fighting', 'children', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "we're", 'all', 'at', 'the', 'same', 'skill', 'level', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "he's", 'nine', 'years', 'old', '||exclammark||', 'you', "don't", 'need', 'karate', '||comma||', 'you', 'can', 'just', 'wring', 'his', 'neck', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'carpool', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'kramer:', 'thanks', 'for', 'the', 'juice', 'box', '||comma||', 'mrs', '||period||', 'z', '||period||', '||return||', '||return||', 'joey:', 'hey', '||comma||', 'could', 'we', 'stop', 'for', 'ice', 'cream', 'on', 'the', 'way', 'home', '||comma||', 'mom', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'zanfino:', 'mmm', '||comma||', 'i', "don't", 'know', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'zanfino:', 'all', 'right', '||period||', '||return||', '||return||', 'kids', '&', 'kramer:', 'yay', '||exclammark||', '||return||', '||return||', 'dugan:', "*you're*", 'taking', 'the', 'job', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'got', 'that', 'straight', '||period||', 'now', 'i', 'want', 'four', 'new', 'ideas', 'from', 'each', 'of', 'you', 'by', '600', '||period||', 'no', '||comma||', 'make', 'that', 'six', 'ideas', 'by', '400', '||period||', 'all', 'right', '||comma||', "let's", 'move', '||comma||', 'move', '||comma||', 'move', '||comma||', 'move', '||comma||', 'move', '||exclammark||', '||return||', '||return||', 'sansei:', 'are', 'you', 'prepared', 'for', 'kumite', '||questionmark||', '||return||', '||return||', 'kramer', '&', 'joey:', 'yes', '||comma||', 'sansei', '||period||', '||return||', '||return||', 'sansei:', 'fight', 'stance', '||period||', '||return||', '||return||', 'sansei:', 'hydjama', '||exclammark||', 'begin', '||exclammark||', '||return||', '||return||', 'sansei:', '||leftparen||', 'raising', "kramer's", 'arm', '||rightparen||', 'winner', '||exclammark||', '||return||', '||return||', 'george:', "it's", 'open', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'surprised', '||rightparen||', 'rosses', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'hello', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'uh', '||period||', '||period||', '||period||', 'come', 'in', '||comma||', 'come', '||comma||', 'come', 'in', '||period||', '||leftparen||', 'frantically', 'clears', 'the', 'couch', 'of', 'newspapers', 'and', 'crumbs', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'we', '||comma||', 'uh', '||comma||', 'tried', 'to', 'call', '||comma||', 'but', 'the', 'line', 'was', 'busy', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'oh', '||period||', 'yeah', '||comma||', 'sure', '||period||', 'here', '||period||', 'uh', '||comma||', 'sit', 'down', '||period||', 'uh', '||comma||', 'uh', '||comma||', 'cheese', '||comma||', 'there', '||questionmark||', '||leftparen||', 'he', 'grabs', 'a', 'suit', 'jacket', 'from', 'the', 'desk', 'chair', 'and', 'puts', 'it', 'on', '||rightparen||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'we', 'know', 'the', 'last', 'three', 'months', 'have', 'been', 'hard', 'on', 'you', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yes', '||comma||', 'yes', '||comma||', 'yes', '||period||', 'very', '||comma||', 'very', 'hard', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'and', "they've", 'been', 'hard', 'on', 'us', '||comma||', 'too', '||period||', "it's", 'a', 'terrible', 'tragedy', 'when', 'parents', 'outlive', 'their', 'children', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'agree', '||period||', 'i', 'hope', 'my', 'parents', 'go', 'long', 'before', 'i', 'do', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', "that's", 'why', 'we', 'decided', 'to', 'create', 'a', 'foundation', 'to', 'preserve', "susan's", 'memory', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'wonderful', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'and', '||comma||', 'of', 'course', '||comma||', 'we', 'want', 'you', 'to', 'be', 'an', 'integral', 'part', '||period||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'inte', '||dash||', '||dash||', 'h', '||dash||', 'how', 'inte', '||dash||', '||dash||', 'how', 'integral', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', "you'll", 'be', 'on', 'the', 'board', 'of', 'directors', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'feigning', 'excitement', '||rightparen||', 'great', '||comma||', 'great', '||period||', 'o', '||dash||', 'oh', '||comma||', 'oh', '||comma||', 'oh', '||comma||', 'gosh', '||period||', 'you', 'know', '||comma||', "it's", 'just', '||period||', '||period||', '||period||', 'my', 'duties', 'with', 'the', 'yankees', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', "don't", 'worry', '||comma||', 'george', '||period||', 'the', 'foundation', 'will', 'revolve', 'around', 'your', 'schedule', '||period||', 'evenings', '||comma||', 'weekends', '||comma||', 'whenever', 'you', 'have', 'free', 'time', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'believe', 'this', 'is', 'happening', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'well', '||comma||', 'it', "wouldn't", 'have', 'without', 'your', 'friend', "jerry's", 'inspirational', 'words', '||period||', 'he', 'said', 'to', 'us', '||comma||', '||quotemark||', "she's", 'not', 'really', 'dead', 'if', 'her', 'shadow', 'is', '||period||', '||period||', '||period||', '||quotemark||', 'uh', '||comma||', 'w', '||dash||', 'what', 'was', 'it', '||comma||', 'dear', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'something', 'about', 'a', 'way', '||comma||', 'a', '||dash||', 'and', 'a', 'light', '||comma||', 'uh', '||period||', '||period||', '||period||', 'ha', '||period||', 'who', 'the', 'hell', 'knows', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'well', '||comma||', "what's", 'important', 'is', 'that', 'your', 'relationship', 'with', 'susan', "doesn't", 'have', 'to', 'end', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'so', 'will', 'you', 'be', 'sure', 'to', 'thank', 'jerry', 'for', 'us', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'feigning', 'happiness', '||rightparen||', 'the', 'second', 'i', 'see', 'him', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', "how's", 'your', 'day', '||comma||', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'yeah', '||period||', "i'm", 'meeting', 'mulva', 'here', 'in', 'a', 'few', 'minutes', '||period||', '||return||', '||return||', 'george:', 'so', 'uh', '||period||', '||period||', '||period||', 'wrath', 'of', 'khan', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'was', 'that', 'a', 'beauty', 'or', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'was', 'that', 'line', 'again', '||questionmark||', 'something', 'about', 'finding', 'your', 'way', 'in', 'a', 'shadow', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', "it's", '||period||', '||period||', '||period||', '||quotemark||', "she's", 'not', 'really', 'dead', 'if', 'we', 'find', 'a', 'way', 'to', 'remember', 'her', '||period||', '||quotemark||', '||return||', '||return||', 'george:', "that's", 'it', '||period||', "that's", 'the', 'line', '||period||', '||period||', '||period||', '||leftparen||', 'squirts', 'mustard', 'into', "jerry's", 'coffee', 'and', 'stirs', 'it', '||rightparen||', '||period||', '||period||', '||period||', 'that', 'destroyed', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stares', 'into', 'coffee', 'cup', 'and', 'looks', 'back', 'at', 'george', '||rightparen||', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'rosses', 'have', 'started', 'up', 'a', 'foundation', '||comma||', 'jerry', '||comma||', 'and', 'i', 'have', 'to', 'sit', 'on', 'the', 'board', 'of', 'directors', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'board', 'of', 'directors', '||period||', 'look', 'at', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'look', 'at', 'me', '||exclammark||', 'i', 'was', 'free', 'and', 'clear', '||exclammark||', 'i', 'was', 'living', 'the', 'dream', '||exclammark||', 'i', 'was', 'stripped', 'to', 'the', 'waist', '||comma||', 'eating', 'a', 'block', 'of', 'cheese', 'the', 'size', 'of', 'a', 'car', 'battery', '||exclammark||', '||return||', '||return||', 'jerry:', 'before', 'we', 'go', 'any', 'further', '||comma||', "i'd", 'just', 'like', 'to', 'point', 'out', 'how', 'disturbing', 'it', 'is', 'that', 'you', 'equate', 'eating', 'a', 'block', 'of', 'cheese', 'with', 'some', 'sort', 'of', 'bachelor', 'paradise', '||period||', '||return||', '||return||', 'george:', "don't", 'you', 'see', '||questionmark||', "i'm", 'back', 'in', '||period||', '||return||', '||return||', 'jerry:', 'all', 'because', 'of', 'wrath', 'of', 'khan', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'was', 'the', 'best', 'of', 'those', 'movies', '||period||', '||return||', '||return||', 'george:', 'khan', '||exclammark||', '||return||', '||return||', 'wyck:', 'george', '||period||', '||return||', '||return||', 'wyck:', 'george', '||period||', '||leftparen||', 'taps', 'him', 'on', 'the', 'shoulder', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'startled', '||rightparen||', 'oh', '||exclammark||', '||return||', '||return||', 'wyck:', "i'm", 'wyck', 'thayer', '||comma||', 'chairman', 'of', 'the', 'susan', 'ross', 'foundation', '||period||', '||return||', '||return||', 'george:', 'wink', '||period||', '||return||', '||return||', 'wyck:', '||leftparen||', 'correcting', 'him', '||rightparen||', 'wyck', '||period||', '||return||', '||return||', 'george:', 'wyck', '||period||', '||return||', '||return||', 'wyck:', 'now', '||comma||', 'as', 'you', 'know', '||comma||', 'the', 'rosses', 'had', 'considerable', 'monies', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'i', 'know', 'they', 'have', 'some', 'monies', '||period||', '||return||', '||return||', 'wyck:', 'they', 'had', 'more', 'than', 'some', 'monies', '||period||', 'many', '||comma||', 'many', 'monies', '||period||', 'and', 'they', 'planned', 'to', 'give', 'a', 'sizable', 'portion', 'of', 'their', 'estate', 'to', 'you', 'and', 'susan', 'after', 'the', 'wedding', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'if', 'susan', 'and', 'i', 'had', '||period||', '||period||', '||period||', 'i', 'mean', '||comma||', 'if', 'the', 'envelopes', "hadn't", '||comma||', 'uh', '||period||', '||period||', '||period||', 'then', 'we', '||dash||', '||dash||', '||return||', '||return||', 'wyck:', 'yes', '||period||', '||return||', '||return||', 'george:', 'and', 'now', '||questionmark||', '||return||', '||return||', 'wyck:', 'not', '||period||', "it's", 'all', 'been', 'endowed', 'to', 'the', 'foundation', '||comma||', 'even', 'this', 'townhouse', '||period||', '||return||', '||return||', 'george:', 'this', 'townhouse', '||questionmark||', '||return||', '||return||', 'wyck:', 'this', 'would', 'have', 'been', 'your', 'wedding', 'gift', '||period||', '||return||', '||return||', 'george:', 'and', 'now', '||questionmark||', '||return||', '||return||', 'wyck:', 'not', '||period||', '||return||', '||return||', 'george:', 'not', '||period||', '||return||', '||return||', 'wyck:', 'also', 'endowed', '||period||', 'george', '||period||', '||period||', '||period||', 'i', 'know', 'how', 'much', 'susan', 'meant', 'to', 'you', '||period||', 'it', "can't", 'be', 'easy', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'it', 'really', "can't", '||period||', '||return||', '||return||', 'dolores:', 'so', 'who', 'broke', 'it', 'off', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "that's", 'the', 'thing', '||period||', 'it', 'was', 'completely', 'mutual', '||period||', '||return||', '||return||', 'dolores:', 'oh', '||comma||', 'come', 'on', '||period||', 'everybody', 'knows', "there's", 'no', 'such', 'thing', 'as', 'a', 'mutual', 'breakup', '||period||', 'tell', 'me', 'the', 'truth', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', '||period||', 'it', 'was', 'the', "world's", 'first', '||period||', '||return||', '||return||', 'dolores:', 'you', 'know', '||comma||', 'when', 'i', 'heard', 'you', 'got', 'engaged', '||comma||', 'i', 'thought', '*maybe*', 'you', 'had', 'matured', '||period||', 'but', 'obviously', "there's", 'no', 'growth', 'here', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "can't", 'argue', 'with', 'that', '||comma||', 'but', 'the', 'fact', 'remains', '||period||', '||period||', '||period||', 'i', 'was', 'completely', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'himself', '||comma||', 'cursing', 'her', '||rightparen||', 'mulva', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'secretary:', 'please', 'hold', 'for', 'elaine', 'benes', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "don't", 'believe', 'this', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'picking', 'up', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'guess', 'who', 'just', 'finished', 'laying', 'out', 'her', 'first', 'issue', 'of', 'the', 'j', '||period||', 'peterman', 'catalog', '||period||', '||return||', '||return||', 'jerry:', "how's", 'it', 'look', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'muffled', '||comma||', 'as', "she's", 'smoking', 'a', 'cigar', '||rightparen||', "it's", 'a', 'peach', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'say', '||comma||', "it's", 'a', 'peach', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'let', 'me', 'ask', 'you', 'something', '||period||', 'when', 'i', 'told', 'you', 'my', 'breakup', 'was', 'mutual', '||comma||', 'did', 'you', 'believe', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "it's", 'weak', '||period||', 'no', "one's", 'gonna', 'buy', 'it', '||comma||', 'and', 'you', "shouldn't", 'be', 'selling', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'do', 'some', 'research', 'here', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'hey', '||period||', 'me', '||period||', 'talking', '||period||', 'you', 'know', '||comma||', 'between', 'you', 'and', 'me', '||comma||', 'i', 'always', 'thought', 'kramer', 'was', 'a', 'bit', 'of', 'a', 'doofus', '||comma||', 'but', 'he', 'believed', 'in', 'me', '||period||', '*you*', 'did', 'not', '||period||', 'so', 'as', 'i', 'see', 'it', '||comma||', "he's", 'not', 'the', 'doofus', '||period||', '*you*', 'are', 'the', 'doofus', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'the', 'doofus', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'you', '||comma||', 'jerry', '||comma||', 'are', 'the', 'doofus', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'it', 'occurs', 'to', 'me', 'that', 'kramer', 'is', 'at', 'karate', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', '||comma||', 'maybe', "i'll", 'just', 'go', 'down', 'there', 'and', 'thank', 'him', 'in', 'person', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'what', 'i', 'was', 'thinking', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||comma||', 'i', '||dash||', 'i', '||dash||', "i'm", 'dominating', '||period||', '||return||', '||return||', 'elaine:', 'you', 'never', 'said', 'you', 'were', 'fighting', 'children', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'not', 'the', 'size', 'of', 'the', 'opponent', '||comma||', 'elaine', '||comma||', "it's", '||comma||', 'uh', '||comma||', 'the', 'ferocity', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'what', 'you', 'used', 'to', 'build', 'me', 'up', '||questionmark||', 'this', 'is', 'where', 'you', 'got', 'all', 'that', 'stupid', 'katra', 'stuff', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', "that's", 'from', '||comma||', 'uh', '||comma||', 'star', 'trek', 'iii', '||period||', '||period||', '||period||', 'the', 'search', 'for', 'spock', '||period||', '||return||', '||return||', 'elaine:', 'search', '||period||', '||period||', '||period||', 'for', 'spock', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'know', 'jerry', 'will', 'tell', 'you', 'that', 'the', 'wrath', 'of', 'khan', 'is', 'the', 'better', 'picture', '||comma||', 'but', 'for', 'me', '||comma||', 'i', 'always', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pushes', 'him', '||rightparen||', 'you', 'doofus', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'question', '#8', '||period||', 'what', 'if', 'i', 'told', 'you', 'my', 'fiancee', 'left', 'me', 'for', 'another', 'man', '||questionmark||', 'does', 'that', 'make', 'me', 'more', 'likable', '||comma||', 'less', 'likable', '||comma||', 'as', 'likable', '||questionmark||', "let's", 'start', 'over', 'here', 'this', 'time', '||period||', '||return||', '||return||', 'waitress', '#1:', 'more', '||period||', '||return||', '||return||', 'waitress', '#2:', 'less', '||period||', '||return||', '||return||', 'ruthie:', 'same', '||period||', '||return||', '||return||', 'willie:', 'are', 'we', 'about', 'through', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'you', 'said', 'your', 'mom', 'was', 'meeting', 'us', 'in', 'the', 'alley', '||period||', '||return||', '||return||', 'joey:', 'she', 'had', 'a', 'little', 'change', 'of', 'plans', '||period||', '||return||', '||return||', 'kramer:', "what's", 'going', 'on', '||questionmark||', 'hey', '||comma||', 'timmy', '||comma||', 'clara', '||period||', 'that', 'was', 'some', 'kind', 'of', 'workout', 'we', 'had', 'tonight', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'girl:', 'now', 'we', 'finish', 'it', '||period||', '||return||', '||return||', 'kramer:', 'aah', '||exclammark||', 'aah', '||exclammark||', 'mama', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'dad', '||comma||', 'i', "wouldn't", 'eat', 'anything', 'you', 'caught', 'in', 'that', 'pond', 'out', 'in', 'front', 'of', 'the', 'condo', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'look', '||comma||', "elaine's", 'here', '||comma||', 'i', 'gotta', 'get', 'going', '||period||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'uh', '||comma||', "i'm", 'not', 'getting', 'married', '||period||', 'tell', 'mom', '||period||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||period||', '||period||', '||period||', 'did', 'you', 'stop', 'by', 'the', 'dojo', '||questionmark||', '||return||', '||return||', 'elaine:', 'yep', '||period||', '||return||', '||return||', 'jerry:', "how's", 'your', 'confidence', 'level', '||questionmark||', '||return||', '||return||', 'elaine:', 'shot', '||period||', '||return||', '||return||', 'jerry:', 'self', '||dash||', 'esteem', '||questionmark||', '||return||', '||return||', 'elaine:', 'gone', '||period||', '||return||', '||return||', 'jerry:', 'doofus', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'raises', 'her', 'hand', '||rightparen||', 'yo', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'so', 'what', '||questionmark||', 'you', 'put', 'out', 'the', 'catalog', '||period||', 'how', 'bad', 'could', 'it', 'be', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'the', 'urban', 'sombrero', '||period||', 'i', 'put', 'it', 'on', 'the', 'cover', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'nobody', 'sees', 'the', '||period||', '||period||', '||period||', 'cover', '||period||', '||return||', '||return||', 'kramer:', 'god', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'whew', '||exclammark||', 'i', 'got', 'whooped', '||period||', 'you', 'should', 'have', 'seen', 'the', 'rage', 'in', 'their', 'little', 'eyes', '||period||', 'and', 'those', 'tiny', 'little', 'fists', 'of', 'fury', '||period||', 'oh', '||period||', '||leftparen||', 'notices', 'the', 'urban', 'sombrero', '||rightparen||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'the', 'new', 'cover', 'of', 'the', 'j', '||period||', 'peterman', 'catalog', '||period||', 'it', 'is', "elaine's", 'choice', '||period||', "let's", 'congratulate', 'her', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'see', '||period||', '||leftparen||', 'elaine', 'walks', 'up', 'to', 'him', '||rightparen||', 'woof', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'a', 'finger', 'accusingly', 'at', 'kramer', '||rightparen||', 'you', '||exclammark||', 'this', 'is', 'all', 'your', 'fault', '||exclammark||', 'you', 'told', 'me', 'i', 'could', 'run', 'the', 'company', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'then', 'i', 'was', 'way', 'off', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'll", 'see', 'ya', '||period||', '||period||', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'vaya', 'con', 'dios', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'with', 'his', 'forehead', 'in', 'his', 'hands', '||rightparen||', 'man', '||comma||', 'i', 'gotta', 'go', 'lay', 'down', '||period||', 'you', 'and', 'george', 'going', 'out', 'a', 'little', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "he's", 'still', 'stuck', 'at', 'the', 'foundation', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'you', 'oughta', 'go', 'down', 'there', 'and', 'help', 'him', 'out', '||period||', "he's", 'a', 'widower', '||period||', '||return||', '||return||', 'jerry:', 'widower', '||questionmark||', 'wait', 'a', 'second', '||period||', '||leftparen||', 'goes', 'to', 'a', 'notebook', 'of', 'his', 'research', '||rightparen||', '||return||', '||return||', 'wyck:', 'okay', '||comma||', "let's", 'see', '||period||', 'the', 'beachhouse', '||period||', '48', 'acres', '||period||', '||period||', '||period||', 'ooh', '||period||', 'southampton', '||period||', 'that', 'should', 'fetch', 'a', 'fair', 'price', '||period||', '||return||', '||return||', 'george:', 'would', 'i', 'have', 'had', 'access', 'to', 'that', '||questionmark||', '||return||', '||return||', 'wyck:', 'of', 'course', '||comma||', 'it', 'would', 'have', 'been', 'yours', '||period||', '||return||', '||return||', 'george:', 'and', 'now', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'anticipating', 'the', 'answer', '||rightparen||', 'not', '||period||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'georgie', '||exclammark||', "i'm", 'doing', 'some', 'research', 'down', 'at', 'the', 'coffee', 'shop', '||period||', 'your', "story's", 'the', 'one', '||period||', '||return||', '||return||', 'george:', 'my', 'story', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'your', 'widower', "story's", 'tested', 'through', 'the', 'roof', '||period||', '||leftparen||', 'various', 'patrons', 'give', 'the', 'thumbs', 'up', 'in', 'approval', '||rightparen||', 'when', 'are', 'you', 'getting', 'out', 'of', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'wyck', '||period||', 'uh', '||comma||', 'are', 'we', '||comma||', 'uh', '||comma||', 'almost', 'done', 'here', '||questionmark||', '||return||', '||return||', 'wyck:', '||leftparen||', 'chuckling', '||rightparen||', 'oh', '||comma||', 'no', '||comma||', 'not', 'even', 'close', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'remorsefully', '||rightparen||', 'i', "can't", 'go', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', 'you', "can't", 'go', '||questionmark||', "there's", 'two', 'really', 'girls', 'sitting', 'at', 'the', 'counter', 'eating', 'grilled', 'cheese', '||period||', 'cheese', '||comma||', 'george', '||exclammark||', 'cheese', '||exclammark||', '||return||', '||return||', 'wyck:', 'okay', '||comma||', 'next', 'item', '||period||', "susan's", 'doll', 'collection', '||period||', 'estimated', 'value', '$2', '||period||', '6', 'million', '||period||', 'what', 'do', 'you', 'say', 'we', 'go', 'through', 'this', 'doll', 'by', 'doll', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'want', 'me', 'to', 'find', 'a', 'poem', 'about', 'susan', '||questionmark||', 'may', 'she', 'rest', 'in', 'peace', '||questionmark||', '||exclammark||', '||return||', '||return||', 'wyck:', 'well', '||comma||', 'we', 'think', 'it', 'would', 'be', 'a', 'nice', 'touch', 'for', 'the', 'foundation', 'literature', '||period||', 'do', 'you', 'have', 'a', 'favorite', 'poet', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'like', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'mutters', 'something', 'unintelligible', 'under', 'his', 'breath', '||period||', '||rightparen||', '||return||', '||return||', 'wyck:', 'pardon', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'mutters', 'it', 'again', '||rightparen||', '||return||', '||return||', 'wyck:', 'well', '||comma||', 'you', 'should', 'choose', 'the', 'poem', 'since', 'you', 'knew', 'susan', 'best', 'at', 'the', 'time', 'of', 'her', 'unfortunate', '||leftparen||', 'clears', 'his', 'throat', '||rightparen||', '||period||', '||period||', '||period||', 'accident', '||period||', '||return||', '||return||', 'jerry:', 'he', 'cleared', 'his', 'throat', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'did', 'it', 'right', 'as', 'he', 'said', '||quotemark||', 'her', 'unfortunate', 'accident', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'not', 'getting', 'it', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'a', 'throat', '||dash||', 'clear', 'is', 'a', 'non', '||dash||', 'verbal', 'implication', 'of', 'doubt', '||dash||', 'he', 'thinks', 'i', 'killed', 'susan', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'help', 'me', '||comma||', 'rhonda', '||period||', '||return||', '||return||', 'george:', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'looks', 'at', 'his', 'watch', '||rightparen||', ':', '115', '||period||', '||return||', '||return||', 'george:', 'right', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'go', 'meet', 'pam', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'the', 'bookstore', 'girl', '||period||', "how's", 'that', "goin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||period||', "i'm", 'just', 'not', 'ga', '||dash||', 'ga', 'over', 'her', '||period||', 'for', 'once', "i'd", 'like', 'to', 'be', 'ga', '||dash||', 'ga', '||period||', '||return||', '||return||', 'george:', "where's", 'elaine', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'having', 'carol', '||comma||', 'gail', 'and', 'lisa', 'over', '||period||', 'you', 'know', 'they', 'all', 'have', 'kids', 'now', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'with', 'all', 'these', 'people', 'having', 'babies', '||questionmark||', '||return||', '||return||', 'jerry:', 'perpetuation', 'of', 'the', 'species', '||period||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', 'right', '||exclammark||', '||return||', '||return||', 'jerry:', 'by', 'the', 'way', '||comma||', 'just', 'for', 'the', 'record', '||dash||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'did', 'not', '||exclammark||', '||leftparen||', 'they', 'exit', 'the', 'coffee', 'shop', '||period||', '||rightparen||', '||return||', '||return||', 'carol:', '||period||', '||period||', '||period||', 'but', 'because', 'it', 'comes', 'out', 'of', 'your', 'baby', '||comma||', 'it', 'smells', 'good', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "that's", '||period||', '||period||', '||period||', "that's", 'sweet', '||period||', '||return||', '||return||', 'gail:', 'being', 'a', 'mother', 'has', 'made', 'me', 'feel', 'so', 'beautiful', '||period||', '||return||', '||return||', 'carol:', 'elaine', '||comma||', 'you', 'gotta', 'have', 'a', 'baby', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hey', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'i', 'had', 'a', 'piece', 'of', 'whitefish', 'over', 'at', 'barney', 'greengrass', 'the', 'other', 'day', '||period||', '||period||', '||period||', '||return||', '||return||', 'lisa:', 'elaine', '||period||', 'move', 'to', 'long', 'island', 'and', 'have', 'a', 'baby', 'already', '||period||', '||return||', '||return||', 'elaine:', 'i', 'really', 'like', 'the', 'city', '||period||', '||return||', '||return||', 'carol:', 'the', "city's", 'a', 'toilet', '||period||', "when's", 'the', 'last', 'time', 'you', 'saw', 'my', 'little', 'adam', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'it', 'was', 'in', 'the', 'hamptons', '||period||', '||return||', '||return||', 'carol:', 'oh', '||exclammark||', 'i', 'have', 'pictures', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', "that's", 'okay', '||comma||', "it's", 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'carol', '||leftparen||', 'shows', 'elaine', 'and', 'the', 'girls', 'pictures', 'of', 'adam', '||rightparen||', ':', 'look', 'at', 'him', '||exclammark||', 'just', 'look', 'at', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'elaine', 'was', 'telling', 'me', 'about', 'this', 'piece', 'of', 'whitefish', 'she', 'had', 'the', 'other', 'day', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'really', 'think', "i'm", 'wrong', 'about', 'this', 'wyck', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'you', 'really', 'want', 'to', 'test', 'him', 'out', '||comma||', 'why', "don't", 'you', 'try', 'the', 'old', 'jerry', 'lewis', 'trick', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', 'lewis', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'heard', 'that', 'when', 'jerry', 'lewis', 'left', 'a', 'meeting', '||comma||', "he'd", 'purposefully', 'leave', 'a', 'briefcase', 'with', 'a', 'tape', 'recorder', 'in', 'it', '||period||', 'then', 'after', 'five', 'minutes', '||comma||', "he'd", 'come', 'back', 'for', 'it', 'and', 'listen', 'to', 'what', 'everyone', 'said', 'about', 'him', '||period||', '||return||', '||return||', 'george:', "that's", 'pretty', 'paranoid', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'it', 'is', '||period||', '||return||', '||return||', 'george:', 'i', 'like', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'might', '||period||', '||return||', '||return||', 'pam:', 'oh', '||comma||', 'hi', '||exclammark||', "i'm", 'pam', '||period||', 'you', 'must', 'be', 'kramer', '||period||', '||leftparen||', 'kramer', 'is', 'smitten', 'with', 'pam', 'and', 'grins', 'goofily', '||period||', '||rightparen||', "jerry's", 'told', 'me', 'a', 'lot', 'about', 'you', '||period||', '||leftparen||', 'kramer', 'continues', 'grinning', '||period||', '||rightparen||', 'well', '||comma||', "i'm", 'supposed', 'to', 'meet', 'jerry', '||comma||', "it's", 'my', 'day', 'off', '||period||', 'i', 'work', 'in', 'a', 'bookstore', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'mouths', 'the', 'words', '||rightparen||', ':', 'books', '||period||', '||leftparen||', 'knocks', 'over', 'a', 'bowl', 'of', 'fruit', 'on', 'the', 'counter', '||period||', '||rightparen||', '||return||', '||return||', 'pam:', 'oh', '||comma||', 'careful', '||exclammark||', '||leftparen||', 'jerry', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'pam:', "that's", 'okay', '||period||', 'kramer', 'let', 'me', 'in', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'we', 'rush', '||comma||', 'we', 'can', 'still', 'make', 'the', 'movie', '||period||', '||return||', '||return||', 'pam:', 'okay', '||period||', '||leftparen||', 'touches', "kramer's", 'hand', '||rightparen||', 'it', 'was', 'really', 'nice', 'meeting', 'you', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'in', 'trouble', '||comma||', 'buddy', '||period||', 'i', 'just', 'met', 'a', 'woman', '||period||', '||return||', '||return||', 'newman:', 'go', 'on', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "she's", "jerry's", 'girlfriend', '||period||', '||return||', '||return||', 'newman:', 'ah', '||comma||', 'yes', '||period||', 'forbidden', 'love', '||period||', '||return||', '||return||', 'kramer:', 'she', 'works', 'in', 'a', 'book', 'shop', '||period||', 'her', 'name', 'is', 'pam', '||period||', '||return||', '||return||', 'newman:', '||quotemark||', 'pam', '||period||', '||quotemark||', 'i', "don't", 'know', 'the', 'woman', '||comma||', 'but', 'she', 'sounds', 'quite', 'fetching', '||period||', '||return||', '||return||', 'kramer:', 'i', "can't", 'even', 'speak', 'in', 'front', 'of', 'her', '||period||', '||leftparen||', 'sits', 'down', 'on', 'the', 'couch', '||period||', '||rightparen||', '||return||', '||return||', 'newman:', 'jerry', '||exclammark||', 'what', 'could', 'she', 'possibly', 'see', 'in', 'jerry', '||questionmark||', '||leftparen||', 'walks', 'in', 'front', 'of', 'kramer', 'and', 'trips', 'over', 'his', 'feet', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'she', 'has', 'delicate', 'beauty', '||period||', '||return||', '||return||', 'newman:', 'jerry', "wouldn't", 'know', 'delicate', 'beauty', 'if', 'it', 'bludgeoned', 'him', 'over', 'the', 'head', '||period||', '||return||', '||return||', 'kramer:', 'and', 'yet', '||comma||', "he's", 'my', 'friend', '||period||', '||return||', '||return||', 'newman:', 'and', 'therein', 'lies', 'the', 'tragedy', '||period||', 'for', 'i', 'believe', '||comma||', 'sadly', 'for', 'you', '||comma||', 'that', 'there', 'is', 'but', 'one', 'woman', 'meant', 'for', 'each', 'of', 'us', '||period||', 'one', 'perfect', 'angel', 'for', 'whom', 'we', 'are', 'put', 'on', 'this', 'earth', '||period||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', "that's", 'beautiful', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'one', 'winsome', 'tulip', 'we', 'ceaselessly', 'yearn', 'for', 'throughout', 'our', 'dreary', '||comma||', 'workaday', 'lives', '||exclammark||', 'and', 'you', '||comma||', 'my', 'friend', '||comma||', 'have', 'found', 'your', 'angel', '||period||', 'i', 'can', 'tell', '||period||', 'for', 'my', 'heart', 'has', 'also', 'been', 'captured', 'by', 'a', 'breathless', 'beauty', '||dash||', 'whom', 'i', 'fear', 'i', 'will', 'never', 'possess', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'we', 'were', 'talking', 'about', 'me', '||period||', '||return||', '||return||', 'newman:', 'right', '||period||', 'kramer', '||comma||', 'you', 'have', 'to', 'confront', 'jerry', '||period||', '||return||', '||return||', 'kramer:', 'confront', 'jerry', '||questionmark||', 'i', "can't", '||period||', '||return||', '||return||', 'newman:', 'you', 'must', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', "won't", '||exclammark||', '||return||', '||return||', 'newman:', 'you', 'will', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||comma||', 'imitating', 'carol', '||rightparen||', ':', '||quotemark||', 'elaine', '||comma||', 'ya', 'gotta', 'have', 'a', 'baby', '||period||', '||quotemark||', 'ugh', '||period||', '||return||', '||return||', 'george:', 'where', 'are', 'all', 'the', 'poetry', 'magazines', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'new', 'yorker', 'has', 'poetry', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'the', 'new', 'yorker', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'you', 'invite', 'these', 'women', 'over', 'if', 'they', 'annoy', 'you', 'so', 'much', '||questionmark||', '||return||', '||return||', 'elaine:', "they're", 'my', 'friends', '||comma||', 'but', 'they', 'act', 'as', 'if', 'having', 'a', 'baby', 'takes', 'some', 'kind', 'of', 'talent', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'you', 'want', 'to', 'have', 'a', 'baby', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'because', 'i', 'can', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'the', 'life', 'force', '||period||', 'i', 'saw', 'a', 'show', 'on', 'the', 'mollusk', 'last', 'night', '||period||', 'elaine', '||comma||', 'the', 'mollusk', 'travels', 'from', 'alaska', 'to', 'chile', 'just', 'for', 'a', 'shot', 'at', 'another', 'mollusk', '||period||', 'you', 'think', "you're", 'any', 'better', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', 'i', 'think', 'i', 'am', 'better', 'than', 'the', 'mollusk', '||exclammark||', '||return||', '||return||', 'kevin:', 'i', "couldn't", 'help', 'overhearing', 'what', 'you', 'were', 'saying', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'kevin:', 'no', '||comma||', 'no', '||comma||', 'i', 'think', 'i', 'agree', 'with', 'you', '||period||', 'i', 'mean', '||comma||', 'all', 'this', 'talk', 'about', 'having', 'babies', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'like', 'you', 'must', 'procreate', '||period||', '||return||', '||return||', 'kevin:', 'besides', '||comma||', 'anyone', 'can', 'do', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "it's", 'been', 'done', 'to', 'death', '||period||', '||leftparen||', 'smiles', '||rightparen||', '||return||', '||return||', 'george:', 'i', '||comma||', 'uh', '||comma||', 'should', 'have', 'a', 'poem', 'very', 'soon', 'now', '||period||', '||return||', '||return||', 'wyck:', 'are', 'you', 'okay', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'not', 'really', '||period||', 'ever', 'since', 'susan', 'passed', 'on', '||comma||', 'i', 'have', 'good', 'days', 'and', 'bad', '||period||', '||leftparen||', 'turns', 'the', 'briefcase', 'towards', 'the', 'woman', 'on', 'his', 'left', '||period||', '||rightparen||', 'some', 'days', '||comma||', "i'm", 'haunted', 'by', 'one', 'word', '||dash||', 'why', '||period||', 'why', 'susan', '||questionmark||', 'why', "wasn't", 'it', 'me', 'licking', 'those', 'invitations', '||questionmark||', 'why', 'am', 'i', 'still', 'here', '||questionmark||', 'well', '||comma||', 'i', 'gotta', 'run', '||period||', '||leftparen||', 'gets', 'up', 'and', 'leaves', 'the', 'meeting', '||period||', '||rightparen||', '||return||', '||return||', 'wyck:', '||period||', '||period||', '||period||', 'and', 'the', 'stock', 'options', 'for', 'this', 'year', 'look', 'quite', '||comma||', 'uh', '||period||', '||period||', '||period||', '||leftparen||', 'george', 'returns', 'and', 'retrieves', 'the', 'briefcase', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'apologetic', '||rightparen||', ':', 'briefcase', '||period||', '||leftparen||', 'shrugs', 'and', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'kevin', '||period||', 'if', 'i', "don't", 'want', 'children', '||comma||', 'does', 'that', 'make', 'me', 'a', 'bad', 'humanitarian', '||questionmark||', '||return||', '||return||', 'kevin:', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', "'cause", '||comma||', 'i', 'mean', '||comma||', 'when', 'you', 'get', 'to', 'know', 'me', '||comma||', "you'll", 'see', 'that', "i'm", 'a', 'pretty', 'good', 'humanitarian', '||period||', '||leftparen||', 'waitress', 'comes', 'to', 'the', 'table', 'and', 'pours', 'more', 'coffee', '||period||', '||rightparen||', 'you', 'are', 'doing', 'a', 'wonderful', 'job', '||comma||', 'by', 'the', 'way', '||period||', 'thanks', 'a', 'lot', '||period||', '||leftparen||', 'to', 'kevin', '||rightparen||', 'right', '||questionmark||', 'am', 'i', 'right', '||questionmark||', '||leftparen||', 'kramer', 'walks', 'by', '||period||', '||rightparen||', 'kramer', '||period||', 'kramer', '||exclammark||', 'come', 'here', '||comma||', 'look', 'at', 'my', 'new', 'friend', 'kevin', '||period||', '||leftparen||', 'kramer', 'and', 'kevin', 'shake', 'hands', '||period||', '||rightparen||', 'oh', '||comma||', 'you', 'got', 'a', 'little', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'wipes', 'chocolate', 'off', 'his', 'face', '||rightparen||', ':', 'oh', '||comma||', 'i', 'just', 'had', 'two', 'double', '||dash||', 'fudge', 'sundaes', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'are', 'you', 'alright', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'll", 'be', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'jerry', 'has', 'one', 'of', 'those', 'every', 'time', 'he', 'bombs', 'on', 'stage', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'sure', "he'll", 'be', 'sharing', 'his', 'next', 'one', 'with', 'pam', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', '||period||', '||period||', 'that', "won't", 'last', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'not', 'ga', '||dash||', 'ga', '||period||', '||return||', '||return||', 'george:', 'lemme', 'tell', 'you', 'something', '||comma||', 'that', 'jerry', 'lewis', '||questionmark||', 'you', 'wonder', 'how', 'some', 'of', 'these', 'people', 'get', 'to', 'the', 'top', '||questionmark||', "it's", 'ideas', 'like', 'this', '||exclammark||', 'brilliant', '||exclammark||', 'hah', '||dash||', 'hah', '||exclammark||', '||leftparen||', 'notices', 'that', 'the', 'briefcase', 'is', 'damaged', '||period||', '||rightparen||', 'look', 'at', 'this', '||dash||', 'what', 'the', 'hell', 'happened', '||questionmark||', 'the', 'whole', 'side', 'is', 'damaged', 'here', '||period||', '||period||', '||period||', 'and', 'the', 'lock', 'is', 'broken', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'did', 'you', 'leave', 'it', 'up', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'five', 'minutes', '||period||', 'what', 'the', 'hell', 'happened', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'play', 'the', 'tape', '||comma||', 'maybe', "we'll", 'get', 'a', 'clue', '||period||', '||return||', '||return||', 'george:', 'i', 'have', 'to', 'rewind', 'it', 'first', '||period||', '||leftparen||', 'george', 'presses', 'the', 'rewind', 'button', 'on', 'the', 'tape', 'recorder', '||period||', 'he', 'and', 'jerry', 'stand', 'there', '||comma||', 'waiting', 'impatiently', 'as', 'it', 'rewinds', '||period||', '||rightparen||', 'alright', '||comma||', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'stopped', 'dead', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'make', 'of', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||leftparen||', 'george', 'sits', 'down', 'at', 'the', 'table', '||period||', 'kramer', 'enters', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', 'uh', '||comma||', 'can', 'we', 'talk', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'kramer', '||rightparen||', ':', 'kinda', 'busy', 'here', '||period||', '||return||', '||return||', 'kramer:', "i'd", 'like', 'to', 'talk', 'to', 'jerry', 'in', 'private', '||period||', '||return||', '||return||', 'george:', 'why', "can't", 'i', 'stay', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'it', "doesn't", 'concern', 'you', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', 'it', "doesn't", 'concern', 'me', '||comma||', 'then', 'i', 'can', 'stay', '||period||', '||leftparen||', 'kramer', 'grabs', 'the', 'back', 'of', "george's", 'chair', '||comma||', 'drags', 'him', 'out', 'into', 'the', 'hallway', 'and', 'closes', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "what's", 'on', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'pam', '||period||', '||return||', '||return||', 'jerry:', 'pam', '||questionmark||', 'what', 'about', 'pam', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'love', 'her', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'love', 'her', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "she's", 'uh', '||period||', '||period||', '||period||', "she's", 'real', '||period||', 'she', 'can', 'bring', 'home', 'the', 'bacon', 'and', 'fry', 'it', 'in', 'the', 'pan', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'and', 'that', 'voice', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'about', 'her', 'name', '||questionmark||', '||return||', '||return||', 'kramer:', 'pam', '||questionmark||', 'oh', '||comma||', "it's", 'a', 'beautiful', 'name', '||period||', '||leftparen||', 'kramer', 'sits', 'on', 'the', 'couch', '||period||', '||rightparen||', 'pam', '||period||', 'pam', '||period||', 'pam', '||exclammark||', '||return||', '||return||', 'jerry:', "she's", 'got', 'really', 'nice', 'hair', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'incredible', '||period||', 'although', '||comma||', 'i', 'might', 'replace', 'her', 'tortoise', 'clip', 'with', 'one', 'of', 'those', 'velvet', 'scrunchies', '||period||', 'i', 'love', 'those', '||period||', '||return||', '||return||', 'jerry:', "you've", 'got', 'really', 'specific', 'tastes', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'know', 'what', 'i', 'want', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "she's", 'got', 'nice', 'calves', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "she's", 'a', 'dreamboat', '||period||', 'but', '||comma||', 'you', "don't", 'like', 'her', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'could', '||comma||', "you're", 'making', 'some', 'pretty', 'good', 'points', '||period||', '||return||', '||return||', 'kramer:', 'no', 'you', "can't", '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'might', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', 'you', "don't", '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', 'the', 'voice', '||questionmark||', 'the', 'calves', '||questionmark||', 'the', 'bacon', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'can', '||exclammark||', 'i', 'even', 'like', 'the', 'name', '||exclammark||', 'pam', '||exclammark||', '||return||', '||return||', 'kramer', '||leftparen||', 'frantic', '||rightparen||', ':', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'pam', '||exclammark||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'pam', '||exclammark||', '||return||', '||return||', 'kramer:', 'huh', '||dash||', 'yah', '||exclammark||', '||leftparen||', 'kramer', 'loses', 'it', 'and', 'runs', 'out', 'past', 'george', '||comma||', 'who', 'is', 'still', 'sitting', 'in', 'the', 'hallway', 'on', 'a', 'chair', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'so', 'now', 'he', 'wants', 'her', 'more', 'than', 'ever', '||exclammark||', '||return||', '||return||', 'newman:', 'blast', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'am', 'i', 'gonna', 'do', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'newman:', "don't", 'despair', '||comma||', 'my', 'friend', '||period||', '||leftparen||', 'newman', 'walks', 'in', 'front', 'of', 'kramer', 'and', 'trips', 'over', 'his', 'feet', '||period||', 'again', '||period||', '||rightparen||', 'i', "won't", 'allow', 'your', 'love', 'to', 'go', 'unrequited', '||period||', 'not', 'like', 'mine', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'again', 'with', 'you', '||questionmark||', '||return||', '||return||', 'newman:', 'sorry', '||period||', 'but', 'love', 'is', 'spice', 'with', 'many', 'tastes', '||period||', 'a', 'dizzying', 'array', 'of', 'textures', '||period||', '||period||', '||period||', 'and', 'moments', '||period||', '||return||', '||return||', 'kramer:', 'if', 'only', 'i', 'could', 'say', 'things', 'like', 'that', 'around', 'her', '||period||', '||return||', '||return||', 'newman', '||leftparen||', 'getting', 'an', 'idea', '||rightparen||', ':', 'yes', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'hear', 'three', 'distinct', 'sounds', '||period||', 'a', 'low', 'rumple', '||period||', '||period||', '||period||', 'followed', 'by', 'a', 'metallic', "'squink'", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'yes', '||comma||', 'i', 'heard', 'the', "'squink'", '||exclammark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'followed', 'by', 'a', 'mysterious', '||period||', '||period||', '||period||', "'glonk", '||period||', "'", '||return||', '||return||', 'george:', "it's", 'baffling', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'one', 'question', 'does', 'come', 'to', 'mind', '||period||', 'have', 'you', 'considered', 'just', '||period||', '||period||', '||period||', 'asking', 'them', 'what', 'happened', 'to', 'the', 'briefcase', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'would', 'never', 'tell', 'me', '||comma||', 'elaine', '||period||', 'first', 'of', 'all', '||comma||', 'they', 'probably', 'think', 'that', 'i', 'killed', 'susan', '||period||', 'besides', '||comma||', 'i', "don't", 'even', 'think', 'they', 'like', 'me', '||period||', '||leftparen||', 'jerry', 'comes', 'over', 'to', 'the', 'table', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'that', 'pam', '||exclammark||', 'i', 'am', 'ga', '||dash||', 'ga', 'over', 'her', '||exclammark||', '||return||', '||return||', 'elaine:', 'ga', '||dash||', 'ga', '||questionmark||', 'when', 'did', 'that', 'happen', '||questionmark||', '||return||', '||return||', 'jerry:', 'yesterday', '||period||', 'six', '||dash||', 'ish', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'maybe', 'we', 'should', 'double', '||period||', "i'm", 'pretty', 'ga', '||dash||', 'ga', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'you', 'just', 'met', 'the', 'guy', 'yesterday', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'but', 'we', 'have', 'a', 'common', 'goal', '||period||', '||return||', '||return||', 'jerry:', 'a', 'barren', '||comma||', 'sterile', 'existence', 'that', 'ends', 'when', 'you', 'die', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'happily', '||rightparen||', ':', 'yeah', '||period||', '||return||', '||return||', 'george:', 'and', 'you', 'really', 'believe', 'this', 'guy', "doesn't", 'want', 'to', 'have', 'kids', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'a', "guy'll", 'say', 'anything', 'to', 'get', 'a', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'please', '||period||', 'he', "wouldn't", 'say', 'that', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'i', 'once', 'told', 'a', 'woman', 'that', 'i', 'coined', 'the', 'phrase', '||comma||', '||quotemark||', 'pardon', 'my', 'french', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', 'once', 'told', 'a', 'woman', 'that', 'i', "don't", 'eat', 'cake', "'cause", 'it', 'goes', 'right', 'to', 'my', 'thighs', '||period||', '||return||', '||return||', 'george:', 'i', 'once', 'told', 'a', 'woman', 'that', 'i', 'really', 'enjoy', 'spending', 'time', 'with', 'my', 'family', '||period||', '||return||', '||return||', 'newman:', 'with', 'your', 'looks', 'and', 'my', 'words', '||comma||', "we'll", 'have', 'built', 'the', 'perfect', 'beast', '||period||', '||leftparen||', 'kramer', 'claps', 'him', 'on', 'the', 'shoulder', '||comma||', 'then', 'goes', 'to', 'the', 'other', 'side', 'of', 'the', 'aisle', 'to', 'talk', 'to', 'pam', '||period||', '||rightparen||', '||return||', '||return||', 'pam:', 'oh', '||comma||', 'hi', '||exclammark||', 'kramer', '||period||', '||return||', '||return||', 'newman', '||leftparen||', 'whispers', 'through', 'the', 'bookcase', '||rightparen||', ':', 'hi', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'hi', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'pam:', "i'm", 'great', '||period||', '||return||', '||return||', 'newman:', 'i', 'too', 'am', 'well', '||period||', '||return||', '||return||', 'kramer:', 'i', 'too', 'am', 'well', '||period||', '||return||', '||return||', 'newman:', 'do', 'i', 'smell', 'pantene', '||questionmark||', '||return||', '||return||', 'kramer:', 'do', 'i', 'smell', '||questionmark||', '||return||', '||return||', 'newman:', 'pantene', '||exclammark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'pantene', '||period||', '||return||', '||return||', 'pam:', 'oh', '||comma||', 'my', 'shampoo', '||period||', 'yeah', '||comma||', 'it', 'is', 'pantene', '||comma||', 'i', 'got', 'a', 'free', 'sample', 'in', 'with', 'my', 'junk', 'mail', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'talks', 'rapidly', 'in', 'an', 'attempt', 'to', 'keep', 'up', 'with', 'newman', '||rightparen||', ':', 'well', '||comma||', 'there', 'really', 'is', 'no', 'junk', '||dash||', 'mail', '||period||', '||period||', '||period||', 'well', '||comma||', 'everybody', 'wants', 'to', 'get', 'a', 'check', 'or', 'a', 'birthday', 'card', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman', '||leftparen||', 'frantic', '||rightparen||', ':', '||period||', '||period||', '||period||', 'it', 'takes', 'just', 'as', 'much', 'man', '||dash||', 'power', 'to', 'deliver', 'it', 'as', 'their', 'precious', 'little', 'greeting', 'cards', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||exclammark||', '||leftparen||', 'elbows', 'him', 'through', 'the', 'books', '||period||', 'newman', 'falls', 'over', '||period||', '||rightparen||', '||return||', '||return||', 'pam:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'human', '||period||', "it's", '||period||', '||period||', '||period||', 'human', 'to', 'be', 'moved', 'by', 'a', 'fragrance', '||period||', '||return||', '||return||', 'pam:', "that's", 'so', 'true', '||period||', '||return||', '||return||', 'kramer:', 'her', 'bouquet', 'cleaved', 'his', 'hardened', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'shell', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'shell', '||period||', 'and', 'fondled', 'his', 'muscled', 'heart', '||period||', 'he', 'embibed', 'her', 'glistening', 'spell', '||period||', '||period||', '||period||', 'just', 'before', 'the', 'other', 'shoe', '||period||', '||period||', '||period||', 'fell', '||period||', '||return||', '||return||', 'pam:', 'kramer', '||comma||', 'that', 'is', 'so', 'lovely', '||period||', '||return||', '||return||', 'kramer:', "it's", 'by', 'an', 'unknown', '20th', '||dash||', 'century', 'poet', '||period||', '||return||', '||return||', 'pam:', 'oh', '||comma||', "what's", 'his', 'name', '||questionmark||', '||return||', '||return||', 'kramer:', 'newman', '||period||', '||leftparen||', 'on', 'the', 'other', 'side', 'of', 'the', 'bookcase', '||comma||', 'newman', 'preens', 'proudly', '||period||', '||rightparen||', '||return||', '||return||', 'kevin:', 'elaine', '||comma||', "you've", 'changed', 'my', 'life', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kevin', '||period||', '||period||', '||period||', 'you', 'can', 'go', 'on', 'and', 'on', 'about', 'how', 'you', "don't", 'want', 'kids', '||period||', '||period||', '||period||', 'and', 'it', 'sounds', '||comma||', 'it', 'sounds', 'really', 'nice', '||comma||', 'but', '||period||', '||period||', '||period||', 'the', 'truth', 'is', '||comma||', 'i', "don't", 'know', 'if', 'you', 'mean', 'it', 'or', 'not', '||period||', '||return||', '||return||', 'kevin:', 'i', 'got', 'a', 'vasectomy', 'this', 'morning', '||period||', '||return||', '||return||', 'elaine:', 'although', '||comma||', 'i', 'have', 'a', 'hunch', 'you', 'mean', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'came', 'by', 'to', 'tell', 'you', '||dash||', "i'm", 'really', '||comma||', 'really', 'happy', 'about', 'this', 'relationship', '||period||', 'really', 'happy', '||period||', '||return||', '||return||', 'pam:', 'oh', '||period||', 'well', '||comma||', "that's", 'um', '||period||', '||period||', '||period||', '||leftparen||', 'clears', 'her', 'throat', '||rightparen||', '||period||', '||period||', '||period||', 'nice', '||period||', '||leftparen||', 'jerry', 'looks', 'suspicious', '||period||', 'pam', 'turns', 'around', 'and', 'jerry', 'notices', 'her', 'tortoise', 'clip', 'has', 'been', 'replaced', 'with', 'a', 'velvet', 'scrunchie', '||period||', '||rightparen||', '||return||', '||return||', "jerry's", 'brain:', 'a', 'velvet', 'scrunchie', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', '||comma||', 'jerry', '||period||', "how's", 'pam', '||questionmark||', '||return||', '||return||', 'jerry:', 'pam', '||questionmark||', 'what', 'do', 'you', 'care', '||questionmark||', '||leftparen||', 'newman', 'shrugs', '||period||', 'jerry', 'notices', "he's", 'carrying', 'a', "brentano's", 'bookstore', 'bag', '||period||', '||rightparen||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'ta', '||dash||', 'ta', '||exclammark||', '||leftparen||', 'scampers', 'away', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'minute', '||exclammark||', '||leftparen||', 'a', 'manic', 'chase', 'scene', 'ensues', '||comma||', 'with', 'jerry', 'chasing', 'newman', 'from', 'one', 'end', 'of', 'the', 'building', 'to', 'the', 'other', '||period||', 'jerry', 'finally', 'catches', 'up', 'with', 'him', 'in', 'the', 'hallway', 'on', 'another', 'floor', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'newman', '||exclammark||', 'this', 'is', 'it', '||exclammark||', '||leftparen||', 'shoves', 'him', 'against', 'the', 'wall', '||period||', '||rightparen||', '||return||', '||return||', 'newman', '||leftparen||', 'sweating', '||rightparen||', ':', 'easy', '||comma||', 'jerry', '||period||', 'steady', '||period||', 'you', "wouldn't", 'want', 'to', 'lose', 'your', 'cool', 'at', 'a', 'time', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'newman:', 'because', 'right', 'now', '||comma||', "i'm", 'the', 'only', 'chance', "you've", 'got', '||period||', '||leftparen||', 'newman', 'giggles', 'nervously', '||period||', 'jerry', 'makes', 'newman', 'flinch', '||comma||', 'and', 'his', 'giggling', 'is', 'choked', 'off', '||period||', '||rightparen||', '||return||', '||return||', 'jerry', '||leftparen||', 'rolls', 'his', 'eyes', '||rightparen||', ':', "c'mon", '||period||', '||leftparen||', 'they', 'exit', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', "i'm", 'losing', 'pam', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'know', 'how', 'you', 'feel', '||period||', 'for', 'i', '||comma||', 'too', '||comma||', 'have', 'a', 'woman', 'for', 'whom', 'i', 'pine', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'we', 'were', 'talking', 'about', 'me', '||period||', '||return||', '||return||', 'newman:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'i', "don't", 'need', 'your', 'help', '||period||', '||leftparen||', 'turns', 'to', 'leave', '||period||', '||rightparen||', '||return||', '||return||', 'newman:', 'oh', '||comma||', "don't", 'you', '||questionmark||', 'joke', 'boy', '||questionmark||', 'you', 'really', 'think', 'you', 'can', 'manipulate', 'that', 'beautiful', 'young', 'woman', 'like', 'the', 'half', '||dash||', 'soused', 'nightclub', 'rabble', 'that', 'lap', 'up', 'your', 'inane', '||quotemark||', 'observations', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'newman', '||period||', 'what', 'do', 'i', 'have', 'to', 'do', 'to', 'get', 'you', 'to', 'stop', 'pulling', 'the', 'strings', 'for', 'kramer', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'there', 'is', 'a', 'little', 'something', 'you', 'can', 'do', 'for', 'me', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "c'mon", '||comma||', 'out', 'with', 'it', '||period||', '||return||', '||return||', 'newman:', "it's", 'about', '||period||', '||period||', '||period||', 'elaine', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', 'what', 'does', 'she', 'have', 'to', '||dash||', '||leftparen||', 'notices', 'newman', 'looking', 'up', 'at', 'him', 'longlingly', '||period||', '||rightparen||', 'oh', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'you', 'dated', 'her', '||period||', 'give', 'me', 'some', 'inside', 'information', '||period||', 'anything', 'i', 'can', 'use', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'shrugs', '||rightparen||', ':', 'well', '||comma||', 'i', 'know', 'she', "doesn't", 'want', 'to', 'have', 'kids', '||period||', '||leftparen||', 'newman', 'considers', 'the', 'implications', 'of', 'this', '||period||', '||rightparen||', '||return||', '||return||', 'kevin:', 'i', 'thought', "you'd", 'be', 'a', 'little', 'more', 'enthusiastic', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'i', "don't", 'want', '||period||', '||period||', '||period||', '||leftparen||', 'clears', 'her', 'throat', '||rightparen||', '||period||', '||period||', '||period||', 'kids', '||period||', '||return||', '||return||', 'kevin:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'kevin', '||comma||', 'maybe', 'i', 'have', 'a', 'little', 'doubt', '||period||', 'i', 'mean', '||comma||', 'nothing', 'is', 'a', 'hundred', 'percent', '||period||', '||return||', '||return||', 'kevin:', 'this', 'is', '||exclammark||', 'oh', 'boy', '||comma||', 'i', 'always', 'do', 'this', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'kevin:', 'oh', '||comma||', 'i', 'get', 'all', 'jazzed', 'up', 'about', 'something', 'and', 'i', 'go', 'way', 'to', 'far', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'kevin:', 'oh', '||comma||', 'yeah', '||period||', 'like', 'last', 'summer', '||period||', "i'm", "watchin'", 'tv', 'and', 'i', 'saw', 'one', 'of', 'those', 'jet', '||dash||', 'skis', '||period||', '$4000', 'later', 'and', "it's", 'sitting', 'in', 'my', 'garage', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', "that's", 'weird', '||comma||', 'actually', '||comma||', "'cause", "i'm", 'sort', 'of', 'the', 'same', 'way', '||period||', 'i', 'mean', 'once', 'for', 'like', '||comma||', 'no', 'reason', '||comma||', 'i', 'flattened', 'my', 'hair', 'and', 'i', 'had', 'all', 'these', 'strands', 'hanging', 'in', 'my', 'face', 'all', 'the', 'time', '||period||', '||period||', '||period||', '||return||', '||return||', 'kevin:', 'sometimes', 'i', 'think', 'i', 'do', 'want', 'kids', '||period||', 'maybe', 'a', 'lot', 'of', 'kids', '||exclammark||', '||return||', '||return||', 'elaine:', 'sometimes', 'i', 'think', 'about', 'wearing', 'my', 'hair', 'real', 'short', '||period||', '||return||', '||return||', 'kevin:', 'yeah', '||exclammark||', 'i', 'think', 'i', 'like', 'short', 'hair', '||period||', 'really', 'short', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', '||return||', '||return||', 'kevin:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'crude', 'mock', '||dash||', 'up', 'of', 'the', 'conference', 'room', '||period||', '1/14th', 'scale', '||period||', '||return||', '||return||', 'jerry:', 'when', 'did', 'you', 'build', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'yesterday', '||comma||', 'took', 'the', 'day', 'off', '||period||', '||leftparen||', 'picks', 'up', 'a', 'red', 'power', 'ranger', 'action', 'figure', 'from', 'the', 'model', 'and', 'pretends', "it's", 'him', '||period||', '||rightparen||', 'now', '||comma||', 'from', 'the', 'time', 'i', 'left', 'the', 'room', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'points', 'at', 'the', 'power', 'ranger', '||rightparen||', ':', 'wait', '||comma||', "that's", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'picks', 'up', 'a', 'yellow', 'm&m', 'toy', 'from', 'the', 'model', '||rightparen||', ':', 'i', 'really', 'think', 'the', 'm&m', 'should', 'be', 'you', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'grabs', 'the', 'm&m', 'away', 'from', 'jerry', '||rightparen||', ':', 'alright', '||comma||', 'whatever', '||exclammark||', 'now', '||period||', 'whatever', 'caused', 'the', 'damage', '||period||', '||period||', '||period||', '||leftparen||', 'drops', 'a', 'tiny', 'briefcase', 'onto', 'the', 'table', 'in', 'the', 'model', '||rightparen||', '||period||', '||period||', '||period||', 'was', 'jarring', 'enough', 'to', 'completely', 'stop', 'the', 'tape', '||period||', '||return||', '||return||', 'jerry:', 'and', '||questionmark||', '||return||', '||return||', 'george:', 'okay', '||period||', "that's", 'what', 'we', 'know', '||period||', '||return||', '||return||', 'jerry:', 'but', 'we', 'already', 'knew', 'that', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'just', 'give', 'me', 'some', 'idea', 'of', 'what', 'you', 'think', 'it', 'could', 'be', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'if', "you're", 'ready', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'please', '||period||', '||return||', '||return||', 'george:', 'i', 'believe', 'that', 'i', 'am', 'about', 'to', 'become', 'the', 'target', 'of', 'a', 'systematic', 'process', 'of', 'intimidation', 'and', 'manipulation', '||comma||', 'the', 'likes', 'of', 'which', 'you', 'have', 'never', '||dash||', '||return||', '||return||', 'jerry:', 'hold', 'it', '||comma||', 'hold', 'it', '||exclammark||', "you're", 'right', '||comma||', "i'm", 'not', 'ready', 'for', 'this', '||period||', '||leftparen||', 'the', 'door', 'buzzer', 'sounds', '||comma||', 'jerry', 'answers', 'it', '||period||', '||rightparen||', 'yeah', '||questionmark||', '||return||', '||return||', 'voice', 'on', 'speaker:', "it's", 'pam', '||period||', '||return||', '||return||', 'jerry:', "c'mon", 'up', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'alright', '||comma||', "it's", 'pam', '||comma||', 'you', 'gotta', 'get', 'goin', '||period||', "'", '||return||', '||return||', 'george:', "i'm", 'not', 'through', 'here', '||comma||', 'jerry', '||period||', '||leftparen||', 'picks', 'up', 'the', 'model', 'of', 'the', 'conference', 'room', '||period||', '||rightparen||', "i'm", 'gonna', 'keep', 'on', 'investigating', '||period||', 'this', 'thing', 'is', 'like', 'an', 'onion', '||period||', 'the', 'more', 'layers', 'you', 'peel', '||comma||', 'the', 'more', 'it', 'stinks', '||period||', '||leftparen||', 'pam', 'enters', '||comma||', 'george', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'pam:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'were', 'just', 'playin', '||period||', "'", '||return||', '||return||', 'pam:', 'listen', '||comma||', 'i', 'had', 'a', 'long', 'talk', 'with', 'kramer', 'today', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'uh', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'pam:', 'well', '||comma||', 'the', 'thing', 'is', '||comma||', 'i', 'uh', '||period||', '||period||', '||period||', 'i', 'think', 'i', 'have', 'a', 'little', 'crush', 'on', 'him', '||period||', '||leftparen||', 'kramer', 'slides', 'in', 'the', 'door', 'on', 'his', 'knees', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', "i'm", 'so', 'happy', '||exclammark||', 'my', 'world', 'suddenly', 'has', 'meaning', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'pam', '||rightparen||', ':', 'this', 'is', 'the', 'man', 'you', 'have', 'a', 'crush', 'on', '||questionmark||', '||return||', '||return||', 'pam:', 'well', '||comma||', 'i', 'have', 'feelings', 'for', 'both', 'of', 'you', '||period||', '||return||', '||return||', 'kramer:', 'how', 'can', 'you', 'have', 'feelings', 'for', 'him', '||questionmark||', "we're", 'soul', 'mates', '||period||', '||return||', '||return||', 'jerry:', 'why', "can't", 'i', 'be', 'a', 'soul', 'mate', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'really', 'think', 'that', 'pam', 'would', 'want', 'you', 'to', 'be', 'the', 'father', 'of', 'her', 'children', '||questionmark||', '||return||', '||return||', 'pam:', 'children', '||questionmark||', 'who', 'said', 'anything', 'about', 'children', '||questionmark||', 'i', "don't", 'want', 'to', 'have', 'children', '||period||', '||return||', '||return||', 'george:', 'there', 'are', 'some', 'people', 'in', 'this', 'room', 'who', 'would', 'have', 'been', 'very', 'happy', 'to', 'never', 'see', 'this', 'briefcase', 'again', '||period||', 'there', 'are', 'people', 'in', 'this', 'room', 'who', 'think', 'they', 'can', 'destroy', 'other', "people's", 'property', 'and', 'get', 'away', 'with', 'it', '||period||', 'well', '||comma||', 'let', 'me', 'tell', 'you', 'something', 'about', 'those', 'people', '||period||', 'they', "weren't", 'counting', 'on', 'this', 'brain', '||exclammark||', 'and', 'this', 'tape', 'recorder', '||period||', '||return||', '||return||', 'wyck:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "you'll", 'have', 'your', 'turn', '||exclammark||', 'the', 'truth', 'must', 'be', 'heard', '||period||', '||leftparen||', 'plays', 'back', 'the', 'tape', '||period||', '||rightparen||', "that's", 'all', 'there', 'was', '||period||', 'and', 'yet', '||comma||', 'it', 'speaks', 'volumes', '||period||', 'a', 'low', 'rumple', '||period||', 'a', 'metallic', "'squink", '||period||', "'", 'a', "'glonk", '||period||', "'", 'someone', 'crying', 'out', '||period||', '||period||', '||period||', '||quotemark||', 'dear', 'god', '||exclammark||', '||quotemark||', "let's", 'start', 'with', '||comma||', 'uh', '||period||', '||period||', '||period||', 'with', 'you', '||comma||', 'wyck', '||period||', '||return||', '||return||', 'wyck:', 'george', '||comma||', 'quinn', 'here', 'was', 'moving', 'a', 'chair', '||period||', '||period||', '||period||', 'he', 'lost', 'his', 'balance', 'and', 'dropped', 'it', '||period||', '||period||', '||period||', 'it', 'must', 'have', 'fallen', 'on', 'your', 'briefcase', '||comma||', 'which', '||comma||', 'for', 'some', 'reason', '||comma||', 'contained', 'a', 'running', 'tape', 'recorder', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'then', '||period||', "we've", 'gotten', 'to', 'the', 'bottom', 'of', 'that', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'guys', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'getting', 'vasectomies', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'newman', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', "i'm", 'doing', 'it', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', "what'd", 'you', 'do', 'to', 'your', 'hair', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'cut', 'it', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'little', 'short', '||period||', '||return||', '||return||', 'kevin:', "y'think", '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'kevin', '||rightparen||', ':', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', "kevin's", 'having', 'his', 'vasectomy', 'reversed', '||period||', '||return||', '||return||', 'jerry', 'and', 'newman:', 'reversed', '||questionmark||', '||exclammark||', '||leftparen||', 'kramer', 'comes', 'hobbling', 'out', 'of', 'the', 'doctors', 'office', 'in', 'pain', '||comma||', 'after', 'having', 'a', 'vasectomy', 'of', 'his', 'own', '||comma||', 'and', 'exits', '||period||', 'jerry', 'and', 'newman', 'look', 'at', 'each', 'other', '||comma||', 'and', 'bolt', 'for', 'the', 'door', 'themselves', '||period||', '||rightparen||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'he', 'embibed', 'her', 'glistening', 'spell', '||period||', '||period||', '||period||', 'just', 'before', 'the', 'other', 'shoe', '||period||', '||period||', '||period||', 'fell', '||period||', '||return||', '||return||', 'wyck:', 'is', 'that', 'a', 'keats', 'poem', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "it's", 'a', 'newman', '||period||', 'well', '||comma||', 'i', 'gotta', 'run', '||period||', '||leftparen||', 'smiles', '||comma||', 'pats', 'his', 'briefcase', 'and', 'exits', '||period||', '||rightparen||', '||return||', '||return||', 'wyck:', 'does', 'anyone', 'think', 'george', 'might', 'have', 'murdered', 'susan', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'cross:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'just', 'assumed', 'he', 'murdered', 'her', '||period||', '||return||', '||return||', 'ms', '||period||', 'baines:', 'of', 'course', 'he', 'killed', 'her', '||period||', '||return||', '||return||', 'wyck:', 'so', "it's", 'not', 'just', 'me', '||comma||', 'then', '||period||', 'alright', '||exclammark||', 'back', 'to', 'business', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'how', "'bout", 'this', 'one', "let's", 'say', "you're", 'abducted', 'by', 'aliens', '||period||', '||return||', '||return||', 'george:', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'they', 'haul', 'you', 'aboard', 'the', 'mother', 'ship', '||comma||', 'take', 'you', 'back', 'to', 'their', 'planet', 'as', 'a', 'curiosity', '||period||', 'now', 'would', 'you', 'rather', 'be', 'in', 'their', 'zoo', '||comma||', 'or', 'their', 'circus', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'gotta', 'go', 'zoo', '||period||', 'i', 'feel', 'like', 'i', 'could', 'set', 'more', 'of', 'my', 'own', 'schedule', '||period||', '||return||', '||return||', 'jerry:', 'but', 'in', 'the', 'circus', 'you', 'get', 'to', 'ride', 'around', 'in', 'the', 'train', '||comma||', 'see', 'the', 'whole', 'planet', '||exclammark||', '||return||', '||return||', 'george:', "i'm", "wearin'", 'a', 'little', 'hat', '||comma||', "i'm", "jumpin'", 'through', 'fire', '||period||', '||period||', "they're", "puttin'", 'their', 'little', 'alien', 'heads', 'in', 'my', 'mouth', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'resigned', '||rightparen||', 'at', 'least', "it's", 'show', 'business', '||period||', '||period||', '||return||', '||return||', 'george:', 'but', 'in', 'the', 'zoo', '||comma||', 'you', 'know', '||comma||', 'they', 'might', '||comma||', 'put', 'a', 'woman', 'in', 'there', 'with', 'me', 'to', 'uh', '||period||', '||period||', 'you', 'know', '||comma||', 'get', 'me', 'to', 'mate', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', "she's", 'got', 'no', 'interest', 'in', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'w', '||dash||', '||dash||', 'then', "i'm", 'pretty', 'much', 'where', 'i', 'am', 'now', '||period||', 'at', 'least', 'i', 'got', 'to', 'take', 'a', 'ride', 'on', 'a', 'spaceship', '||period||', '||return||', '||return||', '[exterior', 'long', 'shot:', 'looking', 'up', 'at', 'an', 'office', 'building', '||semicolon||', 'interior', 'of', 'office', 'reception', 'area', 'of', '||quotemark||', 'brand/leland', '||quotemark||', 'as', 'george', '||comma||', 'jerry', '||comma||', 'and', 'kramer', 'come', 'in', '||period||', 'they', 'calmly', 'keep', 'it', 'quiet', '||period||', ']', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'why', "couldn't", 'i', 'use', 'the', 'bathroom', 'in', 'that', 'store', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'trust', 'me', '||comma||', 'this', 'is', 'the', 'best', 'bathroom', 'in', 'midtown', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'frustrated', '||rightparen||', 'wha', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'dry', '||rightparen||', 'he', 'knows', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'anyway', '||comma||', '||rightparen||', 'on', 'the', 'left', '||dash||', '||dash||', 'exquisite', 'marble', '||exclammark||', 'high', 'ceilings', '||period||', "an'", 'a', 'flush', '||comma||', 'like', 'a', 'jet', 'engine', '||exclammark||', '||leftparen||', 'imitates', 'sound', '||rightparen||', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'impressed', '||rightparen||', 'now', '||comma||', 'listen', '||comma||', 'uh', '||period||', 'you', 'better', 'not', 'wait', '||period||', "i'll", 'catch', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'dry', '||rightparen||', 'he', 'knows', '||period||', '||return||', '||return||', 'george:', 'wow', '||period||', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'try', 'your', 'engagement', 'story', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'considers', '||comma||', 'but', 'got', 'into', 'elevator', '||rightparen||', "won't", 'work', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'wry', '||rightparen||', 'he', 'knows', '||period||', '||return||', '||return||', 'elaine:', 'look', '||period||', 'kevin', '||period||', 'i', 'really', 'like', 'you', '||comma||', 'heh', '||comma||', 'heh', '||comma||', 'uh', '||period||', 'but', '||comma||', 'um', '||comma||', 'maybe', "we'd", 'be', '||comma||', 'better', 'off', 'just', 'being', '||period||', '||period||', 'friends', '||period||', '||leftparen||', 'takes', 'a', 'bite', 'of', 'her', 'sandwich', '||rightparen||', '||return||', '||return||', 'kevin:', 'friends', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', 'i', 'mean', '||period||', '||leftparen||', 'distracted', 'by', 'the', 'food', '||rightparen||', 'oh', '||comma||', 'god', '||period||', 'this', 'tuna', 'tastes', 'like', 'an', 'old', 'sponge', '||period||', '||return||', '||return||', 'kevin:', 'friends', '||period||', 'yeah', '||exclammark||', 'why', 'not', 'friends', '||questionmark||', 'i', 'might', 'like', 'to', 'try', 'that', '||exclammark||', 'like', 'you', "an'", 'jerry', '||exclammark||', '||return||', '||return||', 'man:', '||leftparen||', 'frustrated', '||rightparen||', 'damn', 'thing', 'is', 'jammed', 'again', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'happens', 'with', 'these', '||questionmark||', 'the', 'rollers', '||comma||', 'they', 'get', 'flat', 'spots', 'on', "'em", '||period||', '||leftparen||', 'hits', 'button', 'several', 'times', 'and', 'whacks', 'it', '||rightparen||', '||return||', '||return||', 'man:', 'come', 'on', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'absently', 'wants', 'to', 'be', 'part', 'of', 'it', '||rightparen||', 'oh', '||comma||', 'yeah', '||dash||', '||dash||', 'yeah', '||period||', '||period||', '||leftparen||', 'follows', 'them', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'remember', 'i', 'was', 'telling', 'you', 'about', 'gillian', '||comma||', 'my', 'friend', 'who', 'writes', 'for', 'the', 'l', '||period||', 'l', '||period||', 'bean', 'catalogue', '||questionmark||', 'i', 'really', 'think', 'you', 'should', 'give', 'her', 'a', 'call', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doubtful', '||rightparen||', 'i', "don't", 'know', '||comma||', 'do', 'you', 'have', 'a', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'not', 'bad', '||period||', 'wuh', '||dash||', '||dash||', 'what', 'does', 'she', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dry', '||rightparen||', 'i', 'put', 'her', 'stats', 'on', 'the', 'back', '||period||', '||return||', '||return||', 'jerry:', 'pretty', 'impressive', '||dash||', '||dash||', '||quotemark||', 'serious', 'boyfriend', "'92", 'to', "'95", '||period||', '||quotemark||', 'owns', 'her', 'own', 'car', '||period||', '||period||', '||quotemark||', 'favorite', 'president', 'james', 'polk', '||exclammark||', '||quotemark||', '||leftparen||', 'elaine', 'had', 'echoed', '||quotemark||', 'uh', '||dash||', 'huh', '||period||', 'yup', '||period||', '||quotemark||', 'during', 'it', '||rightparen||', '||return||', '||return||', 'george:', 'hnn', '||exclammark||', 'let', 'me', 'see', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hands', 'it', 'to', 'him', 'as', 'he', 'asks', 'elaine', '||rightparen||', 'so', "how'd", 'it', 'go', 'with', 'kevin', '||questionmark||', 'did', 'you', '||comma||', 'steel', '||dash||', 'toe', 'his', 'ass', 'back', 'to', 'kentucky', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', 'in', 'appreciation', '||rightparen||', 'you', 'are', 'not', 'gonna', 'believe', 'this', '||exclammark||', 'i', 'told', 'him', 'that', 'i', 'just', 'wanted', 'to', 'be', 'friends', '||period||', "he's", 'fine', 'with', 'it', '||period||', 'he', 'really', 'wants', 'to', 'be', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'why', 'would', 'anybody', 'want', 'a', 'friend', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dread', '||rightparen||', 'uh', '||period||', "it's", 'really', 'not', 'that', 'bad', '||comma||', 'actually', '||period||', 'he', 'said', "he'd", 'even', 'go', 'with', 'me', 'to', 'the', 'museum', 'of', 'miniatures', '||period||', 'this', 'is', 'something', 'you', 'would', 'never', 'ever', 'do', '||period||', '||return||', '||return||', 'jerry:', 'i', 'mean', 'all', 'that', 'stuff', 'is', 'so', 'small', '||period||', '||period||', '||leftparen||', '||leftparen||', 'elaine', 'is', 'wryly', 'assessing', 'him', '||rightparen||', '||rightparen||', 'stupid', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'looking', 'at', 'that', 'picture', '||rightparen||', 'you', 'know', 'if', 'i', 'told', 'my', 'engagement', 'story', 'to', 'that', 'receptionist', '||comma||', 'but', 'told', 'her', 'this', '||comma||', 'was', 'my', 'fiance', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'you', 'see', '||period||', 'women', 'like', 'that', 'are', 'like', '||comma||', 'members', 'of', 'a', 'secret', 'tribe', 'living', 'in', 'a', 'forbidden', 'city', '||period||', 'people', 'like', 'me', 'have', 'not', 'been', 'inside', 'in', 'thousands', 'of', 'years', '||period||', '||period||', 'but', 'with', 'this', '||comma||', "it's", 'like', "i've", 'already', 'been', 'with', 'one', 'of', 'her', 'own', '||exclammark||', 'my', 'hands', 'been', 'stamped', '||exclammark||', 'i', 'come', 'and', 'go', 'as', 'i', 'please', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'wry', '||comma||', 'not', 'impressed', '||rightparen||', 'well', 'you', 'cracked', 'it', '||exclammark||', 'i', 'warned', 'the', 'queen', 'you', 'were', "gettin'", 'close', "an'", '||comma||', 'now', 'it', 'looks', 'like', "we're", 'gonna', 'have', 'to', 'move', 'the', 'whole', 'damn', 'forbidden', 'city', '||period||', '||leftparen||', 'chuckles', 'with', 'jerry', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'up', '||rightparen||', 'can', 'i', 'keep', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'need', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'absently', 'leaving', 'with', 'it', '||rightparen||', 'thanks', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', "i'm", 'ah', '||comma||', "i'm", 'here', 'to', 'see', 'a', 'mr', '||period||', 'art', 'vandelay', '||period||', '||period||', '||return||', '||return||', 'amanda:', "i'm", 'sorry', 'sir', '||comma||', 'there', 'is', 'no', 'mr', '||period||', 'vandelay', 'here', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'taking', 'out', 'wallet', '||rightparen||', 'well', '||comma||', 'let', 'me', '||period||', 'heh', '||period||', 'let', 'me', 'just', 'eh', '||period||', '||period||', 'check', "an'", '||comma||', 'make', 'sure', 'i', 'have', 'the', 'right', 'man', '||dash||', '||dash||', 'ha', '||exclammark||', 'heh', '||comma||', 'heh', '||comma||', 'heh', '||exclammark||', 'seems', '||dash||', '||dash||', 'oh', '||exclammark||', 'i', '||comma||', 'oh', '||exclammark||', '||leftparen||', 'has', 'conveniently', 'dropped', 'the', 'photo', 'into', 'her', 'view', '||rightparen||', '||return||', '||return||', 'amanda:', 'oh', '||exclammark||', "she's", 'beautiful', '||exclammark||', 'who', 'is', 'she', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'humble', '||rightparen||', 'well', '||comma||', 'if', 'you', 'must', 'know', '||comma||', 'shhhe', '||comma||', 'was', 'my', 'fiance', '||comma||', 'susan', '||period||', 'may', 'she', 'rest', 'in', 'peace', '||period||', '||return||', '||return||', 'amanda:', 'oh', '||comma||', 'sorry', '||period||', '||period||', 'she', 'was', 'lovely', '||period||', "i'm", 'amanda', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shaking', 'hands', '||rightparen||', "i'm", 'george', '||period||', '||return||', '||return||', 'man', '#3:', 'good', 'work', 'today', '||comma||', 'k', '||dash||', 'man', '||exclammark||', '||return||', '||return||', 'man', '#3:', 'heh', '||comma||', 'heh', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'want', 'a', 'drink', '||questionmark||', "i'm", "buyin'", '||period||', '||return||', '||return||', 'man', '#3:', 'in', 'that', 'case', '||comma||', 'make', 'mine', 'a', 'double', '||exclammark||', '||return||', '||return||', 'gillian:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'gillian', '||period||', 'hiii', '||period||', '||period||', '||return||', '||return||', 'gillian:', 'very', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', "it's", 'nice', 'to', 'meet', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'she', 'had', 'man', '||dash||', 'hands', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'man', '||comma||', 'hands', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'hands', 'of', 'a', 'man', '||period||', "it's", 'like', 'a', 'creature', 'out', 'of', 'greek', 'mythology', '||comma||', 'i', 'mean', '||comma||', 'she', 'was', 'like', 'part', 'woman', '||comma||', 'part', 'horrible', 'beast', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'weary', '||rightparen||', '||leftparen||', 'look', '||comma||', '||rightparen||', 'would', 'you', '||comma||', 'prefer', 'it', '||comma||', 'if', 'she', 'had', '||comma||', 'no', 'hands', 'at', 'all', '||questionmark||', '||return||', '||return||', 'jerry:', 'would', 'she', 'have', 'hooks', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'uh', '||comma||', 'do', 'hooks', 'make', 'it', 'more', 'attractive', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'kinda', 'cool', "lookin'", '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'getting', 'up', 'to', 'go', '||rightparen||', 'uh', '||period||', '||period||', 'listen', '||comma||', "you're", 'picking', 'me', 'up', 'from', 'my', '||leftparen||', 'place', 'tomorrow', '||rightparen||', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', 'too', '||rightparen||', 'yeah', '||period||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', "i've", 'got', 'five', '||comma||', 'huge', 'boxes', 'of', '||leftparen||', 'buttons', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', 'well', 'if', 'you', 'need', 'an', 'extra', 'set', 'of', 'hands', '||comma||', 'i', 'know', 'who', 'you', 'can', 'call', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'weary', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||exclammark||', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', '||dash||', '||dash||', 'eight', "o'clock", 'in', 'the', 'morning', '||exclammark||', 'what', 'the', 'hell', 'is', "goin'", 'on', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'breakfast', '||period||', 'i', 'gotta', 'be', 'in', 'at', 'brand/leland', 'by', 'nine', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "i'm", "workin'", 'there', '||comma||', "that's", 'why', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disoriented', '||rightparen||', 'how', 'long', 'have', 'i', 'been', 'asleep', '||questionmark||', 'what', '||dash||', '||dash||', 'what', 'year', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', 'i', "don't", 'know', 'if', "you've", 'noticed', '||comma||', 'but', 'lately', '||comma||', "i've", 'been', 'drifting', '||comma||', 'aimlessly', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'snaps', 'fingers', '||rightparen||', 'now', 'that', 'you', 'mention', 'it', '||period||', '||return||', '||return||', 'kramer:', 'but', 'i', 'finally', 'realized', "what's", 'missing', '||comma||', 'in', 'my', 'life', '||period||', 'structure', '||period||', "an'", 'at', 'brand/leland', '||comma||', "i'm", "gettin'", 'things', 'done', '||period||', "an'", 'i', 'love', 'the', 'people', "i'm", "workin'", 'with', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'are', 'they', "payin'", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||dash||', 'no', '||dash||', '||dash||', 'i', "don't", 'want', 'any', 'pay', '||period||', "i'm", "doin'", 'this', 'just', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', 'so', 'uh', '||comma||', 'what', 'do', 'you', 'do', 'down', 'there', 'all', 'day', '||questionmark||', '||return||', '||return||', 'kramer:', 't', '||period||', 'c', '||period||', 'b', '||period||', 'you', 'know', '||comma||', "takin'", 'care', "o'", 'business', '||period||', 'aa', '||dash||', '||dash||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaving', '||rightparen||', "i'll", 'see', 'you', 'tonight', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'turning', 'back', '||comma||', 'grabs', 'his', 'briefcase', '||rightparen||', 'forget', 'my', 'briefcase', '||period||', '||return||', '||return||', 'jerry:', 'w', '||dash||', 'w', '||dash||', "wha'", 'you', 'got', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'as', 'he', 'leaves', 'with', 'it', '||rightparen||', 'crackers', '||period||', '||return||', '||return||', '||leftparen||', 'music', '||leftparen||', 'sheena', "easton's", '||quotemark||', 'morning', 'train', '||leftparen||', 'nine', 'to', 'five', '||rightparen||', '||quotemark||', '||rightparen||', 'accompanies', 'assorted', 'shots', 'of', 'working', '||dash||', 'man', 'kramer:', 'getting', 'on', 'the', 'subway', '||leftparen||', 'everyone', 'else', 'is', 'going', 'the', 'opposite', 'direction', '||rightparen||', '||period||', 'washing', 'his', 'shoes', 'at', 'the', 'water', 'cooler', '||period||', 'eating', 'rolls', 'of', 'crackers', 'out', 'of', 'his', 'briefcase', '||period||', 'laughing', 'it', 'up', 'after', 'hours', 'with', 'co', '||dash||', 'workers', 'at', 'a', 'tgif', '||dash||', 'type', 'restaurant', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'the', 'picture', 'worked', '||period||', 'amazing', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'she', 'wants', 'me', 'to', 'dress', 'uh', '||quotemark||', 'smart', 'casual', '||period||', '||quotemark||', 'what', 'uh', '||comma||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'but', 'you', "don't", 'have', 'it', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'where', 'were', 'you', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'pick', '||period||', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whispers', '||rightparen||', 'damn', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'where', 'were', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'here', 'i', 'guess', '||comma||', "an'", 'uh', '||comma||', 'uh', 'i', 'went', 'out', 'and', 'picked', 'up', 'a', 'paper', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'irritated', '||comma||', 'throwing', 'down', 'her', 'bag', '||rightparen||', 'i', 'had', 'to', 'ask', 'kevin', '||comma||', 'to', 'leave', 'his', 'office', "an'", 'come', "an'", 'pick', 'me', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', 'what', 'are', 'friends', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||exclammark||', "an'", 'he', 'is', 'a', 'friend', '||comma||', 'jerry', '||period||', 'he', 'is', 'reliable', '||period||', 'he', 'is', 'considerate', '||period||', "he's", 'like', 'your', '||comma||', 'exact', 'opposite', '||period||', '||return||', '||return||', 'jerry:', 'so', "he's", 'bizarro', 'jerry', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'bizarro', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'like', 'bizarro', 'superman', '||period||', "superman's", 'exact', 'opposite', '||comma||', 'who', 'lives', 'in', 'the', 'backwards', 'bizarro', 'world', '||period||', 'up', 'is', 'down', '||period||', 'down', 'is', 'up', '||period||', 'he', 'says', '||quotemark||', 'hello', '||quotemark||', 'when', 'he', 'leaves', '||comma||', '||quotemark||', 'good', 'bye', '||quotemark||', 'when', 'he', 'arrives', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', "shouldn't", 'he', 'say', '||quotemark||', 'bad', 'bye', '||quotemark||', '||questionmark||', "isn't", 'that', 'the', '||comma||', 'opposite', 'of', '||quotemark||', 'good', 'bye', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', "it's", 'still', 'a', 'goodbye', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||period||', 'does', 'he', 'live', 'underwater', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'is', 'he', 'black', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'look', '||period||', 'just', '||comma||', 'forget', 'it', '||comma||', '||leftparen||', 'already', '||rightparen||', '||period||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'wow', '||period||', 'man', '||period||', 'what', 'a', 'day', '||period||', 'could', 'i', 'use', 'a', 'drink', '||period||', '||leftparen||', 'starts', 'getting', 'a', 'drink', 'and', 'ice', '||rightparen||', '||return||', '||return||', 'jerry:', 'tough', 'day', 'at', 'the', 'office', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', "comin'", 'in', '||comma||', "an'", 'that', 'phone', 'just', "wouldn't", 'stop', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'better', 'get', "goin'", 'if', "we're", 'gonna', 'go', 'to', 'that', 'uh', '||comma||', 'seven', "o'clock", 'cold', 'fusion', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'well', '||comma||', 'count', 'me', 'out', '||period||', "i'm", "swimmin'", '||period||', 'old', 'man', 'leland', 'is', "bustin'", 'my', 'hump', 'over', 'these', 'reports', '||period||', 'if', 'i', "don't", 'get', "'em", 'done', 'by', 'nine', '||comma||', "i'm", 'toast', '||period||', '||period||', '||leftparen||', '||leftparen||', 'takes', 'a', 'swig', 'and', 'reacts', '||rightparen||', '||rightparen||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'fantastic', 'place', '||exclammark||', 'i', 'always', 'thought', 'it', 'was', 'a', 'meat', 'packing', 'plant', '||exclammark||', '||return||', '||return||', 'model', '#1:', 'hey', '||exclammark||', 'amanda', '||exclammark||', '||return||', '||return||', 'amanda:', 'these', 'are', 'my', 'friends', '||period||', 'anabelle', '||comma||', 'justina', '||comma||', 'and', 'nikki', '||period||', 'we', 'used', 'to', 'model', 'together', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'modelling', '||exclammark||', "what's", 'that', 'like', '||questionmark||', 'fun', '||questionmark||', 'ha', 'ha', '||period||', '||leftparen||', 'to', 'self', 'in', 'head', '||rightparen||', 'stupid', '||exclammark||', 'stupid', '||exclammark||', 'stupid', '||exclammark||', '||return||', '||return||', 'amanda:', 'so', 'nikki', '||comma||', 'uh', '||comma||', 'how', 'was', 'paris', 'this', 'time', '||questionmark||', '||return||', '||return||', 'model', '#2:', '||leftparen||', 'petulant', '||rightparen||', 'a', 'bore', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'used', 'to', 'love', 'paris', '||period||', 'my', 'uh', '||comma||', 'dead', 'fiance', '||comma||', 'susan', '||period||', '||period||', '||leftparen||', 'opening', 'wallet', '||rightparen||', 'in', 'fact', 'i', '||period||', 'think', 'i', '||comma||', 'i', 'may', 'have', 'a', 'picture', 'of', 'her', '||period||', '||period||', '||return||', '||return||', 'model', '#3:', '||leftparen||', 'awed', '||rightparen||', 'wow', '||period||', '||period||', 'she', 'was', 'beautiful', '||period||', '||period||', 'do', 'you', 'wanna', 'dance', '||questionmark||', '||return||', '||return||', 'gillian:', 'would', 'you', 'like', 'some', 'bread', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||period||', 'no', 'thanks', '||comma||', "i'm", '||comma||', 'just', 'not', 'hungry', '||period||', '||return||', '||return||', 'gillian:', 'well', '||comma||', 'then', 'at', 'least', 'drink', 'your', 'beer', '||period||', '||period||', '||leftparen||', "she's", 'opening', 'the', 'bottle', '||dash||', '||dash||', 'brief', 'closeup', 'on', 'hands', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'self', '||rightparen||', 'oh', '||period||', 'twist', 'off', '||period||', '||period||', '||return||', '||return||', 'gillian:', 'you', 'have', 'a', 'little', 'something', 'on', 'your', 'face', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'get', 'it', '||period||', '||leftparen||', 'feeling', 'his', 'face', '||rightparen||', '||return||', '||return||', 'gillian:', 'eh', '||comma||', 'no', '||dash||', 'no', '||comma||', 'no', '||dash||', 'no', '||period||', '||period||', "you're", 'missing', 'it', '||comma||', "it's", 'higher', '||period||', '||leftparen||', 'reaches', 'over', '||rightparen||', '||return||', '||return||', 'gillian:', '||leftparen||', 'friendly', '||rightparen||', "it's", 'an', 'eyelash', '||period||', 'make', 'a', 'wish', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'gillian:', 'make', 'a', 'wish', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||leftparen||', 'closes', 'eyes', '||comma||', 'blows', 'on', 'her', 'finger', '||comma||', 'opens', 'eyes', '||comma||', 'says', 'to', 'self', '||rightparen||', "didn't", 'come', 'true', '||period||', '||return||', '||return||', 'gillian:', '||leftparen||', 'smiles', 'at', 'him', '||rightparen||', "don't", 'you', 'just', 'love', 'lobster', '||questionmark||', '||return||', '||return||', 'kevin:', 'that', 'museum', 'of', 'miniatures', 'was', 'amazing', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', "he's", 'so', 'tiny', '||exclammark||', '||return||', '||return||', 'kevin:', 'yeah', '||exclammark||', 'hey', '||dash||', '||dash||', 'hey', 'guys', '||exclammark||', 'elaine', '||comma||', 'sit', 'down', '||period||', 'these', 'are', 'a', 'couple', "o'", 'my', 'friends', '||period||', 'uh', '||comma||', 'this', 'is', 'gene', '||period||', 'and', 'this', 'guy', '||comma||', 'we', '||period||', '||period||', 'just', 'call', '||quotemark||', 'feldman', '||exclammark||', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'self', 'in', 'head', '||rightparen||', 'bizarro', 'world', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'delighted', '||rightparen||', 'jerry', '||questionmark||', 'it', 'was', 'incredible', '||exclammark||', 'models', '||exclammark||', 'as', 'far', 'as', 'the', 'eye', 'could', 'see', '||exclammark||', '||return||', '||return||', 'jerry:', 'then', 'it', 'does', 'exist', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'the', 'legends', 'are', 'true', '||period||', '||return||', '||return||', 'jerry:', 'so', 'when', 'are', 'you', "goin'", 'out', 'with', 'this', 'girl', 'again', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'not', '||exclammark||', "i'm", 'inside', 'the', 'walls', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "you're", 'gonna', 'burn', 'that', 'bridge', '||period||', '||return||', '||return||', 'george:', 'flame', 'on', '||exclammark||', '||return||', '||return||', 'gene:', '||leftparen||', 'about', 'the', 'check', '||rightparen||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'kevin:', '||leftparen||', 'grabs', 'it', '||rightparen||', 'no', '||period||', 'you', 'got', 'it', 'last', 'time', '||period||', '||return||', '||return||', 'gene:', '||leftparen||', 'calmly', 'takes', 'it', '||rightparen||', "don't", 'worry', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'self', 'in', 'head', '||rightparen||', 'this', 'is', 'unbelievable', '||period||', '||period||', '||return||', '||return||', 'feldman:', 'hey', 'elaine', '||comma||', 'what', 'do', 'you', 'think', 'of', 'an', 'alarm', 'clock', '||comma||', 'that', 'automatically', 'tells', 'you', 'the', 'weather', 'when', 'you', 'wake', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'gotta', 'say', 'that', 'i', 'think', 'that', 'that', 'is', 'a', 'fantastic', 'idea', '||comma||', 'feldman', '||exclammark||', '||return||', '||return||', 'feldman:', 'nah', '||comma||', "it's", 'not', '||dash||', '||dash||', "it's", 'just', 'not', 'practical', '||period||', '||return||', '||return||', 'kevin:', '||leftparen||', 'getting', 'up', '||rightparen||', 'well', '||period||', 'see', 'ya', 'later', '||comma||', 'elaine', '||period||', 'feldman', "an'", 'i', "'a'", 'gotta', 'get', 'down', "'o", 'the', 'library', '||period||', '||leftparen||', 'the', 'three', 'guys', 'are', 'leaving', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'gonna', 'do', 'down', 'there', '||questionmark||', '||return||', '||return||', 'kevin:', 'read', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||comma||', 'then', 'vaguely', 'waves', 'while', 'watching', 'them', 'leave', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'uh', '||period||', "gillian's", "comin'", 'over', 'later', '||period||', 'i', 'think', "i'm", 'gonna', 'end', 'it', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'those', 'meaty', 'paws', '||comma||', 'i', 'feel', 'like', "i'm", 'dating', 'george', 'the', 'animal', '||comma||', '||leftparen||', 'steer', '||rightparen||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'maybe', "i'll", 'chain', 'her', 'to', 'the', 'refrigerator', "an'", 'sell', 'tickets', '||period||', '||return||', '||return||', 'kramer:', "that's", 'nice', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'put', 'the', 'paper', 'down', '||exclammark||', 'you', 'never', 'listen', 'to', 'me', 'anymore', '||exclammark||', 'we', 'hardly', 'even', 'talk', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "we're", '||comma||', "talkin'", 'now', '||comma||', "aren't", 'we', '||questionmark||', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'i', 'sit', 'here', 'for', 'twenty', 'lousy', 'minutes', 'in', 'the', 'morning', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'oh', 'here', 'we', 'go', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', "an'", 'then', 'when', 'you', 'come', 'home', 'at', 'night', '||comma||', "you're", 'always', 'exhausted', '||dash||', '||dash||', 'we', 'never', 'do', 'anything', 'anymore', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'starting', 'with', 'me', 'for', '||questionmark||', 'you', 'know', 'this', 'is', 'my', 'crazy', 'time', "o'", 'year', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', "it's", 'your', 'third', 'day', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'grabs', 'briefcase', 'to', 'leave', '||rightparen||', 'i', 'gotta', 'go', 'to', 'work', '||period||', "we'll", 'talk', 'about', 'this', 'later', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||leftparen||', 'calling', 'down', 'the', 'hall', '||rightparen||', 'call', 'if', "you're", 'gonna', 'be', 'late', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'is', "goin'", 'on', 'with', 'you', 'two', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "don't", 'wanna', 'talk', 'about', 'it', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'listen', '||period||', 'have', 'you', 'seen', 'my', 'addre', '||dash||', '||dash||', '||leftparen||', 'sees', 'address', 'book', 'on', 'counter', '||rightparen||', '||dash||', '||dash||', 'ah', '||exclammark||', 'there', 'it', 'is', '||period||', 'okay', '||period||', 'i', 'got', 'it', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||leftparen||', 'leaving', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'wait', '||exclammark||', 'wait', '||exclammark||', 'wait', 'a', 'second', '||exclammark||', 'where', 'you', "goin'", '||questionmark||', 'i', '||dash||', 'i', 'hardly', 'ever', 'see', 'you', 'anymore', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stops', '||comma||', 'pause', '||rightparen||', 'well', '||comma||', 'i', '||period||', '||leftparen||', 'a', 'little', 'ashamed', '||rightparen||', 'i', 'guess', 'i', 'been', 'at', "reggie's", '||period||', '||period||', '||return||', '||return||', 'jerry:', 'the', 'bizarro', 'coffeeshop', '||questionmark||', '||return||', '||return||', 'elaine:', 'kevin', 'and', 'his', 'friends', 'are', 'nice', 'people', '||exclammark||', 'they', 'do', 'good', 'things', '||period||', 'they', 'read', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'read', '||period||', '||return||', '||return||', 'elaine:', 'books', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'oh', '||period||', 'big', 'deal', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||exclammark||', 'i', "can't", 'spend', 'the', 'rest', 'of', 'my', 'life', 'coming', 'into', 'this', 'stinking', 'apartment', 'every', 'ten', 'minutes', 'to', 'pore', 'over', 'the', '||comma||', 'excruciating', 'minutia', '||comma||', 'of', 'every', '||comma||', 'single', '||comma||', 'daily', 'event', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', "what's", "goin'", 'on', '||comma||', '||rightparen||', 'like', 'yesterday', '||comma||', 'i', 'go', 'to', 'the', 'bank', 'to', 'make', 'a', 'deposit', '||comma||', "an'", 'the', 'teller', 'gives', 'me', 'this', 'look', '||comma||', 'like', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', "i'll", 'see', 'you', 'later', 'man', '||period||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'frustrated', '||comma||', 'to', 'self', '||rightparen||', 'the', 'whole', 'system', 'is', "breakin'", 'down', '||exclammark||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', 'amanda', '||period||', 'hi', '||comma||', 'yes', '||period||', 'listen', '||period||', 'you', 'know', '||comma||', "i'm", "thinkin'", '||comma||', 'we', 'might', 'just', 'be', 'better', 'of', "bein'", 'friends', '||period||', 'yeah', '||period||', 'yeah', '||comma||', 'you', 'know', 'what', '||comma||', 'i', "can't", 'even', 'really', 'talk', 'about', 'it', 'right', 'now', '||period||', 'bye', '||dash||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||leftparen||', 'happy', 'with', 'himself', '||comma||', 'but', 'then', 'sees', 'the', 'burned', 'up', 'photo', '||rightparen||', 'no', '||exclammark||', 'no', '||exclammark||', '||return||', '||return||', 'gillian:', 'friends', '||period||', 'just', 'friends', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'gillian:', 'yeah', '||period||', 'all', 'right', '||period||', 'well', '||comma||', 'do', 'you', 'still', 'want', 'to', 'see', 'a', 'movie', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'wish', 'i', 'could', '||comma||', 'but', '||comma||', "we're", 'friends', '||period||', '||period||', '||return||', '||return||', 'gillian:', "i'm", 'just', 'gonna', 'go', '||comma||', 'wash', 'my', 'hands', '||period||', '||return||', '||return||', 'jerry:', 'good', 'idea', '||period||', '||leftparen||', "phone's", 'ringing', '||comma||', 'goes', 'to', 'it', '||rightparen||', '||leftparen||', 'muttering', '||rightparen||', "there's", 'a', 'beach', 'towel', 'on', 'the', 'rack', '||period||', '||period||', '||leftparen||', 'to', 'phone', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantic', '||rightparen||', 'jerry', '||exclammark||', 'jerry', '||comma||', 'muh', '||dash||', '||dash||', 'muh', '||dash||', '||dash||', 'my', 'hair', '||dash||', 'dryer', 'ruined', 'the', 'picture', '||exclammark||', "an'", 'i', 'need', 'another', 'one', 'or', 'i', "can't", 'get', 'back', 'into', 'the', 'forbidden', 'city', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'drive', 'him', 'crazy', '||rightparen||', 'who', 'is', 'this', '||period||', '||period||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'i', 'need', 'you', 'to', 'get', 'another', 'picture', 'of', 'man', '||dash||', 'hands', '||period||', "i'm", "beggin'", 'you', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'if', 'i', 'get', 'it', 'for', 'you', '||comma||', 'will', 'you', 'take', 'me', 'to', 'that', 'club', "an'", 'show', 'me', 'a', 'good', 'time', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'yes', '||comma||', 'all', 'right', '||dash||', '||dash||', 'anything', '||exclammark||', '||return||', '||return||', 'jerry:', 'got', 'it', '||period||', '||leftparen||', 'but', 'now', 'a', 'man', '||dash||', 'hand', 'grabs', 'his', 'arm', '||rightparen||', 'uh', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', 'hey', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'right', 'here', '||period||', '||leftparen||', 'note', 'he', 'has', 'an', 'athletic', 'bandage', 'on', 'his', 'right', 'hand', '||rightparen||', "you're", 'late', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'got', 'held', 'up', '||comma||', 'you', 'know', '||period||', 'what', 'happened', 'to', 'your', 'hand', '||questionmark||', '||return||', '||return||', 'jerry:', 'like', 'you', 'care', '||period||', '||return||', '||return||', 'kramer:', 'the', 'work', 'piled', 'up', '||comma||', 'i', 'lost', 'track', 'of', 'time', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'calmly', 'getting', 'up', 'with', 'plate', 'of', 'chicken', '||rightparen||', 'oh', '||exclammark||', 'sure', '||exclammark||', 'sure', '||exclammark||', 'you', "an'", 'your', 'work', '||exclammark||', "elaine's", 'off', 'in', 'the', 'bizarro', 'world', '||comma||', 'george', 'only', 'calls', 'when', 'he', 'wants', 'something', '||comma||', "an'", "i'm", 'left', 'sitting', 'here', 'like', 'this', 'plate', 'of', 'cold', 'chicken', '||comma||', 'which', '||comma||', 'by', 'the', 'way', '||comma||', '||leftparen||', 'drops', 'chicken', 'into', 'sink', '||rightparen||', 'was', '||comma||', 'for', 'two', '||period||', '||return||', '||return||', 'kramer:', 'you', 'cooked', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'calm', '||rightparen||', 'i', 'ordered', 'in', '||period||', "it's", 'still', 'effort', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'in', 'pain', '||rightparen||', 'ow', '||exclammark||', 'jeez', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'ow', '||exclammark||', '||rightparen||', "it's", 'my', 'stomach', '||period||', '||return||', '||return||', 'jerry:', "you're", 'probably', "gettin'", 'an', 'ulcer', '||period||', 'this', 'job', 'is', 'killing', 'you', '||exclammark||', "it's", 'killing', 'us', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'putting', 'briefcase', 'down', '||rightparen||', 'you', 'know', 'what', '||questionmark||', "you're", 'right', '||period||', 'these', 'reports', '||comma||', 'they', 'can', 'wait', 'a', 'couple', 'of', 'hours', '||period||', 'whadda', 'say', 'we', 'go', 'out', 'tonight', '||questionmark||', 'any', 'place', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', 'the', 'coffeeshop', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'got', 'it', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleased', '||rightparen||', "i'll", 'call', 'george', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "isn't", 'that', 'elaine', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'quiet', '||comma||', 'desperate', '||rightparen||', 'maybe', 'she', 'can', 'get', 'me', 'another', 'picture', 'of', 'man', '||dash||', 'hands', '||period||', '||leftparen||', 'calling', '||rightparen||', 'elaine', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||exclammark||', '||return||', '||return||', 'kramer:', 'elaine', '||exclammark||', '||return||', '||return||', 'all', 'three:', 'elaine', '||exclammark||', 'elaine', '||exclammark||', '||return||', '||return||', '||leftparen||', 'elaine', 'finally', 'notices', 'them', '||comma||', 'but', 'suddenly', 'from', 'the', 'other', 'direction', '||comma||', 'three', 'other', 'guys', 'are', 'coming:', 'gene', '||comma||', 'kevin', '||comma||', 'and', 'feldman', '||period||', '||rightparen||', '||return||', '||return||', 'kevin:', 'hey', '||exclammark||', 'elaine', '||exclammark||', 'hi', '||dash||', 'i', '||exclammark||', 'over', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', '||period||', 'george', '||comma||', 'kramer', '||period||', '||period||', 'this', 'is', 'kevin', '||comma||', 'gene', '||period||', '||period||', 'and', 'feldman', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', 'crept', 'out', '||rightparen||', 'this', 'is', 'really', 'weird', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'diplomatically', 'to', 'kevin', '||comma||', 'gene', '||comma||', 'and', 'feldman', '||rightparen||', 'could', 'you', 'guys', 'excuse', 'us', '||comma||', 'just', 'for', 'a', 'moment', '||period||', '||return||', '||return||', 'kevin:', 'sure', '||period||', '||leftparen||', 'strolls', 'away', 'with', 'his', 'friends', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||rightparen||', 'thanks', '||period||', '||leftparen||', 'to', 'jerry', '||comma||', 'george', '||comma||', 'and', 'kramer', '||rightparen||', 'what', '||period||', '||period||', 'what', 'do', 'you', 'guys', 'want', '||period||', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'i', 'got', 'to', 'have', 'another', 'picture', 'of', 'gillian', '||period||', '||return||', '||return||', 'jerry:', 'i', 'tried', 'to', 'get', 'him', 'one', 'but', 'man', '||dash||', 'hands', 'almost', 'ripped', 'my', 'arm', 'out', 'of', 'the', 'socket', '||exclammark||', '||return||', '||return||', 'kevin:', '||leftparen||', 'here', 'ya', 'are', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pause', '||comma||', 'turns', 'back', 'to', 'jerry', 'et', 'al', '||period||', '||rightparen||', 'guys', '||period||', 'i', 'gotta', 'go', '||period||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'george:', 'elaine', '||questionmark||', '||leftparen||', 'she', 'turns', '||comma||', 'sighing', '||rightparen||', 'can', 'i', 'come', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", '||comma||', "i'm", 'sorry', '||period||', '||period||', "we've", 'already', 'got', 'a', 'george', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', 'did', 'you', 'want', 'to', 'see', 'me', 'about', '||comma||', 'mr', '||period||', 'leland', '||questionmark||', '||return||', '||return||', 'leland:', 'kramer', '||comma||', "i've", '||period||', '||period||', 'been', 'reviewing', 'your', 'work', '||period||', '||period||', 'quite', 'frankly', '||comma||', 'it', 'stinks', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'ah', '||period||', '||period||', 'been', "havin'", 'trouble', 'at', 'home', 'and', 'uh', '||period||', '||period||', 'i', 'mean', '||comma||', 'ah', '||comma||', 'you', 'know', '||comma||', "i'll", 'work', 'harder', '||comma||', 'nights', '||comma||', 'weekends', '||comma||', 'whatever', 'it', 'takes', '||period||', '||period||', '||return||', '||return||', 'leland:', 'no', '||comma||', 'no', '||comma||', 'i', "don't", 'think', "that's", 'going', 'to', '||comma||', 'do', 'it', '||comma||', 'uh', '||period||', 'these', 'reports', 'you', 'handed', 'in', '||period||', "it's", 'almost', 'as', 'if', 'you', 'have', 'no', 'business', 'training', 'at', 'all', '||period||', '||period||', 'i', "don't", 'know', 'what', 'this', 'is', 'supposed', 'to', 'be', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'uh', '||comma||', 'just', '||dash||', '||dash||', "tryin'", 'to', 'get', 'ahead', '||period||', '||period||', '||return||', '||return||', 'leland:', 'well', '||comma||', "i'm", 'sorry', '||period||', "there's", 'just', 'no', 'way', 'that', 'we', 'could', 'keep', 'you', 'on', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'even', 'really', 'work', 'here', '||exclammark||', '||return||', '||return||', 'leland:', "that's", 'what', 'makes', 'this', 'so', 'difficult', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', 'george', '||period||', '||return||', '||return||', 'model', '#4:', 'are', 'you', 'sure', "you're", 'supposed', 'to', 'be', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||period||', 'yeah', '||period||', 'i', 'used', 'to', 'come', 'here', 'all', 'the', 'time', 'with', 'my', 'fiance', '||comma||', 'back', 'when', 'it', 'was', 'a', 'meat', '||dash||', 'packing', 'plant', '||period||', 'ha', '||period||', "here's", 'her', 'picture', '||period||', '||leftparen||', 'hands', 'her', 'a', 'magazine', 'page', '||rightparen||', '||return||', '||return||', 'model', '#4:', "what'd", 'you', 'do', '||questionmark||', 'cut', 'this', 'out', 'of', 'a', 'magazine', 'or', 'something', '||questionmark||', '||return||', '||return||', 'george:', 'huh', '||questionmark||', '||return||', '||return||', 'model', '#4:', "that's", 'me', '||questionmark||', "it's", 'from', 'a', 'clinique', 'ad', 'i', 'did', '||period||', '||period||', '||return||', '||return||', 'george:', 'ha', '||exclammark||', 'heh', '||period||', '||return||', '||return||', 'bouncer:', "let's", 'go', '||period||', 'private', 'party', '||period||', '||leftparen||', 'escorts', 'him', 'out', '||rightparen||', '||return||', '||return||', 'kevin:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'off', '||dash||', 'camera', '||rightparen||', "it's", 'lainey', '||exclammark||', '||return||', '||return||', 'kevin:', '||leftparen||', 'unlocks', '||comma||', 'opens', 'door', '||rightparen||', 'hi', 'elaine', '||exclammark||', '||leftparen||', 'warmly', 'hugs', 'her', '||rightparen||', '||return||', '||return||', 'elaine:', 'hi', '||leftparen||', '||questionmark||', '||rightparen||', '||period||', 'oh', '||exclammark||', 'oh', '||dash||', 'oh', '||dash||', 'oh', '||dash||', 'oh', '||exclammark||', '||return||', '||return||', 'kevin:', 'come', 'on', 'in', '||exclammark||', '||return||', '||return||', 'elaine:', 'okay', '||period||', 'hi', 'gene', '||exclammark||', '||leftparen||', 'comfortably', 'tosses', 'her', 'bag', 'to', 'the', 'left', '||comma||', 'it', 'falls', 'on', 'the', 'floor', '||rightparen||', 'uh', '||dash||', 'ha', '||exclammark||', '||leftparen||', 'smiling', '||comma||', 'picks', 'up', 'her', 'bag', '||comma||', 'puts', 'it', 'on', 'a', 'chair', "that's", 'to', 'the', 'right', '||rightparen||', '||return||', '||return||', 'elaine:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'kevin:', '||leftparen||', 'friendly', '||rightparen||', 'just', 'reading', '||period||', '||period||', '||return||', '||return||', '||leftparen||', 'elaine', 'decides', 'to', 'make', 'herself', 'at', 'home', '||comma||', 'opens', 'the', 'refrigerator', 'and', 'starts', 'eating', 'olives', 'out', 'of', 'a', 'jar', '||comma||', 'with', 'her', 'fingers', '||period||', 'in', 'the', 'living', 'room', 'area', '||comma||', 'kevin', 'is', 'looking', 'at', 'her', '||period||', 'note:', 'a', 'statue', 'of', 'bizarro', 'superman', 'on', 'a', 'stereo', 'speaker', '||period||', '||rightparen||', '||return||', '||return||', 'kevin:', 'hey', '||period||', '||period||', "what're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', "eatin'", 'olives', '||period||', '||return||', '||return||', 'kevin:', 'have', 'you', 'ever', 'heard', 'of', 'asking', '||questionmark||', '||leftparen||', 'door', 'bell', 'rings', '||rightparen||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'feldman:', '||leftparen||', 'off', '||dash||', 'screen', '||rightparen||', 'feldman', '||period||', '||period||', 'from', 'across', 'the', 'hall', '||period||', '||return||', '||return||', 'kevin:', '||leftparen||', 'drops', 'his', 'suspicion', 'and', 'smiles', '||comma||', 'goes', 'to', 'door', '||rightparen||', 'hold', 'on', '||period||', '||leftparen||', 'unlocks', 'and', 'opens', 'door', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'feldman:', 'he', '||dash||', 'ey', '||comma||', 'kevin', '||exclammark||', '||return||', '||return||', 'kevin:', 'hi', '||period||', '||return||', '||return||', 'feldman:', 'look', 'who', 'i', 'ran', 'into', '||period||', '||return||', '||return||', 'vargus:', '||leftparen||', 'testy', '||rightparen||', 'hello', '||comma||', 'kevin', '||period||', '||period||', '||return||', '||return||', 'kevin:', '||leftparen||', 'testy', '||rightparen||', 'hello', '||comma||', 'vargus', '||period||', '||period||', '||return||', '||return||', 'kevin:', 'ya', 'wanna', 'catch', 'a', 'ballgame', 'this', 'weekend', '||questionmark||', '||return||', '||return||', 'vargus:', 'great', '||exclammark||', "i'll", 'see', 'ya', 'later', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'kevin:', 'okay', '||period||', '||leftparen||', 'to', 'self', '||comma||', 'smiling', '||rightparen||', 'vargus', '||period||', '||period||', '||leftparen||', 'to', 'feldman', '||rightparen||', 'so', '||questionmark||', '||return||', '||return||', 'feldman:', 'i', 'got', "'em", '||period||', '||period||', '||return||', '||return||', 'kevin:', 'all', 'right', '||exclammark||', 'hey', '||comma||', 'elaine', '||comma||', 'feldman', 'was', 'able', 'to', 'get', 'us', 'all', 'tickets', 'to', 'the', 'bolshoi', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||leftparen||', 'comes', 'to', 'him', '||rightparen||', '||return||', '||return||', 'kevin:', '||leftparen||', 'enthused', '||rightparen||', 'fourth', 'row', '||comma||', 'center', '||period||', '||return||', '||return||', 'elaine:', 'get', 'out', '||exclammark||', '||leftparen||', 'pushes', 'him', 'back', '||comma||', 'but', 'he', 'falls', 'back', 'on', 'the', 'floor', '||exclammark||', '||rightparen||', '||return||', '||return||', 'gene:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'what', 'is', 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kevin', '||exclammark||', "i'm", 'so', 'sorry', '||period||', 'is', 'there', 'anything', 'i', 'can', 'do', '||questionmark||', '||return||', '||return||', 'gene:', "haven't", 'you', 'done', 'enough', 'already', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'turning', 'to', 'them', '||comma||', 'awkward', '||rightparen||', "it's", 'locked', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', 'this', 'is', 'it', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'but', 'it', '||dash||', '||dash||', 'eh', '||period||', '||period||', 'it', 'was', 'here', '||comma||', "i'm", "tellin'", 'you', '||comma||', "an'", 'w', '||dash||', '||dash||', 'w', '||dash||', '||dash||', 'it', 'was', 'really', 'here', '||exclammark||', 'the', '||comma||', 'there', 'was', '||comma||', 'a', '||comma||', 'bar', '||comma||', 'and', 'a', '||comma||', "an'", 'a', 'dance', 'floor', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'dry', '||rightparen||', 'i', 'guess', 'the', 'dj', 'booth', 'was', 'over', 'there', 'behind', 'the', 'bone', 'saw', '||questionmark||', '||leftparen||', 'really', 'disappointed', '||rightparen||', "let's", 'get', 'out', 'of', 'here', 'george', '||period||', '||return||', '||return||', 'gene:', 'at', 'work', 'today', '||comma||', 'i', 'discovered', "there's", 'a', 'payphone', 'in', 'the', 'lobby', 'that', 'has', 'free', 'long', 'distance', '||period||', '||return||', '||return||', 'kevin:', 'oh', '||comma||', 'so', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'gene:', 'i', 'called', 'the', 'phone', 'company', "an'", 'immediately', 'reported', 'the', 'error', '||period||', '||return||', '||return||', 'kevin:', 'nice', '||period||', '||leftparen||', 'doorbell', 'rings', '||rightparen||', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'feldman:', '||leftparen||', 'off', '||dash||', 'screen', '||rightparen||', 'feldman', '||period||', '||period||', 'from', 'across', 'the', 'hall', '||period||', '||return||', '||return||', 'kevin:', '||leftparen||', 'smiles', '||comma||', 'relieved', '||rightparen||', 'hold', 'on', '||period||', '||return||', '||return||', 'feldman:', 'kevin', '||exclammark||', 'brought', 'some', 'groceries', '||period||', '||return||', '||return||', 'kevin:', 'again', '||questionmark||', '||exclammark||', 'feldman', '||comma||', 'you', "didn't", 'have', 'to', 'do', 'that', '||exclammark||', '||return||', '||return||', 'feldman:', 'hey', '||comma||', 'what', 'are', 'friends', 'for', '||questionmark||', '||return||', '||return||', 'kevin:', 'you', 'know', '||comma||', 'i', 'may', 'not', 'say', 'this', 'enough', 'but', 'you', 'two', 'are', 'about', 'the', 'best', 'friends', 'a', 'guy', 'could', 'have', '||period||', '||return||', '||return||', 'kevin:', '||leftparen||', 'eyes', 'closed', 'in', 'hug', '||rightparen||', 'oh', '||period||', 'me', 'so', 'happy', '||period||', 'me', 'want', 'to', 'cry', '||period||', '||return||', '||return||', 'kramer:', 'i', "wouldn't", 'walk', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'the', 'most', 'dangerous', 'part', 'of', 'the', 'sidewalk', '||period||', 'cab', 'hops', 'a', 'curb', '||comma||', 'wap', '||exclammark||', "you've", 'had', 'your', 'last', 'egg', 'sandwich', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'over', 'there', '||questionmark||', 'you', 'know', 'air', 'conditioners', 'fall', 'out', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'kramer:', "i'd", 'much', 'rather', 'get', 'hit', 'by', 'an', '80', 'pound', 'air', 'conditioner', 'than', 'a', 'two', 'ton', 'cab', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "cab's", "comin'", 'in', 'right', 'here', '||leftparen||', 'hand', 'at', 'waist', '||rightparen||', 'set', 'of', 'plastic', 'hips', '||comma||', 'prosthetic', 'legs', '||comma||', 'and', 'a', 'monkey', 'to', 'answer', 'the', 'door', '||comma||', "i'm", 'back', 'in', 'business', '||period||', '||return||', '||return||', 'kramer:', 'much', 'rather', 'take', 'it', 'to', 'the', 'head', '||comma||', 'like', 'i', 'did', 'in', "'79", '||period||', '||return||', '||return||', 'jerry:', 'you', 'were', "livin'", 'in', 'the', 'village', 'then', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', "don't", 'really', 'remember', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'showing', 'fingernails', '||rightparen||', 'toxic', 'waste', 'green', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'disgusting', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'revulsion', 'has', 'now', 'become', 'a', 'valid', 'form', 'of', 'attraction', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'then', "you're", "drivin'", 'me', 'wild', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', "'em", 'done', 'for', 'the', 'big', 'peterman', 'bash', "i'm", "throwin'", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'george', 'enters', '||rightparen||', 'oh', '||comma||', 'why', 'you', "havin'", 'a', 'party', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'drive', 'my', 'people', 'hard', '||comma||', 'and', 'then', 'i', 'reward', 'them', '||period||', '||return||', '||return||', 'jerry:', 'like', 'with', 'dogs', '||period||', '||return||', '||return||', 'elaine:', 'exactly', '||period||', '||return||', '||return||', 'george:', 'party', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'food', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||period||', '||return||', '||return||', 'george:', 'bar', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'gonna', 'show', 'up', 'anyway', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'i', 'just', "don't", 'want', 'you', 'interfering', '||period||', '||return||', '||return||', 'george:', 'how', 'could', 'i', 'possibly', 'interfere', '||questionmark||', '||return||', '||return||', 'jerry:', "isn't", 'that', 'what', 'jack', 'ruby', 'said', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'eating', '||rightparen||', 'oh', 'yeah', '||period||', 'these', 'are', 'fantastic', '||comma||', 'fantastic', '||period||', '||leftparen||', 'to', 'server', '||rightparen||', 'you', 'know', '||comma||', "i'd", 'love', 'to', 'get', 'a', 'jump', 'on', 'the', 'next', 'batch', '||comma||', 'where', 'do', 'you', 'come', 'out', '||questionmark||', '||leftparen||', 'server', 'leaves', '||rightparen||', '||leftparen||', 'to', 'anna', '||rightparen||', "she's", 'been', 'ignoring', 'this', 'section', 'all', 'night', '||period||', 'quesadilla', '||questionmark||', '||return||', '||return||', 'anna:', 'no', 'thanks', '||period||', '||return||', '||return||', 'george:', 'hi', 'ah', '||comma||', 'my', 'name', 'is', 'george', '||period||', '||return||', '||return||', 'anna:', 'anna', '||period||', 'i', "don't", 'recall', 'seeing', 'you', 'around', 'the', 'office', '||period||', 'do', 'you', 'work', 'in', 'the', 'mail', 'room', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "i'm", 'a', 'friend', 'of', 'elaine', 'benes', '||period||', '||return||', '||return||', 'anna:', 'oh', '||period||', 'excuse', 'me', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'man:', 'how', "'bout", 'leading', 'us', 'in', 'a', 'toast', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'sure', '||period||', 'hey', 'guys', '||comma||', 'i', 'wanna', 'make', 'a', 'toast', '||period||', 'um', '||period||', '||period||', '||period||', "here's", 'to', 'us', 'who', 'wish', 'us', 'well', '||comma||', 'and', 'those', 'who', "don't", 'can', 'go', 'to', 'hell', '||period||', '||period||', '||period||', 'all', 'right', '||comma||', "who's", "dancin'", '||questionmark||', "c'mon", '||comma||', "who's", "dancin'", '||questionmark||', 'you', 'want', 'me', '||comma||', 'you', 'want', 'me', 'to', 'get', 'it', 'started', '||questionmark||', "i'll", 'get', 'it', 'started', '||period||', 'whew', '||exclammark||', '||leftparen||', 'she', 'dances', '||rightparen||', '||return||', '||return||', 'george:', 'sweet', 'fancy', 'moses', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'get', 'the', 'tickets', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'wants', 'two', '||questionmark||', 'special', 'sneak', 'preview', 'of', 'death', 'blow', '||period||', '||return||', '||return||', 'kramer:', 'death', 'blow', 'when', 'someone', 'tries', 'to', 'blow', 'you', 'up', '||comma||', 'not', 'because', 'of', 'who', 'you', 'are', '||comma||', 'but', 'for', 'different', 'reasons', 'altogether', '||period||', '||leftparen||', 'jerry', 'buzzes', 'up', 'george', '||rightparen||', 'jerry', '||comma||', 'do', 'you', 'think', 'you', 'can', 'get', 'an', 'extra', 'ticket', 'for', 'my', 'friend', 'brody', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'do', 'you', 'know', 'what', 'i', 'had', 'to', 'go', 'through', 'to', 'get', 'these', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'know', '||comma||', 'but', "he's", 'a', 'big', 'fan', 'of', 'the', 'genre', '||period||', 'you', 'know', "i'd", 'consider', 'it', 'a', 'personal', 'favor', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'i', 'guess', 'i', 'do', 'owe', 'you', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'listen', '||comma||', 'do', 'you', 'want', 'me', 'to', 'stay', 'here', 'until', 'george', 'gets', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'okay', '||period||', '||return||', '||return||', 'kramer:', "there's", 'no', 'problem', '||comma||', 'really', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'fine', '||period||', '||leftparen||', 'george', 'enters', '||comma||', 'kramer', 'exits', '||rightparen||', 'how', 'was', 'the', 'party', '||questionmark||', '||return||', '||return||', 'george:', 'food', 'was', 'good', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'i', "didn't", 'miss', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'actually', 'you', 'did', 'miss', 'one', 'nugget', 'of', 'entertainment', '||period||', '||leftparen||', 'pause', '||rightparen||', 'have', 'you', 'ever', 'seen', 'elaine', 'dance', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', 'danced', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'was', 'more', 'like', 'a', 'full', 'bodied', 'dry', 'heave', 'set', 'to', 'music', '||period||', '||return||', '||return||', 'jerry:', 'did', 'she', 'do', 'the', 'little', 'kicks', 'and', 'the', 'thumbs', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', 'you', 'mean', 'you', 'know', 'about', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'for', 'some', 'time', '||period||', '||period||', '||period||', '||leftparen||', 'video', 'of', 'elaine', 'dancing', 'on', 'the', 'street', 'with', 'jerry', 'and', 'the', 'street', 'musicians', 'watching', 'her', 'awful', 'dance', '||rightparen||', 'it', 'was', 'about', 'five', 'years', 'ago', '||period||', 'i', 'never', 'knew', 'what', 'to', 'say', 'to', 'her', 'about', 'it', '||period||', 'it', 'was', 'one', 'of', 'those', 'problems', 'i', 'hoped', 'would', 'just', 'go', 'away', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'sometimes', 'you', "can't", 'help', 'these', 'people', "'til", 'they', 'hit', 'rock', 'bottom', '||period||', '||return||', '||return||', 'jerry:', 'and', 'by', 'then', "you've", 'lost', 'interest', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'gotta', 'take', 'a', 'ride', 'with', 'me', 'later', '||period||', 'i', 'borrowed', 'my', "father's", 'car', '||period||', "'68", 'gto', '||period||', '||return||', '||return||', 'jerry:', 'what', 'made', 'him', 'get', 'that', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'during', 'that', 'period', 'when', 'my', 'folks', 'were', 'separated', 'he', 'went', 'a', 'little', 'crazy', '||period||', '||return||', '||return||', 'jerry:', 'not', 'a', 'very', 'long', 'trip', '||period||', '||leftparen||', 'enter', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', "brody's", 'in', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'even', 'have', 'the', 'extra', 'ticket', 'yet', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'better', 'get', 'on', 'the', 'horn', '||period||', '||return||', '||return||', 'elaine:', "i'm", "tellin'", 'you', 'jerry', "i'm", "gettin'", 'a', 'vibe', '||period||', 'if', 'i', "didn't", 'know', 'better', '||comma||', "i'd", 'say', 'the', 'staff', 'completely', 'lost', 'respect', 'for', 'me', '||period||', '||leftparen||', 'staff', 'mocks', 'her', 'dancing', 'in', 'the', 'background', '||rightparen||', '||return||', '||return||', 'jerry:', 'how', 'could', 'that', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "it's", 'like', 'the', 'feeling', 'is', 'palpable', '||period||', 'you', 'think', 'it', 'could', 'have', 'something', 'to', 'do', 'with', 'the', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'george', 'was', 'there', '||comma||', 'he', 'said', 'he', 'had', 'a', 'great', 'time', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', "it's", 'george', '||period||', 'i', 'bet', 'you', 'this', 'is', 'somehow', 'george', 'related', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'what', 'are', 'you', "talkin'", 'about', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'like', 'a', 'virus', '||period||', 'he', 'attaches', 'himself', 'to', 'a', 'healthy', 'host', 'company', '||comma||', 'and', 'the', 'next', 'thing', 'you', 'know', '||comma||', 'the', 'entire', "staff's", 'infected', '||period||', '||return||', '||return||', 'jerry:', 'now', "you're", "talkin'", 'crazy', '||exclammark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'jerry', '||comma||', 'if', "that's", 'not', 'what', 'it', 'is', '||comma||', 'you', 'tell', 'me', '||period||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'makes', 'sound', '||rightparen||', 'oh', "there's", 'my', 'call', 'waiting', '||comma||', 'i', 'gotta', 'get', "goin'", '||period||', '||return||', '||return||', 'anna:', 'you', 'have', 'a', 'minute', 'to', 'approve', 'some', 'copy', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'sure', '||comma||', 'sure', '||period||', 'so', 'ah', '||comma||', 'did', 'ya', 'have', 'a', 'good', 'time', 'at', 'the', 'party', 'last', 'night', '||questionmark||', '||return||', '||return||', 'anna:', 'it', 'was', 'a', 'real', '||period||', '||period||', '||period||', 'kick', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'did', 'you', 'happen', 'to', 'speak', 'to', 'my', 'friend', 'george', '||questionmark||', '||return||', '||return||', 'anna:', 'as', 'a', 'matter', 'of', 'fact', 'i', 'did', '||period||', '||return||', '||return||', 'elaine:', 'ah', 'hah', '||period||', 'well', '||comma||', 'listen', '||period||', 'you', 'would', 'be', 'wise', 'to', 'keep', 'your', 'distance', 'from', 'him', '||period||', '||return||', '||return||', 'anna:', 'why', '||questionmark||', 'he', 'seems', 'harmless', '||period||', '||return||', '||return||', 'elaine:', 'oh', "he's", 'not', '||period||', "he's", 'very', 'harmful', '||period||', '||return||', '||return||', 'anna:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'trust', 'me', '||period||', "he's", 'a', 'bad', 'seed', '||period||', "he's", 'a', 'horrible', 'seed', '||period||', "he's", 'one', 'of', 'the', 'worst', 'seeds', "i've", 'ever', 'seen', '||period||', '||return||', '||return||', 'anna:', 'and', 'you', 'two', 'are', 'friends', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "we're", 'good', 'friends', '||period||', '||return||', '||return||', 'george:', 'so', 'this', 'anna', 'called', 'me', 'from', 'out', 'of', 'the', 'blue', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'i', 'thought', 'you', 'were', 'rebuffed', '||period||', '||return||', '||return||', 'george:', 'with', 'extreme', 'prejudice', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'elaine', 'put', 'in', 'a', 'good', 'word', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', "that's", 'just', 'the', 'thing', '||period||', 'anna', 'told', 'me', 'that', 'elaine', 'said', 'i', 'was', 'one', 'of', 'the', 'worst', 'seeds', "she'd", 'ever', 'seen', '||period||', '||return||', '||return||', 'jerry:', 'interesting', '||period||', 'she', "doesn't", 'care', 'for', 'you', '||comma||', 'then', 'a', 'stern', 'warning', '||comma||', 'suddenly', 'a', 'phone', 'call', '||period||', 'seems', "elaine's", 'made', 'you', 'the', 'bad', 'boy', '||period||', 'and', 'anna', 'digs', 'the', 'bad', 'boy', '||period||', '||return||', '||return||', 'george:', "i'm", 'the', 'bad', 'boy', '||period||', "i've", 'never', 'been', 'the', 'bad', 'boy', '||period||', '||return||', '||return||', 'jerry:', "you've", 'been', 'the', 'bad', 'employee', '||comma||', 'the', 'bad', 'son', '||comma||', 'the', 'bad', 'friend', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', '||period||', '||period||', 'yes', '||comma||', 'yes', '||return||', '||return||', 'jerry:', 'the', 'bad', 'fianc&mac226', '||semicolon||', '||comma||', 'the', 'bad', 'dinner', 'guest', '||comma||', 'the', 'bad', 'credit', 'risk', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'okay', '||comma||', 'the', 'point', 'is', 'made', '||period||', '||return||', '||return||', 'jerry:', 'the', 'bad', 'date', '||comma||', 'the', 'bad', 'sport', '||comma||', 'the', 'bad', 'citizen', '||period||', '||period||', '||period||', '||leftparen||', 'looks', 'at', 'table', 'as', 'george', 'exits', '||rightparen||', 'the', 'bad', 'tipper', '||exclammark||', '||return||', '||return||', 'jerry:', 'half', 'of', 'show', 'business', 'is', 'here', '||period||', '||return||', '||return||', 'kramer:', "there's", 'brody', '||period||', 'brody', '||exclammark||', 'over', 'here', '||period||', '||return||', '||return||', 'brody:', 'hey', 'kramer', '||period||', 'and', 'you', 'must', 'be', 'jerry', '||period||', 'thanks', 'for', 'the', 'ticket', '||period||', '||return||', '||return||', 'jerry:', "that's", 'quite', 'a', 'feed', 'bag', "you're", "workin'", 'on', 'there', '||period||', '||return||', '||return||', 'brody:', "it's", 'for', 'all', 'of', 'us', '||period||', 'is', 'there', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'kramer:', 'brody', '||comma||', "c'mon", '||period||', "he's", 'just', 'kidding', '||period||', "he's", 'a', 'joke', 'maker', '||period||', 'tell', 'him', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'a', 'joke', 'maker', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'here', 'we', 'go', '||comma||', 'death', 'blow', '||period||', '||leftparen||', 'brody', 'takes', 'out', 'video', 'camera', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hey', '||comma||', 'hey', '||comma||', 'what', 'the', 'hell', 'is', 'he', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'relax', '||comma||', 'he', 'does', 'that', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'does', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'making', 'a', 'copy', 'of', 'the', 'movie', 'for', 'sale', 'on', 'the', 'street', '||comma||', 'hum', '||questionmark||', '||return||', '||return||', 'jerry:', 'may', 'i', 'see', 'you', 'outside', 'for', 'a', 'moment', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', 'but', 'i', 'want', 'to', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'outside', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'have', 'you', 'seen', 'anna', '||questionmark||', '||return||', '||return||', 'worker:', 'uh', '||comma||', 'she', 'just', 'went', 'to', 'meet', 'your', 'friend', 'george', '||period||', '||return||', '||return||', 'elaine:', 'to', 'meet', 'george', '||questionmark||', 'i', 'knew', 'it', '||period||', 'where', 'did', 'they', 'go', '||questionmark||', '||return||', '||return||', 'worker:', 'the', 'park', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "don't", 'you', 'see', '||questionmark||', 'george', 'is', 'in', 'the', 'bloodstream', '||exclammark||', 'you', 'stay', 'away', 'from', 'him', '||comma||', 'too', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'mean', "he's", 'bootlegging', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'a', 'perfectly', 'legitimate', 'business', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'legitimate', '||period||', '||return||', '||return||', 'kramer:', "it's", 'a', 'business', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'meet', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', "he's", 'a', 'friend', 'of', 'a', 'friend', '||period||', 'you', 'know', 'corky', 'ramarez', 'up', 'on', '94th', 'street', '||questionmark||', 'one', 'day', 'he', 'and', 'i', 'are', 'playing', 'pachinco', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||leftparen||', 'boom', 'sound', '||rightparen||', '||return||', '||return||', 'kramer:', 'man', '||comma||', "we're", "missin'", 'the', 'death', 'blow', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'believe', 'this', '||period||', '||leftparen||', 'they', 'run', 'into', 'theater', '||rightparen||', '||return||', '||return||', 'anna:', 'you', 'know', "i'm", 'not', 'supposed', 'to', 'be', 'talking', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'no', "one's", 'putting', 'a', 'gun', 'to', 'your', 'head', '||period||', 'do', 'i', '||comma||', 'uh', '||comma||', 'scare', 'you', '||questionmark||', '||return||', '||return||', 'anna:', 'no', '||period||', '||period||', '||period||', 'a', 'little', '||period||', 'nice', 'car', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "she's", 'a', 'sweet', 'ride', '||period||', '||return||', '||return||', 'anna:', 'is', 'that', 'your', 'orthopedic', 'back', 'pillow', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', '||period||', '||return||', '||return||', 'anna:', 'well', 'is', 'it', 'or', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'guess', 'not', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', 'stay', 'away', 'from', 'her', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'do', "nothin'", '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'anna', '||rightparen||', 'get', 'in', 'the', 'car', '||period||', '||return||', '||return||', 'anna:', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'you', 'heard', 'me', 'young', 'lady', '||comma||', 'get', 'in', 'the', 'car', '||period||', '||leftparen||', 'to', 'george', '||rightparen||', 'and', 'you', '||comma||', 'you', 'should', 'know', 'better', '||period||', 'i', "don't", 'want', 'you', 'infecting', 'my', 'staff', '||period||', '||return||', '||return||', 'george:', 'lighten', 'up', '||period||', '||return||', '||return||', 'kramer:', 'go', 'get', "'em", '||comma||', 'death', 'blow', '||exclammark||', '||leftparen||', 'to', 'brody', '||rightparen||', 'you', 'okay', '||questionmark||', '||return||', '||return||', '||leftparen||', 'movie', 'voice:', 'so', 'death', 'blow', '||comma||', 'we', 'meet', 'again', '||period||', '||period||', '||period||', '||rightparen||', '||return||', '||return||', 'brody:', 'uh', '||comma||', 'i', 'got', 'a', 'cramp', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'no', 'wonder', '||period||', 'you', 'ate', 'that', 'entire', 'bag', 'of', 'candy', '||period||', '||return||', '||return||', 'brody:', 'uh', '||comma||', 'there', 'it', 'goes', 'again', '||period||', 'kramer', '||comma||', 'you', 'gotta', 'drive', 'me', 'home', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'is', 'going', 'on', 'over', 'there', '||questionmark||', '||return||', '||return||', 'brody:', 'jerry', '||comma||', 'finish', 'shooting', 'the', 'movie', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'nuts', '||questionmark||', "there's", 'no', 'way', "i'm", 'holding', 'that', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'if', 'the', 'man', 'is', 'in', 'pain', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'well', '||comma||', 'maybe', 'if', 'he', "didn't", 'lick', 'his', 'fingers', 'before', 'he', 'reached', 'in', 'the', 'bag', 'we', "would've", 'eaten', 'some', '||period||', 'serves', 'him', 'right', '||period||', '||return||', '||return||', 'brody:', '||leftparen||', 'pulls', 'out', 'a', 'gun', '||rightparen||', 'what', 'are', 'you', 'some', 'kind', 'of', 'tough', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', 'okay', '||period||', "let's", 'everybody', 'just', 'relax', '||period||', 'jerry', '||comma||', 'take', 'the', 'camera', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'm", '||comma||', 'i', '||comma||', 'm', "takin'", 'the', 'camera', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'brody', '||rightparen||', "c'mon", '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'man', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'man', '||comma||', 'so', 'how', 'was', 'the', 'rest', 'of', 'death', 'blow', '||questionmark||', '||return||', '||return||', 'jerry:', 'how', 'was', 'the', 'rest', 'of', 'death', 'blow', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'who', 'got', 'the', 'final', 'death', 'blow', '||comma||', "'cause", 'i', 'thought', 'that', 'hawaiian', 'guy', '||comma||', 'he', 'had', 'it', "comin'", 'to', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', 'make', 'me', 'get', 'a', 'ticket', 'for', 'this', 'friend', 'of', 'yours', 'and', 'then', 'the', 'guy', 'forces', 'me', 'to', 'bootleg', 'the', 'movie', 'at', 'gun', 'point', '||exclammark||', '||return||', '||return||', 'kramer:', "he's", 'quite', 'a', 'character', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'he', 'came', 'by', 'here', 'at', '3', "o'clock", 'in', 'the', 'morning', 'to', 'pick', 'up', 'the', 'tape', '||period||', 'i', 'was', 'scared', 'out', 'of', 'my', 'mind', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'it', '||period||', 'yep', '||period||', '||return||', '||return||', 'brody:', 'brody', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', 'up', '||period||', "it's", 'brody', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', '||comma||', 'crazy', '||questionmark||', 'i', "don't", 'want', 'to', 'see', 'this', 'guy', 'again', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'did', 'him', 'a', 'favor', '||period||', 'he', 'probably', 'wants', 'to', 'come', 'up', 'and', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'i', "didn't", 'do', 'it', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'your', 'first', 'time', '||period||', "he'll", 'understand', '||period||', '||return||', '||return||', 'jerry:', 'people', 'with', 'guns', "don't", 'understand', '||period||', "that's", 'why', 'they', 'get', 'guns', '||period||', 'too', 'many', 'misunderstandings', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'brody', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'brody:', 'jerry', '||comma||', 'i', 'have', 'to', 'talk', 'to', 'you', 'about', 'the', 'tape', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'brody:', "i've", 'never', 'seen', 'such', 'beautiful', 'work', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'brody:', '||leftparen||', 'con', '||comma||', 't', '||rightparen||', "you're", 'a', 'genius', '||period||', 'the', 'zoom', '||dash||', 'ins', '||comma||', 'the', 'framing', '||period||', 'i', 'was', 'enchanted', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'did', 'the', 'best', 'i', 'could', '||period||', '||return||', '||return||', 'brody:', 'i', 'got', 'another', 'project', 'for', 'you', '||period||', "it's", 'a', 'movie', 'called', 'cry', 'cry', 'again', '||period||', 'i', 'was', 'gonna', 'give', 'it', 'to', 'one', 'of', 'my', 'other', 'guys', '||comma||', 'but', "it's", 'an', 'arty', 'movie', 'and', 'quite', 'frankly', '||comma||', 'they', "don't", 'have', 'the', 'sensibility', '||period||', '||return||', '||return||', 'brody:', 'may', 'i', 'use', 'your', 'phone', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', 'yeah', '||period||', "it's", 'under', 'the', 'couch', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'you', '||exclammark||', "you've", 'got', 'another', 'gig', '||exclammark||', 'uhh', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'another', 'gig', '||exclammark||', "i'm", 'not', "doin'", 'this', '||period||', '||return||', '||return||', 'kramer:', 'but', 'you', 'have', 'a', 'gift', '||period||', 'jerry', '||comma||', 'this', 'is', 'not', 'your', 'little', 'comedy', 'act', '||period||', "we're", "talkin'", 'feature', 'films', '||period||', '||return||', '||return||', 'jerry:', "we're", "talkin'", 'federal', 'crime', 'here', '||period||', '||return||', '||return||', 'brody:', '||leftparen||', 'to', 'jerry', '||rightparen||', "i'll", 'expect', 'that', 'tape', 'by', 'three', "o'clock", 'tomorrow', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'may', 'i', 'borrow', 'this', '||questionmark||', '||leftparen||', 'holding', 'baseball', 'bat', '||rightparen||', '||return||', '||return||', 'kramer:', 'sure', '||comma||', 'do', 'you', 'need', 'a', 'glove', '||questionmark||', '||return||', '||return||', 'brody:', 'nah', '||period||', '||return||', '||return||', 'worker:', 'i', 'pressed', 'through', 'the', 'rushes', 'and', 'there', '||comma||', 'the', 'native', 'dancers', 'whirled', 'before', 'me', 'limbs', 'flailing', '||comma||', 'arms', 'akimbo', '||comma||', 'feet', 'kicking', 'up', 'dust', '||period||', '||period||', '||period||', '||leftparen||', 'all', 'workers', 'laugh', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'is', 'so', 'funny', '||questionmark||', '||return||', '||return||', 'anna:', 'sorry', '||comma||', 'i', 'got', 'hung', 'up', '||period||', '||return||', '||return||', 'elaine:', 'at', 'yankee', 'stadium', '||questionmark||', '||return||', '||return||', 'anna:', 'this', '||questionmark||', "it's", 'mine', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'really', '||questionmark||', "'cause", 'it', 'looks', 'a', 'little', 'big', 'for', 'you', '||period||', 'it', 'looks', 'like', 'something', 'a', 'short', '||comma||', 'stocky', '||comma||', 'slow', '||dash||', 'witted', '||comma||', 'bald', 'man', 'might', 'wear', '||period||', '||return||', '||return||', 'anna:', "he's", 'not', 'stocky', '||period||', '||return||', '||return||', 'elaine:', 'who', 'did', 'that', '||questionmark||', 'who', 'did', 'that', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', '||rightparen||', 'the', 'french', 'guy', 'fell', 'off', 'his', 'bike', '||period||', 'oh', 'man', '||comma||', "that's", 'precious', '||period||', '||leftparen||', 'eats', 'popcorn', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||exclammark||', 'what', 'were', 'you', 'thinking', 'when', 'you', 'shot', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'fine', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'even', 'know', 'what', 'this', 'scene', 'is', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'about', 'a', 'guy', 'buying', 'a', 'loaf', 'of', 'bread', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'bread', 'is', 'his', 'soul', '||period||', "he's", 'trying', 'to', 'buy', 'back', 'a', 'loaf', 'of', 'his', 'soul', '||period||', '||return||', '||return||', 'kramer:', 'wha', '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', 'there', 'is', 'no', 'way', "you're", 'giving', 'this', 'tape', 'to', 'brody', 'and', 'telling', 'him', 'i', 'shot', 'it', '||period||', '||return||', '||return||', 'kramer:', 'nah', '||comma||', 'nah', '||comma||', "he's", 'not', 'going', 'to', 'know', 'the', 'difference', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'care', 'about', 'brody', '||period||', 'i', 'was', 'up', 'on', '96th', 'street', 'today', '||comma||', 'there', 'was', 'a', 'kid', "couldn't", 'have', 'been', 'more', 'than', 'ten', 'years', 'old', '||period||', 'he', 'was', 'asking', 'a', 'street', 'vendor', 'if', 'he', 'had', 'any', 'other', 'bootlegs', 'as', 'good', 'as', 'death', 'blow', '||period||', "that's", 'who', 'i', 'care', 'about', '||period||', 'the', 'little', 'kid', 'who', 'needs', 'bootlegs', '||comma||', 'because', 'his', 'parent', 'or', 'guardian', "won't", 'let', 'him', 'see', 'the', 'excessive', 'violence', 'and', 'strong', 'sexual', 'content', 'you', 'and', 'i', 'take', 'for', 'granted', '||period||', '||return||', '||return||', 'kramer:', 'so', "you'll", 'do', 'the', 'movie', '||questionmark||', '||leftparen||', 'jerry', 'watches', 'the', 'movie', 'kramer', 'shot', '||dash||', 'we', 'hear', 'kramer', '||comma||', 'on', 'the', 'tape', 'say', "'ah", 'man', '||comma||', 'i', 'sat', 'in', "gum'", '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', '||period||', 'but', "i'm", 'gonna', 'need', 'to', 'storyboard', 'this', 'whole', 'thing', '||period||', 'where', 'are', 'my', 'magic', 'markers', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'here', '||period||', '||leftparen||', 'elaine', 'enters', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'have', 'lost', 'complete', 'control', 'of', 'my', 'staff', '||period||', 'why', 'did', 'i', 'let', 'george', 'go', 'to', 'that', 'party', '||questionmark||', 'i', 'mean', '||comma||', 'we', 'were', 'having', 'so', 'much', 'fun', '||period||', 'we', 'were', 'wining', '||comma||', 'we', 'were', 'dining', '||comma||', 'we', 'were', 'dancing', '||period||', '||leftparen||', 'she', 'starts', 'dancing', '||comma||', 'kramer', 'flips', 'out', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'he', 'shows', 'her', '||rightparen||', 'this', 'umpf', 'thing', '||period||', '||return||', '||return||', 'elaine:', "it's", 'dancing', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'that', "ain't", 'dancing', '||comma||', 'sally', '||period||', '||return||', '||return||', 'elaine:', 'i', 'dance', 'fine', '||period||', '||return||', '||return||', 'kramer:', 'you', 'stink', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'he', "doesn't", 'know', 'what', "he's", "talkin'", 'about', '||period||', '||leftparen||', 'jerry', 'fake', 'laughs', '||rightparen||', 'jer', '||questionmark||', 'jerry', '||comma||', "i'm", 'a', 'good', 'dancer', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'forgot', 'to', 'make', 'my', 'bed', '||period||', '||leftparen||', 'he', 'tries', 'to', 'get', 'away', '||rightparen||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'do', 'i', 'stink', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "you're", 'beyond', 'stink', '||period||', '||return||', '||return||', 'elaine:', 'but', 'i', 'really', 'enjoy', 'dancing', '||period||', '||return||', '||return||', 'jerry:', 'and', "that's", 'not', "helpin'", 'either', '||period||', "that's", 'why', "you're", "havin'", 'trouble', 'with', 'your', 'staff', '||comma||', 'not', 'because', 'of', 'george', '||period||', '||return||', '||return||', 'elaine:', "it's", 'that', 'bad', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'you', 'ever', 'seen', 'yourself', '||questionmark||', '||leftparen||', 'she', 'starts', 'dancing', '||rightparen||', 'ah', '||comma||', 'ah', '||comma||', 'please', '||comma||', 'please', '||period||', 'not', 'in', 'my', 'home', '||period||', 'i', 'gotta', 'go', 'throw', 'this', 'stuff', 'in', 'the', 'laundry', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'voice:', 'i', 'have', 'george', 'costanza', 'still', 'holding', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'hi', '||period||', 'i', 'have', 'anna', 'here', '||period||', "there's", 'something', 'i', 'wanna', 'say', 'to', 'both', 'of', 'you', '||period||', '||return||', '||return||', 'george:', 'yo', '||comma||', 'anna', '||period||', '||return||', '||return||', 'anna:', 'hi', '||comma||', 'george', '||period||', "what're", 'you', 'up', 'to', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'ironing', '||rightparen||', 'you', "don't", 'wanna', 'know', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'well', '||comma||', 'listen', '||period||', 'i', 'feel', 'really', 'horrible', 'about', 'trying', 'to', 'keep', 'you', 'two', 'apart', 'and', 'i', 'just', 'wanted', 'to', 'apologize', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'wha', '||comma||', "what're", 'you', "talkin'", 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'george', '||comma||', 'i', 'just', 'want', 'you', 'to', 'hear', 'me', 'say', 'to', 'anna', 'that', "you're", 'a', 'good', 'and', 'decent', 'person', '||period||', '||return||', '||return||', 'george:', 'pick', 'up', 'the', 'phone', '||comma||', 'elaine', '||period||', 'pick', 'it', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'never', 'should', 'have', 'given', 'anna', 'the', 'impression', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'pick', 'it', 'up', '||comma||', 'pick', 'it', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', '||dash||', '||dash||', 'that', "you're", 'a', 'bad', 'seed', '||comma||', 'i', 'mean', '||comma||', "you're", 'a', 'fine', 'seed', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'get', 'off', 'the', 'speaker', '||exclammark||', '||leftparen||', 'elaine', 'picks', 'up', 'phone', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'are', "ruinin'", 'everything', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'trying', 'to', 'help', '||period||', 'why', 'are', 'you', 'being', 'so', 'difficult', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', "that's", 'it', '||period||', 'more', 'of', 'that', '||comma||', 'difficult', '||period||', "i'm", 'a', 'difficult', 'seed', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'i', "don't", 'have', 'time', 'for', 'this', '||period||', 'uh', '||comma||', 'anna', '||comma||', 'do', 'you', 'wanna', 'talk', 'to', 'george', '||questionmark||', '||return||', '||return||', 'anna:', 'um', '||comma||', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'she', "doesn't", 'want', 'to', '||period||', 'okay', '||comma||', 'bye', '||comma||', 'george', '||period||', "we'll", 'see', 'ya', '||period||', '||return||', '||return||', 'george:', "i'm", 'a', 'bad', 'man', '||exclammark||', '||return||', '||return||', 'brody:', 'so', "where's", 'the', 'tape', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "didn't", 'shoot', 'this', 'one', '||period||', "i'm", 'just', 'scouting', 'the', 'location', '||period||', '||return||', '||return||', 'brody:', 'i', 'need', 'the', 'tape', '||period||', '||return||', '||return||', 'jerry:', "you'll", 'get', 'your', 'tape', '||period||', 'but', "here's", 'what', "i'm", 'gonna', 'need', '||period||', "i'm", 'gonna', 'need', 'three', 'cameras', '||comma||', 'two', 'on', 'the', 'floor', '||comma||', 'one', 'in', 'the', 'balcony', '||period||', 'and', 'i', 'want', 'headsets', 'for', 'the', 'guys', "runnin'", "'em", '||period||', 'i', 'wanna', 'be', 'able', 'to', 'talk', 'to', "'em", '||period||', '||return||', '||return||', 'brody:', 'are', 'you', 'out', 'of', 'your', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', 'jerry', '||period||', "it's", 'okay', '||period||', '||leftparen||', 'jerry', 'steps', 'aside', '||rightparen||', 'yeah', '||comma||', 'look', '||comma||', 'brody', '||period||', 'uh', '||comma||', 'jerry', 'wants', 'to', 'do', 'the', 'bootleg', '||period||', "he's", "dyin'", 'to', 'do', 'it', '||period||', 'but', 'if', 'you', "don't", 'make', 'him', 'happy', '||comma||', 'the', 'work', 'suffers', '||period||', 'and', 'then', '||comma||', "nobody's", 'happy', '||period||', '||return||', '||return||', 'brody:', 'just', 'shoot', 'the', 'damn', 'thing', 'so', 'i', 'can', 'get', 'it', 'out', 'on', 'the', 'street', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "that's", 'it', '||comma||', 'i', "can't", 'work', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'off', 'the', 'project', '||period||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'kramer:', 'jerry', '||exclammark||', '||return||', '||return||', 'brody:', 'i', 'want', 'the', 'tape', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'the', 'good', 'boy', 'again', '||period||', 'can', 'you', 'believe', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'think', 'they', 'can', 'get', 'anyone', 'to', 'shoot', 'these', 'bootlegs', '||period||', '||return||', '||return||', 'george:', 'anna', 'actually', 'has', 'respect', 'for', 'me', 'now', '||period||', '||leftparen||', 'laughs/snorts', '||rightparen||', "it's", 'all', 'over', '||period||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'the', 'whole', 'business', 'has', 'changed', '||period||', "it's", 'all', 'about', 'money', 'now', '||period||', 'the', 'sad', 'thing', 'is', "it's", 'the', 'kids', 'that', 'suffer', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'man', '||period||', 'you', 'gotta', 'shoot', 'this', 'movie', 'for', 'me', '||period||', 'brody', '||comma||', "he's", 'a', 'reasonable', 'man', '||comma||', 'but', "he's", 'insane', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "i'm", 'not', "doin'", 'this', 'anymore', '||period||', 'i', "don't", 'know', 'what', 'i', 'was', 'thinking', '||period||', "it's", 'illegal', '||comma||', "it's", 'dangerous', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'say', 'dangerous', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'a', 'bootlegger', '||period||', '||return||', '||return||', 'anna:', "you're", 'a', 'what', '||questionmark||', '||return||', '||return||', 'george:', "i'm", "bootleggin'", 'a', 'movie', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'anna:', "isn't", 'that', 'illegal', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'can', 'do', 'hard', 'time', 'for', 'this', 'one', '||period||', 'and', 'community', 'service', '||exclammark||', '||return||', '||return||', 'anna:', 'is', 'this', 'your', 'fibercon', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'takes', 'it', 'and', 'throws', 'it', 'out', 'window', '||rightparen||', 'get', 'outta', 'my', 'way', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'george', 'got', 'arrested', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'he', 'went', 'down', 'at', 'the', 'beackman', '||comma||', 'he', 'tried', 'to', 'lam', '||comma||', 'but', 'they', 'cheesed', 'him', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'now', 'i', 'see', '||period||', '||leftparen||', 'buzzer', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'brody:', 'brody', '||comma||', "i'm", "comin'", 'up', '||period||', '||return||', '||return||', 'jerry:', "what're", 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'ah', '||comma||', 'gotta', 'give', 'him', 'something', '||period||', 'come', 'on', '||comma||', "where's", 'that', 'tape', 'i', 'shot', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "that's", 'it', '||period||', '||leftparen||', 'they', 'play', 'it', 'and', 'see', 'elaine', 'dancing', '||rightparen||', 'sweet', 'fancy', 'moses', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'she', 'taped', 'over', 'the', 'whole', 'ending', '||exclammark||', '||leftparen||', 'brody', 'enters', '||rightparen||', '||return||', '||return||', 'brody:', "where's", 'the', 'tape', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'well', '||period||', 'it', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'brody:', 'is', 'that', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'here', 'it', 'is', '||comma||', 'brody', '||period||', 'one', 'copy', 'of', 'cry', 'cry', 'again', '||period||', '||return||', '||return||', 'brody:', "how'd", 'it', 'turn', 'out', '||questionmark||', '||return||', '||return||', 'kramer', '+', 'jerry:', 'uh', '||period||', '||period||', '||period||', 'great', '||period||', '||return||', '||return||', 'kramer:', 'although', 'the', 'whole', 'story', 'kinda', 'comes', 'apart', 'at', 'the', 'end', 'there', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'out', 'of', 'nowhere', "there's", 'this', 'lone', 'dancer', 'who', 'appears', 'to', 'be', 'injured', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'a', 'disturbing', 'image', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'so', 'you', 'cry', '||period||', '||period||', '||period||', 'and', 'when', 'you', 'see', 'the', 'dancing', '||comma||', 'you', 'cry', 'again', '||period||', '||return||', '||return||', 'anna:', '||leftparen||', 'george', 'is', 'crying', '||rightparen||', "it's", 'all', 'right', '||comma||', 'george', '||period||', "you'll", 'just', 'pay', 'a', 'fine', 'and', "that'll", 'be', 'it', '||period||', '||return||', '||return||', 'george:', 'why', 'did', 'the', 'policeman', 'have', 'to', 'yell', 'at', 'me', 'like', 'that', '||questionmark||', '||leftparen||', 'elaine', 'enters', '||rightparen||', '||return||', '||return||', 'elaine:', 'anna', '||period||', '||period||', '||period||', '||return||', '||return||', 'anna:', 'oh', '||comma||', 'elaine', '||comma||', 'thanks', 'for', 'picking', 'me', 'up', '||period||', 'i', 'can', 'explain', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'well', '||comma||', "we'll", 'talk', 'about', 'it', 'tomorrow', 'at', 'the', 'office', '||period||', '||leftparen||', 'mr', '||period||', 'costanza', 'enters', '||rightparen||', '||return||', '||return||', 'frank:', 'okay', '||comma||', "where's", 'my', 'boy', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'frank:', "i'm", 'sitting', 'at', 'home', '||comma||', 'reading', 'a', 'periodical', '||comma||', 'and', 'this', 'is', 'the', 'call', 'i', 'get', '||questionmark||', 'my', 'son', 'is', 'a', 'bootlegger', '||questionmark||', '||leftparen||', 'he', 'hits', 'george', 'in', 'the', 'head', '||rightparen||', '||return||', '||return||', 'george:', 'ow', '||exclammark||', 'dad', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'who', 'put', 'you', 'up', 'to', 'this', '||comma||', 'was', 'it', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'wait', 'a', 'minute', '||period||', 'i', 'think', "you've", 'got', 'it', 'backwards', '||period||', '||return||', '||return||', 'frank:', 'my', 'george', "isn't", 'clever', 'enough', 'to', 'hatch', 'a', 'scheme', 'like', 'this', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'that', 'right', '||period||', '||return||', '||return||', 'frank:', 'what', 'the', 'hell', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'means', 'whatever', 'the', 'hell', 'you', 'want', 'it', 'to', 'mean', '||period||', '||return||', '||return||', 'frank:', 'you', "sayin'", 'you', 'want', 'a', 'piece', 'of', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'could', 'drop', 'you', 'like', 'a', 'bag', 'of', 'dirt', '||period||', '||return||', '||return||', 'frank:', 'you', 'wanna', 'piece', 'of', 'me', '||questionmark||', 'you', 'got', 'it', '||exclammark||', '||leftparen||', 'they', 'begin', 'to', 'fight', '||rightparen||', '||return||', '||return||', 'jerry:', 'but', "he's", 'an', 'old', 'man', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', 'wrote', 'the', 'check', '||comma||', 'and', 'i', 'cashed', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'seeing', 'a', 'street', 'vendor', '||rightparen||', 'hey', '||comma||', "it's", 'the', 'bootlegged', 'death', 'blow', 'that', 'i', 'shot', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'cry', 'cry', 'again', '||comma||', 'i', 'wanna', 'see', 'that', '||period||', '||return||', '||return||', 'jerry:', 'no', 'you', "don't", '||period||', '||return||', '||return||', 'man:', 'you', 'shot', 'death', 'blow', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'man:', 'that', 'was', 'brilliant', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', '||leftparen||', 'they', 'continue', 'walking', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'were', 'big', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'still', 'big', '||period||', "it's", 'the', 'bootlegs', 'that', 'got', 'small', '||period||', 'so', 'how', 'are', 'things', 'at', 'the', 'office', '||questionmark||', 'back', 'to', 'normal', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'pretty', 'much', '||period||', 'although', 'i', 'still', 'get', 'the', 'vibe', 'every', 'once', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', 'i', "wouldn't", 'worry', 'about', 'it', '||period||', '||leftparen||', 'people', 'on', 'sidewalk', 'behind', 'them', 'are', 'doing', 'her', 'dance', 'as', 'they', 'go', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'really', 'miss', 'the', 'bermuda', 'triangle', '||period||', '||return||', '||return||', 'newman:', 'i', 'guess', "there's", 'not', 'much', 'action', 'down', 'there', 'these', 'days', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "there's", 'action', '||period||', "there's", 'plenty', 'of', 'action', '||period||', 'that', 'damned', 'alien', 'autopsy', 'is', 'stealing', 'all', 'the', 'headlines', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'tell', 'me', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', 'what', 'they', 'gotta', 'do', 'is', 'loose', 'a', 'plane', 'or', 'a', 'greenpeace', 'boat', 'in', 'there', '||period||', 'see', '||comma||', 'that', 'would', 'get', 'the', 'triangle', 'going', 'again', '||period||', '||return||', '||return||', 'newman:', 'what', 'keeps', 'the', 'water', 'in', 'there', '||questionmark||', 'i', 'mean', '||comma||', 'why', "doesn't", 'it', 'disappear', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'would', 'be', 'the', 'point', 'in', 'taking', 'the', 'water', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'gorgeous', 'water', '||period||', '||leftparen||', 'pause', '||rightparen||', 'do', 'we', 'own', 'bermuda', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'it', 'belongs', 'to', 'the', 'british', '||period||', '||return||', '||return||', 'newman:', 'lucky', 'krauts', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'what', 'do', 'you', 'think', 'about', 'that', 'alien', 'autopsy', '||questionmark||', '||return||', '||return||', 'newman:', 'oh', '||comma||', "that's", 'real', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', 'so', 'too', '||period||', '||return||', '||return||', 'attendant:', 'the', 'doctor', 'will', 'be', 'with', 'you', 'in', 'a', 'moment', '||period||', '||return||', '||return||', 'elaine:', 'difficult', '||questionmark||', '||return||', '||return||', 'doctor:', 'elaine', '||period||', 'you', "shouldn't", 'be', 'reading', 'that', '||period||', 'so', 'tell', 'me', 'about', 'this', 'rash', 'of', 'yours', '||period||', '||return||', '||return||', 'elaine:', 'well', "it's", '||comma||', "it's", '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'know', 'i', 'noticed', 'that', 'somebody', 'wrote', 'in', 'my', 'chart', 'that', 'i', 'was', 'difficult', 'in', 'january', 'of', '92', 'and', 'i', 'have', 'to', 'tell', 'you', 'that', 'i', 'remember', 'that', 'appointment', 'exactly', '||period||', 'you', 'see', 'this', 'nurse', 'asked', 'me', 'to', 'put', 'a', 'gown', 'on', 'but', 'it', 'was', 'a', 'mole', 'on', 'my', 'shoulder', 'and', 'i', 'specifically', 'wore', 'a', 'tank', 'top', 'so', 'i', "wouldn't", 'have', 'to', 'put', 'a', 'gown', 'on', '||period||', 'you', 'know', 'there', 'made', 'of', 'paper', '||period||', '||return||', '||return||', 'doctor:', 'well', 'that', 'was', 'a', 'long', 'time', 'ago', '||period||', 'how', 'about', 'if', 'i', 'just', 'erase', 'it', '||period||', 'now', 'about', 'that', 'rash', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'but', 'it', 'was', 'in', 'pen', '||period||', 'you', 'fake', 'erase', '||period||', '||return||', '||return||', 'doctor:', 'all', 'right', 'miss', 'benes', '||period||', 'this', "doesn't", 'look', 'to', 'serious', '||period||', "you'll", 'be', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'writing', '||questionmark||', 'doctor', '||period||', '||return||', '||return||', 'sheila:', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'george:', 'thanks', '||period||', '||return||', '||return||', 'sheila:', 'i', 'hope', 'you', 'got', 'that', 'mustard', 'stain', 'out', 'of', 'your', 'shirt', '||period||', '||return||', '||return||', 'george:', 'ohhhhhh', '||return||', '||return||', 'jerry:', 'no', '||period||', 'all', 'you', 'got', 'to', 'do', 'is', 'jiggle', 'it', 'with', 'this', 'screwdriver', '||period||', '||return||', '||return||', 'george:', 'smile', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'meet', 'this', 'women', '||comma||', 'sheila', '||period||', 'she', 'works', 'down', 'at', 'the', 'one', 'hour', 'photo', 'pace', '||period||', "she's", 'got', 'this', 'incredible', 'smile', '||period||', 'like', "she's", 'got', 'extra', 'teeth', 'or', 'something', '||return||', '||return||', 'jerry:', 'extra', 'teeth', '||period||', 'i', 'love', 'that', 'look', '||period||', '||return||', '||return||', 'george:', 'hey', 'check', 'this', 'out', '||period||', 'i', 'go', 'to', 'pick', 'up', 'my', 'pictures', 'and', 'she', 'says', '||quotemark||', 'i', 'hope', 'you', 'got', 'that', 'mustard', 'stain', 'out', 'of', 'your', 'shirt', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'what', 'mustard', 'stain', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'you', 'see', '||period||', "she's", 'looking', 'at', 'my', 'pictures', '||period||', '||return||', '||return||', 'jerry:', 'why', 'did', 'you', 'take', 'a', 'picture', 'of', 'a', 'mustard', 'stain', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'got', 'nothing', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'see', '||period||', "she's", 'looking', '||period||', '||return||', '||return||', 'george:', 'yesssss', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'got', 'to', 'get', 'this', 'thing', 'fixed', '||period||', '||return||', '||return||', 'jerry:', "they've", 'tried', 'to', 'fix', 'it', '||period||', 'but', 'it', 'keeps', 'coming', 'back', 'the', 'same', '||period||', '||return||', '||return||', 'kramer:', 'would', 'you', 'like', 'a', 'refund', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', "can't", 'the', 'warranty', 'expired', 'two', 'years', 'ago', '||period||', '||return||', '||return||', 'kramer:', 'would', 'you', 'be', 'interested', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'how', 'are', 'you', 'going', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'would', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'i', 'would', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'you', 'are', 'not', 'going', 'to', 'believe', 'what', 'happened', 'to', 'me', 'at', 'the', 'doctors', 'office', 'today', '||period||', '||return||', '||return||', 'jerry:', 'not', 'the', 'gown', 'again', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'i', 'was', 'looking', 'at', 'my', 'chart', 'and', 'it', 'said', 'i', 'was', 'difficult', '||period||', 'why', 'would', 'they', 'write', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'have', 'gotten', 'to', 'know', 'you', '||period||', '||return||', '||return||', 'elaine:', 'then', 'the', 'doctor', 'writes', 'more', 'stuff', 'down', 'and', "doesn't", 'even', 'look', 'at', 'my', 'rash', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'find', 'a', 'doctor', 'that', "doesn't", 'know', 'your', 'difficult', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'come', 'on', '||period||', "i'm", 'not', 'difficult', '||period||', "i'm", 'easy', '||period||', '||return||', '||return||', 'jerry:', 'why', 'because', 'you', 'dress', 'casual', 'and', 'sleep', 'with', 'a', 'lot', 'of', 'guys', '||period||', '||return||', '||return||', 'elaine:', 'listen', 'to', 'me', 'you', 'little', 'shi', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'smile', '||period||', '||return||', '||return||', 'doctor:', 'well', 'elaine', 'you', 'really', "didn't", 'have', 'to', 'put', 'on', 'the', 'gown', '||period||', '||return||', '||return||', 'elaine:', 'oh', "it's", 'my', 'pleasure', '||period||', 'i', 'love', 'these', '||period||', 'in', 'fact', 'i', 'got', 'one', 'at', 'home', '||period||', "it's", 'perfect', 'when', 'you', 'just', 'want', 'to', 'throw', 'something', 'on', '||period||', '||return||', '||return||', 'doctor:', 'all', 'rightly', '||period||', 'let', 'me', 'just', 'review', 'your', 'history', 'before', 'we', 'begin', '||period||', '||return||', '||return||', 'elaine:', 'where', 'did', 'you', 'get', 'my', 'chart', '||questionmark||', '||return||', '||return||', 'doctor:', 'from', 'your', 'last', 'doctor', '||period||', "it's", 'a', 'standard', 'procedure', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'i', 'can', 'tell', 'you', 'my', 'whole', 'history', '||period||', "let's", 'just', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'doctor:', 'okay', '||period||', "let's", 'take', 'a', 'look', '||period||', 'well', 'that', "doesn't", 'look', 'to', 'serious', '||period||', "you'll", 'be', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'please', '||comma||', 'please', '||period||', "it's", 'really', '||comma||', 'really', 'itchy', '||period||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'seinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'i', 'got', 'a', 'package', 'for', 'you', '||period||', 'sign', 'here', '||period||', '||return||', '||return||', 'jerry:', "who's", 'it', 'from', '||questionmark||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'no', 'return', 'address', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'i', "don't", 'want', 'it', '||questionmark||', '||return||', '||return||', 'postal', 'worker:', 'are', 'you', 'refusing', 'delivery', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'am', '||period||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'why', 'would', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'never', 'done', 'it', 'before', '||period||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'why', 'start', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'why', 'did', 'you', 'refuse', 'the', 'package', '||period||', 'everybody', 'loves', 'a', 'package', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'it', 'was', 'weird', '||period||', 'crazy', 'printing', '||period||', 'i', "don't", 'know', 'who', 'it', 'was', 'from', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'think', "it's", 'a', 'bomb', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'totally', 'impossible', '||period||', '||return||', '||return||', 'george:', 'oh', 'the', 'ego', 'on', 'you', '||period||', '||return||', '||return||', 'jerry:', 'why', "can't", 'i', 'be', 'bombable', '||questionmark||', '||return||', '||return||', 'george:', "who's", 'going', 'to', 'bomb', 'you', '||period||', 'an', 'airline', 'for', 'all', 'the', 'stupid', 'little', 'peanut', 'jokes', '||period||', '||return||', '||return||', 'jerry:', 'i', 'suppose', 'you', 'think', 'your', 'bombable', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', 'there', 'is', 'a', 'couple', 'of', 'people', 'that', "wouldn't", 'mind', 'having', 'me', 'out', 'of', 'the', 'way', '||period||', '||return||', '||return||', 'jerry:', "there's", 'more', 'than', 'a', 'couple', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', 'check', 'these', 'out', '||period||', 'i', 'just', 'picked', 'them', 'up', 'from', 'sheila', '||period||', 'she', 'must', 'have', 'loved', 'these', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'have', 'a', 'mercedes', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'i', 'just', 'sort', 'of', 'leaned', 'on', 'it', 'so', 'it', 'would', 'look', 'like', 'it', 'was', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'the', 'driver', 'seems', 'a', 'little', 'put', 'out', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'he', 'was', 'fine', 'with', 'it', '||period||', 'check', 'that', 'out', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'burt', 'reynolds', '||questionmark||', '||return||', '||return||', 'george:', 'wax', 'museum', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'a', 'lot', 'of', 'skin', '||period||', '||return||', '||return||', 'george:', 'this', 'must', 'be', 'sheila', 'from', 'the', 'photo', 'place', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'barely', 'see', 'her', 'face', '||period||', '||return||', '||return||', 'george:', 'she', 'must', 'have', 'slipped', 'it', 'in', 'here', '||period||', '||return||', '||return||', 'kramer:', 'i', 'i', 'i', '||return||', '||return||', 'george:', 'photo', 'store', 'sheila', '||period||', '||return||', '||return||', 'kramer:', 'well', 'hello', 'photo', 'store', 'sheila', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'i', 'will', 'see', 'you', 'boys', 'later', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'to', 'ask', 'her', 'out', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'your', 'not', 'playing', 'the', 'game', '||period||', '||return||', '||return||', 'george:', 'what', 'game', '||questionmark||', '||return||', '||return||', 'kramer:', 'she', 'goes', 'to', 'these', 'lengths', 'to', 'entice', 'you', 'and', 'your', 'only', 'response', 'is', '||quotemark||', 'gee', 'i', 'really', 'like', 'your', 'picture', '||period||', 'would', 'you', 'like', 'to', 'go', 'out', 'on', 'a', 'date', 'with', 'me', 'please', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'no', 'good', '||questionmark||', '||return||', '||return||', 'kramer:', 'george', '||period||', "it's", 'the', 'timeless', 'art', 'of', 'seduction', '||period||', 'you', 'got', 'to', 'join', 'in', 'the', 'dance', '||period||', 'she', 'sends', 'you', 'an', 'enticing', 'photo', '||comma||', 'you', 'send', 'her', 'one', 'right', 'back', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'well', 'as', 'you', 'know', "i've", 'always', 'been', 'something', 'of', 'a', 'photog', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', 'i', 'like', 'this', 'idea', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'hey', 'danny', '||period||', 'hello', '||period||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'postal', 'worker', 'danny:', 'hey', 'leo', '||period||', 'leo', "what's", 'up', 'with', 'your', 'nephew', '||period||', 'he', "wouldn't", 'except', 'his', 'package', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'oh', 'he', 'wants', 'it', '||period||', "he's", 'just', 'trying', 'to', 'be', 'funny', '||period||', 'yeah', "i'll", 'sign', 'it', '||period||', '||return||', '||return||', 'elaine:', 'and', 'then', 'he', 'starts', 'writing', 'on', 'my', 'chart', '||period||', '||return||', '||return||', 'george:', 'well', 'why', "don't", 'you', 'get', 'a', 'hold', 'of', 'it', 'and', 'change', 'what', 'you', "don't", 'like', '||period||', '||return||', '||return||', 'elaine:', 'you', "can't", 'change', 'your', 'chart', '||period||', "it's", 'your', 'chart', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'in', 'and', 'out', 'of', 'my', 'personnel', 'file', 'at', 'work', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', 'you', 'are', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', "i've", 'kept', 'the', 'same', 'job', 'for', 'more', 'than', 'two', 'years', '||period||', "it's", 'not', 'luck', '||period||', 'elaine', '||comma||', 'have', 'you', 'ever', 'sent', 'a', 'racy', 'photograph', 'of', 'yourself', 'to', 'anyone', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'sent', 'one', 'to', 'everyone', 'i', 'know', '||period||', 'remember', 'my', 'christmas', 'card', '||period||', '||return||', '||return||', 'george:', 'oh', 'yeah', 'the', 'nipple', '||period||', 'but', 'besides', 'that', '||period||', 'how', 'did', 'you', 'feel', 'about', "kramer's", 'work', '||questionmark||', '||return||', '||return||', 'elaine:', 'actually', 'i', 'thought', 'he', 'was', 'very', 'professional', '||period||', '||return||', '||return||', 'george:', 'so', 'it', 'was', 'a', 'good', 'experience', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||period||', 'in', 'fact', 'i', 'like', 'the', 'picture', 'so', 'much', 'i', 'cropped', 'out', 'the', 'nipple', 'and', 'am', 'using', 'as', 'my', 'health', 'club', 'id', '||period||', '||return||', '||return||', 'george:', 'nice', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'it', 'is', 'nice', 'actually', '||period||', '||return||', '||return||', 'elaine:', 'i', 'need', 'to', 'see', 'dr', '||period||', 'burke', 'right', 'away', '||period||', 'this', 'rash', 'is', 'spreading', '||period||', '||return||', '||return||', 'attendant:', 'he', "can't", 'see', 'you', 'miss', 'benes', '||comma||', "he's", 'busy', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'come', 'on', '||period||', 'have', 'some', 'compassion', '||period||', 'okay', 'well', 'i', 'hope', "it's", 'contagious', '||return||', '||return||', 'elaine:', 'come', 'on', '||period||', 'move', '||period||', '||leftparen||', 'elevator', 'doors', 'reopen', '||semicolon||', 'dr', '||period||', 'burke', 'and', 'two', 'orderlies', 'are', 'revealed', '||rightparen||', 'oh', 'hi', 'dr', '||period||', 'burke', '||period||', 'i', "didn't", 'know', 'if', 'uh', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'dr', '||period||', 'burke:', 'the', 'chart', 'miss', 'benes', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'please', 'no', 'more', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||return||', '||return||', 'george:', "where's", 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'went', 'to', 'get', 'some', 'steak', 'sauce', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'personal', 'matter', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||exclammark||', "it's", 'your', 'uncle', 'leo', '||exclammark||', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', 'leo', '||period||', 'you', "don't", 'have', 'to', 'yell', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'got', 'your', 'package', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'get', 'my', 'package', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'should', 'i', 'do', 'with', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'you', 'should', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'tell', 'him', 'to', 'open', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'not', 'going', 'to', 'treat', 'my', 'uncle', 'like', 'a', 'bomb', 'defusing', 'robot', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'jerry', '||comma||', 'your', 'cousin', 'jeffrey', 'is', 'in', 'the', 'parks', 'production', 'of', '||quotemark||', 'the', 'mikado', '||quotemark||', '||period||', 'i', 'want', 'you', 'to', 'go', 'see', 'it', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'open', 'the', 'package', 'leo', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'okay', '||period||', 'opening', '||period||', '||return||', '||return||', 'jerry:', 'opening', '||period||', '||return||', '||return||', '||leftparen||', 'through', 'the', 'phone:', 'boom', '||exclammark||', '||exclammark||', '||exclammark||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'it', "wasn't", 'a', 'bomb', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'bomb', '||period||', '||return||', '||return||', 'elaine:', 'well', 'then', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'stupid', 'leo', 'was', 'using', 'one', 'of', 'those', 'oven', 'cleaners', '||period||', 'he', 'left', 'the', 'canister', 'in', 'there', 'and', 'the', 'pilot', 'light', 'was', 'on', '||period||', 'the', 'whole', 'thing', 'blew', 'up', '||period||', '||return||', '||return||', 'elaine:', 'but', "he's", 'okay', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', 'but', 'the', 'explosion', 'singed', 'off', 'his', 'eyebrows', '||comma||', 'mustache', 'everything', '||period||', "he's", 'all', 'smooth', 'now', '||period||', "look's", 'like', 'a', 'seal', '||period||', '||return||', '||return||', 'elaine:', 'yeah', 'i', 'am', 'still', 'holding', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'my', 'stereo', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', 'you', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'my', 'stereo', '||questionmark||', "it's", 'all', 'smashed', 'up', '||period||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', 'now', 'it', 'looks', 'like', 'it', 'was', 'broken', 'during', 'shipping', 'and', 'i', 'insured', 'it', 'for', '$400', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'were', 'supposed', 'to', 'get', 'me', 'a', 'refund', '||period||', '||return||', '||return||', 'kramer:', 'you', "can't", 'get', 'a', 'refund', '||period||', 'your', 'warranty', 'expired', 'two', 'years', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'so', 'were', 'going', 'to', 'make', 'the', 'post', 'office', 'pay', 'for', 'my', 'new', 'stereo', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'just', 'a', 'write', 'off', 'for', 'them', '||period||', '||return||', '||return||', 'jerry:', 'how', 'is', 'it', 'a', 'write', 'off', '||questionmark||', '||return||', '||return||', 'kramer:', 'they', 'just', 'write', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', 'write', 'it', 'off', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', 'all', 'these', 'big', 'companies', 'they', 'write', 'off', 'everything', '||return||', '||return||', 'jerry:', 'you', "don't", 'even', 'know', 'what', 'a', 'write', 'off', 'is', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', "don't", '||period||', '||return||', '||return||', 'kramer:', 'but', 'they', 'do', 'and', 'they', 'are', 'the', 'ones', 'writing', 'it', 'off', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wish', 'i', 'just', 'had', 'the', 'last', 'twenty', 'seconds', 'of', 'my', 'life', 'back', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||questionmark||', 'he', "doesn't", 'have', 'one', 'appointment', 'this', 'whole', 'month', '||exclammark||', '||questionmark||', '||exclammark||', 'oh', 'come', 'on', '||period||', 'i', 'am', 'dying', 'here', 'man', '||period||', 'hello', '||comma||', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'still', 'no', 'luck', '||return||', '||return||', 'elaine:', 'jerry', 'i', 'am', 'at', 'doctor', 'zimmerman', '||period||', 'i', 'am', 'at', 'the', 'end', 'of', 'the', 'alphabet', '||period||', '||return||', '||return||', 'jerry:', "there's", 'no', 'zorn', 'or', 'zoutraph', '||period||', '||return||', '||return||', 'elaine:', 'there', 'on', 'vacation', '||period||', 'every', 'doctor', 'in', 'this', 'city', 'seems', 'to', 'know', 'who', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'what', 'about', 'dr', '||period||', 'resnick', 'my', 'uncle', 'leo', 'is', 'going', 'to', 'see', 'him', 'tomorrow', '||period||', '||return||', '||return||', 'elaine:', 'dr', '||period||', 'resnick', '||period||', "he's", 'not', 'listed', '||period||', '||return||', '||return||', 'jerry:', "he's", 'not', 'that', 'good', '||period||', '||return||', '||return||', 'george:', 'elaine', 'said', 'your', 'pretty', 'good', 'at', 'this', 'stuff', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'elaine', 'was', 'a', 'fun', 'project', '||period||', 'i', 'enjoyed', 'working', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'you', "don't", 'have', 'your', 'own', 'camera', '||period||', '||return||', '||return||', 'kramer:', 'uh', 'no', '||period||', 'look', 'at', 'this', '||period||', 'okay', 'yeah', 'this', 'looks', 'good', 'and', 'i', 'like', 'what', 'your', 'wearing', '||period||', '||return||', '||return||', 'george:', 'i', 'feel', 'fat', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', "you're", 'stoked', '||period||', 'the', 'camera', 'loves', 'stokedness', '||period||', 'look', 'were', 'not', 'going', 'to', 'do', 'anything', 'that', 'makes', 'you', 'feel', 'uncomfortable', '||period||', 'the', 'key', 'word', 'is', 'tasteful', '||period||', 'now', 'i', 'want', 'you', 'to', 'relax', 'and', 'have', 'fun', 'because', 'your', 'a', 'fun', 'guy', '||period||', 'all', 'right', "let's", 'do', 'it', '||period||', 'okay', 'come', 'on', '||period||', 'feel', 'the', 'beat', '||period||', 'feel', 'the', 'beat', '||period||', 'you', 'know', 'you', 'got', 'some', 'real', 'strong', 'pecks', 'but', "it's", 'hard', 'to', 'tell', 'under', 'that', 't', '||dash||', 'shirt', '||period||', '||return||', '||return||', 'george:', 'well', 'do', 'you', 'want', 'me', 'to', 'take', 'it', 'off', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', "it's", 'up', 'to', 'you', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'think', 'it', 'would', 'be', 'better', 'if', 'i', 'did', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'might', 'be', '||period||', 'i', 'mean', 'whatever', 'you', 'want', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', "that's", 'it', 'george', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||period||', 'give', 'it', 'to', 'me', '||period||', 'come', 'on', '||comma||', 'work', 'it', '||period||', 'work', 'it', '||period||', 'yeah', 'be', 'a', 'man', '||comma||', 'be', 'a', 'man', '||period||', '||return||', '||return||', 'kramer:', 'you', 'are', 'a', 'lover', 'boy', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', 'this', "can't", 'miss', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'guy:', 'is', 'this', 'elaine', 'marie', 'benes', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', 'who', 'it', 'this', '||questionmark||', '||return||', '||return||', 'guy:', 'we', 'are', 'with', 'the', 'american', 'medical', 'association', '||period||', 'can', 'you', 'confirm', 'the', 'correct', 'spelling', 'of', 'your', 'last', 'name', '||questionmark||', 'is', 'it', 'b', '||dash||', 'e', '||dash||', 'n', '||dash||', 'e', '||dash||', 's', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'what', 'is', 'this', 'all', 'about', '||return||', '||return||', 'guy:', 'good', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||comma||', 'hello', '||period||', '||return||', '||return||', 'guy:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'uh', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'guy:', 'get', 'off', 'the', 'line', '||period||', 'were', 'trying', 'to', 'make', 'another', 'call', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'elaine', '||period||', 'hello', '||period||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'leo', '||period||', 'has', 'the', 'doctor', 'been', 'in', 'yet', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'no', '||period||', 'i', 'am', 'going', 'to', 'ask', 'him', 'about', 'my', 'eyebrows', '||period||', '||return||', '||return||', 'elaine:', 'okay', 'listen', 'leo', '||period||', 'your', 'hairless', '||comma||', 'your', 'scared', '||period||', 'when', 'the', 'doctor', 'comes', 'in', 'let', 'me', 'do', 'the', 'talking', '||period||', 'okay', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'leo', '||period||', 'i', 'heard', 'you', 'had', 'a', 'little', 'mishap', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'it', 'was', 'a', 'fireball', '||period||', '||return||', '||return||', 'elaine:', 'i', 'should', 'have', 'never', 'left', 'him', 'alone', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'and', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'his', 'nurse', '||period||', '||period||', '||period||', 'poloma', '||period||', '||return||', '||return||', 'uncle', 'leo:', "you're", 'not', 'my', 'nurse', '||period||', '||return||', '||return||', 'elaine:', 'he', 'has', 'good', 'days', 'and', 'bad', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'what', 'seems', 'to', 'be', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'are', 'my', 'eyebrows', 'going', 'to', 'grow', 'back', '||questionmark||', '||return||', '||return||', 'elaine:', 'and', "he's", 'has', 'a', 'bit', 'of', 'a', 'rash', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'really', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'well', "there's", 'been', 'a', 'bit', 'of', 'that', 'going', 'around', 'lately', '||period||', 'will', 'you', 'excuse', 'me', 'poloma', '||period||', 'i', 'just', 'need', 'to', 'get', 'some', 'ointment', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'like', 'this', '||comma||', 'it', 'is', 'to', 'easy', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'shut', 'up', '||exclammark||', 'i', 'think', "he's", 'on', 'to', 'us', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'elaine', 'what', 'about', 'my', 'eyebrows', '||questionmark||', '||return||', '||return||', 'elaine:', 'shhhhhh', '||period||', 'here', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'like', 'this', 'kramer', '||period||', 'will', 'it', 'be', 'much', 'longer', '||questionmark||', '||return||', '||return||', 'attendant:', 'i', 'am', 'sorry', '||period||', 'it', 'looks', 'like', 'the', 'claim', 'has', 'been', 'red', 'flagged', '||period||', 'your', 'under', 'investigation', '||period||', '||return||', '||return||', 'jerry:', 'investigation', '||questionmark||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'newman:', 'kramer', 'you', 'might', 'as', 'well', 'run', 'along', '||period||', 'jerry', 'might', 'be', 'a', 'while', '||period||', 'suspicion', 'of', 'mail', 'fraud', '||period||', '||return||', '||return||', 'kramer:', 'mail', 'fraud', '||period||', 'your', 'in', 'a', 'lot', 'of', 'trouble', 'buddy', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'i', 'got', 'your', 'ointment', '||period||', "where's", 'your', 'nurse', '||questionmark||', '||return||', '||return||', 'uncle', 'leo:', 'she', 'left', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'no', 'need', 'to', 'get', 'angry', '||period||', 'calm', 'down', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'i', 'am', 'calm', '||period||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'leo', 'i', "don't", 'care', 'for', 'your', 'demeanor', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'demeanor', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'resnick:', 'now', 'your', 'just', 'being', 'difficult', '||period||', '||return||', '||return||', 'uncle', 'leo:', 'what', 'are', 'you', 'writing', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'i', 'really', 'liked', 'the', 'pictures', 'i', 'picked', 'up', 'here', 'yesterday', '||period||', '||return||', '||return||', 'sheila:', 'i', 'am', 'glad', 'george', '||period||', '||return||', '||return||', 'george:', 'and', "here's", 'a', 'roll', 'that', 'i', 'think', 'you', 'may', 'enjoy', '||period||', '||return||', '||return||', 'sheila:', 'great', '||period||', '||return||', '||return||', 'george:', 'shall', 'we', 'say', 'an', 'hour', '||period||', '||return||', '||return||', 'sheila:', 'hey', 'ron', 'i', 'got', 'to', 'go', 'to', 'lunch', '||period||', 'can', 'you', 'do', 'a', 'roll', '||questionmark||', '||return||', '||return||', 'ron:', 'no', 'problem', '||period||', '||return||', '||return||', 'sheila:', 'by', 'the', 'way', '||period||', 'you', 'know', 'that', 'model', 'that', 'is', 'always', 'in', 'here', '||period||', "she's", 'missing', 'one', 'of', 'her', 'lingerie', 'shots', '||period||', 'have', 'you', 'seen', 'it', '||questionmark||', '||return||', '||return||', 'ron:', 'no', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||period||', 'then', 'let', 'me', 'ask', 'you', 'this', '||period||', "didn't", 'you', 'find', 'it', 'interesting', 'that', 'your', 'friend', 'had', 'the', 'foresight', 'to', 'purchase', 'postal', 'insurance', 'for', 'your', 'stereo', '||period||', 'huh', '||period||', 'i', 'mean', 'parcels', 'are', 'rarely', 'damaged', 'during', 'shipping', '||period||', '||return||', '||return||', 'jerry:', 'define', 'rarely', '||period||', '||return||', '||return||', 'newman:', 'frequently', '||period||', '||return||', '||return||', 'jerry:', 'are', 'we', 'about', 'throw', 'here', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'pretty', 'hot', 'under', 'these', 'lights', 'huh', 'seinfeld', '||period||', 'pretty', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'hot', '||period||', '||return||', '||return||', 'jerry:', 'actually', 'i', 'am', 'quite', 'comfortable', '||period||', '||return||', '||return||', 'newman:', 'can', 'i', 'have', 'a', 'sip', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'newman:', 'not', 'going', 'to', 'play', 'ball', '||period||', 'huh', 'all', 'right', '||period||', 'admit', 'it', 'that', 'stereo', 'was', 'all', 'ready', 'busted', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'prove', 'anything', '||period||', '||return||', '||return||', 'newman:', 'is', 'this', 'or', 'is', 'this', 'not', 'your', 'signature', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'in', 'a', 'matter', 'of', 'fact', 'it', "isn't", '||period||', '||return||', '||return||', 'newman:', 'uncle', 'leo', '||questionmark||', 'this', 'case', 'is', 'closed', 'pending', 'further', 'evidence', '||period||', 'jerry', '||period||', '||return||', '||return||', 'elaine:', 'get', 'in', 'there', '||period||', 'get', 'chart', '||period||', 'get', 'out', '||period||', 'you', 'got', 'it', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'let', 'me', 'borrow', 'your', 'scarf', '||period||', '||return||', '||return||', 'elaine:', 'this', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'all', 'right', 'one', 'chart', 'coming', 'up', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'bennette', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'benes', '||period||', 'my', 'last', 'name', 'is', 'benes', 'you', 'jackass', '||period||', 'yeah', '||period||', '||return||', '||return||', 'newman:', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'kramer:', 'i', 'like', 'what', "you've", 'done', 'with', 'that', '||period||', '||return||', '||return||', 'attendant:', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||period||', 'i', 'am', 'dr', '||period||', 'vanostran', 'from', 'the', 'clinic', '||period||', 'i', 'need', 'elaine', 'benes', 'chart', '||period||', "she's", 'a', 'patient', 'of', 'mine', 'and', "she's", 'not', 'going', 'to', 'make', 'it', '||period||', "it's", 'uh', 'very', 'bad', 'very', 'messy', '||period||', '||return||', '||return||', 'attendant:', 'i', 'see', 'and', 'what', 'clinic', 'is', 'that', 'again', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'correct', '||period||', '||return||', '||return||', 'attendant:', 'excuse', 'me', '||period||', '||return||', '||return||', 'kramer:', 'from', 'the', 'hoffer', '||dash||', 'mandale', 'clinic', 'in', 'belgium', '||period||', '||return||', '||return||', 'attendant:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'netherlands', '||questionmark||', '||return||', '||return||', 'elaine:', "where's", 'my', 'chart', '||questionmark||', 'did', 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', 'but', 'now', 'they', 'got', 'a', 'chart', 'on', 'me', '||period||', '||return||', '||return||', 'sheila:', 'i', "don't", 'know', 'where', 'they', 'could', 'be', '||period||', '||return||', '||return||', 'george:', "can't", 'find', 'them', '||period||', "that's", 'marvelous', '||period||', 'the', 'dance', 'continues', '||period||', '||return||', '||return||', 'sheila:', 'well', 'if', 'i', 'find', 'them', "i'll", 'call', 'you', '||period||', '||return||', '||return||', 'george:', 'and', 'maybe', 'we', 'could', 'go', 'out', 'and', 'do', 'something', '||period||', '||return||', '||return||', 'sheila:', 'sure', '||period||', '||return||', '||return||', 'ron:', 'hello', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'sheila:', 'so', 'the', 'little', 'guy', 'finally', 'asked', 'me', 'out', '||period||', '||return||', '||return||', 'ron:', 'really', '||questionmark||', '||return||', '||return||', 'sheila:', 'hey', 'i', "can't", 'find', 'his', "photo's", 'anywhere', '||period||', '||return||', '||return||', 'ron:', 'oh', 'you', 'know', 'what', 'happened', '||period||', 'some', 'guy', 'from', 'the', 'post', 'office', 'confiscated', 'them', '||period||', 'he', 'left', 'his', 'card', '||period||', '||return||', '||return||', 'sheila:', 'newman', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'what', 'newman', 'wanted', 'to', 'see', 'me', 'for', '||period||', '||return||', '||return||', 'newman:', 'gentlemen', '||comma||', 'gentlemen', '||period||', 'i', 'am', 'so', 'happy', 'to', 'see', 'you', 'both', '||period||', 'there', 'is', 'just', 'some', 'inconsistencies', "i'd", 'like', 'to', 'straighten', 'out', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'clean', 'and', 'you', 'know', 'it', '||period||', '||return||', '||return||', 'newman:', 'clean', '||questionmark||', 'hardly', '||period||', 'this', 'looks', 'like', 'a', 'man', 'that', "isn't", 'happy', 'with', 'his', 'stereo', 'performance', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', "that's", 'one', 'of', 'mine', '||period||', '||return||', '||return||', 'newman:', 'it', 'looks', 'like', 'your', 'breaking', 'into', 'it', 'like', 'an', 'otter', 'breaking', 'into', 'a', 'clad', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'about', 'that', 'but', "i'm", 'sure', 'there', 'is', 'a', 'explanation', '||period||', '||return||', '||return||', 'newman:', 'yes', '||period||', "it's", 'called', 'mail', 'fraud', '||period||', 'oohhhh', '||period||', 'how', "i've", 'longed', 'for', 'this', 'moment', 'seinfeld', '||period||', 'the', 'day', 'when', 'i', 'would', 'have', 'the', 'proof', 'i', 'needed', 'to', 'hall', 'you', 'out', 'of', 'your', 'cushy', 'lair', 'and', 'expose', 'to', 'the', 'light', 'of', 'justice', 'as', 'the', 'monster', 'that', 'you', 'are', '||period||', 'a', 'monster', 'so', 'vile', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'guy:', 'newman', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'there', 'will', 'be', 'a', 'small', 'fine', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'george:', 'can', 'we', 'go', 'now', '||questionmark||', '||return||', '||return||', 'newman:', 'not', 'so', 'fast', 'pretty', 'boy', '||period||', 'there', 'is', 'more', 'to', 'this', 'sorted', 'little', 'affair', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'this', 'photo', 'clearly', 'indicates', 'your', 'involvement', 'in', 'some', 'ill', '||dash||', 'conceived', 'mail', 'order', 'pornography', 'ring', '||period||', 'as', 'does', 'this', 'one', 'found', 'in', 'the', 'same', 'disturbing', 'packet', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'we', 'have', 'some', 'questions', "we'd", 'like', 'you', 'to', 'answer', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'some', 'questions', 'of', 'my', 'own', '||period||', '||return||', '||return||', 'sheila:', 'hi', '||period||', 'one', 'of', 'your', 'mailmen', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'oh', 'my', 'god', '||comma||', 'george', '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'listen', 'sheila', "it's", 'not', 'what', 'you', 'think', '||period||', 'i', 'put', 'my', 'trust', 'into', 'the', 'wrong', 'person', '||period||', 'he', 'said', 'the', 'key', 'word', 'was', 'tasteful', '||period||', '||return||', '||return||', 'jerry:', 'the', 'timeless', 'art', 'of', 'seduction', '||period||', '||return||', '||return||', 'george:', 'sheila', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'woman:', 'well', 'i', 'started', 'out', 'working', 'in', 'mortgage', 'bonds', '||comma||', 'but', 'i', 'just', 'found', 'that', 'so', 'limiting', '||period||', '||return||', '||return||', 'jerry:', 'my', 'friend', 'kramer', 'and', 'i', 'were', 'discussing', 'that', 'same', 'thing', 'the', 'other', 'day', '||period||', 'he', 'was', 'with', 'brant', '||dash||', 'leland', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'woman:', 'wow', '||period||', 'well', 'then', 'my', 'mentor', 'suggested', 'that', 'i', 'move', 'into', 'equities', '||comma||', 'best', 'move', 'i', 'ever', 'made', '||period||', '||return||', '||return||', 'jerry:', 'mentor', '||questionmark||', 'you', 'mean', 'your', 'boss', '||period||', '||return||', '||return||', 'woman:', 'oh', '||comma||', 'no', 'no', 'no', '||comma||', "cynthia's", 'just', 'a', 'successful', 'businesswoman', "who's", 'taken', 'me', 'under', 'her', 'wing', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', 'so', "cynthia's", 'your', 'mentor', '||period||', '||return||', '||return||', 'woman:', 'and', "i'm", 'her', 'protg', '||period||', 'you', 'must', 'have', 'someone', 'like', 'that', '||period||', 'you', 'know', '||comma||', 'who', 'guides', 'you', 'in', 'your', 'career', 'path', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'like', 'gabe', 'kaplan', '||period||', '||return||', '||return||', 'george:', 'i', 'still', "don't", 'understand', 'this', '||period||', 'abby', 'has', 'a', 'mentor', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'and', 'the', 'mentor', 'advises', 'the', 'protg', '||period||', '||return||', '||return||', 'george:', 'is', 'there', 'any', 'money', 'involved', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'so', "what's", 'in', 'it', 'for', 'the', 'mentor', '||questionmark||', '||return||', '||return||', 'jerry:', 'respect', '||comma||', 'admiration', '||comma||', 'prestige', '||period||', '||return||', '||return||', 'george:', 'pssh', '||period||', 'would', 'the', 'protg', 'pick', 'up', 'stuff', 'for', 'the', 'mentor', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'suppose', 'if', 'it', 'was', 'on', 'the', "protg's", 'way', 'to', 'the', 'mentor', '||comma||', 'they', 'might', '||period||', '||return||', '||return||', 'george:', 'laundry', '||questionmark||', 'dry', 'cleaning', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'not', 'a', 'valet', '||comma||', "it's", 'a', 'protg', '||period||', '||return||', '||return||', 'george:', 'alright', '||period||', 'listen', '||comma||', 'i', 'gotta', 'get', 'some', 'reading', 'done', '||period||', 'you', 'mind', 'if', 'i', 'do', 'this', 'here', '||questionmark||', 'i', "can't", 'concentrate', 'in', 'my', 'apartment', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'checking', 'out', "george's", 'textbook', '||rightparen||', 'risk', 'management', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'steinbrenner', 'wants', 'everyone', 'in', 'the', 'front', 'office', 'to', 'give', 'a', 'lecture', 'in', 'their', 'area', 'of', 'business', 'expertise', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'makes', 'them', 'think', "you're", 'a', 'risk', 'management', 'expert', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'guess', "it's", 'on', 'my', 'resume', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'voice:', 'please', 'hold', 'for', 'elaine', 'benes', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', 'i', "can't", 'do', 'this', '||period||', 'i', "can't", 'read', 'books', 'anymore', '||semicolon||', 'books', 'on', 'tape', 'have', 'ruined', 'me', '||comma||', 'jerry', '||period||', 'i', 'need', 'that', 'nice', 'voice', '||period||', 'this', 'book', 'has', '*my*', 'voice', '||period||', 'i', 'hate', 'my', 'voice', '||period||', '||return||', '||return||', 'jerry:', 'so', 'get', 'this', 'book', 'on', 'tape', '||period||', '||return||', '||return||', 'george:', 'you', "can't", '||comma||', "it's", 'a', 'textbook', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'jer', '||period||', 'are', 'you', 'going', 'to', 'this', 'bob', 'sacamano', 'party', '||questionmark||', '||return||', '||return||', 'jerry:', 'am', 'i', 'going', '||questionmark||', 'it', 'was', 'three', 'nights', 'ago', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "you're", 'kidding', '||comma||', 'i', 'just', 'got', 'this', 'invitation', 'today', '||period||', 'oh', '||comma||', 'i', 'was', 'so', 'excited', '||period||', "it's", 'really', 'a', 'beautiful', 'invitation', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'it', 'was', 'a', 'lovely', 'affair', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'minute', '||semicolon||', 'this', 'postmark', 'is', 'three', 'weeks', 'old', '||period||', 'man', '||comma||', 'this', 'happens', 'all', 'the', 'time', '||period||', '||leftparen||', 'into', 'intercom', '||rightparen||', 'jeanine', '||questionmark||', 'who', 'the', 'hell', 'runs', 'the', 'mailroom', '||questionmark||', '||return||', '||return||', 'jeanine:', 'eddie', 'sherman', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'send', 'him', 'up', 'here', '||period||', '||return||', '||return||', 'jerry:', 'you', 'gonna', 'do', 'a', 'little', 'yelling', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'gonna', 'do', 'a', 'little', 'firing', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'so', 'cool', '||comma||', 'can', 'you', 'put', 'me', 'on', 'the', 'speaker', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'sure', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'gimme', 'a', 'break', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'copernicus', '||questionmark||', '||return||', '||return||', 'jeanine:', 'eddie', 'sherman', 'is', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'great', '||period||', 'send', 'him', 'in', '||period||', '||return||', '||return||', 'eddie:', 'you', 'wanted', 'to', 'see', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'eddie', '||period||', 'yes', '||comma||', 'um', '||comma||', 'i', 'am', 'so', 'sorry', 'but', "i'm", 'afraid', "we're", 'gonna', 'have', 'to', '||period||', '||period||', '||period||', 'promote', 'you', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'called', 'him', 'all', 'the', 'way', 'up', 'to', 'my', 'office', '||comma||', 'so', 'i', 'had', 'to', 'tell', 'him', 'something', 'important', '||period||', 'so', 'i', 'promoted', 'him', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', 'did', 'you', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'copywriter', '||period||', '||return||', '||return||', 'jerry:', "he's", 'writing', 'copy', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'it', "can't", 'be', 'any', 'worse', 'than', 'the', 'pointless', 'drivel', 'we', 'normally', 'churn', 'out', '||period||', '||return||', '||return||', 'kramer:', 'yowza', 'yowza', '||period||', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', '||rightparen||', 'jewish', 'singles', 'night', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'expect', 'you', 'both', 'to', 'be', 'there', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'jewish', '||period||', '||return||', '||return||', 'kramer:', 'well', 'neither', 'am', 'i', '||period||', '||return||', '||return||', 'jerry:', 'well', 'why', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'not', '||comma||', "i'm", 'running', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'lomez', '||comma||', 'he', 'usually', 'runs', 'it', 'but', "he's", 'in', 'the', 'everglades', '||period||', '||return||', '||return||', 'jerry:', 'lomez', 'is', 'jewish', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', 'yeah', 'yeah', '||period||', 'orthodox', '||comma||', 'jerry', '||period||', 'old', 'school', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reading', '||rightparen||', 'at', 'the', 'knights', 'of', 'columbus', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'frank', 'costanza', '||comma||', "he's", 'getting', 'me', 'a', 'room', 'at', 'his', 'lodge', '||period||', 'so', 'jerry', '||comma||', 'you', 'know', "i'm", 'really', 'counting', 'on', 'you', 'to', 'come', 'to', 'this', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', 'know', '||comma||', 'i', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'jerry', '||comma||', 'look', "i'm", 'cooking', 'all', 'the', 'food', 'myself', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reading', '||rightparen||', 'a', 'tempting', 'schmear', 'of', 'authentic', 'jewish', 'delicacies', '||period||', '||return||', '||return||', 'kramer:', 'do', 'you', 'like', 'tsimmis', '||questionmark||', '||return||', '||return||', 'abby:', 'my', 'mentor', 'says', 'the', 'duck', 'is', 'outstanding', 'here', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'really', 'a', 'duck', 'fan', '||comma||', 'the', 'skin', 'seems', 'sort', 'of', 'human', '||period||', '||return||', '||return||', 'abby:', 'oh', '||exclammark||', 'look', "who's", 'here', '||comma||', 'cynthia', '||exclammark||', '||return||', '||return||', 'cynthia:', 'hello', '||comma||', 'abby', '||period||', '||return||', '||return||', 'abby:', 'hello', '||period||', 'jerry', '||comma||', 'this', 'is', 'cynthia', 'pearlman', '||comma||', 'my', 'mentor', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'cynthia:', 'hi', 'jerry', '||comma||', 'nice', 'to', 'finally', 'meet', 'you', '||period||', '||return||', '||return||', 'abby:', 'well', 'come', 'join', 'us', '||comma||', 'we', 'could', 'pull', 'up', 'a', 'chair', '||period||', '||return||', '||return||', 'cynthia:', 'great', '||comma||', 'my', "boyfriend's", 'just', 'parking', 'the', 'car', '||period||', 'actually', '||comma||', 'jerry', '||comma||', 'you', '||return||', '||return||', 'jerry:', 'no', 'kidding', '||questionmark||', '||return||', '||return||', 'cynthia:', 'kenny', 'bania', '||period||', '||return||', '||return||', 'jerry:', 'bania', '||questionmark||', '||return||', '||return||', 'bania:', 'hey', '||comma||', 'jerry', '||exclammark||', '||exclammark||', "how's", 'it', 'going', '||questionmark||', '||exclammark||', 'you', 'gonna', 'join', 'us', 'for', 'dinner', '||questionmark||', 'the', 'duck', "here's", 'the', 'best', '||period||', 'the', 'best', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', "i'm", 'sorry', 'to', 'bother', 'you', '||comma||', 'i', 'noticed', 'that', 'you', 'have', 'a', 'textbook', 'on', 'tape', '||period||', 'may', 'i', 'ask', 'where', 'you', 'got', 'that', '||questionmark||', '||return||', '||return||', 'man:', 'reading', 'for', 'the', 'blind', '||period||', 'they', 'can', 'get', 'any', 'book', 'on', 'tape', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'ya', '||comma||', 'i', 'am', 'hooked', 'on', 'these', 'books', 'on', 'tape', '||period||', '||return||', '||return||', 'man:', 'oh', '||comma||', 'tell', 'me', 'about', 'it', '||period||', 'these', 'things', 'have', 'ruined', 'me', 'for', 'braille', '||period||', '||return||', '||return||', 'jerry:', 'reading', 'for', 'the', 'blind', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'take', 'an', 'eye', 'test', '||semicolon||', 'i', 'flunk', 'it', '||comma||', 'the', 'next', 'thing', 'you', 'know', 'i', 'am', 'swinging', 'to', 'the', 'sweet', 'sounds', 'of', 'risk', 'management', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'i', 'finally', 'met', 'the', 'mentor', '||period||', '||return||', '||return||', 'george:', "what's", 'she', 'like', '||questionmark||', 'impressive', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', "she's", 'dating', 'bania', '||period||', '||return||', '||return||', 'george:', 'bania', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'had', 'to', 'spend', 'two', 'hours', 'at', 'dinner', 'last', 'night', 'with', 'that', 'specimen', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'chicken', '||comma||', 'how', 'could', 'she', 'look', 'up', 'to', 'a', 'person', 'who', 'voluntarily', 'spends', 'time', 'with', 'bania', '||questionmark||', '||return||', '||return||', 'george:', 'marsala', '||questionmark||', '||return||', '||return||', 'jerry:', 'piccata', '||comma||', 'if', 'anything', 'i', 'should', 'be', 'dating', 'a', 'mentor', 'and', 'bania', 'should', 'be', 'setting', 'pins', 'in', 'a', 'bowling', 'alley', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'good', 'luck', 'with', 'that', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'dad', '||period||', '||return||', '||return||', 'frank:', 'what', 'are', 'you', 'wearing', '||comma||', 'an', 'athletic', 'sweat', 'suit', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'came', 'by', 'to', 'pick', 'up', 'his', 'check', 'for', 'the', 'banquet', 'hall', '||period||', 'you', 'know', 'i', 'got', 'a', 'hundred', 'and', 'eighty', '||dash||', 'three', 'responses', '||questionmark||', 'oh', '||comma||', "it's", 'gonna', 'be', 'a', 'rager', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'how', 'are', 'you', 'gonna', 'cook', 'jewish', 'delicacies', 'for', 'a', 'hundred', 'and', 'eighty', '||dash||', 'three', 'people', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "you're", 'right', '||period||', "that's", 'a', 'lot', 'of', 'pupkitz', '||period||', 'hey', 'frank', '||comma||', 'you', 'know', 'anybody', 'who', 'can', 'help', 'me', 'cook', '||questionmark||', '||return||', '||return||', 'frank:', 'cook', '||questionmark||', 'no', '||comma||', 'i', "don't", 'know', 'any', 'cooks', '||period||', 'i', "don't", 'know', 'anything', 'about', 'cooking', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'the', 'matter', 'with', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'my', 'dad', 'was', 'a', 'cook', 'during', 'the', 'korean', 'war', '||period||', 'something', 'very', 'bad', 'happened', '||comma||', 'ever', 'since', 'you', "can't", 'get', 'him', 'near', 'a', 'kitchen', '||period||', '||return||', '||return||', 'kramer:', 'shell', '||dash||', 'shocked', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||comma||', 'but', 'that', 'has', 'nothing', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', "that's", 'good', 'work', '||comma||', 'guys', '||period||', 'that', 'aught', 'to', 'do', 'it', 'for', 'today', '||period||', '||return||', '||return||', 'eddie:', 'wait', '||period||', 'you', "didn't", 'ask', 'me', 'about', 'my', 'ideas', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'eddie', '||comma||', 'well', "it's", 'your', 'first', 'day', '||period||', '||return||', '||return||', 'eddie:', "i'm", 'ready', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'okay', '||period||', '||return||', '||return||', 'eddit:', '||leftparen||', 'reading', '||rightparen||', "it's", 'a', 'hot', 'night', '||period||', 'the', 'mind', 'races', '||period||', 'you', 'think', 'about', 'your', 'knife', '||semicolon||', 'the', 'only', 'friend', 'who', "hasn't", 'betrayed', 'you', '||comma||', 'the', 'only', 'friend', 'who', "won't", 'be', 'dead', 'by', 'sun', 'up', '||period||', 'sleep', 'tight', '||comma||', 'mates', '||comma||', 'in', 'your', 'quilted', 'chambray', 'nightshirts', '||period||', '||return||', '||return||', 'elaine:', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', 'he', 'is', 'a', 'disaster', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'if', "he's", 'doing', 'that', 'bad', '||comma||', 'maybe', "he's", 'in', 'line', 'for', 'another', 'promotion', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||questionmark||', 'you', 'are', 'exactly', 'right', '||period||', 'that', 'is', 'what', 'i', 'should', 'do', '||comma||', 'i', 'should', 'promote', 'him', '||period||', "i'll", 'give', 'him', 'another', 'office', 'on', 'another', 'floor', 'and', 'he', 'can', 'sit', 'there', 'with', 'his', 'nice', 'title', 'and', 'his', 'bayonet', 'and', 'stop', "freakin'", 'me', 'out', '||period||', '||return||', '||return||', 'george:', 'nothing', 'at', 'all', '||period||', '||return||', '||return||', 'doctor:', 'well', 'george', '||comma||', 'your', 'vision', 'is', 'quite', 'impaired', '||period||', 'if', "you'll", 'just', 'sign', 'this', 'insurance', 'form', '||comma||', "here's", 'a', 'pen', '||period||', '||return||', '||return||', 'george:', "you're", 'a', 'very', 'handsome', 'man', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'three', 'kitchens', 'going', '||period||', 'i', 'got', 'brisket', 'going', 'at', "newman's", '||comma||', 'i', 'got', 'kugel', 'working', 'at', 'mrs', '||period||', "zamfino's", '||comma||', 'this', 'is', 'kreplach', '||period||', 'here', '||comma||', 'try', 'some', 'of', 'this', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'kramer:', 'eat', '||comma||', 'eat', '||exclammark||', "you're", 'skin', 'and', 'bones', '||period||', '||return||', '||return||', 'kramer:', 'hah', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'this', 'is', 'awful', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "it's", 'kreplach', '||period||', "it's", 'an', 'acquired', 'taste', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'follow', 'the', 'recipe', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'recipe', 'was', 'for', 'four', 'to', 'six', 'people', '||semicolon||', 'i', 'had', 'to', 'multiply', 'for', 'a', 'hundred', 'and', 'eighty', '||dash||', 'three', 'people', '||period||', 'i', 'guess', 'i', 'got', 'confused', '||period||', '||return||', '||return||', 'jerry:', 'it', 'tastes', 'like', 'dirt', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'also', 'dropped', 'it', 'on', 'the', 'way', 'over', '||period||', 'look', "i'm", 'in', 'trouble', '||comma||', 'i', 'got', 'no', 'skills', '||period||', 'i', "can't", 'peel', '||comma||', 'i', "can't", 'chop', '||comma||', 'i', "can't", 'grate', '||period||', 'i', "can't", 'mince', '||exclammark||', 'i', 'got', 'no', 'sense', 'of', 'flavor', '||comma||', 'obviously', '||period||', 'you', 'know', '||comma||', 'i', 'gotta', 'talk', 'to', 'frank', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', "can't", 'talk', 'to', 'frank', '||period||', '||return||', '||return||', 'kramer:', 'no', 'i', 'gotta', 'talk', 'to', 'him', '||comma||', 'i', 'know', 'that', 'he', 'can', 'help', 'me', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'abby:', 'i', 'think', "there's", 'a', 'dead', 'animal', 'in', 'the', 'elevator', '||period||', '||return||', '||return||', 'kramer:', 'my', 'stuffed', 'cabbage', '||exclammark||', '||return||', '||return||', 'abby:', 'so', '||comma||', 'great', 'dinner', 'last', 'night', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'was', 'alright', '||period||', '||return||', '||return||', 'abby:', 'i', 'told', 'cynthia', "we'd", 'double', 'with', 'her', 'and', 'bania', 'saturday', 'and', 'then', 'catch', 'his', 'act', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', '||comma||', 'no', 'way', '||comma||', 'no', 'bania', '||period||', '||return||', '||return||', 'abby:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'you', 'seen', 'his', 'act', '||questionmark||', "he's", 'got', 'a', 'twelve', '||dash||', 'minute', 'bit', 'about', 'ovaltine', '||period||', "he's", 'a', 'punk', '||comma||', 'a', 'patsy', '||comma||', 'a', 'hack', '||period||', '||return||', '||return||', 'abby:', 'cynthia', 'would', 'not', 'date', 'a', 'hack', '||period||', '||return||', '||return||', 'jerry:', 'would', '||period||', 'does', '||period||', 'is', '||period||', '||return||', '||return||', 'elaine:', 'before', 'we', 'get', 'started', '||comma||', 'i', 'am', 'happy', 'to', 'tell', 'you', 'that', 'eddie', 'sherman', 'is', 'no', 'longer', 'writing', 'for', 'this', 'catalog', '||period||', '||return||', '||return||', 'elaine:', "he's", 'upstairs', '||comma||', 'i', 'made', 'him', 'director', 'of', 'corporate', 'development', '||period||', '||return||', '||return||', 'employee:', 'you', 'promoted', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'no', '||comma||', 'i', 'would', 'hardly', '||dash||', '||dash||', '||return||', '||return||', 'employee:', 'i', 'bust', 'my', 'hump', 'ever', 'day', '||period||', '||return||', '||return||', 'elaine:', 'relax', '||dash||', '||dash||', '||return||', '||return||', 'employee:', 'as', 'far', 'as', "i'm", 'concerned', '||comma||', 'you', 'and', 'your', 'deranged', 'protg', 'can', 'run', 'the', 'catalog', 'by', 'yourselves', '||exclammark||', 'i', 'quit', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'hey', '||questionmark||', 'hey', '||period||', 'hey', '||exclammark||', '||exclammark||', '||return||', '||return||', 'voice:', 'chapter', 'one', '||period||', 'in', 'order', 'to', 'manage', 'risk', 'we', 'must', 'first', 'understand', 'risk', '||period||', 'how', 'do', 'you', 'spot', 'risk', '||questionmark||', 'how', 'do', 'you', 'avoid', 'risk', 'and', 'what', 'makes', 'it', 'so', 'risky', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'guy', 'sounds', 'just', 'like', 'me', '||period||', '||return||', '||return||', 'voice:', 'to', 'understand', 'risk', '||comma||', 'we', 'must', 'first', 'define', 'risk', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'horrible', '||period||', '||return||', '||return||', 'voice:', 'risk', 'is', 'defined', 'as', '||dash||', '||dash||', '||return||', '||return||', 'george:', '||leftparen||', 'banging', 'the', 'recorder', '||rightparen||', 'stop', 'it', '||exclammark||', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', "c'mon", 'frank', '||comma||', 'i', 'need', 'you', '||period||', 'i', 'mean', 'the', 'war', 'was', 'fifty', 'years', 'ago', '||period||', '||return||', '||return||', 'frank:', 'in', 'my', 'mind', '||comma||', "there's", 'a', 'war', 'still', 'going', 'on', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'what', 'happened', '||comma||', 'frank', '||questionmark||', 'what', 'is', 'it', 'that', 'you', "can't", 'get', 'over', '||questionmark||', '||return||', '||return||', 'frank:', 'inchon', '||comma||', 'korea', '||comma||', '1950', '||period||', 'i', 'was', 'the', 'best', 'cook', 'uncle', 'sam', 'ever', 'saw', '||comma||', 'slinging', 'hash', 'for', 'the', 'fighting', '103rd', '||period||', 'as', 'we', 'marched', 'north', '||comma||', 'our', 'supply', 'lines', 'were', 'getting', 'thin', '||period||', 'one', 'day', 'a', 'couple', 'of', 'gis', 'found', 'a', 'crate', '||comma||', 'inside', 'were', 'six', 'hundred', 'pounds', 'of', 'prime', 'texas', 'steer', '||period||', 'at', 'least', 'it', 'once', 'was', 'prime', '||period||', 'the', 'use', 'date', 'was', 'three', 'weeks', 'past', '||comma||', 'but', 'i', 'was', 'arrogant', '||comma||', 'i', 'was', 'brash', '||comma||', 'i', 'thought', 'if', 'i', 'used', 'just', 'the', 'right', 'spices', '||comma||', 'cooked', 'it', 'long', 'enough', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'frank:', 'i', 'went', 'too', 'far', '||period||', 'i', 'over', 'seasoned', 'it', '||period||', 'men', 'were', 'keeling', 'over', 'all', 'around', 'me', '||period||', 'i', 'can', 'still', 'hear', 'the', 'retching', '||comma||', 'the', 'screaming', '||period||', 'i', 'sent', 'sixteen', 'of', 'my', 'own', 'men', 'to', 'the', 'latrines', 'that', 'night', '||period||', 'they', 'were', 'just', 'boys', '||period||', '||return||', '||return||', 'kramer:', 'frank', '||comma||', 'you', 'were', 'a', 'boy', 'too', '||period||', 'and', 'it', 'was', 'war', '||period||', 'it', 'was', 'a', 'crazy', 'time', 'for', 'everyone', '||period||', '||return||', '||return||', 'frank:', 'tell', 'that', 'to', 'bobby', 'colby', '||period||', 'all', 'that', 'kid', 'wanted', 'to', 'do', 'was', 'go', 'home', '||period||', 'well', 'he', 'went', 'home', 'alright', '||comma||', 'with', 'a', 'crater', 'in', 'his', 'colon', 'the', 'size', 'of', 'a', 'cutlet', '||period||', 'had', 'to', 'sit', 'him', 'on', 'a', 'cork', 'the', 'eighteen', '||dash||', 'hour', 'flight', 'home', '||exclammark||', '||return||', '||return||', 'kramer:', 'frank', '||comma||', 'now', 'listen', 'to', 'me', '||period||', 'two', 'hundred', 'jewish', 'singles', 'need', 'you', '||period||', 'this', 'is', 'your', 'chance', 'to', 'make', 'it', 'all', 'right', 'again', '||period||', '||return||', '||return||', 'frank:', 'no', '||period||', 'no', '||comma||', "i'll", 'never', 'cook', 'again', '||exclammark||', 'never', '||exclammark||', 'now', 'get', 'out', 'of', 'my', 'house', '||exclammark||', '||exclammark||', 'get', 'out', '||period||', 'go', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'saw', "bania's", 'act', '||questionmark||', '||return||', '||return||', 'abby:', 'he', 'got', 'two', 'minutes', 'into', 'that', 'ovaltine', 'thing', 'and', 'i', 'just', "couldn't", 'take', 'it', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', '||comma||', "it's", 'like', 'getting', 'beaten', 'with', 'a', 'bag', 'of', 'oranges', '||period||', '||return||', '||return||', 'abby:', 'why', 'is', 'he', 'so', 'obsessed', 'with', 'ovaltine', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'just', 'thinks', 'that', 'anything', 'that', 'dissolves', 'in', 'milk', 'is', 'funny', '||period||', '||return||', '||return||', 'abby:', 'anyway', '||comma||', 'cynthia', 'and', 'i', 'got', 'into', 'this', 'big', 'argument', 'afterwards', 'and', 'i', 'think', "it's", 'over', '||period||', '||return||', '||return||', 'jerry:', 'no', 'more', 'mentor', '||questionmark||', '||return||', '||return||', 'abby:', 'looks', 'that', 'way', '||period||', '||return||', '||return||', 'jerry:', 'well', 'at', 'least', 'you', 'and', 'i', 'are', 'okay', 'again', '||period||', '||return||', '||return||', 'abby:', 'actually', 'i', 'was', 'kind', 'of', 'thinking', 'that', 'maybe', 'we', "shouldn't", 'see', 'each', 'other', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'abby:', 'well', "i'm", 'feeling', 'a', 'little', 'disoriented', '||period||', "it's", 'just', 'weird', 'for', 'me', 'not', 'to', 'have', 'an', 'advisor', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'tell', 'you', 'what', 'to', 'do', '||period||', '||return||', '||return||', 'abby:', 'no', '||comma||', "it's", 'more', 'than', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'tell', 'you', 'what', 'to', 'think', '||period||', '||return||', '||return||', 'abby:', 'i', 'need', 'someone', 'i', 'can', 'trust', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'big', 'problem', 'here', '||comma||', 'jerry', '||period||', 'the', 'tapes', 'are', 'worthless', '||period||', '||return||', '||return||', 'jerry:', 'kind', 'of', 'in', 'the', 'middle', 'of', 'something', 'here', '||comma||', 'george', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'abby:', 'i', 'gotta', 'run', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'you', 'feel', 'you', 'really', 'need', 'a', 'mentor', '||period||', '||return||', '||return||', 'abby:', 'i', 'just', 'need', 'someone', 'who', 'can', 'give', 'me', 'some', 'kind', 'of', 'direction', '||period||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', "what's", 'your', 'problem', '||period||', '||return||', '||return||', 'george:', 'no', 'problem', '||period||', '||return||', '||return||', 'eddie:', 'hey', '||comma||', 'i', 'think', 'i', 'got', 'something', 'here', '||period||', 'the', 'bengalese', 'galoshes', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'eddie:', '||leftparen||', 'reading', '||rightparen||', "it's", 'tough', 'keeping', 'your', 'feet', 'dry', 'when', "you're", 'kicking', 'in', 'a', 'skull', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'eddie', '||comma||', 'that', 'might', 'be', 'just', 'a', 'tad', 'harsh', 'for', 'womenswear', '||period||', '||return||', '||return||', 'eddie:', 'well', '||comma||', "i'm", 'not', 'married', 'to', 'it', '||period||', '||return||', '||return||', 'eddie:', 'dewy', 'meadow', '||period||', '||return||', '||return||', 'estelle:', "here's", 'your', 'omelet', '||period||', '||return||', '||return||', 'frank:', "it's", 'dry', '||period||', '||return||', '||return||', 'estelle:', "that's", 'the', 'way', 'i', 'always', 'make', 'it', '||period||', '||return||', '||return||', 'frank:', 'well', 'it', 'sucks', '||period||', '||return||', '||return||', 'estelle:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'frank:', 'your', 'meatloaf', 'is', 'mushy', '||comma||', 'your', 'salmon', 'croquettes', 'are', 'oily', 'and', 'your', 'eggplant', 'parmesan', 'is', 'a', 'disgrace', 'to', 'this', 'house', '||exclammark||', '||return||', '||return||', 'estelle:', 'well', "that's", 'too', 'bad', '||comma||', 'because', "i'm", 'the', 'only', 'one', 'who', 'cooks', 'around', 'here', '||exclammark||', '||return||', '||return||', 'frank:', 'not', 'any', 'more', '||exclammark||', 'gimme', 'that', 'spatula', '||exclammark||', "i'm", 'back', '||comma||', 'baby', '||exclammark||', '||return||', '||return||', 'abby:', 'and', "you're", 'sure', 'with', 'your', 'busy', 'schedule', "you'd", 'have', 'time', 'to', 'take', 'on', 'a', 'protg', '||questionmark||', '||return||', '||return||', 'george:', "i'll", 'make', 'time', '||comma||', 'because', 'abby', '||comma||', 'i', 'was', 'once', 'like', 'you', '||semicolon||', 'wide', '||dash||', 'eyed', '||comma||', 'naive', '||comma||', 'i', "didn't", 'know', 'the', 'first', 'thing', 'about', 'a', 'subject', 'as', 'fundamental', 'as', 'risk', 'management', '||period||', '||return||', '||return||', 'abby:', "i'm", 'not', 'familiar', 'with', 'that', '||comma||', "you'll", 'have', 'to', 'explain', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', 'what', '||comma||', 'why', "don't", 'you', 'read', 'this', 'book', 'and', "let's", 'just', 'see', 'if', 'you', 'can', 'explain', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'abby:', 'alright', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'bania:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hey', 'bania', '||period||', '||return||', '||return||', 'bania:', 'didja', 'hear', 'what', 'happened', '||questionmark||', 'the', 'mentor', 'saw', 'my', 'act', '||period||', 'she', 'dumped', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'bania:', 'maybe', "she's", 'right', '||period||', 'maybe', 'i', 'am', 'a', 'complete', 'hack', '||period||', "i'm", 'the', 'absolute', 'worst', '||period||', 'the', 'worst', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'just', 'that', 'you', 'got', 'so', 'many', 'things', 'with', 'the', 'milk', '||period||', 'you', 'got', 'that', 'bosco', 'bit', 'then', 'you', 'got', 'your', "nestl's", 'quik', 'bit', '||comma||', 'by', 'the', 'time', 'you', 'get', 'to', 'ovaltine', '||dash||', '||dash||', '||return||', '||return||', 'bania:', 'you', 'think', 'you', 'can', 'give', 'me', 'a', 'hand', 'with', 'my', 'material', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'frank:', 'you', 'still', 'need', 'a', 'cook', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'come', 'on', 'in', '||comma||', 'frank', '||period||', '||return||', '||return||', 'frank:', 'ya', 'got', 't', '||dash||', 'fal', '||questionmark||', '||return||', '||return||', 'kramer:', 'keflon', '||period||', '||return||', '||return||', 'frank:', 'no', '||exclammark||', 'follow', 'me', '||period||', '||return||', '||return||', 'bania:', '||leftparen||', 'reading', '||rightparen||', 'why', 'do', 'they', 'call', 'it', 'ovaltine', '||questionmark||', 'the', 'mug', 'is', 'round', '||period||', 'the', 'jar', 'is', 'round', '||period||', 'they', 'should', 'call', 'it', 'round', 'tine', '||period||', "that's", 'gold', '||comma||', 'jerry', '||exclammark||', 'gold', '||exclammark||', '||return||', '||return||', 'elaine:', "let's", 'just', 'replace', '||quotemark||', 'hail', 'of', 'shrapnel', '||quotemark||', 'and', '||quotemark||', 'scar', 'tissue', '||quotemark||', 'with', '||quotemark||', 'string', 'of', 'pearls', '||quotemark||', 'and', '||quotemark||', 'raspberry', 'scones', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'george', 'costanza', 'is', 'your', 'mentor', '||questionmark||', '||return||', '||return||', 'abby:', 'yeah', '||comma||', "he's", 'great', '||exclammark||', 'i', 'am', 'learning', 'so', 'much', '||period||', '||return||', '||return||', 'jerry:', 'about', 'what', '||questionmark||', 'how', 'to', 'calculate', 'five', 'percent', 'of', 'a', 'restaurant', 'check', '||questionmark||', '||return||', '||return||', 'abby:', 'you', 'know', 'what', 'your', 'problem', 'is', '||questionmark||', 'you', 'just', 'have', 'no', 'respect', 'for', 'the', 'mentor/mentor', 'relationship', '||period||', '||return||', '||return||', 'jerry:', 'as', 'a', 'matter', 'of', 'fact', '||comma||', 'i', 'happen', 'to', 'have', 'a', 'protg', 'of', 'my', 'own', '||period||', '||return||', '||return||', 'abby:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'mister', 'kenneth', 'bania', '||period||', '||return||', '||return||', 'abby:', 'bania', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'mentor', 'this', 'kid', 'to', 'the', 'top', '||period||', '||return||', '||return||', 'abby:', 'huh', '||comma||', 'well', '||comma||', 'i', "don't", 'think', 'i', 'want', 'to', 'date', 'a', 'mentor', 'whose', 'protg', 'is', 'a', 'hack', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'think', 'i', 'want', 'to', 'date', 'a', 'protg', 'whose', 'mentor', 'is', 'a', 'costanza', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', 'how', 'we', 'did', 'it', '||comma||', 'but', "there's", 'some', 'kind', 'of', 'chemistry', 'between', 'us', '||comma||', 'we', 'turned', 'out', 'one', 'hell', 'of', 'a', 'catalog', '||period||', '||return||', '||return||', 'eddie:', 'cool', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'ed', '||comma||', 'let', 'me', 'ask', 'you', 'something', '||period||', "what's", 'with', 'the', 'fatigues', 'and', 'all', 'the', 'psychotic', 'imagery', '||questionmark||', 'huh', '||questionmark||', '||return||', '||return||', 'eddie:', 'i', "don't", 'want', 'to', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', "don't", 'be', 'a', 'baby', '||period||', '||return||', '||return||', 'eddie:', 'i', 'went', 'out', 'on', 'a', 'couple', 'of', 'dates', 'with', 'this', 'woman', '||comma||', 'i', 'thought', 'she', 'really', 'liked', 'me', '||comma||', 'and', 'then', 'things', 'kind', 'of', 'cooled', 'off', '||period||', '||return||', '||return||', 'elaine:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'eddie:', 'well', "it's", 'tough', 'meeting', 'somebody', 'you', 'like', '||comma||', 'let', 'alone', 'somebody', 'jewish', '||period||', '||return||', '||return||', 'elaine:', 'mm', '||period||', 'this', 'food', 'is', 'fantastic', '||period||', '||return||', '||return||', 'jerry:', 'have', 'you', 'tried', 'the', 'hamentashen', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'get', 'off', 'the', 'kishkas', '||period||', '||return||', '||return||', 'bania:', 'hey', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'bania', '||questionmark||', '||return||', '||return||', 'bania:', 'i', 'just', 'stopped', 'by', 'to', 'thank', 'you', '||period||', 'that', 'risk', 'management', 'stuff', 'you', 'wrote', 'for', 'me', '||questionmark||', "it's", 'killer', '||exclammark||', '||return||', '||return||', 'jerry:', 'risk', 'management', '||questionmark||', '||return||', '||return||', 'bania:', 'aw', '||comma||', "it's", 'gold', '||comma||', 'jerry', '||exclammark||', 'gold', '||exclammark||', 'i', 'got', 'all', 'these', 'corporate', 'gigs', 'and', 'even', 'cynthia', 'took', 'me', 'back', '||period||', '||return||', '||return||', 'woman:', 'so', 'you', 'went', 'from', 'the', 'mailroom', 'to', 'the', 'director', 'of', 'corporate', 'development', 'in', 'two', 'days', '||questionmark||', '||return||', '||return||', 'eddie:', "that's", 'right', '||period||', '||return||', '||return||', 'woman:', 'how', 'much', 'are', 'they', 'paying', 'you', '||questionmark||', "i'll", 'double', 'it', '||period||', '||return||', '||return||', 'kramer:', 'ya', 'know', 'these', 'latkes', 'are', 'going', 'like', 'hotcakes', '||period||', '||return||', '||return||', 'frank:', "where's", 'the', 'powdered', 'sugar', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', 'frank', '||comma||', 'you', 'could', 'take', 'a', 'break', '||period||', '||return||', '||return||', 'frank:', 'no', 'breaks', '||period||', 'i', 'fell', 'reborn', '||comma||', "i'm", 'like', 'a', 'phoenix', 'rising', 'from', 'arizona', '||period||', '||return||', '||return||', 'elaine:', "you're", 'quitting', '||questionmark||', '||return||', '||return||', 'eddie:', 'i', "can't", 'churn', 'out', 'that', 'pointless', 'drivel', 'any', 'more', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', "can't", 'quit', '||comma||', "you're", 'all', "i've", 'got', '||period||', 'i', 'need', 'you', '||exclammark||', '||return||', '||return||', 'voice:', 'our', 'next', 'speaker', 'is', 'george', 'costanza', 'on', 'the', 'subject', 'of', 'risk', 'management', '||period||', '||return||', '||return||', 'george:', 'ovaltine', '||period||', 'have', 'you', 'ever', 'had', 'this', 'stuff', '||questionmark||', 'why', 'is', 'it', 'called', 'ovaltine', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'should', 'call', 'it', 'round', 'tine', '||period||', 'you', 'know', 'what', "i'm", 'talking', 'about', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'proudly', '||comma||', 'to', 'the', 'man', 'seated', 'beside', 'him', '||rightparen||', "he's", 'my', 'protg', '||period||', '||return||', '||return||', 'frank:', 'noooo', '||exclammark||', '||exclammark||', '||exclammark||', "don't", 'eat', 'it', '||exclammark||', 'no', 'good', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'have', 'you', 'seen', 'all', 'these', 'new', 'commercials', 'for', 'indigestion', 'drugs', '||questionmark||', 'pepcid', 'ac', '||comma||', 'tagemat', 'hb', '||period||', '||return||', '||return||', 'elaine:', 'ugh', '||comma||', 'the', 'whole', "country's", 'sick', 'to', 'their', 'stomach', '||period||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'you', 'know', "you're", 'supposed', 'to', 'take', 'these', 'things', 'before', 'you', 'get', 'sick', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', '||comma||', 'a', "'bit'", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', "'cos", "i'm", 'not', 'in', 'the', 'mood', '||period||', '||return||', '||return||', 'jerry:', "we're", 'just', 'talking', '||period||', 'is', 'this', 'not', 'the', 'greatest', 'marketing', 'ploy', 'ever', '||questionmark||', 'if', 'you', 'feel', 'good', '||comma||', "you're", 'supposed', 'to', 'take', 'one', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'know', 'that', 'tone', '||period||', 'this', 'is', 'a', 'bit', '||period||', '||return||', '||return||', 'jerry:', "they've", 'opened', 'up', 'a', 'whole', 'new', 'market', '||period||', 'medication', 'for', 'the', 'well', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'tired', '||rightparen||', 'alright', '||comma||', 'are', 'you', 'done', 'with', 'your', 'little', 'amusement', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hopeful', '||rightparen||', 'then', 'you', 'admit', 'it', 'was', 'amusing', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'was', 'okay', '||comma||', 'but', 'move', 'the', "'medication", 'for', 'the', "well'", 'to', 'the', 'front', '||comma||', 'and', 'hit', 'the', 'word', "'good'", 'harder', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'great', '||period||', 'thanks', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'your', 'firm', 'designed', 'all', 'the', 'furniture', 'in', 'here', '||questionmark||', '||return||', '||return||', 'brett:', 'we', 'manufacture', 'it', '||period||', 'the', 'original', 'designs', 'are', 'by', 'karl', 'farbman', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'if', 'she', 'knows', '||rightparen||', 'oh', '||comma||', 'farbman', '||period||', '||return||', '||return||', 'brett:', 'you', 'know', 'farbman', '||questionmark||', '||return||', '||return||', 'elaine:', 'mm', '||comma||', 'love', 'farbman', '||period||', '||return||', '||return||', 'brett:', 'most', 'people', 'go', 'their', 'whole', 'lives', 'without', 'sitting', 'in', 'a', 'farbman', '||period||', '||return||', '||return||', 'elaine:', 'wuh', '||comma||', 'if', 'you', 'call', 'that', 'living', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'ahaha', '||period||', '||return||', '||return||', 'elaine:', "wouldn't", 'it', 'be', 'great', 'if', 'farbman', 'designed', 'shoes', '||questionmark||', '||return||', '||return||', 'elaine:', 'brett', '||questionmark||', "don't", 'you', 'think', 'that', 'would', 'be', 'great', '||questionmark||', '||return||', '||return||', 'elaine:', 'brett', '||questionmark||', '||return||', '||return||', 'brett:', '||leftparen||', 'still', 'staring', 'off', '||rightparen||', 'after', 'the', 'song', '||comma||', 'babe', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'brett:', 'the', 'song', '||period||', '||return||', '||return||', 'jerry:', 'so', 'when', 'do', 'i', 'meet', 'this', 'jerk', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'not', 'a', 'jerk', '||comma||', 'jer', '||period||', 'he', 'only', 'works', 'with', 'karl', 'farbman', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dismissive', '||rightparen||', 'i', 'dunno', '||comma||', 'some', 'designer', '||period||', 'anyway', '||comma||', 'brett', 'is', 'so', 'generous', '||comma||', 'and', 'sensitive', '||period||', 'last', 'night', 'he', 'was', 'moved', 'just', 'listening', 'to', 'a', 'song', '||period||', '||return||', '||return||', 'jerry:', 'what', 'song', '||questionmark||', '||return||', '||return||', 'elaine:', 'desperado', '||period||', '||return||', '||return||', 'jerry:', 'desperado', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'and', "you're", 'still', 'dating', 'him', '||questionmark||', 'i', 'tell', 'you', 'who', 'sounds', 'a', 'little', 'desperado', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'toward', 'the', 'guy', '||rightparen||', 'see', 'that', 'salesman', '||comma||', 'twirling', 'that', 'umbrella', '||period||', '||return||', '||return||', 'elaine:', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'invented', 'that', '||period||', '||return||', '||return||', 'elaine:', 'that', '||comma||', 'had', 'to', 'be', 'invented', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'i', 'started', 'out', 'as', 'a', 'comedian', '||comma||', 'i', 'sold', 'umbrellas', '||period||', 'it', 'was', 'my', 'idea', 'to', 'twirl', 'it', '||comma||', 'to', 'attract', 'customers', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'skeptical', '||rightparen||', 'oh', 'hoh', '||comma||', 'really', '||questionmark||', 'well', '||comma||', 'why', "don't", 'we', 'ask', 'him', 'about', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'excuse', 'me', '||period||', 'hey', '||comma||', 'how', 'you', 'doing', '||period||', 'uhm', '||comma||', 'my', '||comma||', 'uh', '||comma||', 'friend', 'here', 'says', 'that', 'he', 'invented', 'that', 'little', 'twirl', "you're", 'doing', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'please', '||comma||', 'it', 'was', 'a', 'long', 'time', 'ago', '||period||', 'the', 'man', "doesn't", 'want', 'a', 'history', 'lesson', '||period||', '||return||', '||return||', 'clicky:', 'teddy', 'padillac', 'came', 'up', 'with', 'this', 'twirl', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'at', 'jerry', '||rightparen||', 'ohh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'teddy', 'padillac', '||period||', 'i', 'worked', 'with', 'him', 'on', 'forty', '||dash||', 'eighth', 'and', 'sixth', '||period||', '||return||', '||return||', 'clicky:', 'yeah', '||comma||', "that's", 'where', 'he', 'come', 'up', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'in', 'his', 'dreams', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'can', 'we', '||leftparen||', 'glances', 'at', 'her', 'watch', '||rightparen||', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'clicky', '||rightparen||', 'by', 'the', 'way', '||comma||', "you're", 'doing', 'it', 'too', 'fast', '||period||', "you'll", 'disorient', 'the', 'customers', '||period||', '||return||', '||return||', 'jerry:', "it's", 'the', 'twirling', 'that', 'dazzles', 'the', 'eye', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pulls', 'a', 'face', '||rightparen||', 'i', 'find', 'it', 'disorienting', '||period||', 'who', 'buys', 'an', 'umbrella', 'anyway', '||questionmark||', 'y', '||period||', '||period||', 'you', 'get', "'em", 'for', 'free', 'in', 'the', 'coffee', 'shop', 'in', 'the', 'metal', 'cans', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'if', 'speaking', 'to', 'a', 'moron', '||rightparen||', 'those', 'belong', 'to', 'people', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'well', '||period||', '||leftparen||', 'proffers', 'the', 'envelope', '||rightparen||', 'this', 'was', 'downstairs', 'for', 'you', '||period||', 'ker', '||dash||', 'ching', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'the', 'envelope', '||rightparen||', 'oh', 'no', '||comma||', 'not', 'more', 'checks', '||period||', "they're", 'coming', 'faster', 'than', 'i', 'can', 'sign', "'em", '||period||', '||return||', '||return||', 'george:', 'what', 'checks', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', "didn't", 'hear', '||questionmark||', "jerry's", 'a', 'big', 'star', 'in', 'japan', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'why', '||period||', "there's", 'a', 'one', '||dash||', 'second', 'clip', 'of', 'me', 'in', 'the', 'opening', 'credits', 'of', 'some', 'japanese', 'comedy', 'show', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'the', 'super', 'terrific', 'happy', 'hour', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'opening', 'the', 'envelope', 'and', 'pulling', 'out', 'a', 'stack', 'of', 'checks', '||rightparen||', 'they', 'run', 'it', 'all', 'the', 'time', '||comma||', 'and', 'now', "i'm", 'starting', 'to', 'get', 'all', 'these', 'royalty', 'checks', '||period||', '||return||', '||return||', 'george:', 'look', 'at', 'all', 'of', 'those', '||exclammark||', "you're", 'rich', '||exclammark||', '||return||', '||return||', 'jerry:', 'naw', '||period||', 'each', 'one', 'is', 'for', 'like', 'twelve', 'cents', '||period||', "it's", 'barely', 'worth', 'the', 'pain', 'in', 'my', 'hand', 'to', 'sign', "'em", '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||comma||', 'you', 'need', 'any', 'new', 'furniture', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'getting', 'a', 'bottle', 'of', 'water', 'out', 'of', 'the', 'fridge', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', "elaine's", 'new', 'boyfriend', '||comma||', 'you', 'know', '||period||', "he's", 'giving', 'me', 'this', 'oversize', 'chest', 'of', 'drawers', '||period||', "it's", 'a', 'farbman', '||period||', '||return||', '||return||', 'george:', "he's", 'giving', 'you', 'furniture', '||questionmark||', 'who', 'is', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'who', 'are', 'any', 'of', 'her', 'losers', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'dryly', '||rightparen||', "you're", 'on', 'that', 'list', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'i', 'gotta', 'go', 'home', 'and', 'open', 'up', 'with', 'the', 'house', 'for', 'the', 'carpet', 'cleaners', '||period||', 'you', 'know', "they're", 'doing', 'my', 'whole', 'place', 'for', 'twenty', '||dash||', 'five', 'dollars', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'not', 'the', 'sunshine', 'carpet', 'cleaners', '||questionmark||', '||return||', '||return||', 'ego:', 'yeah', '||comma||', 'you', 'heard', 'of', "'em", '||questionmark||', '||return||', '||return||', 'kramer:', "they're", 'a', 'crazy', 'religious', 'cult', '||period||', 'the', 'carpet', 'cleaning', 'is', 'just', 'a', 'means', 'for', 'them', 'to', 'get', 'into', 'your', 'apartment', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', 'for', 'a', 'twenty', '||dash||', 'five', 'dollar', 'cleaning', '||comma||', 'i', 'can', 'listen', 'to', 'some', 'pointless', 'blather', '||period||', '||return||', '||return||', 'jerry:', 'i', 'do', 'it', '||comma||', "i'm", 'not', 'even', 'getting', 'the', 'cleaning', '||period||', '||return||', '||return||', 'jerry:', 'signed', 'over', 'a', 'hundred', 'checks', 'this', 'morning', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||comma||', 'twelve', 'dollars', '||period||', '||return||', '||return||', 'mr', 'oh:', 'excuse', 'me', '||period||', 'would', 'you', 'take', 'picture', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'takes', 'camera', '||rightparen||', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'ask', 'this', 'guy', 'something', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'umbrella', 'guy', '||rightparen||', 'hey', '||period||', 'nice', 'twirl', 'you', 'got', 'there', '||period||', 'you', 'know', 'who', 'invented', 'that', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'tourists', '||rightparen||', 'hey', '||comma||', 'are', 'you', 'folks', 'from', 'japan', '||period||', '||return||', '||return||', 'mr', 'yamaguchi:', 'hai', '||period||', '||return||', '||return||', 'mr', 'oh:', 'yes', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'points', 'over', 'to', 'jerry', '||rightparen||', 'you', 'recognise', 'that', 'mug', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'the', 'funny', 'face', 'that', 'greets', 'you', 'at', 'the', 'beginning', 'of', 'the', 'super', 'terrific', 'happy', 'hour', '||period||', '||return||', '||return||', 'mr', 'oh:', 'ahh', '||comma||', 'super', 'terrific', 'happy', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'yeah', '||period||', 'yeah', '||comma||', "that's", 'him', '||period||', '||return||', '||return||', 'mr', 'oh:', 'what', 'is', 'he', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'know', '||period||', 'but', 'something', 'super', 'terrific', '||comma||', "i'm", 'sure', '||period||', '||return||', '||return||', 'mr', 'oh:', "he's", 'funny', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'very', 'funny', '||period||', 'and', 'it', "wouldn't", 'be', 'impolite', 'to', 'laugh', 'at', 'his', 'antics', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'yeah', '||comma||', "that's", 'it', '||period||', 'because', 'everybody', 'laughs', 'at', 'jerry', 'here', 'in', 'america', '||period||', '||return||', '||return||', 'crew', 'leader:', '||leftparen||', 'calling', 'to', 'george', '||rightparen||', "we're", 'pretty', 'much', 'finished', '||period||', '||return||', '||return||', 'crew', 'leader:', "there's", 'just', 'one', 'more', 'thing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', 'expectantly', '||rightparen||', 'here', 'it', 'comes', '||period||', '||return||', '||return||', 'crew', 'leader:', '||leftparen||', 'clears', 'throat', '||rightparen||', 'you', 'forgot', 'to', 'sign', 'your', 'check', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'signs', '||rightparen||', 'sorry', '||period||', '||leftparen||', 'expectant', '||rightparen||', "you're", 'sure', '||comma||', 'uh', '||comma||', 'there', "isn't", 'anything', 'else', '||questionmark||', '||return||', '||return||', 'crew', 'leader:', '||leftparen||', 'flat', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'let', 'down', '||rightparen||', 'so', '||comma||', "that's", 'it', '||questionmark||', '||return||', '||return||', 'crew', 'leader:', 'unless', 'you', 'need', 'a', 'receipt', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'melancholy', '||rightparen||', 'i', 'wish', 'that', 'was', 'all', 'needed', '||period||', 'life', 'can', 'be', 'so', 'confusing', '||period||', 'i', '||period||', '||period||', "i'm", 'searching', 'for', 'answers', '||comma||', 'anywhere', '||period||', '||return||', '||return||', 'crew', 'leader:', '||leftparen||', 'flat', '||rightparen||', 'good', 'luck', 'with', 'that', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', "what's", 'with', 'the', 'claw', '||questionmark||', '||return||', '||return||', 'jerry:', 'super', 'terrific', 'carpal', 'tunnel', 'syndrome', '||period||', '||return||', '||return||', 'brett:', '||leftparen||', 'to', 'elaine', '||rightparen||', "there's", 'no', 'sign', 'of', 'kramer', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'brett', '||period||', '||leftparen||', 'indicating', '||rightparen||', 'this', 'is', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'brett:', "that's", 'very', 'funny', '||period||', 'elaine', 'told', 'me', 'you', 'were', 'some', 'kinda', 'comedian', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "i'm", 'one', 'kind', '||period||', '||return||', '||return||', 'elaine:', 'have', 'you', 'seen', 'the', 'chest', 'of', 'drawers', 'that', 'brett', 'gave', 'to', 'kramer', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'fleckman', '||period||', '||return||', '||return||', 'brett:', 'farbman', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'elaine:', 'you', 'gotta', 'see', "'em", '||period||', 'beautiful', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'interested', '||rightparen||', 'oh', '||comma||', "i'm", 'sure', 'they', 'are', '||period||', '||return||', '||return||', 'brett:', "i'd", 'be', 'happy', 'to', 'get', 'you', 'some', 'if', "that's", 'what', "you're", 'driving', 'at', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', "i'm", 'fine', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'brett:', "don't", 'worry', '||period||', "it's", 'no', 'charge', 'to', 'you', '||period||', '||return||', '||return||', 'brett:', 'looks', 'like', 'what', 'you', 'really', 'need', 'is', 'a', 'decent', 'desk', 'for', 'writing', 'your', 'skits', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quiet', 'annoyance', '||rightparen||', 'i', "don't", 'write', 'skits', '||period||', '||return||', '||return||', 'brett:', '||leftparen||', 'walking', 'back', 'to', 'elaine', '||rightparen||', 'well', '||comma||', 'of', 'course', 'you', "don't", '||period||', 'you', "don't", 'have', 'a', 'proper', 'workstation', '||period||', "i'll", 'fax', 'you', 'over', 'my', 'catalogue', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||period||', 'brett', '||comma||', 'uhm', '||comma||', 'jerry', "doesn't", 'have', 'a', 'fax', 'machine', '||period||', '||return||', '||return||', 'brett:', '||leftparen||', 'quiet', '||rightparen||', 'oops', '||period||', '||return||', '||return||', 'brett:', 'well', '||comma||', "i'm", 'sure', "things'll", 'pick', 'up', 'for', 'you', 'soon', '||period||', 'elaine', '||comma||', 'maybe', 'we', 'should', 'get', 'going', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'jerry', '||comma||', 'you', 'wanna', 'join', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'where', 'you', 'going', '||questionmark||', 'the', 'coffee', 'shop', '||questionmark||', '||return||', '||return||', 'brett:', '||leftparen||', 'scoff', '||rightparen||', 'coffee', 'shop', '||questionmark||', 'i', 'think', 'we', 'can', 'do', 'a', 'little', 'better', 'than', 'that', '||period||', 'you', 'look', 'like', 'you', 'could', 'use', 'a', 'solid', 'meal', 'at', 'a', 'real', 'restaurant', '||period||', '||return||', '||return||', 'jerry:', 'you', 'look', 'like', 'you', 'could', 'use', 'a', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'warning', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reads', '||rightparen||', 'three', 'hundred', 'dollars', '||period||', 'hey', '||comma||', 'mr', 'oh', '||comma||', 'how', 'much', 'would', 'these', 'run', 'you', 'in', 'tokyo', '||questionmark||', '||return||', '||return||', 'mr', 'oh:', '||leftparen||', 'thinks', 'for', 'a', 'second', '||rightparen||', 'ahh', '||comma||', 'about', '||comma||', 'uh', '||comma||', 'thirty', 'thousand', 'yen', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shocked', '||rightparen||', 'thirty', 'thousand', '||questionmark||', '||exclammark||', 'these', 'are', 'practically', 'free', '||period||', '||return||', '||return||', 'kramer:', 'giddyup', '||period||', "you're", 'a', 'cowboy', 'now', '||period||', '||return||', '||return||', 'brett:', 'i', 'feel', 'terrible', 'about', 'your', 'friend', 'jerry', '||period||', "he's", 'upset', 'that', 'i', 'gave', 'kramer', 'that', 'chest', 'of', 'drawers', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'why', "d'you", 'think', "he's", 'upset', '||questionmark||', '||return||', '||return||', 'brett:', 'how', 'could', 'he', 'not', 'be', '||questionmark||', 'living', 'in', 'that', 'cramped', 'little', 'apartment', '||period||', 'and', 'outdated', 'furniture', '||comma||', 'so', 'terribly', '||period||', '||period||', '||period||', 'un', '||dash||', 'karl', 'farbman', '||dash||', 'like', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'romantic', '||rightparen||', "we're", 'not', 'gonna', 'talk', 'about', 'karl', 'farbman', 'all', 'night', '||comma||', 'are', 'we', '||questionmark||', '||return||', '||return||', 'brett:', '||leftparen||', 'smiling', '||rightparen||', 'i', 'hope', 'not', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'surprised', '||rightparen||', 'brett', '||questionmark||', 'everything', 'alright', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'worried', '||rightparen||', 'brett', '||exclammark||', 'what', 'is', 'it', '||questionmark||', 'is', 'there', 'someone', 'outside', '||questionmark||', '||return||', '||return||', 'brett:', 'elaine', '||comma||', 'the', 'song', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'relieved', '||rightparen||', 'oh', '||period||', 'oh', '||comma||', 'oh', '||comma||', 'phew', '||period||', 'you', 'know', '||comma||', 'for', 'a', 'minute', 'there', 'i', 'thought', 'it', 'was', 'like', 'that', 'urban', 'legend', 'about', 'the', 'guy', 'with', 'the', 'hook', "who's", 'hanging', 'on', 'the', 'fender', '||period||', '||period||', '||period||', '||return||', '||return||', 'brett:', 'elaine', '||comma||', 'could', 'you', 'just', 'not', 'talk', 'for', 'one', 'minute', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'apologetic', '||comma||', 'silently', 'mouthed', '||rightparen||', 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'no', 'spiel', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', 'not', 'a', 'peep', '||period||', 'they', 'just', 'cleaned', 'the', 'carpets', 'and', 'left', '||period||', 'call', 'themselves', 'a', 'cult', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "you're", 'angry', 'that', 'this', 'bizarre', 'carpet', 'cabal', 'made', 'no', 'attempt', 'to', 'abduct', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'they', "could've", 'at', 'least', 'tried', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'maybe', 'they', 'thought', 'you', 'looked', 'too', 'smart', 'to', 'be', 'brainwashed', '||questionmark||', '||return||', '||return||', 'george:', 'please', '||period||', '||return||', '||return||', 'jerry:', 'too', 'dumb', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'impressed', '||rightparen||', 'well', '||exclammark||', 'mack', 'is', 'back', 'in', 'town', '||exclammark||', 'nice', 'duds', '||period||', '||return||', '||return||', 'kramer:', 'konichi', '||dash||', 'wa', '||period||', 'yeah', '||comma||', "it's", 'a', 'gift', 'from', 'my', 'japanese', 'friends', '||period||', '||leftparen||', 'sits', 'beside', 'jerry', '||rightparen||', "they're", 'known', 'as', 'gift', '||dash||', 'givers', '||period||', 'and', 'tonight', "we're", 'going', 'dancing', 'at', 'the', 'rainbow', 'room', '||period||', '||return||', '||return||', 'jerry:', 'sounds', 'like', "you're", 'throwing', 'a', 'lot', 'of', 'their', 'money', 'around', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'jerry', '||comma||', "they're", 'japanese', '||period||', 'i', 'mean', '||comma||', 'that', 'tv', 'you', 'watch', '||comma||', 'that', 'sushi', 'you', 'eat', '||comma||', 'i', 'mean', '||comma||', 'even', 'that', 'kimono', 'you', 'wear', '||period||', 'where', 'to', 'you', 'think', 'all', 'that', 'money', 'goes', '||comma||', 'hmm', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', "how'd", 'you', 'hook', 'up', 'with', 'these', 'guys', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'they', 'recognised', 'jerry', 'from', 'the', 'super', 'terrific', 'happy', 'hour', '||period||', 'see', 'now', '||comma||', 'you', 'should', 'be', 'doing', 'your', 'own', 'show', 'in', 'japan', '||period||', 'now', '||comma||', 'they', 'get', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'of', 'show', 'am', 'i', 'gonna', 'do', 'in', 'japan', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'alright', '||comma||', "what'd", 'you', 'do', 'with', 'that', 'pilot', 'you', 'did', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||rightparen||', 'yeah', '||comma||', 'the', 'pilot', '||exclammark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||comma||', 'i', 'think', 'that', 'had', 'marvellous', 'production', 'values', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'enthusiastic', '||rightparen||', 'and', '||comma||', 'you', 'know', '||comma||', 'i', 'do', 'a', 'lotta', 'business', 'with', 'japanese', 'tv', '||period||', 'they', 'broadcast', 'a', 'lot', 'of', 'american', 'baseball', '||period||', 'they', 'got', 'an', 'office', 'here', 'in', 'new', 'york', '||exclammark||', '||return||', '||return||', 'jerry:', 'forget', 'it', '||exclammark||', 'the', 'pilot', 'was', 'awful', '||period||', 'it', 'failed', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', 'it', 'failed', 'here', '||exclammark||', 'because', '||comma||', 'here', '||comma||', 'every', 'time', 'you', 'turn', 'on', 'a', 'tv', '||comma||', 'all', 'you', 'see', 'is', 'four', 'morons', 'sitting', 'round', 'an', 'apartment', '||comma||', 'whining', 'about', 'their', 'dates', '||exclammark||', '||return||', '||return||', 'kramer:', 'george', 'is', 'right', '||comma||', 'jerry', '||period||', 'see', '||comma||', 'here', '||comma||', "you're", 'just', 'another', 'apple', '||comma||', 'but', 'in', 'japan', '||comma||', "you're", 'an', 'exotic', 'fruit', '||period||', 'like', 'an', 'orange', '||period||', 'which', 'is', 'rare', 'there', '||period||', '||return||', '||return||', 'tv', 'jerry:', 'you', 'had', 'a', 'date', '||questionmark||', 'you', 'went', 'out', 'with', 'my', 'butler', '||questionmark||', '||exclammark||', 'who', 'said', 'you', 'could', 'go', 'out', 'with', 'my', 'butler', '||questionmark||', '||exclammark||', '||return||', '||return||', 'tv', 'elaine:', 'well', '||comma||', 'why', 'do', 'i', 'need', 'your', 'permission', '||questionmark||', '||return||', '||return||', 'tv', 'jerry:', 'because', "he's", 'my', 'butler', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'eager', '||rightparen||', 'so', '||questionmark||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'executive', '1:', "we're", 'bit', 'confused', '||period||', 'why', 'was', 'this', 'man', "jerry's", 'butler', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||period||', 'you', 'see', '||comma||', 'the', 'man', 'who', 'was', 'the', 'butler', '||comma||', 'uh', '||comma||', 'had', 'gotten', 'into', 'a', 'car', 'accident', 'with', 'jerry', '||comma||', 'and', 'because', 'he', "didn't", 'have', 'any', 'insurance', '||comma||', 'the', 'judge', 'decreed', 'that', 'the', 'man', 'become', "jerry's", 'butler', '||period||', '||return||', '||return||', 'executive', '1:', 'is', 'this', 'customary', 'in', 'your', 'legal', 'system', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', "that's", 'what', 'makes', 'it', 'such', 'a', 'humorous', 'situation', '||period||', '||return||', '||return||', 'executive', '1:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'are', 'you', 'following', 'any', 'of', 'this', '||questionmark||', '||return||', '||return||', 'executive', '2:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', "i'm", 'still', 'trying', 'to', 'figure', 'out', 'why', 'they', 'gave', 'us', 'a', 'bag', 'of', 'oranges', '||period||', '||return||', '||return||', 'executive', '1:', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', "i'm", 'sorry', '||period||', "i'm", 'sure', 'mr', 'seinfeld', 'is', 'very', 'funny', 'to', 'americans', '||comma||', 'but', "i'm", 'not', 'sure', 'this', 'butler', 'show', 'would', 'work', 'in', 'japan', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'i', 'disagree', '||period||', "you've", '||comma||', 'uh', '||comma||', "you've", 'been', 'living', 'in', 'america', 'too', 'long', '||period||', '||leftparen||', 'indicates', 'the', 'bag', 'of', 'oranges', '||rightparen||', "you've", 'forgotten', 'what', "it's", 'like', 'to', 'have', 'no', 'oranges', '||period||', '||return||', '||return||', 'executive', '1:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'again', 'with', 'the', 'oranges', '||return||', '||return||', 'jerry:', '||leftparen||', 'flexing', 'his', 'fingers', '||rightparen||', 'sorry', '||period||', 'my', 'hand', 'is', 'numb', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'positive', '||rightparen||', 'yes', '||period||', 'from', 'endorsing', 'checks', 'for', 'the', 'super', 'terrific', 'happy', 'hour', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'executive', '1:', 'you', 'must', 'go', 'now', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'i', 'think', "i'm", 'on', 'the', 'outs', 'with', 'brett', '||period||', 'i', 'got', 'shushed', 'during', 'desperado', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'throws', 'out', 'his', 'hands', '||rightparen||', 'what', 'does', 'he', 'listen', 'to', '||questionmark||', 'the', 'all', 'desperado', 'station', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'is', 'just', 'in', 'his', 'own', 'world', 'when', 'he', 'hears', 'that', 'song', '||period||', "it's", 'like', '||comma||', "i'm", 'sitting', 'there', 'in', 'the', 'car', '||comma||', 'and', "he's", '||period||', '||period||', 'out', 'riding', 'fences', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'what', 'you', 'need', 'is', 'a', 'song', 'you', 'can', 'share', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||period||', "you're", 'right', '||period||', 'we', 'need', 'to', 'find', "'our'", 'song', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'so', '||comma||', 'is', 'there', 'any', 'song', 'that', 'you', 'feel', 'very', 'strongly', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'points', '||rightparen||', 'i', 'like', 'witchy', 'woman', '||period||', '||return||', '||return||', 'jerry:', 'witchy', 'woman', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'witchy', 'woman', '||period||', '||leftparen||', 'sings', '||rightparen||', "'ooo", '||dash||', 'ooh', '||comma||', 'wit', '||dash||', 'chay', "woman'", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'it', '||rightparen||', 'ahh', '||period||', 'wit', '||dash||', 'chay', 'woman', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'man', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'how', 'was', 'the', 'rainbow', 'room', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'well', '||comma||', 'we', '||comma||', 'uh', '||comma||', 'we', 'had', 'to', 'leave', 'early', '||period||', 'there', 'was', 'a', '||comma||', 'uh', '||comma||', 'slight', 'monetary', 'discrepancy', 'regarding', 'the', 'bill', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'listen', '||comma||', 'uh', '||comma||', 'can', 'i', 'borrow', 'some', 'pillows', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'yeah', '||comma||', 'well', '||comma||', 'uh', '||comma||', 'my', 'japanese', "friends're", 'gonna', 'stay', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'they', 'all', 'had', 'suites', 'at', 'the', 'plaza', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'sorry', '||comma||', 'jerry', '||comma||', 'we', 'all', "don't", 'have', 'checks', 'rolling', 'in', 'like', 'you', 'do', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'about', 'all', 'that', 'money', 'from', 'the', 'kimonos', 'i', 'wear', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'they', 'ran', 'out', 'of', 'it', '||period||', 'manhattan', 'can', 'be', 'quite', 'pricey', '||period||', 'even', 'with', 'fifty', 'thousand', 'yen', '||period||', '||return||', '||return||', 'elaine:', 'fifty', 'thousand', 'yen', '||questionmark||', "isn't", 'that', 'only', 'a', 'few', 'hundred', 'dollars', '||questionmark||', '||return||', '||return||', 'kramer:', 'evidently', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'tell', 'brett', 'that', 'his', 'chest', 'of', 'drawers', 'are', 'a', 'big', 'hit', '||period||', 'my', 'guests', 'are', 'very', 'comfortable', 'in', 'them', '||period||', '||return||', '||return||', 'elaine:', 'in', 'them', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'have', 'them', 'sleeping', 'in', 'drawers', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'have', 'you', 'ever', 'seen', 'the', 'business', 'hotels', 'in', 'tokyo', '||questionmark||', 'they', 'sleep', 'in', 'tiny', 'stacked', 'cubicles', 'all', 'the', 'time', '||period||', 'they', 'feel', 'right', 'at', 'home', '||period||', '||return||', '||return||', 'jerry:', 'this', 'has', "'international", "incident'", 'written', 'all', 'over', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiling', '||rightparen||', 'oh', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'goodnight', '||comma||', 'mr', 'tanaka', '||period||', '||return||', '||return||', 'mr', 'tanaka:', 'goodnight', '||period||', '||return||', '||return||', 'kramer:', 'goodnight', '||comma||', 'mr', 'oh', '||period||', '||return||', '||return||', 'mr', 'oh:', '||leftparen||', 'sits', 'up', '||rightparen||', 'goodnight', '||period||', '||return||', '||return||', 'kramer:', 'goodnight', '||comma||', 'mr', 'yamaguchi', '||period||', '||return||', '||return||', 'mr', 'yamaguchi:', '||leftparen||', 'sits', 'up', '||rightparen||', 'oyasuminasai', '*', '||leftparen||', 'japanese', 'for', 'goodnight', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'rice', 'crispies', '||period||', 'east', 'meets', 'west', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', "it's", 'a', 'lovely', 'little', 'bureau', 'and', 'breakfast', "you're", 'running', '||period||', 'well', '||comma||', "i'm", 'off', 'to', 'the', 'bank', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'opening', 'the', 'fridge', '||rightparen||', 'sayonara', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', '||rightparen||', 'konichi', '||dash||', 'wa', '||period||', '||return||', '||return||', 'brett:', 'elaine', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'shh', '||dash||', 'shh', '||exclammark||', '||leftparen||', 'smiling', '||rightparen||', 'what', "d'you", 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', "that's", 'witchy', 'woman', '||period||', 'that', 'could', 'be', 'our', 'song', '||period||', '||return||', '||return||', 'brett:', 'witchy', 'woman', 'is', 'okay', 'for', 'you', '||comma||', 'but', "i've", 'already', 'got', 'a', 'song', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'oh', '||comma||', 'then', 'how', 'about', 'desperado', '||questionmark||', '||leftparen||', 'smiling', '||rightparen||', 'we', 'can', 'share', 'it', '||period||', '||return||', '||return||', 'brett:', '||leftparen||', 'flat', '||rightparen||', 'no', '||period||', "it's", 'mine', '||period||', '||return||', '||return||', 'kramer:', 'here', 'you', 'go', '||period||', 'snap', '||comma||', 'crackle', 'and', 'pop', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'loudly', '||rightparen||', 'good', 'morning', '||comma||', 'mr', 'oh', '||period||', 'i', 'gotta', 'make', 'up', 'the', 'drawer', '||period||', '||return||', '||return||', 'mr', 'oh', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'ach', '||comma||', 'come', 'back', 'in', 'half', 'hour', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'calls', '||rightparen||', 'hey', '||comma||', "i'll", 'take', 'one', '||period||', '||return||', '||return||', 'clicky:', 'well', '||comma||', 'look', "who's", 'back', '||exclammark||', '||return||', '||return||', 'clicky:', 'teddy', '||exclammark||', '||leftparen||', 'indicates', 'jerry', '||rightparen||', "this's", 'the', 'guy', 'says', 'he', 'invented', 'the', 'twirl', '||period||', '||return||', '||return||', 'teddy:', '||leftparen||', 'unfriendly', 'recognition', '||rightparen||', 'jerry', 'seinfeld', '||exclammark||', '||return||', '||return||', 'jerry:', 'teddy', 'padillac', '||period||', 'long', 'time', '||comma||', 'no', 'see', '||period||', '||leftparen||', 'pointing', 'at', 'the', 'umbrellas', '||rightparen||', "what've", 'you', 'got', 'in', 'a', 'push', '||dash||', 'button', 'mini', '||period||', '||return||', '||return||', 'teddy:', '||leftparen||', 'bitter', '||rightparen||', 'same', 'thing', 'we', 'had', '||comma||', 'when', 'you', 'bailed', 'on', 'us', '||comma||', 'fifteen', 'years', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'bailed', '||questionmark||', "c'mon", '||comma||', 'you', 'knew', 'i', 'wanted', 'to', 'be', 'a', 'comedian', '||period||', 'besides', '||comma||', 'we', 'had', 'some', 'good', 'time', '||period||', 'remember', 'tropical', 'storm', 'renee', '||questionmark||', '||return||', '||return||', 'teddy:', '||leftparen||', 'angry', '||rightparen||', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||period||', 'but', 'where', 'were', 'you', 'during', 'the', 'poncho', 'craze', 'of', 'eighty', '||dash||', 'four', '||questionmark||', 'i', 'almost', 'lost', 'my', 'house', '||period||', '||return||', '||return||', 'clicky:', 'umbrella', '||comma||', 'buddy', '||questionmark||', '||return||', '||return||', 'clicky:', 'now', 'we', 'got', 'that', 'damn', "'urban", "sombrero'", 'to', 'contend', 'with', '||period||', '||return||', '||return||', 'teddy:', '||leftparen||', 'to', 'clicky', '||rightparen||', 'easy', '||comma||', 'there', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'i', 'hear', "you're", 'taking', 'credit', 'for', 'the', 'twirl', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'it', 'was', 'so', 'many', 'years', 'ago', '||period||', 'who', 'cares', '||questionmark||', '||return||', '||return||', 'teddy:', '||leftparen||', 'intense', '||rightparen||', 'i', 'care', '||period||', 'clicky', 'cares', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'could', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'could', 'i', 'just', 'buy', 'an', 'umbrella', '||questionmark||', '||return||', '||return||', 'teddy:', '||leftparen||', 'sour', '||rightparen||', 'yeah', '||comma||', 'sure', '||period||', 'two', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shock', '||rightparen||', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'teddy:', '||leftparen||', 'caustically', '||rightparen||', 'special', 'price', '||comma||', 'for', 'a', 'real', 'foul', '||dash||', 'weather', 'friend', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'george', '||period||', 'how', 'about', 'that', 'tour', '||comma||', 'huh', '||questionmark||', 'these', 'guys', 'are', 'ready', 'to', 'run', 'the', 'bases', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'indicating', 'the', 'window', '||rightparen||', 'kramer', '||comma||', "it's", '||comma||', "it's", 'raining', '||period||', 'they', 'got', 'the', 'tarp', 'on', 'the', 'field', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'ah', '||comma||', 'listen', '||comma||', 'george', '||comma||', 'what', 'else', 'can', 'i', 'do', 'with', 'these', 'guys', '||questionmark||', 'now', '||comma||', 'bear', 'in', 'mind', '||comma||', "they're", 'a', 'little', 'light', 'on', 'the', 'yen', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', '||comma||', 'i', 'got', 'the', 'pilot', 'of', 'the', 'jerry', 'show', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'snaps', 'his', 'fingers', '||rightparen||', "that's", 'perfect', '||period||', '||leftparen||', 'to', 'the', 'japanese', '||rightparen||', 'hey', '||comma||', 'how', 'would', 'you', 'guys', 'like', 'to', 'watch', 'super', 'terrific', 'happy', 'star', 'jerry', 'seinfeld', '||questionmark||', '||return||', '||return||', 'mr', 'oh:', 'but', '||comma||', 'we', 'are', 'also', 'very', 'hungry', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||leftparen||', 'feeds', 'tape', 'into', 'vcr', '||rightparen||', 'well', '||comma||', 'you', 'guys', 'just', 'watch', 'the', 'tape', 'and', '||comma||', 'uh', '||comma||', "i'll", 'get', 'you', 'some', 'food', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouts', '||rightparen||', 'hey', '||comma||', 'peanuts', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'george', '||period||', '||leftparen||', 'waves', 'george', 'over', '||rightparen||', 'george', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'puzzled', '||rightparen||', 'uh', '||comma||', 'george', '||comma||', 'uh', '||comma||', 'did', 'you', 'call', 'some', 'carpet', 'cleaners', '||questionmark||', '||return||', '||return||', 'george:', 'are', 'they', 'here', '||questionmark||', '||return||', '||return||', 'wilhelm:', "they're", 'in', 'my', 'office', '||comma||', 'right', 'now', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'suspicious', '||rightparen||', 'they', "haven't", 'said', 'anything', 'to', 'you', '||comma||', 'have', 'they', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'about', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||comma||', 'resentful', '||rightparen||', 'what', 'kind', 'of', 'a', 'snobby', '||comma||', 'stuck', '||dash||', 'up', '||comma||', 'cult', 'is', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'brett:', '||leftparen||', 'calls', 'over', '||rightparen||', 'hey', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'brett', '||period||', '||return||', '||return||', 'brett:', "haven't", 'you', 'ever', 'heard', 'of', 'an', 'umbrella', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', "didn't", 'have', 'enough', 'money', '||period||', '||return||', '||return||', 'brett:', "i'm", 'sure', "things'll", 'pick', 'up', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'not', 'that', '||comma||', "it's", 'the', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', 'look', 'at', 'the', 'checks', '||exclammark||', 'hours', 'of', 'hard', 'work', 'ruined', '||exclammark||', '||return||', '||return||', 'brett:', 'ah', '||comma||', "don't", 'worry', '||comma||', 'i', 'can', 'spot', 'you', 'the', '||leftparen||', 'reads', '||rightparen||', 'twelve', 'cents', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'not', 'the', 'money', '||period||', "it's", 'my', 'hand', '||period||', "it's", 'crippled', 'from', 'writing', 'and', 'writing', '||period||', '||return||', '||return||', 'brett:', "nothing's", 'working', 'for', 'you', '||comma||', 'is', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bitter', '||rightparen||', 'not', 'at', 'the', 'moment', '||comma||', 'brett', '||period||', '||return||', '||return||', 'brett:', "i'd", 'give', 'you', 'a', 'ride', '||comma||', 'but', 'i', 'got', 'karl', 'farbman', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'thanks', 'for', 'stopping', '||exclammark||', '||return||', '||return||', 'elaine:', 'brett', 'said', 'you', 'ran', 'away', 'from', 'him', '||comma||', 'as', 'if', 'he', 'were', 'the', 'boogetyman', '||period||', '||return||', '||return||', 'jerry:', 'boogeyman', '||period||', '||return||', '||return||', 'elaine:', 'boogey', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'quite', 'sure', '||period||', 'anyway', '||comma||', 'any', 'luck', 'getting', 'together', 'on', 'a', 'song', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'he', 'blew', 'out', 'my', 'witchy', 'woman', '||comma||', 'and', 'he', "won't", 'share', 'desperado', '||period||', 'hey', '||comma||', 'what', "d'you", 'think', 'of', 'oye', 'como', 'va', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'negative', '||rightparen||', 'eehh', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'desperation', '||rightparen||', 'well', '||comma||', "i'm", 'running', 'outta', 'guys', 'here', 'in', 'this', 'city', '||comma||', 'jer', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||rightparen||', 'great', 'news', '||exclammark||', 'i', 'showed', 'the', 'pilot', 'to', "kramer's", 'japanese', 'friends', '||period||', 'they', 'loved', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'they', 'bought', 'the', 'butler', 'character', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||rightparen||', 'did', 'i', 'tell', 'you', 'that', "story's", 'relatable', '||questionmark||', '||exclammark||', 'that', 'was', 'a', 'great', 'show', '||exclammark||', 'that', 'is', 'why', "i'm", 'bringing', 'it', 'back', 'to', 'nbc', '||period||', '||return||', '||return||', 'jerry:', 'nbc', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'little', 'subdued', '||rightparen||', 'nakahama', 'broadcast', 'corporation', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', 'but', 'they', 'told', 'us', 'we', 'must', 'go', 'now', '||period||', '||return||', '||return||', 'george:', 'but', 'now', 'i', 'have', 'my', 'own', 'market', 'research', '||period||', 'actual', 'japanese', 'viewers', '||comma||', 'that', 'love', 'the', 'show', '||exclammark||', "i'm", 'gonna', 'talk', 'to', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||comma||', 'do', 'me', 'a', 'favour', '||period||', 'if', 'they', 'make', 'you', 'an', 'offer', '||comma||', 'whatever', 'it', 'is', '||period||', '||leftparen||', 'vehement', '||rightparen||', 'just', 'take', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'by', 'the', 'way', '||comma||', "what'd", 'you', 'think', 'of', 'miss', 'yoshimura', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'network', 'executive', '||period||', 'you', 'think', 'she', 'liked', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'heyy', '||exclammark||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'beckoning', 'to', 'george', '||rightparen||', 'come', 'on', '||comma||', 'i', 'want', 'you', 'to', 'come', 'in', 'here', '||period||', '||return||', '||return||', 'mr', 'oh:', 'come', 'on', 'in', '||comma||', 'fat', 'boy', '||exclammark||', '||return||', '||return||', 'george:', 'get', 'a', 'good', "night's", 'sleep', '||comma||', 'alright', 'fellas', '||period||', '||leftparen||', 'thumbs', 'up', '||rightparen||', 'big', 'day', 'tomorrow', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'last', 'one', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'agonised', '||rightparen||', 'uugh', '||exclammark||', 'ahh', '||period||', '||return||', '||return||', 'kramer:', 'there', 'you', 'are', '||period||', '||return||', '||return||', 'george:', 'uh', '||period||', '||leftparen||', 'smiles', '||rightparen||', "where's", 'the', 'boys', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', '||comma||', 'i', 'let', "'em", 'sleep', 'in', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'on', 'my', 'way', 'to', 'cash', 'in', 'their', 'plane', 'tickets', 'for', 'them', '||period||', 'they', 'need', 'a', 'little', 'food', 'money', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'horrified', '||rightparen||', 'but', 'that', 'meeting', 'starts', 'in', 'ten', 'minutes', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'well', '||comma||', 'i', 'set', 'their', 'alarm', '||period||', 'but', 'they', 'did', 'have', 'a', 'lot', 'of', 'sake', 'in', 'that', 'hot', '||dash||', 'tub', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantic', '||rightparen||', "i'm", 'calling', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'panicked', 'and', 'rushed', '||rightparen||', 'jerry', '||exclammark||', 'the', 'japanese', 'guys', 'had', 'sake', 'in', 'the', 'hot', '||dash||', 'tub', '||exclammark||', 'you', 'gotta', 'get', "'em", 'outta', 'the', 'drawers', 'and', 'get', "'em", 'down', 'here', '||comma||', 'or', 'i', "don't", 'have', 'a', 'focus', 'group', 'to', 'sell', 'the', 'pilot', 'to', 'japanese', 'tv', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'kidding', '||rightparen||', 'uncle', 'leo', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'scream', '||rightparen||', 'jerry', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'alright', '||period||', "i'll", 'wake', "'em", 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'hmm', '||comma||', 'testy', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'mr', 'oh', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'mr', 'jerry', '||exclammark||', 'open', 'the', 'drawer', '||comma||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'stuck', '||period||', '||leftparen||', 'pained', '||rightparen||', 'oww', '||exclammark||', 'the', 'steam', 'from', 'the', 'hot', '||dash||', 'tub', 'musta', 'warped', 'the', 'wood', '||period||', '||return||', '||return||', 'mr', 'oh', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'pull', 'harder', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'trying', '||period||', 'i', "can't", 'get', 'a', 'grip', '||period||', 'my', "hand's", 'had', 'kind', 'of', 'a', 'bad', 'week', '||period||', '||return||', '||return||', 'mr', 'oh', '||leftparen||', 'o', '||period||', 'c', '||rightparen||', ':', 'very', 'funny', '||comma||', 'but', 'no', 'joking', '||comma||', 'please', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looks', 'round', '||rightparen||', "don't", 'worry', '||comma||', "i'll", 'get', 'you', 'out', '||period||', '||return||', '||return||', 'elaine:', 'brett', '||comma||', 'believe', 'me', '||period||', 'you', "don't", 'have', 'to', 'do', 'this', '||period||', '||return||', '||return||', 'brett:', 'elaine', '||comma||', 'i', 'know', "he'll", 'appreciate', 'this', '||period||', 'granted', '||comma||', "it's", 'not', 'as', 'nice', 'as', "kramer's", 'cabinet', '||comma||', 'but', "it's", 'start', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'i', 'promise', 'you', '||comma||', 'jerry', 'is', 'not', 'jealous', 'of', "kramer's", 'cabinet', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'yell', '||rightparen||', 'move', 'to', 'the', 'back', 'of', 'the', 'drawers', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', '||return||', '||return||', 'brett:', '||leftparen||', 'shouting', '||rightparen||', 'not', 'the', 'farbman', '||exclammark||', '||exclammark||', '||return||', '||return||', 'mr', 'oh:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'jerry', 'seinfeld', 'is', 'a', 'dangerous', 'lunatic', '||period||', 'he', "wouldn't", 'let', 'us', 'out', 'of', 'the', 'drawers', '||period||', 'then', 'he', 'came', 'at', 'me', 'with', 'an', 'axe', '||period||', '||return||', '||return||', 'executive', '1:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'we', 'suspect', 'his', 'friend', 'here', 'is', 'also', 'unbalanced', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'uh', '||comma||', 'gentlemen', '||comma||', 'do', 'we', 'have', 'a', 'deal', '||questionmark||', '||return||', '||return||', 'mr', 'oh:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'could', 'we', 'have', 'a', 'couple', 'of', 'those', 'oranges', '||questionmark||', '||return||', '||return||', 'mr', 'oh:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'we', 'are', 'very', 'hungry', 'and', 'have', 'survived', 'many', 'hardships', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'executives', '||rightparen||', 'excuse', 'me', '||period||', 'did', 'you', 'hire', 'the', 'sunshine', 'carpet', 'cleaners', '||questionmark||', '||return||', '||return||', 'executive', '1:', 'yes', '||period||', 'cleaned', 'up', 'the', '||leftparen||', 'points', '||rightparen||', 'coffee', 'stain', '||comma||', 'left', 'by', 'jerry', 'seinfield', '||period||', '||return||', '||return||', 'george:', 'mr', 'wilhelm', '||questionmark||', 'wha', '||period||', '||period||', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'wilhelm:', "i'm", 'here', 'to', 'clean', 'the', 'carpets', '||period||', 'most', 'of', 'the', 'world', 'is', 'carpeted', '||period||', 'and', '||comma||', 'one', 'day', '||comma||', 'we', 'will', 'do', 'the', 'cleaning', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'incredulity', '||rightparen||', 'him', 'you', 'brainwashed', '||exclammark||', '||leftparen||', 'angry', 'shout', '||rightparen||', "what's", 'he', 'got', 'that', 'i', "don't", 'have', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'urgent', '||rightparen||', 'mr', 'wilhelm', '||comma||', 'listen', '||period||', "you've", 'been', 'abducted', '||exclammark||', 'please', '||comma||', 'mr', 'wilhelm', '||comma||', 'you', 'gotta', 'listen', 'to', 'me', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'wilhelm', '||questionmark||', '||leftparen||', 'he', 'raises', 'the', 'nozzle', 'of', 'his', 'cleaner', '||rightparen||', 'my', 'name', 'is', 'tanya', '||period||', '||return||', '||return||', 'executive', '1:', '||leftparen||', 'speaks', 'japanese', '||rightparen||', 'subtitle', 'with', 'these', 'two', 'idiots', 'i', "don't", 'know', 'how', 'the', 'yankees', 'won', 'the', 'world', 'series', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'apologetically', '||rightparen||', 'brett', '||comma||', "i'm", '||comma||', "i'm", 'really', 'sorry', '||period||', 'i', "didn't", 'mean', 'to', 'hit', 'you', 'in', 'the', 'head', 'with', '||period||', '||period||', 'an', 'axe', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'defensive', '||rightparen||', 'at', 'least', 'it', 'was', 'just', 'the', 'handle', '||exclammark||', '||return||', '||return||', 'brett:', 'it', 'was', 'a', 'beautiful', 'cabinet', '||period||', 'what', 'am', 'i', 'gonna', 'tell', '||period||', '||period||', '||period||', '||return||', '||return||', 'brett:', 'i', "can't", 'remember', 'his', 'name', '||exclammark||', '||return||', '||return||', 'jerry:', 'fleckman', '||questionmark||', '||return||', '||return||', 'elaine:', 'calm', 'down', 'brett', '||comma||', 'okay', '||period||', 'you', 'could', 'have', 'a', 'concussion', '||period||', 'calm', 'down', '||period||', '||leftparen||', 'holds', "brett's", 'head', 'and', 'sings', '||rightparen||', "'desperado", '||comma||', 'mmm', '||dash||', 'mm', '||dash||', 'mmm', '||period||', 'you', 'better', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'elaine/jerry:', '||leftparen||', 'singing', '||rightparen||', "'", '||period||', '||period||', '||period||', 'let', 'somebody', 'love', 'you', '||period||', 'let', 'somebody', 'love', 'you', '||comma||', 'before', "it's", 'too', '||period||', '||period||', '||period||', "'", '||return||', '||return||', 'nurse:', 'his', 'pulse', 'is', 'fine', '||period||', '||return||', '||return||', 'doctor:', 'hmm', '||period||', 'looks', 'like', 'a', 'minor', 'concussion', '||period||', 'let', 'me', 'see', 'what', 'i', 'can', 'do', 'to', 'relieve', 'the', 'swelling', '||period||', '||return||', '||return||', 'nurse:', 'doctor', '||questionmark||', '||return||', '||return||', 'nurse:', '||leftparen||', 'concerned', '||rightparen||', 'doctor', '||questionmark||', '||return||', '||return||', 'nurse:', '||leftparen||', 'worried', '||rightparen||', 'doctor', '||questionmark||', '||return||', '||return||', 'nurse:', '||leftparen||', 'alarm', '||rightparen||', 'doctor', '||comma||', 'i', 'think', "we're", 'losing', 'him', '||exclammark||', '||return||', '||return||', 'george:', 'dollar', 'eighty', '||dash||', 'nine', '||period||', 'why', 'is', 'this', 'a', 'dollar', 'eighty', '||dash||', 'nine', '||questionmark||', 'why', 'is', 'there', 'no', 'haggling', 'in', 'this', 'country', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'we', 'like', 'to', 'think', "we've", 'progressed', 'beyond', 'a', 'knife', 'fight', 'for', 'a', 'citrus', 'drink', '||period||', '||return||', '||return||', 'george:', 'not', 'me', '||period||', 'everything', 'should', 'be', 'negotiable', '||period||', '||leftparen||', 'he', 'picks', 'up', 'a', 'container', 'of', 'fruit', '||rightparen||', '||return||', '||return||', 'jerry:', 'restaurants', 'too', '||questionmark||', '||return||', '||return||', 'george:', 'absolutely', '||period||', "you're", 'telling', 'me', "there's", 'no', 'room', 'to', 'move', 'on', 'pasta', '||period||', 'all', 'starches', 'are', 'a', 'scam', '||period||', '||return||', '||return||', 'jerry:', 'yea', 'especially', 'ziti', '||comma||', 'with', 'that', 'big', 'hole', '||period||', '||return||', '||return||', 'george:', 'ahh', '||comma||', 'excuse', 'me', '||comma||', 'how', 'much', 'is', 'this', '||questionmark||', '||return||', '||return||', 'worker:', 'dollar', 'nineteen', '||period||', '||return||', '||return||', 'george:', "i'll", 'give', 'you', 'a', 'quarter', '||period||', '||return||', '||return||', 'worker:', 'get', 'the', 'hell', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'tell', 'him', 'forty', 'and', 'no', 'fork', '||period||', '||return||', '||return||', 'george:', 'thirty', '||period||', '||return||', '||return||', 'worker:', "that's", 'it', 'you', 'leave', 'and', 'never', 'come', 'back', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'about', 'we', 'leave', 'and', '||comma||', 'come', 'back', 'in', 'a', 'week', '||questionmark||', '||return||', '||return||', 'worker:', 'deal', '||exclammark||', '||leftparen||', 'turns', 'and', 'walks', 'into', 'the', 'market', '||rightparen||', '||return||', '||return||', 'george:', 'alright', 'see', '||questionmark||', 'we', 'got', 'something', 'there', '||period||', '||return||', '||return||', 'kramer:', 'awe', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'kenny', 'rogers', 'roasters', '||period||', 'finally', 'open', '||period||', 'hey', '||comma||', 'look', 'at', 'the', 'size', 'of', 'that', 'neon', 'chicken', 'on', 'the', 'roof', '||period||', '||return||', '||return||', 'kramer:', "roger's", "can't", 'sell', 'chicken', 'around', 'here', '||comma||', 'we', 'got', 'chicken', 'places', 'on', 'every', 'block', '||period||', '||return||', '||return||', 'jerry:', 'he', 'is', 'the', 'gambler', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', '||leftparen||', 'rubs', 'hands', '||rightparen||', 'i', 'gotta', 'meet', 'newman', 'at', 'the', 'pet', 'store', '||period||', 'helping', 'him', 'pick', 'out', 'a', 'turtle', '||period||', '||return||', '||return||', 'jerry:', 'try', 'and', 'stay', 'calm', '||period||', '||return||', '||return||', 'kramer:', 'yea', '||comma||', 'yea', '||period||', '||return||', '||return||', 'man:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'seth', '||exclammark||', 'wow', 'what', 'has', 'it', 'been', 'like', 'five', 'years', '||questionmark||', '||return||', '||return||', 'seth:', 'at', 'least', '||period||', '||return||', '||return||', 'jerry:', 'you', 'wanna', 'grab', 'lunch', '||questionmark||', '||return||', '||return||', 'seth:', 'ah', '||comma||', "i'm", 'actually', 'headed', 'back', 'to', 'the', 'office', '||period||', '||return||', '||return||', 'jerry:', 'seth', '||comma||', "it's", 'me', '||period||', "what's", 'more', 'important', 'than', 'catching', 'up', 'with', 'an', 'old', 'college', 'buddy', '||questionmark||', '||return||', '||return||', 'seth:', 'well', 'i', 'am', '||comma||', 'supposed', 'to', 'be', 'in', 'this', 'meeting', '||period||', '||return||', '||return||', 'jerry:', 'blow', 'it', 'off', '||period||', 'remember', 'poli', 'sci', '||questionmark||', 'how', 'many', 'of', 'those', 'did', 'we', 'go', 'to', '||questionmark||', '||return||', '||return||', 'seth', '&', 'jerry:', 'alright', '||comma||', 'alright', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'whatever', 'happened', 'to', 'moochie', '||questionmark||', '||return||', '||return||', 'seth:', "he's", 'dead', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'i', 'still', "don't", 'know', 'how', 'you', 'can', 'call', 'lunch', 'with', 'me', 'a', 'business', 'expense', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'think', 'of', 'the', 'catalog', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'stinks', '||period||', '||return||', '||return||', 'elaine:', 'there', '||comma||', 'we', 'just', 'talked', 'business', '||period||', '||return||', '||return||', 'sales', 'woman:', 'we', 'do', 'have', 'the', 'down', 'comforter', 'and', 'the', 'cookware', 'you', 'liked', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'great', '||comma||', 'put', 'it', 'all', 'on', 'the', 'peterman', 'account', 'with', 'the', 'other', 'stuff', '||period||', '||return||', '||return||', 'sales', 'woman:', 'you', 'know', 'what', 'else', 'we', 'have', 'that', 'you', 'might', 'like', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'take', 'it', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'like', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'i', 'think', 'it', 'looks', 'very', 'nice', 'on', 'you', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||leftparen||', 'feeling', 'flattered', '||rightparen||', '||return||', '||return||', 'sales', 'woman:', 'hmm', '||period||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'huh', '||period||', '||period||', '||period||', 'peterman', 'account', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||leftparen||', 'to', 'the', 'sales', 'woman', '||rightparen||', 'and', 'some', 'hair', 'for', 'my', 'little', 'friend', 'here', '||period||', '||return||', '||return||', 'seth:', 'so', "how's", 'your', 'stand', 'up', 'career', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'as', 'a', 'matter', 'of', 'fact', '||period||', 'i', 'almost', 'had', 'my', 'own', 'show', 'in', 'japan', '||period||', '||return||', '||return||', 'seth:', 'do', 'you', 'speak', 'japanese', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||return||', '||return||', 'seth:', 'so', 'you', 'would', 'have', 'done', 'it', 'in', 'japan', '||comma||', 'but', 'in', 'english', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'so', "what's", 'this', 'job', 'of', 'yours', '||questionmark||', '||return||', '||return||', 'seth:', 'big', 'investment', 'firm', '||period||', '||return||', '||return||', 'jerry:', 'mmmm', '||period||', '||return||', '||return||', 'seth:', 'we', 'just', 'got', 'the', 'citibank', 'account', '||period||', 'in', 'fact', 'today', 'was', 'our', 'first', 'big', 'meeting', 'with', 'them', '||period||', '||return||', '||return||', 'jerry:', 'the', '||comma||', 'the', 'meeting', 'you', 'blew', 'off', '||questionmark||', '||return||', '||return||', 'seth:', 'yea', '||period||', '||return||', '||return||', 'jerry:', "wasn't", 'that', 'kind', 'of', 'important', '||questionmark||', '||return||', '||return||', 'seth:', 'yea', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'and', 'i', 'brought', 'i', 'whole', 'new', 'set', 'of', 'cookware', '||comma||', 'and', 'a', 'water', 'pik', '||period||', '||return||', '||return||', 'jerry:', 'you', 'use', 'a', 'water', 'pik', '||questionmark||', '||return||', '||return||', 'elaine:', 'sure', '||period||', 'water', 'pik', '||comma||', 'floss', '||comma||', 'plax', '||comma||', 'brush', '||comma||', 'listerine', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'go', 'in', 'the', 'bathroom', 'at', 'eleven', 'your', 'in', 'bed', 'by', 'what', '||comma||', 'two', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'at', 'the', 'latest', '||period||', 'oh', 'hang', 'on', 'a', 'second', '||comma||', 'i', 'gotta', 'another', 'call', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||questionmark||', '||return||', '||return||', 'man:', 'good', 'day', 'ms', '||period||', 'benes', '||period||', 'its', 'roger', 'ipswitch', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'hey', '||exclammark||', 'how', 'things', 'doing', 'in', 'accounting', '||questionmark||', '||return||', '||return||', 'roger:', 'ms', '||period||', 'benes', '||comma||', 'i', 'notice', 'youve', 'been', 'charging', 'quite', 'a', 'bit', 'of', 'merchandise', 'on', 'the', 'peterman', 'account', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'am', 'the', 'president', '||period||', '||return||', '||return||', 'roger:', 'yes', '||comma||', 'and', "we're", 'all', 'very', 'impressed', '||period||', 'never', 'the', 'less', '||comma||', 'the', 'expense', 'account', 'is', 'for', 'business', 'purposes', 'only', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'well', "isn't", 'the', 'president', 'allowed', 'to', 'do', 'anything', 'that', 'they', 'want', '||questionmark||', '||return||', '||return||', 'roger:', 'no', '||period||', "i'll", 'be', 'in', 'your', 'office', 'first', 'thing', 'tomorrow', '||period||', 'good', 'day', '||period||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'elaine:', 'good', 'day', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'anybody', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'why', "didn't", 'cha', 'get', 'the', 'big', 'one', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'hat', 'just', 'bottles', 'in', 'the', 'heat', '||comma||', 'i', '||dash||', 'i', "don't", 'even', 'need', 'a', 'coat', '||exclammark||', "it's", 'unbelievable', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'believe', 'it', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'and', 'i', 'got', 'a', 'date', 'with', 'the', 'sales', 'woman', '||period||', "she's", 'got', 'a', 'little', 'marisa', 'tomei', 'thing', 'going', 'on', '||period||', '||return||', '||return||', 'jerry:', 'ahh', '||comma||', 'too', 'bad', 'you', 'got', 'a', 'little', '||comma||', 'george', 'costanza', 'thing', 'going', 'on', '||period||', '||return||', '||return||', 'george:', "i'm", 'going', 'out', 'with', 'her', 'tomorrow', '||comma||', 'she', 'said', 'she', 'had', 'some', 'errands', 'to', 'run', '||period||', '||return||', '||return||', 'jerry:', "that's", 'a', 'date', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'the', 'difference', '||questionmark||', 'you', 'know', 'they', 'way', 'i', 'work', '||period||', "i'm", 'like', 'a', 'commercial', 'jingle', '||period||', 'first', "it's", 'a', 'little', 'irritating', '||comma||', 'then', 'you', 'hear', 'it', 'a', 'few', 'times', '||comma||', 'youre', 'hummin', 'it', 'in', 'the', 'shower', '||comma||', 'by', 'the', 'third', 'date', "it's", '||leftparen||', 'sings', '||rightparen||', '||quotemark||', 'by', 'mennen', '||exclammark||', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'make', 'sure', 'your', 'gonna', 'get', 'to', 'the', 'third', 'date', '||questionmark||', '||return||', '||return||', 'george:', 'if', "there's", 'any', 'doubt', '||comma||', 'i', 'do', 'a', 'leave', '||dash||', 'behind', '||period||', 'keys', '||comma||', 'gloves', '||comma||', 'scarf', '||dash||', '||dash||', 'i', 'go', 'back', 'to', 'her', 'place', 'to', 'pick', 'it', 'up', '||period||', '||period||', '||period||', '||leftparen||', 'pop', 'sound', '||rightparen||', 'date', 'number', 'two', '||period||', '||return||', '||return||', 'jerry:', 'that', 'is', 'so', 'old', '||period||', 'why', "don't", 'you', 'show', 'up', 'at', 'her', 'door', 'in', 'a', 'wood', 'horse', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sings', 'theme', '||rightparen||', '||quotemark||', 'by', 'mennen', '||period||', '||quotemark||', 'what', 'the', '||questionmark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'light', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'the', 'red', '||period||', 'yeah', '||comma||', 'its', 'the', 'chicken', 'roaster', 'sign', '||period||', 'you', 'know', '||comma||', 'its', 'right', 'across', 'from', 'my', 'window', '||period||', '||return||', '||return||', 'jerry:', "can't", 'you', 'shut', 'the', 'shades', '||questionmark||', '||return||', '||return||', 'kramer:', 'they', 'are', 'shut', '||period||', 'oh', 'by', 'the', 'way', '||comma||', 'your', 'friend', 'seth', '||comma||', 'he', 'stopped', 'by', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||questionmark||', "what'd", 'he', 'have', 'to', 'say', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'he', 'was', 'fired', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'as', 'you', 'can', 'see', 'the', 'comforter', 'i', 'expensed', 'is', 'actually', 'the', 'aristotle', 'goose', 'down', 'tunic', '||period||', '||leftparen||', 'laughs', '||comma||', 'modeling', 'the', 'comforter', '||rightparen||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'roger:', 'another', 'bulls', 'eye', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', 'well', 'mr', '||period||', 'ipswitch', 'since', 'everyone', 'of', 'my', 'expenses', 'was', 'obviously', 'for', 'a', 'legitimate', 'business', 'purpose', '||period||', '||return||', '||return||', 'roger:', 'i', 'just', 'need', 'to', 'see', 'the', 'sable', 'hat', 'you', 'purchased', 'yesterday', '||period||', '||return||', '||return||', 'elaine:', 'the', 'hat', '||questionmark||', 'why', 'do', 'you', 'need', 'to', 'see', 'the', 'hat', '||questionmark||', '||return||', '||return||', 'roger:', 'it', 'costs', 'eight', '||dash||', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'ohh', '||period||', '||leftparen||', 'trying', 'to', 'control', 'the', 'water', 'pik', 'and', 'shut', 'it', 'off', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'seth', '||comma||', 'if', 'you', 'knew', 'the', 'meeting', 'was', 'so', 'important', 'why', 'did', 'you', 'go', 'the', 'lunch', 'with', 'me', '||questionmark||', '||return||', '||return||', 'seth:', "we're", 'old', 'college', 'buddies', '||period||', '||return||', '||return||', 'jerry:', 'i', 'only', 'knew', 'you', 'through', 'moochie', '||period||', '||return||', '||return||', 'seth:', 'hey', 'jerry', "don't", 'worry', 'about', 'it', 'all', 'right', '||period||', 'the', 'important', 'thing', 'is', '||comma||', 'is', 'we', 'got', 'to', 'catch', 'up', '||period||', 'mind', 'if', 'i', 'ah', '||comma||', 'grab', 'the', 'want', 'ads', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', '||comma||', 'actually', 'i', "haven't", 'read', 'tank', 'mcnamara', 'yet', '||period||', '||leftparen||', 'takes', 'the', 'paper', 'back', '||rightparen||', '||return||', '||return||', 'jerry:', "how's", 'life', 'on', 'the', 'red', 'planet', '||questionmark||', '||leftparen||', 'shuts', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', 'its', 'killing', 'me', '||comma||', 'i', "can't", 'eat', '||comma||', 'i', "can't", 'sleep', '||period||', 'all', 'i', 'can', 'see', 'is', 'that', 'giant', 'red', 'sun', 'in', 'the', 'shape', 'of', 'a', 'chicken', '||period||', '||leftparen||', 'gets', 'some', 'cereal', 'from', 'the', 'cubard', 'and', 'pours', 'it', 'in', 'a', 'big', 'bowl', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'did', 'you', 'go', 'down', 'to', 'the', 'kenny', 'rogers', 'and', 'complain', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'they', 'gave', 'me', 'the', 'heave', 'ho', '||period||', 'you', 'know', '||comma||', 'i', "don't", 'think', 'that', 'kenny', 'rogers', 'has', 'any', 'idea', "what's", 'going', 'on', 'down', 'there', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'getting', 'some', 'cereal', '||return||', '||return||', 'jerry:', 'that', '||comma||', "that's", 'tomato', 'juice', '||period||', '||return||', '||return||', 'kramer:', 'that', 'looked', 'like', 'milk', 'to', 'me', '||exclammark||', 'jerry', 'my', 'rods', 'and', 'cones', 'are', 'all', 'screwed', 'up', '||exclammark||', 'alright', '||comma||', "that's", 'it', '||period||', 'i', 'gotta', 'move', 'in', 'with', 'you', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'kramer', '||comma||', 'ahh', '||comma||', 'my', 'concern', 'is', 'that', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'living', 'together', 'after', 'a', 'while', 'we', '||period||', '||period||', '||period||', 'we', 'might', 'start', 'to', 'get', 'on', 'each', 'others', 'nerves', 'a', 'little', '||period||', '||return||', '||return||', 'kramer:', 'alright', 'listen', 'to', 'me', '||comma||', 'i', 'got', 'a', 'great', 'idea', '||period||', 'now', '||comma||', "you're", 'a', 'heavy', 'sleeper', '||comma||', 'right', '||questionmark||', 'why', "don't", 'we', 'just', 'switch', 'apartments', '||questionmark||', '||return||', '||return||', 'jerry:', 'or', 'i', 'could', 'sleep', 'in', 'the', 'park', '||questionmark||', 'you', 'could', 'knock', 'these', 'walls', 'down', '||comma||', 'make', 'it', 'an', 'eight', 'room', 'luxury', 'suite', '||period||', '||return||', '||return||', 'kramer:', 'jerry', 'these', 'are', 'load', 'bearing', 'walls', '||comma||', "they're", 'not', 'gonna', 'come', 'down', '||exclammark||', '||return||', '||return||', 'jerry:', 'yea', '||comma||', "that's", 'no', 'good', '||period||', '||return||', '||return||', 'kramer:', 'i', 'may', 'have', 'to', 'drive', 'that', 'place', 'out', 'of', 'business', '||period||', '||return||', '||return||', 'jerry:', 'how', 'you', 'gonna', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'like', 'we', 'did', 'in', 'the', 'sixties', '||comma||', "takin'", 'in', 'to', 'the', 'streets', '||period||', '||return||', '||return||', 'heather:', 'thanks', 'george', '||comma||', 'but', 'i', 'got', 'it', 'from', 'here', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', "i'm", 'in', 'already', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'so', 'eh', '||comma||', 'you', 'eh', '||comma||', 'wanna', 'get', 'together', 'tomorrow', '||questionmark||', '||return||', '||return||', 'heather:', 'no', '||comma||', "i'm", 'gonna', 'be', 'pretty', 'busy', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'this', 'weekend', '||questionmark||', '||return||', '||return||', 'heather:', "i'm", 'gonna', 'be', 'busy', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'ah', '||period||', '||period||', '||leftparen||', 'george', 'throws', 'his', 'keys', 'on', 'the', 'table', '||rightparen||', 'see', 'ya', '||exclammark||', '||return||', '||return||', 'heather:', 'hey', '||comma||', 'you', 'forgot', 'your', 'keys', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'those', '||comma||', 'those', "aren't", 'my', 'keys', '||period||', '||return||', '||return||', 'heather:', 'well', "they're", 'not', 'mine', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'ha', '||period||', 'they', 'are', 'my', 'keys', '||comma||', 'how', 'weird', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'heather:', 'goodbye', 'george', '||period||', '||return||', '||return||', 'george:', 'yea', 'bye', '||period||', '||return||', '||return||', 'heather:', 'george', '||comma||', 'bye', '||exclammark||', '||leftparen||', 'picks', 'up', 'phone', '||rightparen||', 'hello', '||questionmark||', 'you', 'are', 'not', 'going', 'to', 'believe', 'the', 'date', 'i', 'just', 'had', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sings', '||rightparen||', 'co', '||dash||', 'stan', '||dash||', 'za', '||period||', '||leftparen||', 'like', '||quotemark||', 'by', 'mennen', '||quotemark||', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', 'do', 'you', 'mean', 'you', "don't", 'have', 'the', 'hat', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'left', 'it', 'at', "heather's", '||period||', 'are', 'these', 'alive', '||questionmark||', '||leftparen||', 'pounding', 'on', 'glass', 'display', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', 'dead', '||exclammark||', 'george', '||comma||', 'i', 'need', 'that', 'russian', 'hat', 'back', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||comma||', "i'll", 'call', 'heather', '||comma||', "you'll", 'get', 'your', 'hat', 'back', '||comma||', 'i', 'will', 'get', 'a', 'second', 'date', '||period||', 'ha', 'ha', 'ha', '||period||', 'now', 'watch', 'the', 'magic', '||period||', '||return||', '||return||', 'elaine:', 'dial', '9', '||dash||', 'merlin', '||period||', '||return||', '||return||', 'heather:', 'hello', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'clears', 'throat', '||rightparen||', 'heather', 'hi', '||comma||', "it's", 'george', 'costanza', '||period||', '||return||', '||return||', 'heather:', 'oy', '||exclammark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'listen', 'ah', '||comma||', 'i', "don't", 'mean', 'to', 'bother', 'you', 'but', 'ah', '||comma||', 'silly', 'me', '||comma||', 'i', '||dash||', 'i', 'think', 'i', 'may', 'have', 'left', 'my', 'hat', 'in', 'your', 'apartment', '||period||', 'so', 'ah', '||comma||', 'i', 'thought', "i'd", 'just', 'come', 'by', 'later', 'and', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'heather:', 'you', "didn't'", 'leave', 'a', 'hat', 'here', '||period||', '||return||', '||return||', 'george:', 'i', '||dash||', "i'm", 'pretty', 'sure', 'i', 'left', 'it', 'eh', '||comma||', 'behind', 'the', 'cushion', 'of', 'the', 'chair', '||period||', '||period||', '||period||', 'accidentally', '||period||', '||return||', '||return||', 'heather:', 'no', 'hat', '||period||', 'george', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'a', '||comma||', 'you', 'know', 'what', '||comma||', 'maybe', "i'll", 'just', 'come', '||period||', '||period||', '||period||', 'umm', '||comma||', 'yummm', '||leftparen||', 'stammering', '||rightparen||', '||return||', '||return||', 'jerry:', 'seth', '||questionmark||', '||return||', '||return||', 'seth:', 'jerry', 'hi', '||exclammark||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'your', 'taking', 'the', 'trash', 'out', 'for', 'this', 'chicken', 'place', '||comma||', 'but', 'that', "couldn't", 'be', '||period||', '||return||', '||return||', 'seth:', 'yeah', '||comma||', "i'm", 'the', 'new', 'manager', '||return||', '||return||', 'jerry:', 'but', 'your', 'were', 'an', 'executive', '||comma||', 'this', 'is', 'fast', 'food', '||period||', '||return||', '||return||', 'seth:', 'not', 'fast', 'food', '||comma||', 'good', 'food', 'quickly', '||period||', 'hey', '||comma||', 'next', 'time', 'lunchll', 'be', 'on', 'me', '||comma||', 'huh', 'jer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'stay', 'away', 'from', 'the', 'chicken', '||period||', 'bad', '||comma||', 'bad', 'chicken', '||comma||', 'mess', 'you', 'up', '||period||', '||return||', '||return||', 'seth:', "that's", 'not', 'going', 'to', 'be', 'good', 'for', 'business', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'going', 'to', 'be', 'good', 'for', 'anybody', '||period||', '||return||', '||return||', 'kramer:', 'jerry', 'im', 'so', 'glad', 'we', 'switched', 'apartments', '||period||', 'it', 'was', 'a', 'perfect', 'solution', '||period||', '||return||', '||return||', 'jerry:', 'look', 'kramer', '||comma||', 'i', '||dash||', 'i', '||dash||', 'if', "i'm", 'gonna', 'live', 'over', 'there', '||comma||', 'y', '||dash||', 'y', '||dash||', 'you', 'gotta', 'take', 'some', 'of', 'this', 'stuff', 'out', '||period||', 'i', 'mean', 'this', 'thing', 'is', 'really', 'freaking', 'me', 'out', '||leftparen||', 'holds', 'up', 'a', 'ventriloquist', 'dummy', '||rightparen||', '||period||', 'i', 'feel', 'like', 'its', 'gonna', 'come', 'to', 'life', 'in', 'the', 'middle', 'of', 'the', 'night', 'and', 'kill', 'me', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'mr', '||period||', 'marbles', '||questionmark||', "he's", 'harmless', '||period||', '||return||', '||return||', 'jerry:', 'and', 'one', 'other', 'thing', '||comma||', 'i', "don't", 'want', 'newman', 'using', 'my', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||period||', '||return||', '||return||', 'newman:', 'nice', 'place', 'you', 'got', 'here', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'newman:', '||period||', '||period||', '||period||', 'a', 'man', 'can', 'really', 'get', 'some', 'thinking', 'done', '||period||', '||leftparen||', 'sits', 'on', 'couch', '||comma||', 'next', 'to', 'kramer', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'well', "don't", 'get', 'too', 'comfortable', '||period||', 'as', 'soon', 'as', 'seth', 'gets', 'a', 'real', 'job', 'you', 'two', 'are', 'gong', 'back', 'in', 'that', 'chicken', 'supernova', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'that', "roger's", 'chicken', '||questionmark||', 'oh', 'get', 'that', 'outta', 'here', '||period||', '||return||', '||return||', 'newman:', 'i', "don't", 'know', '||period||', 'the', 'man', 'makes', 'a', 'pretty', 'strong', 'bird', '||period||', '||return||', '||return||', 'kramer:', 'well', "i'm", 'boycotting', 'it', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'eating', '||rightparen||', 'hm', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'that', '||comma||', 'hickory', '||questionmark||', '||return||', '||return||', 'newman:', 'yea', '||comma||', "it's", 'the', 'wood', 'that', 'makes', 'it', 'good', '||period||', '||return||', '||return||', 'kramer:', 'really', '||questionmark||', '||return||', '||return||', 'newman:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'stop', 'it', '||period||', '||leftparen||', 'he', 'slaps', 'newmans', 'shoulder', '||rightparen||', 'whats', 'the', 'matter', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'mmmmm', '||period||', '||return||', '||return||', 'heather:', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'yeah', '||comma||', "i'm", 'elaine', 'benes', '||comma||', 'we', 'met', 'at', "barney's", '||period||', '||period||', '||period||', '||return||', '||return||', 'heather:', 'oh', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', "i'm", 'a', 'friend', 'of', 'george', "costanza's", '||period||', '||leftparen||', 'while', 'she', 'is', 'talking', '||comma||', 'she', 'is', 'dragging', 'george', 'in', 'by', 'pulling', 'his', 'ear', '||rightparen||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', '||leftparen||', 'releases', 'georges', 'ear', '||rightparen||', 'whether', "you're", 'aware', 'of', 'it', 'or', 'not', 'george', 'had', 'this', 'pathetic', 'little', 'plan', 'to', '||comma||', 'leave', 'something', 'behind', 'so', 'he', 'could', 'weasel', 'a', 'second', 'date', '||period||', '||return||', '||return||', 'heather:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'he', '||dash||', 'he', 'has', 'a', 'real', 'confidence', 'problem', '||period||', '||return||', '||return||', 'george:', 'well', 'not', 'really', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'ah', '||period||', '||period||', '||period||', '||leftparen||', 'quietly', '||rightparen||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'anyway', 'i', 'know', 'you', 'told', 'him', 'you', "didn't", 'have', 'the', 'hat', 'because', 'you', "didn't", 'want', 'to', 'see', 'him', 'again', '||period||', 'and', '||comma||', 'more', 'sympathetic', 'i', 'could', 'not', 'be', '||period||', 'but', '||comma||', 'i', 'really', 'do', 'need', 'to', 'have', 'the', 'hat', 'back', '||period||', '||return||', '||return||', 'heather:', 'look', '||comma||', 'i', "don't", 'know', 'what', 'to', 'tell', 'you', '||comma||', 'but', "there's", 'no', 'hat', 'here', '||period||', 'i', 'mean', '||comma||', 'maybe', 'the', 'maid', 'took', 'it', '||comma||', 'i', 'had', 'people', 'over', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', 'that', 'makes', 'sense', '||period||', '||return||', '||return||', 'elaine:', 'well', 'then', 'you', "wouldn't", 'mind', 'if', 'we', 'took', 'a', 'second', 'look', 'around', '||questionmark||', '||return||', '||return||', 'heather:', 'be', 'my', 'guest', '||period||', '||return||', '||return||', 'george:', 'good', 'to', 'see', 'you', 'again', '||period||', '||return||', '||return||', 'george:', "she's", 'bluffing', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'uhhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', "she's", 'got', 'it', 'stashed', 'away', 'in', 'there', 'somewhere', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'an', 'absolute', 'disaster', '||period||', '||return||', '||return||', 'george:', 'oh', 'i', "don't", 'know', '||period||', 'check', 'this', 'out', '||period||', '||return||', '||return||', 'elaine:', 'you', 'stole', 'her', 'clock', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'done', '||period||', '||leftparen||', 'pats', 'george', 'on', 'the', 'shoulder', '||rightparen||', '||return||', '||return||', 'george:', 'yep', '||comma||', 'this', 'one', 'for', 'our', 'side', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'what', 'is', 'that', 'creaking', '||comma||', 'its', 'like', "i'm", 'in', 'the', 'hold', 'of', 'a', 'ship', '||period||', 'gotta', 'relax', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'startled', '||dash||', 'eyes', 'wide', 'open', '||rightparen||', 'hello', '||comma||', 'is', 'somebody', 'there', '||questionmark||', '||leftparen||', 'scurrying', 'sound', '||rightparen||', 'mr', '||period||', '||dash||', 'mr', '||period||', 'marbles', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'i', 'told', 'ipswitch', "i'd", 'have', 'the', 'hat', 'by', 'this', 'afternoon', '||period||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'should', 'sleep', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'buddy', '||period||', "i'm", 'on', 'no', 'sleep', '||comma||', 'no', 'sleep', '||exclammark||', '||period||', 'you', "don't", 'know', 'what', "it's", 'like', 'in', 'there', '||comma||', 'all', 'night', 'long', 'things', 'are', 'creaking', 'and', 'cracking', '||period||', 'and', 'that', 'red', 'light', 'is', 'burning', 'my', 'brain', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'look', 'a', 'little', 'stressed', '||period||', '||return||', '||return||', 'jerry:', 'oh', "i'm", 'stressed', '||exclammark||', '||leftparen||', 'makes', 'like', 'kramer', '||comma||', 'outstretching', 'his', 'arm', '||period||', 'jerry', 'heads', 'for', 'the', 'freezer', 'for', 'some', 'ice', 'cream', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', 'kramer', 'what', 'am', 'i', 'supposed', 'to', 'do', '||questionmark||', 'if', 'i', "don't", 'have', 'that', 'fur', 'hat', 'by', 'four', "o'clock", "they're", 'gonna', 'take', 'me', 'down', 'like', 'nixon', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'my', 'friend', 'bob', 'sacamano', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'he', 'was', "kramer's", 'friend', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'he', 'called', 'last', 'night', 'about', '3', 'a', '||period||', 'm', '||period||', 'and', 'we', 'got', 'to', 'talking', '||comma||', 'he', 'sells', 'russian', 'hats', 'down', 'at', 'battery', 'park', '||comma||', 'forty', 'bucks', '||period||', '||return||', '||return||', 'elaine:', 'forty', 'bucks', '||questionmark||', 'are', 'they', 'sable', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'the', 'difference', 'is', 'negligible', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yea', '||comma||', 'i', 'like', 'this', 'idea', '||period||', '||leftparen||', 'sounding', 'very', 'much', 'like', 'jerry', '||rightparen||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'lets', 'give', 'it', 'a', 'shot', '||comma||', 'lets', 'go', '||period||', '||return||', '||return||', 'jerry:', 'giddee', 'up', '||exclammark||', '||return||', '||return||', 'newman:', "it's", 'getting', 'cold', '||comma||', "it's", 'getting', 'cold', '||period||', '||return||', '||return||', 'kramer:', 'that', 'was', 'a', 'close', 'one', '||period||', '||return||', '||return||', 'newman:', 'well', 'why', 'do', 'we', 'have', 'to', 'keep', 'this', 'from', 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'if', 'jerry', 'finds', 'out', 'that', "i'm", 'hooked', 'on', "roger's", 'chicken', "i'm", 'back', 'there', 'with', 'the', 'red', 'menace', '||period||', '||return||', '||return||', 'ipswitch:', 'ms', '||period||', 'benes', 'the', 'hat', 'you', 'charged', 'to', 'the', 'company', 'was', 'sable', '||comma||', 'this', 'is', 'nutria', '||period||', '||return||', '||return||', 'elaine:', 'w', '||dash||', 'w', '||dash||', 'well', '||comma||', "that's", 'a', '||dash||', 'ah', '||comma||', 'its', 'kind', 'of', 'sable', '||period||', '||return||', '||return||', 'ipswitch:', 'no', '||comma||', 'its', 'a', 'kind', 'of', 'rat', '||period||', '||return||', '||return||', 'elaine:', "that's", 'a', 'rat', 'hat', '||questionmark||', '||return||', '||return||', 'ipswitch:', 'and', 'a', 'poorly', 'made', 'one', '||comma||', 'even', 'by', 'rat', 'hat', 'standards', '||period||', 'i', 'have', 'no', 'choice', 'but', 'to', 'recommend', 'your', 'prompt', 'termination', 'to', 'the', 'board', 'of', 'directors', '||period||', 'nothing', 'short', 'of', 'the', 'approval', 'of', 'peterman', 'himself', 'will', 'save', 'you', 'this', 'time', '||period||', '||return||', '||return||', 'elaine:', 'but', '||comma||', 'but', '||comma||', "he's", 'in', 'the', 'burmese', 'jungle', '||period||', '||return||', '||return||', 'ipswitch:', 'and', 'quite', 'mad', 'too', 'from', 'what', 'i', 'hear', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', 'can', 'i', 'fire', 'you', '||questionmark||', '||return||', '||return||', 'ipswitch:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'so', 'heather', 'called', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'but', 'get', 'this', '||comma||', 'the', 'message', 'said', "'call", 'me', 'if', 'you', 'have', 'the', "time'", '||period||', 'heh', 'heh', 'if', 'i', 'have', 'the', 'time', '||comma||', 'you', 'get', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'but', 'this', 'is', 'all', 'very', 'exciting', '||period||', '||leftparen||', 'sounding', 'very', 'much', 'like', 'jerry', '||rightparen||', '||return||', '||return||', 'george:', 'she', 'knows', 'that', 'i', 'have', 'her', 'clock', '||period||', 'i', 'know', 'that', 'she', 'has', 'my', 'hat', '||period||', 'i', 'think', "she's", 'getting', 'ready', 'to', 'make', 'an', 'exchange', '||period||', '||return||', '||return||', 'kramer:', 'well', 'there', 'is', 'the', 'possibility', 'that', "you've", 'gone', 'right', 'out', 'of', 'your', 'mind', '||period||', '||return||', '||return||', 'george:', "i've", 'looked', 'at', 'that', '||comma||', 'seems', 'unlikely', '||period||', '||return||', '||return||', 'kramer:', "i'd", 'look', 'again', '||period||', 'so', 'ah', '||comma||', 'how', 'come', 'you', "didn't", 'call', 'jerry', 'about', 'all', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'i', "can't", 'talk', 'to', 'jerry', 'anymore', '||period||', 'ever', 'since', 'he', 'moved', 'into', 'that', 'apartment', "he's", 'too', 'much', '||period||', '||period||', '||period||', 'like', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hmm', '||period||', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'jerry:', 'seth', '||comma||', "you're", 'the', 'manager', '||comma||', "can't", 'you', 'turn', 'off', 'that', 'sign', '||questionmark||', '||return||', '||return||', 'seth:', 'jerry', 'i', 'lied', '||period||', "i'm", 'just', 'an', 'assistant', 'manager', '||period||', '||return||', '||return||', 'seth:', '||leftparen||', 'on', 'loud', 'speaker', '||rightparen||', 'number', 'sixty', 'seven', '||comma||', 'family', 'feast', '||period||', '||return||', '||return||', 'newman:', 'number', '67', '||comma||', 'right', 'here', '||comma||', 'right', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', 'newman', '||period||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'seth:', 'and', "don't", 'forget', 'your', 'steamed', 'broccoli', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'it', '||period||', 'broccoli', '||questionmark||', 'newman', '||comma||', 'you', "wouldn't", 'eat', 'broccoli', 'if', 'it', 'was', 'deep', 'fried', 'in', 'chocolate', 'sauce', '||period||', '||return||', '||return||', 'newman:', 'i', 'love', '||period||', '||period||', 'broccoli', '||comma||', 'its', '||comma||', 'good', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'then', 'maybe', "you'd", 'like', 'to', 'have', 'a', 'piece', '||questionmark||', '||return||', '||return||', 'newman:', 'gladly', '||period||', '||leftparen||', 'starts', 'munching', 'on', 'the', 'broccoli', '||comma||', 'then', 'spits', 'it', 'out', '||rightparen||', '||return||', '||return||', 'newman:', 'vile', 'weed', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'kramer', "isn't", 'it', '||questionmark||', 'i', 'knew', 'it', '||exclammark||', 'the', 'greasy', 'door', 'knob', 'the', 'constant', 'licking', 'of', 'the', 'fingers', '||comma||', "he's", 'hooked', 'to', 'the', 'chicken', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'yes', '||comma||', 'now', 'please', '||period||', 'someone', '||comma||', 'honey', 'mustard', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||comma||', 'what', 'took', 'you', '||period||', '||period||', '||period||', 'ah', 'hey', '||comma||', 'hey', '||return||', '||return||', 'jerry:', 'expecting', 'newman', '||questionmark||', "that's", 'funny', 'because', 'i', 'just', 'happened', 'upon', 'him', 'down', 'at', 'the', 'kenny', "roger's", 'roasters', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'shh', '||comma||', 'kenny', "roger's", '||questionmark||', 'whew', '||comma||', 'boy', '||comma||', 'i', 'hate', 'that', 'place', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'buying', 'quite', 'a', 'load', 'of', 'chicken', '||comma||', 'almost', 'for', 'two', 'people', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'as', 'long', 'as', 'one', 'of', 'them', 'is', 'not', 'him', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughs', '||rightparen||', 'oh', 'hey', '||comma||', 'you', 'know', 'elaine', '||comma||', 'ah', 'she', 'stopped', 'by', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'ha', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'yeah', 'dropped', 'off', 'that', 'bob', 'sacamano', 'hat', '||period||', 'oh', "she's", 'ah', '||comma||', 'upset', 'at', 'him', '||comma||', 'oh', 'yes', 'siree', '||period||', 'yeah', 'well', 'thanks', 'for', 'stopping', 'by', '||period||', '||return||', '||return||', 'jerry:', 'i', 'sure', 'do', 'miss', 'my', 'apartment', '||period||', 'maybe', "i'll", 'switch', 'back', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'you', "don't", 'want', 'to', 'think', 'about', 'that', 'no', 'sir', '||period||', 'otherwise', "i'd", 'have', 'no', 'choice', 'but', 'to', 'put', 'that', 'banner', 'back', 'up', 'and', 'eh', '||comma||', 'he', '||dash||', 'he', '||dash||', 'hwow', '||comma||', 'run', 'that', "roger's", 'right', 'out', 'of', 'town', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'you', 'will', '||period||', 'as', 'a', 'matter', 'of', 'fact', "i'll", 'save', 'you', 'the', 'trouble', '||period||', "i'll", 'do', 'it', 'myself', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', 'go', 'ahead', 'yeah', '||comma||', 'put', 'the', 'banner', 'up', "doesn't", 'matter', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||leftparen||', 'opens', 'door', '||dash||', 'red', 'light', 'floods', 'hallway', '||dash||', 'a', 'buzzing', 'sound', 'emanates', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'no', 'jerry', '||exclammark||', 'i', '||dash||', 'i', 'need', 'that', 'chicken', '||comma||', 'i', 'gotta', 'have', 'that', 'chicken', '||period||', 'now', 'you', 'leave', 'those', 'roasters', 'alone', '||period||', 'kenny', 'never', 'hurt', 'anybody', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'little', 'problem', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'i', 'got', 'a', 'big', 'problem', 'jerry', '||exclammark||', '||return||', '||return||', 'boy:', 'here', '||comma||', 'kneel', 'here', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'boy:', 'kneel', '||period||', '||return||', '||return||', 'elaine:', 'kneel', '||questionmark||', '||return||', '||return||', 'peterman:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||period||', '||return||', '||return||', 'peterman:', 'jaba', '||exclammark||', 'bagama', 'ma', 'jaba', '||period||', 'olymala', 'hungui', '||period||', '||leftparen||', 'the', 'boy', 'runs', 'out', 'of', 'the', 'room', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'speak', 'burmese', '||questionmark||', '||return||', '||return||', 'peterman:', 'no', 'elaine', '||comma||', 'that', 'was', 'gibberish', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||return||', '||return||', 'peterman:', 'so', 'did', 'you', 'have', 'any', 'trouble', 'finding', 'the', 'place', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "you're", 'the', 'only', '||comma||', 'white', 'poet', 'warlord', 'in', 'the', 'neighborhood', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'peterman:', 'are', 'you', 'an', 'assassin', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', '||dash||', 'i', 'work', 'for', 'your', 'mail', 'order', 'catalog', '||period||', '||return||', '||return||', 'peterman:', "you're", 'an', 'errand', 'girl', '||comma||', 'sent', 'by', 'grocery', 'clerks', '||comma||', 'to', 'collect', 'a', 'bill', '||period||', '||return||', '||return||', 'elaine:', 'well', 'actually', 'um', '||comma||', 'i', 'do', 'have', 'a', 'bill', 'here', '||period||', 'if', 'you', 'could', 'just', 'sign', '||comma||', 'this', 'expense', 'form', '||comma||', 'i', 'think', 'i', 'could', 'still', 'make', 'the', 'last', 'fan', 'boat', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'peterman:', "i'd", 'be', 'happy', 'to', 'elaine', '||leftparen||', 'he', 'starts', 'reading', 'the', 'form', 'as', 'she', 'hands', 'him', 'a', 'pen', '||rightparen||', '||period||', '||period||', '||period||', 'but', 'i', 'will', 'have', 'to', 'see', 'this', 'hat', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', '||period||', '||period||', '||leftparen||', 'nodding', '||rightparen||', '||return||', '||return||', 'george:', 'so', 'how', 'do', 'you', 'want', 'to', 'do', 'this', '||questionmark||', '||return||', '||return||', 'heather:', 'alright', 'george', '||comma||', "i'll", 'be', 'honest', '||period||', 'the', 'first', 'time', 'we', 'went', 'out', '||comma||', 'i', 'found', 'you', 'very', 'irritating', '||period||', 'but', 'after', 'seeing', 'you', 'a', 'couple', 'of', 'times', '||comma||', 'you', 'sorta', 'got', 'stuck', 'in', 'my', 'head', '||comma||', '||leftparen||', 'sings', '||rightparen||', 'ca', '||dash||', 'stan', '||dash||', 'za', '||exclammark||', '||leftparen||', 'like', '||quotemark||', 'by', 'mennen', '||quotemark||', '||rightparen||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'george:', 'so', 'you', '||dash||', 'you', 'really', "don't", 'have', 'my', 'hat', '||questionmark||', '||return||', '||return||', 'heather:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'le', '||dash||', "let's", 'go', 'do', '||comma||', 'something', '||period||', '||return||', '||return||', 'heather:', "what's", 'in', 'the', 'bag', '||questionmark||', '||return||', '||return||', 'george:', 'oh', "that's", 'eh', '||comma||', "that's", 'a', 'sandwich', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'ah', '||leftparen||', 'picks', 'up', 'the', 'bag', '||rightparen||', 'damn', 'salami', '||period||', '||return||', '||return||', 'heather:', '||leftparen||', 'grabs', 'the', 'bag', '||rightparen||', 'my', 'clock', '||comma||', 'you', 'stole', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'that', 'damn', 'delicatessen', 'that', '||dash||', 'that', 'is', 'last', 'time', 'they', 'screw', 'up', 'one', 'of', 'my', 'orders', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'seth', '||period||', 'man', 'it', 'is', 'coming', 'down', 'hard', 'out', 'there', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'gross', '||period||', "that's", 'not', 'gonna', 'be', 'good', 'for', 'business', '||period||', '||return||', '||return||', 'seth:', "that's", 'not', 'gonna', 'be', 'good', 'for', 'anybody', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'his', 'mouth', 'is', 'very', 'full', '||rightparen||', 'kenny', '||questionmark||', '||period||', '||period||', '||period||', 'kenny', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', 'and', 'staring', 'across', 'the', 'street', '||rightparen||', 'kenny', '||period||', '||period||', '||period||', '||period||', 'kenny', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'kenny', '||return||', '||return||', 'jerry:', 'home', 'at', 'last', '||period||', 'ahhhh', '||period||', '||leftparen||', 'light', 'turns', 'off', '||rightparen||', '||return||', '||return||', 'jerry:', 'is', 'someone', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'mr', '||period||', 'marbles', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'the', 'urban', 'sombrero', '||comma||', 'i', 'put', 'it', 'on', 'the', 'last', 'catalog', 'cover', '||period||', '||return||', '||return||', 'peterman:', 'the', 'horror', '||period||', '||period||', '||period||', 'the', 'horror', '||period||', '||return||', '||return||', 'definitions', 'of', 'several', 'items', 'in', 'the', 'chicken', 'roaster', 'episode:', 'nan', '||return||', '||return||', 'http:', '//www', '||period||', 'nutria', '||period||', 'com/site', '||period||', 'php', '||return||', '||return||', 'http:', '//www', '||period||', 'nationaltrappers', '||period||', 'com/nutria', '||period||', 'html', '||return||', '||return||', 'george:', 'say', 'you', '||comma||', 'me', '||comma||', 'and', 'kramer', 'are', '||comma||', 'uh', '||comma||', 'flying', 'over', 'the', 'andes', '||period||', '||return||', '||return||', 'jerry:', 'why', 'are', 'we', "flyin'", 'over', 'the', 'andes', '||questionmark||', '||return||', '||return||', 'george:', 'we', 'got', 'a', 'soccer', 'game', 'in', 'chile', '||period||', 'anyway', '||comma||', 'the', 'plane', 'crashes', '||period||', 'who', 'are', 'you', 'gonna', 'eat', 'to', 'survive', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||return||', '||return||', 'george:', 'so', 'fast', '||questionmark||', 'what', 'about', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', "kramer's", 'so', 'stringy', '||period||', "i'm", 'plump', '||comma||', 'juicy', '||period||', '||return||', '||return||', 'jerry:', "kramer's", 'got', 'more', 'muscle', '||comma||', 'higher', 'protein', 'content', '||period||', "it's", 'better', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'would', 'eat', 'you', '||period||', '||return||', '||return||', 'jerry:', "that's", 'very', 'nice', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'george:', 'i', 'still', "don't", 'see', 'why', 'you', "wouldn't", 'eat', 'me', '||period||', "i'm", 'your', 'best', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'if', 'other', 'people', 'are', 'having', 'some', '||comma||', "i'll", 'try', 'you', '||period||', '||return||', '||return||', 'george:', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', 'can', 'i', 'have', 'a', 'piece', 'of', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'louise:', 'george', '||comma||', 'i', "can't", 'have', 'sex', '||period||', '||return||', '||return||', 'george:', 'with', 'me', 'or', 'in', 'general', '||questionmark||', '||return||', '||return||', 'louise:', 'i', 'went', 'to', 'the', 'doctor', 'today', '||period||', 'i', 'have', 'mono', '||period||', '||return||', '||return||', 'george:', 'nucleosis', '||period||', '||return||', '||return||', 'louise:', 'oh', 'i', 'hope', "it's", 'not', 'a', 'problem', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'pff', '||period||', '||period||', '||period||', '||return||', '||return||', 'louise:', 'how', 'long', 'is', 'this', 'not', 'gonna', 'be', 'a', 'problem', 'for', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'six', 'weeks', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'six', 'weeks', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', 'what', '||questionmark||', "you've", 'gone', 'six', 'weeks', 'before', '||period||', '||return||', '||return||', 'george:', 'i', 'can', 'do', 'six', 'weeks', "standin'", 'on', 'my', 'head', '||period||', "i'm", 'a', 'sexual', 'camel', '||period||', "that's", 'not', 'the', 'point', '||period||', 'at', 'least', 'there', 'was', 'the', 'possibility', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', '||comma||', 'are', 'you', 'gonna', 'break', 'up', 'with', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'i', "don't", 'wanna', 'be', 'one', 'of', 'those', 'guys', '||period||', '||return||', '||return||', 'jerry:', 'what', 'guys', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'us', '||period||', '||leftparen||', 'elaine', 'enters', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', "it's", 'just', 'mono', '||period||', '||return||', '||return||', 'elaine:', 'mono', '||questionmark||', 'huh', '||comma||', 'well', '||comma||', 'if', 'anyone', 'needs', 'any', 'medical', 'advise', '||comma||', 'elaine', 'met', 'a', 'doctor', '||period||', 'and', "he's", 'unattached', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'the', 'whole', 'dream', 'of', 'dating', 'a', 'doctor', 'was', 'debunked', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "it's", 'not', 'debunked', '||comma||', "it's", 'totally', 'bunk', '||period||', '||return||', '||return||', 'jerry:', "isn't", 'bunk', 'bad', '||questionmark||', 'like', '||comma||', "that's", 'a', 'lot', 'of', 'bunk', '||period||', '||return||', '||return||', 'george:', 'no', 'something', 'is', 'bunk', 'and', 'then', 'you', 'debunk', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', '||period||', '||leftparen||', 'pause', 'as', 'they', 'all', 'look', 'down', '||rightparen||', '||return||', '||return||', 'elaine:', 'look', 'it', '||comma||', "i'm", 'dating', 'a', 'doctor', 'and', 'i', 'like', 'it', '||period||', "let's", 'just', 'move', 'on', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'katie:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', '||comma||', 'katie', '||period||', '||return||', '||return||', 'katie:', 'listen', '||comma||', 'something', 'just', 'came', 'up', 'for', 'tuesday', 'at', 'the', 'dayton', 'civic', 'center', '||period||', "that's", 'ohio', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "i've", 'heard', 'of', 'ohio', '||comma||', 'katie', '||period||', 'but', "tuesday's", 'no', 'good', '||period||', "i'm", "doin'", 'career', 'day', 'at', 'my', 'old', 'junior', 'high', '||period||', '||return||', '||return||', 'katie:', 'okay', '||comma||', 'jerry', '||period||', "that's", 'fine', '||period||', "you're", 'the', 'boss', '||period||', 'katie', 'works', 'for', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'all', 'right', '||comma||', 'katie', '||period||', '||return||', '||return||', 'katie:', 'sorry', 'for', 'the', 'late', 'notice', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'bye', '||period||', '||return||', '||return||', 'katie:', "you're", 'the', '||dash||', '||dash||', '||leftparen||', 'he', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'george:', 'they', 'asked', 'you', 'to', 'do', 'career', 'day', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'no', 'big', 'deal', '||period||', '||return||', '||return||', 'george:', 'oh', 'with', 'all', 'due', 'respect', '||comma||', 'i', 'went', 'there', 'too', '||comma||', 'and', 'i', 'work', 'for', 'a', 'team', 'that', 'just', 'won', 'the', 'world', 'series', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'were', 'integral', '||period||', '||return||', '||return||', 'teacher:', 'jerry', '||comma||', 'it', 'was', 'so', 'nice', 'of', 'you', 'to', 'come', 'down', 'here', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'on', 'next', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'teacher:', 'well', '||comma||', 'unfortunately', '||comma||', 'mr', '||period||', "o'meary", 'from', 'the', 'bronx', 'zoo', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'the', 'guy', 'with', 'the', 'lizard', '||period||', '||return||', '||return||', 'teacher:', 'yes', '||period||', 'well', '||comma||', 'he', 'started', "feedin'", 'it', 'crickets', '||comma||', 'and', 'the', 'children', 'just', 'love', 'him', '||period||', 'and', "we're", 'outta', 'time', '||period||', '||return||', '||return||', 'teacher:', 'so', 'can', 'you', 'come', 'back', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'getting', 'bumped', '||questionmark||', "you're", 'bumping', 'me', 'from', 'career', 'day', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'do', 'most', 'doctors', 'like', 'er', 'or', 'do', 'you', 'guys', 'just', 'think', "it's", 'fake', '||questionmark||', '||return||', '||return||', 'ben:', 'i', "couldn't", 'tell', 'you', '||period||', 'you', 'know', '||comma||', "i'm", 'not', 'really', 'a', 'doctor', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'and', "i'm", 'not', 'really', 'attracted', 'to', 'you', '||period||', '||return||', '||return||', 'ben:', 'well', '||comma||', "i'm", 'serious', '||comma||', 'elaine', '||period||', 'i', 'went', 'to', 'medical', 'school', '||comma||', 'but', 'i', 'still', 'have', 'to', 'pass', 'my', 'licensing', 'exam', '||period||', '||return||', '||return||', 'elaine:', 'when', 'do', 'you', 'take', 'this', 'exam', '||questionmark||', '||return||', '||return||', 'ben:', "i've", 'taken', 'it', '||period||', 'three', 'times', '||period||', 'i', 'almost', 'passed', 'the', 'last', 'one', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "you're", 'basically', 'a', 'doctor', '||period||', 'right', '||questionmark||', 'i', 'mean', '||comma||', 'people', 'do', 'call', 'you', 'doctor', '||period||', '||return||', '||return||', 'ben:', 'well', '||comma||', 'um', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'can', 'i', 'introduce', 'you', 'as', 'doctor', '||questionmark||', '||return||', '||return||', 'ben:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "that's", 'all', 'i', 'wanted', 'to', 'know', '||period||', '||return||', '||return||', 'louise:', 'mono', '||period||', '||leftparen||', 'george', 'removes', 'hand', '||rightparen||', '||return||', '||return||', 'george:', 'it', 'was', 'fantastic', '||comma||', 'jerry', '||period||', 'we', 'wound', 'up', 'talking', 'all', 'night', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'enjoying', 'the', 'not', 'enjoying', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'just', 'by', 'conversing', '||comma||', 'you', 'can', 'really', 'learn', 'a', 'lot', 'about', 'a', 'person', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'finding', 'that', 'out', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'buddy', '||period||', 'how', 'was', 'career', 'day', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'i', "didn't", 'get', 'on', '||period||', 'the', 'lizard', 'guy', 'went', 'long', '||period||', '||return||', '||return||', 'george:', 'you', 'got', 'bumped', 'from', 'career', 'day', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'mix', '||dash||', 'up', '||comma||', "i'm", 'sure', '||period||', '||return||', '||return||', 'kramer:', "they're", 'trying', 'to', 'screw', 'with', 'your', 'head', '||period||', '||return||', '||return||', 'jerry:', 'now', 'why', 'would', 'a', 'junior', 'high', 'school', 'want', 'to', 'screw', 'with', 'my', 'head', '||questionmark||', '||return||', '||return||', 'kramer:', 'why', 'does', 'radio', 'shack', 'ask', 'for', 'your', 'phone', 'number', 'when', 'you', 'buy', 'batteries', '||questionmark||', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||period||', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'you', "can't", 'smoke', 'in', 'here', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'come', 'on', '||period||', '||leftparen||', 'larry', 'the', 'cook', 'comes', 'over', '||rightparen||', '||return||', '||return||', 'larry:', 'take', 'it', 'outside', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'larry', '||period||', 'you', 'know', 'me', '||period||', '||return||', '||return||', 'larry:', 'it', 'bothers', 'people', '||comma||', 'and', "it's", 'against', 'the', 'law', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'make', 'all', 'the', 'laws', 'you', 'want', '||comma||', "he's", 'still', 'gonna', 'bother', 'people', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'did', 'they', 'kick', 'you', 'out', 'too', '||questionmark||', '||return||', '||return||', 'man:', 'yeah', '||comma||', 'they', 'kicked', 'us', 'all', 'out', '||period||', '||return||', '||return||', 'teacher:', 'thanks', 'so', 'much', 'for', 'coming', 'back', '||comma||', 'jerry', '||period||', 'care', 'for', 'a', 'graham', 'cracker', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "let's", 'just', 'do', 'it', '||period||', '||leftparen||', 'fire', 'alarm', 'goes', 'off', '||rightparen||', 'what', '||questionmark||', 'what', 'is', 'going', 'on', '||questionmark||', 'what', 'is', 'that', 'about', '||questionmark||', '||return||', '||return||', 'teacher:', 'fire', 'drill', '||period||', 'sorry', '||period||', 'single', 'file', 'everyone', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'i', 'was', 'promised', 'this', 'slot', '||period||', '||return||', '||return||', 'teacher:', 'single', 'file', '||comma||', 'jerry', '||period||', '||leftparen||', 'jerry', 'joins', 'the', 'line', '||rightparen||', '||return||', '||return||', 'jerry:', 'fire', 'drill', '||comma||', 'can', 'you', 'believe', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'is', 'pericles', '||questionmark||', '||return||', '||return||', 'alex', 'trebek:', 'pericles', 'is', 'correct', '||period||', '||return||', '||return||', 'jerry:', 'like', 'fire', 'in', 'a', 'school', 'is', 'such', 'a', 'big', 'deal', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'got', 'any', 'matches', '||questionmark||', '||return||', '||return||', 'jerry:', 'middle', 'drawer', '||period||', '||return||', '||return||', 'george:', 'who', 'is', 'sir', 'arthur', 'conan', 'doyle', '||questionmark||', '||return||', '||return||', 'alex', 'trebek:', 'we', 'were', 'looking', 'for', "'who", 'is', 'sir', 'arthur', 'conan', 'doyle', '||period||', "'", '||return||', '||return||', 'kramer:', 'thanks', '||period||', '||leftparen||', 'kramer', 'leaves', '||comma||', 'phone', 'rings', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'katie:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', '||comma||', 'katie', '||period||', '||return||', '||return||', 'katie:', 'i', 'heard', 'what', 'happened', 'to', 'the', 'junior', 'high', '||period||', 'they', "can't", 'bump', 'you', 'like', 'that', '||period||', 'that', 'is', 'so', 'unprofessional', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'relax', '||comma||', 'katie', '||period||', "it's", 'not', 'a', 'problem', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'borax', '||questionmark||', '||return||', '||return||', 'alex', 'trebek:', 'yes', '||comma||', "you're", 'right', '||period||', '||return||', '||return||', 'katie:', 'they', 'bump', 'you', 'in', 'junior', 'high', '||comma||', 'the', 'next', 'thing', 'you', 'know', "you're", 'being', 'bumped', 'in', 'high', 'schools', '||comma||', 'colleges', '||comma||', 'trade', 'schools', '||period||', 'before', 'you', 'know', 'it', '||comma||', "letterman's", 'not', 'returning', 'your', 'calls', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'ashtrays', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', "don't", 'have', 'any', 'ashtrays', '||period||', '||return||', '||return||', 'kramer:', 'ooh', '||comma||', 'cereal', 'bowls', '||period||', '||return||', '||return||', 'katie:', 'jerry', '||comma||', 'now', "don't", 'freak', 'out', '||comma||', "i'll", 'take', 'care', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'katie', '||comma||', "don't", '||dash||', '||dash||', '||leftparen||', 'he', 'hangs', 'up', 'phone', '||rightparen||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'thanks', '||period||', '||leftparen||', 'kramer', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'is', 'tungsten', 'or', 'wolfram', '||questionmark||', '||return||', '||return||', 'alex', 'trebek:', 'we', 'were', 'looking', 'for', "'what", 'is', 'tungsten', '||comma||', 'or', "wolfram'", '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'a', 'repeat', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'just', 'lately', '||comma||', "i've", 'been', 'thinking', 'a', 'lot', 'clearer', '||period||', 'like', 'this', 'afternoon', '||comma||', '||leftparen||', 'to', 'television', '||rightparen||', 'what', 'is', 'chicken', 'kiev', '||comma||', '||leftparen||', 'back', 'to', 'jerry', '||rightparen||', 'i', 'really', 'enjoyed', 'watching', 'a', 'documentary', 'with', 'louise', '||period||', '||return||', '||return||', 'jerry:', 'louise', '||exclammark||', "that's", "what's", "doin'", 'it', '||period||', "you're", 'no', 'longer', 'pre', '||dash||', 'occupied', 'with', 'sex', '||comma||', 'so', 'your', 'mind', 'is', 'able', 'to', 'focus', '||period||', '||return||', '||return||', 'george:', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'i', 'mean', '||comma||', "let's", 'say', 'this', 'is', 'your', 'brain', '||period||', '||leftparen||', 'holds', 'lettuce', 'head', '||rightparen||', 'okay', '||comma||', 'from', 'what', 'i', 'know', 'about', 'you', '||comma||', 'your', 'brain', 'consists', 'of', 'two', 'parts', 'the', 'intellect', '||comma||', 'represented', 'here', '||leftparen||', 'pulls', 'off', 'tiny', 'piece', 'of', 'lettuce', '||rightparen||', '||comma||', 'and', 'the', 'part', 'obsessed', 'with', 'sex', '||period||', '||leftparen||', 'shows', 'large', 'piece', '||rightparen||', 'now', 'granted', '||comma||', 'you', 'have', 'extracted', 'an', 'astonishing', 'amount', 'from', 'this', 'little', 'scrap', '||period||', 'but', 'with', 'no', '||dash||', 'sex', '||dash||', 'louise', '||comma||', 'this', 'previously', 'useless', 'lump', '||comma||', 'is', 'now', 'functioning', 'for', 'the', 'first', 'time', 'in', 'its', 'existence', '||period||', '||leftparen||', 'eats', 'tiny', 'piece', 'of', 'lettuce', '||rightparen||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', 'i', 'just', 'remembered', 'where', 'i', 'left', 'my', 'retainer', 'in', 'second', 'grade', '||period||', "i'll", 'see', 'ya', '||period||', '||leftparen||', 'he', 'throws', 'finished', "rubik's", 'cube', 'to', 'jerry', 'and', 'he', 'exits', '||period||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'need', 'some', 'more', 'matches', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', "goin'", 'on', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'met', 'some', 'people', 'smoking', 'on', 'the', 'street', '||comma||', 'so', 'i', 'invited', 'them', 'up', 'to', 'my', 'apartment', 'to', 'smoke', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'somebody', 'had', 'to', '||period||', 'you', 'know', '||comma||', 'just', 'because', 'a', "person's", 'a', 'smoker', '||comma||', 'that', "doesn't", 'mean', "he's", 'not', 'a', 'human', 'being', '||period||', '||return||', '||return||', 'jerry:', 'it', "doesn't", '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'can', 'confine', 'them', '||comma||', 'you', 'can', 'punish', 'them', '||comma||', 'you', 'can', 'cram', 'them', 'into', 'the', 'corner', '||comma||', 'but', "they're", 'not', 'going', 'away', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'so', 'when', "they're", 'handing', 'you', 'those', 'cadavers', '||comma||', 'do', 'you', 'get', 'to', 'choose', 'whether', "it's", 'a', 'man', 'or', 'a', 'woman', '||questionmark||', '||return||', '||return||', 'ben:', 'i', 'dunno', '||period||', 'dead', 'bodies', 'really', 'gross', 'me', 'out', '||period||', '||leftparen||', 'sue', 'ellen', 'mischke', 'enters', 'with', 'a', 'man', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'ben:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'sue', 'ellen', 'mischke', '||comma||', 'this', 'old', 'braless', 'friend', 'i', 'hate', '||period||', '||leftparen||', 'elaine', 'tries', 'to', 'cover', 'her', 'face', '||rightparen||', '||return||', '||return||', 'sue', 'ellen:', 'elaine', '||questionmark||', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'hi', '||comma||', 'sue', 'ellen', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'oh', 'rick', '||comma||', 'this', 'is', 'an', 'old', '||comma||', 'old', '||comma||', 'friend', 'of', 'mine', '||comma||', 'elaine', 'benes', '||period||', 'rick', 'is', 'a', 'periodontist', '||period||', 'he', 'does', "giuliani's", 'gums', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', 'is', 'my', 'boyfriend', '||comma||', 'doctor', 'ben', 'gelfen', '||period||', '||return||', '||return||', 'ben:', 'well', '||comma||', "i'm", 'an', 'intern', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'stop', 'kidding', 'me', '||period||', "he's", 'a', 'doctor', '||period||', "he's", 'a', 'very', 'good', 'doctor', '||period||', '||return||', '||return||', 'woman:', "carlitto's", 'just', 'passed', 'out', '||period||', 'can', 'anyone', 'help', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "there's", 'a', 'doctor', 'right', 'here', '||period||', '||return||', '||return||', 'ben:', 'no', "there's", 'not', '||period||', '||return||', '||return||', 'elaine:', "can't", 'you', 'at', 'least', 'tell', 'him', 'what', 'to', 'do', '||questionmark||', '||return||', '||return||', 'ben:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', "shouldn't", 'he', 'elevate', 'his', 'legs', '||questionmark||', '||return||', '||return||', 'ben:', 'right', '||period||', 'elevate', 'your', 'legs', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'hope', 'carlitto', 'feels', 'better', '||period||', 'ben', 'really', 'wishes', 'he', "could've", 'helped', '||period||', '||return||', '||return||', 'larry:', 'i', 'thought', 'he', 'was', 'a', 'doctor', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'he', 'is', '||period||', 'kind', 'of', '||period||', 'i', 'mean', '||comma||', 'i', 'call', 'him', 'doctor', '||period||', '||leftparen||', 'she', 'walks', 'away', 'and', 'sees', 'george', 'sitting', 'down', 'reading', 'books', '||rightparen||', 'george', '||period||', '||leftparen||', 'he', 'holds', 'up', 'his', 'hand', 'to', 'signal', 'her', 'to', 'wait', 'a', 'second', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', 'absolute', 'zero', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'is', 'with', 'all', 'these', 'books', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'stopped', 'having', 'sex', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'll", 'see', 'ya', 'bill', '||period||', 'all', 'right', '||comma||', 'i', 'got', 'room', 'for', 'two', '||comma||', 'but', 'the', 'only', 'thing', 'i', 'have', 'is', 'in', 'the', 'non', '||dash||', 'filter', 'section', '||period||', '||leftparen||', 'jerry', 'enters', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'wh', '||dash||', "what'd", 'you', 'got', '||comma||', 'a', "smoker's", 'lounge', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'people', 'really', 'seem', 'to', 'be', 'enjoying', 'themselves', '||period||', 'you', 'know', '||comma||', 'they', 'come', 'in', 'once', '||comma||', "it's", 'like', "they're", 'addicted', '||period||', '||leftparen||', 'katie', 'enters', '||rightparen||', '||return||', '||return||', 'katie:', 'jerry', '||comma||', 'oh', 'there', 'you', 'are', '||period||', 'you', "didn't", 'answer', 'the', 'phone', '||period||', '||return||', '||return||', 'jerry:', 'i', 'was', 'out', '||period||', '||return||', '||return||', 'katie:', 'oh', '||period||', 'jerry', '||comma||', 'great', 'news', '||period||', 'i', 'got', 'you', 'an', 'assembly', '||period||', '||return||', '||return||', 'jerry:', 'an', 'assembly', '||questionmark||', '||return||', '||return||', 'katie:', 'two', 'hours', 'in', 'front', 'of', 'the', 'entire', 'junior', 'high', '||comma||', 'grades', 'six', 'through', 'eight', '||period||', "that's", 'six', 'grade', '||comma||', 'seventh', 'grade', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'i', 'understand', '||period||', 'but', 'what', 'am', 'i', 'gonna', 'talk', 'about', 'for', 'two', 'hours', '||questionmark||', '||return||', '||return||', 'katie:', 'and', '||comma||', 'it', 'is', 'already', 'in', 'the', 'school', 'paper', '||period||', 'they', 'cancelled', 'rick', 'james', '||period||', '||return||', '||return||', 'jerry:', 'superfreak', '||questionmark||', '||return||', '||return||', 'katie:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'your', 'answer', 'to', 'number', '74', '||questionmark||', '||return||', '||return||', 'ben:', 'medobolic', 'acidosis', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'hypocalimia', '||comma||', 'not', 'medibolic', 'acidosis', '||period||', 'duh', '||exclammark||', '||return||', '||return||', 'ben:', 'man', '||comma||', "i'm", 'never', 'gonna', 'pass', 'this', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yes', 'you', 'are', '||period||', "we'll", 'just', 'stop', 'having', 'sex', '||period||', '||return||', '||return||', 'george:', 'guys', '||comma||', 'hitting', 'is', 'not', 'about', 'muscle', '||period||', "it's", 'simple', 'physics', '||period||', 'calculate', 'the', 'velocity', '||comma||', 'v', '||comma||', 'in', 'relation', 'to', 'the', 'trajectory', '||comma||', 't', '||comma||', 'in', 'which', 'g', '||comma||', 'gravity', '||comma||', 'of', 'course', 'remains', 'a', 'constant', '||period||', '||leftparen||', 'hits', 'a', 'home', 'run', '||rightparen||', "it's", 'not', 'complicated', '||period||', '||return||', '||return||', 'jeter:', 'now', 'who', 'are', 'you', 'again', '||questionmark||', '||return||', '||return||', 'george:', 'george', 'costanza', '||comma||', 'assistant', 'to', 'the', 'traveling', 'secretary', '||period||', '||return||', '||return||', 'williams:', 'are', 'you', 'the', 'guy', 'who', 'put', 'us', 'in', 'that', 'ramada', 'in', 'milwaukee', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'you', 'wanna', 'talk', 'about', 'hotels', '||comma||', 'or', 'do', 'you', 'wanna', 'win', 'some', 'ball', 'games', '||questionmark||', '||return||', '||return||', 'jeter:', 'we', 'won', 'the', 'world', 'series', '||period||', '||return||', '||return||', 'george:', 'in', 'six', 'games', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'so', 'if', 'you', 'like', 'to', 'tell', 'jokes', '||comma||', 'and', 'love', 'to', 'make', 'people', 'laugh', '||comma||', 'stand', '||dash||', 'up', 'comedy', 'may', 'be', 'the', 'career', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'nine', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'how', 'am', 'i', 'gonna', 'fill', 'two', 'hours', '||questionmark||', '||return||', '||return||', 'george:', 'hello', '||questionmark||', 'i', 'can', 'take', 'an', 'hour', 'off', 'your', 'hands', '||period||', 'give', 'the', 'kids', 'a', 'chance', 'to', 'see', 'a', 'real', 'live', 'yankee', '||period||', '||return||', '||return||', 'jerry:', 'and', 'give', 'you', 'the', 'chance', 'to', 'see', 'some', 'real', 'disappointed', 'kids', '||period||', '||leftparen||', 'waitress', 'comes', 'to', 'table', '||rightparen||', '||return||', '||return||', 'waitress:', 'more', 'coffee', '||questionmark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'darling', '||comma||', 'do', 'i', 'detect', 'a', 'portuguese', 'accent', '||questionmark||', '||return||', '||return||', 'waitress:', 'si', '||return||', '||return||', 'george:', 'das', 'kaffes', 'un', 'salat', 'e', 'grand', 'por', 'favor', '||period||', '||return||', '||return||', 'waitress:', 'mute', 'pragalas', 'senor', '||return||', '||return||', 'george:', 'eh', '||comma||', "don't", 'mention', 'it', '||period||', '||return||', '||return||', 'elaine:', 'portuguese', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'my', 'cleaning', "lady's", 'portuguese', '||period||', 'i', "must've", 'picked', 'it', 'up', '||period||', '||return||', '||return||', 'elaine:', 'how', 'come', "he's", "gettin'", 'so', 'smart', '||questionmark||', 'i', 'stopped', 'having', 'sex', 'with', 'ben', 'three', 'days', 'ago', 'and', 'i', "don't", 'know', 'no', 'portuguese', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'all', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', "it's", 'just', 'the', 'last', 'coupla', 'days', 'my', 'mind', 'has', 'been', '||comma||', 'not', 'good', '||period||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'i', 'know', "what's", 'happening', '||period||', 'the', 'no', 'sex', 'thing', 'is', 'having', 'a', 'reverse', 'effect', 'on', 'you', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'to', 'a', 'woman', '||comma||', 'sex', 'is', 'like', 'the', 'garbage', 'man', '||period||', 'you', 'just', 'take', 'for', 'granted', 'the', 'fact', 'that', 'any', 'time', 'you', 'put', 'some', 'trash', 'out', 'on', 'the', 'street', '||comma||', 'a', 'guy', 'in', 'a', "jumpsuit's", 'gonna', 'come', 'along', 'and', 'pick', 'it', 'up', '||period||', 'but', 'now', '||comma||', "it's", 'like', 'a', 'garbage', 'strike', '||period||', 'the', 'bags', 'are', 'piling', 'up', 'in', 'your', 'head', '||period||', 'the', 'sidewalk', 'is', 'blocked', '||period||', "nothing's", 'getting', 'through', '||period||', "you're", 'stupid', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'understand', '||period||', '||return||', '||return||', 'jerry:', 'exactly', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'should', 'come', 'over', '||period||', "tonight's", 'pipe', 'night', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', 'happened', 'to', 'your', 'face', '||questionmark||', 'it', 'looks', 'like', 'an', 'old', "catcher's", 'mitt', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||leftparen||', 'kramer', 'checks', 'it', 'out', '||period||', '||rightparen||', 'my', 'face', 'is', 'all', 'craggly', '||comma||', "it's", 'crinkly', '||period||', '||return||', '||return||', 'jerry:', "it's", 'from', 'all', 'that', 'smoke', '||period||', "you've", 'experienced', 'a', 'lifetime', 'of', 'smoking', 'in', '72', 'hours', '||period||', 'what', 'did', 'you', 'expect', '||questionmark||', '||return||', '||return||', 'kramer:', 'emphysema', '||comma||', 'birth', 'defects', '||comma||', 'cancer', '||period||', 'but', 'not', 'this', '||period||', 'jerry', '||comma||', 'my', 'face', 'is', 'my', 'livelihood', '||period||', 'everything', 'i', 'have', 'i', 'owe', 'to', 'this', 'face', '||period||', '||return||', '||return||', 'jerry:', 'and', 'your', 'teeth', '||comma||', 'your', 'teeth', 'are', 'all', 'brown', '||period||', '||return||', '||return||', 'kramer:', 'look', 'away', '||comma||', "i'm", 'hideous', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'ben', '||period||', 'i', 'need', 'a', 'four', 'letter', 'word', '||period||', 'winnie', 'the', 'blank', '||period||', '||return||', '||return||', 'ben:', 'pooh', '||exclammark||', '||return||', '||return||', 'elaine:', 'pooh', '||period||', '||period||', '||period||', '||leftparen||', 'laughing', '||rightparen||', '||return||', '||return||', 'ben:', 'no', '||comma||', "it's", 'winnie', 'the', 'pooh', '||period||', '||return||', '||return||', 'louise:', 'so', 'the', 'hospital', 'called', '||comma||', 'turns', 'out', 'some', 'stupid', 'intern', 'screwed', 'up', 'my', 'test', '||period||', 'i', 'never', 'had', 'mono', '||period||', 'so', 'we', 'can', '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'her', 'i', 'would', 'have', 'to', 'think', 'about', 'it', '||period||', '||return||', '||return||', 'jerry:', 'but', 'ultimately', '||comma||', "you're", 'gonna', 'choose', 'in', 'favor', 'of', 'sex', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'perhaps', 'i', 'can', 'better', 'serve', 'the', 'world', 'this', 'way', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', '||comma||', 'not', 'subjecting', 'yourself', 'to', 'your', 'sexual', 'advances', '||period||', '||return||', '||return||', 'george:', 'simple', 'joke', 'from', 'a', 'simple', 'man', '||period||', '||return||', '||return||', 'jerry:', 'so', "you're", 'never', 'gonna', 'have', 'sex', 'again', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'jerry', '||period||', 'there', 'was', 'a', 'pretty', 'good', 'chance', 'i', 'was', 'never', 'gonna', 'have', 'sex', 'again', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'ready', 'for', 'the', 'assembly', 'tomorrow', '||questionmark||', 'you', 'know', 'what', "you're", 'gonna', 'say', 'about', 'the', 'yankees', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sports', 'are', 'so', 'pedestrian', '||period||', "i've", 'prepared', 'some', 'science', 'experiments', 'that', 'will', 'illuminate', 'the', 'mind', 'and', 'dazzle', 'the', 'eye', '||period||', '||return||', '||return||', 'jerry:', 'i', 'wrote', 'a', '20', 'minute', 'bit', 'about', 'how', 'homework', 'stinks', '||period||', '||return||', '||return||', 'jackie:', 'my', 'vacation', 'was', 'restful', '||comma||', 'splendid', '||comma||', 'magnificent', '||period||', 'in', 'fact', '||comma||', 'next', 'time', "i'm", "plannin'", 'on', 'going', 'to', 'kofu', '||period||', '||return||', '||return||', 'jackie:', 'oh', 'no', '||period||', '||return||', '||return||', 'kramer:', 'jackie', 'we', 'gotta', 'talk', '||period||', '||return||', '||return||', 'jackie:', 'no', 'way', '||comma||', 'kramer', '||period||', "you've", 'brought', 'nothing', 'but', 'a', 'mountain', 'of', 'misfortune', 'and', 'humiliation', '||period||', 'now', 'get', 'out', '||period||', '||return||', '||return||', 'kramer:', 'but', 'jackie', '||dash||', '||dash||', '||return||', '||return||', 'jackie:', 'i', 'said', 'out', '||period||', '||return||', '||return||', 'kramer:', 'jackie', '||comma||', 'i', 'think', 'i', 'gotta', 'case', 'against', 'the', 'tobacco', 'companies', '||period||', '||return||', '||return||', 'jackie:', 'the', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'tobacco', 'companies', '||period||', '||return||', '||return||', 'jackie:', "i've", 'been', 'wanting', 'a', 'piece', 'of', 'them', 'for', 'years', '||period||', '||return||', '||return||', 'jackie:', 'did', 'that', 'cigarette', 'warning', 'label', 'mention', 'anything', 'about', 'damage', 'to', 'your', 'appearance', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'it', "didn't", 'say', 'anything', '||period||', '||return||', '||return||', 'jackie:', 'so', "you're", 'a', 'victim', '||period||', 'now', 'your', 'face', 'is', 'shallow', '||comma||', 'unattractive', '||comma||', 'disgusting', '||period||', '||return||', '||return||', 'kramer:', 'so', 'jackie', '||comma||', 'do', 'you', 'think', 'we', 'gotta', 'case', '||questionmark||', '||return||', '||return||', 'jackie:', 'your', 'face', 'is', 'my', 'case', '||period||', '||return||', '||return||', 'jerry:', 'how', 'ya', "doin'", '||questionmark||', '||return||', '||return||', 'elaine:', 'not', 'good', '||period||', "i'm", 'a', 'moron', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "don't", 'worry', 'about', 'it', '||period||', 'once', 'he', 'passes', 'the', 'test', '||comma||', "you'll", 'have', 'sex', 'again', '||comma||', 'and', "you'll", 'be', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'that', 'kinda', 'brings', 'us', 'to', 'why', "i'm", 'here', '||period||', 'you', 'got', 'eleven', 'minutes', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', 'oh', 'come', 'on', '||period||', '||return||', '||return||', 'elaine:', 'i', 'just', 'wanna', 'clear', 'my', 'head', '||period||', 'it', 'has', 'nothing', 'to', 'do', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'it', 'has', 'something', 'to', 'do', 'with', 'me', '||period||', '||return||', '||return||', 'elaine:', 'you', 'could', 'read', 'the', 'paper', 'through', 'the', 'whole', 'thing', 'if', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinks', 'about', 'it', 'for', 'a', 'second', 'as', 'to', 'reconsider', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "i'm", 'sorry', '||comma||', "it's", 'too', 'weird', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'all', 'right', '||period||', 'is', 'kramer', 'home', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'louise', '||period||', 'i', 'think', "you'll", 'find', 'this', 'amusing', '||period||', 'in', 'early', 'euclidean', 'geometry', '||dash||', '||dash||', '||return||', '||return||', 'louise:', 'george', '||comma||', 'i', 'have', 'to', 'have', 'sex', '||period||', '||return||', '||return||', 'george:', 'i', 'used', 'to', 'share', 'that', 'same', 'outlook', '||period||', 'but', 'now', '||comma||', 'i', 'have', 'so', 'many', 'things', 'to', 'occupy', 'my', 'mind', '||period||', 'for', 'instance', '||comma||', 'the', 'atom', '||period||', '||return||', '||return||', 'louise:', 'goodbye', '||comma||', 'george', '||period||', 'i', 'hate', 'you', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', 'what', 'a', 'fascinating', 'turn', 'of', 'events', '||period||', '||leftparen||', 'waitress', 'approaches', '||rightparen||', '||return||', '||return||', 'waitress:', 'mas', 'caf', '||questionmark||', '||return||', '||return||', 'george:', 'si', '||comma||', 'por', 'favor', '||period||', '||return||', '||return||', 'jackie:', 'miss', 'wilkie', '||comma||', 'your', 'tobacco', 'company', 'has', 'turned', 'this', 'beautiful', 'specimen', '||comma||', 'into', 'a', 'horrible', 'twisted', 'freak', '||period||', '||return||', '||return||', 'kramer:', 'who', 'could', 'love', 'me', '||questionmark||', '||return||', '||return||', 'wilkie:', 'i', 'disagree', '||period||', 'in', 'fact', '||comma||', 'i', 'feel', 'mr', '||period||', 'kramer', 'projects', 'a', 'rugged', 'masculinity', '||period||', '||return||', '||return||', 'jackie:', 'rugged', '||questionmark||', 'the', "man's", 'a', 'goblin', '||period||', "he's", 'only', 'been', 'exposed', 'to', 'smoke', 'for', 'four', 'days', '||period||', 'by', 'the', 'time', 'this', 'case', 'gets', 'to', 'trial', '||comma||', "he'll", 'be', 'nothing', 'more', 'than', 'a', 'shrunken', 'head', '||period||', '||return||', '||return||', 'wilkie:', 'all', 'right', '||comma||', 'mr', '||period||', 'chiles', '||period||', "you'll", 'have', 'our', 'offer', 'by', 'tomorrow', '||period||', 'good', 'day', '||comma||', 'gentlemen', '||period||', '||leftparen||', 'she', 'exits', '||rightparen||', '||return||', '||return||', 'kramer:', 'bye', '||dash||', 'bye', '||period||', 'jackie', '||comma||', 'you', 'did', 'it', '||period||', "we're", 'rich', '||period||', '||return||', '||return||', 'jackie:', 'you', 'better', 'believe', 'it', '||period||', "jackie's", "cashin'", 'in', 'on', 'your', 'wretched', 'disfigurement', '||period||', '||return||', '||return||', 'elaine:', 'congratulations', '||exclammark||', 'you', 'passed', '||exclammark||', '||return||', '||return||', 'ben:', 'elaine', '||comma||', 'elaine', '||period||', 'i', "don't", 'think', 'we', 'should', 'see', 'each', 'other', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "you're", 'breaking', 'up', 'with', 'me', '||questionmark||', 'but', 'i', 'sacrificed', 'and', 'supported', 'you', 'while', 'you', 'struggled', '||period||', 'what', 'about', 'my', 'dream', 'of', 'dating', 'a', 'doctor', '||questionmark||', '||return||', '||return||', 'ben:', "i'm", 'sorry', '||comma||', 'elaine', '||period||', 'i', 'always', 'knew', 'that', 'after', 'i', 'became', 'a', 'doctor', '||comma||', 'i', 'would', 'dump', 'whoever', 'i', 'was', 'with', 'and', 'find', 'someone', 'better', '||period||', "that's", 'the', 'dream', 'of', 'becoming', 'a', 'doctor', '||period||', '||return||', '||return||', 'elaine:', 'look', 'it', '||comma||', 'are', 'we', 'going', 'to', 'have', 'sex', '||comma||', 'or', 'not', '||questionmark||', '||return||', '||return||', 'katie:', 'okay', '||comma||', 'jerry', '||comma||', 'now', 'when', 'the', 'glee', "club's", 'finished', 'singing', '||comma||', 'george', 'goes', 'on', '||comma||', 'then', 'you', '||period||', '||leftparen||', 'george', 'enters', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'where', 'have', 'you', 'been', '||questionmark||', 'you', 'know', '||comma||', "you're", 'on', 'next', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'lost', 'on', 'the', 'way', 'over', '||period||', '||return||', '||return||', 'jerry:', 'got', 'lost', '||questionmark||', 'we', 'went', 'to', 'school', 'here', 'for', 'three', 'years', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'these', '||questionmark||', '||leftparen||', 'holds', 'test', 'tubes', 'to', 'his', 'head', 'like', 'antennae', '||rightparen||', 'take', 'me', 'to', 'your', 'leader', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', 'you', 'had', 'sex', '||period||', 'you', 'had', 'sex', 'with', 'louise', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'the', 'portuguese', 'waitress', '||period||', '||return||', '||return||', 'jerry:', 'the', 'portuguese', 'waitress', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'calculated', 'my', 'odds', 'of', 'ever', 'getting', 'together', 'with', 'a', 'portuguese', 'waitress', '||period||', 'mathematically', '||comma||', 'i', 'had', 'to', 'do', 'it', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'katie:', 'george', '||comma||', 'george', '||comma||', "you're", 'on', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', "i'm", 'not', 'going', 'on', '||period||', '||return||', '||return||', 'jerry:', 'then', "what'd", 'you', 'come', 'down', 'here', 'for', '||questionmark||', '||return||', '||return||', 'george:', 'tell', 'you', 'about', 'the', 'portuguese', 'waitress', '||period||', '||return||', '||return||', 'jerry:', "it's", 'good', 'to', 'have', 'you', 'back', '||period||', '||return||', '||return||', 'katie:', 'one', 'of', 'you', 'has', 'to', 'go', 'on', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'll", 'do', 'it', '||period||', '||leftparen||', 'goes', 'on', 'stage', '||rightparen||', 'hey', 'kids', '||period||', "what's", 'the', 'deal', 'with', 'homework', '||questionmark||', "you're", 'not', 'working', 'on', 'your', 'home', '||exclammark||', '||leftparen||', 'audience', 'boos', '||rightparen||', '||return||', '||return||', 'kramer:', 'it', 'was', 'a', 'great', 'lunch', '||comma||', 'jackie', '||period||', 'thanks', '||period||', '||return||', '||return||', 'jackie:', "it's", 'a', 'little', 'puzzling', 'we', "haven't", 'gotten', 'that', 'offer', 'yet', '||period||', '||return||', '||return||', 'kramer:', 'mrs', '||period||', 'wilkie', '||comma||', 'from', 'the', 'tobacco', 'company', 'called', 'me', '||period||', 'we', 'had', 'a', 'little', 'pow', '||dash||', 'wow', '||period||', '||return||', '||return||', 'jackie:', 'a', 'pow', '||dash||', 'wow', '||questionmark||', 'who', 'told', 'you', 'to', 'have', 'a', 'pow', '||dash||', 'wow', '||questionmark||', 'i', "didn't", 'tell', 'you', 'to', 'have', 'pow', '||dash||', 'wow', '||period||', '||return||', '||return||', 'kramer:', 'she', 'made', 'an', 'offer', '||period||', 'i', 'took', 'it', '||period||', '||return||', '||return||', 'jackie:', 'how', 'much', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'there', 'was', 'no', 'money', '||period||', '||return||', '||return||', 'jackie:', 'no', 'money', '||questionmark||', 'then', "what'd", 'we', 'get', '||questionmark||', '||return||', '||return||', 'kramer:', 'check', 'it', 'out', '||period||', '||leftparen||', 'they', 'see', 'a', 'marlboro', 'man', 'billboard', 'with', 'kramer', 'on', 'it', '||rightparen||', '||return||', '||return||', 'jackie:', 'this', 'is', 'the', 'most', 'public', 'yet', 'of', 'my', 'many', 'humiliations', '||period||', '||return||', '||return||', 'jerry:', 'cancelled', '||questionmark||', 'but', 'i', 'was', 'supposed', 'to', 'be', 'on', 'tomorrow', 'night', '||period||', '||return||', '||return||', 'letterman:', 'yeah', '||comma||', 'but', 'then', '||comma||', 'you', 'know', '||comma||', 'some', 'people', 'were', 'telling', 'me', 'about', 'that', 'little', 'flap', 'out', 'there', 'at', 'the', 'junior', 'high', 'assembly', '||period||', 'and', 'before', 'that', '||comma||', 'you', 'were', 'bumped', 'by', 'a', 'lizard', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'it', 'was', 'a', '********', '||period||', '||return||', '||return||', 'letterman:', 'those', 'things', '||comma||', 'deadly', 'dangerous', '||period||', 'a', 'long', 'time', 'ago', 'my', 'uncle', 'and', 'a', 'date', 'are', 'driving', '||comma||', 'like', '||comma||', 'through', 'mexico', '||period||', 'they', 'see', 'one', 'on', 'the', 'road', '||comma||', 'drags', 'him', 'out', 'of', 'the', 'road', '||comma||', 'and', 'chews', 'his', 'face', 'off', '||period||', 'listen', '||comma||', "we'll", 'call', 'you', 'if', 'anything', 'opens', 'up', '||period||', 'okay', '||comma||', 'jimmy', '||questionmark||', '||return||', '||return||', 'jerry:', 'jerry', '||period||', '||return||', '||return||', 'letterman:', 'right', '||period||', 'jerry', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', '||leftparen||', 'slams', 'the', 'door', '||rightparen||', "georgie's", 'moving', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gets', 'up', '||rightparen||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'george:', "i'm", 'out', '||exclammark||', 'fantastic', 'apartment', 'right', 'across', 'from', 'mine', '||comma||', 'huh', '||period||', 'i', "can't", 'wait', 'for', 'you', 'to', 'see', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looks', 'around', 'his', 'apartment', '||rightparen||', 'is', 'it', 'better', 'than', 'mine', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'definite', '||rightparen||', 'oh', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "it's", 'a', 'two', '||dash||', 'bedroom', '||dash||', 'one', '||dash||', 'bath', '||dash||', 'make', '||dash||', 'your', '||dash||', 'friends', '||dash||', 'hate', '||dash||', 'ya', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', "it's", 'better', 'than', "elaine's", '||comma||', 'too', '||period||', 'i', 'gotta', 'give', 'her', 'a', 'call', '||period||', '||leftparen||', 'moves', 'tward', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'jerry:', "she's", 'out', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'stops', '||rightparen||', 'oh', 'right', '||comma||', 'the', 'blind', 'date', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'well', '||comma||', 'they', 'like', 'to', 'call', 'it', 'a', 'set', '||dash||', 'up', 'now', '||period||', 'i', 'guess', 'the', 'blind', 'people', "don't", 'like', 'being', 'associated', 'with', 'all', 'those', 'losers', '||period||', '||return||', '||return||', 'george:', 'come', 'on', '||period||', 'come', 'check', 'out', 'my', 'new', 'place', '||period||', "it'll", 'take', 'you', 'two', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', "i'm", 'meeting', 'kramer', 'down', 'at', 'my', 'mini', '||dash||', 'storage', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gloating', '||rightparen||', 'hey', '||comma||', 'you', 'got', 'any', 'extra', 'furniture', 'down', 'there', '||questionmark||', 'i', 'need', 'some', 'more', 'stuff', 'to', 'fill', 'that', 'extra', 'bedroom', 'with', 'the', 'walk', '||dash||', 'in', 'closet', '||period||', '||leftparen||', 'smiles', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grabs', 'his', 'coat', '||rightparen||', 'oh', '||comma||', 'this', 'is', 'really', 'annoying', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', 'as', 'they', 'leave', '||rightparen||', "it's", 'working', 'already', '||exclammark||', '||leftparen||', 'both', 'exit', '||rightparen||', '||return||', '||return||', '[setting:', 'manhattan', 'mini', '||dash||', 'storage]', '||return||', '||return||', 'jerry:', '||leftparen||', 'disgusted', '||rightparen||', 'what', 'is', 'with', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'coughing', '||comma||', 'jerry', '||period||', 'it', 'expells', 'the', 'diseased', 'germs', 'out', 'of', 'the', 'body', '||comma||', 'into', 'the', 'air', '||period||', '||leftparen||', 'makes', 'a', 'guesture', 'of', 'germs', 'being', 'in', 'the', 'air', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'takes', 'out', 'his', 'key', 'to', 'unlock', 'the', 'unit', 'door', '||rightparen||', 'where', 'is', 'your', 'key', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'uh', '||comma||', 'newman', '||period||', "he's", '||dash||', "he's", 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'kramer', '||comma||', 'i', 'rented', 'out', 'half', 'of', 'my', 'space', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', 'i', 'rented', 'out', 'half', 'that', 'space', 'to', 'newman', '||period||', '||leftparen||', 'starts', 'coughing', 'again', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picks', 'one', 'up', '||rightparen||', 'mail', 'bags', '||questionmark||', "he's", 'storing', 'mail', 'in', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looks', 'at', 'the', 'bags', 'on', 'the', 'floor', '||rightparen||', 'evidently', '||period||', '||return||', '||return||', '[setting:', "george's", 'new', 'apartment]', '||return||', '||return||', 'ricardi:', 'excuse', 'me', '||comma||', 'george', '||questionmark||', '||leftparen||', 'h1', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'looks', 'at', 'her', '||rightparen||', 'yeah', '||comma||', 'uh', '||comma||', 'no', 'menus', '||period||', '||leftparen||', 'waves', 'her', 'off', '||rightparen||', '||return||', '||return||', 'ricardi:', '||leftparen||', 'moves', 'into', 'the', 'apartment', '||comma||', 'hand', 'out', '||rightparen||', 'no', '||comma||', "i'm", 'mrs', '||period||', 'ricardi', '||dash||', 'president', 'of', 'the', "tenant's", 'association', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'right', '||exclammark||', '||leftparen||', 'shakes', 'her', 'hand', '||rightparen||', 'right', '||exclammark||', 'hey', '||comma||', 'hey', '||period||', '||period||', 'i', 'love', 'the', 'floors', 'in', 'here', '||period||', "it's", 'like', 'a', 'gymnasium', 'in', 'here', '||exclammark||', 'try', 'and', 'guard', 'me', '||exclammark||', '||leftparen||', 'dribbles', 'an', 'imaginary', 'ball', '||return||', '||return||', 'ricardi:', 'no', '||comma||', 'no', '||period||', '||period||', '||leftparen||', 'laughs', 'nervously', '||rightparen||', 'uh', '||comma||', 'george', '||comma||', 'unfortunately', '||comma||', 'clarance', 'eldridge', 'in', '8c', 'has', 'decided', 'that', 'he', 'wants', 'the', 'apartment', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'let', 'down', '||rightparen||', 'yeah', '||comma||', 'but', 'you', '||dash||', 'you', 'promised', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'ricardi:', 'yes', '||comma||', 'but', '||comma||', 'you', 'see', '||dash||', 'mister', 'eldridge', 'is', 'an', 'andrea', 'doria', 'survivor', '||period||', 'and', '||comma||', 'in', 'light', 'of', 'the', 'terrible', 'suffering', 'that', "he's", 'already', 'been', 'through', '||comma||', "we've", 'decided', 'to', 'give', 'it', 'to', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'depressed', '||rightparen||', 'well', '||comma||', '||period||', '||period||', 'the', 'andrea', 'doria', '||period||', '||period||', 'that', 'was', 'quite', 'a', 'fire', '||period||', '||leftparen||', 'moves', 'to', 'the', 'door', '||comma||', 'leaving', '||rightparen||', '||return||', '||return||', 'ricardi:', '||leftparen||', 'correcting', '||rightparen||', 'shipwreck', '||period||', '||return||', '||return||', 'george:', 'i', 'remember', '||period||', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'restaurant]', '||return||', '||return||', 'elaine:', 'where', 'is', 'this', 'guy', '||questionmark||', '||exclammark||', '||leftparen||', 'checks', 'her', 'watch', '||rightparen||', 'i', 'hate', 'this', '||exclammark||', '||leftparen||', 'sighs', '||rightparen||', 'i', 'shoulda', 'brought', 'something', 'to', 'read', '||period||', '||period||', '||leftparen||', 'picks', 'up', 'a', 'sugar', 'packet', '||rightparen||', '||quotemark||', 'cancer', 'in', 'labratory', 'animals', '||quotemark||', '||period||', '||period||', 'huh', '||period||', '||return||', '||return||', 'waiter:', 'excuse', 'me', '||comma||', 'elaine', 'benes', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', '||return||', '||return||', 'waiter:', 'an', 'alan', 'mercer', 'called', 'for', 'you', '||period||', 'he', 'said', "he's", 'sorry', '||comma||', 'but', 'he', "won't", 'be', 'able', 'to', 'make', 'it', 'tonight', '||period||', '||leftparen||', 'pause', '||rightparen||', "he's", 'been', 'stabbed', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shocked', '||rightparen||', 'stabbed', '||questionmark||', '||exclammark||', '||return||', '||return||', 'waiter:', 'more', 'bread', '||questionmark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'talking', 'to', 'elaine', '||rightparen||', 'you', 'ate', 'more', 'bread', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'is', 'not', 'the', 'point', '||exclammark||', 'the', 'guy', 'was', 'stabbed', '||exclammark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'find', 'out', 'who', 'stabbed', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', '||leftparen||', 'nodding', '||rightparen||', 'it', 'turns', 'out', 'it', 'was', 'his', 'ex', '||dash||', 'girlfriend', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'like', 'a', 'father', '||rightparen||', 'well', '||comma||', "you're", 'not', 'going', 'near', 'this', 'hooligan', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', '||period||', '||period||', 'i', 'mean', '||comma||', 'think', 'about', 'it', '||comma||', 'jerry', '||period||', 'there', 'must', 'be', 'something', 'exciting', 'about', 'this', 'guy', 'if', 'he', 'can', 'arouse', 'that', 'kind', 'of', 'passion', '||period||', '||leftparen||', 'obviously', 'turned', 'on', 'by', 'the', 'stabbing', '||rightparen||', 'i', 'mean', '||comma||', 'to', 'be', 'stab', '||dash||', 'worthy', '||period||', '||period||', 'you', 'know', '||comma||', "it's", '||period||', '||period||', 'kind', 'of', 'a', 'compliment', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||comma||', 'too', 'bad', 'he', "didn't", 'get', 'shot', '||period||', 'he', 'could', 'have', 'been', 'the', 'one', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'coughs', '||rightparen||', 'hey', '||period||', "how's", 'everybody', '||questionmark||', '||leftparen||', 'moves', 'to', 'the', 'kitchen', '||rightparen||', '||return||', '||return||', 'jerry', 'and', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'ehh', '||period||', '||period||', '||leftparen||', 'picks', 'up', 'a', 'carton', 'of', 'food', '||rightparen||', 'no', 'expiration', 'date', 'on', 'this', '||period||', '||period||', '||leftparen||', 'opens', 'it', '||comma||', 'then', 'starts', 'coughing', 'directly', 'onto', 'the', 'food', '||rightparen||', '||return||', '||return||', 'jerry:', 'there', 'is', 'now', '||period||', 'kramer', '||comma||', 'you', 'should', 'really', 'get', 'that', 'cough', 'checked', 'out', 'by', 'a', 'doctor', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shrugging', 'it', 'off', '||rightparen||', 'nah', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'no', 'doctors', 'for', 'me', '||period||', 'a', 'bunch', 'of', 'lackeys', 'and', 'yes', '||dash||', 'men', 'all', 'towing', 'the', 'company', 'line', '||period||', '||period||', '||leftparen||', 'looks', 'at', 'jerry', '||comma||', 'then', 'leans', 'in', 'so', 'elaine', "can't", 'hear', '||rightparen||', 'plus', '||comma||', 'the', 'botched', 'my', 'vasectimy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'awe', '||period||', 'whispering', '||rightparen||', 'the', 'botched', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'complaining', '||rightparen||', "i'm", 'even', 'more', 'potent', 'now', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', "how's", 'the', 'new', 'place', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'gone', '||period||', '||leftparen||', 'moves', 'over', 'to', 'a', 'chair', 'in', 'the', 'living', 'room', '||period||', 'kramer', 'takes', 'the', 'carton', 'of', 'food', 'to', 'the', 'table', '||comma||', 'and', 'begins', 'eating', '||rightparen||', 'the', 'tenant', 'association', 'made', 'me', 'give', 'it', 'to', 'this', 'guy', 'because', 'he', 'was', 'an', 'andrea', 'doria', 'survivor', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'andrea', 'doria', '||questionmark||', "isn't", 'that', 'the', 'one', 'they', 'did', 'the', 'song', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'correcting', 'her', '||rightparen||', 'edmund', 'fitzgerald', '||period||', '||return||', '||return||', 'elane:', 'i', 'love', 'edmund', "fitzgerald's", 'voice', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gives', 'elaine', 'a', 'look', '||rightparen||', 'no', '||comma||', 'gordon', 'lightfoot', 'was', 'the', 'singer', '||period||', 'edmund', 'fitzgerald', 'was', 'the', 'ship', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'about', 'his', 'would', '||dash||', 'be', 'apartment', '||rightparen||', 'you', 'could', 'fit', '15', 'people', 'in', 'that', 'bathroom', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', 'gordon', 'lightfoot', 'was', 'the', 'boat', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||comma||', 'and', 'it', 'was', 'rammed', 'by', 'the', 'cat', 'stevens', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'like', 'a', 'teacher', '||rightparen||', 'the', 'andrea', 'doria', 'collided', 'with', 'the', 'stockholm', 'in', 'dense', 'fog', '21', 'miles', 'off', 'the', 'coast', 'of', 'nantucket', '||period||', '||leftparen||', 'makes', 'a', 'clicking', 'sound', 'with', 'his', 'tongue', '||rightparen||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'in', 'my', 'book', '||dash||', '||quotemark||', 'astonishing', 'tales', 'of', 'the', 'sea', '||quotemark||', '51', 'people', 'died', '||period||', '||return||', '||return||', 'george:', '51', 'people', '||questionmark||', '||exclammark||', "that's", 'it', '||questionmark||', '||exclammark||', 'i', 'thought', 'it', 'was', '||comma||', 'like', '||comma||', 'a', 'thousand', '||exclammark||', '||return||', '||return||', 'kramer:', 'there', 'were', '1', '||comma||', '650', 'survivors', '||period||', '||return||', '||return||', 'george:', "that's", 'no', 'tragedy', '||exclammark||', 'how', 'many', 'people', 'do', 'you', 'lose', 'on', 'a', 'normal', 'cruse', '||questionmark||', '30', '||questionmark||', '40', '||questionmark||', '||exclammark||', 'kramer', '||comma||', 'can', 'i', 'take', 'a', 'look', 'at', 'that', 'book', '||questionmark||', '||leftparen||', 'starts', 'walking', 'tward', 'the', 'door', '||period||', 'kramer', 'grabs', 'his', 'food', '||comma||', 'and', 'follows', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'i', 'also', 'got', '||quotemark||', 'astounding', 'bear', 'attacks', '||quotemark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'uh', '||comma||', 'before', 'you', 'go', '||comma||', 'did', 'you', 'talk', 'to', 'newman', 'about', 'getting', 'that', 'mail', 'outta', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'oh', '||comma||', 'yeah', '||period||', 'yeah', '||comma||', "he's", 'not', 'gonna', 'do', 'it', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', "newman's", 'apartment]', '||return||', '||return||', 'jerry:', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'eyes', 'glued', 'to', 'the', 'tv', '||rightparen||', 'i', 'guess', '||period||', '||return||', '||return||', 'jerry:', 'listen', '||comma||', 'i', 'want', 'you', 'to', 'get', 'the', 'mail', 'outta', 'my', 'storage', 'unit', '||period||', '||return||', '||return||', 'newman:', 'sometimes', 'we', "don't", 'get', 'what', 'we', 'want', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'newman:', 'i', "didn't", 'get', 'my', 'transfer', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'transfer', '||quotemark||', '||questionmark||', '||return||', '||return||', 'newman:', 'to', 'hawaii', '||period||', 'the', 'most', 'sought', '||dash||', 'after', 'postal', 'route', 'of', 'them', 'all', '||period||', 'the', 'air', 'is', 'so', 'dewy', '||dash||', 'sweet', 'you', "don't", 'even', 'have', 'to', 'like', 'the', 'stamps', '||period||', '||period||', 'but', "it's", 'not', 'to', 'be', '||dash||', 'so', '||comma||', "i'm", 'hanging', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'you', 'quit', 'the', 'post', 'office', '||questionmark||', '||return||', '||return||', 'newman:', 'kind', 'of', '||period||', "i'm", 'still', 'collecting', 'checks', '||comma||', "i'm", 'just', 'not', 'delivering', 'mail', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'get', 'it', 'out', 'of', 'my', 'storage', '||period||', "it's", 'illegal', '||period||', '||return||', '||return||', 'newman:', 'and', 'yet', '||comma||', "it's", 'perfectly', 'legal', 'to', 'take', 'a', "man's", 'soul', 'and', 'crush', 'it', 'out', 'like', 'a', 'stale', 'pall', 'mall', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cheerfully', '||rightparen||', 'well', '||comma||', 'a', "law's", 'a', 'law', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'central', 'park]', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'hold', 'on', 'there', '||period||', '||period||', "that's", 'a', 'nasty', 'cough', 'you', 'got', 'there', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'man:', 'what', 'cough', '||questionmark||', '||return||', '||return||', '[setting:', 'restaurant]', '||return||', '||return||', 'elaine:', 'i', 'love', 'shrimp', '||exclammark||', '||leftparen||', 'waves', 'her', 'knife', 'around', 'as', "she's", 'talking', '||rightparen||', "i'm", 'a', 'shrimp', 'eater', '||period||', 'you', 'put', 'shrimp', 'infront', 'of', 'me', '||comma||', '||leftparen||', 'waves', 'her', 'knife', 'along', 'with', 'her', 'hand', 'gestures', '||period||', 'alan', 'is', 'getting', 'edgy', 'about', 'it', '||comma||', 'and', 'even', 'more', 'so', 'with', 'every', 'wave', '||rightparen||', 'and', 'i', 'will', 'eat', 'it', 'until', 'my', 'stomach', 'pops', '||exclammark||', '||leftparen||', 'notices', "alan's", 'unsettled', '||rightparen||', 'oh', '||period||', '||period||', '||leftparen||', 'puts', 'the', 'knife', 'down', '||rightparen||', '||return||', '||return||', 'alan:', 'no', '||comma||', "it's", 'okay', '||period||', "i'm", '||period||', '||period||', 'still', 'just', 'a', 'little', 'bit', 'jumpy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leans', 'in', 'close', '||rightparen||', 'between', 'you', 'and', 'me', '||comma||', 'what', 'happened', 'there', 'with', 'the', 'stabbing', '||questionmark||', '||return||', '||return||', 'alan:', 'just', '||period||', '||period||', 'one', 'of', 'those', 'things', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'was', 'she', 'just', 'so', 'crazy', 'in', 'love', 'with', 'you', 'that', 'she', 'just', "couldn't", 'take', 'it', 'anymore', '||questionmark||', 'or', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'alan:', 'i', "don't", 'know', '||period||', 'could', 'be', '||period||', '||return||', '||return||', 'carol:', 'alan', '||questionmark||', '||exclammark||', '||return||', '||return||', 'alan:', 'carol', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gets', 'up', '||comma||', 'pointing', 'after', 'carol', '||rightparen||', 'was', 'that', 'the', 'one', '||questionmark||', '||exclammark||', 'was', 'that', 'the', 'one', 'who', 'stabbed', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'alan:', '||leftparen||', 'between', 'screams', '||rightparen||', 'no', '||comma||', 'that', 'was', 'a', 'different', 'girl', '||period||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'there', 'was', 'another', 'crazed', 'ex', '||dash||', 'girlfriend', '||questionmark||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'so', '||comma||', 'i', 'called', 'my', 'friend', '||comma||', 'you', 'know', '||dash||', 'the', 'one', 'who', 'set', 'us', 'up', '||dash||', 'i', 'found', 'out', '||comma||', "he's", 'a', 'bad', '||dash||', 'breaker', '||dash||', 'upper', '||period||', '||return||', '||return||', 'jerry:', 'mmm', '||period||', '||period||', 'bad', 'how', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'fast', '||rightparen||', 'well', '||comma||', 'you', 'know', 'when', 'you', 'break', 'up', '||comma||', 'how', 'you', 'say', 'things', 'you', "don't", 'mean', '||questionmark||', 'well', '||comma||', 'he', 'says', 'the', 'mean', 'things', 'you', "don't", 'mean', '||comma||', 'but', 'he', 'means', 'them', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nods', '||rightparen||', 'i', 'follow', '||period||', 'so', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'dump', 'him', '||period||', 'i', "can't", 'be', 'with', 'someone', 'who', "doesn't", 'break', 'up', 'nicely', '||period||', 'i', 'mean', '||comma||', 'to', 'me', '||comma||', "that's", 'one', 'of', 'the', 'most', 'important', 'parts', 'of', 'a', 'relationship', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'agreeing', '||rightparen||', "what's", 'more', 'important', '||questionmark||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'kramer:', '||leftparen||', 'between', 'coughs', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'george:', "what's", 'with', 'the', 'dog', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'petting', 'smuckers', '||rightparen||', 'yeah', '||comma||', 'this', 'is', 'smuckers', '||period||', 'i', 'borrowed', 'him', '||period||', '||leftparen||', 'starts', 'coughing', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', 'at', 'the', 'dog', '||rightparen||', 'yeah', '||comma||', 'we', 'share', 'the', 'same', 'affliction', '||comma||', 'so', "i'm", 'gonna', 'have', 'a', 'vet', 'check', 'us', 'out', '||period||', '||return||', '||return||', 'george:', 'a', 'vet', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'll", 'take', 'a', 'vet', 'over', 'an', 'm', '||period||', 'd', '||period||', 'any', 'day', '||period||', 'they', 'gotta', 'be', 'able', 'to', 'cure', 'a', '||leftparen||', 'snaps', 'his', 'fingers', 'in', 'rhythm', 'with', 'his', 'words', '||rightparen||', 'lizard', '||comma||', 'a', 'chicken', '||comma||', 'a', 'pig', '||comma||', 'a', 'frog', '||leftparen||', 'stops', 'snapping', '||rightparen||', '||dash||', 'all', 'on', 'the', 'same', 'day', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'if', 'i', 'may', 'jump', 'ahead', '||dash||', "you're", 'gonna', 'take', 'dog', 'medicine', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiling', '||rightparen||', 'you', 'bet', 'we', 'are', '||exclammark||', 'huh', '||comma||', 'smuckers', '||questionmark||', '||leftparen||', 'smuckers', 'coughs', '||period||', 'they', 'turn', 'to', 'leave', '||rightparen||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', '[setting:', "george's", 'apartment', 'building]', '||return||', '||return||', 'george:', 'ahoy', '||exclammark||', 'mr', '||period||', 'eldridge', '||period||', 'i', 'understand', 'you', 'were', 'on', 'the', 'andrea', 'doria', '||period||', '||return||', '||return||', 'eldridge:', 'yes', '||comma||', 'it', 'was', 'a', 'terrifying', 'ordeal', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'ya', '||comma||', 'i', 'hear', 'people', 'really', 'stuff', 'themselves', 'on', 'those', 'cruise', 'ships', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'the', 'buffet', '||comma||', "that's", 'the', 'real', 'ordeal', '||comma||', 'huh', '||comma||', 'clarence', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'eldridge:', '||leftparen||', 'defensively', '||rightparen||', 'we', 'had', 'to', 'abandon', 'ship', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'all', 'vacations', 'have', 'to', 'end', 'eventually', '||period||', '||return||', '||return||', 'eldridge:', 'the', 'boat', 'sank', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'holding', 'up', "kramer's", 'book', '||rightparen||', 'according', 'to', 'this', '||comma||', 'it', 'took', '||period||', '||period||', '10', 'hours', '||period||', 'it', 'eased', 'into', 'the', 'water', 'like', 'an', 'old', 'man', 'into', 'a', 'nice', 'warm', 'bath', '||dash||', 'no', 'offence', '||period||', '||leftparen||', 'pause', '||rightparen||', 'so', '||comma||', 'uh', '||comma||', 'clarence', '||comma||', 'how', 'about', 'abandoning', 'this', 'apartment', '||comma||', 'and', 'letting', 'me', 'shove', 'off', 'in', 'this', 'beauty', '||questionmark||', '||return||', '||return||', 'eldridge:', 'is', 'that', 'what', 'this', 'is', 'all', 'about', '||questionmark||', '||exclammark||', 'i', "don't", 'think', 'i', 'like', 'you', '||period||', '||leftparen||', 'enters', 'his', 'apartment', '||comma||', 'and', 'slams', 'the', 'door', 'behind', 'him', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'yelling', 'out', '||rightparen||', "it's", 'my', 'apartment', '||comma||', 'eldridge', '||exclammark||', 'the', 'stalkholm', 'may', 'not', 'have', 'sunk', 'ya', '||comma||', 'but', 'i', 'will', '||exclammark||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||exclammark||', '||return||', '||return||', '[setting:', "vet's", 'office]', '||return||', '||return||', 'vet:', 'what', 'are', 'the', 'symptoms', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'uh', '||period||', '||period||', 'it', 'hurts', 'when', 'he', 'swallows', '||period||', 'expecially', 'when', 'he', 'drinks', 'orange', 'juice', '||period||', '||leftparen||', 'vet', 'gives', 'him', 'a', 'look', '||rightparen||', 'i', 'mean', '||comma||', 'uh', '||period||', '||period||', 'dog', 'food', '||period||', '||period||', 'juice', '||period||', '||leftparen||', 'adding', '||rightparen||', "what's", 'worse', '||dash||', 'he', 'has', 'a', 'nagging', 'cough', '||period||', '||leftparen||', "smucker's", 'coughs', '||rightparen||', 'yeah', '||comma||', "that's", 'it', '||period||', "that's", 'it', '||period||', '||return||', '||return||', 'vet:', 'yeah', '||comma||', 'well', '||comma||', 'uh', '||dash||', "we've", 'been', 'seeing', 'a', 'lot', 'of', 'this', 'lately', '||period||', 'been', 'drinking', 'from', 'the', 'toilet', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'offended', '||rightparen||', 'what', '||questionmark||', 'no', '||period||', "that's", 'disgusting', '||period||', '||period||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'alan:', 'so', "that's", 'it', '||questionmark||', "we're", '||comma||', 'uh', '||comma||', "we're", "breakin'", 'up', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', 'by', 'his', 'sudden', 'change', '||dash||', 'of', '||dash||', 'heart', '||rightparen||', 'what', '||questionmark||', 'break', '||dash||', 'up', '||questionmark||', 'we', 'went', 'out', 'on', 'one', 'date', '||period||', '||return||', '||return||', 'alan:', '||leftparen||', 'fast', '||rightparen||', 'ok', '||comma||', 'yeah', '||comma||', 'sure', '||comma||', 'fine', '||comma||', 'right', '||period||', 'whatever', 'you', 'say', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shows', 'no', 'sign', 'that', 'she', 'cares', '||rightparen||', 'alright', '||comma||', 'good', '||period||', 'good', '||period||', '||return||', '||return||', 'alan:', 'ok', '||comma||', 'then', '||comma||', 'well', '||comma||', 'so', '||period||', '||period||', 'see', 'ya', 'around', '||period||', '||period||', 'big', 'head', '||period||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'elaine:', 'pardon', '||questionmark||', '||return||', '||return||', 'alan:', 'you', 'got', 'a', 'big', 'head', '||period||', "it's", 'too', 'big', 'for', 'your', 'body', '||period||', '||leftparen||', 'walks', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', 'out', 'loud', '||rightparen||', "that's", 'it', '||questionmark||', '||exclammark||', '||leftparen||', 'laughs', 'again', '||rightparen||', "that's", 'the', 'best', 'you', 'got', '||questionmark||', '||exclammark||', '||leftparen||', 'laughs', 'loudly', 'as', 'alan', 'exits', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'so', '||comma||', "he's", 'keeping', 'the', 'apartment', '||period||', 'he', "doesn't", 'deserve', 'it', '||comma||', 'though', '||exclammark||', 'even', 'if', 'he', 'did', 'suffer', '||comma||', 'that', 'was', '||comma||', 'like', '||comma||', '40', 'years', 'ago', '||exclammark||', 'what', 'has', 'he', 'been', 'doing', 'lately', '||questionmark||', '||exclammark||', "i've", 'been', 'suffering', 'for', 'the', 'past', '30', 'years', 'up', 'to', 'and', 'including', 'yesterday', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'this', 'tenant', 'board', 'is', 'so', 'impressed', 'with', 'suffering', '||comma||', 'maybe', 'you', 'should', 'tell', 'them', 'the', '||quotemark||', 'astonishing', 'tales', 'of', 'costanza', '||quotemark||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'interested', '||rightparen||', 'i', 'should', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', 'your', 'body', 'of', 'work', 'in', 'this', 'field', 'is', 'unparalleled', '||period||', '||return||', '||return||', 'george:', 'i', 'could', 'go', 'bumper', 'to', 'bumper', 'with', 'any', 'one', 'else', 'on', 'this', 'planet', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'the', 'man', '||exclammark||', '||return||', '||return||', 'newman:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'with', 'people', '||comma||', "i'll", 'be', 'with', 'you', 'in', 'a', 'moment', '||period||', '||leftparen||', 'slams', 'the', 'door', 'on', "newman's", 'face', '||period||', 'then', 'tries', 'to', 'delay', 'talking', 'to', 'newman', 'by', 'keeping', 'the', 'conversation', 'with', 'george', 'going', '||rightparen||', 'so', '||comma||', 'you', 'want', 'a', 'protein', 'shake', '||comma||', 'or', 'something', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'i', 'guess', 'i', 'should', 'really', 'get', 'moving', 'on', 'this', '||comma||', 'huh', '||questionmark||', "i'm", 'gonna', 'go', '||period||', '||leftparen||', 'opens', 'the', 'door', '||comma||', 'letting', 'newman', 'in', '||period||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'angered', '||rightparen||', 'hello', '||period||', '||period||', 'newman', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'urgent', '||rightparen||', 'i', 'need', 'that', 'mail', '||comma||', 'where', 'is', 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'newman:', 'the', 'guy', 'who', 'had', 'the', 'hawaii', 'transfer', 'got', 'busted', 'for', 'hoarding', 'victoria', 'secret', 'catalogues', '||period||', 'i', 'gotta', 'deliver', 'that', 'mail', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'go', 'ahead', '||period||', "there's", '8', 'bags', 'of', 'it', '||period||', '||return||', '||return||', 'newman:', 'blast', '||exclammark||', "there's", 'no', 'way', 'i', 'can', 'handle', '8', 'in', 'addition', 'to', 'my', 'ususal', 'load', 'of', 'one', '||exclammark||', "i'll", 'never', 'get', 'to', 'hawaii', '||exclammark||', '||leftparen||', 'moves', 'over', 'to', "jerry's", 'couch', '||comma||', 'depressed', '||rightparen||', "i'll", 'be', 'stuck', 'in', 'this', 'apartment', 'building', 'forever', '||exclammark||', '||leftparen||', 'lays', 'down', 'on', "jerry's", 'couch', '||rightparen||', 'the', 'dream', 'is', 'dead', '||period||', '||return||', '||return||', 'jerry:', "you're", 'giving', 'up', 'that', 'easy', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'usually', 'do', '||period||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stopping', 'him', '||rightparen||', 'no', '||comma||', 'wait', 'a', 'minute', '||comma||', 'newman', '||exclammark||', 'you', "can't", 'let', 'this', 'dream', 'die', '||period||', 'you', 'moving', 'away', 'is', 'my', 'dream', 'too', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'intrigued', '||rightparen||', 'what', 'are', 'you', 'proposing', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'fast', '||rightparen||', 'whatever', 'it', 'takes', '||comma||', 'for', 'as', 'long', 'as', 'it', 'takes', 'me', '||comma||', 'where', 'ever', 'it', 'takes', 'me', 'as', 'long', 'as', 'it', 'takes', 'you', 'away', 'from', 'me', '||exclammark||', '||return||', '||return||', 'newman:', 'an', 'alliance', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confirming', '||rightparen||', 'an', 'alliance', '||period||', '||leftparen||', 'they', 'both', 'shake', 'hands', 'and', 'laugh', 'evily', '||rightparen||', 'now', 'get', 'the', 'hell', 'outta', 'here', '||period||', '||leftparen||', 'newman', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'hawaii', '||questionmark||', "that's", 'why', "you're", 'helping', 'newman', 'with', 'the', 'mail', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'like', 'an', 'army', 'general', '||rightparen||', 'elaine', '||comma||', 'newman', 'is', 'my', 'sworn', 'enemy', '||period||', 'and', 'he', 'lives', 'down', 'the', 'hall', 'from', 'my', 'home', '||dash||', 'my', 'home', '||comma||', 'elaine', '||exclammark||', 'where', 'i', 'sleep', '||comma||', 'where', 'i', 'come', 'to', 'play', 'with', 'my', 'toys', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'anyway', '||comma||', 'get', 'this', 'i', 'spoke', 'to', 'alan', '||period||', 'you', 'know', '||comma||', 'i', 'told', 'him', 'i', "didn't", 'want', 'to', 'see', 'him', 'anymore', '||period||', '||period||', 'he', 'called', 'me', '||quotemark||', 'big', 'head', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'big', 'head', '||quotemark||', '||leftparen||', 'scoffs', '||rightparen||', "that's", 'almost', 'a', 'compliment', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'agreeing', '||rightparen||', "it's", 'one', 'of', 'the', 'nicest', 'things', "anyone's", 'ever', 'said', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'the', 'other', 'line', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'listen', '||comma||', 'i', "can't", 'make', 'it', 'later', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'make', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'the', 'tenant', 'association', 'has', 'decided', 'to', 'hear', 'my', 'side', 'of', 'the', 'story', '||period||', 'so', '||comma||', 'uh', '||comma||', 'i', 'gotta', 'kinda', 'get', 'ready', '||period||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'elaine:', 'is', 'he', 'not', 'gonna', 'go', 'to', 'the', 'coffee', 'shop', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'saddened', '||rightparen||', "doesn't", 'look', 'like', "it's", 'gonna', 'happen', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gives', 'a', '||quotemark||', "that's", 'a', 'shame', '||quotemark||', 'face', '||rightparen||', 'alright', '||comma||', 'well', '||comma||', "i'll", 'see', 'ya', '||period||', '||leftparen||', 'opens', 'the', 'door', 'to', 'exit', '||period||', 'kramer', 'enters', 'coughing', '||period||', 'elaine', 'does', 'her', 'best', 'to', 'dodge', 'out', 'of', 'the', 'way', 'of', "kramer's", 'coughs', '||comma||', 'then', 'walks', 'off', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "aren't", 'you', 'taking', 'any', 'medication', 'for', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||leftparen||', 'pulls', 'a', 'bottle', 'out', 'of', 'his', 'pocket', '||rightparen||', 'i', 'got', 'some', 'pilss', '||period||', 'they', 'taste', 'terrible', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'takes', 'the', 'bottle', 'from', 'him', '||rightparen||', 'just', 'swallow', "'em", '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'gestures', 'to', 'his', 'throat', '||rightparen||', 'no', '||comma||', 'my', "throat's", 'too', 'tender', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'sit', 'down', '||comma||', 'sit', 'down', '||period||', '||leftparen||', 'grabs', 'a', 'pill', 'from', 'the', 'bottle', '||comma||', 'and', 'starts', 'advancing', 'tward', 'kramer', '||dash||', 'like', 'an', 'owner', 'with', 'his', 'dog', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', "don't", 'want', 'to', '||exclammark||', '||return||', '||return||', 'jerry:', "c'mon", '||period||', 'just', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'squirming', '||rightparen||', 'jerry', '||exclammark||', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'sit', 'down', '||exclammark||', 'sit', 'down', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'struggling', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'lean', 'your', 'head', 'back', '||period||', 'open', 'your', 'mouth', '||exclammark||', '||leftparen||', 'grabs', "kramer's", 'head', '||rightparen||', 'open', 'your', 'mouth', '||exclammark||', 'open', 'it', '||exclammark||', 'open', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reads', 'the', 'pill', 'bottle', '||rightparen||', 'what', 'kind', 'of', 'pills', 'are', 'these', '||comma||', 'anyways', '||questionmark||', '||exclammark||', '||quotemark||', 'for', 'smuckers', '||quotemark||', '||questionmark||', '||quotemark||', 'may', 'cause', 'panting', 'and', 'loss', 'of', 'fur', '||quotemark||', '||questionmark||', '||leftparen||', 'turns', 'to', 'kramer', '||rightparen||', 'these', 'are', 'dog', 'pills', '||exclammark||', '||return||', '||return||', 'kramer:', 'whe', 'have', 'the', 'same', 'symptoms', '||period||', '||return||', '||return||', 'jerry:', 'but', '||comma||', "he's", 'a', 'dog', '||exclammark||', 'you', 'need', 'to', 'see', 'a', 'real', 'doctor', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'no', 'doctors', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||period||', '||leftparen||', 'heads', 'for', 'the', 'door', '||comma||', 'grabbing', 'his', 'coat', '||rightparen||', '||return||', '||return||', 'kramer:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'taking', 'the', 'car', '||period||', 'i', 'gotta', 'run', 'some', 'errands', '||period||', 'you', 'want', 'to', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'opens', 'the', 'door', '||rightparen||', "c'mon", '||comma||', 'you', 'wanna', 'go', 'for', 'a', 'ride', '||questionmark||', '||leftparen||', 'starts', 'jiggling', 'his', 'keys', '||dash||', 'as', 'if', "he's", 'calling', 'out', 'for', 'a', 'dog', '||rightparen||', 'huh', '||questionmark||', "c'mon", '||exclammark||', "c'mon", '||exclammark||', '||return||', '||return||', '[setting:', 'taxi', 'cab]', '||return||', '||return||', 'driver:', 'lady', '||comma||', 'could', 'you', 'move', 'your', 'head', 'a', 'little', 'bit', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'driver:', 'your', 'head', '||period||', 'i', "can't", 'see', 'out', 'the', 'back', '||period||', '||leftparen||', 'elaine', 'slumps', 'down', 'in', 'her', 'seat', '||rightparen||', 'little', 'more', '||period||', '||period||', '||leftparen||', 'elaine', 'slumps', 'lower', '||rightparen||', '||period||', '||period||', 'little', 'more', '||period||', '||leftparen||', 'slides', 'down', 'until', 'just', 'her', 'eyes', 'and', 'forehead', 'can', 'be', 'seen', '||rightparen||', 'thank', 'you', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'car]', '||return||', '||return||', 'kramer:', 'i', "don't", 'see', 'any', 'tissues', 'back', 'her', '||period||', '||period||', '||leftparen||', 'looks', 'out', 'the', 'windows', '||rightparen||', 'wait', 'a', 'minute', '||exclammark||', '||period||', '||period||', '||leftparen||', 'jerry', 'looks', 'like', "he's", 'trying', 'to', 'keep', 'something', 'from', 'kramer', '||rightparen||', 'this', "isn't", 'the', 'way', 'to', 'the', 'park', '||exclammark||', '||leftparen||', 'starts', 'getting', 'even', 'more', 'energetic', '||rightparen||', 'where', 'are', 'we', 'going', '||questionmark||', '||period||', '||period||', 'i', 'recognize', 'this', 'block', '||exclammark||', '||leftparen||', 'looks', 'at', 'jerry', '||comma||', 'scared', '||rightparen||', "you're", 'taking', 'me', 'to', 'the', 'doctor', '||exclammark||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'george:', 'so', '||comma||', 'uh', '||comma||', 'mom', '||comma||', 'dad', '||comma||', 'i', 'was', 'hoping', 'that', 'you', 'could', 'help', 'me', 'to', 'remember', 'my', 'childhood', 'a', 'little', 'clearly', '||period||', '||period||', '||return||', '||return||', 'estelle:', 'i', 'feel', 'a', 'draft', '||period||', '||leftparen||', 'grabs', 'the', 'bread', 'basket', 'and', 'her', 'drink', '||rightparen||', "let's", 'change', 'tables', '||period||', '||return||', '||return||', 'frank:', 'get', 'outta', 'here', '||exclammark||', 'we', 'have', 'a', 'booth', '||period||', '||return||', '||return||', 'estelle:', 'frank', '||comma||', "i'm", 'cold', '||exclammark||', '||return||', '||return||', 'frank:', 'order', 'a', 'hot', 'dish', '||period||', '||return||', '||return||', 'estelle:', 'why', "can't", 'we', 'sit', 'over', 'there', '||questionmark||', '||leftparen||', 'points', 'to', 'a', 'table', '||rightparen||', '||return||', '||return||', 'frank:', '||leftparen||', 'yelling', '||rightparen||', "that's", 'not', 'a', 'booth', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'trying', 'to', 'match', "frank's", 'loudness', '||rightparen||', 'so', '||comma||', 'who', 'says', 'we', 'have', 'to', 'sit', 'in', 'a', 'booth', '||questionmark||', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'loud', 'shouting', '||rightparen||', 'i', "didn't", 'take', 'the', 'subway', 'all', 'the', 'way', 'to', 'new', 'york', 'to', 'sit', 'at', 'a', 'table', 'like', 'that', '||exclammark||', '||leftparen||', 'gestures', 'to', 'the', 'table', '||rightparen||', '||return||', '||return||', 'estelle:', '||leftparen||', 'nagging', 'yell', '||rightparen||', 'well', '||comma||', 'i', "didn't", 'take', 'the', 'subway', 'to', 'be', 'in', 'a', 'drafty', 'restaurant', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'pleading', 'for', 'them', 'to', 'stop', '||rightparen||', 'mom', '||period||', '||period||', 'dad', '||period||', '||return||', '||return||', 'frank:', 'now', '||comma||', 'george', '||comma||', 'what', 'do', 'you', 'want', 'to', 'know', 'about', 'your', 'childhood', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'fed', 'up', 'with', 'his', 'parents', '||rightparen||', 'actually', '||comma||', 'i', 'think', "i'm", 'pretty', 'clear', 'on', 'it', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'looks', 'up', '||rightparen||', "where's", 'that', 'breeze', 'coming', 'from', '||questionmark||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'outta', 'the', 'car', '||period||', 'out', '||comma||', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "that's", 'it', '||period||', '||period||', '||leftparen||', 'grabs', 'kramer', '||comma||', 'trying', 'to', 'pull', 'him', 'out', 'of', 'the', 'car', '||rightparen||', '||return||', '||return||', 'kramer:', 'no', '||exclammark||', "don't", '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||exclammark||', 'get', 'back', 'over', 'here', '||exclammark||', 'kramer', '||exclammark||', 'get', 'over', 'here', '||exclammark||', 'you', 'are', 'bad', '||exclammark||', 'bad', 'neighbor', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', '[setting:', 'tenant', 'board', 'room]', '||return||', '||return||', 'eldridge:', 'just', 'then', '||comma||', 'a', 'rescue', 'ship', 'emerged', 'from', 'the', 'fog', 'and', 'saved', 'us', '||period||', 'it', 'was', '||period||', '||period||', '||leftparen||', 'stops', '||comma||', 'then', 'gives', 'george', 'a', 'look', '||period||', 'george', 'stops', 'knocking', 'on', 'the', 'walls', '||rightparen||', 'it', 'was', 'the', 'sweetest', 'sight', 'my', 'eyes', 'ever', 'saw', '||period||', '||return||', '||return||', 'ricardi:', '||leftparen||', 'touched', '||rightparen||', 'thank', 'you', 'mr', '||period||', 'eldridge', '||period||', 'the', 'tenant', 'board', 'will', 'now', 'hear', 'mr', '||period||', "costanza's", 'testimony', '||period||', '||return||', '||return||', '[setting:', "newman's", 'apartment]', '||return||', '||return||', 'jerry:', 'newman', '||comma||', "how'd", 'it', 'go', '||questionmark||', 'did', 'you', 'get', 'it', 'all', 'delivered', '||questionmark||', '||leftparen||', 'sees', 'the', 'pac', '||rightparen||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'newman:', 'kramer', 'bit', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'bit', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', 'we', 'had', 'an', 'arguement', 'about', 'me', 'going', 'to', 'hawaii', '||comma||', 'and', 'he', 'locked', 'onto', 'my', 'ankle', 'like', 'it', 'was', 'a', 'soup', 'bone', '||period||', "i'm", 'hubbled', '||exclammark||', 'i', "don't", 'think', 'i', 'can', 'do', 'my', 'route', '||dash||', 'and', "they're", 'awarding', 'the', 'transfer', 'in', 'two', 'days', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bravely', '||rightparen||', 'well', '||comma||', 'what', 'if', 'i', 'deliver', 'it', '||questionmark||', '||return||', '||return||', 'newman:', 'you', '||questionmark||', '||exclammark||', '||leftparen||', 'laughs', 'hysterically', '||rightparen||', 'you', "can't", 'deliver', 'mail', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'why', 'not', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'thinks', 'for', 'a', 'moment', '||rightparen||', 'i', 'guess', "you're", 'right', '||period||', "it's", 'just', 'walking', 'around', 'putting', 'it', 'into', 'boxes', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'am', 'i', 'gonna', 'wear', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'could', 'give', 'you', 'my', 'uniform', 'from', 'my', 'rookie', 'year', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'excited', '||rightparen||', 'i', "can't", 'believe', "i'm", 'gonna', 'be', 'a', 'mailman', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hands', 'him', 'some', 'mail', '||rightparen||', 'there', 'you', 'go', '||period||', 'merry', 'chirstmas', '||exclammark||', '||return||', '||return||', 'owner:', 'mail', 'on', 'sunday', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shrugs', '||rightparen||', 'oops', '||period||', '||leftparen||', 'continues', 'walking', 'along', 'the', 'route', '||comma||', 'whistling', '||period||', 'hands', 'a', 'newspaper', 'to', 'a', 'homeless', 'bum', 'on', 'the', 'street', '||comma||', 'then', 'keeps', 'walking', '||rightparen||', '||return||', '||return||', '[setting:', 'tenant', 'board', 'room]', '||return||', '||return||', 'george:', 'i', 'was', 'handcuffed', 'to', 'the', 'bed', '||period||', '||period||', 'in', 'my', 'underwear', '||comma||', '||leftparen||', 'sighs', '||rightparen||', 'where', 'i', 'remained', '||period||', '||period||', '||leftparen||', 'scene', 'cuts', 'to', 'another', 'story', '||rightparen||', 'she', 'was', 'attractive', '||period||', '||period||', 'she', 'was', '||comma||', 'also', '||comma||', 'infact', '||comma||', 'a', 'nazi', '||period||', '||period||', '||leftparen||', 'cuts', 'to', 'another', 'story', '||rightparen||', 'the', 'water', '||period||', '||period||', 'that', 'i', 'had', 'been', 'swiming', 'in', 'was', '||period||', '||period||', 'very', 'cold', '||period||', 'and', '||comma||', 'when', 'i', 'dropped', 'the', 'towel', '||comma||', 'there', 'was', '||period||', '||period||', 'significant', 'shrinkage', '||period||', '||period||', '||leftparen||', 'scene', 'cuts', 'to', '||comma||', 'yet', '||comma||', 'another', 'story', '||rightparen||', 'her', 'parents', 'were', 'looking', 'at', 'me', '||period||', '||period||', 'so', '||comma||', 'there', 'i', 'was', '||comma||', 'with', 'a', 'marble', 'rye', 'hanging', 'from', 'the', 'end', 'of', 'a', 'fishing', 'pole', '||period||', '||period||', '||leftparen||', 'scene', 'cuts', 'to', 'his', 'closing', 'statements', '||rightparen||', 'in', 'closing', '||comma||', 'these', 'stories', 'have', 'not', 'been', 'embellished', '||comma||', 'because', '||dash||', 'they', 'need', 'no', 'embellishment', '||period||', 'they', 'are', 'simply', '||comma||', 'horrifyingly', '||comma||', 'the', 'story', 'of', 'my', 'life', 'as', 'a', 'short', '||comma||', 'stocky', '||comma||', 'slow', 'witted', 'bald', 'man', '||period||', '||leftparen||', 'gets', 'up', '||rightparen||', 'thank', 'you', '||period||', '||leftparen||', 'every', 'memeber', 'of', 'the', 'board', 'shows', 'some', 'sign', 'that', "george's", 'story', 'is', 'most', 'deserving', 'of', 'the', 'apartment', '||period||', 'ricardi', 'is', 'crying', '||period||', 'george', 'turns', 'to', 'leave', '||comma||', 'then', 'remembers', 'one', 'more', 'thing', '||period||', '||period||', '||rightparen||', 'oh', '||comma||', 'also', '||period||', '||period||', 'my', 'fiance', 'died', 'from', 'licking', 'toxic', 'envelopes', 'that', 'i', 'picked', 'out', '||period||', '||leftparen||', 'sobs', 'and', 'loud', 'crying', 'erupts', 'from', 'the', 'board', 'members', '||rightparen||', 'thanks', 'again', '||period||', '||leftparen||', 'leaves', '||period||', 'eldridge', 'looks', 'defeated', '||rightparen||', '||return||', '||return||', '[setting:', "newman's", 'apartment]', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "i've", 'been', 'trying', 'to', 'jam', 'stuff', 'in', 'the', 'box', '||comma||', 'like', 'you', 'told', 'me', '||comma||', 'but', 'sometimes', 'it', 'says', '||comma||', 'like', '||comma||', '||quotemark||', 'photographs', '||dash||', 'do', 'not', 'bend', '||quotemark||', '||period||', '||return||', '||return||', 'newman:', '||quotemark||', 'do', 'not', 'bend', '||quotemark||', '||period||', '||leftparen||', 'laughs', 'evilly', '||rightparen||', 'just', 'crease', '||comma||', 'crumple', '||comma||', 'cram', '||period||', '||period||', "you'll", 'do', 'fine', '||period||', '||leftparen||', 'phone', 'rings', '||period||', 'newman', 'answers', 'it', '||rightparen||', 'hello', '||questionmark||', '||period||', '||period||', 'this', 'is', 'he', '||period||', 'i', "don't", 'understand', '||period||', '||period||', 'very', 'well', '||period||', '||leftparen||', 'hangs', 'up', 'in', 'disappointment', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'that', 'was', 'the', 'vice', 'president', 'of', 'the', 'post', 'office', '||period||', 'i', "didn't", 'get', 'the', 'transfer', '||period||', '||period||', 'they', 'knew', 'it', "wasn't", 'me', 'doing', 'my', 'route', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'did', 'they', 'know', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'stands', 'up', '||rightparen||', 'too', 'many', 'people', 'go', 'their', 'mail', '||exclammark||', 'close', 'to', '80%', '||period||', 'no', 'body', 'from', 'the', 'post', 'office', 'has', 'ever', 'cracked', 'the', '50%', 'barrier', '||exclammark||', "it's", 'like', 'the', '3', '||dash||', 'minute', 'mile', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'i', 'tried', 'my', 'best', '||exclammark||', '||return||', '||return||', 'newman:', 'exactly', '||period||', "you're", 'a', 'disgrace', 'to', 'the', 'uniform', '||period||', '||leftparen||', 'newman', 'takes', 'off', "jerry's", 'mailman', 'hat', '||period||', 'jerry', 'turns', 'his', 'head', 'in', 'shame', '||period||', 'newman', 'then', 'tears', 'the', 'post', 'office', 'badge', 'from', "jerry's", 'coat', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'this', 'is', 'your', 'coat', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'realizing', '||rightparen||', 'damn', '||exclammark||', '||return||', '||return||', '[setting:', 'central', 'park]', '||return||', '||return||', 'man', '2:', 'he', 'flew', 'right', 'into', 'your', 'head', '||period||', 'like', 'he', "couldn't", 'avoid', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'rubbing', 'her', 'head', 'to', 'relieve', 'the', 'pain', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'man', '2:', 'never', 'seen', 'that', 'before', '||period||', 'bird', 'into', 'a', "woman's", 'head', '||period||', '||period||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'george:', "it's", 'not', 'contest', '||period||', 'the', 'guy', 'had', 'nothing', '||exclammark||', 'the', 'ship', 'went', 'down', '||comma||', 'he', 'got', 'into', 'a', 'life', 'boat', '||comma||', 'i', 'mean', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'he', "didn't", 'know', 'what', 'he', 'was', 'up', 'against', '||period||', '||leftparen||', 'george', 'laughs', '||rightparen||', 'so', '||comma||', 'when', 'do', 'you', 'move', 'into', 'the', 'apartment', '||questionmark||', '||return||', '||return||', 'george:', "they're", 'making', 'their', 'decision', 'today', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', '||period||', 'except', 'that', 'a', 'bird', 'ran', 'into', 'my', 'giant', 'freak', '||dash||', 'head', '||period||', '||leftparen||', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'giant', 'freak', '||dash||', 'head', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'annoyed', '||comma||', 'near', 'tears', '||rightparen||', 'the', 'one', 'that', 'sits', 'atop', 'my', 'disproportunately', 'puny', 'body', '||period||', '||period||', "i'm", 'a', 'walking', 'candy', 'apple', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "it's", 'actually', 'gotten', 'to', 'you', '||questionmark||', "you're", 'playing', 'right', 'into', 'his', 'hands', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'realizing', '||rightparen||', 'what', '||questionmark||', 'yeah', '||period||', '||period||', "you're", 'right', '||exclammark||', '||period||', '||period||', 'all', 'i', 'have', 'to', 'do', 'is', 'call', 'him', 'up', '||comma||', 'and', 'sit', 'with', 'him', '||comma||', 'and', 'show', 'him', 'that', 'it', "doesn't", 'bother', 'me', '||period||', 'you', 'know', '||comma||', 'laugh', 'it', 'off', '||period||', '||period||', 'or', 'jam', 'a', 'fork', 'into', 'his', 'forehead', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'casually', '||comma||', 'sarcastic', '||rightparen||', 'either', 'way', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'getting', 'up', 'to', 'leave', '||rightparen||', 'alright', '||period||', '||return||', '||return||', '[setting:', 'restaurant]', '||return||', '||return||', 'alan:', 'i', 'want', 'to', 'apologize', 'for', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrugging', 'it', 'off', '||rightparen||', 'oh', '||comma||', 'please', '||period||', '||return||', '||return||', 'alan:', 'so', 'you', 'have', 'a', 'big', 'head', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'casually', 'playing', 'along', '||rightparen||', 'so', 'what', '||questionmark||', '||return||', '||return||', 'alan:', 'it', 'goes', 'well', 'with', 'that', 'bump', 'in', 'your', 'nose', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'suddenly', 'angry', '||rightparen||', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'woman:', 'please', '||exclammark||', 'get', 'help', '||exclammark||', "there's", 'a', 'crazy', 'big', '||dash||', 'headed', 'woman', 'beating', 'up', 'some', 'guy', '||exclammark||', 'tell', 'the', 'police', '||quotemark||', 'the', 'old', 'mill', 'restaurant', '||quotemark||', '||period||', 'hurry', '||exclammark||', '||return||', '||return||', 'cop:', 'boy', '||comma||', "that's", 'some', 'cough', 'you', 'got', 'there', '||period||', '||return||', '||return||', 'cop', '2:', 'no', '||comma||', 'i', 'think', "he's", 'trying', 'to', 'tell', 'us', 'something', '||period||', 'what', 'is', 'it', '||questionmark||', '||leftparen||', 'between', 'coughs', '||comma||', 'kramer', 'manages', 'to', 'say', 'the', 'word', '||quotemark||', 'trouble', '||quotemark||', '||rightparen||', 'trouble', '||questionmark||', '||exclammark||', 'trouble', '||questionmark||', 'where', '||questionmark||', "where's", 'trouble', '||questionmark||', '||leftparen||', 'kramer', 'coughs', 'out', 'the', 'words', '||quotemark||', 'old', 'mill', '||quotemark||', '||rightparen||', 'trouble', 'at', 'the', 'old', 'mill', '||questionmark||', '||exclammark||', 'oh', 'my', 'god', '||exclammark||', 'good', 'boy', '||comma||', 'good', 'boy', '||exclammark||', 'lead', 'the', 'way', '||exclammark||', 'come', 'on', '||period||', '||return||', '||return||', '[setting:', "george's", 'apartment', 'building]', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'uh', '||comma||', 'what', 'are', 'you', 'doing', 'in', 'there', '||questionmark||', '||return||', '||return||', 'alan:', "i'm", 'moving', 'in', '||period||', 'alan', 'mercer', '||period||', 'new', 'neighbor', '||period||', '||leftparen||', 'they', 'shake', 'hands', '||rightparen||', '||return||', '||return||', 'george:', 'what', '||questionmark||', "elaine's", 'big', '||dash||', 'head', 'guy', '||questionmark||', 'they', 'have', 'you', 'the', 'apartment', '||questionmark||', '||exclammark||', '||return||', '||return||', 'alan:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||exclammark||', 'because', 'you', 'were', 'stabbed', '||comma||', 'and', '||period||', '||period||', 'got', 'coffee', 'thrown', 'in', 'your', 'face', '||comma||', 'and', '||period||', '||period||', 'uh', '||period||', '||period||', '||leftparen||', 'points', 'to', "alan's", 'bandaged', 'forehead', '||rightparen||', '||return||', '||return||', 'alan:', 'oh', '||comma||', 'fork', 'in', 'the', 'forehead', '||period||', '||return||', '||return||', 'george:', "that's", 'why', 'they', 'gave', 'you', 'the', 'apartment', '||questionmark||', '||return||', '||return||', 'alan:', 'no', '||comma||', 'i', 'just', 'gave', 'the', 'super', '50', 'bucks', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'that', 'is', 'my', 'apartment', '||period||', 'i', 'earned', 'it', 'with', '34', 'years', 'of', 'misery', '||exclammark||', '||return||', '||return||', 'alan:', 'tough', 'luck', '||comma||', 'chinless', '||period||', '||leftparen||', 'goes', 'into', 'his', 'new', 'apartment', '||comma||', 'and', 'slams', 'the', 'door', 'on', 'george', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'what', 'happened', 'to', 'you', 'yesterday', '||questionmark||', 'we', 'were', 'supposed', 'to', 'go', 'to', 'the', 'auto', 'show', '||comma||', 'i', 'waited', 'for', 'you', '||comma||', 'you', 'never', 'came', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'i', 'got', 'really', 'busy', '||period||', 'how', 'long', 'did', 'you', 'wait', '||questionmark||', '||return||', '||return||', 'jerry:', 'five', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'five', 'minutes', '||questionmark||', "that's", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'difference', '||questionmark||', 'you', 'never', 'showed', 'up', '||period||', '||return||', '||return||', 'elaine:', 'i', "could've", '||exclammark||', 'i', 'mean', '||comma||', 'last', 'week', 'we', 'waited', 'for', 'that', 'friend', 'of', "kramer's", 'for', 'like', '||comma||', 'forty', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'we', 'barely', 'knew', 'the', 'guy', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'the', 'longer', 'you', 'know', 'someone', '||comma||', 'the', 'shorter', 'you', 'wait', 'for', "'em", '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'way', 'it', 'works', '||period||', '||return||', '||return||', 'elaine:', 'when', 'did', 'you', 'tell', 'george', 'to', 'be', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'told', 'him', 'to', 'meet', 'us', 'here', 'in', 'ten', 'minutes', '||period||', 'how', 'long', 'has', 'it', 'been', '||questionmark||', '||return||', '||return||', 'elaine:', 'about', 'five', '||period||', '||return||', '||return||', 'jerry:', "that's", 'enough', '||period||', '||leftparen||', 'they', 'leave', '||period||', 'george', 'comes', 'around', 'the', 'corner', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'looks', 'at', 'his', 'watch', '||rightparen||', ':', 'early', '||exclammark||', 'alright', '||exclammark||', '||leftparen||', 'shivers', '||period||', '||rightparen||', 'cold', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'i', 'noticed', 'you', 'bounced', 'a', 'check', 'at', 'the', 'bodega', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'know', 'about', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'marcelino', '||comma||', 'he', 'taped', 'it', 'up', 'on', 'his', 'cash', 'register', 'with', 'all', 'the', 'other', 'bad', 'checks', '||period||', '||return||', '||return||', 'jerry:', 'he', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'sternly', '||rightparen||', ':', "it's", 'the', 'only', 'way', "you'll", 'learn', '||period||', '||leftparen||', 'tastes', 'his', 'eggs', '||period||', '||rightparen||', 'aw', '||comma||', 'these', 'eggs', 'are', 'disgusting', '||period||', 'this', 'chicken', 'should', 'be', 'ashamed', 'of', 'himself', '||period||', '||return||', '||return||', 'george:', 'fantastic', 'day', '||exclammark||', 'fantastic', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||dash||', 'hehe', '||rightparen||', 'well', '||comma||', 'first', '||comma||', "i'm", 'brushing', 'my', 'teeth', 'and', 'this', 'piece', 'of', 'apple', '||dash||', 'skin', '||comma||', 'that', 'must', 'have', 'been', 'lodged', 'in', 'there', 'for', 'days', '||comma||', 'comes', 'loose', '||period||', '||return||', '||return||', 'jerry:', 'fantastic', '||period||', '||return||', '||return||', 'george:', 'then', '||comma||', "i'm", 'at', 'the', 'foundation', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "you're", 'still', 'doing', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'sometimes', '||comma||', 'once', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'jerry:', 'when', 'you', 'feel', 'guilty', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'occasionally', "i'll", 'forget', 'to', 'let', 'the', 'machine', 'pick', 'up', '||period||', 'anyway', '||comma||', 'they', 'made', 'this', 'large', 'donation', '||comma||', 'to', 'a', "women's", 'prison', '||comma||', 'and', 'i', 'get', 'to', 'go', 'down', 'there', 'and', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'kramer:', "that's", 'caged', 'heat', '||period||', '||return||', '||return||', 'george:', 'yeah', '||dash||', 'hah', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'gonna', 'do', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', 'really', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'just', 'eh', '||comma||', 'stroll', 'around', 'the', 'cell', 'blocks', '||comma||', 'maybe', 'eh', '||comma||', 'take', 'in', 'a', 'shower', 'fight', '||period||', '||leftparen||', 'chuckles', '||period||', '||rightparen||', 'hey', 'eh', '||comma||', 'you', 'know', 'you', 'got', 'a', 'bounced', 'check', 'hanging', 'up', 'in', 'the', 'little', 'market', 'over', 'on', 'columbus', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'noticed', 'you', 'eh', '||comma||', 'chose', 'the', 'eh', '||quotemark||', 'clowns', 'with', 'balloons', '||quotemark||', 'check', 'design', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'a', 'mistake', '||comma||', 'the', 'bank', 'sent', 'me', 'the', 'wrong', 'ones', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'look', "who's", 'here', '||exclammark||', 'hey', 'kurt', '||comma||', 'this', 'is', 'jerry', '||comma||', 'and', 'george', '||comma||', 'and', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'kurt', '||period||', 'taste', 'these', 'eggs', '||period||', '||return||', '||return||', 'kurt:', 'uh', '||comma||', 'no', '||dash||', 'i', 'only', 'eat', 'cage', '||dash||', 'free', '||comma||', 'farm', '||dash||', 'fresh', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', 'these', 'are', 'sweatshop', 'eggs', '||period||', '||return||', '||return||', 'kurt', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'ah', '||comma||', 'i', 'gotta', 'call', 'the', 'office', '||period||', 'honey', '||comma||', 'will', 'you', 'order', 'for', 'me', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'sitting', 'down', '||rightparen||', ':', "i'm", 'a', '||quotemark||', 'honey', '||period||', '||quotemark||', "he's", 'pretty', 'great', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'he', 'from', 'the', 'future', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'he', 'just', 'shaves', 'his', 'head', '||period||', 'i', 'think', "it's", 'pretty', 'gutsy', '||period||', '||return||', '||return||', 'george:', 'listen', '||comma||', 'sweetheart', '||comma||', 'let', 'me', 'tell', 'you', 'a', 'little', 'something', 'about', 'guts', '||period||', '||leftparen||', 'points', 'to', 'his', 'head', '||period||', '||rightparen||', 'this', 'is', 'guts', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'clinging', 'to', 'some', 'scraps', '||questionmark||', '||return||', '||return||', 'george:', 'these', 'are', 'not', '||quotemark||', 'scraps', '||period||', '||quotemark||', 'these', 'are', 'historic', 'remains', 'of', 'a', 'once', 'great', 'society', 'of', 'hair', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'did', 'you', 'guys', 'stop', 'at', 'the', 'bodega', 'today', '||questionmark||', 'some', 'moron', 'bounced', 'a', 'clown', 'check', '||exclammark||', '||return||', '||return||', '[the', 'bodega', '||comma||', 'starts', 'with', 'a', 'shot', 'of', "marcelino's", 'cash', 'register', 'with', "jerry's", 'clown', 'check', 'attached', 'under', 'a', 'sign', 'that', 'reads', '||quotemark||', 'checks', 'no', 'longer', 'accepted', 'from:', '||quotemark||', '||period||', ']', '||return||', '||return||', 'check', '#1246', '||comma||', 'dated', 'dec', '||period||', '15', '\x9196', '||comma||', 'made', 'out', 'to:', 'columbus', 'deli', 'for', '$40', '||period||', '00', '||return||', '||return||', 'jerry:', 'again', '||comma||', "i'm", 'really', 'sorry', 'about', 'the', 'check', '||comma||', 'marcelino', '||period||', '||return||', '||return||', 'marcelino:', 'people', 'seem', 'to', 'like', 'the', 'clowns', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'takes', 'out', 'his', 'wallet', '||rightparen||', ':', 'look', '||comma||', 'let', 'me', 'just', 'give', 'you', 'the', 'forty', '||comma||', 'plus', 'another', 'twenty', 'for', 'your', 'trouble', '||period||', '||return||', '||return||', 'marcelino:', "'kay", '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'turning', 'to', 'leave', '||rightparen||', ':', "aren't", 'you', 'going', 'to', 'take', 'the', 'check', 'down', '||questionmark||', '||return||', '||return||', 'marcelino:', 'sorry', '||comma||', 'no', '||period||', "it's", 'store', 'policy', '||period||', '||return||', '||return||', 'jerry:', 'but', "it's", 'your', 'bodega', '||period||', '||return||', '||return||', 'marcelino:', 'even', 'i', 'am', 'not', 'above', 'the', 'policy', '||period||', '||return||', '||return||', 'betsy:', 'those', 'are', 'our', 'tennis', 'courts', '||period||', '||return||', '||return||', 'george:', 'tennis', 'courts', '||questionmark||', 'w', '||dash||', 'w', '||dash||', 'what', 'about', 'the', 'yard', '||questionmark||', 'where', 'do', 'they', 'have', 'the', 'gang', 'fights', '||questionmark||', '||return||', '||return||', 'betsy:', "there's", 'no', 'fights', 'here', '||comma||', 'mr', '||period||', 'costanza', '||period||', 'this', 'is', 'a', 'minimum', 'security', 'facility', '||period||', '||return||', '||return||', 'george:', 'hmm', '||period||', 'what', 'about', 'a', 'hole', '||questionmark||', 'you', 'ever', 'put', 'anybody', 'in', '||quotemark||', 'the', 'box', '||quotemark||', '||questionmark||', '||return||', '||return||', 'betsy:', 'no', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'himself', '||rightparen||', ':', 'this', 'prison', 'stinks', '||period||', '||return||', '||return||', 'betsy:', 'and', 'finally', '||comma||', 'the', 'library', '||comma||', 'which', 'has', 'just', 'been', 'refurbished', 'thanks', 'to', 'your', 'generous', 'donation', '||period||', 'this', 'is', 'celia', 'morgan', '||comma||', 'our', 'librarian', '||period||', '||return||', '||return||', 'celia:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'betsy:', "i'll", 'be', 'in', 'my', 'office', 'if', 'you', 'need', 'me', '||period||', '||return||', '||return||', 'george:', 'thanks', '||comma||', 'warden', '||period||', '||return||', '||return||', 'betsy', '||leftparen||', 'sweetly', '||rightparen||', ':', 'betsy', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'disappointed', '||rightparen||', ':', 'betsy', '||period||', '||return||', '||return||', 'celia:', 'so', '||comma||', 'are', 'you', 'the', 'head', 'of', 'the', 'foundation', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "let's", 'just', 'say', 'it', "wouldn't", 'exist', 'without', 'me', '||period||', '||leftparen||', 'notices', 'another', 'person', 'in', 'the', 'library', 'dressed', 'the', 'same', 'as', 'celia', '||period||', '||rightparen||', 'so', 'you', 'two', 'uh', '||comma||', 'shop', 'at', 'the', 'same', 'store', '||comma||', '||leftparen||', 'hu', '||rightparen||', '||questionmark||', '||return||', '||return||', 'celia:', 'no', '||comma||', "it's", 'standard', 'issue', '||period||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||period||', '||period||', '||period||', "you're", 'in', 'jail', '||questionmark||', '||leftparen||', 'celia', 'nods', '||period||', '||rightparen||', 'that', 'is', 'so', 'cool', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'asked', 'her', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', 'not', '||quotemark||', 'out', '||period||', '||quotemark||', "she's", 'a', 'prisoner', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'ask', 'her', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'remember', 'when', 'you', "wouldn't", 'date', 'that', 'girl', 'who', 'lived', 'in', 'queens', 'because', 'you', "didn't", 'want', 'to', 'go', 'over', 'the', 'bridge', '||exclammark||', '||return||', '||return||', 'george:', 'that', 'was', 'different', '||exclammark||', '||return||', '||return||', 'jerry:', "i'll", 'say', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'i', 'like', 'being', 'with', 'her', '||period||', 'plus', '||comma||', 'i', 'know', 'where', 'she', 'is', 'all', 'the', 'time', '||period||', 'i', 'have', 'relatively', 'no', 'competition', '||period||', 'an', '||dash||', 'and', 'you', 'know', 'how', 'you', 'live', 'in', 'fear', 'of', 'the', 'pop', '||dash||', 'in', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'shudders', '||rightparen||', ':', 'the', 'pop', '||dash||', 'in', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'no', 'pop', '||dash||', 'in', '||comma||', 'no', '||quotemark||', 'in', 'the', 'neighborhood', '||comma||', '||quotemark||', 'no', '||quotemark||', 'i', 'saw', 'your', 'light', 'was', 'on', '||period||', '||quotemark||', 'and', 'the', 'best', 'part', 'is', '||comma||', 'if', 'things', 'go', 'really', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'conjugal', 'visit', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'giddy', '||rightparen||', ':', "don't", 'jinx', 'it', '||exclammark||', "don't", 'jinx', '||leftparen||', 'trails', 'off', 'quietly', 'in', 'elation', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'kramer:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'is', 'dating', 'a', 'convict', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||questionmark||', "what's", 'she', 'in', 'for', '||questionmark||', '||leftparen||', 'putting', 'groceries', 'in', 'the', 'fridge', '||rightparen||', '||return||', '||return||', 'george:', 'embezzlement', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'approvingly', '||rightparen||', ':', 'sounds', 'like', 'a', 'nice', 'girl', '||period||', 'hey', 'jerry', '||comma||', 'is', 'it', 'all', 'right', 'if', 'i', 'put', 'some', 'stuff', 'in', 'your', 'fridge', '||questionmark||', "'cause", "mine's", 'full', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'sure', '||period||', 'you', "don't", 'even', 'have', 'a', 'fridge', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'not', 'here', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||leftparen||', 'lifting', 'the', 'bag', 'and', 'carrying', 'it', 'into', 'the', 'apt', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'kramer', '||comma||', 'wait', 'a', 'minute', '||comma||', 'what', 'the', 'hell', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'chicken', 'feed', '||period||', '||leftparen||', 'slams', 'the', 'bag', 'into', "jerry's", 'fridge', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'sense', 'something', 'is', 'afoot', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'bought', 'a', 'chicken', '||period||', '||return||', '||return||', 'george:', 'allow', 'me', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'cage', '||dash||', 'free', '||comma||', 'farm', '||dash||', 'fresh', 'eggs', '||period||', '||return||', '||return||', 'jerry:', 'allow', 'me', '||period||', 'what', 'are', 'you', '||comma||', 'an', 'idiot', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||leftparen||', 'throws', 'hand', 'in', 'the', 'air', 'and', 'turns', 'and', 'looks', 'back', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'kurt:', 'hold', 'it', '||comma||', 'hold', 'it', '||comma||', 'hold', 'it', '||comma||', 'here', '||comma||', 'i', 'got', 'it', '||period||', 'catch', '||period||', '||leftparen||', 'tosses', 'his', 'wallet', 'to', 'elaine', '||comma||', 'she', 'pays', 'the', 'delivery', 'guy', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hm', '||period||', '||leftparen||', 'looking', 'at', "kurt's", "driver's", 'license', 'photo', '||rightparen||', 'hey', '||comma||', "driver's", 'license', '||period||', 'oh', '||period||', '||period||', '||period||', 'my', 'god', '||period||', '||return||', '||return||', 'kurt:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'your', 'hair', '||period||', "it's", 'so', 'thick', 'and', 'lustrous', '||period||', 'i', 'mean', '||comma||', 'it', '||period||', '||period||', '||period||', 'it', 'was', '||period||', '||return||', '||return||', 'kurt:', 'well', '||comma||', 'it', 'still', 'is', '||period||', 'i', 'shave', 'my', 'head', 'for', 'my', 'swim', 'team', '||period||', 'i', 'just', 'liked', 'the', 'way', 'it', 'looked', '||comma||', 'so', 'i', 'kept', 'it', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'saying', 'that', 'i', 'could', 'be', 'dating', 'this', 'hair', '||questionmark||', 'i', 'mean', 'wi', '||period||', '||period||', 'with', 'you', 'under', 'it', '||questionmark||', '||leftparen||', 'kurt', 'shrugs', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sits', 'up', 'in', 'bed', '||rightparen||', 'oh', 'what', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'your', '||quotemark||', 'chicken', '||quotemark||', 'making', 'all', 'that', 'noise', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'jerry', 'loves', 'the', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'little', 'jerry', 'seinfeld', '||period||', 'i', 'named', 'my', 'chicken', 'after', 'you', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', "that's", 'very', 'sweet', '||comma||', 'but', 'that', 'is', 'not', '||comma||', 'a', 'chicken', '||period||', '||return||', '||return||', 'kramer:', 'of', 'course', 'it', 'is', '||period||', 'i', 'picked', 'it', 'out', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'picked', 'out', 'a', 'rooster', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'would', 'explain', 'little', "jerry's", 'poor', 'egg', 'production', '||period||', '||return||', '||return||', 'celia:', 'this', 'was', 'fun', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'had', 'a', 'great', 'time', '||period||', '||return||', '||return||', 'guard:', 'five', 'minutes', '||comma||', 'mr', '||period||', 'costanza', '||period||', '||return||', '||return||', 'george:', 'the', 'whole', 'hour', 'just', 'flew', 'by', '||period||', '||leftparen||', 'laughs', '||dash||', 'hehe', '||rightparen||', '||leftparen||', 'begins', 'cleaning', 'up', 'the', 'table', '||period||', '||rightparen||', '||return||', '||return||', 'guard:', "i'll", 'get', 'that', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'thanks', '||comma||', 'bobby', '||period||', '||leftparen||', 'to', 'celia', '||rightparen||', 'well', '||comma||', 'i', 'guess', "i'll", 'see', 'you', 'in', 'four', 'days', '||period||', '||return||', '||return||', 'celia:', 'yeah', '||period||', 'go', 'out', 'and', 'have', 'a', 'ball', 'with', 'the', 'guys', '||period||', "i'll", 'be', 'waiting', 'right', 'here', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'you', 'will', '||period||', '||leftparen||', 'quick', 'chuckle', '||rightparen||', '||period||', "you're", 'the', 'best', '||period||', '||leftparen||', 'with', 'a', 'light', 'fist', 'motion', 'across', 'her', 'chin', '||rightparen||', '||return||', '||return||', 'celia:', 'hmm', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'helen', '||leftparen||', 'in', 'florida', 'with', 'morty', '||rightparen||', ':', 'jerry', '||questionmark||', 'leo', 'told', 'us', 'he', 'saw', 'your', 'bounced', 'check', '||period||', 'are', 'you', 'having', 'money', 'problems', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'having', 'money', 'problems', '||period||', '||return||', '||return||', 'helen:', 'enough', 'with', 'the', 'comedy', '||exclammark||', "you're", 'very', 'clever', '||comma||', 'you', 'should', 'look', 'into', 'advertising', '||period||', '||return||', '||return||', 'morty:', 'he', 'never', 'even', 'called', 'ed', 'roydlick', '||period||', 'they', 'were', 'looking', 'for', 'someone', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'calling', 'ed', 'roydlick', '||period||', "i'm", 'doing', 'fine', '||exclammark||', '||return||', '||return||', 'helen:', "that's", 'it', '||period||', "i'm", 'gonna', 'to', 'send', 'you', 'fifty', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'you', 'are', 'not', 'sending', 'me', 'fifty', 'dollars', '||exclammark||', '||return||', '||return||', 'helen:', "we're", 'sending', 'you', 'fifty', 'dollars', '||exclammark||', 'morty', '||comma||', 'get', 'me', 'an', 'envelope', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'angrily', '||rightparen||', ':', 'i', 'swear', 'to', 'god', '||comma||', 'if', 'you', 'send', 'me', 'fifty', 'dollars', '||comma||', 'you', 'are', 'gonna', 'be', 'so', 'sorry', '||exclammark||', '||return||', '||return||', 'morty:', 'i', "don't", 'see', 'envelopes', '||exclammark||', '||return||', '||return||', 'helen:', "they're", 'right', 'in', 'front', 'of', 'you', '||exclammark||', 'oh', '||comma||', 'for', "heaven's", 'sakes', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'puts', 'the', 'phone', 'down', 'on', 'the', 'couch', 'and', 'goes', 'to', 'help', 'morty', '||period||', '||rightparen||', 'show', 'you', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'ma', '||exclammark||', 'ma', '||exclammark||', 'maaa', '||exclammark||', '||leftparen||', 'hangs', 'up', 'the', 'phone', 'in', 'disgust', '||period||', '||rightparen||', 'oh', '||comma||', 'ahhhh', '||leftparen||', 'sighs', 'quietly', '||rightparen||', '||return||', '||return||', 'george:', "how're", 'the', 'folks', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', 'movie', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'were', 'going', 'out', 'with', 'celia', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'did', '||period||', "i'm", 'back', '||period||', 'i', 'love', 'this', 'relationship', '||comma||', 'i', 'feel', 'so', 'liberated', '||exclammark||', '||return||', '||return||', 'jerry:', 'having', 'her', 'in', 'jail', '||period||', '||return||', '||return||', 'george:', 'the', 'only', 'thing', 'that', 'bothers', 'me', 'is', 'that', "i'm", 'just', 'coming', 'up', 'with', 'this', 'now', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'dating', 'a', 'convicted', 'felon', '||period||', 'i', "don't", 'know', 'how', 'you', 'missed', 'it', '||period||', '||return||', '||return||', 'elaine:', 'here', '||period||', '||leftparen||', 'shows', "kurt's", "driver's", 'license', 'to', 'jerry', '||period||', '||rightparen||', 'take', 'a', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||period||', "kurt's", 'an', 'organ', 'donor', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', "he's", 'not', 'bald', '||period||', 'look', '||exclammark||', "he's", 'got', 'a', 'full', 'head', 'of', 'hair', '||period||', '||return||', '||return||', 'jerry:', 'so', 'he', 'just', 'shaves', 'his', 'head', 'for', 'no', 'reason', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'like', 'using', 'a', 'wheelchair', 'for', 'the', 'fun', 'of', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'and', "he's", 'growing', 'it', 'in', 'just', 'for', 'me', '||period||', '||leftparen||', 'happily', '||rightparen||', "it's", 'mine', '||period||', "it's", 'all', 'mine', '||period||', '||leftparen||', 'clutches', 'the', 'photo', 'between', 'her', 'hands', 'and', 'to', 'her', 'chest', 'then', 'looks', 'at', 'it', 'again', '||rightparen||', '||return||', '||return||', 'jerry:', "it's", 'just', 'hair', '||period||', '||return||', '||return||', 'elaine:', "it's", 'not', 'just', 'hair', '||exclammark||', 'look', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", 'brown', '||period||', '||return||', '||return||', 'elaine:', "it's", 'chestnut', 'with', 'auburn', 'highlights', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'not', 'around', 'women', '||period||', 'you', "don't", 'know', 'how', 'important', 'a', "man's", 'hair', 'is', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'george', '||comma||', 'but', "it's", 'true', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'close', 'to', 'tears', '||rightparen||', ':', 'i', 'knew', 'it', '||period||', '||return||', '||return||', 'marcelino:', 'hey', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||leftparen||', 'quietly', '||rightparen||', '||return||', '||return||', 'marcelino:', 'nice', 'rooster', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||leftparen||', 'again', 'quietly', '||rightparen||', '||return||', '||return||', 'marcelino:', "what's", 'his', 'name', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'well', '||comma||', 'this', 'is', 'little', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'marcelino:', 'little', 'jerry', 'seinfeld', '||period||', 'does', 'he', 'bounce', 'checks', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', 'look', '||comma||', "can't", 'you', 'take', "jerry's", 'check', 'down', '||questionmark||', '||return||', '||return||', 'marcelino:', 'sorry', 'kramer', '||comma||', "can't", 'help', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', 'jerry', '||comma||', 'come', 'on', '||period||', 'sorry', '||period||', '||return||', '||return||', 'marcelino', '||leftparen||', 'impressed', '||rightparen||', ':', 'i', 'like', 'the', 'way', 'he', 'handles', 'himself', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||leftparen||', 'quietly', '||rightparen||', '||return||', '||return||', 'elaine:', 'ohhh', '||comma||', "it's", 'coming', 'in', 'already', '||exclammark||', '||return||', '||return||', 'kurt:', 'yeah', '||leftparen||', 'quietly', '||rightparen||', '||return||', '||return||', 'elaine:', 'wow', '||comma||', 'you', 'have', 'some', 'very', 'nice', 'little', 'seedlings', 'here', '||period||', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kurt:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'it', "doesn't", 'seem', 'to', 'be', 'coming', 'in', 'so', 'good', 'over', 'here', '||period||', 'or', 'here', '||period||', '||return||', '||return||', 'kurt:', 'what', 'do', 'you', 'mean', '||questionmark||', '||leftparen||', 'goes', 'into', 'the', 'bedroom', 'to', 'look', 'in', 'the', 'mirror', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'h', '||dash||', 'how', 'long', 'have', 'you', 'been', 'shaving', 'your', 'head', 'for', '||questionmark||', '||return||', '||return||', 'kurt', '||leftparen||', 'from', 'the', 'bedroom', '||rightparen||', ':', 'about', 'three', 'years', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||period||', '||return||', '||return||', 'kurt:', 'oh', 'my', 'god', '||exclammark||', '||leftparen||', 'steps', 'into', 'the', 'doorway', '||rightparen||', "i'm", 'going', 'bald', '||exclammark||', '||return||', '||return||', 'celia:', 'george', '||exclammark||', "i'm", 'so', 'glad', 'to', 'see', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'brought', 'you', 'some', 'cigarettes', '||period||', 'you', 'buy', 'yourself', 'something', 'nice', '||period||', '||return||', '||return||', 'celia:', 'good', 'news', '||dash||', "i'm", 'up', 'for', 'parole', '||period||', '||return||', '||return||', 'george:', 'parole', '||exclammark||', '||leftparen||', 'feigning', 'joy', '||rightparen||', "that's", 'dynamite', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "marcelino's", 'going', 'to', 'take', 'down', 'the', 'check', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'it', 'comes', 'down', 'if', 'little', 'jerry', 'seinfeld', 'wins', 'the', 'cockfight', '||period||', '||return||', '||return||', 'jerry:', 'great', '||exclammark||', '||leftparen||', 'realizing', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'marcelino', '||comma||', 'he', 'has', 'cockfights', 'in', 'the', 'back', 'of', 'his', 'store', '||period||', '||return||', '||return||', 'jerry:', 'ah', 'ha', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'so', 'he', 'says', 'if', 'little', 'jerry', 'seinfeld', 'wins', '||comma||', 'the', 'check', 'comes', 'down', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'cockfighting', 'is', 'illegal', '||period||', '||return||', '||return||', 'kramer:', 'only', 'in', 'the', 'united', 'states', '||period||', '||return||', '||return||', 'jerry:', "it's", 'inhumane', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'jerry', '||comma||', "it's", 'not', 'what', 'you', 'think', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', "it's", 'two', 'roosters', "peckin'", 'at', 'each', 'other', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'thought', 'they', 'wore', 'gloves', 'and', 'helmets', '||comma||', 'you', 'know', '||comma||', 'like', '||quotemark||', 'american', 'gladiators', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'no', 'kramer', '||comma||', 'little', 'jerry', 'could', 'get', 'hurt', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'i', 'left', 'him', 'with', 'marcelino', '||exclammark||', '||return||', '||return||', 'kramer:', 'my', 'little', 'jerry', '||exclammark||', '||leftparen||', 'runs', 'out', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'did', 'you', 'get', 'little', 'jerry', '||comma||', 'is', 'he', 'o', '||period||', 'k', '||period||', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'well', '||comma||', "he's", 'more', 'than', 'o', '||period||', 'k', '||period||', '||comma||', 'he', 'won', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'let', 'him', 'fight', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'i', "couldn't", 'get', 'there', 'in', 'time', 'to', 'stop', 'it', '||comma||', 'but', 'you', 'should', 'have', 'seen', 'little', 'jerry', '||comma||', 'jerry', '||exclammark||', "flappin'", 'his', 'wings', 'and', "struttin'", 'his', 'stuff', '||exclammark||', 'he', 'was', "peckin'", 'and', "weavin'", 'and', "bobbin'", 'and', "talkin'", 'trash', '||exclammark||', 'he', "didn't", 'even', 'have', 'to', 'touch', 'him', '||exclammark||', 'the', 'other', 'rooster', 'ran', 'out', 'of', 'the', 'ring', '||period||', 'the', 'whole', 'fight', 'lasted', 'two', 'seconds', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'do', 'they', 'usually', 'last', '||questionmark||', '||return||', '||return||', 'kramer:', 'five', 'seconds', '||period||', 'and', 'marcelino', 'says', "he's", 'taking', 'your', 'check', 'down', 'today', '||period||', '||return||', '||return||', 'jerry:', 'great', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', "celia's", 'up', 'for', 'parole', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'little', 'jerry', 'won', 'his', 'cockfight', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'too', 'tired', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'o', '||period||', 'k', '||period||', '||comma||', 'listen', '||comma||', 'i', 'want', 'you', 'to', 'come', 'by', 'later', '||comma||', 'alright', '||questionmark||', "'cause", "we're", 'having', 'a', 'victory', 'party', 'for', 'little', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'o', '||period||', 'k', '||period||', '||leftparen||', 'kramer', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'sadly', '||rightparen||', ':', "it's", 'over', '||comma||', 'jerry', '||period||', "she's", "gettin'", 'out', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "i'm", 'so', 'sorry', '||period||', '||return||', '||return||', 'george:', "she's", 'been', 'locked', 'up', 'for', 'two', 'years', '||period||', "she's", 'gonna', 'want', 'to', 'make', 'up', 'for', 'lost', 'time', '||period||', 'dinners', '||period||', 'movies', '||period||', '||leftparen||', 'rubs', 'his', 'forehead', '||period||', '||rightparen||', 'talking', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'in', 'other', 'words', '||comma||', 'a', 'normal', 'relationship', '||period||', '||return||', '||return||', 'george:', 'heh', '||comma||', 'haa', '||period||', 'and', "that's", 'no', 'good', '||period||', "i've", 'tried', 'it', 'straight', '||comma||', 'jerry', '||period||', "we've", 'all', 'seen', 'the', 'results', '||period||', 'for', 'me', '||comma||', 'sick', 'is', 'the', 'only', 'way', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "she'll", 'still', 'be', 'an', 'ex', '||dash||', 'con', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'the', 'same', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'if', 'you', 'two', 'are', 'meant', 'to', 'be', 'together', '||period||', '||period||', '||period||', "i'm", 'sure', 'the', "cops'll", 'pick', 'her', 'up', 'on', 'something', '||period||', '||return||', '||return||', 'elaine:', 'kurt', '||questionmark||', "what's", 'with', 'the', 'sweats', '||questionmark||', "aren't", 'we', 'going', 'out', '||questionmark||', '||return||', '||return||', 'kurt:', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'elaine:', 'you', '||comma||', 'uh', '||period||', '||period||', '||period||', 'got', 'a', 'big', 'stain', 'on', 'your', 'shirt', '||period||', '||return||', '||return||', 'kurt:', 'oh', 'yeah', '||period||', '||period||', '||period||', 'meatball', '||period||', '||period||', '||period||', 'fell', 'out', 'of', 'my', 'sandwich', '||period||', '||return||', '||return||', 'elaine:', 'you', 'already', 'ate', '||questionmark||', '||return||', '||return||', 'kurt:', "it's", 'from', 'yesterday', '||period||', '||return||', '||return||', 'marcelino:', 'jerry', '||exclammark||', 'you', 'missed', 'a', 'hell', 'of', 'a', 'cockfight', 'last', 'night', '||period||', '||return||', '||return||', 'jerry:', 'then', 'what', 'is', 'my', 'check', 'still', 'doing', 'up', '||questionmark||', 'we', 'had', 'a', 'deal', '||exclammark||', '||return||', '||return||', 'marcelino:', 'now', 'we', 'have', 'a', 'new', 'deal', '||period||', '||return||', '||return||', 'jerry:', 'new', 'deal', '||questionmark||', '||return||', '||return||', 'marcelino:', 'when', 'little', 'jerry', 'seinfeld', 'is', 'mine', '||comma||', 'the', 'check', 'will', 'be', 'yours', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'outrageous', '||exclammark||', '||leftparen||', 'to', 'marcelino', '||rightparen||', 'pack', 'of', 'juicy', 'fruit', '||period||', '||return||', '||return||', 'marcelino', '||leftparen||', 'tosses', 'the', 'gum', 'on', 'the', 'counter', '||rightparen||', ':', '85', 'cents', '||period||', '||return||', '||return||', 'jerry:', '85', 'cents', '||questionmark||', 'that', 'is', 'outrageous', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'marcelino', 'wants', 'us', 'to', 'sell', 'him', 'little', 'jerry', 'seinfeld', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'out', 'of', 'the', 'question', '||period||', '||return||', '||return||', 'jerry:', 'but', 'kramer', '||comma||', 'cockfighting', 'is', 'an', 'illegal', 'and', 'immoral', 'activity', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'if', 'you', 'got', 'a', 'loser', '||period||', 'but', 'little', 'jerry', 'was', 'born', 'to', 'cockfight', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'more', 'cockfighting', '||period||', "let's", 'just', 'sell', 'him', 'to', 'marcelino', 'the', 'cockfighter', 'and', 'be', 'done', 'with', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'think', "you're", 'jealous', '||period||', '||return||', '||return||', 'jerry:', 'of', 'what', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'points', 'at', 'jerry', 'like', "he's", 'found', 'him', 'out', '||rightparen||', ':', 'yah', '||comma||', 'yah', '||exclammark||', 'you', 'see', 'in', 'little', 'jerry', 'seinfeld', 'the', 'unlimited', 'future', 'you', 'once', 'had', '||period||', 'now', '||comma||', 'just', 'because', 'jerry', 'seinfeld', 'is', 'a', 'has', '||dash||', 'been', '||comma||', "don't", 'make', 'little', 'jerry', 'seinfeld', 'a', 'never', '||dash||', 'was', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'give', 'me', 'that', 'rooster', '||exclammark||', '||return||', '||return||', 'kramer:', 'never', '||exclammark||', 'you', 'hate', 'him', 'because', "he's", 'doing', 'more', 'with', 'your', 'name', 'than', 'you', 'ever', 'will', '||exclammark||', 'yah', '||dash||', 'yah', '||exclammark||', '||leftparen||', 'kramer', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'betsy:', 'george', '||comma||', 'celia', 'has', 'listed', 'you', 'as', 'a', 'character', 'reference', '||period||', 'whatever', 'you', 'can', 'tell', 'us', 'would', 'certainly', 'be', 'helpful', 'in', '||comma||', 'her', 'getting', 'paroled', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'anything', 'i', 'can', 'do', 'to', 'help', '||comma||', 'um', '||period||', '||period||', '||period||', "she's", 'a', 'wonderful', 'girl', '||period||', 'very', 'smart', '||period||', 'very', 'eh', '||period||', '||period||', '||period||', 'crafty', '||period||', '||return||', '||return||', 'betsy:', 'does', 'she', 'have', 'any', 'plans', 'after', "she's", 'released', '||questionmark||', '||return||', '||return||', 'george:', 'plans', '||period||', 'schemes', '||period||', 'she', 'ah', '||comma||', 'she', 'keeps', 'talking', 'about', 'getting', 'back', 'together', 'with', 'her', 'old', 'friends', '||comma||', 'you', 'know', '||dash||', '||quotemark||', 'the', 'gang', '||comma||', '||quotemark||', 'as', 'she', 'likes', 'to', 'call', 'them', '||leftparen||', 'chuckles', '||rightparen||', '||comma||', 'you', 'know', '||period||', 'yeah', '||comma||', "they're", 'eh', '||comma||', "they're", 'hatching', 'something', '||comma||', 'you', 'can', 'count', 'on', 'that', '||period||', '||return||', '||return||', 'marcelino:', 'jerry', '||exclammark||', 'tomorrow', "night's", 'fight', '||dash||', 'night', '||period||', "where's", 'my', 'rooster', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', "won't", 'sell', '||period||', '||return||', '||return||', 'marcelino:', 'well', '||comma||', 'tell', 'you', 'what', "i'm", 'gonna', 'do', '||period||', "i'm", 'gonna', 'take', 'down', 'your', 'check', 'anyway', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'well', '||comma||', 'thank', 'you', '||comma||', 'marcelino', '||period||', '||return||', '||return||', 'marcelino:', 'well', '||comma||', 'perhaps', 'someday', 'you', 'will', 'do', 'me', 'a', 'favor', '||period||', 'and', 'that', 'day', 'is', 'today', '||period||', 'little', 'jerry', 'seinfeld', 'must', 'go', 'down', 'in', 'the', 'third', 'round', 'of', "tomorrow's", 'main', 'event', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'little', 'jerry', 'to', 'take', 'a', 'dive', '||questionmark||', '||return||', '||return||', 'marcelino:', 'shhh', '||comma||', 'not', 'so', 'loud', '||period||', '||return||', '||return||', 'jerry:', 'first', 'of', 'all', '||comma||', 'i', "don't", 'think', 'you', 'can', 'make', 'a', 'rooster', 'take', 'a', 'dive', '||period||', '||return||', '||return||', 'marcelino:', 'can', '||comma||', 'too', '||exclammark||', '||return||', '||return||', 'jerry:', 'second', 'of', 'all', '||comma||', 'jerry', 'seinfeld', '||dash||', 'big', 'or', 'little', '||dash||', "doesn't", 'go', 'down', 'for', 'anyone', '||comma||', 'anywhere', '||comma||', 'at', 'anytime', '||exclammark||', 'now', "i'd", 'appreciate', 'it', 'if', 'you', 'please', 'leave', '||period||', '||return||', '||return||', 'marcelino', '||leftparen||', 'leaving', '||rightparen||', ':', 'big', 'jerry', 'is', 'making', 'a', 'big', 'mistake', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'see', 'about', 'that', '||period||', '||leftparen||', 'runs', 'to', 'the', 'window', 'and', 'shouts', 'up', 'to', 'kramer', '||comma||', "who's", 'on', 'the', 'roof', '||period||', '||rightparen||', 'kramer', '||comma||', "i'm", "comin'", 'up', '||exclammark||', 'we', 'got', 'a', 'cockfight', 'to', 'win', '||exclammark||', '||return||', '||return||', 'kramer:', 'o', '||period||', 'k', '||period||', '||exclammark||', '||return||', '||return||', 'kurt:', 'elaine', 'said', 'you', 'would', 'be', 'the', 'best', 'person', 'i', 'could', 'talk', 'to', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'examining', "kurt's", 'head', 'with', 'a', 'lamp', '||rightparen||', ':', 'yep', '||period||', 'classic', 'horseshoe', 'pattern', '||period||', "i've", 'seen', 'a', 'lot', 'of', 'this', '||period||', '||return||', '||return||', 'kurt:', 'oh', '||comma||', 'god', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'kurt', '||dash||', 'wrong', 'attitude', '||period||', 'you', 'should', 'be', 'happy', 'now', '||period||', '||return||', '||return||', 'kurt:', 'happy', '||questionmark||', 'why', 'should', 'i', 'be', 'happy', '||questionmark||', '||return||', '||return||', 'george:', "you've", 'still', 'got', 'pretty', 'good', 'coverage', '||period||', 'once', 'the', 'enemy', 'advances', 'beyond', 'this', 'perimeter', '||dash||', '||leftparen||', 'points', 'at', "kurt's", 'head', 'with', 'a', 'pen', '||rightparen||', '||dash||', 'then', 'you', "won't", 'be', 'kurt', 'anymore', '||period||', '||return||', '||return||', 'kurt:', 'who', 'will', 'i', 'be', '||questionmark||', '||return||', '||return||', 'kurt:', 'how', 'long', 'do', 'i', 'have', '||questionmark||', '||return||', '||return||', 'george', '||leftparen||', 'solemnly', '||rightparen||', ':', '14', 'months', '||period||', 'maybe', '10', '||period||', '||return||', '||return||', 'kurt:', 'is', 'there', 'anything', 'i', 'can', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'live', '||comma||', 'dammit', '||period||', 'live', '||exclammark||', 'every', 'precious', 'moment', 'as', 'if', 'this', 'was', 'the', 'last', 'year', 'of', 'your', 'life', '||period||', 'because', 'in', 'many', 'ways', '||period||', '||period||', '||period||', 'it', 'is', '||period||', '||leftparen||', "there's", 'a', 'knock', 'at', 'the', 'door', '||period||', '||rightparen||', 'excuse', 'me', '||period||', '||return||', '||return||', 'george:', 'celia', '||questionmark||', 'w', '||dash||', 'w', '||dash||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'celia:', 'well', '||comma||', 'i', "didn't", 'get', 'my', 'parole', '||comma||', 'so', 'i', 'busted', 'out', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'nervously', '||rightparen||', ':', 'and', '||dash||', 'and', 'you', 'just', 'decided', 'to', 'pop', 'in', '||period||', '||period||', '||period||', '||exclammark||', '||return||', '||return||', 'elaine:', 'kurt', '||exclammark||', '||return||', '||return||', 'kurt:', 'elaine', '||period||', '||period||', '||period||', '||leftparen||', 'holds', 'out', 'a', 'wedding', 'ring', '||rightparen||', 'will', 'you', 'marry', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'oh', '||comma||', 'yeah', '||period||', 'boy', "he's", "lookin'", 'good', '||comma||', 'huh', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'alright', '||comma||', 'i', 'think', "that's", 'enough', 'for', 'today', '||period||', '||leftparen||', 'kramer', 'picks', 'up', 'little', 'jerry', 'and', 'takes', 'him', 'to', 'the', 'sink', '||period||', '||rightparen||', 'little', 'jerry', 'is', 'lean', '||comma||', 'mean', '||comma||', "peckin'", 'machine', '||exclammark||', '||leftparen||', 'kramer', 'starts', 'filling', 'a', 'pot', 'with', 'water', '||period||', '||rightparen||', 'what', 'are', 'you', 'doing', 'with', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'just', 'gonna', 'heat', 'this', 'up', '||period||', 'make', 'a', 'little', 'hot', '||dash||', 'tub', 'for', 'little', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'kramer', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'be', 'careful', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'guess', 'what', '||exclammark||', 'little', 'jerry', 'ran', 'from', 'here', 'to', "newman's", 'in', 'under', 'thirty', 'seconds', '||exclammark||', '||return||', '||return||', 'george:', 'is', 'that', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'where', 'have', 'you', 'been', '||questionmark||', '||return||', '||return||', 'george:', 'celia', 'broke', 'out', 'of', 'prison', '||period||', "i'm", 'sitting', 'in', 'my', 'home', '||comma||', 'she', 'shows', 'up', 'at', 'the', 'door', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', 'the', 'break', '||dash||', 'out/pop', '||dash||', 'in', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'hey', 'jerry', '||comma||', 'listen', 'to', 'this', '||period||', 'i', 'discovered', 'something', 'even', 'better', 'than', 'conjugal', 'visit', 'sex', '||period||', 'fugitive', 'sex', '||exclammark||', 'now', '||comma||', "it's", 'like', 'everytime', '||dash||', '||return||', '||return||', 'jerry', '||leftparen||', 'interrupts', '||rightparen||', ':', 'george', '||comma||', 'this', 'is', 'a', 'little', 'too', 'much', 'for', 'me', '||dash||', 'escaped', 'convicts', '||comma||', 'fugitive', 'sex', '||period||', '||period||', '||period||', 'i', 'got', 'a', 'cockfight', 'to', 'focus', 'on', '||period||', '||leftparen||', 'jerry', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', 'hey', 'kurt', '||comma||', 'slow', 'down', '||exclammark||', 'i', "can't", 'just', 'marry', 'you', '||comma||', 'whim', '||dash||', 'bam', '||dash||', 'boom', '||exclammark||', 'i', 'mean', '||comma||', 'i', 'need', 'some', '||quotemark||', 'fiance', '||dash||', 'time', '||comma||', '||quotemark||', 'i', 'need', 'some', '||quotemark||', 'make', '||dash||', 'my', '||dash||', 'girlfriends', '||dash||', 'jealous', '||quotemark||', 'time', '||period||', '||period||', '||period||', '||return||', '||return||', 'kurt:', 'plus', '||comma||', 'you', 'want', 'to', 'get', 'to', 'know', 'me', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||comma||', 'that', 'too', '||period||', '||return||', '||return||', 'kurt:', 'well', '||comma||', 'how', 'much', 'time', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', 'wa', '||dash||', 'ah', '||rightparen||', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'a', 'year', '||questionmark||', '||return||', '||return||', 'kurt:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', 'it', 'has', 'to', 'be', 'now', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', 'ahh', '||rightparen||', 'could', 'i', 'see', 'the', 'ring', 'again', '||questionmark||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'elaine', '||rightparen||', ':', 'so', '||comma||', "you're", 'actually', 'considering', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it'll", 'be', 'a', 'couple', 'of', 'years', 'before', "he's", 'completely', 'bald', '||period||', "those'll", 'be', 'good', 'times', '||period||', '||return||', '||return||', 'jerry:', 'marriage', 'is', 'a', 'big', 'step', '||comma||', 'elaine', '||period||', 'your', "life'll", 'totally', 'change', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "it's", 'three', '||dash||', 'thirty', 'in', 'the', 'morning', '||period||', "i'm", 'at', 'a', 'cockfight', '||period||', 'what', 'am', 'i', 'clinging', 'to', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'hey', '||comma||', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'jerry:', "where's", 'celia', '||questionmark||', '||return||', '||return||', 'george:', 'she', "didn't", 'want', 'to', 'come', '||comma||', 'she', '||dash||', "she's", 'not', 'really', 'into', 'sports', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', '||leftparen||', 'nodding', 'head', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "how's", 'he', "doin'", '||questionmark||', '||return||', '||return||', 'kramer:', 'ohh', '||comma||', "he's", 'got', 'a', 'big', 'sweat', 'going', '||period||', '||leftparen||', 'takes', 'an', 'envelope', 'out', 'of', 'his', 'pocket', '||period||', '||rightparen||', 'oh', '||comma||', 'this', 'came', 'for', 'you', 'express', '||dash||', 'mail', '||period||', "it's", 'from', 'your', 'parents', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'opens', 'the', 'envelope', '||rightparen||', ':', 'fifty', 'dollars', '||period||', 'i', "don't", 'believe', 'this', '||exclammark||', '||return||', '||return||', 'kramer:', "there's", 'marcelino', '||period||', '||leftparen||', 'marcelino', 'enters', 'the', 'ring', 'holding', 'a', 'huge', 'white', 'rooster', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'look', 'at', 'the', 'size', 'of', 'his', 'bird', '||exclammark||', '||return||', '||return||', 'kramer:', 'that', 'looks', 'like', 'a', 'dog', 'with', 'a', 'glove', 'on', 'his', 'head', '||period||', '||return||', '||return||', 'kurt:', 'hi', '||comma||', 'is', 'george', 'back', 'from', 'the', 'cockfight', 'yet', '||questionmark||', 'you', 'know', '||comma||', 'i', 'gotta', 'thank', 'him', '||comma||', 'he', 'changed', 'my', 'life', '||period||', '||return||', '||return||', 'celia:', 'no', '||comma||', 'it', 'must', 'have', 'been', 'a', 'good', 'fight', '||comma||', "he's", 'not', 'back', 'yet', '||period||', '||return||', '||return||', 'kurt:', 'ah', '||comma||', 'damn', '||period||', '||return||', '||return||', 'detective', '#1', '||leftparen||', 'to', 'kurt', '||rightparen||', ':', 'sorry', 'to', 'bother', 'you', '||comma||', 'mr', '||period||', 'costanza', '||period||', 'well', '||comma||', 'well', '||comma||', 'well', '||period||', 'look', "who's", 'here', '||period||', '||return||', '||return||', 'celia:', 'aw', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'detective', '#2', '||leftparen||', 'to', 'kurt', '||rightparen||', ':', 'mr', '||period||', 'costanza', '||comma||', "you're", 'under', 'arrest', 'for', 'aiding', 'and', 'abetting', 'a', 'known', 'fugitive', '||period||', '||return||', '||return||', 'kurt', '||leftparen||', 'laughs', '||rightparen||', ':', "i'm", 'not', 'george', 'costanza', '||period||', '||return||', '||return||', 'detective', '#2:', 'save', 'it', '||period||', 'we', 'know', "you're", 'bald', '||period||', 'we', 'know', "it's", 'you', '||period||', "let's", 'go', '||exclammark||', '||leftparen||', 'they', 'escort', 'kurt', 'and', 'celia', 'out', '||period||', '||rightparen||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'a', 'woman', 'at', 'the', 'fight', '||rightparen||', ':', 'muchos', 'gracias', '||period||', '||leftparen||', 'turns', 'back', 'to', 'jerry', 'and', 'kramer', '||period||', '||rightparen||', 'o', '||period||', 'k', '||period||', '||comma||', 'i', 'got', 'the', 'whole', 'scoop', '||period||', 'marcelino', 'flew', 'the', 'bird', 'in', 'from', 'ecuador', '||period||', "he's", '68', 'and', '0', '||exclammark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'ringer', '||exclammark||', '||return||', '||return||', 'george:', "where's", 'the', 'tamale', 'guy', '||questionmark||', '||return||', '||return||', 'kramer:', 'little', "jerry's", 'going', 'to', 'get', 'his', 'clock', 'cleaned', '||period||', 'i', 'gotta', 'get', 'him', 'outta', 'there', '||period||', '||return||', '||return||', 'kramer', '||leftparen||', 'lunging', 'for', 'little', 'jerry', '||rightparen||', ':', 'lit', '_', 'tle', 'jer', '_', 'ry', '||exclammark||', '||return||', '||return||', 'jerry:', 'kra', '_', 'mer', '||exclammark||', '||return||', '||return||', 'elaine:', 'stop', '_', 'the', '_', 'fight', '||exclammark||', '||return||', '||return||', 'george', '||leftparen||', 'holds', 'up', 'one', 'finger', '||rightparen||', ':', 'ta', '_', 'mal', '_', 'e', '||exclammark||', '||return||', '||return||', 'kramer:', 'ahhh', '||comma||', 'uh', '||comma||', 'uh', '||comma||', 'uh', '||comma||', 'ohuh', '||comma||', 'aaaa', 'ouh', 'au', 'au', 'au', 'ah', 'ah', '||leftparen||', 'more', 'pecking', '||rightparen||', 'ah', '||comma||', 'ah', '||comma||', 'ah', '||comma||', 'ah', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', 'why', 'did', 'you', 'get', 'into', 'a', 'fist', 'fight', 'with', 'the', 'cop', '||questionmark||', 'you', 'were', 'innocent', '||exclammark||', '||return||', '||return||', 'kurt:', 'they', 'thought', 'i', 'was', 'george', '||period||', "i'm", 'not', 'that', 'bald', '||period||', 'and', 'i', 'have', 'too', 'little', 'time', 'left', 'to', 'take', 'that', 'kind', 'of', 'crap', '||comma||', 'so', 'i', '||comma||', 'slugged', 'him', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'how', 'long', 'are', 'you', 'gonna', 'be', 'in', 'here', 'for', '||questionmark||', '||return||', '||return||', 'kurt:', 'well', '||comma||', 'my', 'lawyer', 'says', '14', 'months', '||comma||', 'but', 'with', 'good', 'behavior', '||comma||', 'maybe', '||period||', '||period||', '||period||', '10', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sighs', '||rightparen||', 'so', '10', 'to', '14', 'months', '||period||', '||return||', '||return||', 'kurt:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'was', 'alright', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'emily:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'um', '||comma||', 'goodnight', '||period||', '||return||', '||return||', 'emily:', 'goodnight', '||period||', '||return||', '||return||', '||leftparen||', 'kramer', 'rolls', 'over', 'to', 'go', 'to', 'sleep', '||period||', 'the', 'bedside', 'clock', 'reads', '12:', '30', '||period||', 'emily', 'snuggles', 'up', 'to', 'him', 'and', 'puts', 'an', 'arm', 'around', 'him', '||period||', 'kramer', "doesn't", 'look', 'comfortable', 'with', 'this', '||period||', '||rightparen||', '||return||', '||return||', '||leftparen||', 'the', 'clock', 'reads', '3:', '31', '||period||', 'kramer', 'is', 'lying', 'on', 'his', 'back', '||comma||', 'sleeping', '||period||', 'beside', 'him', '||comma||', 'emily', 'lies', 'face', '||dash||', 'down', '||comma||', 'sleeping', '||comma||', 'with', 'her', 'arms', 'flung', 'out', 'wide', '||period||', 'one', 'hand', 'is', 'on', 'the', 'pillow', 'above', "kramer's", 'head', '||comma||', 'then', 'it', 'moves', 'and', "emily's", 'forearm', 'runs', 'across', "kramer's", 'face', '||comma||', 'waking', 'him', '||period||', 'kramer', 'looks', 'disgruntled', 'at', 'being', 'awakened', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||comma||', 'to', 'himself', '||rightparen||', 'look', 'at', 'this', '||period||', '||return||', '||return||', '||leftparen||', 'the', 'clock', 'reads', '5:', '11', '||period||', 'a', 'wide', 'awake', 'kramer', 'is', 'right', 'over', 'to', 'the', 'edge', 'of', 'the', 'bed', '||comma||', 'with', 'emily', 'cuddled', 'up', 'to', 'him', '||comma||', 'sleeping', 'happily', '||period||', 'kramer', 'tries', 'to', 'carefully', 'move', '||comma||', 'so', 'as', 'to', 'not', 'wake', 'emily', '||comma||', 'but', 'as', 'he', 'shifts', 'his', 'weight', '||comma||', 'he', 'slips', 'off', 'the', 'end', 'of', 'the', 'mattress', 'and', 'falls', 'to', 'the', 'floor', '||period||', 'emily', 'rolls', 'into', 'the', 'space', 'vacated', '||comma||', 'continuing', 'to', 'sleep', '||period||', '||rightparen||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'we', 'can', 'only', 'stay', 'four', 'days', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'upset', '||comma||', 'but', "we'll", 'make', 'the', 'most', 'of', 'it', '||period||', '||return||', '||return||', 'morty:', 'helen', '||comma||', 'did', 'you', 'pack', 'my', 'travel', 'gym', '||questionmark||', '||return||', '||return||', 'helen:', 'yes', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'oh', '||comma||', 'your', 'father', 'bought', 'a', 'exercise', 'device', 'off', 'the', 'television', '||period||', 'he', 'does', 'it', 'every', 'morning', 'at', 'four', '||period||', '||return||', '||return||', 'morty:', 'only', 'twenty', '||dash||', 'five', 'minutes', 'a', 'day', '||comma||', 'and', 'you', 'can', 'attach', 'it', 'to', 'any', 'doorknob', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||period||', 'so', '||comma||', 'i', 'guess', 'your', 'travel', 'miles', 'are', 'about', 'to', 'expire', '||period||', '||return||', '||return||', 'helen:', 'well', '||comma||', 'actually', '||comma||', 'jerry', '||comma||', 'we', 'wanted', 'to', 'talk', 'to', 'you', 'about', 'something', '||period||', '||return||', '||return||', 'jerry:', 'am', 'i', 'finally', 'getting', 'a', 'baby', 'brother', '||questionmark||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'be', 'serious', '||period||', '||return||', '||return||', 'morty:', 'how', 'would', 'you', 'feel', 'if', 'we', 'sold', 'the', 'cadillac', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'the', 'cadillac', 'i', 'bought', 'for', 'you', '||questionmark||', '||return||', '||return||', 'morty:', "it's", 'too', 'much', 'car', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', "c'mon", '||comma||', 'you', 'love', 'that', 'car', '||period||', 'what', 'about', 'the', 'northstar', 'system', '||questionmark||', '||return||', '||return||', 'morty:', 'i', "don't", 'think', 'we', 'even', 'use', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'a', 'gift', 'and', 'i', 'want', 'you', 'to', 'keep', 'it', '||period||', '||return||', '||return||', 'helen:', 'we', 'already', 'sold', 'it', '||period||', '||return||', '||return||', 'jerry:', 'wh', '||period||', '||period||', 'why', "didn't", 'you', 'tell', 'me', 'before', 'you', 'sold', 'it', '||questionmark||', '||return||', '||return||', 'morty:', 'because', 'we', 'had', 'a', 'buyer', '||comma||', 'and', 'we', "couldn't", 'get', 'a', 'free', 'flight', 'until', 'now', '||period||', '||return||', '||return||', 'helen:', 'well', '||comma||', 'we', 'could', '||comma||', 'but', 'we', 'wanted', 'the', 'bulkhead', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'exasperated', '||rightparen||', 'ugh', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'man', '||comma||', 'that', 'emily', 'is', 'wearing', 'me', 'out', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "it's", 'not', 'the', 'sex', '||comma||', 'jerry', '||period||', '||leftparen||', 'noticing', 'morty', 'and', 'helen', '||rightparen||', 'heyy', '||exclammark||', 'seinfelds', '||period||', '||return||', '||return||', 'helen:', 'hi', 'kramer', '||period||', '||return||', '||return||', 'morty:', 'hiya', 'kramer', '||period||', '||return||', '||return||', 'jerry:', "we're", 'in', 'the', 'middle', 'of', 'a', 'discussion', 'here', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||questionmark||', 'what', 'about', '||questionmark||', '||return||', '||return||', 'helen:', "jerry's", 'upset', 'we', 'sold', 'the', 'cadillac', '||period||', '||return||', '||return||', 'kramer:', "what'd", 'you', 'get', 'for', 'it', '||questionmark||', '||return||', '||return||', 'morty:', 'jack', 'klompus', 'gave', 'us', 'six', 'grand', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sold', 'my', 'cadillac', 'to', 'jack', 'klompus', '||questionmark||', '||return||', '||return||', 'morty:', '||leftparen||', 'trying', 'to', 'press', 'the', 'cheque', 'on', 'jerry', '||rightparen||', 'and', 'we', 'want', 'you', 'to', 'have', 'the', 'money', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'worked', 'up', '||rightparen||', 'i', "don't", 'need', 'the', 'money', '||period||', '||return||', '||return||', 'morty:', "what're", 'you', 'talking', 'about', '||questionmark||', 'you', 'had', 'a', 'cheque', 'bounce', 'at', 'the', 'bodega', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'animated', '||rightparen||', 'oh', '||comma||', 'is', 'that', 'what', 'this', 'is', 'all', 'about', '||questionmark||', '||exclammark||', 'i', 'bounce', 'a', 'cheque', 'and', 'you', 'sold', 'a', 'cadillac', '||questionmark||', '||exclammark||', '||return||', '||return||', 'helen:', 'well', '||comma||', 'also', '||comma||', 'jerry', '||comma||', 'we', 'read', 'an', 'article', 'in', 'the', 'sun', 'sentinel', '||period||', '||leftparen||', 'digs', 'in', 'her', 'purse', 'and', 'extracts', 'a', 'newspaper', 'clipping', '||rightparen||', 'it', 'says', 'standup', 'comedy', 'is', 'not', 'what', 'it', 'used', 'to', 'be', '||comma||', 'what', 'with', 'def', 'jam', 'and', 'all', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'that', 'def', 'jam', 'is', 'a', 'force', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'you', 'know', '||comma||', 'i', 'hear', 'wonderful', 'things', 'about', "bloomingdales'", 'executive', 'training', 'program', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sits', 'on', 'the', 'back', 'of', 'the', 'couch', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'kramer:', "y'know", "you've", 'given', 'this', 'comedy', 'thing', 'your', 'best', 'shot', '||period||', 'yeah', '||comma||', 'you', 'had', 'some', 'good', 'observations', '||comma||', 'but', "it's", 'over', '||period||', 'now', '||comma||', 'this', 'bloomingdale', 'thing', '||comma||', 'that', 'could', 'be', 'the', 'next', 'wave', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'excuse', 'me', '||period||', 'uh', '||comma||', 'pound', 'of', 'arabian', 'mocha', 'java', '||comma||', 'please', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'you', 'understand', 'how', 'my', 'peterman', 'stock', 'options', 'are', 'gonna', 'work', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'going', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'elaine:', 'just', '||comma||', 'very', 'interesting', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'when', "it's", 'your', 'money', '||comma||', "it's", 'fascinating', '||period||', '||return||', '||return||', 'counterperson:', 'arabian', 'mocha', 'java', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looks', 'for', 'george', '||rightparen||', 'mmm', '||period||', '||leftparen||', "can't", 'see', 'him', '||rightparen||', 'oh', '||comma||', 'um', '||comma||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'that', 'arabian', 'is', 'strong', 'coffee', '||period||', '||return||', '||return||', 'elaine:', "it's", 'plo', 'blend', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||comma||', 'i', 'got', 'your', 'coffee', '||period||', '||return||', '||return||', 'george:', 'oh', 'oh', '||comma||', 'here', '||comma||', 'lemme', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'waving', 'away', '||rightparen||', 'nah', '||comma||', 'nah', '||comma||', "it's", 'on', 'me', '||period||', '||leftparen||', 'looks', 'at', 'her', 'watch', '||rightparen||', 'aww', '||comma||', 'man', '||period||', 'okay', '||comma||', 'listen', 'guys', '||comma||', "i'm", 'gonna', 'be', 'late', '||period||', '||leftparen||', 'taking', 'her', 'cup', 'of', 'coffee', '||rightparen||', "i'll", 'see', 'you', '||comma||', 'okay', '||questionmark||', '||leftparen||', 'begins', 'to', 'walk', 'away', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', 'george:', 'mmm', '||period||', '||return||', '||return||', 'george:', 'you', 'see', 'what', 'just', 'happened', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'treated', 'me', 'to', 'the', 'arabian', 'mocha', 'java', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'misinterpret', 'this', 'how', '||questionmark||', '||return||', '||return||', 'george:', "she's", "stickin'", 'it', 'to', 'me', 'that', 'she', 'makes', 'more', 'money', 'than', 'me', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sure', 'she', 'was', 'just', 'being', 'nice', '||comma||', 'buying', 'you', 'the', 'coffee', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'not', 'nice', '||period||', "she's", "stickin'", 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', "you're", 'crazy', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'worked', 'up', '||rightparen||', "stickin'", 'it', 'to', 'me', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', '||rightparen||', "stickin'", 'it', '||exclammark||', '||return||', '||return||', 'george:', 'so', "you're", 'buying', 'the', 'car', 'back', 'for', 'your', 'parents', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'flying', 'down', 'to', 'florida', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'your', "parents'll", 'never', 'let', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'they', 'lied', 'to', 'me', 'about', 'selling', 'the', 'car', '||period||', "i'll", 'lie', 'to', 'them', 'about', 'buying', 'it', 'back', '||period||', 'they', 'think', 'they', 'can', 'dump', 'six', 'grand', 'on', 'me', '||questionmark||', 'think', 'again', '||period||', '||return||', '||return||', 'george:', 'what', 'kind', 'of', 'money', 'you', 'think', 'your', 'parents', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'bet', 'they', 'have', 'more', 'money', 'than', 'mine', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'your', 'parents', 'have', 'money', '||period||', '||return||', '||return||', 'george:', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'did', 'they', 'ever', 'spend', 'any', 'money', '||questionmark||', '||return||', '||return||', 'george:', 'never', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'their', 'living', 'expenses', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'where', 'do', 'they', 'ever', 'go', 'on', 'vacation', '||questionmark||', '||return||', '||return||', 'george:', 'nowhere', '||period||', '||return||', '||return||', 'george:', 'how', 'much', 'money', "d'you", 'think', 'they', 'have', '||questionmark||', '||return||', '||return||', 'jerry:', 'few', 'hundred', 'grand', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||rightparen||', "you're", 'saying', 'i', 'stand', 'to', 'inherit', 'three', 'hundred', 'thousand', 'dollars', '||comma||', 'is', 'that', 'what', "you're", 'saying', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'course', 'you', 'may', 'not', 'see', 'it', 'for', 'twenty', 'years', '||period||', '||return||', '||return||', 'george:', 'twenty', 'years', '||questionmark||', 'that', 'long', '||questionmark||', '||return||', '||return||', 'jerry:', 'does', 'your', 'father', 'still', 'eat', 'bacon', 'and', 'eggs', 'every', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'fortunately', '||comma||', 'yes', '||period||', '||return||', '||return||', 'jerry:', "how's", 'your', 'family', 'history', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'have', 'an', 'aunt', 'that', 'died', 'at', 'seven', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'aunt', 'baby', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||period||', 'uh', '||comma||', 'you', 'got', 'a', 'moment', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'kramer', '||comma||', 'come', 'on', 'in', '||period||', '||return||', '||return||', 'kramer:', 'i', '||comma||', 'uh', '||comma||', 'need', 'to', 'speak', 'to', 'you', 'about', 'some', 'lady', 'problems', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'unsure', '||rightparen||', 'oh', '||dash||', 'kay', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'a', 'little', 'anxious', '||rightparen||', 'you', 'know', '||comma||', 'after', 'i', 'have', 'sex', 'with', 'emily', '||comma||', 'uh', '||comma||', 'i', "don't", 'want', 'her', 'in', 'the', 'bed', 'any', 'more', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'because', "she's", 'throwing', 'off', 'my', 'whole', 'sleep', '||period||', "she's", 'got', 'the', 'jimmy', 'legs', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', '||rightparen||', 'jimmy', 'legs', '||questionmark||', '||return||', '||return||', 'kramer:', 'jimmy', 'leg', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grasping', 'the', 'concept', '||rightparen||', 'ohh', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'uh', '||comma||', 'well', '||comma||', 'maybe', 'i', 'should', 'just', 'be', 'honest', 'with', 'her', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'tell', 'her', 'after', 'sex', '||comma||', 'you', 'just', 'want', 'her', 'outta', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'd", 'say', 'it', 'nicely', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'really', 'like', 'this', 'girl', 'and', 'i', '||comma||', 'you', 'know', '||comma||', 'i', 'think', 'if', 'i', 'could', 'just', 'work', 'out', 'this', 'one', 'thing', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'interrupting', '||rightparen||', 'yeah', '||period||', 'i', 'gotta', 'be', 'honest', 'with', 'you', 'kramer', '||period||', 'you', 'might', 'be', 'more', 'than', 'just', 'a', 'coupla', 'tweaks', 'away', 'from', 'a', 'healthy', 'relationship', '||period||', '||return||', '||return||', 'kramer:', 'well', "you're", 'not', 'exactly', 'zeroing', 'in', 'yourself', '||comma||', 'lady', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'to', 'the', 'door', '||comma||', 'angry', '||rightparen||', 'alright', '||comma||', 'get', 'out', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'impatient', '||rightparen||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'listen', '||comma||', 'i', 'gotta', 'go', 'down', 'to', 'atlantic', 'city', '||period||', "i'm", 'performing', 'at', "bally's", '||period||', '||return||', '||return||', 'morty:', 'you', 'just', 'heard', 'about', 'this', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulling', 'on', 'a', 'jacket', '||rightparen||', 'they', 'had', 'a', 'cancellation', 'and', 'they', 'instantly', 'called', 'me', '||period||', '||return||', '||return||', 'helen:', 'who', 'cancelled', '||questionmark||', '||return||', '||return||', 'jerry:', 'carrot', 'top', '||period||', 'i', 'told', 'you', '||comma||', 'my', "career's", 'fine', '||period||', '||return||', '||return||', 'george:', 'i', 'been', '||comma||', 'uh', '||comma||', 'thinking', 'about', 'the', 'family', '||period||', 'tell', 'me', '||comma||', 'uh', '||comma||', 'about', 'aunt', 'baby', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'looks', 'up', 'to', 'heaven', '||rightparen||', "she's", 'deceased', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'glances', 'upwards', '||rightparen||', 'yeah', '||period||', 'uhm', '||comma||', 'why', 'did', 'she', 'die', 'so', 'young', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'looks', 'to', 'estelle', '||rightparen||', 'she', 'had', 'problems', '||period||', '||leftparen||', 'estelle', 'nods', '||rightparen||', 'internal', '||period||', '||return||', '||return||', 'george:', 'is', 'that', 'common', 'in', 'our', 'family', '||questionmark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'your', 'uncle', 'moe', '||comma||', 'he', 'died', 'a', 'young', 'man', '||period||', '||return||', '||return||', 'frank:', 'also', 'internal', 'problems', '||period||', '||return||', '||return||', 'estelle:', "it's", 'that', 'temper', 'on', 'your', 'side', '||period||', "they're", 'yelling', 'and', 'yelling', '||comma||', 'and', 'then', 'one', 'day', '||comma||', "they're", 'all', 'gone', '||period||', '||return||', '||return||', 'frank:', 'what', 'about', 'your', 'side', '||questionmark||', 'your', 'cousin', 'hennie', '||period||', '||leftparen||', 'animated', '||rightparen||', 'she', 'was', 'sickly', 'from', 'the', 'moment', 'i', 'met', 'her', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'shouts', '||rightparen||', "don't", 'you', 'talk', 'about', 'hennie', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'guess', 'you', 'two', 'are', 'the', 'lucky', 'ones', '||period||', '||return||', '||return||', 'frank:', 'so', 'far', '||period||', '||return||', '||return||', 'estelle:', 'frank', '||comma||', 'if', 'aunt', 'baby', 'were', 'alive', 'today', '||comma||', 'how', 'old', 'would', 'she', 'be', '||questionmark||', '||return||', '||return||', 'frank:', "she'd", 'never', 'make', 'it', '||period||', '||return||', '||return||', 'emily:', 'so', 'let', 'me', 'get', 'this', 'straight', '||period||', 'you', 'enjoy', 'the', 'lovemaking', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'shh', '||comma||', 'shh', '||period||', '||return||', '||return||', 'emily:', '||leftparen||', 'quieter', '||rightparen||', 'well', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'like', 'strawberry', 'pie', '||period||', '||return||', '||return||', 'emily:', 'okay', '||comma||', 'but', 'you', 'have', 'a', 'problem', 'sharing', 'a', 'bed', 'with', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'know', "it's", 'not', 'what', 'the', 'ladies', 'like', '||period||', 'but', 'without', 'some', 'solid', 'sack', 'time', '||comma||', "i'm", 'a', 'zombie', '||period||', '||return||', '||return||', 'emily:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pleading', '||rightparen||', 'aww', '||comma||', "c'mon", '||comma||', 'man', '||period||', 'meet', 'me', 'halfway', '||period||', '||return||', '||return||', 'emily:', "you're", 'not', 'easy', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', '||period||', '||return||', '||return||', 'jack:', 'so', '||comma||', 'to', 'what', 'do', 'i', 'owe', 'the', 'pleasure', 'of', 'this', '||comma||', 'unannounced', '||comma||', 'visit', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'wanna', 'buy', 'back', 'the', 'cadillac', '||period||', '||return||', '||return||', 'jack:', 'you', 'wanna', 'buy', 'it', 'back', '||questionmark||', 'why', '||comma||', 'you', 'go', 'drugs', 'hidden', 'in', 'the', 'trunk', '||questionmark||', '||return||', '||return||', 'jack:', "i'm", 'kidding', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reaching', 'into', 'his', 'pocket', '||rightparen||', 'alright', '||comma||', "i'll", 'give', 'you', 'nine', 'thousand', 'for', 'it', '||period||', '||return||', '||return||', 'jack:', 'nine', 'thousand', 'for', 'a', 'cadillac', '||questionmark||', "it's", 'got', 'no', 'miles', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'bought', 'it', 'for', 'six', '||exclammark||', '||return||', '||return||', 'jack:', "you're", 'not', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'standing', '||rightparen||', 'how', 'much', "d'you", 'want', 'for', 'it', '||questionmark||', '||return||', '||return||', 'jack:', 'the', 'kelly', 'blue', 'book', 'value', '||period||', 'twenty', '||dash||', 'two', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'fourteen', 'thousand', '||period||', '||return||', '||return||', 'jack:', 'done', '||period||', 'but', '||comma||', 'i', 'get', 'to', 'drive', 'it', 'tomorrow', '||comma||', 'because', 'doris', 'wants', 'to', 'go', 'to', 'naples', '||period||', '||return||', '||return||', 'jack:', 'need', 'a', 'pen', '||questionmark||', '||return||', '||return||', 'jack:', 'still', 'works', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "where's", 'jerry', '||questionmark||', '||return||', '||return||', 'helen:', "he's", 'performing', 'at', "bally's", 'in', 'atlantic', 'city', '||period||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', 'okay', '||period||', '||leftparen||', 'picks', 'up', 'the', 'phone', 'and', 'starts', 'dialling', '||rightparen||', 'yeah', '||comma||', 'i', 'need', 'his', 'shoeshine', 'kit', '||period||', '||leftparen||', 'still', 'dialling', '||rightparen||', 'he', 'always', 'hides', 'it', 'from', 'me', '||period||', '||leftparen||', 'puts', 'the', 'phone', 'to', 'his', 'ear', 'and', 'waits', 'for', 'a', 'second', 'or', 'two', '||rightparen||', 'yeah', '||comma||', "bally's", '||questionmark||', 'yeah', '||comma||', 'jerry', "seinfeld's", 'room', '||comma||', 'please', '||period||', '||return||', '||return||', 'morty:', 'you', 'know', 'that', 'number', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'used', 'to', 'have', 'a', 'problem', '||period||', '||leftparen||', 'into', 'phone', '||rightparen||', 'well', '||comma||', 'what', "d'you", 'mean', '||comma||', "he's", 'not', 'registered', '||questionmark||', 'wha', '||period||', '||period||', 's', '||comma||', 'e', '||comma||', 'i', '||comma||', 'n', '||comma||', 'v', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'f', '||period||', 'f', '||comma||', 'e', '||comma||', 'l', '||comma||', 'd', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'f', '||comma||', 'e', '||comma||', 'l', '||comma||', 'd', '||period||', '||leftparen||', 'half', '||dash||', 'laughing', '||rightparen||', 'well', '||comma||', 'i', 'think', "you're", 'wrong', '||period||', '||leftparen||', 'listens', '||rightparen||', 'alright', '||comma||', 'you', 'have', 'a', 'lucky', 'day', '||comma||', 'too', '||period||', '||return||', '||return||', 'helen:', "he's", 'not', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'they', 'never', 'heard', 'of', 'him', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'so', 'nice', 'of', 'you', 'to', 'take', 'us', 'all', 'out', 'to', 'dinner', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'oozing', 'fake', 'sincerity', '||rightparen||', 'well', '||comma||', 'as', 'much', 'as', 'i', 'enjoy', 'all', 'the', 'good', '||dash||', 'natured', 'ribbing', '||comma||', 'nothing', 'really', 'makes', 'me', 'happier', 'than', 'spending', 'money', 'on', 'the', 'people', 'i', 'care', 'about', '||period||', '||return||', '||return||', 'helen:', "where's", 'jerry', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "he'll", 'be', 'here', '||period||', 'by', 'the', 'way', '||comma||', 'elaine', '||comma||', '||leftparen||', 'reaches', 'under', 'the', 'table', 'and', 'brings', 'out', 'a', 'large', 'coffee', 'machine', '||rightparen||', 'thank', 'you', 'for', 'laying', 'out', 'for', 'the', 'arabian', 'mocha', 'java', '||period||', '||return||', '||return||', 'elaine:', 'george', '||comma||', 'you', "didn't", 'have', 'to', 'do', 'this', '||period||', "i'm", 'president', 'of', 'a', 'big', 'company', '||period||', 'i', 'can', 'afford', 'to', 'buy', 'you', 'coffee', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'surprised', '||rightparen||', 'president', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hey', 'look', '||comma||', "he's", 'back', '||period||', '||return||', '||return||', 'jerry:', 'i', 'got', 'your', 'message', '||comma||', '||leftparen||', 'sitting', '||rightparen||', 'so', 'i', 'came', 'straight', 'from', 'atlantic', 'city', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'kramer', 'called', "bally's", '||period||', 'you', "weren't", 'registered', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'extemporising', '||rightparen||', 'well', '||comma||', 'i', "can't", 'stay', 'under', 'my', 'own', 'name', '||period||', 'i', 'was', 'registered', 'under', 'slappy', 'white', '||period||', '||return||', '||return||', 'george:', 'mom', '||questionmark||', 'dad', '||questionmark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'look', "who's", 'here', '||period||', 'hello', '||comma||', 'seinfelds', '||period||', '||return||', '||return||', 'george:', 'wh', '||period||', '||period||', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'frank:', "we're", 'having', 'an', 'upscale', 'dinner', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'after', 'talking', 'to', 'you', '||comma||', 'we', 'realised', 'we', 'may', 'not', 'have', 'much', 'time', 'left', '||period||', '||return||', '||return||', 'frank:', 'so', '||comma||', "we're", 'blowing', 'it', 'all', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'holding', 'out', 'his', 'tie', '||rightparen||', 'look', 'george', '||comma||', "it's", 'a', 'pierre', 'cardin', '||period||', '||return||', '||return||', 'kramer:', 'that', 'was', 'alright', '||period||', '||return||', '||return||', 'emily:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'abruptly', '||rightparen||', 'well', '||comma||', "i'll", 'see', 'you', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'shouting', 'like', "there's", 'a', 'bad', 'line', '||rightparen||', 'jerry', '||comma||', 'i', 'had', 'a', 'little', 'mishap', 'with', 'the', 'car', '||period||', '||return||', '||return||', 'jack:', "i'm", 'down', 'here', 'in', 'alligator', 'alley', '||period||', 'you', 'better', 'get', 'down', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quiet', '||rightparen||', 'huh', '||period||', 'alright', '||period||', '||return||', '||return||', 'helen:', 'who', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'extemporising', '||rightparen||', 'that', 'was', 'the', 'golden', 'nugget', '||period||', 'also', 'in', 'atlantic', 'city', '||period||', 'they', 'heard', 'such', 'good', 'things', 'about', 'my', 'show', 'at', "bally's", '||comma||', 'they', 'want', 'me', 'for', 'tonight', '||period||', 'so', "i'll", 'have', 'to', 'repack', '||comma||', 'and', 'go', '||period||', '||return||', '||return||', 'morty:', 'that', "didn't", 'sound', 'like', 'the', 'golden', 'nugget', '||period||', '||return||', '||return||', 'helen:', "i'm", 'worried', '||period||', 'what', 'happens', 'if', 'we', 'have', 'to', 'support', 'jerry', '||questionmark||', '||return||', '||return||', 'morty:', "i'd", 'have', 'to', 'go', 'back', 'to', 'work', '||period||', '||return||', '||return||', 'helen:', 'where', 'would', 'you', 'work', '||questionmark||', '||return||', '||return||', 'morty:', 'maybe', 'i', 'should', 'talk', 'to', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'mr', 'seinfeld', '||comma||', 'i', '||period||', '||period||', "i'm", 'not', 'sure', 'i', 'understand', 'why', 'you', 'want', 'a', 'job', 'here', '||period||', '||return||', '||return||', 'morty:', "what's", 'not', 'to', 'understand', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'for', 'one', 'thing', '||comma||', 'you', 'live', 'in', 'florida', '||period||', '||return||', '||return||', 'morty:', "i'm", 'very', 'comfortable', 'working', 'outta', 'the', 'house', '||period||', 'i', 'have', 'a', 'phone', '||comma||', 'we', 'have', 'a', "kinko's", 'nearby', '||period||', 'you', 'know', '||comma||', 'i', 'think', 'that', 'my', 'resume', 'speaks', 'for', 'itself', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'around', 'her', 'desk', '||rightparen||', 'where', 'is', 'your', 'resume', '||questionmark||', '||return||', '||return||', 'morty:', 'i', "don't", 'have', 'it', '||period||', "i'll", 'mail', 'you', 'one', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'mr', 'seinfeld', '||comma||', 'i', '||period||', '||period||', '||period||', 'what', 'kind', 'of', 'position', 'did', 'you', 'have', 'in', 'mind', '||questionmark||', '||return||', '||return||', 'morty:', 'you', 'sell', 'clothes', 'here', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'morty:', 'well', '||comma||', 'i', 'sold', 'raincoats', 'in', 'the', 'garment', 'centre', 'for', 'thirty', '||dash||', 'eight', 'years', '||period||', 'in', 'nineteen', 'forty', '||dash||', 'nine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'interrupting', '||rightparen||', 'alright', '||period||', 'alright', '||comma||', 'alright', '||period||', 'you', 'come', 'in', 'tomorrow', '||comma||', "we'll", 'find', 'something', 'for', 'you', 'to', 'do', '||period||', '||return||', '||return||', 'morty:', 'you', "won't", 'regret', 'this', '||comma||', 'miss', 'benes', '||period||', 'what', 'time', 'should', 'i', 'be', 'in', '||questionmark||', 'i', 'get', 'up', 'at', 'four', '||comma||', 'i', 'could', 'be', 'here', 'as', 'early', 'as', 'four', 'twenty', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', 'uhm', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'upbeat', '||rightparen||', 'oh', '||comma||', 'elaine', '||comma||', 'this', 'dry', 'air', 'is', 'curing', 'me', 'like', 'a', 'black', 'forest', 'ham', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stunned', '||rightparen||', 'mr', 'peterman', '||period||', "you're", 'back', '||period||', '||return||', '||return||', 'morty:', "who's", 'mr', 'fancy', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'hesitant', '||rightparen||', 'i', 'uh', '||comma||', 'i', 'was', 'thinking', 'maybe', 'i', 'should', 'spend', 'the', 'night', '||period||', '||return||', '||return||', 'emily:', 'aww', '||comma||', "that's", 'sweet', '||comma||', 'but', 'actually', 'i', '||comma||', 'i', 'think', "i'd", 'prefer', 'it', 'if', 'you', 'left', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'surprise', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'emily:', 'you', 'were', 'completely', 'right', '||period||', 'i', 'sleep', 'so', 'much', 'better', 'when', "i'm", 'alone', '||period||', '||leftparen||', 'pause', '||rightparen||', 'and', 'you', 'scream', 'in', 'your', 'sleep', '||period||', '||return||', '||return||', 'kramer:', 'i', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'fearful', '||rightparen||', 'there', 'was', 'a', 'man', '||comma||', 'he', 'was', 'trying', 'to', 'get', 'into', 'my', 'apartment', 'last', 'night', '||period||', 'he', 'was', 'jiggling', 'the', 'doorknob', 'for', 'twenty', '||dash||', 'five', 'minutes', '||period||', '||return||', '||return||', 'emily:', "c'mon", '||comma||', 'it', 'was', 'probably', 'the', 'wind', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'it', 'was', 'a', 'fearless', 'cat', 'burglar', '||period||', '||leftparen||', 'pleading', '||rightparen||', 'now', 'listen', '||comma||', 'you', 'gotta', 'let', 'me', 'sleep', 'here', '||comma||', 'huh', '||questionmark||', "y'know", '||comma||', "i'll", 'stay', 'here', 'on', 'my', 'side', '||comma||', 'and', "i'll", 'stuff', 'a', 'sock', 'in', 'my', 'mouth', '||period||', '||leftparen||', 'panicky', '||rightparen||', "'cos", 'i', "don't", 'wanna', 'sleep', 'alone', '||period||', '||return||', '||return||', 'emily:', '||leftparen||', 'adamant', '||rightparen||', 'well', '||comma||', 'i', 'do', '||period||', '||return||', '||return||', 'jack:', 'what', 'took', 'you', 'so', 'long', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'live', 'in', 'new', 'york', '||period||', '||leftparen||', 'slams', 'the', 'cab', 'door', '||rightparen||', 'what', 'the', 'hell', 'happened', '||questionmark||', '||return||', '||return||', 'jack:', 'this', 'thing', 'is', 'a', '||comma||', 'is', 'a', 'behemoth', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jack:', 'i', 'was', '||comma||', 'i', 'was', 'making', 'a', '||comma||', 'a', 'simple', 'lane', 'change', '||period||', 'i', '||comma||', 'i', 'put', 'on', 'the', 'blinker', 'and', 'it', 'took', 'off', 'on', 'me', '||period||', 'and', 'the', 'next', 'thing', 'you', 'know', '||comma||', 'i', 'was', 'submerged', '||period||', "i'm", 'telling', 'you', '||comma||', 'jerry', '||comma||', "i'm", 'very', 'lucky', 'that', 'those', 'crocs', "didn't", 'get', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'exasperation', '||rightparen||', 'you', 'are', 'such', 'an', 'idiot', '||period||', 'well', '||comma||', 'we', 'gotta', 'get', 'the', 'car', 'cleaned', 'up', 'for', 'my', 'parents', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'shrugging', '||rightparen||', 'do', 'whatever', 'you', 'want', '||period||', "it's", 'your', 'car', '||period||', '||return||', '||return||', 'jerry:', 'my', 'car', '||questionmark||', 'you', 'drove', 'it', 'into', 'the', 'swamp', '||exclammark||', '||return||', '||return||', 'jack:', 'it', 'drove', 'itself', 'into', 'the', 'swamp', '||exclammark||', 'besides', '||comma||', 'i', 'think', 'i', 'lost', 'my', 'pen', '||comma||', 'too', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', 'with', 'pleasure', '||rightparen||', 'you', 'know', '||comma||', 'that', 'almost', 'makes', 'this', 'all', 'worthwhile', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointing', 'outside', '||rightparen||', 'why', 'is', 'there', 'a', 'cadillac', 'parked', 'in', 'front', 'of', 'the', 'house', '||questionmark||', '||return||', '||return||', 'frank:', "that's", 'your', "mother's", 'new', 'car', '||period||', '||return||', '||return||', 'george:', 'you', 'bought', 'that', '||questionmark||', '||return||', '||return||', 'frank:', "it's", 'a', 'coupe', 'de', 'elegance', '||period||', '||return||', '||return||', 'estelle:', 'your', 'father', 'wanted', 'a', 'mercedes', '||comma||', 'but', 'i', "won't", 'ride', 'in', 'a', 'german', 'car', '||period||', '||return||', '||return||', 'kramer:', "mornin'", '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'boy', '||period||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'had', 'some', 'trouble', 'at', 'my', 'place', '||comma||', 'so', 'i', 'need', 'a', 'little', 'company', 'at', 'night', 'to', 'sleep', '||period||', '||return||', '||return||', 'estelle:', 'george', '||comma||', 'your', 'mother', 'and', 'i', '||comma||', 'and', 'kramer', '||leftparen||', 'holds', "kramer's", 'hand', '||rightparen||', 'have', 'been', 'talking', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'dread', '||rightparen||', 'oh', 'god', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'george', '||comma||', 'your', 'parents', "can't", 'blow', 'through', 'their', 'savings', 'in', 'this', 'community', '||period||', "it's", 'low', '||dash||', 'rent', '||period||', 'now', '||comma||', 'we', 'feel', 'that', 'florida', 'is', 'really', 'the', 'place', 'where', 'they', 'should', 'be', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'claps', 'his', 'hands', '||rightparen||', 'you', 'can', 'drop', 'a', 'grand', 'in', 'disneyworld', '||comma||', 'like', 'that', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||period||', '||leftparen||', 'astonished', '||rightparen||', "you're", 'thinking', 'of', 'moving', 'to', 'florida', 'again', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', 'well', '||comma||', "it's", 'either', 'that', 'or', 'we', 'stay', 'here', '||comma||', 'near', 'you', '||comma||', 'and', 'just', 'sit', 'on', 'the', 'money', '||period||', 'what', 'do', 'you', 'think', 'we', 'should', 'do', '||comma||', 'georgie', '||questionmark||', '||return||', '||return||', 'peterman:', 'so', '||comma||', 'anyway', '||comma||', 'effective', 'immediately', '||comma||', 'miss', 'benes', 'will', 'return', 'to', 'her', 'old', 'position', '||comma||', 'at', 'her', 'original', 'salary', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', '||period||', '||period||', '||period||', 'and', 'i', '||comma||', 'of', 'course', '||comma||', 'will', 'return', 'to', 'mine', '||period||', 'kudos', '||comma||', 'elaine', '||comma||', 'on', 'a', 'job', '||period||', '||period||', '||period||', 'done', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'hardly', 'daring', 'to', 'ask', '||rightparen||', 'what', 'about', 'my', 'stock', 'options', '||questionmark||', '||return||', '||return||', 'peterman:', 'i', 'think', 'not', '||period||', '||return||', '||return||', 'peterman:', 'now', '||comma||', 'down', 'to', 'business', '||period||', '||leftparen||', 'thoughtful', '||rightparen||', 'i', 'have', 'had', 'this', 'vision', 'of', 'a', 'diaphanous', 'rum', '||dash||', 'runner', 'scarf', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'we', 'could', 'fly', 'some', 'fabric', 'in', 'from', 'our', 'silk', 'factories', '||comma||', 'for', 'about', 'a', 'thousand', 'dollars', 'a', 'bolt', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'shocked', '||rightparen||', 'a', 'thousand', '||questionmark||', '||exclammark||', 'i', 'know', 'a', 'coupla', 'chinamen', 'over', 'there', 'on', 'forty', '||dash||', 'third', 'street', '||comma||', "who'll", 'do', 'it', 'for', 'half', 'that', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'tactful', '||rightparen||', "it's", '||comma||', 'ah', '||comma||', 'asian', '||dash||', 'americans', '||period||', '||return||', '||return||', 'morty:', 'what', '||questionmark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'puzzled', '||rightparen||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', "don't", 'worry', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', 'morty', 'seinfeld', '||period||', 'i', 'cut', 'velvet', 'for', 'forty', 'years', 'with', 'harry', 'altman', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'mr', 'seinfeld', '||comma||', 'this', 'is', 'not', 'the', 't', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'did', 'you', 'hire', 'this', 'man', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'worried', '||rightparen||', 'no', '||comma||', 'no', '||period||', 'well', '||comma||', 'i', 'mean', '||comma||', 'you', 'know', '||comma||', "he's", 'more', 'like', 'an', 'intern', '||comma||', 'you', 'know', '||comma||', 'at', 'best', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'if', 'your', 'parents', 'move', 'to', 'florida', '||comma||', "you're", 'poor', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointing', 'out', 'the', 'positive', '||rightparen||', 'but', 'happy', '||period||', '||return||', '||return||', 'elaine:', 'obviously', '||period||', 'and', 'if', 'they', 'stay', '||comma||', "you're", 'rich', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'obviously', '||period||', '||return||', '||return||', 'elaine:', 'quite', 'a', 'dilemma', '||period||', 'you', 'know', '||comma||', 'i', 'have', 'a', 'bit', 'of', 'a', 'dilemma', 'of', 'my', 'own', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||leftparen||', 'determined', '||rightparen||', "we're", 'staying', 'on', 'me', '||period||', 'we', "haven't", 'solved', 'anything', 'yet', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'this', 'is', 'easy', '||period||', 'let', "'em", 'go', '||period||', '||return||', '||return||', 'george:', 'what', "d'you", 'mean', '||comma||', 'let', "'em", 'go', '||questionmark||', "they're", 'spending', 'all', 'my', 'money', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'well', '||comma||', 'then', 'they', 'stay', '||period||', 'lemma', 'ask', 'you', 'something', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'upset', '||rightparen||', 'could', 'you', 'put', 'a', 'little', 'thought', 'into', 'this', '||questionmark||', "jerry's", 'gone', '||comma||', 'you', 'could', 'humour', 'me', '||period||', 'he', 'humours', 'me', '||period||', '||return||', '||return||', 'elaine:', 'speaking', 'of', 'jerry', '||comma||', 'his', 'father', 'is', 'driving', 'me', 'so', 'crazy', 'down', 'at', "peterman's", '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'i', 'do', 'at', 'the', 'yankees', '||comma||', 'when', 'one', 'of', 'these', 'old', 'guys', 'is', 'breathing', 'down', 'my', 'neck', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'schedule', 'a', 'late', 'meeting', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'puzzlement', '||rightparen||', 'huh', '||questionmark||', 'what', 'does', 'that', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'these', 'old', 'guys', '||comma||', "they're", 'up', 'at', '4', 'a', '||period||', 'm', '||period||', '||comma||', 'by', 'two', 'thirty', "they're", 'wiped', '||period||', '||leftparen||', 'animated', '||rightparen||', 'how', 'did', 'we', 'get', 'back', 'onto', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grabbing', 'her', 'bag', 'and', 'coat', '||rightparen||', 'i', 'gotta', 'split', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouted', 'after', 'elaine', '||rightparen||', 'you', 'know', '||comma||', 'i', 'got', 'nothing', 'outta', 'this', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'frank', '||comma||', 'you', 'got', 'two', 'beds', 'in', 'here', '||period||', '||return||', '||return||', 'frank:', "that's", 'right', '||period||', "that's", 'me', 'on', 'the', 'left', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'you', 'sleep', 'in', 'separate', 'beds', '||period||', '||return||', '||return||', 'frank:', 'thirty', 'years', 'ago', '||comma||', 'we', 'came', 'to', 'an', 'agreement', '||period||', 'it', 'was', 'the', 'only', 'way', 'i', 'could', 'get', 'some', 'rest', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'intrigued', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'confidential', '||rightparen||', "estelle's", 'got', 'the', '||leftparen||', 'jerks', 'his', 'elbow', '||rightparen||', 'jimmy', 'arms', '||period||', '||return||', '||return||', 'kramer:', 'you', 'can', 'get', 'that', 'in', 'your', 'arms', '||questionmark||', '||return||', '||return||', 'frank:', 'like', 'you', "wouldn't", 'believe', '||period||', '||return||', '||return||', 'jack:', 'jerry', '||comma||', "it's", 'getting', 'late', '||period||', "you've", 'cleaned', 'up', 'the', 'car', '||period||', "you've", 'made', 'all', 'your', 'phone', 'calls', '||period||', 'why', 'are', 'you', 'still', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'uh', '||comma||', 'maxed', 'out', 'my', 'credit', 'cards', '||comma||', 'and', 'i', "don't", 'have', 'enough', 'cash', 'for', 'a', 'hotel', 'room', '||period||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jack:', 'you', 'are', 'uh', '||comma||', 'thinking', 'of', 'staying', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'jack:', '||leftparen||', 'laughing', '||rightparen||', "you've", 'got', 'some', 'nerve', '||period||', 'i', 'almost', 'break', 'my', 'neck', 'in', 'that', 'death', '||dash||', 'trap', 'of', 'yours', '||comma||', 'and', 'now', 'you', 'ask', 'me', 'for', 'a', 'favour', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'like', 'that', 'crack', 'about', 'the', 'pen', '||period||', '||return||', '||return||', 'jack:', 'i', 'did', 'not', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i've", 'given', 'this', 'a', 'lot', 'of', 'thought', '||comma||', 'and', "i've", 'gotta', 'say', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'attempting', 'sincerity', '||rightparen||', 'as', 'much', 'as', "i'd", 'like', 'to', 'see', 'the', 'two', 'of', 'you', 'living', 'it', 'up', 'in', 'a', 'warm', '||comma||', 'tropical', '||comma||', 'setting', '||comma||', 'i', '||comma||', 'i', 'would', 'just', 'miss', 'you', 'too', 'much', '||period||', '||leftparen||', 'smiling', '||rightparen||', 'so', '||comma||', "i've", 'decided', '||comma||', 'i', 'want', 'you', 'to', 'stay', '||period||', '||return||', '||return||', 'frank:', "it's", 'too', 'late', '||period||', 'we', 'bought', 'a', 'condo', 'at', 'del', 'boca', 'vista', '||period||', "we're", 'leaving', 'tonight', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'crestfallen', '||rightparen||', 'but', 'you', 'said', 'it', 'was', 'my', 'call', '||period||', '||return||', '||return||', 'estelle:', 'we', 'were', 'just', 'being', 'nice', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'motherly', 'concern', '||rightparen||', 'cosmo', '||comma||', 'are', 'you', 'sure', "you're", 'gonna', 'be', 'alright', 'here', 'alone', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'got', 'emily', 'coming', 'over', 'tonight', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', "you're", 'letting', 'him', 'have', 'a', 'woman', 'over', '||questionmark||', '||exclammark||', '||return||', '||return||', 'frank:', "he's", 'not', 'family', '||period||', "it's", 'different', '||comma||', 'psychologically', '||period||', '||return||', '||return||', 'peterman:', 'and', 'so', '||comma||', 'i', 'made', 'an', 'explosive', 'out', 'of', 'chick', 'peas', '||comma||', 'and', 'i', 'stopped', 'that', 'great', 'rhino', 'right', 'in', 'his', 'tracks', '||period||', '||return||', '||return||', 'morty:', 'well', '||comma||', "it's", 'getting', 'kinda', 'late', '||comma||', 'why', "don't", 'we', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'mr', 'peterman', '||comma||', 'that', "can't", 'have', 'been', 'the', 'only', 'time', 'that', 'you', 'faced', 'mortal', 'danger', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'smiles', 'and', 'laughs', '||rightparen||', 'ha', 'ha', 'ha', '||period||', 'funny', 'you', 'should', 'ask', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'morty:', 'look', '||comma||', 'if', "we're", 'gonna', 'stay', 'here', 'until', 'all', 'hours', 'of', 'the', 'night', '||comma||', 'can', 'we', 'at', 'least', 'get', 'some', 'food', 'here', '||questionmark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'looks', 'at', 'his', 'watch', '||rightparen||', "it's", 'only', 'five', 'fifteen', '||period||', 'so', '||comma||', 'later', 'on', 'that', 'same', 'day', '||comma||', 'i', 'developed', 'a', 'great', 'hankering', 'for', 'some', 'wild', 'honey', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'standing', '||rightparen||', 'okay', '||comma||', "i'm", 'done', '||period||', "i'll", 'be', 'back', 'in', 'the', 'morning', '||comma||', 'when', "he's", 'close', 'to', 'finish', 'with', 'his', 'story', '||period||', '||return||', '||return||', 'peterman:', 'morty', '||period||', 'my', 'stories', 'are', 'what', 'sell', 'these', 'clothes', '||period||', '||return||', '||return||', 'morty:', 'cheap', 'fabric', '||comma||', 'and', 'dim', 'lighting', '||period||', "that's", 'how', 'you', 'move', 'merchandise', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'winks', '||rightparen||', 'morty', '||comma||', "you're", 'out', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'unconcerned', '||rightparen||', 'ach', '||comma||', 'i', 'never', 'knew', 'what', 'the', 'hell', 'i', 'was', 'peddling', 'with', 'those', 'stupid', 'cartoons', 'and', 'that', 'paper', 'book', '||comma||', 'anyway', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', 'why', 'i', 'let', 'you', 'talk', 'me', 'into', 'that', 'corned', 'beef', 'at', "snitzer's", '||period||', '||return||', '||return||', 'emily:', '||leftparen||', 'not', 'looking', 'up', 'from', 'her', 'book', '||rightparen||', 'no', '||dash||', 'one', 'held', 'a', 'gun', 'to', 'your', 'head', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'dismissive', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'emily:', '||leftparen||', 'still', 'reading', '||rightparen||', "don't", 'forget', '||comma||', "we're", 'eating', 'dinner', 'at', 'the', "feinerman's", 'tomorrow', 'night', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'moody', '||rightparen||', 'oh', '||comma||', 'why', 'do', 'i', 'have', 'to', 'go', '||questionmark||', "they're", 'your', 'friends', '||period||', '||return||', '||return||', 'emily:', 'you', 'like', "'em", '||period||', '||return||', '||return||', 'kramer:', "i've", 'had', 'it', 'with', "'em", '||period||', '||return||', '||return||', 'emily:', 'then', 'we', "won't", 'go', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yielding', '||rightparen||', 'okay', '||comma||', 'okay', '||period||', 'what', 'time', '||questionmark||', '||return||', '||return||', 'emily:', 'eight', 'thirty', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'satisfied', '||rightparen||', 'ahh', '||period||', 'that', 'was', 'alright', '||period||', '||return||', '||return||', 'elaine:', "'one", 'bright', 'note', 'in', "today's", 'market', '||comma||', 'was', 'the', 'stock', 'of', 'retailer', 'j', 'peterman', '||comma||', 'whose', "founder's", 'surprise', 'return', 'generated', 'a', 'rise', 'of', 'twelve', 'and', 'a', 'half', 'points', '||period||', "'", '||return||', '||return||', 'jerry:', 'mmm', '||dash||', 'mmm', '||dash||', 'mmm', '||period||', 'that', 'means', '||comma||', 'if', 'you', 'still', 'had', 'those', 'stock', 'options', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'downcast', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'jerry', '||dash||', 'style', '||rightparen||', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sharp', '||rightparen||', 'what', '||comma||', 'are', 'you', 'sticking', 'it', 'to', 'me', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'innocent', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', "you're", 'sticking', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', "i'm", 'sure', 'george', 'is', 'just', 'being', 'sympathetic', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaning', 'forward', 'and', 'accusing', '||rightparen||', "stickin'", 'it', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'not', 'alone', '||period||', "i'm", 'practically', 'broke', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'but', '||comma||', 'i', 'did', 'blow', 'over', 'twenty', 'thousand', 'on', 'that', 'cadillac', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'relishing', '||rightparen||', 'hmm', '||dash||', 'hmm', '||dash||', 'hmm', '||dash||', 'hmm', '||period||', 'delicious', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'seem', 'happy', '||period||', '||return||', '||return||', 'george:', 'i', 'am', '||period||', 'the', 'folks', 'are', 'twelve', 'hundred', 'miles', 'away', '||period||', '||leftparen||', 'gleeful', '||rightparen||', "i'm", 'basking', 'in', 'the', 'buffer', 'zone', '||period||', '||leftparen||', 'looks', 'for', 'the', 'waitress', '||rightparen||', "'nother", 'piece', 'of', 'pie', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'were', 'your', 'parents', 'shocked', 'to', 'see', 'the', 'cadillac', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'i', "haven't", 'heard', 'from', "'em", 'yet', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', '||return||', '||return||', 'morty:', 'when', 'are', 'we', 'gonna', 'tell', 'jerry', '||questionmark||', '||return||', '||return||', 'helen:', 'i', "don't", 'wanna', 'worry', 'him', '||period||', "we'll", 'tell', 'him', 'next', 'time', 'we', 'go', 'up', '||period||', '||return||', '||return||', 'morty:', 'he', 'thought', 'he', 'could', 'buy', 'back', 'that', 'cadillac', 'for', 'us', '||questionmark||', "he's", 'not', 'getting', 'away', 'with', 'that', '||period||', '||return||', '||return||', 'helen:', 'besides', '||comma||', 'that', 'condo', 'was', 'too', 'much', 'house', '||period||', '||return||', '||return||', 'estelle:', 'how', 'many', 'times', 'can', 'you', 'check', 'the', 'car', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'coming', 'away', 'from', 'the', 'window', '||rightparen||', 'i', 'saw', 'a', 'bum', 'sleeping', 'in', 'a', 'cadillac', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'estelle:', 'why', 'would', 'someone', 'break', 'into', 'a', 'car', 'to', 'take', 'a', 'nap', '||questionmark||', '||return||', '||return||', 'frank:', 'they', "don't", 'nap', '||period||', 'they', 'make', 'it', 'their', 'home', '||period||', 'they', 'urinate', 'in', 'there', '||exclammark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'shouts', '||rightparen||', "you're", 'driving', 'me', 'crazy', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'standing', '||rightparen||', "that's", 'it', '||comma||', "we're", 'going', 'back', 'to', 'queens', '||period||', '||leftparen||', 'claps', 'hands', '||rightparen||', "where's", 'my', 'hat', '||questionmark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'shouts', '||rightparen||', 'nooh', '||exclammark||', '||return||', '||return||', 'bill:', 'well', '||comma||', 'if', 'the', 'big', 'man', 'wants', 'a', 'new', 'scoreboard', '||comma||', 'i', "don't", 'wanna', 'be', 'the', 'one', 'to', 'tell', 'him', 'no', '||period||', '||return||', '||return||', 'reilly:', 'no', '||dash||', 'one', 'in', 'the', 'park', 'is', 'gonna', 'be', 'able', 'to', 'see', 'it', 'from', 'there', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'through', 'a', 'mouthful', 'of', 'shrimp', '||rightparen||', 'well', '||comma||', 'why', "don't", 'we', 'just', 'put', 'a', 'monitor', 'in', 'his', 'skybox', '||questionmark||', '||return||', '||return||', 'reilly:', 'hey', 'george', '||comma||', 'the', 'ocean', 'called', '||period||', "they're", 'running', 'outta', 'shrimp', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angry', '||comma||', 'to', 'himself', '||rightparen||', 'the', 'ocean', 'called', '||period||', 'running', 'outta', 'shrimp', '||period||', 'outta', 'shrimp', '||exclammark||', '||leftparen||', 'a', 'thought', 'occurs', '||rightparen||', 'oh', '||exclammark||', 'yes', '||exclammark||', "that's", 'what', 'i', 'shoulda', 'said', '||exclammark||', '||leftparen||', 'frustrated', 'shout', '||rightparen||', 'dammit', '||exclammark||', '||return||', '||return||', 'jerry:', "'the", 'ocean', 'called', '||comma||', "they're", 'running', 'outta', "shrimp'", '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'but', 'then', '||comma||', 'i', 'said', 'to', 'him', '||comma||', "'oh", 'yeah', '||questionmark||', 'well', '||comma||', 'the', 'jerk', 'store', 'called', '||comma||', 'and', "they're", 'running', 'outta', 'you', '||period||', "'", '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', '||rightparen||', 'really', '||questionmark||', "that's", 'great', '||period||', 'you', 'said', 'that', 'to', 'him', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'confessing', '||rightparen||', 'well', '||comma||', 'actually', '||comma||', 'i', 'thought', 'it', 'up', 'on', 'the', 'way', 'over', 'here', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', "that's", 'not', 'quite', 'the', 'same', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'no', "it's", 'not', '||period||', 'you', "don't", 'know', 'this', 'guy', '||period||', 'it', 'woulda', 'been', 'so', 'sweet', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'grab', 'a', 'can', 'of', 'balls', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'milos:', 'hello', '||period||', 'my', 'name', 'is', 'milos', '||period||', 'how', 'can', 'i', 'help', 'you', '||period||', '||return||', '||return||', 'jerry:', 'i', 'need', 'a', 'can', 'of', 'balls', '||period||', '||return||', '||return||', 'milos:', 'can', 'of', 'balls', 'for', 'the', 'nice', 'guy', '||comma||', 'alri', '||period||', '||period||', '||period||', '||return||', '||return||', 'milos:', '||period||', '||period||', '||period||', 'ahh', '||period||', 'you', "don't", 'plan', 'to', 'hit', 'these', 'balls', 'with', 'that', 'racquet', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'checking', 'out', 'the', 'staff', 'picks', '||comma||', 'miss', 'benes', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'ha', '||dash||', 'ha', '||period||', 'hey', '||period||', 'yeah', '||comma||', 'yeah', '||period||', '||leftparen||', 'indicating', 'shelf', '||rightparen||', 'this', 'vincent', 'guy', '||comma||', 'he', 'is', 'the', 'best', '||period||', 'he', 'and', 'i', 'have', 'the', 'exact', 'same', 'taste', 'in', 'movies', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'vincent', 'is', 'an', 'art', '||dash||', 'house', 'goon', '||period||', 'i', 'stick', 'to', 'the', 'gene', 'rack', '||period||', '||return||', '||return||', 'elaine:', 'gene', '||questionmark||', 'oh', '||comma||', "it's", 'so', 'stupid', 'and', 'mainstream', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'indicates', "'gene'", 'shelf', '||rightparen||', "i've", 'seen', 'all', 'these', '||comma||', 'so', 'i', 'went', 'with', 'a', 'kramer', 'pick', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reading', '||rightparen||', "'the", 'other', 'side', 'of', "darkness'", '||period||', 'huh', '||comma||', 'i', 'never', 'heard', 'of', 'that', 'one', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'went', 'straight', 'to', 'video', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'positive', '||rightparen||', 'that', 'makes', 'me', 'the', 'premiere', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gets', "kramer's", 'point', '||rightparen||', 'hah', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'have', 'you', 'ever', 'seen', 'the', 'movie', 'the', 'other', 'side', 'of', 'darkness', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', "it's", 'about', 'this', 'woman', '||comma||', 'in', 'a', 'coma', '||period||', 'well', '||comma||', 'i', "couldn't", 'finish', 'watching', 'it', '||comma||', 'so', 'i', 'want', 'you', 'to', 'read', 'this', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', '||rightparen||', "'i", '||comma||', 'cosmo', 'kramer', '||comma||', 'having', 'just', 'seen', 'the', 'movie', 'the', 'other', 'side', 'of', 'darkness', '||comma||', 'and', 'not', 'wanting', 'to', 'be', 'in', 'a', 'coma', 'like', 'that', 'lady', 'in', 'the', 'movie', '||comma||', 'hereby', 'want', 'jerry', 'seinfeld', 'to', 'remove', 'my', 'life', 'support', '||comma||', 'feeding', 'machine', '||comma||', 'lung', '||dash||', 'blower', '||comma||', 'etcetera', '||comma||', 'etcetera', '||comma||', 'etcetera', '||period||', "'", '||return||', '||return||', 'kramer:', 'can', 'you', 'do', 'that', 'for', 'me', '||comma||', 'buddy', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'if', 'what', 'you', 'have', 'here', 'constitutes', 'a', 'legally', 'binding', 'document', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'gonna', 'type', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'well', '||comma||', 'of', 'course', '||comma||', 'but', '||comma||', 'even', 'so', '||comma||', 'you', 'may', 'wanna', 'talk', 'to', 'a', 'lawyer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', '||comma||', 'jackie', 'chiles', '||comma||', 'he', 'put', 'a', 'restraining', 'order', 'on', 'me', '||period||', '||leftparen||', 'frustrated', '||rightparen||', "i'm", 'not', 'allowed', 'within', 'two', 'hundred', 'feet', 'of', 'his', 'office', '||period||', 'i', "couldn't", 'even', 'give', 'him', 'his', 'christmas', 'present', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'new', 'racquet', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||leftparen||', 'hands', 'racquet', 'to', 'kramer', '||rightparen||', 'i', "wasn't", 'gonna', 'get', 'it', '||comma||', 'but', 'this', 'guy', 'milos', '||comma||', 'who', 'runs', 'the', 'pro', 'shop', '||comma||', 'he', 'really', 'recommended', 'it', '||period||', '||return||', '||return||', 'jerry:', 'in', 'fact', '||comma||', "it's", 'the', 'only', 'racquet', 'he', 'plays', 'with', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'picking', 'up', "jerry's", 'old', 'racquet', '||rightparen||', 'well', '||comma||', "you're", 'not', 'gonna', 'need', 'this', 'any', 'more', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'accusingly', '||rightparen||', 'hey', '||comma||', 'this', 'is', 'the', 'zee', 'page', 'of', 'my', 'address', 'book', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'explaining', '||rightparen||', 'oh', 'yeah', '||comma||', 'i', 'put', 'all', 'your', 'zees', 'on', 'the', 'weights', 'and', 'measures', 'page', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'emotional', '||rightparen||', 'oh', '||period||', 'oh', '||comma||', 'bravo', '||comma||', 'vincent', '||period||', 'bravo', '||period||', '||leftparen||', 'sniffs', '||rightparen||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'did', 'you', 'enjoy', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', "it's", 'vincent', '||period||', '||return||', '||return||', 'elaine:', 'of', "vincent's", 'picks', '||questionmark||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'the', 'same', '||period||', '||return||', '||return||', 'jerry:', 'he', 'called', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'musta', 'got', 'my', 'number', 'off', 'the', 'computer', '||period||', 'we', 'ended', 'up', 'talking', 'for', '||comma||', 'like', '||comma||', 'two', 'hours', '||period||', '||return||', '||return||', 'jerry:', 'to', 'a', 'guy', "you've", 'never', 'met', '||questionmark||', '||leftparen||', 'mild', 'sarcasm', '||rightparen||', 'your', 'screening', 'process', 'is', 'getting', 'ever', 'more', 'rigorous', '||period||', '||return||', '||return||', 'elaine:', 'trying', 'to', 'meet', 'him', '||period||', "he's", 'never', 'at', 'the', 'video', 'store', '||period||', 'they', 'said', 'he', 'sets', 'his', 'own', 'hours', '||period||', '||return||', '||return||', 'player', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'little', 'help', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'tossing', 'the', 'ball', 'back', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'player:', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', 'to', 'jerry', '||rightparen||', 'oh', 'god', '||comma||', 'that', "guy's", 'terrible', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulling', 'on', 'a', 'jacket', '||rightparen||', 'mmm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'how', 'come', 'we', 'played', 'at', 'this', 'crummy', 'place', 'instead', 'of', 'your', 'club', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'used', 'up', 'all', 'my', 'guest', 'passes', 'already', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||return||', '||return||', 'player:', 'ahh', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||return||', '||return||', 'player:', 'thank', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tossing', 'the', 'ball', '||rightparen||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disbelief', '||rightparen||', 'milos', '||questionmark||', '||return||', '||return||', 'milos:', '||leftparen||', 'shock', '||rightparen||', 'oh', '||comma||', 'hey', '||period||', '||leftparen||', 'puts', 'sunglasses', 'back', 'on', '||rightparen||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'milos:', 'okay', '||comma||', 'we', 'should', 'uh', '||comma||', 'wrap', 'it', 'up', 'here', '||period||', '||return||', '||return||', 'elaine:', 'so', 'he', 'was', 'bad', '||period||', 'what', "d'you", 'care', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'i', 'paid', 'two', 'hundred', 'dollars', 'for', 'this', 'racquet', '||comma||', 'because', 'he', 'said', "it's", 'the', 'only', 'one', 'he', 'plays', 'with', '||period||', 'he', "could've", 'played', 'just', 'as', 'well', 'with', 'a', 'log', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'right', '||comma||', 'i', 'talked', 'to', 'this', 'lawyer', 'guy', '||comma||', 'shellbach', '||period||', 'now', '||comma||', "he's", 'gonna', 'set', 'me', 'up', '||comma||', 'but', 'you', 'gotta', 'come', 'with', 'me', 'and', 'be', 'the', 'executor', '||period||', '||return||', '||return||', 'elaine:', 'the', 'executor', '||questionmark||', 'of', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', 'wants', 'to', 'die', 'with', 'dignity', '||period||', '||return||', '||return||', 'elaine:', "there's", 'a', 'feather', 'in', 'your', 'cap', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'wanna', 'be', 'a', 'vegetable', '||comma||', 'elaine', '||period||', 'i', 'just', 'want', 'out', '||period||', '||leftparen||', 'snaps', 'fingers', '||rightparen||', '||return||', '||return||', 'george:', 'sometimes', 'in', 'life', '||comma||', 'the', 'gods', 'smile', 'upon', 'you', '||comma||', 'my', 'friends', '||period||', '||return||', '||return||', 'jerry:', "d'you", 'get', 'someone', 'to', 'take', 'that', 'canadian', 'quarter', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'another', 'meeting', 'with', 'reilly', '||period||', 'a', 'whole', 'new', 'audience', '||comma||', 'and', 'i', 'bet', 'i', 'can', 'get', 'him', 'to', 'try', 'that', 'line', 'again', '||period||', '||return||', '||return||', 'elaine:', "who's", 'reilly', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', 'was', 'scarfing', 'shrimp', 'at', 'this', 'meeting', '||comma||', 'and', 'this', 'guy', 'says', "'hey", '||comma||', 'george', '||comma||', 'the', 'ocean', 'called', '||period||', "they're", 'running', 'outta', 'shrimp', '||period||', "'", '||return||', '||return||', 'george:', 'listen', 'to', 'the', 'comeback', '||period||', '||leftparen||', 'pleased', '||rightparen||', "'oh", 'yeah', '||questionmark||', 'well', 'the', 'jerk', 'store', 'called', '||period||', "they're", 'running', 'outta', 'you', '||period||', "'", '||return||', '||return||', 'george:', '||leftparen||', 'worked', 'up', '||rightparen||', 'wha', '||period||', '||period||', '||period||', 'you', 'gotta', 'be', 'kidding', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'how', "'bout", 'this', 'one', '||questionmark||', 'how', "'bout", '||comma||', "'your", 'cranium', 'called', '||period||', "it's", 'got', 'some', 'space', 'to', 'rent', '||period||', "'", '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'confused', '||rightparen||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taps', "george's", 'chest', '||rightparen||', 'hey', '||comma||', 'here', 'you', 'go', '||period||', "'hey", '||comma||', 'reilly', '||period||', 'the', 'zoo', 'called', '||period||', "you're", 'due', 'back', 'by', 'six', '||period||', "'", '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "you're", 'not', 'helping', 'me', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'just', 'tell', 'him', 'you', 'had', 'sex', 'with', 'his', 'wife', '||period||', "that'll", 'kill', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', "i'm", 'not', 'looking', 'for', 'another', 'line', '||period||', 'i', 'got', 'the', 'line', '||period||', '||return||', '||return||', 'kramer:', 'look', '||comma||', 'george', '||comma||', 'just', 'think', 'about', 'it', '||period||', 'you', 'know', '||comma||', "you're", 'married', '||comma||', 'how', 'would', 'you', 'feel', 'if', 'somebody', 'says', 'to', 'you', 'that', 'they', 'just', 'had', 'se', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'really', 'animated', '||rightparen||', 'alright', '||comma||', 'alright', '||period||', 'you', 'see', '||questionmark||', 'this', 'is', 'why', 'i', 'hate', 'writing', 'with', 'a', 'large', 'group', '||period||', 'everybody', 'has', 'their', 'own', 'little', 'opinions', '||comma||', 'and', 'it', 'all', 'gets', 'homogenised', '||comma||', 'and', 'you', 'lose', 'the', 'whole', 'edge', 'of', 'it', '||period||', "i'm", 'going', 'with', 'jerk', 'store', '||exclammark||', 'jerk', 'store', 'is', 'the', 'line', '||exclammark||', 'jerk', 'store', '||exclammark||', 'yess', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'picking', 'the', 'racquet', 'up', '||rightparen||', 'did', 'you', 'take', 'this', 'out', 'of', 'the', 'garbage', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'still', 'got', 'some', 'spring', 'in', 'the', 'strings', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'jerry', '||comma||', 'this', 'is', 'a', 'piece', 'of', 'junk', '||period||', '||leftparen||', 'drops', 'racquet', 'in', 'the', 'trash', '||rightparen||', 'how', 'are', 'you', 'gonna', 'be', 'the', 'executor', 'of', 'my', 'living', 'will', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'indicating', '||rightparen||', 'you', 'see', '||questionmark||', 'you', "can't", 'let', 'go', '||period||', '||return||', '||return||', 'jerry:', 'trust', 'me', '||comma||', 'kramer', '||period||', 'given', 'the', 'legal', 'opportunity', '||comma||', 'i', 'will', 'kill', 'you', '||period||', '||return||', '||return||', 'kramer:', 'i', 'wish', 'i', 'could', 'believe', 'you', '||period||', 'hey', '||comma||', 'elaine', '||comma||', 'do', 'you', 'have', 'some', 'free', 'time', 'tomorrow', 'afternoon', '||questionmark||', '||return||', '||return||', 'elaine:', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'because', "you're", 'perfect', '||period||', "you're", 'a', 'calculating', '||comma||', 'cold', '||dash||', 'hearted', 'businesswoman', '||period||', 'and', 'when', "there's", 'dirty', 'work', 'to', 'be', 'done', '||comma||', 'you', "don't", 'mind', 'stomping', 'on', 'a', 'few', 'throats', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||comma||', 'flattered', '||rightparen||', 'oh', '||comma||', 'ho', '||comma||', "c'mon", '||period||', '||return||', '||return||', 'shellbach:', 'situation', 'number', 'four', '||period||', "you're", 'breathing', 'on', 'your', 'own', '||comma||', "you're", 'conscious', '||comma||', 'but', 'with', 'no', 'muscular', 'function', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'would', 'i', 'be', 'able', 'to', 'communicate', '||questionmark||', '||return||', '||return||', 'shellbach:', 'i', "don't", 'see', 'how', '||period||', '||return||', '||return||', 'elaine:', 'ach', '||comma||', 'i', "don't", 'like', 'the', 'sound', 'of', 'this', 'one', '||period||', '||return||', '||return||', 'kramer:', 'huhh', '||comma||', 'yeah', '||comma||', "let's", 'pull', 'the', 'cord', '||period||', '||return||', '||return||', 'elaine:', 'yank', 'it', 'like', '||leftparen||', 'pops', 'open', 'soda', 'can', '||rightparen||', "you're", 'starting', 'a', 'mower', '||period||', '||return||', '||return||', 'shellbach:', 'moving', 'on', '||period||', 'you', 'have', 'liver', '||comma||', 'kidneys', 'and', 'gall', 'bladder', '||comma||', 'but', 'no', 'central', 'nervous', 'system', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'gotta', 'have', 'a', 'central', 'nervous', 'system', '||period||', '||return||', '||return||', 'shellbach:', 'okay', '||period||', 'one', 'lung', '||comma||', 'blind', 'and', "you're", 'eating', 'through', 'a', 'tube', '||period||', '||return||', '||return||', 'kramer:', 'naw', '||comma||', "that's", 'not', 'my', 'style', '||period||', '||return||', '||return||', 'elaine:', 'bore', '||dash||', 'ing', '||period||', '||return||', '||return||', 'shellbach:', 'alright', '||comma||', 'you', 'can', 'eat', '||period||', 'but', 'machines', 'do', 'everything', 'else', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'hesitant', '||rightparen||', 'uhm', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "i'd", 'stick', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'stick', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', "'cos", 'i', 'could', 'still', 'go', 'to', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'points', 'to', 'kramer', 'and', 'smiles', 'in', 'agreement', '||rightparen||', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'milos', '||period||', '||return||', '||return||', 'milos:', 'jerry', '||comma||', 'thank', 'god', 'you', 'got', 'my', 'message', '||period||', 'thank', 'you', 'so', 'much', 'for', 'coming', 'down', 'here', '||period||', 'uhm', '||comma||', 'listen', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'animated', '||rightparen||', 'you', 'know', '||comma||', 'i', 'spent', 'two', 'hundred', 'dollars', 'on', 'a', 'racquet', 'because', 'i', 'thought', 'you', 'knew', 'what', 'you', 'were', 'talking', 'about', '||period||', '||return||', '||return||', 'milos:', 'i', '||period||', '||period||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'even', 'play', '||period||', '||return||', '||return||', 'milos:', 'believe', 'me', '||comma||', 'it', 'is', 'milos', 'great', 'shame', '||period||', 'but', 'jerry', '||comma||', 'i', 'could', 'lose', 'my', 'business', 'if', 'anybody', 'find', 'out', '||period||', 'how', 'would', 'you', 'like', 'extra', 'year', 'membership', 'of', 'the', 'club', '||questionmark||', 'free', '||period||', 'no', 'charge', '||period||', '||return||', '||return||', 'jerry:', 'you', 'could', 'do', 'that', '||questionmark||', '||return||', '||return||', 'milos:', 'jerry', '||comma||', 'for', 'you', '||comma||', 'anything', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'indicating', 'the', 'woman', '||rightparen||', 'game', '||comma||', 'set', 'and', 'match', '||comma||', 'huh', 'milos', '||questionmark||', '||return||', '||return||', 'milos:', '||leftparen||', 'apologetic', '||rightparen||', 'hah', '||comma||', 'jerry', '||comma||', 'i', 'am', 'so', 'sorry', '||period||', 'they', 'tell', 'me', 'there', 'is', 'no', 'way', 'they', 'can', 'do', 'it', '||period||', '||leftparen||', 'meek', '||rightparen||', 'is', 'there', 'anything', 'else', 'i', 'can', 'do', 'for', 'you', '||questionmark||', 'anything', 'at', 'all', '||period||', 'i', 'refund', 'your', 'money', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'animated', '||rightparen||', 'you', 'know', 'what', 'milos', '||comma||', 'i', "don't", 'even', 'care', 'about', 'the', 'money', '||period||', 'i', 'just', 'feel', 'like', 'i', 'was', 'taken', 'by', 'the', 'worst', 'tennis', 'player', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'milos:', 'shhh', '||dash||', 'shhh', '||period||', '||leftparen||', 'whispers', '||rightparen||', 'i', 'make', 'it', 'up', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doubtful', '||rightparen||', 'yeah', '||comma||', "you'll", 'make', 'it', 'up', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'tennis', '||comma||', 'anyone', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'this', 'is', 'the', 'one', 'vincent', 'told', 'me', 'about', '||period||', 'the', 'pain', 'and', 'the', 'yearning', '||period||', '||leftparen||', 'reads', 'from', 'the', 'box', '||rightparen||', "'an", 'old', 'woman', 'experiences', 'pain', 'and', 'yearning', '||period||', "'", 'a', 'hundred', 'and', 'ninety', '||dash||', 'two', 'minutes', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'a', 'lotta', 'yearning', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'these', 'movies', 'are', 'great', '||comma||', 'but', "they're", 'just', 'so', 'emotionally', 'exhausting', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'what', 'you', 'need', 'is', 'some', 'summertime', 'adolescent', 'high', 'jinx', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', "'gene'", 'rack', '||rightparen||', 'see', 'what', 'doctor', 'gene', 'prescribes', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'pulls', 'down', 'a', 'cassette', '||rightparen||', 'oh', '||comma||', 'here', '||comma||', 'look', 'at', 'that', '||period||', 'weekend', 'at', 'bernies', 'two', '||period||', 'now', '||comma||', "that's", 'an', 'hilarious', 'premise', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughs', '||rightparen||', 'huh', '||period||', '||leftparen||', 'looks', 'from', 'tape', 'to', 'tape', '||rightparen||', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'taps', 'the', 'weekend', 'at', "bernie's", 'ii', 'box', '||rightparen||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'could', 'use', 'a', 'chuckle', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'approving', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "what're", 'you', 'getting', '||questionmark||', '||return||', '||return||', 'kramer:', 'nothing', '||comma||', "i'm", 'gonna', 'finish', 'watching', 'the', 'other', 'side', 'of', 'darkness', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'how', 'much', 'you', 'got', 'left', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'about', 'two', 'hours', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'she', 'shot', 'in', 'that', 'coma', 'pretty', 'quick', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'at', 'tv', 'screen', '||rightparen||', 'bernie', 'is', 'dead', '||comma||', 'you', 'moron', '||exclammark||', '||leftparen||', 'frustration', '||rightparen||', 'just', 'because', "he's", 'wearing', 'sunglasses', 'he', 'looks', 'alive', '||questionmark||', '||exclammark||', '||leftparen||', 'picks', 'up', 'video', 'box', '||rightparen||', 'ugh', '||comma||', 'how', 'long', 'is', 'this', 'weekend', '||comma||', 'anyway', '||questionmark||', '||leftparen||', 'reads', 'from', 'label', '||rightparen||', 'ugh', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'accusing', '||rightparen||', "how's", 'the', 'movie', '||period||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'vincent', '||questionmark||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'betrayed', '||rightparen||', 'the', 'gene', 'pick', '||period||', 'how', 'could', 'you', '||questionmark||', 'i', 'thought', 'we', 'had', 'something', 'special', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'defensive', '||rightparen||', 'no', '||comma||', 'it', "doesn't", 'mean', 'anything', '||period||', "i'm", 'not', 'even', 'gonna', 'rewind', 'it', '||period||', '||return||', '||return||', 'elaine:', 'vincent', '||questionmark||', '||return||', '||return||', 'fred:', 'alright', '||comma||', "let's", 'get', 'to', 'it', '||period||', '||return||', '||return||', 'george:', 'wha', '||period||', '||period||', 'wait', 'a', 'minute', '||comma||', 'wha', '||period||', '||period||', 'what', 'about', 'reilly', '||questionmark||', '||return||', '||return||', 'fred:', 'reilly', "doesn't", 'work', 'here', 'any', 'more', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'surprise', '||rightparen||', 'what', '||questionmark||', 'i', '||period||', '||period||', 'i', "didn't", 'hear', 'about', 'that', '||period||', '||return||', '||return||', 'fred:', 'oh', '||comma||', 'we', 'only', 'wake', 'you', 'up', 'for', 'the', 'important', 'meetings', '||period||', '||return||', '||return||', 'patty:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', "didn't", 'i', 'see', 'you', 'at', 'the', 'pro', 'shop', 'yesterday', '||questionmark||', '||return||', '||return||', 'patty:', 'i', 'think', 'so', '||period||', "i'm", 'patty', '||period||', 'milos', 'gave', 'me', 'your', 'address', '||period||', 'i', 'hope', 'you', "don't", 'mind', 'me', 'waiting', 'for', 'you', 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'hoh', '||comma||', 'that', 'milos', '||period||', '||leftparen||', 'to', 'patty', '||rightparen||', 'well', 'uh', '||comma||', 'what', 'shall', 'we', 'do', '||comma||', 'uhm', '||comma||', 'care', 'for', 'a', 'cup', 'of', 'coffee', '||questionmark||', '||return||', '||return||', 'patty:', 'why', "don't", 'we', 'just', 'go', 'up', 'to', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surprised', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'gotta', 'be', 'an', 'easier', 'way', '||period||', '||return||', '||return||', 'nurse', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'doctor', '||comma||', "how's", 'her', 'coma', '||questionmark||', '||return||', '||return||', 'doctor', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'oh', '||comma||', 'exactly', 'the', 'same', '||period||', '||return||', '||return||', 'doctor', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'wait', 'a', 'minute', '||comma||', "she's", 'coming', 'out', 'of', 'the', 'coma', '||period||', '||return||', '||return||', 'doctor', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'mrs', 'allbright', '||comma||', 'can', 'you', 'hear', 'me', '||questionmark||', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'allbright', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'bright', 'and', 'cheerful', '||rightparen||', 'i', 'feel', 'so', 'rested', 'and', 'refreshed', '||period||', 'get', 'me', 'a', 'toothbrush', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'play', 'tennis', '||questionmark||', '||return||', '||return||', 'patty:', '||leftparen||', 'putting', 'the', 'glass', 'down', 'on', 'the', 'counter', '||rightparen||', 'enough', 'talk', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'not', 'for', 'me', '||comma||', 'i', 'love', 'chatting', '||period||', '||return||', '||return||', 'patty:', '||leftparen||', 'putting', 'her', 'hand', 'to', "jerry's", 'face', '||rightparen||', 'shh', '||period||', '||return||', '||return||', 'patty:', '||leftparen||', 'anguished', '||rightparen||', 'no', '||exclammark||', 'no', '||comma||', 'i', "can't", 'do', 'this', '||period||', '||leftparen||', 'moving', 'away', '||rightparen||', 'i', "can't", 'go', 'through', 'with', 'it', '||period||', '||leftparen||', 'sitting', 'on', 'the', 'couch', '||rightparen||', 'not', 'even', 'for', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'patty:', '||leftparen||', 'cries', '||rightparen||', 'milos', '||period||', 'my', 'husband', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', '||rightparen||', 'your', 'husband', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'concerned', 'was', 'he', '||comma||', 'that', 'word', 'of', 'his', 'poor', 'tennis', 'skills', 'might', 'leak', 'out', '||comma||', 'he', 'chose', 'to', 'offer', 'you', 'his', 'wife', 'as', 'some', 'sort', 'of', 'mediaeval', 'sexual', 'payola', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'explanation', '||rightparen||', "he's", 'new', 'around', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hopeful', '||rightparen||', 'so', '||comma||', 'details', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'away', '||rightparen||', 'well', '||comma||', 'i', "didn't", 'sleep', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'because', 'of', 'society', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'weary', '||rightparen||', 'yes', '||comma||', 'george', '||comma||', 'because', 'of', 'society', '||period||', 'so', 'how', 'did', 'the', 'big', 'meeting', 'turn', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'reilly', 'is', 'no', 'longer', 'with', 'the', 'club', '||period||', '||leftparen||', 'getting', 'up', '||rightparen||', 'you', 'believe', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "you're", 'better', 'off', '||period||', 'now', 'you', 'can', 'just', 'let', 'it', 'go', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "i'm", 'gonna', 'let', 'it', 'go', '||period||', '||return||', '||return||', 'jerry:', 'you', 'never', 'really', 'had', 'the', 'right', 'comeback', '||comma||', 'anyway', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', 'are', 'you', 'insane', '||questionmark||', 'jerk', 'store', '||comma||', 'woulda', 'smoked', 'that', 'guy', '||exclammark||', 'smoked', 'him', '||comma||', 'i', 'say', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'oh', '||comma||', 'jerry', '||comma||', 'listen', 'uh', '||comma||', 'you', 'know', '||comma||', 'i', 'saw', 'the', 'rest', 'of', 'that', 'movie', '||comma||', 'the', 'other', 'side', 'of', 'darkness', '||questionmark||', 'the', 'coma', 'lady', 'wakes', 'up', 'at', 'the', 'end', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frustrated', '||rightparen||', 'ohh', '||comma||', 'i', 'wanted', 'to', 'see', 'that', '||period||', '||leftparen||', 'waves', 'his', 'arms', 'in', 'frustration', '||rightparen||', 'thanks', '||period||', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'kramer:', 'i', "didn't", 'know', 'it', 'was', 'possible', 'to', 'come', 'out', 'of', 'a', 'coma', '||period||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'know', 'it', 'was', 'possible', 'not', 'to', 'know', 'that', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'from', 'bathroom', '||rightparen||', 'how', 'was', 'eric', 'roberts', 'as', 'the', 'husband', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouting', 'back', '||rightparen||', 'oh', '||comma||', 'unforgettable', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'disappointed', '||rightparen||', 'oww', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'nervous', '||rightparen||', 'i', 'gotta', 'find', 'elaine', '||period||', "y'know", '||comma||', "she's", 'gonna', 'pull', 'my', 'plug', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'betrayed', '||questionmark||', 'oh', '||comma||', 'vincent', '||comma||', "i'm", 'so', 'sorry', '||period||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'listen', '||comma||', 'uh', '||comma||', 'elaine', '||comma||', "i've", 'changed', 'my', 'mind', 'about', 'the', 'whole', 'coma', 'thing', '||period||', '||leftparen||', 'positive', '||rightparen||', 'yeah', '||comma||', 'i', 'decided', "i'm", 'up', 'for', 'it', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'do', 'you', 'have', 'any', 'idea', 'what', "you've", 'done', '||questionmark||', '||return||', '||return||', 'manager:', 'excuse', 'me', '||period||', '||return||', '||return||', 'elaine:', "what're", 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'wha', '||period||', '||period||', 'wha', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'manager:', 'vincent', 'stopped', 'making', 'picks', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'upset', '||rightparen||', 'well', '||comma||', 'how', 'am', 'i', 'gonna', 'know', 'what', 'movies', 'to', 'see', '||questionmark||', '||return||', '||return||', 'manager:', 'we', 'have', 'a', 'wide', 'variety', 'of', 'gene', 'picks', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dismissive', '||rightparen||', "gene's", 'trash', '||period||', '||return||', '||return||', 'manager:', "i'm", 'gene', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'forcing', 'a', 'smile', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'milos', '||comma||', 'i', 'can', 'assure', 'you', '||comma||', 'i', 'had', 'no', 'intention', 'of', 'telling', 'anyone', 'about', 'your', 'unbelievably', 'bad', 'tennis', 'playing', '||period||', '||return||', '||return||', 'milos:', '||leftparen||', 'not', 'cheered', '||rightparen||', 'thank', 'you', '||comma||', 'but', '||comma||', 'unfortunately', '||comma||', 'i', 'have', 'much', 'larger', 'problems', 'to', 'fry', '||period||', 'my', 'wife', '||comma||', 'she', 'has', 'no', 'respect', 'for', 'milos', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', "that's", 'a', 'risk', 'you', 'run', 'when', 'you', 'dabble', 'in', 'the', 'flesh', 'trade', '||period||', '||return||', '||return||', 'milos:', 'patty', '||comma||', 'she', '||comma||', 'she', 'loves', 'tennis', '||comma||', 'as', 'much', 'like', 'i', 'do', '||period||', '||leftparen||', 'hopeful', '||rightparen||', 'wou', '||period||', '||period||', 'would', 'you', '||comma||', 'wi', '||period||', '||period||', 'will', 'you', 'let', 'me', 'beat', 'you', 'in', 'tennis', '||questionmark||', 'that', 'is', 'the', 'only', 'way', 'i', 'can', 'show', 'her', 'i', 'am', 'still', 'a', 'man', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reluctant', '||rightparen||', 'well', '||comma||', "i'll", 'do', 'it', 'as', 'long', 'as', "there's", 'no', 'other', 'girls', 'around', '||period||', 'i', 'mean', '||comma||', 'i', 'wanna', 'be', 'a', 'man', 'too', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'hurt', "vincent's", 'feelings', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'handing', 'jerry', 'an', 'envelope', '||rightparen||', 'look', 'what', 'came', 'in', 'the', 'mail', 'today', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'the', 'envelope', '||rightparen||', 'wh', '||period||', '||period||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'the', 'play', 'button', '||comma||', 'off', 'his', 'vcr', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'examining', 'the', 'button', '||rightparen||', 'boy', '||comma||', 'look', 'how', 'far', 'back', 'it', 'goes', '||period||', "it's", 'like', 'a', 'tooth', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sitting', '||rightparen||', 'so', '||comma||', 'guess', 'where', 'mr', "'ocean", "phoned'", 'turned', 'up', '||questionmark||', "he's", 'working', 'for', 'firestone', '||comma||', 'in', 'akron', '||comma||', 'ohio', '||period||', '||return||', '||return||', 'elaine:', 'ohio', '||questionmark||', '||return||', '||return||', 'george:', 'yep', '||period||', "i'm", 'leaving', 'first', 'thing', 'tomorrow', 'morning', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nonplused', '||rightparen||', "you're", 'flying', 'to', 'akron', '||comma||', 'just', 'to', 'zing', 'a', 'guy', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'you', 'understand', '||questionmark||', "it's", 'not', 'about', 'him', '||period||', 'to', 'have', 'a', 'line', 'as', 'perfect', 'as', "'jerk", "store'", 'and', 'to', 'never', 'use', 'it', '||period||', 'i', '||comma||', 'i', "couldn't", 'live', 'with', 'myself', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'there', 'are', 'no', 'jerk', 'stores', '||period||', 'it', '||period||', '||period||', "it's", 'just', 'a', 'little', 'confusing', '||comma||', 'is', 'all', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'adamant', '||rightparen||', "it's", 'smart', '||period||', "it's", 'a', 'smart', 'line', '||comma||', 'and', 'a', 'smart', 'crowd', 'will', 'appreciate', 'it', '||period||', '||leftparen||', 'shouting', '||rightparen||', 'and', '||comma||', "i'm", 'not', 'gonna', 'dumb', 'it', 'down', 'for', 'some', 'bonehead', 'mass', 'audience', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'waving', 'apologetically', '||rightparen||', 'not', 'you', '||period||', '||return||', '||return||', 'old', 'woman', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'oh', '||comma||', 'brittle', 'bones', '||period||', 'how', 'i', 'long', 'to', 'be', 'rid', 'of', 'the', 'pain', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||period||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'elaine', '||questionmark||', "it's", 'vincent', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'surprised', '||rightparen||', 'vincent', '||period||', '||leftparen||', 'pleading', '||rightparen||', 'where', 'are', 'you', '||questionmark||', 'i', 'have', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'no', '||period||', 'i', "can't", 'bear', 'to', 'have', 'anyone', 'see', 'me', '||period||', '||return||', '||return||', 'elaine:', 'vincent', '||comma||', 'listen', '||comma||', 'i', "won't", 'judge', 'you', 'the', 'way', 'everyone', 'else', 'does', '||period||', "you're", '||comma||', "you're", 'strange', 'and', 'beautiful', '||comma||', 'and', 'sensitive', '||period||', '||leftparen||', 'blunter', '||rightparen||', 'now', '||comma||', "let's", 'have', 'a', 'look', 'at', 'you', '||period||', '||return||', '||return||', 'vincent', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'relenting', '||rightparen||', 'alright', '||comma||', 'but', '||comma||', 'can', 'you', 'bring', 'me', 'few', 'things', 'from', 'the', 'store', '||questionmark||', 'i', "haven't", 'been', 'out', 'in', 'a', 'while', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'indicating', 'that', 'cars', 'should', 'pass', 'him', '||rightparen||', 'well', '||comma||', 'go', 'around', '||comma||', 'you', 'bunch', 'of', 'crazies', '||period||', 'you', 'maniacs', 'are', 'gonna', 'get', 'us', 'all', 'killed', '||period||', '||return||', '||return||', 'secretary:', 'hi', '||comma||', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', "i'm", 'cosmo', 'kramer', '||period||', 'yeah', '||comma||', 'i', 'had', 'an', 'appointment', 'to', 'annul', 'my', 'living', 'will', '||period||', '||return||', '||return||', 'secretary:', 'oh', '||period||', '||leftparen||', 'looks', 'at', 'her', 'watch', '||rightparen||', 'mr', 'kramer', '||comma||', 'you', 'had', 'a', 'ten', '||dash||', 'thirty', 'appointment', '||period||', "it's", 'two', "o'clock", '||period||', 'mr', 'shellbach', 'had', 'a', 'tennis', 'lesson', '||period||', "he's", 'gone', 'for', 'the', 'day', '||period||', '||return||', '||return||', 'jerry:', 'too', 'good', '||period||', '||return||', '||return||', 'milos:', '||leftparen||', 'triumphant', 'shout', '||rightparen||', 'another', 'game', 'for', 'milos', '||exclammark||', '||exclammark||', 'hahaha', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'on', 'fire', 'today', '||period||', '||return||', '||return||', 'milos:', '||leftparen||', 'shouting', 'over', '||rightparen||', 'hey', 'patty', '||period||', 'look', 'at', 'this', 'guy', '||period||', "he's", 'awful', '||exclammark||', '||return||', '||return||', 'milos:', '||leftparen||', 'milking', 'it', '||rightparen||', "he's", 'not', 'a', 'man', '||comma||', 'this', 'jerry', '||period||', "he's", 'not', 'even', 'married', 'like', 'i', 'am', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'huhuhuhu', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', '||rightparen||', 'hey', '||comma||', 'uh', '||comma||', 'milos', '||comma||', 'i', "don't", 'mind', 'rolling', 'over', 'here', '||comma||', 'but', 'could', 'you', 'lighten', 'up', 'on', 'the', "'not", 'a', "man'", 'stuff', '||questionmark||', '||return||', '||return||', 'milos:', '||leftparen||', 'shouting', '||rightparen||', 'hey', 'everybody', '||comma||', 'look', '||exclammark||', 'the', 'little', 'chicken', 'girl', 'wants', 'me', 'to', 'ease', 'up', '||period||', 'he', "can't", 'handle', 'this', '||comma||', 'so', 'he', 'cries', 'like', 'a', 'woman', '||exclammark||', '||leftparen||', 'laughs', 'evilly', '||rightparen||', 'hahaha', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||questionmark||', 'vincent', '||questionmark||', '||return||', '||return||', 'vincent:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'what', 'you', 'asked', '||period||', '||return||', '||return||', 'vincent:', 'just', '||comma||', 'leave', 'it', 'and', 'go', '||period||', '||return||', '||return||', 'elaine:', 'w', '||period||', '||period||', 'well', '||comma||', "can't", 'i', 'come', 'in', '||questionmark||', '||return||', '||return||', 'vincent:', 'no', '||period||', 'go', 'away', '||period||', 'now', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pleading', '||rightparen||', 'no', '||comma||', 'no', '||period||', 'vincent', '||comma||', 'i', '||period||', '||period||', '||period||', "don't", 'shut', 'me', 'out', '||period||', '||leftparen||', 'beseeching', '||rightparen||', 'i', 'just', '||comma||', 'i', 'know', 'you', 'feel', 'what', 'i', 'feel', '||period||', '||return||', '||return||', 'woman:', 'excuse', 'me', '||period||', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'vincent:', 'aw', '||comma||', 'dammit', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', '||rightparen||', 'uh', '||comma||', 'uhm', '||comma||', "i'm", '||comma||', "i'm", 'here', 'to', 'see', 'vincent', '||period||', '||return||', '||return||', 'woman:', 'well', '||comma||', "i'm", 'his', 'mother', '||period||', '||leftparen||', 'stern', '||rightparen||', 'vincent', '||comma||', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'vincent:', '||leftparen||', 'shrieks', '||rightparen||', 'no', '||comma||', 'my', 'acne', '||exclammark||', '||return||', '||return||', 'elaine:', 'ahh', '||dash||', 'cnee', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'regarding', 'the', 'grocery', 'bag', '||rightparen||', 'what', "d'you", 'have', 'here', '||questionmark||', '||return||', '||return||', 'woman:', '||leftparen||', 'disapproving', '||rightparen||', 'vodka', '||comma||', 'cigarettes', '||comma||', 'fireworks', '||period||', '||leftparen||', 'accusing', '||rightparen||', 'what', 'kind', 'of', 'a', 'sick', 'woman', 'brings', 'this', 'to', 'a', 'fifteen', 'year', 'old', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sick', 'smile', '||rightparen||', 'we', 'have', 'the', 'same', 'taste', 'in', 'movies', '||period||', '||return||', '||return||', 'woman:', 'did', 'he', 'send', 'you', 'part', 'of', 'our', 'vcr', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'entering', 'the', 'apartment', '||rightparen||', 'vincent', '||exclammark||', '||return||', '||return||', 'milos:', '||leftparen||', 'pointing', 'and', 'shouting', '||rightparen||', 'look', 'at', 'the', 'big', 'baby', '||exclammark||', '||leftparen||', 'laughter', '||rightparen||', 'hehaha', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'big', 'baby', '||comma||', 'are', 'you', 'wetting', 'yourself', '||questionmark||', 'maybe', 'it', 'is', 'time', 'for', 'you', 'to', 'be', 'changed', '||period||', '||leftparen||', 'laughter', '||rightparen||', 'hahah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quietly', '||rightparen||', 'i', 'told', 'you', 'to', 'cut', 'it', 'out', '||period||', '||return||', '||return||', 'milos:', '||leftparen||', 'quietly', '||comma||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', "c'mon", '||comma||', "what're", 'you', 'doing', '||questionmark||', '||leftparen||', 'to', 'his', 'audience', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'waving', '||rightparen||', 'shellbach', '||period||', '||return||', '||return||', 'kramer:', 'racquet', '||period||', '||return||', '||return||', 'reilly:', 'so', '||comma||', 'george', '||period||', "you're", 'proposing', 'a', 'snow', 'tyre', 'day', 'at', 'yankee', 'stadium', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'through', 'a', 'mouthful', '||rightparen||', 'long', 'as', 'they', "don't", 'throw', "'em", 'on', 'the', 'field', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'huhu', '||period||', '||leftparen||', 'indicating', 'dish', '||rightparen||', 'help', 'yourself', 'to', 'some', 'shrimp', '||comma||', 'i', 'brought', 'enough', 'for', 'everybody', '||period||', '||return||', '||return||', 'mcadam:', '||leftparen||', 'doubtful', '||rightparen||', 'i', 'have', 'to', 'say', 'this', '||comma||', 'this', 'proposal', "doesn't", 'make', 'a', 'whole', 'lot', 'of', 'sense', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'never', 'know', '||period||', '||leftparen||', 'picks', 'up', 'more', 'shrimp', '||rightparen||', "let's", 'see', 'how', 'many', 'i', 'can', 'fit', 'in', 'my', 'mouth', '||period||', '||return||', '||return||', 'reilly:', '||leftparen||', 'leaning', 'forward', '||rightparen||', 'you', 'know', '||comma||', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'reilly:', 'the', 'ocean', 'called', '||period||', "they're", 'running', 'outta', 'shrimp', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', '||rightparen||', 'oh', 'yeah', '||comma||', 'reilly', '||questionmark||', '||leftparen||', 'smugly', '||rightparen||', 'well', '||comma||', 'the', 'jerk', 'store', 'called', '||period||', "they're", 'running', 'outta', 'you', '||return||', '||return||', 'reilly:', '||leftparen||', 'unperturbed', '||rightparen||', "what's", 'the', 'difference', '||questionmark||', "you're", 'their', 'all', '||dash||', 'time', 'best', 'seller', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', 'well', '||comma||', 'i', 'had', 'sex', 'with', 'your', 'wife', '||period||', '||return||', '||return||', 'mcadam:', 'his', 'wife', 'is', 'in', 'a', 'coma', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hi', '||period||', '||leftparen||', 'indicating', 'kramer', '||rightparen||', "how's", 'he', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'been', 'sleeping', 'a', 'lot', '||period||', "he's", 'still', 'groggy', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||leftparen||', 'puts', 'the', 'vcr', 'down', '||rightparen||', 'i', 'thought', 'a', 'movie', 'might', 'cheer', 'him', 'up', '||period||', 'i', 'got', 'him', 'a', 'gene', 'pick', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'vincent', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'evasive', '||rightparen||', "i'm", 'kinda', 'off', 'of', 'him', '||period||', '||leftparen||', 'looking', 'around', '||rightparen||', 'uh', '||comma||', 'outlet', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'screaming', '||rightparen||', 'waahhh', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'george:', "'my", "wife's", 'in', 'a', 'coma', '||period||', "'", 'yeah', '||questionmark||', 'well', '||comma||', 'the', 'life', 'support', 'machine', 'called', 'and', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouts', '||rightparen||', 'wait', '||exclammark||', 'yes', '||exclammark||', "that's", 'what', 'i', "should've", 'said', '||exclammark||', '||leftparen||', 'frustration', '||rightparen||', "d'ohh", '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'cocky', 'laughter', '||rightparen||', 'huh', 'haha', '||exclammark||', '||leftparen||', 'shouts', '||rightparen||', "you're", 'meat', '||comma||', 'reilly', '||exclammark||', 'you', 'just', 'screwed', 'yourself', '||exclammark||', '||leftparen||', 'laughter', '||rightparen||', 'ha', 'ha', '||exclammark||', '||return||', '||return||', '[setting:', 'a', 'restaurant]', '||return||', '||return||', 'ellen:', 'so', '||comma||', 'they', 'have', 'this', 'clock', 'now', '||comma||', 'where', 'you', 'punch', 'in', 'your', 'age', '||comma||', 'and', 'all', 'your', 'risk', 'factors', '||period||', 'it', 'actually', 'counts', 'down', 'how', 'much', 'time', 'you', 'have', 'left', 'to', 'live', '||period||', '||return||', '||return||', 'jerry:', 'so', "what's", 'the', 'great', 'moment', '||questionmark||', "you're", 'on', 'your', 'death', 'bed', '||comma||', "they're", 'pounding', 'on', 'your', 'chest', '||dash||', 'and', "you're", 'going', '10', '||comma||', '9', '||comma||', '8', '||comma||', '||period||', '||period||', 'i', 'told', 'you', 'this', 'thing', 'was', 'good', '||exclammark||', '||return||', '||return||', 'ellen:', '||leftparen||', 'laughs', '||rightparen||', 'i', "can't", 'believe', 'this', 'is', 'our', 'first', 'date', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', '||period||', 'how', 'about', 'dessert', '||questionmark||', '||return||', '||return||', 'ellen:', 'i', 'suppose', 'i', 'have', 'to', 'get', 'a', 'piece', 'of', 'cake', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'ellen:', "today's", 'my', 'birthday', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'today', '||questionmark||', 'really', '||questionmark||', '||return||', '||return||', 'ellen:', 'yeah', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'so', '||comma||', 'she', 'went', 'out', 'with', 'you', 'on', 'a', 'first', 'date', '||period||', '||period||', 'and', 'it', 'was', 'her', 'birthday', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'and', 'she', 'picked', 'the', 'day', '||exclammark||', '||return||', '||return||', 'george:', 'is', 'she', 'socially', 'awkward', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "she's", 'great', '||exclammark||', "she's", '||period||', '||period||', 'attractive', '||comma||', "she's", 'fun', '||period||', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'maybe', 'she', 'decided', 'to', 'celebrate', 'her', 'birthday', 'on', 'the', 'monday', 'after', 'the', 'weekend', '||period||', '||return||', '||return||', 'jerry:', "she's", 'not', 'lincoln', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'anybody', 'up', 'for', "lorenzo's", 'pizza', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'pass', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||questionmark||', 'huh', '||period||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', 'hey', '||comma||', 'george', '||exclammark||', 'pizza', '||questionmark||', 'yum', '||comma||', 'yum', '||exclammark||', '||return||', '||return||', 'george:', 'eh', '||comma||', 'i', "can't", '||period||', 'i', 'gotta', 'go', 'down', 'to', 'the', 'foundation', '||period||', "i'm", 'interviewing', 'high', 'schoolers', 'for', 'the', 'susan', 'ross', '||period||', '||period||', 'scholarship', '||period||', '||return||', '||return||', 'jerry:', 'does', 'it', 'ever', 'bother', 'you', 'that', 'this', 'organization', '||dash||', '||return||', '||return||', 'george:', 'nope', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'beating', 'the', 'bushes', '||dash||', '||return||', '||return||', 'george:', 'nope', '||exclammark||', '||leftparen||', 'starts', 'heading', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'to', 'basically', 'give', 'this', 'money', 'away', '||dash||', '||return||', '||return||', 'george:', 'noo', '||exclammark||', '||return||', '||return||', 'jerry:', 'to', 'virtually', 'anyone', '||comma||', 'as', 'long', 'as', "they're", 'not', 'you', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', 'in', 'the', 'doorway', '||rightparen||', "i'm", 'fine', 'with', 'it', '||exclammark||', 'fi', '||dash||', 'hi', '||dash||', 'hi', '||dash||', 'hine', 'i', 'say', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'susan', 'ross', 'foundation', 'conference', 'room]', '||return||', '||return||', 'student', '1:', 'and', 'then', 'i', 'received', 'a', '740', 'on', 'the', 'english', 'achievement', 'test', '||period||', '||leftparen||', 'george', 'looks', 'bored', '||rightparen||', '||return||', '||return||', 'george:', 'quick', '||comma||', "what's", 'your', 'favorite', 'animal', '||questionmark||', '||return||', '||return||', 'student', '1:', 'i', '||period||', '||period||', 'i', "don't", 'know', '||period||', '||period||', 'frog', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'disappointed', '||rightparen||', 'a', 'frog', '||questionmark||', '||return||', '||return||', 'student', '1:', 'well', '||comma||', 'i', '||period||', '||period||', 'i', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', 'frog', 'is', 'wrong', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'reading', '||rightparen||', 'i', 'see', 'here', 'that', 'you', 'play', 'the', 'harp', '||period||', '||period||', 'tell', 'me', '||comma||', 'why', 'do', 'you', 'have', 'to', 'tilt', 'it', '||questionmark||', "can't", 'you', 'just', 'build', 'it', 'on', 'an', 'angle', '||questionmark||', "it'd", 'save', 'you', 'a', 'lot', 'of', 'trouble', '||period||', '||return||', '||return||', 'student', '2:', 'well', '||comma||', 'the', 'modern', '||dash||', 'day', 'harp', 'has', 'been', 'refined', 'over', 'thousands', 'of', 'years', '||dash||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', "we'll", '||comma||', 'uh', '||comma||', 'let', 'you', 'know', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'reading', '||rightparen||', 'i', 'see', 'your', 'g', '||period||', 'p', '||period||', "a's", 'a', '4', '||period||', '0', '||period||', '||return||', '||return||', 'student', '3:', '||leftparen||', 'smiling', 'gloatingly', '||rightparen||', 'you', 'like', 'that', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'uh', '||comma||', 'steven', '||period||', '||period||', 'i', 'see', "you're", 'president', 'of', 'the', 'chess', 'club', '||period||', '||return||', '||return||', 'steven:', 'state', 'champs', '||period||', '||return||', '||return||', 'george:', "who's", 'your', 'favorite', 'chess', 'player', '||questionmark||', '||return||', '||return||', 'steven:', '||leftparen||', 'hesitating', '||comma||', 'he', 'mumbles', '||rightparen||', 'nastercoff', '||questionmark||', '||return||', '||return||', 'george:', 'right', '||period||', '||leftparen||', 'mumbles', '||rightparen||', 'nastercoff', '||period||', '||period||', 'what', 'country', 'is', 'he', 'from', '||comma||', 'again', '||questionmark||', '||return||', '||return||', 'steven:', '||leftparen||', 'sighs', '||rightparen||', 'i', "don't", 'know', '||period||', '||period||', 'i', 'made', 'it', 'up', '||period||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', "i'm", 'never', 'gonna', 'get', 'this', 'thing', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gets', 'up', '||comma||', 'stopping', 'him', '||rightparen||', 'woah', '||comma||', 'woah', '||comma||', 'woah', '||exclammark||', 'what', 'are', 'you', 'telling', 'me', 'for', '||questionmark||', 'you', 'really', 'had', 'me', 'going', '||comma||', 'there', '||exclammark||', "c'mon", '||comma||', 'sit', 'down', '||period||', '||leftparen||', 'they', 'both', 'sit', 'back', 'down', '||rightparen||', 'what', 'do', 'you', 'want', 'to', 'do', 'when', 'you', 'grow', 'up', '||questionmark||', '||return||', '||return||', 'steven:', "i've", 'been', 'telling', 'people', 'that', "i'd", 'like', 'to', 'be', 'an', 'architect', '||period||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'get', 'this', 'mister', 'peterman', 'is', 'finally', 'letting', 'me', 'do', 'some', 'real', 'writing', '||period||', "he's", 'got', 'this', 'book', 'deal', '||comma||', 'for', 'his', 'autobiography', '||period||', "he's", 'gonna', 'let', 'me', 'ghost', 'write', 'it', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', "that's", 'great', '||exclammark||', 'when', 'it', 'comes', 'out', '||comma||', "i'll", 'have', 'to', 'get', 'someone', 'to', 'ghost', 'read', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'so', 'there', 'i', 'am', 'at', "lorenzo's", '||dash||', 'loading', 'up', 'my', 'slice', 'of', 'the', "fixin's", 'bar', '||period||', '||period||', 'garlic', '||comma||', '||leftparen||', 'imitates', 'the', 'shaking', 'of', 'garlic', 'onto', 'a', 'pizza', '||rightparen||', 'and', 'what', '||dash||', 'not', '||period||', '||period||', 'mmm', '||comma||', 'mmm', '||period||', '||period||', 'and', 'i', 'see', 'this', 'guy', 'over', 'at', 'the', 'pizza', 'boxes', 'giving', 'me', 'the', 'stink', '||dash||', 'eye', '||period||', '||leftparen||', 'imitates', 'the', "'stink", '||dash||', "eye'", '||rightparen||', 'so', 'i', 'give', 'hime', 'the', 'crook', '||dash||', 'eye', 'back', '||comma||', '||leftparen||', 'imitates', 'the', "'crook", '||dash||', "eye'", '||rightparen||', 'you', 'know', '||period||', '||period||', 'then', '||comma||', 'i', 'notice', 'that', "he's", 'not', 'alone', '||exclammark||', "i'm", 'taking', 'on', 'the', 'entire', 'van', 'buren', 'boys', '||exclammark||', '||return||', '||return||', 'jerry:', 'the', 'van', 'buren', 'boys', '||questionmark||', "there's", 'a', 'street', 'gang', 'named', 'after', 'president', 'martin', 'van', 'buren', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'and', "they're", 'just', 'as', 'mean', 'as', 'he', 'was', '||exclammark||', 'so', '||comma||', 'i', 'make', 'a', 'move', 'to', 'the', 'door', '||comma||', 'you', 'know', '||comma||', '||leftparen||', 'makes', 'a', 'noise', '||rightparen||', 'they', 'block', 'it', '||exclammark||', 'so', '||comma||', 'i', 'lunged', 'for', 'the', 'bathroom', '||period||', '||leftparen||', 'demonstrates', '||rightparen||', 'i', 'grab', 'the', 'knob', '||dash||', 'occupado', '||exclammark||', 'then', 'they', 'back', 'me', 'up', 'agains', 'the', 'cartoon', 'map', 'of', 'italy', '||comma||', 'and', 'all', 'of', 'the', 'sudden', '||comma||', 'they', 'just', 'stop', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "i'm", 'still', 'holding', 'the', 'garlic', 'shaker', '||period||', '||period||', 'yeah', '||period||', '||period||', 'like', 'this', '||leftparen||', 'grabs', "jerry's", 'peper', 'shaker', '||comma||', 'and', 'demonstrates', '||rightparen||', "i'm", 'only', 'showing', 'eight', 'fingers', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'their', 'secret', 'sign', '||exclammark||', 'see', '||comma||', 'van', 'buren', '||comma||', 'he', 'was', 'teh', 'eighth', 'president', '||period||', '||period||', '||leftparen||', 'holds', 'up', '8', 'fingers', '||rightparen||', 'they', 'thought', 'i', 'was', 'a', 'former', 'van', 'b', '||period||', 'boy', '||exclammark||', '||return||', '||return||', '[setting:', 'outside', 'a', 'coffee', 'shop]', '||return||', '||return||', 'ellen:', '||leftparen||', 'sees', 'a', 'pay', 'phone', '||rightparen||', 'oh', '||comma||', 'jerry', '||comma||', 'can', 'you', 'hold', 'on', 'a', 'sec', '||questionmark||', 'i', 'just', 'want', 'to', 'check', 'my', 'messages', '||period||', '||period||', '||leftparen||', 'she', 'meets', 'up', 'with', 'two', 'of', 'her', 'friends', 'on', 'the', 'way', 'to', 'the', 'phone', '||rightparen||', 'oh', '||comma||', 'melissa', '||exclammark||', 'kim', '||exclammark||', '||return||', '||return||', 'melissa:', 'ellen', '||period||', '||return||', '||return||', 'ellen:', 'hey', '||exclammark||', 'you', 'guys', '||comma||', 'i', 'want', 'you', 'to', 'meet', 'jerry', '||period||', '||leftparen||', 'gestures', 'tward', 'jerry', '||comma||', 'then', 'goes', 'back', 'to', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'melissa:', 'ohh', '||comma||', "we've", 'heard', 'a', 'lot', 'about', 'you', '||exclammark||', '||leftparen||', 'confidentially', '||rightparen||', 'it', 'is', 'so', 'sweet', 'of', 'you', 'to', 'take', 'her', 'out', '||period||', '||return||', '||return||', 'kim:', 'yeah', '||comma||', 'you', "don't", 'even', 'know', 'how', 'much', 'she', 'needs', 'this', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sympathetically', '||rightparen||', 'she', 'coming', 'of', 'a', 'bad', 'break', '||dash||', 'up', '||questionmark||', '||return||', '||return||', 'kim:', '||leftparen||', 'casually', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'melissa:', 'see', 'ya', '||exclammark||', '||return||', '||return||', 'jerry:', 'any', 'messages', '||questionmark||', '||return||', '||return||', 'ellen:', 'yeah', '||comma||', 'no', 'one', 'called', '||period||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'they', 'act', 'like', 'it', 'was', 'some', 'act', 'of', 'charity', '||period||', 'just', 'going', 'out', 'with', 'her', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "she's", 'the', 'loser', 'of', 'the', 'group', '||period||', 'every', 'group', 'has', 'someone', 'that', 'they', 'all', 'make', 'fun', 'of', '||period||', '||period||', 'like', 'us', 'with', 'elaine', '||period||', '||leftparen||', 'jerry', 'thinks', 'about', 'this', '||comma||', 'then', 'shakes', 'it', 'off', '||rightparen||', '||return||', '||return||', 'jerry:', 'there', 'is', 'no', 'way', 'ellen', 'is', 'the', 'loser', 'of', 'that', 'group', '||period||', '||return||', '||return||', 'george:', 'are', 'you', 'looking', 'deep', 'down', 'at', 'the', 'real', 'person', 'underneath', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'm", 'being', 'as', 'superficial', 'as', 'i', 'possibly', 'can', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'changing', 'subject', '||rightparen||', 'hey', '||comma||', 'i', 'htink', 'i', 'may', 'have', 'found', 'someone', 'for', 'the', 'scholarship', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'interviewing', 'all', 'these', 'annoying', 'little', 'overachievers', '||period||', '||period||', 'finally', '||comma||', 'this', 'kid', 'walks', 'in', '||dash||', 'steven', 'koren', '||dash||', 'a', 'regular', 'guy', '||period||', '||period||', 'likes', 'sports', '||period||', '||period||', 'watches', 't', '||period||', 'v', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'is', 'he', 'smart', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'defensively', '||rightparen||', 'he', 'knows', 'how', 'to', 'read', '||period||', 'and', 'he', 'also', 'knows', 'finishing', 'an', 'entire', 'book', "doesn't", 'prove', 'anything', '||period||', 'and', 'get', 'this', "he's", 'into', 'architecture', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'just', 'like', 'you', 'pretend', 'to', 'be', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', 'with', 'a', 'little', 'guidance', '||comma||', 'steven', 'koren', 'is', 'going', 'to', 'be', 'everything', 'i', 'claim', 'to', 'be', '||comma||', 'only', 'for', 'real', '||period||', "that's", 'my', 'dream', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'dream', 'last', 'night', 'that', 'a', 'hamburger', 'was', 'eating', 'me', '||exclammark||', '||return||', '||return||', '[setting:', 'j', '||period||', "peterman's", 'apartment]', '||return||', '||return||', 'elaine:', 'mister', 'peterman', '||comma||', 'thanks', 'for', 'having', 'me', 'over', '||period||', 'your', 'place', "isn't", 'quite', 'what', 'i', 'imagined', '||period||', '||period||', '||leftparen||', "it's", 'plain', '||comma||', 'with', 'no', 'sign', 'of', "peterman's", 'personality', '||rightparen||', '||return||', '||return||', 'peterman:', 'ohhh', '||period||', '||period||', "it's", 'just', 'a', 'place', 'to', 'flop', '||period||', '||leftparen||', 'sits', 'in', 'his', 'recliner', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||comma||', '||leftparen||', 'clears', 'throat', '||rightparen||', 'what', 'part', 'of', 'your', 'life', '||leftparen||', 'hits', 'the', 'record', 'button', 'on', 'a', 'mini', '||dash||', 'recorder', '||comma||', 'and', 'sets', 'it', 'down', 'on', 'the', 'table', '||rightparen||', 'do', 'you', 'want', 'to', 'start', 'with', '||questionmark||', 'foreign', 'intrigue', '||questionmark||', 'exotic', 'romances', '||questionmark||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'elaine', '||comma||', "we've", 'covered', 'all', 'of', 'that', 'in', 'the', 'catalogue', 'ad', 'nauseum', '||period||', 'no', '||comma||', 'i', 'would', 'like', 'this', 'book', 'to', 'be', 'about', 'my', 'day', '||dash||', 'to', '||dash||', 'day', 'life', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'turns', 'on', 'the', 't', '||period||', 'v', '||comma||', 'and', 'starts', 'flipping', 'through', 'the', 'channels', '||rightparen||', 'oh', 'damn', '||period||', 'they', 'changed', 'the', 'cable', 'stations', 'again', '||period||', '||period||', 'just', 'when', 'i', 'finally', 'memorized', 'them', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'mister', 'peterman', '||comma||', 'do', 'you', 'want', 'to', '||comma||', 'um', '||period||', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'still', 'flipping', 'through', 'the', 'channels', '||rightparen||', '2', '||period||', '||period||', 'cbs', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'get', '||comma||', 'um', '||comma||', 'started', '||period||', '||period||', '||return||', '||return||', 'peterman:', '3', '||period||', '||period||', 'i', "don't", 'know', 'what', 'that', 'is', '||period||', '||period||', "where's", 'my', 'damn', 'preview', 'channel', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'after', 'observing', "peterman's", 'home', 'life', '||rightparen||', 'well', '||comma||', 'i', '||dash||', 'i', 'got', 'ta', 'tell', 'you', '||comma||', 'mister', 'peterman', '||period||', '||period||', 'i', "don't", 'think', 'i', 'see', 'a', 'whole', 'book', 'here', '||period||', '||return||', '||return||', 'peterman:', 'well', '||comma||', "i'm", 'sure', "we'll", 'come', 'up', 'with', 'something', '||period||', 'what', 'do', 'you', 'say', 'you', 'and', 'i', 'order', 'ourselves', 'a', 'pie', '||questionmark||', 'do', 'you', 'like', "lorenzo's", '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'a', 'friend', 'of', 'mine', 'almost', 'got', 'beat', 'up', 'at', 'that', 'place', 'by', 'the', 'van', 'buren', 'boys', '||questionmark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'interested', '||rightparen||', 'you', "don't", 'say', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'the', 'only', 'think', 'that', 'saved', 'him', 'is', 'that', 'he', 'accidentally', 'flashed', 'their', 'secret', 'gang', 'sign', '||period||', '||return||', '||return||', 'peterman:', 'well', '||comma||', "that's", 'pretty', 'exciting', '||period||', '||leftparen||', 'pause', '||rightparen||', "let's", 'put', 'that', 'in', 'the', 'book', '||period||', '||return||', '||return||', 'elaine:', 'but', '||comma||', 'that', "didn't", 'happen', 'to', 'you', '||period||', '||return||', '||return||', 'peterman:', 'so', '||comma||', 'we', 'pay', 'off', 'your', 'friend', '||comma||', 'and', 'it', 'becomes', 'a', 'peterman', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', '||dash||', 'i', 'really', "don't", 'think', 'you', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'looking', 'at', 'his', 'dying', 'plant', '||rightparen||', 'ohh', '||comma||', 'damn', '||period||', 'i', 'forgot', 'to', 'buy', 'plant', 'food', 'again', '||period||', '||period||', "i'll", 'bet', 'i', 'got', 'a', 'coupon', 'for', 'it', '||period||', '||leftparen||', 'starts', 'looking', 'through', 'a', 'small', 'coupon', 'box', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||questionmark||', 'maybe', 'i', 'better', 'talk', 'to', 'my', 'friend', '||period||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'is', 'that', 'the', 'same', 'outfit', 'you', 'were', 'wearing', 'yesterday', '||questionmark||', '||return||', '||return||', 'ellen:', 'no', '||comma||', 'this', 'is', 'brand', 'new', '||period||', 'do', 'you', 'like', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'yeah', '||period||', '||leftparen||', 'pause', '||rightparen||', 'wait', 'a', 'second', '||exclammark||', 'is', 'that', 'the', 'fork', 'that', 'fell', 'on', 'the', 'floor', '||questionmark||', '||exclammark||', '||leftparen||', 'dramatically', '||rightparen||', 'are', 'you', 'using', 'the', 'fork', 'that', 'fell', 'on', 'the', 'floor', '||questionmark||', '||exclammark||', '||return||', '||return||', 'ellen:', '||leftparen||', 'laughs', '||rightparen||', 'no', '||comma||', 'jerry', '||comma||', 'the', 'waitress', 'game', 'be', 'another', 'one', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', "that's", 'all', 'right', '||period||', '||return||', '||return||', 'ellen:', 'is', 'something', 'wrong', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'absolutely', 'nothing', '||period||', '||leftparen||', 'they', 'get', 'up', 'to', 'leave', '||rightparen||', "you're", 'fantastic', '||exclammark||', '||leftparen||', 'they', 'meet', 'up', 'with', 'kramer', 'and', 'george', 'on', 'the', 'way', 'out', '||rightparen||', 'hey', 'guys', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gesturing', 'to', 'ellen', '||rightparen||', 'kramer', '||comma||', 'george', '||comma||', 'this', 'is', 'ellen', '||period||', '||return||', '||return||', '[setting:', 'susan', 'ross', 'foundation', 'conference', 'room]', '||return||', '||return||', 'george:', 'ladies', 'and', 'gentlemen', '||comma||', 'this', '||leftparen||', 'opens', 'the', 'door', '||comma||', 'steven', 'is', 'standing', 'there', '||rightparen||', 'is', 'steven', 'koren', '||period||', 'his', 'g', '||period||', 'p', '||period||', 'a', '||period||', 'is', 'a', 'solid', '2', '||period||', '0', '||exclammark||', 'right', 'in', 'that', 'meaty', 'part', 'of', 'the', 'curve', '||dash||', 'not', 'showing', 'off', '||comma||', 'not', 'falling', 'behind', '||period||', '||return||', '||return||', 'wyck:', 'george', '||comma||', 'the', 'quailifications', 'for', 'this', 'scholarship', 'were', 'suppose', 'to', 'be', '||period||', '||period||', 'largely', 'academic', '||period||', '||return||', '||return||', 'george:', "i'm", 'sure', "we're", 'all', 'aware', 'of', 'the', 'flaws', 'and', 'biases', 'of', 'standardized', 'tests', '||period||', '||period||', '||return||', '||return||', 'wyck:', 'these', "aren't", 'standardized', 'tests', '||dash||', 'these', 'are', 'his', 'grades', '||period||', '||return||', '||return||', 'george:', 'besides', '||comma||', 'steven', 'koren', 'has', 'the', 'highest', 'of', 'aspirations', '||period||', 'he', 'wants', 'to', 'be', '||leftparen||', 'pauses', 'for', 'effect', '||rightparen||', 'an', 'architect', '||period||', '||return||', '||return||', 'wyck:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'steven:', 'actually', '||comma||', 'maybe', 'i', 'could', 'set', 'my', 'sights', 'a', 'little', 'bit', 'higher', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'steven', '||comma||', 'nothing', 'is', 'higher', 'than', 'an', 'architect', '||period||', '||return||', '||return||', 'steven:', 'i', 'think', "i'd", 'really', 'like', 'to', 'be', 'a', 'city', 'planner', '||period||', '||leftparen||', 'sits', 'down', '||comma||', 'addressing', 'the', 'entire', 'foundation', 'board', '||rightparen||', 'why', 'limit', 'myself', 'to', 'just', 'one', 'building', '||comma||', 'when', 'i', 'can', 'design', 'a', 'whole', 'city', '||questionmark||', '||return||', '||return||', 'wyck:', 'well', '||comma||', "that's", 'a', 'good', 'point', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'mutters', '||rightparen||', 'no', '||comma||', "it's", 'not', '||period||', '||return||', '||return||', 'steven:', 'well', '||comma||', "isn't", 'an', 'architect', 'just', 'an', 'art', 'school', 'drop', '||dash||', 'out', 'with', 'a', 'tilty', 'desk', '||comma||', 'and', 'a', 'big', 'ruler', '||questionmark||', '||leftparen||', 'laughs', '||dash||', 'so', 'do', 'the', 'board', 'members', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'irritated', '||rightparen||', "it's", 'called', 'a', 't', '||dash||', 'square', '||period||', '||return||', '||return||', 'wyck:', 'you', 'know', '||comma||', 'the', 'stupidest', 'guy', 'in', 'my', 'fraternity', 'became', 'an', 'architect', '||dash||', 'after', 'he', 'flunked', 'out', 'of', 'dental', 'school', '||exclammark||', '||leftparen||', 'everyone', 'but', 'george', 'laughs', '||rightparen||', 'contratulations', '||comma||', 'young', 'man', '||period||', '||leftparen||', 'shakes', "steven's", 'hand', '||rightparen||', '||return||', '||return||', 'steven:', 'thank', 'you', '||period||', '||return||', '||return||', 'wyck:', 'susan', 'would', 'be', 'proud', 'of', 'what', "you're", 'doing', '||period||', '||return||', '||return||', 'steven:', 'thank', 'you', '||period||', '||return||', '||return||', '[setting:', "peterman's", 'office]', '||return||', '||return||', 'kramer:', 'and', 'they', 'made', 'it', 'their', 'sign', '||comma||', 'because', '||comma||', 'van', 'buren', '||comma||', 'our', '8th', 'president', '||comma||', 'was', 'the', 'man', 'they', 'most', 'admired', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'laughs', '||rightparen||', 'kramer', '||comma||', 'my', 'friend', '||comma||', 'that', 'is', 'one', 'ripping', 'good', 'yarn', '||period||', '||period||', '||leftparen||', 'hands', 'kramer', 'a', 'check', '||rightparen||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'if', 'you', 'like', 'that', 'one', '||comma||', 'i', 'got', 'more', '||period||', '||period||', 'what', 'are', 'you', 'looking', 'for', '||questionmark||', 'romance', '||questionmark||', 'comedy', '||questionmark||', 'adventue', '||questionmark||', '||period||', '||period||', 'erotica', '||questionmark||', '||leftparen||', 'clicks', 'his', 'tongue', '||rightparen||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'uh', '||comma||', 'kramer', '||period||', 'i', "don't", 'think', '||dash||', '||return||', '||return||', 'peterman:', '||leftparen||', 'interrupting', '||rightparen||', 'how', 'much', 'would', 'you', 'take', 'for', 'the', 'whole', 'lot', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'whole', 'lot', '||questionmark||', '||return||', '||return||', 'peterman:', 'name', 'your', 'price', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'thinks', '||rightparen||', '1500', 'dollars', '||period||', '||return||', '||return||', 'peterman:', "i'll", 'give', 'you', 'half', 'that', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'excited', '||rightparen||', 'done', '||exclammark||', '||return||', '||return||', 'peterman:', 'kramer', '||comma||', 'my', 'friend', '||comma||', '||leftparen||', 'gestures', 'to', 'elaine', '||rightparen||', 'consider', 'elaine', 'at', 'your', 'disposal', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'well', '||comma||', 'i', '||comma||', 'uh', '||period||', '||period||', 'i', 'like', 'to', 'work', 'in', 'the', 'evenings', '||period||', '||period||', '||leftparen||', 'elaine', 'slumps', 'back', '||comma||', 'and', 'covers', 'her', 'head', 'in', 'misfortune', '||rightparen||', '||return||', '||return||', '[setting:', "elaine's", 'office]', '||return||', '||return||', 'elaine:', 'would', 'you', 'please', 'just', 'get', 'on', 'with', 'the', 'stupid', 'bob', 'saccamano', 'story', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'on', 'the', 'phone', 'with', 'bob', '||comma||', 'and', 'i', 'realize', 'right', 'then', 'and', 'there', 'that', 'i', 'need', 'to', 'return', 'this', 'pair', 'of', 'pants', '||period||', 'so', '||comma||', "i'm", 'off', 'to', 'the', 'store', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', 'to', 'bob', 'saccamano', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'nothing', '||period||', 'his', 'part', 'of', 'the', 'story', 'is', 'done', '||period||', '||leftparen||', 'elaine', 'covers', 'her', 'face', 'with', 'her', 'hands', '||dash||', 'showing', 'her', 'difficulty', 'coping', 'with', 'kramer', '||rightparen||', 'so', "i'm", 'waiting', 'for', 'the', 'subway', '||comma||', "it's", 'not', 'coming', '||comma||', 'so', 'i', 'decided', 'to', 'hoof', 'it', 'through', 'the', 'tunnel', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'well', '||comma||', 'now', "that's", 'something', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'know', 'if', 'i', 'lost', 'track', 'of', 'time', '||dash||', 'or', 'what', '||comma||', 'but', 'the', 'next', 'think', 'i', 'knew', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'adding', '||rightparen||', 'a', 'train', 'is', 'bearing', 'down', 'on', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'slipped', '||dash||', 'and', 'fell', 'in', 'the', 'mud', '||period||', 'ruining', 'the', 'very', 'pants', 'i', 'was', 'about', 'to', 'return', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reflects', 'on', 'the', 'story', '||rightparen||', 'i', "don't", 'understand', '||period||', '||period||', 'you', 'were', 'wearing', 'the', 'pants', 'you', 'were', 'returning', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'guess', 'i', 'was', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'still', 'confused', '||rightparen||', 'what', 'were', 'you', 'gonna', 'wear', 'on', 'the', 'way', 'back', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'are', 'you', 'listening', '||questionmark||', '||exclammark||', 'i', "didn't", 'even', 'get', 'there', '||exclammark||', '||leftparen||', 'pauses', '||rightparen||', 'all', 'right', '||comma||', 'next', 'story', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'i', 'think', 'i', 'got', 'enough', 'for', 'one', 'day', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'chew', 'on', 'that', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'mocking', '||rightparen||', 'yeah', '||comma||', "i'll", 'chew', 'on', 'that', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'listen', '||comma||', 'by', 'the', 'way', '||dash||', "i'm", 'hosting', 'a', 'little', 'get', '||dash||', 'together', 'tonight', 'in', 'honor', 'of', 'my', 'little', 'financial', 'upturn', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'thanks', '||period||', "i've", 'got', 'plans', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'you', 'should', 'be', 'there', 'to', 'document', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'putting', 'on', 'her', 'coat', '||rightparen||', 'oh', '||comma||', "you're", 'getting', 'together', 'with', 'some', 'of', 'your', 'jackass', 'friends', '||comma||', 'and', 'you', 'want', 'me', 'to', 'take', 'notes', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'get', 'there', 'after', 'nine', '||period||', 'you', 'know', '||comma||', 'give', 'the', 'poeple', 'a', 'chance', 'to', 'loosen', 'up', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'so', "you're", 'denying', 'him', 'the', 'scholarship', 'just', 'because', 'he', 'wants', 'to', 'be', 'a', 'city', 'planner', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'betrayed', '||exclammark||', 'that', 'kid', 'was', 'like', 'a', 'son', 'to', 'me', '||period||', 'and', 'if', "there's", 'one', 'person', 'you', 'should', 'be', 'able', 'to', 'hold', 'down', '||comma||', "it's", 'your', 'own', 'flesh', 'and', 'blood', '||period||', 'like', 'my', 'father', '||period||', '||period||', 'my', "father's", 'father', 'before', 'him', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'maybe', 'philanthropy', 'is', 'not', 'your', 'field', '||period||', '||leftparen||', 'phone', 'rings', '||comma||', 'he', 'answers', 'it', '||rightparen||', 'hello', '||period||', 'oh', '||comma||', 'hi', '||comma||', 'ellen', '||period||', 'yeah', '||comma||', 'i', 'called', 'the', 'hotel', '||period||', '||period||', "we're", 'all', 'set', 'for', 'the', 'weekend', '||period||', '||return||', '||return||', 'george:', "you're", 'spending', 'the', 'weekend', 'with', 'ellen', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||comma||', 'in', 'a', "'cha", '||dash||', 'ching', '||exclammark||', "'", 'motion', '||rightparen||', 'vermont', '||exclammark||', '||leftparen||', 'to', 'ellen', '||rightparen||', 'with', 'any', 'luck', '||comma||', 'they', 'said', 'we', 'could', 'stay', 'an', 'extra', 'couple', 'of', 'days', 'if', 'we', 'want', 'to', '||exclammark||', '||leftparen||', 'george', 'is', 'disturbed', '||period||', 'he', 'gets', 'up', '||comma||', 'goes', 'go', "kramer's", 'door', '||comma||', 'and', 'knocks', '||period||', 'they', 'talk', '||rightparen||', 'four', 'days', 'at', 'a', 'beautiful', 'bed', '||dash||', 'and', '||dash||', 'breakfast', '||exclammark||', 'i', "can't", 'wait', '||period||', '||period||', 'buy', '||dash||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||period||', 'george', 'and', 'kramer', 'come', 'into', "jerry's", 'apartment', '||comma||', 'confronting', 'him', '||rightparen||', 'what', '||questionmark||', '||leftparen||', 'george', 'takes', 'the', 'phone', 'off', 'the', 'hook', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'you', 'want', 'to', 'start', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'uh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||period||', 'you', 'go', 'ahead', '||period||', 'i', 'gotta', 'get', 'my', 'thoughts', 'together', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'this', 'whole', 'ellen', 'situation', '||period||', '||period||', 'has', 'gone', 'far', 'enough', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'adding', '||rightparen||', 'jerry', '||comma||', "she's", 'a', 'loser', '||period||', '||leftparen||', 'george', 'points', 'to', 'kramer', '||dash||', 'gesturing', 'that', "he's", 'right', 'on', 'target', '||rightparen||', '||return||', '||return||', 'jerry:', 'where', 'is', 'this', 'coming', 'from', '||questionmark||', "she's", 'great', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'concerned', '||rightparen||', "why're", 'you', 'doing', 'this', '||comma||', 'jerry', '||questionmark||', 'is', 'it', 'your', 'career', '||questionmark||', 'things', 'will', 'pick', 'up', '||period||', '||return||', '||return||', 'jerry:', "there's", 'nothing', 'wrong', 'with', 'my', 'career', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'like', 'a', 'parent', '||rightparen||', 'well', '||comma||', 'i', 'still', 'like', 'the', "bloomingdale's", 'executive', 'training', 'program', 'for', 'him', '||period||', '||return||', '||return||', 'george:', 'i', 'though', 'we', 'said', 'we', "weren't", 'going', 'to', 'discuss', 'that', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'think', "it's", 'something', 'he', 'should', 'consider', '||period||', '||return||', '||return||', 'george:', 'of', 'course', 'he', 'should', 'consider', 'it', '||comma||', 'but', 'now', 'is', 'not', 'the', 'time', '||exclammark||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'george', '||comma||', 'all', 'these', 'issues', 'are', 'interrelated', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'fed', 'up', '||rightparen||', 'alright', '||exclammark||', 'excuse', 'me', '||exclammark||', '||leftparen||', 'gets', 'up', '||rightparen||', "i'm", 'not', 'buying', 'any', 'of', 'this', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'so', "what're", 'you', 'saying', '||questionmark||', 'that', "we're", 'wrong', '||questionmark||', 'oh', '||comma||', "everybody's", 'wrong', 'but', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'this', 'is', 'liek', 'that', 'twilight', 'zone', 'where', 'the', 'guy', 'wakes', 'up', '||comma||', 'and', "he's", 'the', 'same', '||dash||', 'but', 'everyone', 'else', 'is', 'different', '||exclammark||', '||return||', '||return||', 'kramer:', 'which', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'were', 'all', 'like', 'that', '||exclammark||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'steven:', "why'd", 'you', 'take', 'away', 'my', 'scholarship', '||comma||', 'mister', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'steven', '||comma||', 'i', '||comma||', 'uh', '||period||', '||period||', '||leftparen||', 'all', 'the', 'sudden', '||comma||', 'a', 'small', 'gang', 'steps', 'out', 'of', 'nowhere', '||comma||', 'surrounding', 'george', '||rightparen||', '||return||', '||return||', 'steven:', 'these', 'are', 'my', 'new', 'friends', '||dash||', 'the', 'van', 'buren', 'boys', '||period||', '||return||', '||return||', 'member', '1:', 'he', 'became', 'so', 'disillusioned', '||comma||', 'he', 'had', 'to', 'join', 'us', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', 'nice', '||period||', '||return||', '||return||', 'steven:', 'i', 'want', 'my', 'scholarship', 'back', '||comma||', 'so', 'i', 'can', 'be', 'a', 'city', 'planner', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'architect', '||comma||', 'steven', '||questionmark||', '||return||', '||return||', 'member', '1:', '||leftparen||', 'moves', 'threateningly', 'close', 'to', 'george', '||rightparen||', 'city', 'planner', '||period||', '||return||', '||return||', '[setting:', 'cafe]', '||return||', '||return||', 'friend', '1:', 'great', 'party', '||comma||', 'k', '||dash||', 'man', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'you', 'got', 'that', 'straight', '||exclammark||', '||leftparen||', 'turns', 'to', 'elaine', '||rightparen||', 'hey', '||comma||', 'elaine', '||comma||', 'try', 'the', 'beef', '||dash||', 'because', "that's", 'realy', 'au', 'jus', 'sauce', '||comma||', 'huh', '||period||', '||leftparen||', 'dramatically', '||rightparen||', 'real', 'au', 'jus', 'sauce', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sourly', '||rightparen||', "i'll", 'make', 'a', 'note', 'of', 'it', '||period||', '||return||', '||return||', 'friend', '1:', 'hey', '||comma||', 'kramer', '||comma||', '||return||', '||return||', 'kramer:', 'yeah', '||questionmark||', '||return||', '||return||', 'friend', '1:', 'ramirez', 'has', 'never', 'heard', 'your', 'pants', 'story', '||period||', '||return||', '||return||', 'kramer:', 'ohh', 'kay', '||exclammark||', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'had', 'bob', 'saccamano', 'on', 'the', 'phone', '||comma||', 'and', 'i', 'suddenly', 'realized', 'that', 'i', '||dash||', '||leftparen||', 'elaine', 'stops', 'him', '||rightparen||', '||return||', '||return||', 'elaine:', 'you', "can't", 'tell', 'that', 'story', 'now', '||period||', 'it', 'belongs', 'to', 'peterman', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'ya', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'signed', 'the', 'release', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'he', 'sat', 'in', 'mud', '||period||', 'not', 'you', '||period||', '||return||', '||return||', 'kramer:', 'but', 'i', 'did', 'sit', 'in', 'mud', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stern', '||rightparen||', 'ya', "didn't", '||exclammark||', 'you', 'never', 'sat', 'in', 'mud', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pleading', '||rightparen||', 'i', 'was', 'all', 'dirty', '||exclammark||', '||return||', '||return||', 'elaine:', 'it', 'ever', 'happened', '||exclammark||', 'understand', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'crowd', '||rightparen||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', 'all', 'right', '||exclammark||', 'yeah', '||comma||', 'uh', '||comma||', 'yeah', '||period||', '||period||', 'well', '||period||', '||period||', 'uh', '||comma||', 'the', 'pants', '||period||', 'they', '||comma||', 'uh', '||comma||', 'they', 'fit', '||comma||', 'uh', '||comma||', 'well', '||dash||', 'and', 'so', 'i', '||comma||', 'uh', '||comma||', 'decided', 'i', "wasn't", 'gonna', 'return', 'them', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', 'wooh', '||dash||', 'hoo', '||dash||', 'hoo', '||dash||', 'hoo', '||exclammark||', '||return||', '||return||', 'friend', '1:', "it's", 'getting', 'late', '||period||', 'maybe', 'we', 'better', 'get', 'going', '||period||', '||leftparen||', 'they', 'all', 'get', 'up', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', "you're", 'gonna', 'go', 'now', '||questionmark||', 'hey', '||comma||', 'woah', '||exclammark||', 'i', "don't", '||period||', '||period||', '||leftparen||', 'watches', 'his', 'friends', 'leave', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'frantic', '||rightparen||', 'kramer', '||comma||', 'kramer', '||exclammark||', 'i', 'got', 'big', 'trouble', 'with', 'the', '||dash||', 'with', 'the', 'van', 'buren', 'boys', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'now', '||comma||', "they're", 'tough', 'cookies', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'and', 'i', '||dash||', 'i', 'heard', 'you', 'got', 'on', 'their', 'good', 'side', '||period||', 'now', '||comma||', "what'd", 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||period||', '||period||', 'ah', '||comma||', '||leftparen||', 'looks', 'over', 'at', 'elaine', '||comma||', 'and', 'realizes', 'he', "can't", 'tell', 'the', 'van', 'buren', 'boys', 'story', '||rightparen||', 'oh', '||comma||', 'nothing', '||dash||', 'nothing', '||period||', '||period||', 'no', '||comma||', 'i', 'certainly', "don't", 'have', 'any', 'stories', '||comma||', 'if', "that's", 'what', "you're", 'implying', '||period||', '||leftparen||', 'laughs', 'heartily', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'frantic', '||rightparen||', 'kramer', '||comma||', 'do', 'you', 'know', 'what', 'those', 'guys', 'are', 'gonna', 'do', 'to', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'uh', '||period||', '||period||', 'you', 'know', 'uh', '||comma||', 'you', "didn't", 'hear', 'from', 'me', '||comma||', 'but', '||comma||', 'uh', '||comma||', 'the', 'van', 'buren', 'boys', '||dash||', 'they', 'never', 'hassle', 'their', 'own', 'kind', '||period||', '||return||', '||return||', 'george:', 'you', 'mean', '||comma||', 'like', '||comma||', 'a', 'former', 'member', '||questionmark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'these', 'kramer', 'stories', 'are', 'unusable', '||exclammark||', '||leftparen||', 'thumbs', 'through', 'them', '||rightparen||', 'i', 'mean', '||comma||', 'some', 'of', 'them', "aren't", 'even', 'stories', '||exclammark||', '||leftparen||', 'holds', 'one', 'out', '||rightparen||', 'look', '||comma||', 'this', 'is', 'a', 'list', 'of', 'things', 'in', 'his', 'apartment', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'my', 'toaster', 'oven', 'on', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'am', 'i', 'ever', 'gonna', 'turn', 'this', 'into', 'a', 'book', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'just', 'shape', 'them', '||dash||', 'change', 'them', '||period||', "you're", 'a', 'writer', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', "i'm", 'a', 'writer', '||period||', '||return||', '||return||', 'jerry:', 'make', 'them', 'interesting', '||period||', '||return||', '||return||', 'elaine:', 'interesting', '||exclammark||', 'of', 'course', '||exclammark||', 'people', 'love', 'interesting', 'writing', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'gotta', 'go', 'to', 'the', 'airport', '||period||', "i'm", 'picking', 'up', 'my', 'parents', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', "wheren't", 'they', 'just', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "i'm", 'flying', 'them', 'in', 'to', 'meet', 'ellen', '||period||', 'i', "don't", 'know', 'where', 'to', 'turn', '||exclammark||', 'i', 'gotta', 'see', 'what', 'they', 'think', 'of', 'her', '||period||', '||return||', '||return||', 'elaine:', 'maybe', 'we', 'could', 'all', 'have', 'dinner', 'later', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'so', '||period||', "i'm", 'gonna', 'try', 'to', 'get', 'them', 'to', 'fly', 'right', 'back', 'tonight', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||exclammark||', 'hey', '||comma||', 'have', 'i', 'told', 'you', 'about', 'my', 'bunions', '||questionmark||', 'oh', '||comma||', "you're", 'gonna', 'love', 'this', 'story', '||exclammark||', '||leftparen||', 'rubs', 'his', 'hands', 'together', '||rightparen||', 'so', '||comma||', 'i', 'line', 'up', 'my', 'cold', 'cuts', 'on', 'the', 'couch', 'next', 'to', 'me', '||comma||', 'but', 'as', "i'm", 'stacking', 'them', 'up', '||comma||', 'they', 'keep', 'falling', 'into', 'my', 'foot', 'bath', '||exclammark||', '||leftparen||', 'jerry', 'and', 'elaine', 'look', 'disgusted', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'this', 'is', 'awful', '||exclammark||', 'we', "don't", 'want', 'to', 'hear', 'about', 'this', '||exclammark||', '||return||', '||return||', 'kramer:', 'damn', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'bought', 'a', 'bunch', 'of', 'bunion', 'stories', 'from', 'newman', '||dash||', 'but', 'they', 'all', 'stink', '||exclammark||', '||return||', '||return||', 'elaine:', 'how', 'much', 'did', 'you', 'pay', 'for', 'them', '||questionmark||', '||return||', '||return||', 'kramer:', 'eight', 'bucks', '||exclammark||', 'i', 'think', 'i', 'got', 'ripped', 'off', '||exclammark||', '||leftparen||', 'leaves', '||comma||', 'yelling', 'out', '||quotemark||', 'newman', '||exclammark||', '||quotemark||', '||rightparen||', '||return||', '||return||', '[setting:', "peterman's", 'office]', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'what', "didn't", 'you', 'like', 'about', 'the', 'first', 'chapter', '||questionmark||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'it', 'started', 'out', 'nicely', '||quotemark||', "i'm", 'returning', 'some', 'pants', '||period||', '||quotemark||', 'a', 'very', 'identifiable', 'problem', '||period||', '||period||', '||leftparen||', 'turns', 'page', '||rightparen||', '||quotemark||', 'i', 'set', 'of', 'down', 'a', 'train', 'tunnel', '||period||', '||quotemark||', '||period||', '||period||', '||leftparen||', 'turns', 'page', '||rightparen||', 'but', "that's", 'where', 'the', 'story', 'takes', 'a', 'most', 'unappealing', 'turn', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', 'no', '||exclammark||', "that's", 'where', 'it', 'gets', 'interesting', '||exclammark||', "don't", 'you', 'see', '||questionmark||', 'the', '||dash||', 'the', 'train', 'is', 'bearing', 'down', 'on', 'you', '||comma||', 'you', '||dash||', 'you', 'dive', 'into', 'a', 'side', 'tunnel', '||dash||', 'and', 'you', 'run', 'into', 'a', 'whole', 'band', 'of', 'underground', 'tunnel', 'dwellers', '||exclammark||', '||return||', '||return||', 'peterman:', 'it', 'just', 'seems', 'so', 'cliched', '||comma||', 'and', 'obvious', '||period||', "it's", 'not', 'interesting', 'writing', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', 'yeah', '||period||', 'i', 'know', '||period||', 'um', '||period||', '||period||', 'how', 'about', 'if', '||comma||', 'instead', 'of', '||period||', '||period||', 'diving', 'from', 'the', 'train', '||comma||', 'you', '||period||', '||period||', 'uh', '||comma||', 'you', '||comma||', 'i', "don't", 'know', '||comma||', 'you', 'slip', 'and', '||comma||', 'and', 'fall', 'in', 'some', 'mud', '||comma||', 'and', '||period||', '||period||', 'ruin', 'your', 'pants', '||questionmark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'intrigued', '||rightparen||', 'the', 'very', 'pants', 'i', 'was', 'returning', '||period||', "that's", 'perfect', 'irony', '||exclammark||', 'elaine', '||comma||', 'that', 'is', 'interesting', 'writing', '||exclammark||', '||leftparen||', 'the', 'intercom', 'beeps', '||rightparen||', '||return||', '||return||', 'secretary:', 'i', 'have', 'a', 'cosmo', 'kramer', 'on', 'line', '4', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'picks', 'up', 'the', 'phone', '||rightparen||', 'peterman', '||comma||', 'here', '||period||', '||return||', '||return||', 'kramer:', 'mister', 'peterson', '||comma||', 'you', 'gotta', 'sell', 'me', 'my', 'stories', 'back', '||exclammark||', '||return||', '||return||', 'peterman:', 'you', 'want', 'to', 'know', 'something', '||questionmark||', 'i', 'no', 'longer', 'need', 'them', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'mister', 'peterman', '||comma||', 'why', "don't", 'we', 'keep', 'them', '||dash||', 'as', 'a', '||comma||', 'as', 'a', 'reference', '||questionmark||', '||return||', '||return||', 'peterman:', 'nonsense', '||exclammark||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'have', "benes'", 'woderfully', 'imaginative', 'mind', 'to', 'spin', 'my', 'stories', '||period||', 'you', 'take', 'back', 'your', 'tales', '||comma||', 'you', 'vagabond', '||exclammark||', '||return||', '||return||', 'kramer:', 'yippie', '||dash||', 'yi', '||dash||', 'yay', '||exclammark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'hangs', 'up', '||rightparen||', 'there', 'you', 'are', '||comma||', 'elaine', '||period||', 'go', 'forth', '||comma||', 'and', 'create', '||period||', '||leftparen||', 'elaine', 'gets', 'up', 'to', 'leave', '||rightparen||', 'and', '||comma||', 'by', 'the', 'way', '||comma||', 'when', 'you', 'get', 'to', 'that', 'chapter', 'about', 'my', 'romantic', 'escapades', '||dash||', 'feel', 'free', 'to', 'toss', 'yourself', 'in', 'the', 'mix', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'george:', 'hey', '||comma||', 'van', 'b', '||period||', 'boys', '||period||', '||return||', '||return||', 'steven:', 'so', '||comma||', 'mister', 'costanza', '||comma||', 'did', 'you', 'get', 'my', 'scholarship', 'back', '||questionmark||', '||return||', '||return||', 'george:', 'now', '||comma||', 'fellas', '||comma||', 'fellas', '||period||', '||period||', 'easy', '||period||', 'you', "wouldn't", 'want', 'to', 'beat', 'up', 'on', 'one', 'of', 'your', 'own', '||period||', '||return||', '||return||', 'member', '2:', 'is', 'that', 'right', '||questionmark||', 'then', 'why', "don't", 'you', 'flash', 'us', 'the', 'sign', '||questionmark||', '||return||', '||return||', 'george:', 'right', '||period||', '||period||', 'the', 'sign', '||period||', '||leftparen||', 'hesitates', '||comma||', 'then', 'makes', 'a', 'series', 'of', 'stupid', 'gestures', '||rightparen||', '||return||', '||return||', 'steven:', "that's", 'not', 'the', 'sign', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'defensively', 'loud', '||rightparen||', 'it', 'was', 'when', 'i', 'was', 'banging', '||exclammark||', '||return||', '||return||', 'member', '2:', 'all', 'right', '||comma||', 'if', 'you', 'really', 'are', 'one', 'of', 'us', '||period||', '||period||', "let's", 'see', 'you', 'take', 'the', 'wallet', 'off', 'the', 'next', 'guy', 'who', 'walks', 'by', '||period||', '||return||', '||return||', 'george:', 'love', 'to', '||exclammark||', '||leftparen||', 'cracks', 'his', 'knuckles', '||comma||', 'then', 'winces', 'under', 'the', 'pain', '||rightparen||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'ellen:', 'and', 'after', 'college', '||comma||', 'i', 'got', 'my', 'masters', 'at', 'the', 'sorbonne', '||period||', '||return||', '||return||', 'morty:', 'sorbonne', '||questionmark||', 'oh', '||comma||', 'hey', '||period||', '||leftparen||', 'to', 'helen', '||rightparen||', "that's", 'in', 'paris', '||period||', '||return||', '||return||', 'ellen:', '||leftparen||', 'looks', 'at', 'her', 'watch', '||rightparen||', 'oh', '||comma||', 'jerry', '||comma||', "you're", 'parking', "meter's", 'about', 'to', 'expire', '||period||', "don't", 'get', 'up', '||comma||', "i've", 'got', 'change', '||period||', '||leftparen||', 'leaves', 'with', 'her', 'purse', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'his', 'parents', '||rightparen||', 'so', '||questionmark||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', "she's", 'fantastic', '||period||', '||return||', '||return||', 'jerry:', 'i', 'knew', 'it', '||exclammark||', "i'm", 'not', 'crazy', '||period||', '||return||', '||return||', 'helen:', "she's", 'so', 'sweet', '||comma||', 'and', "she's", 'got', 'some', 'body', 'on', 'her', '||exclammark||', '||return||', '||return||', 'morty:', 'and', 'smart', '||exclammark||', 'like', 'a', 'computer', '||exclammark||', '||return||', '||return||', 'helen:', 'and', 'so', 'much', 'personality', '||exclammark||', 'but', '||comma||', 'it', "doesn't", 'matter', 'what', 'we', 'think', '||period||', 'do', 'you', 'like', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'after', 'seeing', 'how', 'much', 'his', 'parents', 'like', 'her', '||rightparen||', 'now', '||comma||', "i'm", 'not', 'so', 'sure', '||period||', '||return||', '||return||', 'helen:', 'well', '||comma||', "she's", '10', 'times', 'better', 'than', 'that', 'awful', 'amber', 'girl', 'that', 'you', 'were', 'with', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'amber', '||period||', '||period||', 'i', 'wonder', 'if', "she's", 'back', 'from', 'vegas', '||period||', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'alley]', '||return||', '||return||', 'member', '2:', 'the', 'next', 'one', '||comma||', 'or', "you're", 'meat', '||exclammark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'alright', '||exclammark||', '||leftparen||', 'goes', 'out', 'onto', 'the', 'sidewalk', '||period||', 'the', 'seinfelds', 'walk', 'by', '||rightparen||', 'seinfelds', '||exclammark||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'shhh', '||exclammark||', 'listen', '||comma||', 'you', 'gotta', 'do', 'me', 'a', 'favor', '||period||', 'give', 'me', 'your', 'wallet', '||period||', "i'll", 'give', 'it', 'back', 'to', 'you', 'later', '||period||', '||return||', '||return||', 'morty:', "how're", 'your', 'folks', '||questionmark||', '||return||', '||return||', 'george:', 'eh', '||comma||', "they're", 'trying', 'to', 'pick', 'out', 'a', 'new', 'couch', '||dash||', 'you', "don't", 'want', 'to', 'know', '||period||', '||leftparen||', 'remembering', 'the', 'watching', 'van', 'buren', 'boys', '||rightparen||', 'give', 'me', 'your', 'wallet', '||comma||', 'or', "i'll", 'spill', 'your', 'guts', 'right', 'here', 'on', 'the', 'street', '||exclammark||', '||return||', '||return||', 'morty:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'hurry', 'up', '||comma||', 'old', 'man', '||exclammark||', "i'm", 'an', 'animal', '||exclammark||', '||return||', '||return||', 'helen:', "you're", 'being', 'very', 'rude', '||period||', 'come', 'on', '||comma||', 'morty', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleading', '||rightparen||', 'please', '||comma||', 'please', '||comma||', "they're", 'gonna', 'hit', 'me', '||exclammark||', '||leftparen||', 'attempts', 'to', 'grab', "helen's", 'purse', '||comma||', 'she', 'starts', 'hitting', 'george', 'defensively', '||comma||', 'he', 'backs', 'off', '||rightparen||', '||return||', '||return||', 'morty:', 'tell', 'your', 'parents', 'we', 'said', "'hi", '||exclammark||', "'", '||leftparen||', 'they', 'leave', '||rightparen||', '||return||', '||return||', 'kramer:', 'look', 'how', 'dark', "it's", "gettin'", 'already', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'not', 'daylight', 'savings', 'time', 'yet', '||period||', '||return||', '||return||', 'kramer:', 'when', 'does', 'it', 'start', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'i', "don't", 'know', '||comma||', 'they', 'just', 'tell', 'you', 'the', 'night', 'before', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||period||', 'well', '||comma||', "i'm", 'sick', "o'", 'waiting', '||period||', '||leftparen||', 'pulls', 'out', 'his', 'pocket', '||dash||', 'watch', '||leftparen||', 'it', 'has', 'a', 'chain', '||comma||', 'too', '||rightparen||', '||rightparen||', 'i', 'am', "springin'", 'ahead', 'riiight', 'now', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'under', 'breath', '||rightparen||', 'oh', '||comma||', "i'm", 'sure', 'that', "won't", 'cause', 'any', 'problems', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'god', '||comma||', "it's", 'mike', 'moffit', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'now', '||comma||', "don't", 'tell', 'me', "you're", 'still', 'mad', 'at', 'him', 'for', 'calling', 'you', 'a', 'phony', '||period||', 'jerry', '||comma||', 'that', 'was', 'five', 'years', 'ago', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'a', 'phony', "an'", 'i', "don't", 'want', 'anything', 'to', 'do', 'with', 'this', 'guy', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'mike', '||exclammark||', '||return||', '||return||', 'mike:', '||leftparen||', 'sees', 'and', 'is', 'enthused', '||comma||', 'coming', 'over', '||rightparen||', 'kramer', '||exclammark||', 'jerry', '||exclammark||', "how's", 'it', "goin'", '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'fine', '||period||', "an'", "i'm", 'not', 'just', "sayin'", 'that', '||period||', '||period||', '||return||', '||return||', 'mike:', 'guess', 'what', '||questionmark||', 'i', 'just', 'started', 'my', 'own', 'business', '||period||', "i'm", 'a', 'bookie', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', 'openings', 'in', 'arson', '||questionmark||', '||return||', '||return||', 'mike:', '||leftparen||', 'pauses', '||comma||', 'struck', 'by', "j's", 'attitude', '||rightparen||', 'either', 'of', 'you', 'guys', 'wanna', 'place', 'a', 'bet', "i'm", 'your', 'guy', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quickly', '||rightparen||', 'ah', 'no', 'no', 'no', '||period||', 'no', 'bets', 'for', 'me', '||comma||', 'i', 'uh', '||comma||', 'i', 'got', 'a', 'disease', '||period||', '||return||', '||return||', 'jerry:', "i'm", "feelin'", 'a', 'bit', 'queasy', 'myself', '||period||', 'maybe', "i'll", 'see', 'you', 'in', 'another', 'five', 'years', '||period||', '||leftparen||', 'casually', 'leaves', '||rightparen||', '||return||', '||return||', 'mike:', 'kramer', '||period||', 'jerry', 'still', 'mad', 'about', 'that', '||quotemark||', 'phony', '||quotemark||', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'kidding', '||questionmark||', "it's", 'all', 'water', 'near', 'a', 'bridge', '||period||', '||return||', '||return||', 'mike:', 'hey', '||comma||', 'what', 'time', 'you', 'got', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pulling', 'out', 'his', 'timepiece', '||rightparen||', 'oh', 'yes', '||period||', 'uh', '||period||', '||period||', "it's", 'aaalmost', 'six', '||period||', '||return||', '||return||', 'mike:', 'whoa', '||dash||', '||dash||', 'uh', '||dash||', '||dash||', "i'm", 'really', 'late', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'these', 'designs', 'look', 'great', '||exclammark||', 'peggy', '||comma||', 'you', 'really', 'saved', 'me', '||period||', '||return||', '||return||', 'peggy:', 'oh', '||comma||', 'it', 'was', 'no', 'problem', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaving', 'with', 'the', 'drawings', '||rightparen||', 'mr', '||period||', 'peterman', 'is', 'gonna', 'love', "'em", '||period||', '||return||', '||return||', 'peggy:', '||leftparen||', 'focusing', 'on', 'her', 'work', '||rightparen||', 'thanks', '||comma||', 'susie', '||period||', '||return||', '||return||', 'elaine:', 'you', "won't", 'believe', 'this', 'but', '||comma||', 'as', "i'm", 'leaving', '||comma||', 'she', 'calls', 'me', '||quotemark||', 'susie', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'see', 'you', 'as', 'a', 'susie', '||period||', 'sharon', 'maybe', '||period||', '||return||', '||return||', 'elaine:', 'what', 'am', 'i', '||comma||', 'a', '||dash||', '||dash||', 'a', 'bulimic', '||comma||', 'chain', '||dash||', 'smoking', '||comma||', 'stenographer', 'from', 'staten', 'island', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'are', 'you', 'describing', '||questionmark||', '||return||', '||return||', 'elaine:', 'someone', 'i', 'know', '||period||', '||return||', '||return||', 'jerry:', 'named', 'sharon', '||questionmark||', '||return||', '||return||', 'elaine:', "i'd", 'rather', 'not', 'say', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'say', 'hello', '||rightparen||', 'mmm', '||exclammark||', "what's", 'in', 'the', 'bag', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sitting', '||rightparen||', 'newww', 'tuxedo', '||period||', 'for', 'the', 'pinstripe', 'ball', '||period||', 'steinbrenner', 'is', 'throwing', 'a', 'huge', 'party', 'at', 'tavern', 'on', 'the', 'green', '||comma||', 'heh', '||exclammark||', '||return||', '||return||', 'jerry:', 'kind', 'of', 'a', 'yankee', 'prom', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'resentfully', 'dampened', '||rightparen||', "it's", 'not', 'a', 'prom', '||period||', "it's", 'a', 'ball', '||period||', '||return||', '||return||', 'jerry:', 'you', 'taking', 'allison', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'of', 'course', "i'm", 'taking', 'allison', '||period||', 'this', 'woman', 'is', 'genetically', 'engineered', 'to', 'go', 'to', 'a', 'ball', '||period||', 'tall', '||comma||', 'blonde', '||comma||', 'lithe', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'live', '||questionmark||', '||return||', '||return||', 'elaine:', 'lithe', '||period||', '||return||', '||return||', 'george:', 'live', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'rolling', 'her', 'eyes', '||rightparen||', 'lithe', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'lithe', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', "two'll", 'have', 'a', 'great', 'time', 'there', '||period||', '||return||', '||return||', 'jerry:', 'it', "can't", 'be', 'worse', 'than', 'this', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||exclammark||', '||return||', '||return||', 'george:', "an'", "wait'll", 'you', 'see', 'the', 'dress', 'that', "she's", 'got', '||period||', "it's", 'backless', '||exclammark||', 'uh', '||questionmark||', '||exclammark||', "i'm", 'finally', 'gonna', 'make', 'a', 'great', 'entrance', '||exclammark||', '||return||', '||return||', 'elaine:', 'backless', '||questionmark||', 'ya', 'gonna', 'back', 'her', 'in', '||questionmark||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'when', 'a', 'woman', 'makes', 'a', 'ball', 'entrance', '||period||', '||period||', 'she', 'twirls', '||period||', '||return||', '||return||', 'elaine:', "she's", 'not', 'gonna', 'twirl', '||dash||', '||dash||', '||return||', '||return||', 'george:', "she'll", 'twirl', '||period||', '||return||', '||return||', 'george:', 'that', 'is', 'what', 'mr', '||period||', 'steinbrenner', 'wants', '||period||', 'he', 'wants', '||comma||', 'everyone', '||comma||', 'ta', '||comma||', 'twirl', 'around', '||period||', '||return||', '||return||', 'allison:', '||leftparen||', 'weary', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'uh', '||dash||', '||dash||', 'listen', '||dash||', '||dash||', 'did', 'you', 'get', 'your', '||dash||', '||dash||', 'uh', '||dash||', '||dash||', "boss's", 'knick', 'ticket', '||comma||', 'for', 'kramer', '||questionmark||', '||return||', '||return||', 'allison:', '||leftparen||', 'digging', 'in', 'purse', '||rightparen||', 'yeah', '||comma||', 'uh', '||dash||', '||dash||', 'here', '||period||', '||leftparen||', 'hands', 'him', 'ticket', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'great', '||exclammark||', '||return||', '||return||', 'allison:', 'uh', '||period||', 'say', '||comma||', 'george', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'woo', '||exclammark||', 'courtside', '||exclammark||', '||leftparen||', 'mock', '||dash||', 'snide', '||rightparen||', 'is', 'that', 'the', 'best', 'you', 'could', 'do', '||questionmark||', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'allison:', '||leftparen||', 'sitting', '||rightparen||', 'george', '||period||', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'allison:', 'i', 'really', '||comma||', 'think', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pause', '||rightparen||', 'uh', '||dash||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'she', 'wants', 'to', 'talk', '||period||', '||return||', '||return||', 'george:', 'she', "doesn't", 'want', 'to', 'talk', '||comma||', 'she', 'needs', 'to', 'talk', '||period||', '||return||', '||return||', 'jerry:', 'nobody', 'needs', 'to', 'talk', '||period||', '||return||', '||return||', 'george:', 'who', 'would', 'want', 'to', '||period||', 'she', 'tried', 'to', 'end', 'it', 'with', 'me', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', "what'd", 'ya', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'her', 'i', 'was', 'out', "o'", 'soda', '||comma||', 'i', 'went', 'out', 'to', 'get', 'some', '||comma||', "an'", 'i', 'never', 'went', 'back', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pause', '||rightparen||', 'all', 'night', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'slept', 'at', 'my', "parents'", 'house', '||period||', '||return||', '||return||', 'jerry:', 'and', 'she', 'wants', 'to', 'break', 'up', 'with', 'you', '||period||', '||period||', '||return||', '||return||', 'george:', 'ha', '||exclammark||', '||leftparen||', 'snort', '||rightparen||', 'can', 'you', 'believe', 'it', '||questionmark||', '||leftparen||', 'amused', '||rightparen||', "i'm", 'supposed', 'to', 'be', "havin'", 'lunch', 'with', 'her', 'right', 'now', 'at', 'pomodoro', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'oh', '||period||', '||quotemark||', 'everybody', 'breaks', 'up', 'at', "pomodoro's", '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'so', '||questionmark||', "what'm", 'i', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'really', 'like', 'this', 'girl', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', 'like', 'the', 'ball', '||exclammark||', 'this', 'is', 'my', 'one', 'chance', 'to', 'make', 'a', 'great', 'entrance', '||exclammark||', 'my', 'whole', 'life', '||exclammark||', 'i', 'have', 'never', 'made', 'a', 'great', 'entrance', '||exclammark||', '||return||', '||return||', 'jerry:', "you've", 'made', 'some', 'fine', 'exits', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'admitting', '||rightparen||', 'all', 'right', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'do', 'you', 'do', '||questionmark||', 'you', "can't", 'keep', 'avoiding', 'her', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'resolved', '||rightparen||', 'why', 'not', '||period||', '||leftparen||', 'determined', '||rightparen||', 'if', 'she', "can't", 'find', 'me', '||comma||', 'she', "can't", 'break', 'up', 'with', 'me', '||period||', 'and', '||comma||', 'if', "we're", 'still', "goin'", 'out', '||comma||', 'she', 'has', 'to', 'gooo', 'to', 'the', 'ballll', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'suddenly', 'entering', '||rightparen||', 'hey', '||comma||', 'oh', '||dash||', '||dash||', 'listen', '||period||', 'did', 'you', 'get', 'my', 'ticket', 'from', 'allison', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'right', 'here', '||period||', '||leftparen||', 'hands', 'it', 'to', 'him', '||rightparen||', '||return||', '||return||', 'kramer:', 'all', 'right', '||exclammark||', 'yeah', '||period||', '||period||', 'courtside', '||period||', '||period||', 'whoa', '||exclammark||', "don't", 'let', 'this', 'girl', 'get', 'away', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'clipping', 'on', 'shades', '||rightparen||', 'ha', '||period||', '||period||', "she'll", 'have', 'to', 'find', 'me', 'first', '||period||', '||leftparen||', 'leaving', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'all', 'right', '||period||', '||rightparen||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'ah', '||questionmark||', 'oh', '||comma||', 'by', 'the', 'way', 'you', 'owe', 'mike', 'a', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'put', 'a', 'bet', 'down', 'for', 'ya', 'on', "tonight's", 'game', '||period||', 'yeah', '||comma||', 'if', 'the', 'knicks', 'beat', 'the', 'pacers', 'by', 'more', 'than', 'thirty', '||dash||', 'five', '||questionmark||', 'it', 'pays', 'ten', 'to', 'one', '||period||', 'oo', '||dash||', 'oo', '||exclammark||', "that's", 'some', 'sweet', 'action', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'i', "don't", 'want', 'any', '||quotemark||', 'sweet', 'action', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "couldn't", 'do', 'it', 'i', 'got', 'a', "gamblin'", 'problem', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'put', 'down', 'my', 'money', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'impatient', 'sigh', '||rightparen||', 'you', "don't", 'have', 'a', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'not', '||leftparen||', 'with', '||rightparen||', 'that', '||comma||', 'no', '||period||', '||period||', '||return||', '||return||', 'peggy:', 'susie', '||period||', 'susie', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'coming', 'in', '||rightparen||', 'uh', '||period||', '||period||', 'hi', '||comma||', 'peggy', '||period||', 'um', '||period||', '||period||', 'look', '||comma||', 'i', 'should', 'have', 'said', 'this', 'yesterday', '||comma||', 'but', '||dash||', '||dash||', '||return||', '||return||', 'peggy:', 'did', 'you', 'get', 'this', 'memo', 'from', 'elaine', 'benes', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'see', 'that', '||dash||', '||dash||', '||return||', '||return||', 'peggy:', '||leftparen||', 'preoccupied', '||rightparen||', 'you', 'know', '||comma||', "it's", 'amazing', 'peterman', "hasn't", 'fired', 'that', 'dolt', '||period||', 'she', 'practically', 'ran', 'the', 'company', 'into', 'the', 'gro', '||dash||', 'ound', '||period||', '||return||', '||return||', 'elaine:', 'well', '||period||', 'well', '||comma||', 'i', 'thought', 'she', 'did', 'a', 'pretty', 'good', 'job', '||period||', '||period||', '||return||', '||return||', 'peggy:', 'i', 'heard', 'she', 'was', 'a', 'disaster', '||comma||', 'suze', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'testy', '||comma||', 'leans', 'into', "peggy's", 'personal', 'space', '||rightparen||', 'look', '||dash||', 'it', '||period||', "it's", 'not', 'suze', '||period||', 'all', 'right', '||questionmark||', "it's", 'su', '||dash||', 'zie', '||period||', 'my', 'name', '||comma||', 'is', 'su', '||dash||', 'zie', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'tape', '||comma||', 'singing', '||rightparen||', '||quotemark||', 'believe', 'it', 'or', 'not', '||comma||', 'george', '||comma||', "isn't", 'at', 'home', '||comma||', 'please', 'leave', 'a', 'mes', '||dash||', 'saaage', 'at', 'the', 'beep', '||period||', 'i', 'must', 'be', 'out', 'or', "i'd", 'pick', 'up', 'the', 'pho', '||dash||', 'one', '||period||', 'where', 'could', 'i', 'be', '||questionmark||', 'believe', 'it', 'or', 'not', '||comma||', "i'm", 'not', 'hooome', '||period||', '||quotemark||', '||leftparen||', 'beep', '||rightparen||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'pick', 'up', '||period||', 'i', 'know', "you're", 'screening', 'for', 'allison', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'answers', 'phone', '||comma||', 'good', 'mood', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'coffee', 'shop', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "can't", '||period||', 'she', 'knows', 'i', 'go', 'there', '||period||', "it's", 'not', 'secure', '||period||', '||leftparen||', 'the', 'call', 'waiting', 'beeps', '||rightparen||', 'hey', '||comma||', 'i', 'got', 'another', 'call', "comin'", 'in', '||period||', 'i', 'gotta', 'let', 'the', 'machine', 'get', 'it', '||period||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'tape', '||comma||', 'singing', '||rightparen||', '||quotemark||', 'believe', 'it', 'or', 'not', '||comma||', 'george', '||comma||', "isn't", 'at', 'home', '||comma||', 'please', 'leave', 'a', 'mes', '||dash||', 'saaage', 'at', 'the', 'beep', '||period||', 'i', 'must', 'be', 'out', 'or', "i'd", 'pick', 'up', 'the', 'pho', '||dash||', 'one', '||period||', 'where', 'could', 'i', 'be', '||questionmark||', 'believe', 'it', 'or', 'not', '||comma||', "i'm", 'not', 'hooome', '||period||', '||quotemark||', '||leftparen||', 'beep', '||rightparen||', '||return||', '||return||', 'allison:', '||leftparen||', 'on', 'phone', 'machine', '||comma||', 'peeved', '||rightparen||', 'george', '||questionmark||', 'are', 'you', 'there', '||questionmark||', '||leftparen||', 'muttering', '||rightparen||', 'i', 'hate', 'that', 'stupid', 'message', '||period||', '||leftparen||', 'terse', '||rightparen||', 'i', 'know', "you're", 'avoiding', 'me', '||comma||', "i'm", 'at', 'the', 'office', '||comma||', 'please', 'call', 'me', '||comma||', "i've", 'gotta', 'talk', 'to', 'you', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'phone', '||rightparen||', 'hi', '||comma||', 'allison', '||questionmark||', 'oh', '||comma||', 'i', 'guess', "you're", 'not', 'at', 'home', '||period||', '||period||', 'i', 'probably', 'should', "'ave", 'tried', 'you', 'at', 'the', 'office', '||period||', 'anyway', '||comma||', 'good', 'to', 'hear', 'from', 'ya', '||comma||', 'really', 'looking', 'forward', 'to', 'the', 'ball', '||period||', '||period||', '||leftparen||', 'hangs', 'up', 'and', 'happily', 'chuckles', '||rightparen||', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'elaine:', 'can', 'you', 'believe', 'this', 'woman', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'ironic', 'outrage', '||rightparen||', 'the', 'nerve', '||period||', "talkin'", 'about', 'ya', 'behind', 'your', 'back', '||dash||', '||dash||', 'and', 'right', 'to', 'your', 'face', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||quotemark||', 'suze', '||exclammark||', '||quotemark||', 'i', 'mean', '||comma||', '||quotemark||', 'suzie', '||exclammark||', '||quotemark||', '||quotemark||', 'suzanne', '||exclammark||', '||quotemark||', '||quotemark||', 'suzanna', '||period||', '||quotemark||', 'fine', '||exclammark||', 'but', 'there', 'is', 'no', '||comma||', 'way', '||comma||', "i'm", 'gonna', 'be', 'a', 'suze', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', 'suze', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'tense', '||rightparen||', 'i', 'mean', '||dash||', '||dash||', 'what', 'am', 'i', '||dash||', '||dash||', 'some', 'pom', '||dash||', 'pom', '||dash||', "wavin'", 'backseat', 'bimbo', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'who', 'are', 'you', "describin'", '||questionmark||', '||return||', '||return||', 'elaine:', 'someone', 'i', 'know', '||exclammark||', '||return||', '||return||', 'jerry:', 'named', 'suze', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'still', 'sharon', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'comes', 'in', '||comma||', 'subdued', '||rightparen||', 'hey', '||period||', '||leftparen||', 'grabs', 'a', 'water', 'from', 'refrigerator', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'thought', 'you', 'went', 'to', 'the', 'game', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'i', 'was', 'kicked', 'out', 'for', "fightin'", 'with', 'one', 'of', 'the', 'players', '||period||', '||leftparen||', 'leaving', '||rightparen||', '||return||', '||return||', 'jerry:', 'wait', '||period||', 'way', '||dash||', '||dash||', 'way', '||dash||', '||dash||', 'way', '||dash||', '||dash||', 'way', '||dash||', '||dash||', 'way', '||dash||', '||dash||', 'way', '||dash||', '||dash||', 'wait', '||exclammark||', 'who', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stops', '||rightparen||', 'w', '||dash||', '||dash||', 'reggie', 'miller', '||period||', '||return||', '||return||', 'elaine:', 'cheryl', "miller's", 'brother', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'leaving', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||dash||', '||dash||', 'hey', '||dash||', '||dash||', 'hey', '||dash||', '||dash||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||exclammark||', 'what', 'happened', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stops', 'again', '||rightparen||', 'well', '||comma||', 'first', 'of', 'all', '||comma||', 'for', 'some', 'reason', '||comma||', 'they', 'started', 'the', 'game', 'an', 'hour', 'late', '||period||', 'and', 'uh', '||comma||', 'i', 'was', "sittin'", 'next', 'to', 'spike', 'lee', "an'", 'he', "an'", 'reggie', 'were', "jawin'", 'at', 'each', 'other', '||comma||', 'so', 'i', 'guess', 'i', 'got', 'involved', '||period||', '||leftparen||', 'leaving', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'same', 'time', 'as', 'jerry', '||rightparen||', '||dash||', '||dash||', 'wait', '||comma||', 'whoa', '||dash||', '||dash||', 'whoa', '||dash||', '||dash||', 'whoa', '||dash||', '||dash||', 'whoa', '||exclammark||', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'well', '||dash||', '||dash||', 'wait', '||dash||', '||dash||', 'wait', '||dash||', '||dash||', 'wait', '||dash||', '||dash||', 'wait', '||exclammark||', 'what', 'do', 'you', 'mean', '||quotemark||', 'involved', '||quotemark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stops', 'again', '||rightparen||', 'well', 'i', '||period||', '||period||', 'ran', 'out', 'onto', 'the', 'court', "an'", 'threw', 'a', 'hotdog', 'at', 'reggie', 'miller', '||period||', '||quotemark||', 'involved', '||period||', '||quotemark||', "an'", 'they', 'threw', 'meee', '||comma||', "an'", 'reggie', '||comma||', "an'", 'spike', 'out', "o'", 'the', 'game', '||period||', '||return||', '||return||', 'elaine:', 'so', "that's", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', '||comma||', 'well', 'i', '||comma||', 'felt', '||comma||', 'pretty', 'bad', 'about', 'everything', "an'", 'uh', '||comma||', 'then', 'the', 'three', 'of', 'us', '||comma||', 'we', 'went', 'to', 'a', 'strip', 'club', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'can', 'you', 'believe', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'know', 'cheryl', "miller's", 'brother', 'played', 'basketball', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'suddenly', 'comes', 'back', '||comma||', 'excited', '||rightparen||', 'the', 'knicks', 'killed', "'em", 'a', 'hundred', "an'", 'ten', 'to', 'seventy', 'three', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||dash||', '||dash||', 'of', 'course', '||comma||', 'without', 'reggie', 'miller', '||comma||', "it's", 'a', 'blowout', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'jerry', '||dash||', '||dash||', "that's", 'thirty', '||dash||', 'seven', 'points', '||exclammark||', 'the', 'knicks', 'covered', '||exclammark||', 'you', 'won', '||exclammark||', 'see', '||comma||', "that's", 'a', 'cooool', '||dash||', 'g', '||comma||', 'daddy', '||dash||', 'o', '||dash||', '||dash||', 'now', 'you', 'gotta', 'let', 'it', 'riiiide', '||exclammark||', '||return||', '||return||', 'jerry:', 'on', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'real', 'addict', '||rightparen||', 'ah', '||comma||', 'come', '||dash||', 'on', '||comma||', 'jerry', '||dash||', '||dash||', 'i', "don't", 'wanna', 'lose', 'this', 'feeling', '||period||', 'hey', '||dash||', '||dash||', "let's", 'go', 'down', 'to', 'the', 'o', '||period||', 't', '||period||', 'b', '||period||', "we'll", 'put', 'some', 'money', 'on', 'the', 'ponies', '||period||', '||leftparen||', 'getting', 'out', 'pocket', '||dash||', 'watch', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', 'watch', '||rightparen||', 'ssssh', '||dash||', '||dash||', 'ah', '||exclammark||', 'they', 'just', 'closed', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', '||rightparen||', 'oh', '||period||', 'too', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||questionmark||', 'you', 'wanted', 'to', 'see', 'me', '||questionmark||', '||return||', '||return||', 'peterman:', 'apparently', 'peggy', '||dash||', '||dash||', 'down', 'in', 'design', '||questionmark||', '||dash||', '||dash||', 'got', 'into', 'a', 'liiiittle', 'bit', 'of', 'a', 'tiff', 'yesterday', 'with', 'somebody', 'named', '||comma||', '||quotemark||', 'susie', '||quotemark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'su', '||dash||', 'sie', '||questionmark||', '||return||', '||return||', 'peterman:', 'yes', '||period||', 'between', 'you', '||comma||', 'me', 'and', 'the', 'lamppost', '||period||', 'and', 'the', 'desk', '||period||', 'peggy', 'says', 'this', '||quotemark||', 'suze', '||quotemark||', "isn't", 'much', 'of', 'a', 'worker', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'nit', '||rightparen||', "it's", 'susie', '||period||', '||return||', '||return||', 'peterman:', 'nevertheless', '||comma||', 'elaine', '||period||', 'the', 'house', '||comma||', 'of', 'peterman', 'is', 'in', 'disorder', '||period||', 'first', 'thing', 'tomorrow', 'morning', 'i', 'want', 'to', 'see', 'you', '||comma||', 'peggy', '||comma||', 'and', '||comma||', 'susie', 'right', 'here', '||comma||', 'in', 'my', 'office', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dismayed', '||rightparen||', 'ah', '||comma||', 'all', "o'", '||dash||', '||dash||', 'all', 'of', 'us', '||questionmark||', '||return||', '||return||', 'kramer:', 'allison', '||period||', 'hi', '||period||', 'uh', '||dash||', '||dash||', 'listen', "i'm", 'really', 'sorry', 'about', 'what', 'happened', 'at', 'the', 'game', 'last', 'night', '||period||', 'listen', '||dash||', '||dash||', 'could', 'i', 'have', 'a', 'ticket', 'tonight', '||dash||', '||dash||', "'cause", 'the', 'rockets', 'are', 'in', 'town', "an'", 'that', '||comma||', 'hakeem', 'olajuwon', '||questionmark||', 'ohhh', '||dash||', '||dash||', "he's", 'got', 'a', 'real', 'attitude', '||period||', '||return||', '||return||', 'allison:', 'kramer', '||questionmark||', 'have', 'you', 'seen', 'george', '||comma||', 'around', '||questionmark||', 'i', "can't", 'get', 'a', 'hold', 'of', 'him', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'well', '||comma||', 'he', '||dash||', '||dash||', 'uh', '||dash||', '||dash||', 'visits', 'the', 'guy', 'across', 'the', 'hall', 'from', 'me', 'like', 'every', 'ten', 'minutes', '||period||', '||return||', '||return||', 'allison:', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'singing', '||rightparen||', 'believe', 'it', 'or', 'not', '||comma||', 'geooorge', "isn't", 'at', 'home', '||period||', '||return||', '||return||', 'mike:', '||leftparen||', 'comes', 'up', '||rightparen||', 'hey', '||period||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'mike', '||period||', '||period||', 'how', "'bout", 'those', 'knicks', '||questionmark||', '||return||', '||return||', 'mike:', '||leftparen||', 'a', 'little', 'anxious', '||rightparen||', 'yeah', '||exclammark||', 'how', "'bout", "'em", '||questionmark||', 'ha', 'ha', '||period||', 'look', '||comma||', 'jerry', '||period||', 'i', "can't", 'pay', 'you', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'mike:', "'cause", 'i', "don't", 'have', 'the', 'money', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'mike', '||period||', 'you', 'say', "you're", 'a', 'bookie', '||questionmark||', 'you', 'take', 'a', 'bet', "an'", 'then', 'you', "can't", 'pay', '||questionmark||', 'i', "don't", 'know', '||comma||', 'mike', '||comma||', 'to', 'me', 'it', 'sounds', 'a', 'little', '||comma||', 'how', 'you', 'say', '||period||', '||period||', '||quotemark||', 'phony', '||quotemark||', '||questionmark||', '||return||', '||return||', 'mike:', 'just', 'give', 'me', "'til", 'friday', '||period||', 'please', '||period||', 'please', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', "you're", 'supposed', 'to', 'be', 'the', 'bookie', '||period||', 'act', 'like', 'one', '||period||', '||return||', '||return||', 'mike:', "i'm", 'sorry', '||period||', 'uh', '||dash||', '||dash||', 'oh', 'here', '||dash||', '||dash||', 'let', 'me', 'give', 'you', 'a', 'hand', 'with', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'shut', 'the', 'trunk', 'hood', '||rightparen||', 'something', 'wrong', 'with', 'this', 'trunk', '||period||', '||return||', '||return||', 'mike:', 'oh', '||period||', 'let', 'me', 'see', '||period||', '||return||', '||return||', 'george:', 'so', '||dash||', '||dash||', 'ah', '||comma||', 'kramer', '||period||', "why'd", 'you', 'ask', 'me', 'out', 'to', 'dinner', '||questionmark||', '||leftparen||', 'amused', '||rightparen||', "an'", 'why', 'pomodoro', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quiet', '||comma||', 'delicately', '||rightparen||', 'allison', 'spoke', 'to', 'me', '||comma||', 'and', 'um', '||period||', 'she', 'wanted', 'me', 'to', 'speak', 'to', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'quiet', '||rightparen||', 'uh', '||dash||', 'oh', '||period||', '||return||', '||return||', 'kramer:', 'we', 'all', 'know', 'that', 'this', 'relationship', "isn't", 'working', '||period||', 'so', 'allison', "an'", 'i', 'think', 'that', 'the', 'best', 'thing', 'to', 'do', 'is', 'just', '||period||', '||period||', 'make', 'a', '||comma||', 'clean', 'break', '||period||', '||return||', '||return||', 'george:', "can't", 'we', 'discuss', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reasoning', '||rightparen||', 'we', 'just', "don't", 'think', "you're", 'ready', 'for', 'a', 'serious', 'relationship', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'dismayed', '||rightparen||', 'i', "didn't", 'even', 'know', 'you', 'wanted', 'to', 'get', 'serious', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'dismayed', '||rightparen||', 'so', 'what', 'am', 'i', 'in', 'this', 'for', '||questionmark||', 'you', 'know', '||comma||', "i'm", 'getting', 'to', 'a', 'point', 'in', 'my', 'life', 'where', 'i', 'need', 'something', 'more', 'than', 'just', '||period||', '||period||', 'a', 'good', 'time', '||period||', '||leftparen||', 'is', 'tearing', 'up', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'pause', '||rightparen||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'wha', '||dash||', '||dash||', 'me', '||questionmark||', 'no', '||exclammark||', 'no', '||period||', 'but', 'she', 'is', '||period||', '||return||', '||return||', 'george:', 'i', '||comma||', 'i', "can't", 'believe', 'this', 'is', 'happening', '||exclammark||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "we're", 'sorry', '||period||', '||return||', '||return||', 'george:', 'krama', '||period||', 'please', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaves', '||comma||', 'upset', '||rightparen||', 'waaa', '||dash||', 'aa', '||dash||', '||dash||', 'aa', '||exclammark||', "i'm", 'sorry', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'entering', '||comma||', 'uneasy', '||rightparen||', 'mr', '||period||', 'peterman', '||comma||', 'peggy', '||comma||', 'i', '||period||', '||period||', 'guess', 'we', '||comma||', 'should', 'just', 'get', 'this', 'over', 'with', '||period||', '||leftparen||', 'sits', '||rightparen||', '||return||', '||return||', 'peterman:', 'just', 'hold', 'on', 'a', 'minute', '||period||', 'still', 'one', 'short', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'no', '||comma||', "we're", 'not', '||dash||', '||dash||', '||return||', '||return||', 'peggy:', 'susie', 'has', 'been', 'very', 'rude', 'to', 'me', '||period||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'elaine', '||comma||', 'has', 'nothing', 'but', 'good', 'things', 'to', 'say', 'about', 'susie', '||period||', '||return||', '||return||', 'elaine:', 'look', '||period||', '||leftparen||', 'engaging', 'smile', '||rightparen||', 'we', "don't", 'have', 'to', 'name', 'names', '||comma||', 'or', '||comma||', 'point', 'fingers', '||comma||', 'or', '||period||', '||period||', '||leftparen||', 'breathes', 'in', '||rightparen||', 'name', 'names', '||exclammark||', '||leftparen||', 'indicating', 'empty', 'chair', '||rightparen||', 'me', 'and', 'her', '||comma||', 'have', 'had', 'our', 'problems', '||period||', 'she', 'and', 'i', 'have', 'had', 'our', 'problems', '||exclammark||', 'you', 'and', 'i', '||comma||', 'and', 'she', 'and', 'you', '||dash||', '||dash||', '||return||', '||return||', 'peterman:', "don't", 'you', 'drag', 'me', 'into', 'this', '||exclammark||', 'this', 'is', 'between', 'you', 'and', 'her', '||comma||', 'and', 'her', '||period||', '||leftparen||', 'indicating', 'empty', 'chair', '||rightparen||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', 'and', 'i', 'am', 'convinced', 'that', 'if', 'she', 'were', 'here', 'with', 'us', 'today', '||comma||', 'she', 'would', 'agree', 'with', 'me', '||comma||', 'too', '||period||', '||return||', '||return||', 'peterman:', 'who', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'uh', '||dash||', 'oh', '||rightparen||', 'her', '||questionmark||', '||return||', '||return||', 'peterman:', 'where', 'is', 'she', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'ah', '||dash||', '||dash||', 'this', 'is', 'part', 'of', 'the', 'problem', '||exclammark||', '||return||', '||return||', 'peggy:', 'iiii', 'thought', 'i', 'was', '||comma||', 'part', 'of', 'this', 'problem', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'smiling', '||comma||', 'convincing', '||rightparen||', "you're", 'a', '||comma||', 'huuge', 'part', 'of', 'the', 'problem', '||period||', 'but', '||comma||', 'i', 'think', 'that', 'at', "it's", 'core', '||comma||', 'this', 'is', 'a', 'susie', '||dash||', 'and', '||dash||', 'elaine', 'problem', 'that', 'requires', '||comma||', 'a', 'susie', '||dash||', 'and', '||dash||', 'elaine', 'solution', '||exclammark||', 'and', '||comma||', 'who', 'better', 'to', 'do', 'that', 'than', '||period||', '||period||', 'elaine', 'and', 'susie', '||exclammark||', 'susie', 'and', 'elaine', '||exclammark||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'now', 'that', 'we', 'have', 'that', 'cleared', 'up', '||period||', '||period||', 'why', "don't", 'the', 'three', 'of', 'us', 'have', 'lunch', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'feigning', 'hearing', 'something', '||rightparen||', 'what', '||questionmark||', '||exclammark||', 'oh', '||exclammark||', 'oh', '||comma||', "i'm", '||comma||', 'coming', '||exclammark||', 'i', '||dash||', '||dash||', 'i', 'gotta', 'go', '||period||', '||leftparen||', 'rushes', 'out', '||exclammark||', '||rightparen||', '||return||', '||return||', 'peterman:', 'she', 'is', 'the', 'best', '||period||', 'what', 'was', 'your', 'name', 'again', '||period||', '||return||', '||return||', 'kramer:', "mike's", 'outside', '||period||', 'he', 'wants', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', 'why', "doesn't", 'he', 'just', 'come', 'in', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "he's", 'scared', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'why', 'is', 'he', 'scared', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sighs', '||comma||', 'opens', 'door', '||rightparen||', 'come', 'on', 'in', '||period||', 'did', 'you', 'do', 'this', '||questionmark||', '||leftparen||', 'mike', 'has', 'two', 'hand', 'casts', 'on', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'but', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', '||dash||', 'ah', '||dash||', '||dash||', 'ah', '||exclammark||', 'you', 'broke', 'his', 'thumbs', '||period||', '||return||', '||return||', 'jerry:', 'it', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'is', 'that', 'what', 'you', 'call', 'it', 'when', '||comma||', 'somebody', "doesn't", 'pay', 'up', '||questionmark||', '||return||', '||return||', 'mike:', '||leftparen||', 'desperate', '||rightparen||', "i'll", 'get', 'you', 'the', 'money', '||comma||', 'jerry', '||period||', 'i', 'got', 'a', 'hundred', 'dollars', 'in', 'my', 'front', 'pocket', 'if', 'you', 'want', 'to', '||comma||', 'reach', 'in', "an'", 'take', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hands', 'up', '||rightparen||', 'i', "don't", 'want', 'it', 'that', 'way', '||period||', '||return||', '||return||', 'kramer:', 'nuh', '||exclammark||', 'okay', 'jerry', '||comma||', 'how', 'about', 'if', 'mike', 'fixes', 'your', 'truuunk', '||comma||', 'we', 'call', 'it', 'even', '||comma||', "an'", 'this', 'way', '||comma||', 'nobody', 'has', 'to', 'get', 'hurt', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'whatever', '||rightparen||', 'fine', '||period||', '||period||', '||return||', '||return||', 'mike:', 'oh', '||dash||', '||dash||', 'uh', '||dash||', '||dash||', 'thank', 'you', '||comma||', 'jerry', '||comma||', 'thank', 'you', '||exclammark||', 'i', "won't", 'forget', 'this', '||comma||', "i'm", 'gonna', 'fix', 'your', 'trunk', 'good', '||dash||', '||dash||', 'real', 'good', '||exclammark||', '||return||', '||return||', 'kramer:', 'see', 'that', 'was', 'nice', '||comma||', 'jerry', '||period||', '||leftparen||', 'under', 'breath', '||rightparen||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', "i'm", 'the', 'one', 'who', 'broke', 'your', 'trunk', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "it's", 'just', 'a', 'car', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'down', '||comma||', 'nodding', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'george:', "it's", '||comma||', 'funny', "runnin'", 'into', 'you', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'embarrassed/self', '||dash||', 'conscious', 'about', 'his', 'gut', '||rightparen||', 'do', 'i', '||questionmark||', 'thanks', '||period||', '||period||', 'you', 'too', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'ooo', '||comma||', 'yeah', '||period||', '||period||', '||leftparen||', 'indicating', 'his', 'face', '||comma||', 'embarrassed', '||rightparen||', '||leftparen||', 'heh', '||comma||', 'right', '||period||', '||rightparen||', 'you', 'know', '||comma||', "it's", "gettin'", 'kind', 'of', 'late', '||comma||', 'i', '||comma||', 'i', 'really', 'have', 'to', 'be', 'going', '||comma||', 'so', '||comma||', 'uh', '||comma||', "it's", 'nice', 'seeing', 'you', 'again', '||comma||', 'all', 'right', '||dash||', '||dash||', '||return||', '||return||', 'george:', '||leftparen||', 'sad', '||rightparen||', 'yeah', '||exclammark||', 'yeah', '||period||', 'hey', '||dash||', '||dash||', 'hey', 'you', '||comma||', 'you', 'know', '||period||', '||period||', 'maybe', "i'll", 'call', 'you', 'sometime', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "it's", 'over', '||period||', "it's", 'just', '||period||', '||period||', "it's", 'over', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'pause', '||rightparen||', 'what', 'do', 'you', 'think', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'wistful', '||rightparen||', 'i', "don't", 'know', '||comma||', 'i', 'just', 'see', 'you', 'guys', 'together', '||period||', '||return||', '||return||', 'mike:', 'thumbs', '||exclammark||', '||return||', '||return||', 'mike:', '||leftparen||', 'from', 'inside', 'the', 'trunk', '||rightparen||', 'oh', '||exclammark||', 'help', '||exclammark||', 'somebody', '||comma||', 'help', '||exclammark||', 'help', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'peterman', 'bought', 'it', '||questionmark||', 'i', "can't", 'believe', 'you', 'got', 'away', 'with', 'that', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'very', 'fortunate', 'to', 'be', 'surrounded', 'by', 'such', 'stupidity', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'know', 'how', 'you', 'feel', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'hear', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', "trunk's", 'broken', '||comma||', "it's", 'rattling', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'i', "don't", 'know', 'how', 'much', 'longer', 'i', 'can', 'keep', 'this', 'up', '||period||', "they're", 'starting', 'to', 'give', 'susie', 'assignments', 'now', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "there's", 'only', 'one', 'thing', 'to', 'do', '||period||', 'eliminate', 'her', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'firmly', 'matter', '||dash||', 'of', '||dash||', 'fact', '||rightparen||', 'get', 'rid', 'of', 'susie', '||period||', 'make', 'her', 'disappear', '||period||', '||return||', '||return||', 'elaine:', 'i', 'kinda', 'like', 'her', '||period||', '||return||', '||return||', 'jerry:', "she's", 'gooone', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'impatient', '||rightparen||', 'gone', '||exclammark||', '||leftparen||', 'starts', 'maniacally', 'laughing', '||rightparen||', '||leftparen||', 'briefly', 'stops', 'to', 'point', 'and', 'explain', '||rightparen||', 'that', 'bumper', 'sticker', '||period||', '||return||', '||return||', 'mike:', '||leftparen||', 'desperately', 'anxious', '||rightparen||', 'oh', 'god', '||comma||', "i'm", 'in', 'trouble', '||period||', '||period||', '||return||', '||return||', 'george:', 'krama', '||period||', 'open', 'up', '||exclammark||', 'i', '||dash||', '||dash||', 'i', 'know', "you're", 'in', 'there', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'opens', 'door', '||rightparen||', 'uh', '||dash||', '||dash||', 'george', '||comma||', 'uh', '||dash||', '||dash||', 'uh', '||dash||', '||dash||', "it's", 'five', "o'clock", 'in', 'the', 'morning', '||comma||', "what's", 'the', 'matter', 'with', 'you', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sad', '||rightparen||', "it's", 'only', 'four', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'i', '||dash||', '||dash||', "i've", 'been', '||comma||', "walkin'", 'around', 'all', 'night', '||period||', '||period||', "i've", 'been', "thinkin'", 'about', 'allison', 'and', 'me', '||period||', '||period||', "an'", 'you', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'oh', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'please', '||period||', 'give', 'me', 'another', 'chance', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'regretfully', '||rightparen||', 'uh', '||period||', '||period||', 'i', 'know', "i'm", 'gonna', 'regret', 'this', '||period||', '||leftparen||', 'sigh', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'grateful', '||comma||', 'relieved', '||rightparen||', 'thank', 'you', '||exclammark||', "i'm", 'gonna', 'make', 'you', 'both', 'so', 'happy', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', "i'll", 'see', 'ya', 'later', '||period||', '||leftparen||', 'shuts', 'door', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'delighted', '||exclammark||', '||rightparen||', 'woooo', '||exclammark||', '||return||', '||return||', 'peterman:', 'elaine', '||exclammark||', "where's", 'susie', '||questionmark||', 'i', 'want', 'her', 'to', 'head', 'up', 'our', 'new', 'fingerless', 'glove', 'division', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quiet', '||rightparen||', 'oh', '||comma||', 'but', 'i', 'thought', 'i', 'was', 'in', 'line', 'for', 'that', 'assignment', '||period||', '||return||', '||return||', 'peterman:', 'mmmmm', '||dash||', '||dash||', 'nah', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'then', '||comma||', 'i', 'was', 'gonna', 'wait', '||comma||', 'to', 'tell', 'ya', 'this', '||comma||', 'but', '||period||', '||period||', 'last', 'night', '||comma||', 'susie', '||period||', '||period||', '||leftparen||', 'difficult', 'subject', '||comma||', 'quiet', '||rightparen||', 'she', 'took', 'her', 'own', 'life', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'happy', '||comma||', 'enthused', '||rightparen||', "we're", "takin'", 'george', 'back', '||dash||', '||dash||', '||return||', '||return||', 'allison:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "he's", 'gonna', 'make', 'us', 'very', 'happy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quiet', '||rightparen||', 'look', 'at', 'this', 'turnout', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'quiet', '||rightparen||', 'where', 'did', 'susie', 'find', 'the', 'time', 'to', 'meet', 'all', 'these', 'people', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'irritated', '||rightparen||', 'your', "funeral's", 'not', 'gonna', 'come', 'close', 'to', 'this', '||period||', '||return||', '||return||', 'peggy:', '||leftparen||', 'to', 'herself', '||rightparen||', 'oh', 'my', 'god', '||exclammark||', '||leftparen||', 'quiet', '||rightparen||', 'susie', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quiet', '||rightparen||', 'oh', '||comma||', 'oh', '||dash||', '||dash||', 'ho', '||dash||', '||dash||', "i'm", 'not', 'susie', '||period||', '||period||', "i'm", 'elaine', '||period||', '||return||', '||return||', 'peggy:', 'but', "i've", 'been', 'calling', 'you', 'susie', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', "hadn't", 'noticed', '||exclammark||', 'excuse', 'me', '||period||', '||leftparen||', "she's", 'going', 'to', 'the', 'podium', '||rightparen||', '||return||', '||return||', 'peggy:', 'i', 'guess', 'i', 'never', 'met', 'susie', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'privately', 'amused', '||rightparen||', 'suze', '||questionmark||', 'i', 'actually', 'had', 'a', 'little', 'thing', 'with', 'her', 'for', 'a', 'while', '||period||', '||leftparen||', 'indicating', 'elaine', '||rightparen||', 'her', 'too', '||period||', '||return||', '||return||', 'elaine:', 'what', 'can', 'you', 'say', 'about', 'a', 'girl', 'like', 'susie', '||questionmark||', '||leftparen||', 'she', "doesn't", 'know', '||period||', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', "where's", 'uh', '||comma||', "where's", 'allison', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'allison', '||comma||', 'she', "didn't", 'want', 'to', 'come', '||period||', '||return||', '||return||', 'george:', 'but', 'you', 'took', 'me', 'back', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||comma||', 'i', 'did', '||comma||', 'but', "she's", 'a', 'tough', 'nut', '||period||', 'how', "d'ya", 'like', 'the', 'tuxedo', '||period||', "it's", 'a', 'rental', 'but', "i've", 'had', 'it', 'for', 'fifteen', 'years', '||period||', 'all', 'right', '||comma||', 'eh', '||period||', '||leftparen||', 'heading', 'in', '||rightparen||', '||return||', '||return||', 'george:', 'where', 'are', 'you', "goin'", '||period||', '||period||', '||return||', '||return||', 'kramer:', 'the', 'ball', '||comma||', 'silly', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'afraid', 'not', '||rightparen||', 'no', 'no', '||comma||', 'no', 'no', 'no', '||period||', "you're", 'not', "goin'", 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', 'george', '||period||', 'i', 'thought', 'you', 'were', 'gonna', 'change', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'impatient', '||rightparen||', 'for', 'her', '||period||', 'not', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'light', 'admonishing', '||comma||', 'under', 'breath', '||rightparen||', "let's", 'just', 'try', '||comma||', "an'", 'have', 'a', 'nice', 'time', 'for', 'once', '||comma||', "an'", "we'll", 'talk', 'about', 'this', 'when', 'we', 'get', 'home', '||period||', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'look', '||dash||', '||dash||', 'wait', '||dash||', '||dash||', 'wait', '||dash||', '||dash||', 'krama', '||dash||', '||dash||', 'wait', '||comma||', 'wait', 'a', 'minute', '||comma||', 'you', 'are', 'not', '||period||', 'you', 'are', 'not', "goin'", 'in', '||period||', 'ah', '||dash||', 'ahhh', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'wow', '||exclammark||', 'what', 'an', '||comma||', 'entrance', '||exclammark||', '||leftparen||', 'friendly', '||comma||', 'to', 'george', '||rightparen||', 'and', 'eh', '||comma||', 'who', 'might', 'this', 'be', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'with', 'him', '||period||', '||return||', '||return||', 'wilhelm:', 'oh', '||period||', 'ah', '||dash||', 'ha', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'and', '||period||', '||period||', 'also', '||comma||', 'much', 'like', 'me', '||comma||', 'susie', 'hated', 'going', 'to', 'the', '||comma||', 'market', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||exclammark||', 'may', 'i', 'say', 'a', 'few', 'words', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||comma||', 'yes', '||comma||', 'mr', '||period||', 'peterman', '||period||', '||leftparen||', 'steps', 'down', '||rightparen||', '||return||', '||return||', 'peterman:', '||leftparen||', 'steps', 'up', 'to', 'the', 'podium', '||comma||', 'refreshed', '||rightparen||', 'ahhh', '||period||', 'i', "don't", 'think', "i'll", 'ever', 'be', 'able', 'to', 'forget', 'susie', '||dash||', '||dash||', 'ahhh', '||period||', 'and', 'most', 'of', 'all', '||comma||', 'i', 'will', 'never', '||comma||', 'forget', 'that', 'one', 'night', '||period||', 'working', 'late', 'on', 'the', 'catalogue', '||period||', 'juuust', 'the', 'two', 'of', 'us', '||period||', 'and', 'we', 'surrendered', 'to', 'temptation', '||period||', 'and', 'it', 'was', 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'proud', 'to', 'peggy', '||comma||', 'under', 'his', 'breath', '||rightparen||', 'yeah', '||comma||', 'but', 'he', "didn't", 'sleep', 'with', 'both', 'of', "'em", '||period||', '||leftparen||', 'winks', '||rightparen||', '||return||', '||return||', 'peterman:', 'but', 'iiii', 'never', 'heard', 'her', 'cries', 'for', 'help', '||period||', '||leftparen||', 'sighs', '||rightparen||', "an'", 'nowww', '||period||', '||period||', 'susie', 'is', 'gone', '||period||', '||return||', '||return||', 'mike:', '||leftparen||', 'running', 'in', '||comma||', 'still', 'hoarse', '||comma||', 'desperate', '||exclammark||', '||rightparen||', 'hold', 'on', '||exclammark||', 'hol', '||dash||', '||dash||', 'on', '||exclammark||', 'susie', "didn't", 'commit', 'suicide', '||exclammark||', '||leftparen||', 'rushes', 'up', 'to', 'podium', '||exclammark||', '||rightparen||', 'she', 'was', 'murdered', '||comma||', 'by', 'jerry', '||comma||', 'sein', '||dash||', 'feld', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smugly', '||comma||', 'under', '||dash||', 'his', '||dash||', 'breath', '||rightparen||', 'not', 'only', 'that', '||comma||', 'i', 'broke', 'his', 'thumbs', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||questionmark||', 'guess', 'what', '||period||', "i've", 'decided', 'to', 'form', 'a', 'charitable', 'foundation', '||comma||', 'in', "susie's", 'honor', '||period||', 'and', 'as', "susie's", 'best', 'friend', '||comma||', 'i', 'want', 'you', 'to', 'be', 'involved', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||period||', '||period||', '||leftparen||', 'leaning', 'forward', '||comma||', 'whispering', '||rightparen||', "i'm", 'susie', '||period||', '||period||', "she's", 'me', '||period||', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'leans', 'forward', '||comma||', 'whispers', 'carefully', '||rightparen||', 'i', 'feel', 'the', 'same', 'way', '||period||', '||leftparen||', 'announcing', '||rightparen||', 'and', "that's", 'why', 'this', 'foundation', 'will', 'meet', 'around', 'your', 'schedule', '||period||', 'nights', '||exclammark||', 'weekends', '||exclammark||', 'every', '||comma||', 'free', 'moment', 'you', 'have', '||period||', '||leftparen||', 'leaving', '||comma||', 'pats', 'her', 'shoulders', 'confidently', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looks', 'up', '||comma||', 'screaming', 'in', 'frustration', '||exclammark||', '||rightparen||', 'suuuuuuuuuuze', '||exclammark||', '||return||', '||return||', "[jenna's", 'apartment:', 'bathroom]', '||return||', '||return||', 'jenna:', 'morning', '||period||', '||return||', '||return||', 'jerry:', 'morning', '||period||', '||return||', '||return||', 'jenna:', 'hope', 'you', "don't", 'mind', 'baking', 'soda', 'flavour', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'applying', 'paste', 'to', 'brush', '||rightparen||', 'ah', '||comma||', 'baking', 'soda', '||period||', 'annoying', 'little', 'product', '||period||', "'i", 'can', 'do', 'this', '||period||', 'i', 'can', 'do', 'that', '||period||', "'", 'why', "doesn't", 'this', 'stuff', 'just', 'shut', 'up', '||questionmark||', '||return||', '||return||', 'jenna:', "i'm", 'gonna', 'grab', 'you', 'a', 'towel', '||period||', '||return||', '||return||', 'jerry:', 'ooh', '||dash||', 'ooh', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', 'she', 'used', 'the', 'toothbrush', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'said', 'you', 'grabbed', 'it', 'outta', 'there', 'real', 'fast', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', "i'm", 'sure', 'whatever', 'germs', 'it', 'landed', 'on', 'were', 'knocked', 'out', '||comma||', 'and', 'by', 'the', 'time', 'the', 'rest', 'of', 'them', 'realised', 'what', 'was', 'going', 'on', '||comma||', 'you', 'had', 'already', 'grabbed', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', 'how', 'many', 'years', 'of', 'med', 'school', 'did', 'you', 'have', '||questionmark||', '||return||', '||return||', 'george:', 'was', 'she', 'mad', '||questionmark||', '||return||', '||return||', 'george:', 'you', "didn't", 'tell', 'her', '||period||', '||return||', '||return||', 'jerry:', "jenna's", 'like', 'me', '||period||', "she's", 'very', '||period||', '||period||', '||period||', '||leftparen||', 'searches', 'for', 'word', '||rightparen||', '||return||', '||return||', 'george:', 'finicky', '||questionmark||', 'prissy', '||questionmark||', 'fastidious', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'take', 'fastidious', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'ahh', '||comma||', 'steinbrenner', 'gave', "'em", 'to', 'us', '||comma||', 'in', 'honour', 'of', 'phil', 'rizzuto', 'being', 'inducted', 'into', 'the', 'hall', 'of', 'fame', '||period||', '||return||', '||return||', 'head:', 'holy', 'cow', '||exclammark||', '||return||', '||return||', 'jerry:', 'they', "don't", 'actually', 'have', 'to', 'squeeze', 'his', 'head', 'to', 'get', 'him', 'to', 'say', "'holy", "cow'", '||comma||', 'do', 'they', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'the', 'last', 'few', 'innings', 'of', 'a', 'double', '||dash||', 'header', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'look', 'at', 'this', '||period||', "i'm", 'in', 'the', 'passing', 'lane', 'of', 'the', 'arthur', 'berkhardt', 'expressway', '||comma||', 'going', 'seventy', 'and', '||leftparen||', 'makes', 'impact', 'sound', '||dash||', 'pckergh', '||exclammark||', '||rightparen||', 'dragged', 'this', 'thing', 'for', 'five', 'exits', '||period||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'pull', 'over', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'was', 'draughting', 'behind', 'a', 'semi', '||period||', 'i', "didn't", 'wanna', 'lose', 'him', '||period||', 'the', 'infrastructure', '||comma||', 'jerry', '||comma||', "it's", 'crumbling', '||period||', '||return||', '||return||', 'head:', 'holy', 'cow', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'look', 'at', 'that', '||period||', 'a', 'talking', 'nixon', '||period||', '||return||', '||return||', 'owner:', 'china', 'panda', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "i'd", 'like', 'to', 'place', 'an', 'order', '||period||', '||return||', '||return||', 'owner:', 'ah', 'yes', '||comma||', 'what', 'you', 'like', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'supreme', 'flounder', '||comma||', 'it', 'says', 'first', 'time', 'served', 'in', 'america', '||period||', 'is', 'that', 'true', '||questionmark||', '||return||', '||return||', 'owner:', 'what', 'number', '||questionmark||', '||return||', '||return||', 'elaine:', 'forty', '||dash||', 'seven', '||period||', '||return||', '||return||', 'owner:', 'yeah', '||comma||', 'first', 'time', '||period||', 'what', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', "that's", 'it', '||period||', '||return||', '||return||', 'owner:', 'address', '||questionmark||', '||return||', '||return||', 'elaine:', 'seventy', '||dash||', 'eight', '||comma||', 'west', 'eighty', '||dash||', 'sixth', 'street', '||period||', 'apartment', 'three', 'e', '||period||', '||return||', '||return||', 'owner:', "that's", 'southside', '||period||', 'sorry', '||comma||', 'we', "don't", 'deliver', 'below', 'eighty', '||dash||', 'sixth', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'below', '||period||', '||return||', '||return||', 'owner:', 'yes', 'you', 'are', '||period||', 'street', 'itself', 'is', 'boundary', '||period||', '||return||', '||return||', 'elaine:', 'your', 'guy', "can't", 'cross', 'to', 'my', 'side', '||questionmark||', '||return||', '||return||', 'owner:', 'if', 'we', 'deliver', 'to', 'you', '||comma||', 'then', 'what', '||questionmark||', 'eighty', '||dash||', 'fifth', 'street', '||comma||', 'wall', 'street', '||comma||', 'mexico', '||comma||', 'eighty', '||dash||', 'fourth', 'street', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'fine', '||period||', "i'll", 'just', 'cross', 'and', 'meet', 'him', '||period||', '||return||', '||return||', 'owner:', 'sorry', '||comma||', 'food', 'only', 'for', 'those', 'who', 'live', 'within', 'boundary', '||period||', '||leftparen||', 'slams', 'down', 'phone', '||rightparen||', '||return||', '||return||', 'owner:', '||leftparen||', 'picks', 'up', 'phone', '||rightparen||', 'china', 'panda', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'using', 'silly', 'voice', '||rightparen||', 'uh', '||comma||', 'yeah', 'yeah', '||period||', "i'd", 'like', 'to', 'place', 'an', 'order', '||period||', '||return||', '||return||', 'owner:', 'ah', '||comma||', 'what', 'you', 'like', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'a', 'poppa', '||period||', '||return||', '||return||', 'jerry:', 'bring', 'it', 'on', '||period||', "nothing's", 'throwing', 'me', 'at', 'this', 'point', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'handing', 'jerry', 'a', 'cigar', '||rightparen||', 'well', '||comma||', 'as', 'of', 'today', 'i', 'am', 'a', 'proud', 'parent', 'of', 'a', 'one', '||dash||', 'mile', 'stretch', 'of', 'the', 'arthur', 'berkhardt', 'expressway', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'that', 'adopt', '||dash||', 'a', '||dash||', 'highway', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'part', 'of', 'the', 'solution', 'now', 'jerry', '||period||', 'yeah', '||comma||', 'i', 'went', 'down', 'there', 'and', 'i', 'checked', 'it', 'out', 'this', 'morning', '||period||', 'here', '||comma||', 'take', 'a', 'look', '||period||', 'mile', 'one', '||dash||', 'fourteen', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'looks', 'just', 'like', 'you', '||period||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', "i'm", 'beaming', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', "d'you", 'have', 'to', 'do', '||questionmark||', 'pay', 'to', 'keep', 'it', 'clean', '||questionmark||', '||return||', '||return||', 'kramer:', 'they', 'try', 'to', 'push', 'you', 'into', 'using', 'their', 'cleaning', 'crew', '||comma||', 'with', 'all', 'their', 'so', '||dash||', 'called', 'maintenance', 'equipment', '||period||', '||return||', '||return||', 'jerry:', 'that', 'old', 'scam', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', "that's", 'why', "i'm", 'doing', 'it', 'all', 'myself', '||period||', 'this', 'parenting', "isn't", 'about', 'delegating', 'responsibility', '||comma||', "it's", 'about', 'being', 'there', '||period||', '||return||', '||return||', 'jerry:', 'at', 'the', 'side', 'of', 'the', 'road', '||comma||', 'with', 'a', 'pile', 'of', 'garbage', '||period||', '||return||', '||return||', 'kramer:', 'quality', 'time', '||period||', '||return||', '||return||', 'george:', 'keys', '||period||', 'i', "can't", 'find', 'my', 'keys', '||period||', '||return||', '||return||', 'jerry:', 'you', 'lost', 'phil', "rizzuto's", 'head', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'have', 'you', 'seen', "'em", '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'dammit', '||exclammark||', '||return||', '||return||', 'kramer:', "c'mon", '||comma||', 'retrace', 'your', 'steps', '||period||', 'what', "d'you", 'do', 'today', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'up', '||comma||', 'i', 'was', 'supposed', 'to', 'go', 'to', 'work', '||comma||', 'i', 'came', 'here', 'instead', '||period||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "they're", 'not', 'here', '||period||', "you'll", 'have', 'to', 'dig', 'up', 'your', 'spare', 'set', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'have', 'a', 'spare', 'set', '||period||', 'all', 'my', 'keys', 'say', "'do", 'not', "duplicate'", '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'george:', 'so', 'you', "can't", 'duplicate', "'em", '||period||', '||return||', '||return||', 'kramer:', 'sure', 'you', 'can', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'such', 'a', 'sweet', 'kid', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'oh', '||comma||', 'hi', '||period||', 'china', 'panda', '||questionmark||', '||return||', '||return||', 'delivery', 'boy:', '||leftparen||', 'suspicious', '||rightparen||', 'why', 'you', 'waiting', 'on', 'the', 'street', 'and', 'not', 'in', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', '||period||', '||period||', '||period||', 'thought', 'that', 'i', 'would', 'meet', 'you', 'halfway', '||period||', '||return||', '||return||', 'delivery', 'boy:', 'you', 'really', 'live', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||period||', '||leftparen||', 'handing', 'over', 'money', '||rightparen||', 'there', 'you', 'go', '||comma||', 'keep', 'the', 'change', '||period||', 'bye', 'now', '||period||', "i'll", 'see', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'at', 'the', "boy's", 'back', '||rightparen||', 'this', "isn't", 'fair', '||period||', 'this', 'is', 'address', 'discrimination', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'cleaned', 'out', 'their', 'whole', 'dental', 'hygiene', 'shelf', '||period||', '||return||', '||return||', 'george:', 'so', 'the', 'plan', 'is', 'to', 'secretly', 'sterilise', 'her', 'mouth', '||questionmark||', '||return||', '||return||', 'jerry:', 'by', 'the', 'time', "i'm", 'through', 'with', 'her', 'mouth', '||comma||', "she'll", 'be', 'able', 'to', 'eat', 'off', 'it', '||period||', 'is', 'it', 'safe', 'to', 'drink', 'bleach', 'if', 'you', 'dilute', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'stings', 'the', 'throat', '||period||', 'anyway', '||comma||', 'so', 'i', 'was', 'coming', 'along', 'here', '||comma||', 'and', 'i', 'felt', 'like', 'a', 'piece', 'of', 'cake', '||comma||', 'you', 'know', '||questionmark||', 'but', 'then', 'i', 'thought', '||comma||', "it's", 'morning', '||comma||', 'i', 'should', 'really', 'have', 'a', 'muffin', '||period||', 'i', 'like', 'those', 'chocolate', 'chip', 'ones', '||period||', 'then', 'i', 'figured', '||comma||', 'well', '||comma||', "they're", 'really', 'both', 'cake', '||period||', 'so', 'i', '||comma||', 'uh', '||comma||', 'i', 'sat', 'on', 'that', 'bench', 'for', 'a', 'little', 'while', '||comma||', 'twenty', 'minutes', 'or', 'an', 'hour', '||comma||', 'and', 'then', 'i', 'figured', '||comma||', 'check', 'and', 'see', 'what', 'you', 'were', 'up', 'to', '||period||', '||leftparen||', 'a', 'thought', 'occurs', 'to', 'him', '||rightparen||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', 'the', 'broad', 'jump', '||exclammark||', 'the', 'broad', 'jump', 'over', 'the', 'pothole', 'on', 'eighty', '||dash||', 'sixth', 'street', '||exclammark||', '||return||', '||return||', 'george:', 'now', 'i', 'remember', '||comma||', 'as', 'i', 'jumped', 'over', 'the', 'hole', 'i', 'heard', 'a', '||comma||', 'like', 'a', 'jingling', 'sound', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'look', 'down', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'trying', 'to', 'stick', 'the', 'landing', '||period||', '||leftparen||', 'indistinct', '||rightparen||', '||period||', '||period||', '||period||', 'was', 'right', 'around', 'here', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'no', '||exclammark||', '||exclammark||', '||return||', '||return||', 'head', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'holy', '||comma||', 'holy', 'cow', '||exclammark||', '||return||', '||return||', 'jerry:', 'poor', 'son', 'of', 'a', 'bitch', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'hundred', 'thousand', 'revolutions', 'a', 'second', '||period||', "it's", 'the', 'most', 'powerful', 'one', 'they', 'make', '||period||', '||return||', '||return||', 'jenna:', "it's", 'like', "i'm", 'holding', 'a', 'blender', '||period||', '||return||', '||return||', 'jerry:', 'the', "engine's", 'made', 'by', 'mcdonnell', '||dash||', 'douglas', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', 'you', 'keep', 'going', '||period||', 'it', 'shuts', 'off', 'automatically', '||period||', '||return||', '||return||', 'jenna:', '||leftparen||', 'restarting', 'and', 'reapplying', 'the', 'brush', '||rightparen||', 'really', '||comma||', 'it', 'does', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unheard', 'by', 'jenna', '||rightparen||', 'when', 'the', 'battery', 'runs', 'out', '||period||', '||return||', '||return||', 'jenna:', '||leftparen||', 'shouting', 'to', 'jerry', '||rightparen||', 'i', 'was', 'really', 'happy', 'with', 'my', 'old', 'toothbrush', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'trust', 'me', '||comma||', 'that', 'one', 'was', 'doing', 'more', 'harm', 'than', 'good', '||period||', "don't", 'forget', 'to', 'use', 'the', 'plax', 'too', '||period||', '||return||', '||return||', 'jenna', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'that', 'stuff', 'tastes', 'like', 'bleach', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'anything', 'about', 'that', '||period||', '||return||', '||return||', 'jenna:', 'mmm', '||period||', 'my', 'mouth', 'feels', 'so', 'clean', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'maybe', 'we', 'better', 'not', '||period||', 'i', '||comma||', 'i', 'think', "i'm", 'getting', 'a', 'little', 'cold', '||period||', 'i', "don't", 'wanna', 'give', 'you', 'any', 'of', 'my', 'germs', '||period||', '||return||', '||return||', 'jenna:', 'aww', '||period||', 'okay', '||period||', 'thanks', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'elaine:', 'you', 'still', "couldn't", 'kiss', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'has', 'a', 'taint', '||period||', 'i', "can't", 'see', 'it', '||comma||', 'but', 'i', 'know', "it's", 'there', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'so', 'now', "you're", 'finding', 'fault', 'on', 'a', 'sub', '||dash||', 'atomic', 'level', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'if', 'i', 'could', 'shrink', 'myself', 'down', '||comma||', 'like', 'in', 'fantastic', 'voyage', '||comma||', 'and', 'get', 'inside', 'a', 'microscopic', 'submarine', '||comma||', 'i', 'could', 'be', 'sure', '||period||', 'although', 'if', 'there', 'was', 'something', 'there', '||comma||', 'it', 'might', 'be', 'pretty', 'scary', '||period||', 'course', '||comma||', 'i', 'would', 'have', 'that', 'laser', '||period||', '||return||', '||return||', 'elaine:', 'jer', '||comma||', 'do', 'you', 'see', 'where', 'this', 'is', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', 'being', 'really', 'clean', 'and', 'happy', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'have', 'tendencies', '||period||', "they're", 'always', 'annoying', '||comma||', 'but', 'they', 'were', 'just', 'tendencies', '||period||', 'but', 'now', '||comma||', 'if', 'you', "can't", 'kiss', 'this', 'girl', '||comma||', "i'm", 'afraid', "we're", 'talking', 'disorder', '||period||', '||return||', '||return||', 'jerry:', 'disorder', '||questionmark||', '||return||', '||return||', 'elaine:', 'and', 'from', 'disorder', '||comma||', "you're", 'a', 'quirk', 'or', 'two', 'away', 'from', 'full', '||dash||', 'on', 'dementia', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thoughtful', '||rightparen||', 'hmm', '||comma||', 'that', 'could', 'hurt', 'me', '||period||', '||leftparen||', 'pointing', 'out', 'of', 'window', '||rightparen||', 'hey', '||comma||', 'there', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'shall', 'we', 'stop', 'and', 'say', 'hi', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', "we've", 'seen', 'it', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouting', 'after', 'car', '||rightparen||', 'hey', 'jerry', '||exclammark||', 'yeah', '||comma||', "i'll", 'see', 'you', 'back', 'at', 'the', 'house', '||exclammark||', '||return||', '||return||', 'kramer:', 'mile', 'one', '||dash||', 'fourteen', '||comma||', 'clean', 'as', 'a', 'whistle', '||period||', '||return||', '||return||', 'man:', 'yeah', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', "i'm", 'your', 'neighbour', '||comma||', 'uh', '||comma||', 'fr', '||period||', '||period||', '||period||', 'from', 'across', 'the', 'street', '||period||', 'and', 'uh', '||comma||', '||leftparen||', 'coughs', 'nervously', '||rightparen||', 'i', 'was', 'wondering', '||comma||', 'if', 'it', "wouldn't", 'be', 'too', 'much', 'trouble', '||comma||', 'if', 'i', 'could', 'use', 'your', 'apartment', 'to', 'order', 'some', 'food', '||questionmark||', '||return||', '||return||', 'man:', 'wha', '||questionmark||', 'what', "d'you", 'want', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'see', '||comma||', "there's", 'this', 'certain', 'flounder', 'and', 'they', "won't", 'deliver', 'it', 'to', 'my', 'side', 'of', 'the', 'street', '||period||', '||return||', '||return||', 'man:', 'wh', '||comma||', 'when', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'just', 'need', 'them', 'to', 'deliver', 'it', 'here', 'and', 'i', 'have', 'to', 'be', 'kinda', 'inside', 'is', 'all', '||period||', '||return||', '||return||', 'man:', 'who', 'are', 'you', 'with', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'actually', "i'm", '||period||', '||period||', '||period||', "i'm", 'just', 'kind', 'of', 'hungry', '||period||', '||return||', '||return||', 'man:', 'who', 'let', 'you', 'in', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'the', 'lock', 'was', 'broken', '||period||', 'you', 'just', 'have', 'to', 'jiggle', 'it', '||comma||', 'actually', '||period||', 'but', '||comma||', 'i', 'just', 'need', 'like', 'a', 'half', 'an', 'hour', 'to', 'an', 'hour', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'the', 'signs', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'should', 'see', 'the', 'berkhardt', '||comma||', 'jerry', '||period||', 'my', 'mile', 'is', 'spotless', '||period||', 'i', 'mean', 'the', 'big', 'stuff', 'was', 'easy', '||period||', 'cinderblocks', '||comma||', 'air', '||dash||', 'conditioners', '||comma||', 'shopping', 'carts', '||leftparen||', 'makes', 'sound', '||dash||', 'fzup', '||exclammark||', '||rightparen||', '||comma||', 'i', 'just', 'rolled', "'em", 'into', 'the', 'woods', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'that', "stuff's", 'all', 'natural', 'anyway', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holding', 'up', 'a', 'sign', '||rightparen||', 'speed', 'limit', '||comma||', 'one', 'hundred', 'and', 'sixty', '||dash||', 'five', 'miles', 'per', 'hour', '||period||', 'see', '||questionmark||', 'they', 'slipped', 'a', 'one', 'in', 'there', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'those', 'kids', 'with', 'the', 'spray', 'paint', '||comma||', 'god', 'love', "'em", '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', 'so', '||comma||', 'keys', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'keys', '||period||', 'and', 'i', 'been', 'calling', 'the', 'city', 'all', 'day', '||period||', 'course', "there's", 'not', 'really', 'a', 'number', 'to', 'call', 'if', 'you', 'wanna', 'make', 'a', 'pothole', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'they', 'leave', 'that', 'up', 'to', 'the', 'general', 'population', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', 'this', '||period||', 'if', 'the', 'real', 'phil', 'rizzuto', 'was', 'down', 'there', '||comma||', 'this', "wouldn't", 'be', 'happening', '||exclammark||', '||return||', '||return||', 'jerry:', 'hard', 'to', 'say', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'need', 'some', 'roadwork', 'done', '||questionmark||', "'cos", 'i', 'met', 'some', 'maintenance', 'guys', 'today', 'on', 'the', 'highway', '||comma||', 'they', 'could', 'probably', 'help', 'you', 'out', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'borrowed', 'some', 'cones', 'from', 'them', 'when', 'i', 'was', 'sweeping', 'my', 'car', '||dash||', 'pool', 'lane', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||questionmark||', '||return||', '||return||', 'jenna', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', "it's", 'jenna', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'guys', "wouldn't", 'mind', '||comma||', 'i', 'would', 'like', 'to', 'ward', 'off', 'dementia', '||period||', '||return||', '||return||', 'george:', 'you', 'think', 'you', 'could', 'hook', 'me', 'up', 'with', 'these', 'guys', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', '||period||', 'give', 'me', 'a', 'ring', 'tomorrow', '||period||', "i'm", 'gonna', 'be', 'at', 'emergency', 'callbox', 'seven', '||dash||', 'eight', '||dash||', 'four', '||period||', '||return||', '||return||', 'george:', 'seven', '||dash||', 'eight', '||dash||', 'four', '||period||', '||return||', '||return||', 'jenna:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'jenna:', 'how', 'you', 'feeling', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'my', "cold's", 'gone', '||comma||', 'and', "i've", 'been', 'looking', 'forwards', 'to', 'kissing', 'you', '||comma||', 'which', "i'm", 'ready', 'to', 'do', 'now', '||comma||', 'if', 'you', 'are', 'ready', '||period||', '||return||', '||return||', 'jenna:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', 'i', 'just', '||comma||', 'i', 'uh', '||comma||', 'i', 'bruised', 'my', 'lip', '||period||', 'i', 'was', 'drinking', 'a', 'celray', '||comma||', 'and', 'i', 'brought', 'it', 'up', 'too', 'fast', 'and', 'i', 'banged', 'it', 'into', 'my', 'lip', '||comma||', '||leftparen||', 'lower', 'voice', 'and', 'hurriedly', '||rightparen||', 'and', 'then', 'i', 'knocked', 'your', 'toothbrush', 'into', 'the', 'toilet', 'and', 'i', "wasn't", 'able', 'to', 'tell', 'you', 'before', 'you', 'could', 'use', 'it', '||period||', '||return||', '||return||', 'jenna:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', '||return||', '||return||', 'jenna:', 'when', 'were', 'you', 'gonna', 'tell', 'me', 'this', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'obviously', 'never', '||period||', '||return||', '||return||', 'kramer:', 'i', 'need', 'the', 'yield', 'sign', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "i'm", 'kind', 'of', 'in', 'the', 'middle', 'of', 'something', '||period||', 'would', 'you', 'get', 'these', 'signs', 'out', 'of', 'here', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', "could've", 'introduced', 'me', '||period||', '||return||', '||return||', 'jerry:', 'i', "wouldn't", 'know', 'where', 'to', 'start', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'knocking', '||rightparen||', 'hey', '||comma||', 'jenna', '||period||', 'hey', '||exclammark||', '||return||', '||return||', 'jenna:', 'there', '||period||', 'now', 'something', 'of', 'yours', 'has', 'been', 'in', 'the', 'toilet', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||exclammark||', 'wha', '||period||', '||period||', '||period||', "what'd", 'you', 'put', 'in', 'there', '||questionmark||', '||return||', '||return||', 'jenna:', 'gotta', 'run', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'phone', '||rightparen||', 'hello', '||comma||', 'jenna', '||comma||', 'did', 'you', 'dunk', 'the', 'spatula', '||questionmark||', 'was', 'it', 'the', 'spatula', '||questionmark||', 'hello', '||questionmark||', 'dammit', '||exclammark||', '||return||', '||return||', 'elaine:', 'she', "won't", 'even', 'give', 'you', 'a', 'hint', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'could', 'be', 'anything', '||period||', 'the', 'whole', "apartment's", 'a', 'biohazard', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', 'i', 'bet', 'it', 'is', '||questionmark||', '||leftparen||', 'points', '||rightparen||', 'your', 'remote', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'that', 'is', 'a', 'definite', 'possibility', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'walking', 'to', 'the', 'couch', '||rightparen||', 'or', '||comma||', 'could', 'be', 'your', 'walkman', 'there', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'just', 'screwing', 'with', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'am', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'ah', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "how's", 'life', 'on', 'the', 'road', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'making', 'a', 'difference', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'doubt', 'it', '||period||', '||return||', '||return||', 'kramer:', 'you', 'should', 'see', 'the', 'smiles', 'on', 'the', "drivers'", 'faces', '||period||', 'i', 'mean', '||comma||', 'you', 'gotta', 'look', 'quick', '||comma||', 'but', "they're", 'there', '||period||', '||return||', '||return||', 'jerry:', "what's", 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'those', 'annoying', 'little', 'bumps', 'on', 'the', 'lane', '||dash||', 'lines', '||questionmark||', '||leftparen||', 'makes', 'noise', '||dash||', 'bum', '||comma||', 'bum', '||comma||', 'bum', '||comma||', 'bum', '||comma||', 'bump', '||rightparen||', '||return||', '||return||', 'jerry:', "isn't", 'that', 'some', 'kind', 'of', 'safety', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'had', 'to', 'pull', "'em", 'up', 'if', "i'm", 'gonna', 'widen', 'the', 'lanes', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'you', 'know', 'how', 'in', 'planes', 'they', 'got', 'first', 'class', '||questionmark||', 'more', 'leg', 'room', '||comma||', 'better', 'ride', '||questionmark||', 'well', '||comma||', "i'm", 'bringing', 'that', 'concept', 'to', 'mile', 'one', '||dash||', 'fourteen', '||period||', '||return||', '||return||', 'elaine:', 'how', 'are', 'you', 'gonna', 'widen', 'the', 'lanes', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'you', 'black', 'out', 'lane', '||dash||', 'lines', 'one', 'and', 'three', '||comma||', 'and', 'a', 'four', '||dash||', 'lane', 'highway', 'becomes', 'a', 'two', '||dash||', 'lane', 'comfort', 'cruise', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'so', '||comma||', 'you', 'got', 'any', 'black', 'paint', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcasm', '||rightparen||', 'yeah', '||comma||', 'in', 'my', 'toolshed', '||comma||', 'next', 'to', 'the', 'riding', 'mower', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'into', 'phone', '||rightparen||', 'yuh', '||comma||', "i'd", 'like', 'an', 'order', 'of', 'supreme', 'flounder', '||comma||', 'number', 'forty', '||dash||', 'seven', '||period||', 'yeah', '||comma||', 'apartment', 'one', '||dash||', 'q', '||period||', '||return||', '||return||', 'jerry:', 'one', '||dash||', 'q', '||questionmark||', 'whose', 'apartment', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'the', 'janitor', 'closet', '||comma||', 'across', 'the', 'street', '||period||', '||return||', '||return||', 'jerry:', "you're", 'pretending', 'to', 'live', 'in', 'a', "janitor's", 'closet', '||comma||', 'just', 'to', 'get', 'this', 'flounder', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'better', 'than', 'eating', 'it', 'alone', 'in', 'the', 'restaurant', '||comma||', 'like', 'some', 'loser', '||period||', '||return||', '||return||', 'kramer:', 'that', 'stuff', 'is', 'unbelievable', '||period||', "i'd", 'eat', 'it', 'out', 'of', 'a', 'dumpster', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'heading', 'to', 'door', '||rightparen||', 'how', 'do', 'you', 'know', 'about', 'it', '||questionmark||', "you're", 'not', 'in', 'the', 'delivery', 'zone', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'newman', 'uses', 'his', 'mail', 'truck', 'to', 'run', 'fish', 'for', 'china', 'panda', 'on', 'the', 'weekends', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "mine's", 'coming', 'in', 'ten', '||comma||', 'so', '||period||', '||period||', '||period||', 'see', 'you', 'boys', '||period||', '||return||', '||return||', 'kramer:', 'now', '||comma||', "where's", 'that', 'tool', 'shed', 'of', 'yours', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'sorry', '||comma||', 'i', "didn't", 'hear', 'you', '||period||', 'i', 'was', 'in', 'the', 'shower', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'see', 'you', '||period||', '||return||', '||return||', 'ralph:', 'you', 'costanza', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'thanks', 'for', '||comma||', 'thanks', 'for', 'coming', 'by', 'fellas', '||period||', 'eh', '||comma||', 'got', 'a', 'set', 'of', 'keys', '||comma||', 'buried', 'in', 'the', 'pothole', '||period||', '||return||', '||return||', 'ralph:', "what're", 'the', 'keys', 'doing', 'in', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'need', 'to', 'uh', '||comma||', 'to', 'dig', "'em", 'up', '||period||', '||return||', '||return||', 'ralph:', 'you', 'put', "'em", 'in', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'nah', '||comma||', "it's", 'uh', '||comma||', "it's", 'a', 'long', 'story', '||period||', 'just', 'uh', '||comma||', 'try', 'to', 'get', 'it', 'up', '||period||', '||return||', '||return||', 'ralph:', 'bad', 'place', 'to', 'put', 'your', 'keys', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'know', 'that', '||period||', '||leftparen||', 'clears', 'throat', '||rightparen||', 'could', 'you', 'start', '||comma||', 'working', '||questionmark||', '||return||', '||return||', 'ralph:', 'difficult', 'job', '||period||', 'you', 'want', 'those', 'keys', '||comma||', "we're", 'gonna', 'have', 'to', 'dig', 'this', 'up', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'penny', 'drops', '||rightparen||', 'oh', '||comma||', 'uh', '||comma||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', '||leftparen||', 'snorts', '||rightparen||', 'is', 'this', 'about', 'money', '||questionmark||', '||return||', '||return||', 'ralph:', 'yeah', '||period||', '||leftparen||', 'snorts', '||rightparen||', "it's", 'about', 'money', '||period||', '||return||', '||return||', 'mrs', 'allister:', "'scuse", 'me', '||comma||', 'what', 'are', 'you', 'doing', 'in', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'uhm', '||comma||', 'nothing', '||period||', 'i', 'was', 'just', 'uhm', '||period||', '||period||', '||period||', 'i', "wasn't", 'in', 'there', '||period||', '||return||', '||return||', 'mrs', 'allister:', 'you', 'were', 'hanging', 'around', 'in', 'there', '||comma||', 'lazing', 'on', 'the', 'job', '||period||', 'when', 'you', 'shoulda', 'been', 'downstairs', 'in', 'the', 'basement', '||comma||', 'cleaning', 'out', 'those', 'old', 'carpets', 'and', 'scrap', 'wood', '||period||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'because', '||period||', '||period||', '||period||', "i'm", 'the', 'janitor', '||period||', '||leftparen||', 'picks', 'teeth', 'with', 'fingernail', '||rightparen||', '||return||', '||return||', 'mrs', 'allister:', "don't", 'get', 'smart', 'with', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'meek', '||rightparen||', 'yes', "ma'am", '||period||', '||return||', '||return||', 'radio:', 'hey', '||comma||', 'and', 'if', "you're", 'heading', 'north', 'on', 'the', 'arthur', 'berkhardt', '||comma||', 'whoah', 'nelly', '||comma||', 'for', 'some', 'reason', 'four', 'lanes', 'are', 'converging', 'into', 'two', '||comma||', 'instantaneously', 'right', 'at', 'mile', '||dash||', 'marker', 'one', '||dash||', 'fourteen', '||period||', 'i', "don't", 'know', 'what', 'that', 'is', '||comma||', 'but', 'the', 'a', '||dash||', "b's", 'a', 'parking', 'lot', 'out', 'there', '||period||', 'somebody', 'screwed', 'up', 'on', 'that', 'one', '||period||', '||return||', '||return||', 'elaine:', 'oh', "it's", 'you', '||period||', '||return||', '||return||', 'jerry:', 'is', 'the', 'flounder', 'here', 'yet', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "it's", 'not', 'here', 'yet', '||period||', 'you', 'want', 'the', 'tour', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gesturing', '||rightparen||', "there's", 'this', '||period||', '||return||', '||return||', 'jerry:', 'nice', '||period||', 'french', "doors'd", 'really', 'open', 'this', 'place', 'up', '||period||', 'oh', '||comma||', 'but', 'you', 'have', 'a', 'slop', '||dash||', 'bucket', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gleeful', '||rightparen||', 'the', 'fish', '||exclammark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'was', 'uh', '||comma||', 'i', 'was', 'waiting', 'downstairs', 'for', 'the', 'jackhammer', '||comma||', 'thought', "i'd", 'drop', 'by', '||period||', '||return||', '||return||', 'jerry:', "kramer's", 'guys', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'got', "'em", 'down', 'to', 'fifty', 'bucks', '||period||', 'i', 'just', 'have', 'to', 'do', 'all', 'the', 'jackhammering', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'oh', "that's", 'nice', '||comma||', 'kind', 'of', 'a', 'hard', '||dash||', 'labour', 'fantasy', 'camp', '||period||', '||return||', '||return||', 'george:', 'ow', '||exclammark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'kramer:', 'huh', '||comma||', 'yeah', '||period||', '||leftparen||', 'looks', 'round', '||rightparen||', 'oh', '||comma||', 'sweet', 'setup', '||period||', 'elaine', '||comma||', "d'you", 'have', 'any', 'paint', 'thinner', '||questionmark||', 'i', 'need', 'like', 'uh', '||comma||', 'forty', 'gallons', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'plumb', 'out', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'man', '||comma||', 'if', 'i', "don't", 'get', 'that', 'black', 'paint', 'off', 'the', "city's", 'gonna', 'go', 'ape', '||period||', 'i', "don't", 'wanna', 'lose', 'my', 'baby', '||exclammark||', '||return||', '||return||', 'mrs', 'allister', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'janitor', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'guys', '||rightparen||', 'uh', '||comma||', 'mrs', 'allister', '||period||', '||leftparen||', 'louder', '||rightparen||', 'yeah', '||comma||', 'uh', '||comma||', 'just', 'coming', 'mrs', 'allister', '||period||', '||leftparen||', 'to', 'guys', '||rightparen||', 'okay', '||comma||', "i've", 'gotta', 'get', 'out', '||period||', '||return||', '||return||', 'elaine:', 'here', '||comma||', 'can', 'you', 'move', '||comma||', 'you', 'gotta', 'move', 'from', 'the', 'door', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', 'i', 'uhm', '||period||', '||period||', '||period||', 'what', 'can', 'i', 'do', 'for', 'you', '||questionmark||', '||return||', '||return||', 'mrs', 'allister:', 'i', 'told', 'you', 'yesterday', 'to', 'haul', 'that', 'trash', 'outta', 'the', 'basement', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'am', 'so', 'sorry', '||period||', '||return||', '||return||', 'mrs', 'allister:', 'some', 'of', 'the', 'children', 'have', 'been', 'playing', 'near', 'it', 'and', 'putting', 'it', 'in', 'their', 'mouths', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'a', 'lot', 'of', 'it', 'is', 'vegetable', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', 'allister:', 'get', 'that', 'stuff', 'outta', 'there', 'today', '||comma||', 'or', "you'll", 'be', 'outta', 'here', '||period||', 'understand', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'meekly', '||rightparen||', 'yes', "ma'am", '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'stop', 'pushing', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'kramer', 'spilled', 'ammonia', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'feel', 'like', 'eating', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holding', 'up', 'a', 'set', 'of', 'heavy', 'chains', '||rightparen||', "i'm", 'gonna', 'borrow', 'this', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'mrs', 'allister', '||rightparen||', "janitor's", 'meeting', '||period||', '||return||', '||return||', 'jenna:', 'so', 'jerry', '||comma||', "why'd", 'you', 'call', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'thought', "it's", 'about', 'time', 'we', 'put', 'aside', 'all', 'this', 'silliness', '||period||', 'i', 'know', 'now', 'you', "didn't", 'put', 'anything', 'in', 'my', 'toilet', 'bowl', '||period||', '||leftparen||', 'pause', '||rightparen||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'jenna:', 'yes', '||comma||', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'whatever', '||period||', 'so', '||comma||', "how've", 'you', 'been', '||questionmark||', '||return||', '||return||', 'jenna:', 'good', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||leftparen||', 'pause', '||rightparen||', 'steak', 'knife', '||questionmark||', '||return||', '||return||', 'jenna:', 'just', 'eating', 'away', 'at', 'you', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'nah', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'jenna:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'jerry', '||comma||', 'can', 'i', 'borrow', 'your', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'have', 'to', 'haul', 'some', 'dirty', 'garbage', 'to', 'the', 'dump', '||period||', '||return||', '||return||', 'jerry:', 'dirt', '||questionmark||', "that's", 'alright', '||comma||', '||leftparen||', 'for', "jenna's", 'benefit', '||rightparen||', 'because', "there's", 'nothing', 'wrong', 'with', 'dirt', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'actually', "it's", 'pretty', 'grimy', '||period||', '||return||', '||return||', 'jerry:', 'grime', '||comma||', 'grease', '||comma||', 'filth', '||comma||', 'funk', '||comma||', 'ooze', '||period||', 'whatever', 'it', 'is', '||comma||', 'you', 'take', 'that', 'stuff', 'and', 'put', 'it', 'right', 'on', 'my', 'leather', 'upholstery', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', 'who', 'you', 'are', '||comma||', 'but', 'thanks', 'for', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', 'jenna:', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'there', '||comma||', 'you', 'see', '||questionmark||', 'i', 'just', 'leant', 'her', 'my', 'car', '||comma||', 'and', "she's", 'gonna', 'fill', 'it', 'with', 'all', 'sorts', 'of', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'cracks', '||rightparen||', 'alright', '||exclammark||', 'you', 'win', '||exclammark||', 'that', 'car', 'was', 'my', 'last', 'germ', '||dash||', 'free', 'sanctuary', '||period||', 'i', 'slept', 'there', 'last', 'night', '||exclammark||', 'now', '||comma||', 'for', 'the', 'love', 'of', 'god', '||comma||', 'please', '||comma||', 'what', 'is', 'it', '||questionmark||', 'what', 'is', 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jenna:', 'toilet', 'brush', '||period||', '||return||', '||return||', 'jerry:', 'toilet', 'brush', '||comma||', 'oh', '||leftparen||', 'he', 'pulls', 'a', "'damn", '||comma||', 'shoulda', 'guessed', '||exclammark||', "'", 'face', '||rightparen||', '||period||', 'alright', '||comma||', 'i', 'can', 'replace', 'that', '||period||', '||return||', '||return||', 'jenna:', 'you', 'wanna', 'order', 'dinner', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "let's", 'uh', '||comma||', 'go', 'to', 'your', 'place', '||period||', 'because', 'i', '||comma||', 'threw', 'out', 'all', 'my', 'dishes', '||period||', '||return||', '||return||', 'jerry:', "that's", 'true', '||period||', '||return||', '||return||', 'jenna:', 'mm', '||period||', '||return||', '||return||', 'jerry:', 'but', '||comma||', "i'll", 'tell', 'you', 'this', 'much', '||period||', 'i', 'am', 'never', 'going', 'to', 'let', 'some', 'silly', 'hygienic', 'mishap', 'get', 'in', 'the', 'way', 'of', '||comma||', 'what', 'could', 'be', '||comma||', 'a', 'meaningful', '||comma||', 'long', '||dash||', 'lasting', 'relationship', '||period||', '||return||', '||return||', 'jenna:', 'do', 'you', 'hear', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'that', 'could', 'be', '||period||', '||return||', '||return||', 'head:', 'holy', 'cow', '||exclammark||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', "i'm", 'a', 'new', 'man', '||comma||', 'and', "i'm", 'looking', 'towards', 'the', 'future', '||period||', 'clean', '||comma||', 'dirty', '||comma||', 'whatever', '||period||', '||return||', '||return||', 'jerry:', 'holy', 'cow', '||exclammark||', 'have', 'a', 'nice', 'life', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'look', 'at', 'this', '||period||', 'wide', 'lanes', '||period||', 'this', 'is', 'so', 'luxurious', '||period||', 'woo', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'bugger', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'sings', '||rightparen||', "you're", 'once', '||period||', 'twice', '||period||', 'three', 'times', 'a', 'lady', '||period||', '||return||', '||return||', 'newman:', 'what', 'the', 'hell', 'was', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'double', 'bugger', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'sings', '||rightparen||', 'yes', '||comma||', "you're", 'once', '||period||', 'twice', '||period||', 'three', 'times', '||period||', '||period||', '||period||', '||return||', '||return||', 'newman:', 'aaah', '||exclammark||', 'aaagh', '||exclammark||', 'aah', '||dash||', 'aah', '||period||', 'oh', '||comma||', 'oh', 'the', 'humanity', '||exclammark||', 'aaagh', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', "what're", 'you', 'doing', 'out', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'man', '||comma||', 'did', 'you', 'see', 'that', 'fireball', '||questionmark||', 'woo', '||dash||', 'hoo', '||dash||', 'hoo', '||comma||', 'hoo', '||dash||', 'hoo', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'i', 'gotta', 'skedaddle', '||period||', 'you', 'wanna', 'lift', '||questionmark||', '||return||', '||return||', 'kramer:', 'newman', '||exclammark||', 'newman', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'll", 'meet', 'you', 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'at', 'the', 'movies', '||comma||', 'they', 'show', 'that', 'little', 'ad', 'for', 'the', 'concession', 'stand', '||questionmark||', '||return||', '||return||', 'elaine:', 'where', 'the', 'cartoon', "candy's", 'dancing', 'and', 'the', 'milk', "dud's", 'playing', 'the', 'banjo', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'wailing', 'on', 'that', 'banjo', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', "don't", 'understand', 'the', 'raisinettes', '||period||', '||return||', '||return||', 'elaine:', 'the', 'sax', 'player', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'the', 'box', 'of', 'raisinettes', 'runs', 'up', 'to', 'the', 'concession', 'stand', '||comma||', 'buys', 'another', 'box', 'of', 'raisinettes', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'box', 'of', 'raisinettes', 'eating', 'another', 'box', 'of', 'raisinettes', '||questionmark||', "it's", 'perverse', '||period||', '||return||', '||return||', 'elaine:', "he's", 'not', 'gonna', 'eat', 'them', '||period||', "he's", 'buying', "'em", 'for', 'his', 'pepsi', 'girlfriend', '||period||', '||return||', '||return||', 'jerry:', "why's", 'he', 'dating', 'a', 'pepsi', '||questionmark||', "they're", 'not', 'having', 'children', '||period||', '||return||', '||return||', 'elaine:', "he's", 'a', 'musician', '||period||', '||return||', '||return||', 'jerry:', 'musicians', '||period||', 'get', 'a', 'real', 'job', '||period||', '||return||', '||return||', 'waitress:', 'what', "d'you", 'want', '||questionmark||', '||return||', '||return||', 'george:', 'ah', '||comma||', "i've", 'had', 'everything', 'on', 'the', 'menu', '||period||', 'uh', '||comma||', 'surprise', 'me', '||period||', '||return||', '||return||', 'danielle:', '||leftparen||', 'to', 'george', '||rightparen||', 'neil', '||period||', '||return||', '||return||', 'danielle:', 'neil', '||period||', '||return||', '||return||', 'danielle:', '||leftparen||', 'apologetic', '||rightparen||', 'oh', '||comma||', 'i', 'am', 'sorry', '||period||', '||leftparen||', 'smiling', 'broadly', '||rightparen||', "i'm", 'supposed', 'to', 'meet', 'my', 'boyfriend', 'here', '||period||', 'he', 'looks', 'just', 'like', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'bemused', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'danielle:', '||leftparen||', 'smiling', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointing', 'to', 'himself', '||rightparen||', 'like', 'me', '||questionmark||', '||return||', '||return||', 'danielle:', 'uh', '||dash||', 'huh', '||period||', 'sorry', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'confused', '||comma||', 'to', 'himself', '||rightparen||', 'like', 'me', '||questionmark||', 'but', 'how', '||questionmark||', '||return||', '||return||', 'waitress:', "here's", 'your', 'halibut', 'omelette', '||period||', 'surprised', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'yes', '||comma||', 'i', 'am', '||period||', '||return||', '||return||', 'kramer:', 'look', 'what', 'i', 'got', 'for', 'you', '||comma||', 'for', 'your', 'florida', 'trip', '||period||', 'crazy', 'shirts', 'was', 'closing', "'em", 'out', '||period||', 'i', 'got', 'a', 'dozen', 'for', 'a', 'buck', '||period||', '||return||', '||return||', 'kramer:', 'saved', 'a', 'fortune', '||period||', 'look', 'at', 'that', '||period||', 'heyy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', '||comma||', 'unimpressed', '||rightparen||', 'ohh', '||comma||', "'number", '1', "dad'", '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'examining', 'the', 'label', '||rightparen||', 'ooh', '||comma||', 'and', "it's", 'in', 'medium', '||period||', 'perfect', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'almost', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'look', '||comma||', 'uh', '||comma||', 'when', "you're", 'in', 'florida', '||comma||', 'can', 'my', 'cigar', 'guy', 'drop', 'off', 'some', 'cubans', 'for', 'me', 'at', 'your', "parents'", 'house', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reluctant', '||rightparen||', 'kramer', '||comma||', "i'm", 'helping', 'my', 'parents', 'move', 'into', 'their', 'new', 'condo', '||period||', "i'm", 'gonna', 'be', 'busy', '||period||', '||return||', '||return||', 'kramer:', 'aw', '||comma||', "c'mon", 'man', '||period||', 'help', 'a', 'brother', 'out', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grudging', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'yeahh', '||period||', 'i', 'owe', 'you', 'one', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'holding', 'up', 'the', "'#", "dad'", 'shirt', '||rightparen||', "we're", 'even', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'figure', 'this', 'out', '||period||', "i'm", 'in', 'the', 'coffee', 'shop', '||comma||', 'and', 'this', 'beautiful', 'girl', 'i', 'could', 'never', 'even', 'talk', 'to', '||comma||', 'mistakes', 'me', 'for', 'her', 'boyfriend', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continuing', 'to', 'pack', '||rightparen||', "that's", 'a', 'nice', 'four', 'seconds', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'incredulous', '||rightparen||', 'i', 'look', 'just', 'like', 'him', '||period||', 'i', '||period||', 'me', '||period||', '||leftparen||', 'flings', 'his', 'arms', 'out', '||rightparen||', 'this', '||exclammark||', 'this', 'is', 'what', 'her', 'boyfriend', 'looks', 'like', '||period||', 'how', 'is', 'that', 'possible', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'he', 'has', 'money', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'wondering', '||rightparen||', 'maybe', 'he', "doesn't", '||period||', 'maybe', 'he', 'and', 'i', 'are', 'exactly', 'the', 'same', '||comma||', 'except', 'for', 'one', 'minor', '||comma||', 'yet', 'crucial', '||comma||', 'detail', '||period||', 'you', 'never', 'know', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'zipping', 'up', 'his', 'bag', '||rightparen||', 'sometimes', 'you', 'do', '||period||', '||return||', '||return||', 'george:', 'maybe', "it's", 'some', 'small', 'thing', 'i', 'could', 'change', '||period||', 'like', 'a', 'moustache', '||period||', 'or', 'wearing', 'a', 'top', 'hat', '||comma||', 'or', 'a', 'monocle', '||comma||', 'or', 'a', '||period||', '||period||', 'or', 'a', 'cane', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picking', 'up', 'his', 'bag', 'and', 'coat', '||rightparen||', "who's", 'she', 'dating', '||questionmark||', 'mr', 'peanut', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'pointedly', '||rightparen||', 'she', 'could', 'do', 'a', 'lot', 'worse', 'than', 'mr', 'peanut', '||comma||', 'my', 'friend', '||period||', '||return||', '||return||', 'blaine:', 'so', '||comma||', 'what', "d'you", 'wanna', 'see', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'indicating', 'a', 'movie', 'poster', '||rightparen||', 'what', 'about', 'sack', 'lunch', '||questionmark||', '||return||', '||return||', 'blaine:', '||leftparen||', 'indicating', 'another', 'poster', '||rightparen||', 'how', 'about', 'the', 'english', 'patient', '||questionmark||', "it's", 'up', 'for', 'all', 'those', 'oscars', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "c'mon", 'blaine', '||period||', 'i', 'mean', '||comma||', 'look', 'at', 'the', 'poster', 'for', 'sack', 'lunch', '||period||', '||return||', '||return||', 'blaine:', "it's", 'a', 'family', 'in', 'a', 'brown', 'paper', 'bag', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', '||rightparen||', "don't", 'you', 'wanna', 'know', 'how', 'they', 'got', 'in', 'there', '||questionmark||', '||return||', '||return||', 'blaine:', 'no', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'disappointment', '||rightparen||', 'aww', '||period||', 'sold', 'out', '||period||', '||return||', '||return||', 'blaine:', '||leftparen||', 'to', 'the', 'booth', 'guy', '||rightparen||', 'oh', '||comma||', 'two', 'for', 'the', 'english', 'patient', '||period||', '||return||', '||return||', 'elaine:', 'so', "d'you", 'think', 'they', 'got', 'shrunk', 'down', '||comma||', 'or', 'is', 'it', 'just', 'a', 'giant', 'sack', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'uh', '||comma||', 'hi', '||period||', 'uhm', '||comma||', 'remember', 'me', '||questionmark||', 'i', '||period||', '||period||', "i'm", 'the', 'guy', 'who', 'looks', 'like', 'neil', '||questionmark||', '||return||', '||return||', 'danielle:', '||leftparen||', 'smiling', 'back', '||rightparen||', 'hi', '||period||', '||return||', '||return||', 'george:', 'huh', '||dash||', 'hi', '||period||', '||leftparen||', 'looks', 'around', 'a', 'little', '||rightparen||', 'uhm', '||comma||', 'is', 'neil', 'here', '||questionmark||', '||return||', '||return||', 'danielle:', 'oh', '||comma||', 'no', '||period||', 'he', 'got', 'held', 'up', 'at', 'work', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'too', 'bad', '||period||', 'i', 'kinda', 'wanted', 'to', 'meet', 'him', '||comma||', 'seeing', 'as', 'how', 'we', 'look', 'so', 'similar', '||period||', '||return||', '||return||', 'danielle:', 'well', '||comma||', 'you', 'know', '||comma||', 'you', "don't", 'look', 'that', 'much', 'like', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'disappointment', '||rightparen||', 'oh', '||period||', 'course', 'not', '||period||', '||return||', '||return||', 'danielle:', 'no', '||comma||', "you're", 'a', 'little', 'taller', '||period||', '||return||', '||return||', 'danielle:', 'you', 'look', 'like', "you're", 'in', 'better', 'shape', 'than', 'neil', '||period||', 'do', 'you', 'work', 'out', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', 'listen', '||comma||', 'i', '||period||', '||period||', 'i', '||period||', '||period||', 'i', "don't", 'mean', 'to', 'seem', 'forward', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'but', 'is', 'there', 'any', 'way', 'that', 'i', 'could', 'possibly', 'have', "neil's", 'phone', 'number', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'very', 'dissatisfied', '||rightparen||', 'why', 'is', 'everyone', 'talking', 'about', '||quotemark||', 'the', 'english', 'patient', '||comma||', "it's", 'so', 'romantic', '||quotemark||', '||period||', '||leftparen||', 'vehement', '||rightparen||', 'god', '||comma||', 'that', 'movie', 'stunk', '||exclammark||', '||return||', '||return||', 'blaine:', 'i', 'kinda', 'liked', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'firm', '||rightparen||', 'no', 'you', "didn't", '||period||', '||return||', '||return||', 'carol:', 'elaine', '||period||', 'elaine', '||comma||', 'did', 'you', 'just', 'see', 'the', 'english', 'patient', '||questionmark||', '||return||', '||return||', 'gail:', '||leftparen||', 'tearful', '||rightparen||', "didn't", 'you', 'love', 'it', '||questionmark||', '||return||', '||return||', 'lisa:', 'how', 'could', 'you', 'not', 'love', 'that', 'movie', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'about', '||comma||', 'it', 'sucked', '||questionmark||', '||return||', '||return||', 'carol:', 'that', 'ralph', 'fiennes', '||comma||', 'i', 'would', 'give', 'up', 'my', 'firstborn', 'for', 'him', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'aside', '||rightparen||', 'huhh', '||comma||', 'getting', 'the', 'short', 'end', 'of', 'that', 'stick', '||period||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', 'this', 'is', 'del', 'boca', "vista's", 'new', 'physical', 'fitness', 'room', '||period||', 'they', 'got', 'medicine', 'balls', '||comma||', 'you', 'can', 'bike', 'ride', '||comma||', 'anything', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', 'stairmaster', '||questionmark||', '||return||', '||return||', 'morty:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "nothin'", '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'opening', 'his', 'tracksuit', 'top', '||rightparen||', 'see', 'what', "i'm", 'wearing', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'did', 'you', 'get', 'that', 'outta', 'my', 'bag', '||questionmark||', '||return||', '||return||', 'morty:', 'no', '||comma||', 'your', 'mother', 'found', 'it', '||period||', 'son', '||comma||', 'this', 'is', 'the', 'most', 'wonderful', 'and', 'thoughtful', 'thing', "you've", 'ever', 'done', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', 'bought', 'you', 'a', 'cadillac', '||period||', 'twice', '||period||', '||return||', '||return||', 'morty:', 'hoh', '||comma||', 'here', 'he', 'is', '||period||', 'this', 'is', 'the', 'man', 'i', 'wanted', 'you', 'to', 'see', '||period||', 'izzy', 'mandelbaum', '||period||', "he's", 'eighty', 'years', 'old', '||comma||', 'but', 'strong', 'as', 'an', 'ox', '||period||', '||leftparen||', 'pointing', '||rightparen||', 'watch', 'this', '||period||', '||return||', '||return||', 'morty:', 'see', 'that', '||questionmark||', 'you', "couldn't", 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'could', '||comma||', 'but', 'i', 'choose', 'not', 'to', '||period||', '||return||', '||return||', 'sid:', 'hey', 'morty', '||period||', '||leftparen||', 'nodding', 'toward', 'jerry', '||rightparen||', "who's", 'this', '||questionmark||', '||return||', '||return||', 'morty:', 'this', 'is', 'my', 'son', 'jerry', '||comma||', 'from', 'new', 'york', '||period||', '||leftparen||', 'leaning', 'toward', 'sid', '||rightparen||', 'he', 'thinks', 'he', 'can', 'lift', 'more', 'than', 'izzy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'protesting', '||rightparen||', 'i', '||period||', '||period||', 'i', "didn't", 'say', 'that', '||period||', '||return||', '||return||', 'sid:', '||leftparen||', 'calling', 'over', '||rightparen||', 'hey', '||comma||', 'izzy', '||comma||', 'this', 'kid', 'says', 'he', 'can', 'lift', 'more', 'than', 'you', 'can', '||period||', '||return||', '||return||', 'izzy:', 'your', "kid's", 'pretty', 'funny', '||comma||', 'morty', '||period||', 'should', 'be', 'a', 'comedian', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiles', '||rightparen||', 'actually', '||comma||', 'i', 'am', 'a', 'comedian', '||period||', '||return||', '||return||', 'sid:', "that's", 'not', 'so', 'funny', '||period||', '||return||', '||return||', 'izzy:', '||leftparen||', 'challenging', '||rightparen||', 'think', "you're", 'better', 'than', 'me', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'morty:', 'izzy', 'used', 'to', 'work', 'out', 'with', 'charles', 'atlas', 'in', 'the', 'fifties', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jocular', '||rightparen||', 'eighteen', '||dash||', 'fifties', '||questionmark||', '||return||', '||return||', 'izzy:', 'yeah', '||comma||', "that's", 'it', '||period||', "it's", 'go', 'time', '||period||', '||leftparen||', 'points', 'to', 'the', 'weights', 'he', 'put', 'down', '||rightparen||', "let's", 'see', 'you', 'lift', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reluctant', '||rightparen||', 'mr', 'mandelbaum', '||comma||', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'izzy:', "c'mon", '||comma||', "c'mon", '||period||', 'pump', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'consenting', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'izzy:', 'yeah', '||comma||', 'wrong', 'attitude', '||period||', "you're", 'not', 'bringing', 'that', 'trash', 'into', 'my', 'house', '||period||', '||return||', '||return||', 'jerry:', 'there', '||period||', 'alright', '||questionmark||', '||return||', '||return||', 'izzy:', 'step', 'aside', '||comma||', 'stringbean', '||period||', '||return||', '||return||', 'izzy:', "i'll", 'show', 'you', '||period||', "we're", 'gonna', 'take', 'it', 'up', 'a', 'notch', '||period||', '||return||', '||return||', 'izzy:', '||leftparen||', 'agonised', '||rightparen||', 'ah', '||exclammark||', 'my', 'back', '||period||', 'ugh', '||period||', '||return||', '||return||', 'izzy:', '||leftparen||', 'drawn', 'out', '||rightparen||', 'aaaahh', '||period||', '||return||', '||return||', 'sid:', 'somebody', '||comma||', 'call', 'an', 'ambulance', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'unpanicked', '||rightparen||', "there's", 'already', 'an', 'ambulance', 'here', 'for', 'mrs', 'glickman', '||period||', "there's", 'room', 'for', 'one', 'more', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'handing', 'over', 'her', 'money', '||rightparen||', 'okay', '||comma||', 'one', 'for', 'sack', 'lunch', '||period||', '||leftparen||', 'taking', 'the', 'ticket', '||rightparen||', "it's", 'good', '||comma||', 'right', '||questionmark||', '||leftparen||', 'smiling', '||rightparen||', 'yeah', '||comma||', 'good', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'surprise', '||rightparen||', 'hey', '||comma||', "what're", 'you', 'guys', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'lisa:', 'we', 'just', 'saw', 'the', 'english', 'patient', 'again', '||period||', '||return||', '||return||', 'gail:', "it's", 'even', 'better', 'the', 'second', 'time', '||period||', '||return||', '||return||', 'elaine:', 'they', 'make', 'it', 'longer', '||questionmark||', '||return||', '||return||', 'blaine:', '||leftparen||', 'to', 'the', 'girls', '||rightparen||', 'got', 'my', 'umbrella', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shocked', '||rightparen||', 'blaine', '||exclammark||', '||questionmark||', '||return||', '||return||', 'blaine:', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'were', 'busy', 'tonight', '||period||', '||return||', '||return||', 'blaine:', '||leftparen||', 'cold', '||rightparen||', 'well', '||comma||', 'to', 'tell', 'you', 'the', 'truth', 'elaine', '||period||', 'i', "don't", 'know', 'if', 'i', 'can', 'be', 'with', 'someone', 'who', "doesn't", 'like', 'the', 'english', 'patient', '||period||', '||return||', '||return||', 'elaine:', "it's", 'just', 'a', 'stupid', 'movie', '||period||', '||return||', '||return||', 'blaine:', '||leftparen||', 'to', 'carol', '||rightparen||', "that's", 'what', "i'm", 'talking', 'about', '||period||', '||return||', '||return||', 'carol:', '||leftparen||', 'taking', "blaine's", 'arm', '||rightparen||', 'come', 'on', '||comma||', 'blaine', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'blaine:', '||leftparen||', 'bitter', '||rightparen||', 'enjoy', 'sack', 'lunch', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'fierce', '||rightparen||', 'i', 'will', '||exclammark||', '||return||', '||return||', 'helen:', '||leftparen||', 'accusing', '||rightparen||', 'how', 'could', 'you', 'do', 'that', 'to', 'mr', 'mandelbaum', '||questionmark||', 'you', 'should', 'be', 'ashamed', 'of', 'yourself', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'defensive', '||rightparen||', 'he', 'egged', 'me', 'on', '||period||', '||return||', '||return||', 'helen:', 'you', 'should', 'be', 'more', 'mature', '||period||', '||return||', '||return||', 'jerry:', "he's", 'eighty', '||exclammark||', '||return||', '||return||', 'morty:', '||leftparen||', 'standing', '||rightparen||', 'okay', '||period||', 'tomorrow', '||comma||', 'jerry', 'and', 'i', 'will', 'visit', 'izzy', 'and', 'apologise', '||period||', 'now', '||comma||', 'goodnight', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'walking', 'after', 'morty', '||rightparen||', "you're", 'not', 'sleeping', 'in', 'that', 'shirt', '||period||', "it's", 'too', 'tight', '||period||', '||return||', '||return||', 'morty:', 'this', 'shirt', 'will', 'never', 'leave', 'my', 'body', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'goodnight', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', '||rightparen||', 'alright', '||period||', 'seven', '||dash||', 'thirty', '||comma||', 'got', 'the', 'place', 'to', 'myself', '||period||', '||return||', '||return||', 'guillermo:', 'jerry', 'seinfeld', 'please', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'you', 'must', 'be', "kramer's", 'guys', '||period||', '||leftparen||', 'indicating', '||rightparen||', 'come', 'on', 'in', '||period||', 'you', 'got', 'the', 'cigars', '||questionmark||', '||return||', '||return||', 'guillermo:', 'what', 'cigars', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', 'said', 'i', 'was', 'supposed', 'to', 'bring', 'him', 'back', 'some', 'cubans', '||period||', '||return||', '||return||', 'guillermo:', '||leftparen||', 'indicating', 'the', 'threesome', '||rightparen||', 'we', 'are', 'the', 'cubans', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'hello', '||comma||', "jerry's", 'place', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'animated', '||rightparen||', "they're", 'real', 'cubans', '||questionmark||', '||exclammark||', "they're", 'human', 'beings', '||comma||', 'from', 'cuba', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'said', 'cubans', '||period||', "what'd", 'you', 'think', 'i', 'meant', '||questionmark||', '||return||', '||return||', 'jerry:', 'cigars', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'cuban', 'cigars', 'are', 'illegal', 'in', 'this', 'country', '||period||', "that's", 'why', 'i', 'got', 'these', 'guys', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'incredulous', '||rightparen||', "you're", 'making', 'your', 'own', 'cigars', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'got', 'investors', 'all', 'lined', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'hold', 'on', 'a', 'second', '||period||', '||leftparen||', 'to', 'morty', '||rightparen||', 'hiya', 'dad', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'without', 'looking', 'up', '||rightparen||', 'who', 'are', 'they', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'cuban', 'cigar', 'rollers', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'walking', 'back', 'out', 'of', 'the', 'room', '||rightparen||', "don't", 'tell', 'your', 'mother', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'bubbling', 'sound', '||questionmark||', 'are', 'you', 'making', 'your', 'tomato', 'sauce', '||questionmark||', '||return||', '||return||', 'kramer:', 'hot', 'and', 'spicy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'accusing', '||rightparen||', "you're", 'not', 'wearing', 'a', 'shirt', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'what', 'colour', 'is', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'damn', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'you', "could've", 'just', 'given', 'me', "neil's", 'number', '||period||', 'you', '||period||', '||period||', 'you', "didn't", 'have', 'to', 'take', 'me', 'out', 'to', 'dinner', '||period||', '||return||', '||return||', 'danielle:', 'i', 'wanted', 'to', 'give', 'it', 'to', 'you', 'in', 'person', '||period||', '||return||', '||return||', 'danielle:', '||leftparen||', 'flirtatious', '||rightparen||', 'you', 'know', '||comma||', 'i', "don't", 'have', 'to', 'be', 'up', 'in', 'the', 'morning', '||comma||', 'and', 'i', 'know', 'a', 'great', 'breakfast', 'place', '||comma||', 'right', 'around', 'the', 'corner', '||period||', '||return||', '||return||', 'george:', 'does', 'neil', 'like', 'to', 'eat', 'a', 'big', 'breakfast', '||questionmark||', '||return||', '||return||', 'danielle:', '||leftparen||', 'inviting', '||rightparen||', 'why', "don't", 'you', 'come', 'in', '||questionmark||', "we'll", 'take', 'about', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'at', 'his', 'watch', '||rightparen||', 'i', 'really', 'should', 'get', 'going', '||period||', "y'know", '||comma||', 'i', '||period||', '||period||', 'i', 'wanna', 'be', 'home', 'in', 'case', 'neil', 'calls', '||period||', '||return||', '||return||', 'danielle:', 'well', '||comma||', 'goodnight', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hurried', '||rightparen||', "i'll", 'see', 'you', '||period||', '||return||', '||return||', 'waitress:', 'rough', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'ugh', '||period||', 'you', "wouldn't", 'believe', 'it', '||period||', 'my', 'boyfriend', 'dumped', 'me', '||period||', 'my', 'friends', '||comma||', 'who', 'i', "don't", 'even', 'like', '||comma||', 'they', "won't", 'talk', 'to', 'me', '||period||', '||leftparen||', 'face', '||dash||', 'pulling', '||rightparen||', 'all', 'because', 'i', "don't", 'like', 'that', 'stupid', 'english', 'patient', 'movie', '||period||', '||return||', '||return||', 'waitress:', 'really', '||questionmark||', 'i', 'thought', 'it', 'was', 'pretty', 'good', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||period||', 'good', '||questionmark||', 'what', 'was', 'good', 'about', 'it', '||questionmark||', '||leftparen||', 'scoffs', '||rightparen||', 'those', 'sex', 'scenes', '||exclammark||', 'i', 'mean', '||comma||', 'please', '||exclammark||', 'gimme', 'something', 'i', 'can', 'use', '||exclammark||', '||return||', '||return||', 'waitress:', '||leftparen||', 'sour', '||rightparen||', 'well', '||comma||', 'i', 'liked', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'calling', 'after', '||rightparen||', 'hey', '||period||', 'you', 'forgot', 'about', 'my', 'piece', 'of', 'pie', '||period||', 'hello', '||questionmark||', '||leftparen||', 'irritated', '||rightparen||', 'you', 'know', '||comma||', 'sex', 'in', 'a', 'tub', '||period||', 'that', "doesn't", 'work', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'quite', 'a', 'condo', '||period||', '||return||', '||return||', 'morty:', 'the', 'mandelbaums', 'own', 'the', 'magic', 'pan', 'restaurants', '||period||', '||return||', '||return||', 'jerry:', 'the', 'crepe', 'place', '||questionmark||', '||return||', '||return||', 'morty:', 'yeah', '||period||', 'this', 'is', 'all', 'big', 'crepe', 'money', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doubtful', '||rightparen||', "there's", 'crepe', 'money', '||questionmark||', '||return||', '||return||', 'izzy:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'apologetic', '||rightparen||', 'aw', '||comma||', 'mr', 'mandelbaum', '||comma||', 'i', 'just', 'wanted', 'to', 'come', 'by', 'and', 'tell', 'you', 'how', 'sorry', 'i', 'was', 'that', 'you', 'hurt', 'yourself', '||period||', '||return||', '||return||', 'izzy:', 'what', 'the', 'hell', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'izzy:', 'that', 'shirt', '||period||', 'you', 'think', 'that', 'you', 'are', 'the', 'number', 'one', 'dad', '||questionmark||', '||return||', '||return||', 'morty:', 'this', 'was', 'a', 'gift', 'from', 'my', 'son', '||period||', '||return||', '||return||', 'izzy:', 'oh', '||comma||', 'i', 'see', 'how', 'it', 'works', 'now', '||period||', '||leftparen||', 'indicates', 'jerry', '||rightparen||', 'he', 'knocks', 'me', 'outta', 'commission', '||comma||', 'so', '||leftparen||', 'indicates', 'morty', '||rightparen||', 'you', 'can', 'strut', 'around', 'in', 'your', 'fancy', 'number', 'one', 'shirt', '||period||', '||leftparen||', 'moves', 'the', 'bedcovers', '||rightparen||', 'well', '||comma||', "i'll", 'show', 'you', "who's", 'number', 'one', '||period||', '||return||', '||return||', 'jerry:', 'mr', 'mandelbaum', '||comma||', 'please', '||period||', '||return||', '||return||', 'izzy:', "it's", 'go', 'time', '||period||', '||return||', '||return||', 'izzy:', '||leftparen||', 'pained', '||rightparen||', 'ahh', '||period||', 'my', 'back', '||period||', 'i', "can't", 'move', '||period||', '||return||', '||return||', 'morty:', 'call', 'an', 'ambulance', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'saw', 'one', 'a', 'coupla', 'doors', 'down', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disbelief', '||rightparen||', 'so', 'she', 'wanted', 'you', 'to', 'come', 'up', '||comma||', 'but', 'you', 'left', 'because', 'you', 'thought', 'some', 'guy', 'might', 'be', 'calling', 'you', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', 'some', 'guy', '||period||', 'some', 'guy', '||questionmark||', 'neil', '||exclammark||', 'i', 'have', 'got', 'to', 'find', 'out', 'how', 'he', 'could', 'get', 'a', 'girl', 'like', 'danielle', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'out', 'the', 'obvious', '||rightparen||', 'george', '||comma||', "you've", 'got', 'danielle', '||period||', 'forget', 'about', 'neil', '||period||', "you've", 'out', '||dash||', 'neiled', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'surprised', '||rightparen||', 'so', '||comma||', "i'm", 'neil', '||questionmark||', 'how', 'did', 'i', 'do', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'but', 'you', 'better', 'keep', 'it', 'up', '||period||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'go', 'meet', 'danielle', '||period||', '||leftparen||', 'grabs', 'his', 'coat', '||rightparen||', "there's", 'a', 'new', 'neil', 'in', 'town', '||exclammark||', '||leftparen||', 'triumphant', 'laughter', '||rightparen||', 'hahaha', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'i', 'try', 'to', 'take', 'a', 'vacation', '||comma||', 'i', 'come', 'back', '||comma||', 'the', 'whole', "operation's", 'a', 'shambles', '||period||', '||leftparen||', 'answers', 'phone', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'morty:', 'hey', 'jerry', '||period||', 'number', 'one', 'here', '||period||', 'did', 'you', 'go', 'see', 'izzy', 'at', 'the', 'back', 'specialist', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'will', '||comma||', 'i', 'just', 'walked', 'in', 'the', 'door', '||period||', '||return||', '||return||', 'helen:', 'you', 'have', 'to', 'go', 'see', 'him', '||period||', '||return||', '||return||', 'jerry:', 'ma', '||period||', '||return||', '||return||', 'morty:', 'helen', '||comma||', 'will', 'you', 'stop', 'bothering', 'him', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'that', 'shirt', 'is', 'gone', 'right', 'to', 'his', 'head', '||period||', '||return||', '||return||', 'morty:', 'number', 'one', '||comma||', 'signing', 'off', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'just', 'picked', 'up', 'the', 'cubans', 'at', 'the', 'bus', 'station', '||period||', '||leftparen||', 'shrill', '||rightparen||', "what's", 'going', 'on', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'animated', '||rightparen||', "they're", 'not', 'real', 'cubans', '||period||', "they're", 'dominicans', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'jerry', '||comma||', 'if', 'my', 'investors', "don't", 'get', 'cubans', '||comma||', 'the', 'whole', "deal's", 'off', '||period||', '||return||', '||return||', 'jerry:', "what's", 'the', 'difference', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'once', "you've", 'had', 'real', 'cubans', '||comma||', "there's", 'just', 'nothing', 'else', 'like', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', "we're", 'talking', 'about', 'people', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', '||period||', 'the', 'quality', '||comma||', 'the', 'texture', '||comma||', 'the', 'intoxicating', 'aroma', '||period||', 'these', 'guys', "don't", 'have', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'they', 'smelled', 'pretty', 'nice', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'your', "palate's", 'unrefined', '||period||', '||return||', '||return||', 'jerry:', 'is', 'not', '||period||', '||return||', '||return||', 'kramer:', 'is', 'too', '||period||', '||return||', '||return||', 'jerry:', 'is', 'not', '||period||', '||return||', '||return||', 'kramer:', 'is', 'too', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'having', 'this', 'conversation', '||period||', '||return||', '||return||', 'kramer:', 'are', 'too', '||period||', '||return||', '||return||', 'jerry:', 'am', 'not', '||period||', '||return||', '||return||', 'kramer:', 'are', 'too', '||period||', '||return||', '||return||', 'jerry:', 'am', 'not', '||period||', '||return||', '||return||', 'kramer:', 'are', 'too', '||period||', '||return||', '||return||', 'peterman:', 'another', 'productive', 'meeting', '||period||', 'by', 'the', 'way', '||comma||', 'i', 'saw', 'that', 'english', 'patient', 'film', 'last', 'night', '||period||', 'it', 'was', 'extraordinary', '||period||', '||return||', '||return||', 'dugan:', '||leftparen||', 'enthusiastic', '||rightparen||', 'oh', 'yes', '||period||', 'it', 'was', 'so', 'romantic', '||period||', 'it', 'ravished', 'me', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', "what'd", 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'hesitant', '||rightparen||', 'well', '||comma||', 'uh', '||comma||', 'act', '||period||', '||period||', 'actually', '||comma||', 'i', "haven't", 'seen', 'it', '||period||', 'so', '||comma||', 'i', "couldn't", 'tell', 'you', 'whether', 'i', 'liked', 'it', '||comma||', 'or', 'whether', 'it', 'really', 'sucked', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'aghast', '||rightparen||', 'you', "haven't", 'seen', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shakes', 'head', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'peterman:', "that's", 'it', '||exclammark||', 'drop', 'everything', '||period||', "we're", 'going', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'again', '||comma||', 'mr', 'mandelbaum', '||comma||', 'this', 'back', 'specialist', 'is', 'supposed', 'to', 'be', 'the', 'best', '||period||', 'so', 'if', "there's", 'anything', 'else', 'i', 'can', 'do', '||comma||', 'please', "don't", 'hesitate', 'to', '||comma||', 'uh', '||comma||', 'try', 'and', 'find', 'my', 'number', '||period||', '||return||', '||return||', 'izzy:', 'uh', '||comma||', 'oh', '||comma||', 'wait', '||period||', '||return||', '||return||', 'izzy:', 'how', "'bout", 'that', '||comma||', 'huh', '||questionmark||', 'the', "world's", 'greatest', 'dad', '||period||', 'my', 'son', 'made', 'it', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'humouring', 'him', '||rightparen||', "that's", 'very', 'nice', '||period||', '||return||', '||return||', 'izzy:', 'the', 'best', 'in', 'the', 'world', '||period||', '||leftparen||', 'pointing', 'to', 'himself', '||rightparen||', 'which', 'means', "i'm", 'better', 'than', 'just', 'number', 'one', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'know', 'how', 'official', 'any', 'of', 'these', 'rankings', 'really', 'are', '||period||', '||return||', '||return||', 'izzy:', 'hi', '||comma||', 'son', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'hi', 'daddy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'surprise', '||rightparen||', 'this', 'is', 'your', 'son', '||questionmark||', '||return||', '||return||', 'izzy:', 'i', 'got', 'married', 'in', 'high', 'school', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'izzy:', 'this', 'is', "seinfeld's", 'kid', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'oh', '||comma||', 'you', 'think', "you're", 'tough', '||comma||', 'picking', 'on', 'an', 'old', 'man', '||questionmark||', '||leftparen||', 'squaring', 'up', 'to', 'jerry', '||rightparen||', 'maybe', "you'd", 'like', 'to', 'try', 'taking', 'on', 'somebody', 'your', 'own', 'age', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jocular', '||rightparen||', 'you', 'got', 'any', 'kids', '||questionmark||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'oh', '||comma||', 'you', 'think', "you're", 'better', 'than', 'me', '||questionmark||', '||leftparen||', 'challenging', '||rightparen||', 'go', 'ahead', '||comma||', 'pick', 'out', 'anything', 'in', 'the', 'room', 'here', '||period||', "i'll", 'lift', 'it', 'up', 'over', 'my', 'head', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'defuse', 'the', 'situation', '||rightparen||', 'look', '||comma||', 'no', '||dash||', 'one', 'is', 'lifting', 'anything', '||period||', '||return||', '||return||', 'izzy:', '||leftparen||', 'pointing', '||rightparen||', 'the', 'television', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'under', 'his', 'breath', '||rightparen||', 'oh', 'no', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'this', "one's", 'for', 'you', '||comma||', 'pop', '||period||', "it's", 'go', 'time', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', '||leftparen||', 'pained', '||rightparen||', 'ohh', '||exclammark||', 'my', 'back', '||exclammark||', '||return||', '||return||', 'izzy:', '||leftparen||', 'urgent', '||rightparen||', 'call', 'an', 'ambulance', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'laconic', '||rightparen||', "we're", 'already', 'in', 'a', 'hospital', '||period||', '||return||', '||return||', 'haffler:', 'awright', '||comma||', 'partner', '||period||', "let's", 'get', 'down', 'to', 'business', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'nervous', '||rightparen||', 'okay', '||comma||', 'well', '||comma||', 'uh', '||comma||', "i'll", 'uh', '||comma||', "i'll", 'get', 'the', 'cubans', '||period||', '||return||', '||return||', 'kramer:', "they're", 'right', 'out', 'here', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'here', 'they', 'are', '||period||', 'the', 'cubans', '||period||', 'real', 'cubans', '||period||', '||return||', '||return||', 'haffler:', 'you', "wouldn't", 'be', 'trying', 'to', 'sell', 'old', 'earl', 'haffler', 'dominicans', 'in', 'a', 'cuban', 'wrapper', 'now', '||comma||', 'would', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'fidgety', '||rightparen||', 'oh', '||comma||', 'now', '||comma||', 'come', 'on', '||period||', 'look', 'at', 'these', 'boys', '||period||', 'if', 'they', 'were', 'any', 'more', 'cuban', '||comma||', 'castro', "would've", 'smoked', 'them', 'himself', '||period||', 'huh', '||period||', '||return||', '||return||', 'haffler:', '||leftparen||', 'confusion', '||rightparen||', "we're", 'talking', 'about', 'people', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'puzzled', '||rightparen||', 'i', 'think', 'so', '||period||', '||return||', '||return||', 'haffler:', 'i', 'thought', 'he', 'quit', 'smoking', 'cigars', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', 'but', 'they', 'also', 'rolled', 'for', 'his', 'brother', '||period||', '||period||', '||period||', '||leftparen||', 'thinks', 'for', 'a', 'second', '||rightparen||', '||period||', '||period||', '||period||', 'dennis', '||period||', '||return||', '||return||', 'haffler:', '||leftparen||', 'dubious', '||rightparen||', 'dennis', 'castro', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'dwayne', '||period||', '||return||', '||return||', 'haffler:', 'get', 'the', 'hell', 'outta', 'my', 'office', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shrill', '||rightparen||', 'what', '||exclammark||', '||questionmark||', '||return||', '||return||', 'danielle:', 'you', 'know', '||comma||', 'neil', 'called', 'me', 'today', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'interested', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'danielle:', 'yeah', '||period||', "he's", 'pretty', 'upset', 'that', 'i', 'broke', 'up', 'with', 'him', 'to', 'go', 'out', 'with', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'smug', '||rightparen||', 'ah', '||comma||', 'i', 'guess', 'i', 'showed', 'neil', "who's", 'neil', '||period||', '||return||', '||return||', 'danielle:', 'he', 'wants', 'to', 'get', 'together', 'tomorrow', 'night', 'and', 'have', 'coffee', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'little', 'worried', '||rightparen||', 'coffee', '||questionmark||', '||leftparen||', 'thinks', '||rightparen||', 'i', 'can', 'beat', 'that', '||period||', 'move', 'in', 'with', 'me', '||period||', '||return||', '||return||', 'danielle:', '||leftparen||', 'surprised', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'smiles', '||rightparen||', 'beats', 'the', 'hell', 'out', 'of', 'coffee', '||period||', '||return||', '||return||', 'peterman:', '||leftparen||', 'emotional', '||rightparen||', 'and', 'i', 'thought', 'i', 'knew', 'what', 'love', 'was', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'indifferent', '||rightparen||', 'yuh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'incredulous', '||rightparen||', 'you', 'asked', 'her', 'to', 'move', 'in', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'gotta', 'stay', 'one', 'step', 'ahead', 'of', 'neil', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'musing', '||rightparen||', 'what', 'if', "it's", 'neil', 'armstrong', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', 'then', "i'm", 'going', 'to', 'mars', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'if', "it's", 'neil', 'diamond', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'tormented', '||rightparen||', 'aw', '||comma||', 'shut', 'up', 'jerry', '||exclammark||', 'just', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'i', 'gotta', 'go', 'back', 'to', 'the', 'hospital', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', 'to', 'see', 'the', 'old', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'got', 'into', 'a', 'thing', 'with', 'the', 'son', '||comma||', 'and', 'now', "he's", 'laid', 'up', 'too', '||period||', '||return||', '||return||', 'george:', 'how', "old's", 'the', 'son', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "he's", 'the', 'same', 'age', 'as', 'the', 'father', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'with', 'this', 'family', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', "it's", 'like', '||comma||', 'if', 'one', 'of', "'em", 'dies', '||comma||', 'the', 'other', 'one', 'wants', 'to', 'bench', 'press', 'the', 'casket', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'noise', '||dash||', 'like', 'shivery', '||rightparen||', 'datiditadit', '||period||', '||return||', '||return||', 'jerry:', "you're", 'cold', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||leftparen||', 'indicates', 'with', 'his', 'head', '||rightparen||', '||leftparen||', 'noise', 'again', '||rightparen||', 'ditadidatidat', '||period||', '||return||', '||return||', 'jerry:', 'something', 'wrong', 'with', 'your', 'chest', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'indicating', 'with', 'his', 'thumb', '||rightparen||', 'dijadidatjd', '||period||', 'there', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaning', 'round', 'kramer', '||rightparen||', 'where', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'urgent', '||rightparen||', 'no', '||comma||', 'no', '||period||', "don't", 'look', '||period||', "don't", 'look', '||period||', '||return||', '||return||', 'kramer:', 'over', 'there', '||period||', 'the', 'dominicans', '||period||', '||return||', '||return||', 'jerry:', "aren't", 'they', 'supposed', 'to', 'be', 'rolling', 'cigars', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'it', "didn't", 'quite', 'work', 'out', '||comma||', 'and', 'now', "i've", 'got', 'nothing', 'for', 'them', 'to', 'do', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'i', 'taught', "'em", 'all', 'about', 'cuba', '||comma||', 'and', 'they', 'really', 'took', 'to', 'it', '||period||', 'you', 'know', '||comma||', 'marxism', '||comma||', 'the', "worker's", 'revolution', '||comma||', 'the', 'clothing', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'they', 'seem', 'pretty', 'angry', 'about', 'something', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'nervous', '||rightparen||', 'yeah', '||period||', "i'm", 'a', 'little', 'worried', '||period||', 'when', "there's", 'no', 'work', '||comma||', 'and', 'the', 'people', 'get', 'restless', '||comma||', 'who', 'do', 'you', 'think', 'they', 'come', 'after', '||questionmark||', '||leftparen||', 'pointing', 'to', 'himself', '||comma||', 'shrill', '||rightparen||', 'el', 'presidente', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'swear', 'to', 'you', '||comma||', 'i', "didn't", 'know', 'they', 'tv', 'was', 'bolted', 'to', 'the', 'table', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'i', 'bet', 'you', 'pulled', 'that', 'trick', 'on', 'my', 'daddy', '||comma||', 'in', 'florida', '||period||', '||return||', '||return||', 'jerry:', 'he', "couldn't", 'handle', 'the', 'weight', '||period||', '||return||', '||return||', 'izzy:', '||leftparen||', 'hostile', '||rightparen||', 'oh', '||comma||', 'so', 'now', 'you', 'think', "you're", 'better', 'than', 'me', '||questionmark||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', '||leftparen||', 'indicating', 'izzy', '||rightparen||', 'you', 'think', "you're", 'better', 'than', 'him', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'placatory', '||rightparen||', 'look', '||comma||', 'let', 'me', 'just', 'state', 'for', 'the', 'record', '||comma||', 'i', 'think', "you're", 'both', 'better', 'than', 'me', '||period||', '||return||', '||return||', 'izzy:', 'okay', '||period||', '||return||', '||return||', 'izzy', 'sr', '||period||', ':', 'my', 'boys', '||period||', '||return||', '||return||', 'izzy:', 'my', 'dad', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'my', 'grandpa', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'incredulous', '||rightparen||', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'izzy', 'sr', '||period||', ':', '||leftparen||', 'indicating', 'izzy', 'jr', '||rightparen||', 'what', 'happened', 'to', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'was', 'trying', 'to', 'lift', 'the', 'tv', '||period||', '||return||', '||return||', 'izzy', 'sr', '||period||', ':', '||leftparen||', 'pointing', '||rightparen||', 'that', 'tv', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'consternation', '||rightparen||', 'oh', 'no', '||period||', '||leftparen||', 'to', 'the', 'bedridden', 'two', '||rightparen||', "it's", 'go', 'time', '||period||', '||return||', '||return||', 'izzy', 'izzy', 'sr', '||period||', '||period||', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'pained', '||rightparen||', 'oohh', '||exclammark||', '||return||', '||return||', 'izzy', 'sr', '||period||', ':', 'why', "didn't", 'anybody', 'tell', 'me', '||questionmark||', 'it', 'was', 'bolted', 'down', '||exclammark||', '||return||', '||return||', 'izzy:', 'i', 'still', 'thought', 'you', 'could', 'do', 'it', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'me', 'too', '||period||', '||return||', '||return||', 'izzy/izzy', 'jr/izzy', 'izzy', 'sr', '||period||', ':', '||leftparen||', 'chanting', 'and', 'punching', 'the', 'air', '||rightparen||', 'mandelbaum', '||comma||', 'mandelbaum', '||comma||', 'mandelbaum', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'fellas', '||comma||', 'fellas', '||comma||', 'look', '||comma||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'izzy:', 'oh', 'yeah', '||comma||', "that's", 'right', '||period||', 'go', '||period||', 'put', 'us', 'all', 'in', 'the', 'hospital', '||period||', 'and', "you've", 'ruined', 'our', 'business', 'with', 'all', 'your', 'macho', 'head', 'games', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'defensive', '||rightparen||', 'i', "didn't", 'ruin', 'your', 'business', '||period||', '||return||', '||return||', 'izzy:', 'yes', '||comma||', 'you', 'did', '||period||', "there's", 'nobody', 'there', 'now', 'at', 'the', 'magic', 'pan', 'to', 'roll', 'the', 'crepes', '||period||', 'we', 'gotta', 'close', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'uncertain', '||rightparen||', "don't", 'you', 'hire', 'people', 'to', 'do', 'that', '||questionmark||', '||return||', '||return||', 'izzy:', 'each', 'crepe', 'has', 'to', 'be', 'hand', '||dash||', 'rolled', 'by', 'a', 'mandelbaum', '||period||', "that's", 'what', 'puts', 'the', 'magic', 'in', 'magic', 'pan', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', '||rightparen||', 'so', '||comma||', 'you', 'just', 'need', 'some', 'guys', 'that', 'could', 'roll', "'em", '||questionmark||', '||return||', '||return||', 'izzy:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'having', 'an', 'idea', '||rightparen||', 'i', 'think', 'i', 'can', 'help', 'you', 'out', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'izzy', 'sr', '||period||', ':', '||leftparen||', 'calls', '||rightparen||', 'hey', '||comma||', 'i', "can't", 'see', 'the', 'tv', '||period||', '||return||', '||return||', 'jerry:', 'here', '||period||', '||return||', '||return||', 'izzy:', 'you', 'think', "you're", 'better', 'than', 'us', '||comma||', "don't", 'you', '||questionmark||', '||exclammark||', 'huh', '||exclammark||', '||questionmark||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'i', 'hope', "you're", 'watching', 'the', 'clothes', '||comma||', 'because', 'i', "can't", 'take', 'my', 'eyes', 'off', 'the', 'passion', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'quiet', 'vehemence', '||rightparen||', 'oh', '||period||', 'no', '||period||', 'i', "can't", 'do', 'this', 'any', 'more', '||period||', 'i', "can't", '||period||', "it's", 'too', 'long', '||period||', '||leftparen||', 'to', 'the', 'screen', '||rightparen||', 'quit', 'telling', 'your', 'stupid', 'story', '||comma||', 'about', 'the', 'stupid', 'desert', '||comma||', 'and', 'just', 'die', 'already', '||exclammark||', '||leftparen||', 'louder', '||rightparen||', 'die', '||exclammark||', '||exclammark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'surprised', '||rightparen||', 'elaine', '||period||', 'you', "don't", 'like', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouts', '||rightparen||', 'i', 'hate', 'it', '||exclammark||', '||exclammark||', '||return||', '||return||', 'crowd:', 'shh', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouts', '||rightparen||', 'oh', '||comma||', 'go', 'to', 'hell', '||exclammark||', '||exclammark||', '||return||', '||return||', 'peterman:', '||leftparen||', 'quietly', '||rightparen||', 'well', '||comma||', 'why', "didn't", 'you', 'say', 'so', 'in', 'the', 'first', 'place', '||questionmark||', "you're", 'fired', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grabbing', 'her', 'bag', 'and', 'coat', '||rightparen||', 'great', '||period||', "i'll", 'wait', 'for', 'you', 'outside', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'gonna', 'fire', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'only', 'way', 'i', 'could', 'talk', 'him', 'out', 'of', 'it', 'was', 'that', 'i', 'agreed', 'to', 'go', 'and', 'visit', 'the', 'tunisian', 'desert', '||period||', '||return||', '||return||', 'jerry:', 'tunisia', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'where', 'they', 'filmed', 'the', 'movie', '||period||', "it's", 'supposed', 'to', 'inspire', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'that', "doesn't", 'sound', 'so', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'i', 'have', 'to', 'live', 'in', 'a', 'cave', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sardonic', '||rightparen||', 'oh', '||period||', '||leftparen||', 'smiles', '||rightparen||', '||return||', '||return||', 'kramer:', 'these', 'dominicans', 'really', 'know', 'their', 'way', 'round', 'a', 'crepe', '||period||', 'look', 'at', 'that', '||period||', "it's", 'like', "they're", 'rolling', 'a', 'double', 'corona', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'one', 'of', 'the', 'guys', '||rightparen||', 'just', 'a', 'cigar', 'made', 'outta', 'bisquik', '||comma||', 'huh', '||comma||', 'guillermo', '||questionmark||', '||return||', '||return||', 'danielle:', "i'm", 'very', 'happy', 'with', 'george', '||period||', "i'm", 'sorry', 'neil', '||comma||', "it's", 'over', '||period||', '||return||', '||return||', 'danielle:', 'come', 'on', '||comma||', "let's", 'just', 'eat', 'our', 'crepes', '||period||', '||return||', '||return||', 'customer:', '||leftparen||', 'pained', 'scream', '||rightparen||', 'aaghh', '||exclammark||', '||exclammark||', 'my', 'face', '||exclammark||', '||return||', '||return||', 'danielle:', '||leftparen||', 'concerned', 'cry', '||rightparen||', 'neil', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'are', 'the', 'crepes', 'spraying', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looks', 'over', 'at', 'the', 'three', 'guys', '||rightparen||', 'the', 'dominicans', 'are', 'rolling', 'them', 'too', 'tight', '||period||', '||leftparen||', 'regretful', '||rightparen||', 'uhm', '||comma||', 'well', '||comma||', "that's", 'why', 'you', 'gotta', 'get', 'real', 'cubans', '||period||', '||return||', '||return||', 'george:', 'danielle', '||period||', "where's", 'neil', '||questionmark||', '||leftparen||', 'indicating', 'the', 'bed', '||rightparen||', 'is', 'this', 'him', '||questionmark||', '||return||', '||return||', 'danielle:', 'yeah', '||comma||', 'that', 'blueberry', 'crepe', 'burned', 'him', 'pretty', 'badly', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'danielle', '||rightparen||', 'whose', 'cane', 'is', 'this', '||questionmark||', '||return||', '||return||', 'danielle:', "it's", "neil's", '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'himself', '||rightparen||', 'a', 'cane', '||period||', 'i', 'knew', 'it', '||period||', '||leftparen||', 'to', 'neil', '||rightparen||', 'so', '||comma||', 'we', 'meet', 'at', 'last', '||period||', 'i', 'admire', 'your', 'skills', '||comma||', 'mr', 'peanut', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'danielle', '||comma||', '||leftparen||', 'digs', 'in', 'his', 'pocket', '||rightparen||', 'we', 'should', 'get', 'going', '||period||', 'i', 'got', 'a', 'key', 'made', 'for', 'you', '||period||', '||return||', '||return||', 'danielle:', 'george', '||comma||', 'i', "can't", 'move', 'in', 'with', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shocked', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'danielle:', "i'm", 'sorry', '||comma||', 'but', "i'm", 'taking', 'neil', 'to', 'a', 'clinic', 'in', 'england', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'animated', '||rightparen||', 'n', '||period||', '||period||', 'no', '||comma||', 'no', '||period||', 'you', "can't", 'leave', 'me', '||period||', '||leftparen||', 'frantic', '||rightparen||', 'marry', 'me', '||exclammark||', "i'll", 'burn', 'myself', '||period||', "i'll", 'burn', 'my', 'parents', '||exclammark||', '||return||', '||return||', 'danielle:', 'sorry', 'george', '||period||', '||return||', '||return||', 'neil:', '||leftparen||', 'beckoning', '||rightparen||', 'george', '||period||', '||return||', '||return||', 'neil:', '||leftparen||', 'quiet', 'triumph', '||rightparen||', 'i', 'win', '||period||', '||return||', '||return||', 'tan:', 'ladies', 'and', 'gentlemen', '||period||', 'in', 'just', 'one', 'moment', '||comma||', "we'll", 'be', 'showing', 'our', 'feature', 'presentation', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'dread', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'tan:', '||period||', '||period||', '||period||', 'the', 'comedy', 'hit', '||comma||', 'sack', 'lunch', '||comma||', 'starring', 'dabney', 'coleman', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'cheering', 'up', '||rightparen||', 'ah', '||comma||', 'right', '||exclammark||', 'aw', '||comma||', 'this', 'is', 'shaping', 'up', '||period||', '||return||', '||return||', 'guy:', 'excuse', 'me', '||comma||', 'please', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'sure', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'uncomfortable', '||rightparen||', 'ooh', '||period||', '||return||', '||return||', 'guillermo:', 'ladies', 'and', 'gentlemen', '||period||', 'because', 'we', 'have', 'been', 'exploited', 'by', 'your', 'magic', 'pan', 'crepe', 'restaurants', '||period||', '||period||', '||period||', '||return||', '||return||', 'guillermo:', '||period||', '||period||', '||period||', 'we', 'are', 'hijacking', 'this', 'plane', 'to', 'cuba', '||exclammark||', '||return||', '||return||', 'guillermo:', 'everyone', 'stay', 'in', 'your', 'seats', '||period||', 'and', 'shut', 'that', 'movie', 'off', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'annoyed', '||rightparen||', 'aww', '||comma||', 'nuts', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'boy', 'i', 'was', 'up', 'to', 'four', 'in', 'the', 'morning', 'watching', 'the', 'omen', 'trilogy', '||period||', '||return||', '||return||', 'jerry:', "that's", 'good', 'stuff', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'to', 'myself', '||period||', "i'm", 'exhausted', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'grab', 'a', 'nap', 'at', 'work', '||period||', '||return||', '||return||', 'george:', 'not', 'with', 'that', 'big', 'glass', 'window', 'looking', 'out', 'into', 'the', 'hall', '||period||', "i'd", 'love', 'a', 'good', 'nap', '||period||', "that's", 'the', 'only', 'thing', 'getting', 'me', 'out', 'of', 'bed', 'in', 'the', 'morning', '||period||', "i'll", 'see', "ya'", '||period||', '||return||', '||return||', 'elaine:', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'doing', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'to', 'take', 'a', 'little', 'stroll', 'through', 'the', 'park', '||period||', '||return||', '||return||', 'jerry:', 'with', 'a', 'gentleman', 'caller', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'his', 'name', 'is', 'hal', '||period||', '||return||', '||return||', 'jerry:', 'the', 'walking', 'date', 'is', 'a', 'good', 'date', '||period||', 'you', "don't", 'have', 'to', 'look', 'right', 'at', 'the', 'other', '||dash||', 'person', '||period||', '||return||', '||return||', 'elaine:', "it's", 'the', 'next', 'best', 'thing', 'to', 'being', 'alone', '||period||', '||return||', '||return||', 'jerry:', 'shower', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'pool', '||period||', 'i', 'just', 'swam', '200', 'laps', '||period||', '||return||', '||return||', 'elaine:', 'you', 'are', 'kidding', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'hose', 'babies', '[hands]', '||period||', "they're", 'prunes', '||period||', 'i', 'saw', 'conrad', 'going', 'up', 'to', 'oyur', 'place', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', "that's", 'right', '||period||', 'those', 'new', 'kitchen', 'cabinets', '||period||', 'how', 'is', 'that', 'coming', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'little', 'slow', '||period||', "i've", 'got', 'to', 'hold', 'this', "guy's", 'hand', 'on', 'every', 'little', 'decision', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'kramer', '||comma||', 'listen', '||comma||', "you've", 'seen', 'the', 'omen', 'right', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'exactly', 'was', 'that', 'kid', '||questionmark||', '||return||', '||return||', 'kramer:', 'who', '||comma||', 'damien', '||questionmark||', 'nothing', '||comma||', 'just', 'a', 'mischievous', '||comma||', 'rambunctious', 'kid', '||period||', '||return||', '||return||', 'wilhelm:', 'oh', '||comma||', 'george', '||comma||', 'have', 'you', 'seen', 'the', 'american', 'league', 'directory', '||questionmark||', 'it', 'is', 'a', 'big', 'green', 'book', '||period||', 'oh', '||comma||', 'thanks', 'kiddo', '||period||', '||return||', '||return||', 'hal:', 'nan', '||return||', '||return||', 'elaine:', 'well', 'i', "don't", 'care', '||period||', 'it', 'was', 'delicious', '||period||', '||return||', '||return||', 'elaine:', 'wanna', 'sit', 'down', '||questionmark||', '||return||', '||return||', 'hal:', 'oh', '||comma||', 'i', "don't", 'sit', 'on', 'park', 'benches', '||period||', "they're", 'very', 'bad', 'for', 'the', 'back', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'hal:', 'i', 'threw', 'my', 'back', 'out', 'about', '15', 'years', 'ago', '||period||', 'ever', 'since', 'i', 'have', 'been', 'very', 'careful', '||period||', 'i', 'only', 'buy', 'furniture', 'in', 'the', 'ergonomics', 'store', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'those', 'places', 'have', 'the', 'stupidest', 'names', '||period||', 'like', '||comma||', 'uh', '||comma||', '||quotemark||', 'back', 'in', '||quotemark||', '||comma||', 'or', '||quotemark||', 'good', 'vertibrations', '||quotemark||', '||period||', '||return||', '||return||', 'hal:', 'not', 'this', 'one', '||period||', "it's", 'called', 'the', '||quotemark||', 'lumbar', 'yard', '||quotemark||', '||period||', '||return||', '||return||', 'conrad:', 'oh', '||comma||', 'jerry', 'are', 'you', 'okay', 'with', 'this', 'hinge', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'conrad:', 'i', 'can', 'get', 'you', 'any', 'kind', 'you', 'want', '||comma||', 'you', 'know', '||period||', 'four', 'holes', '||comma||', 'three', 'holes', '||comma||', 'two', 'holes', '||comma||', 'bronze', '||comma||', 'no', 'hinge', 'at', 'all', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'why', "don't", 'we', 'just', 'go', 'with', 'the', 'one', 'in', 'your', 'hand', '||questionmark||', '||return||', '||return||', 'conrad:', 'oh', '||comma||', 'these', 'are', 'different', '||period||', '||return||', '||return||', 'jerry:', 'drop', 'one', '||period||', '||period||', '||period||', '||period||', 'left', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'look', 'at', 'my', 'eyes', '||period||', '||return||', '||return||', 'jerry:', 'a', 'little', 'less', 'beady', 'today', '||period||', '||return||', '||return||', 'george:', 'because', "i'm", 'refreshed', '||period||', 'i', 'finally', 'found', 'a', 'way', 'to', 'sleep', 'in', 'my', 'office', '||period||', 'under', 'the', 'desk', '||period||', 'i', 'lie', 'on', 'my', 'back', '||period||', 'i', 'tuck', 'in', 'the', 'chair', '||period||', "i'm", 'invisible', '||period||', '||return||', '||return||', 'jerry:', 'sounds', 'like', 'a', 'really', 'cool', 'fort', '||period||', '||return||', '||return||', 'conrad:', 'jerry', '||comma||', 'do', 'you', 'want', 'a', 'flat', 'edge', 'on', 'this', 'molding', 'or', 'do', 'you', 'want', 'me', 'to', 'bevel', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'what', 'i', 'would', 'like', 'you', 'to', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'george:', 'conrad', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'conrad:', 'conrad', '||comma||', 'connie', '||comma||', 'or', 'con', '||comma||', 'whatever', 'you', 'prefer', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'let', 'me', 'ask', 'you', 'a', 'question', '||period||', 'could', 'you', '||comma||', 'uh', '||comma||', 'expand', 'the', 'space', 'underneath', 'a', 'desk', 'to', 'give', 'it', 'a', 'little', 'more', 'headroom', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'kind', 'of', 'tied', 'up', 'here', '||period||', '||return||', '||return||', 'george:', "it'll", 'have', 'to', 'be', 'a', 'night', 'job', 'anyway', '||period||', 'you', "don't", 'normally', 'work', 'after', 'dinner', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'conrad:', 'there', 'is', 'no', 'normal', '||comma||', 'whatever', 'jerry', 'wants', '||period||', 'he', 'wants', 'me', 'here', 'late', '||comma||', "i'm", 'here', 'late', '||comma||', 'he', 'wants', 'me', 'here', 'early', '||comma||', "i'm", 'here', 'early', '||comma||', 'he', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'just', 'work', 'on', "george's", 'project', 'for', 'a', 'while', '||questionmark||', '||return||', '||return||', 'conrad:', 'whatever', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', 'so', 'how', 'was', "wednesday's", 'walk', 'in', 'the', 'park', 'with', 'hal', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'it', 'was', 'okay', '||comma||', '||period||', "he's", 'coming', 'over', 'later', 'to', 'watch', 'a', 'movie', '||period||', 'hey', 'listen', '||comma||', "what's", 'better', 'for', 'your', 'back', '||questionmark||', 'couch', 'cushions', 'or', 'a', 'folding', 'chair', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'maybe', "we'll", 'just', 'stand', 'and', 'watch', 'the', 'tv', '||period||', '[knock', 'knock]', '||period||', 'i', 'gotta', 'go', "someone's", 'at', 'my', 'door', '||period||', 'yeah', '||exclammark||', '||return||', '||return||', 'delivery', 'guy:', 'delivery', '||period||', 'elaine', 'benes', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'delivery', 'guy:', "we're", 'from', 'the', 'lumbar', 'yard', '||comma||', 'we', 'got', 'your', 'mattress', '||period||', '||return||', '||return||', 'elaine:', 'mattress', '||comma||', 'i', "didn't", 'order', 'a', 'mattress', '||period||', 'who', 'sent', 'this', '||questionmark||', 'hal', 'kitzmiller', '||questionmark||', '||return||', '||return||', 'george:', 'do', 'you', 'think', 'it', 'might', 'be', 'possible', 'to', 'add', 'a', 'little', 'shelf', 'like', '||comma||', 'uh', '||comma||', 'for', 'an', 'alarm', 'clock', '||questionmark||', '||return||', '||return||', 'conrad:', 'you', 'mean', 'like', 'that', 'big', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'this', '||period||', '||return||', '||return||', 'conrad:', 'yeah', '||comma||', 'i', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'thanks', '||period||', 'you', 'know', 'this', 'could', 'sound', 'crazy', 'but', '||comma||', 'what', 'do', 'you', 'think', 'about', 'adding', 'a', 'drawer', 'for', '||dash||', 'like', 'a', 'blanket', '||questionmark||', '||return||', '||return||', 'conrad:', 'blanket', 'or', 'quilt', '||questionmark||', '||return||', '||return||', 'george:', 'blanket', '||period||', '||return||', '||return||', 'conrad:', 'that', 'thick', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'like', 'this', '||period||', '||return||', '||return||', 'conrad:', 'like', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'like', 'that', '||period||', '||return||', '||return||', 'conrad:', 'if', 'that', 'is', 'what', 'you', 'want', '||period||', '||return||', '||return||', 'george:', 'that', 'is', 'what', 'i', 'want', '||period||', '||return||', '||return||', 'conrad:', 'hey', 'george', '||comma||', 'you', 'want', 'this', 'cup', 'holder', 'mounted', 'on', 'the', 'left', '||comma||', 'or', 'the', 'right', '||comma||', 'or', 'the', 'middle', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'whatever', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', 'oh', 'oh', 'oh', 'this', 'is', 'unbelievable', '||period||', 'this', 'is', 'better', 'than', 'my', 'bed', 'at', 'home', '||period||', '||return||', '||return||', 'george:', 'its', 'been', 'a', 'long', 'night', '||period||', 'you', 'go', 'home', 'and', 'get', 'some', 'sleep', '||period||', '||return||', '||return||', 'conrad:', 'if', "that's", 'what', 'you', 'want', '||period||', '||return||', '||return||', 'george:', "that's", 'what', 'i', 'want', '||period||', '||return||', '||return||', 'wilhelm:', 'morning', 'george', '||period||', '||return||', '||return||', 'george:', 'good', 'morning', 'mr', '||period||', 'wilhelm', '||period||', '||return||', '||return||', 'kramer:', 'got', 'problems', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'i', 'had', 'been', 'swimming', 'for', 'three', 'hours', 'and', 'i', 'was', 'in', 'a', 'real', 'grove', 'so', 'i', 'decided', 'to', 'keep', 'going', '||period||', 'but', 'at', 'ten', 'they', 'start', 'the', 'aquasonics', 'thirty', '||dash||', 'five', 'geriatrics', 'throwing', 'elbows', '||period||', 'it', 'was', 'like', 'i', 'was', 'swimming', 'through', 'a', 'flabby', 'armed', 'spanking', 'machine', '||period||', '||return||', '||return||', 'jerry:', 'how', 'long', 'did', 'that', 'last', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'half', 'hour', 'then', 'diving', 'class', 'started', '||period||', 'well', 'that', 'got', 'a', 'little', 'messy', '||period||', 'i', 'gotta', 'find', 'a', 'new', 'place', 'to', 'swim', "'cause", 'that', 'pooll', "can't", 'hold', 'me', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'how', 'was', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'cancelled', '||period||', 'hal', 'sent', 'a', 'mattress', 'to', 'my', 'apartment', '||period||', 'the', 'nerve', 'of', 'that', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'got', 'a', 'back', 'problem', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'think', 'he', 'was', 'expecting', 'a', 'roll', 'in', 'the', 'supportive', 'hay', '||period||', '||return||', '||return||', 'elaine:', 'after', 'one', 'date', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'that', "guy's", 'last', 'name', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'kitzmiller', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'going', 'to', 'do', 'with', 'the', 'mattress', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'chuck', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', 'no', 'no', 'no', "i'll", 'take', 'it', '||period||', 'why', "don't", 'you', 'come', 'over', '||period||', "let's", 'see', 'if', 'it', 'will', 'fit', 'in', 'my', 'bedroom', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'my', 'old', 'one', 'sprung', 'a', 'leak', '||period||', '||return||', '||return||', 'elaine:', 'you', 'have', 'a', 'water', 'bed', '||questionmark||', '||return||', '||return||', 'kramer:', 'sand', '||exclammark||', "it's", 'like', 'sleeping', 'on', 'the', 'beach', '||period||', '||return||', '||return||', 'conrad:', 'hi', '||comma||', 'jerry', "i'm", 'sorry', "i'm", 'late', '||period||', 'george', 'and', 'i', 'have', 'been', 'up', 'working', 'all', 'night', 'long', '||period||', 'i', 'can', 'make', 'up', 'the', 'time', 'in', 'any', 'number', 'of', 'ways', '||period||', '||return||', '||return||', 'jerry:', 'how', 'about', 'this', '||questionmark||', '||period||', '||period||', '||period||', 'finish', 'this', 'thing', 'up', 'today', '||exclammark||', '||return||', '||return||', 'conrad:', 'couple', 'of', 'questions', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', 'more', 'questions', '||period||', 'just', 'figure', 'it', 'out', 'for', 'yourself', 'and', 'get', 'it', 'done', '||period||', '||return||', '||return||', 'conrad:', 'all', 'right', 'jerry', '||period||', 'but', 'i', 'can', 'figure', 'it', 'out', 'myself', 'any', 'way', 'you', 'want', '||period||', '||return||', '||return||', 'jerry:', 'just', '||period||', '||period||', '||period||', 'do', 'it', '||period||', '||return||', '||return||', 'steinbrenner:', 'costanza', '||questionmark||', "where's", 'costanza', '||questionmark||', '||period||', '||period||', '||period||', 'excus', 'mois', '||questionmark||', 'have', 'you', 'seen', 'costanza', '||questionmark||', '||return||', '||return||', 'secretary:', "i've", 'seen', 'him', 'around', '||period||', '||return||', '||return||', 'steinbrenner:', 'um', '||comma||', "i'm", 'stuck', 'on', 'this', 'song', 'yesterday', '||period||', 'i', "can't", 'seem', 'to', 'get', 'it', 'out', 'of', 'my', 'head', '||period||', 'i', "don't", 'know', 'the', 'name', 'of', 'that', '||period||', '||quotemark||', "she's", 'a', 'heart', 'breaker', '||comma||', 'love', 'taker', '||period||', '||period||', '||period||', '||period||', 'oh', '||period||', 'oh', '||quotemark||', '||period||', '||period||', '||period||', 'very', 'catchy', '||period||', 'you', 'know', 'what', '||questionmark||', 'i', "can't", 'stay', 'awake', 'for', 'that', 'guy', '||period||', 'what', 'is', 'this', '||questionmark||', 'people', '||questionmark||', 'um', '||comma||', 'the', 'most', 'beautiful', 'people', 'people', '||period||', 'ally', 'selica', '||comma||', 'nothing', 'wrong', 'with', 'that', 'uh', '||questionmark||', '||return||', '||return||', 'hal:', 'elaine', '||comma||', 'your', 'taking', 'this', 'totally', 'the', 'wrong', 'way', '||period||', "that's", 'not', 'what', 'ii', 'intended', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'did', 'you', 'intend', '||comma||', 'hal', '||questionmark||', '||return||', '||return||', 'hal:', 'i', 'just', 'wanted', 'you', 'to', 'have', 'the', 'comfort', 'and', 'report', 'you', 'deserve', '||period||', "that's", 'why', 'i', 'had', 'the', 'mattress', 'custom', 'designed', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'custom', 'designed', '||questionmark||', '||return||', '||return||', 'hal:', 'they', 'adjust', 'the', 'foam', 'density', 'and', 'spring', 'tension', 'to', 'your', 'body', 'type', '||period||', 'i', 'estimated', 'your', 'height', 'and', 'weight', '||period||', 'five', 'eight', '||comma||', 'about', '110', 'pounds', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'that', 'is', 'the', 'nicest', 'thing', 'anyone', 'has', 'ever', 'done', 'for', 'me', '||period||', '||return||', '||return||', 'hal:', 'so', 'you', 'do', 'like', 'the', 'mattress', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'love', 'it', '||period||', "i'm", 'glad', '||period||', '||period||', '||period||', 'i', 'kept', 'it', '||period||', '||return||', '||return||', 'father:', 'over', 'there', '||comma||', "that's", 'brooklyn', '||period||', "that's", 'where', 'spike', 'lee', 'lives', '||period||', '||return||', '||return||', 'son:', 'hey', '||comma||', "there's", 'a', 'man', 'swimming', 'in', 'the', 'water', '||period||', '||return||', '||return||', 'father:', 'naw', '||comma||', "that's", 'probably', 'just', 'a', 'dead', 'body', 'son', '||period||', 'you', 'see', 'when', 'the', 'mob', 'kills', 'someone', 'they', 'through', 'the', 'body', 'in', 'the', 'river', '||period||', '||return||', '||return||', 'kramer:', 'jer', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'well', 'my', 'swimming', 'pool', 'problems', 'are', 'solved', '||period||', 'i', 'just', 'found', 'myself', 'miles', 'and', 'miles', 'of', 'open', 'lanes', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'smell', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'east', 'river', '||period||', '||return||', '||return||', 'jerry:', "you're", 'swimming', 'in', 'the', 'east', 'river', '||questionmark||', 'the', 'most', 'heavily', 'trafficked', 'overly', 'contaminated', 'waterway', 'on', 'the', 'eastern', 'seaboard', '||questionmark||', '||return||', '||return||', 'kramer:', 'technically', 'norfok', 'has', 'more', 'gross', 'tonnage', '||period||', '||return||', '||return||', 'jerry:', 'how', 'could', 'you', 'swim', 'in', 'that', 'water', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'saw', 'a', 'couple', 'of', 'other', 'guys', 'out', 'there', '||period||', '||return||', '||return||', 'jerry:', 'swimming', '||questionmark||', '||return||', '||return||', 'kramer:', 'floating', '||comma||', 'they', "weren't", 'moving', 'much', '||period||', 'but', 'they', 'were', 'out', 'there', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'on', 'phone', '||rightparen||', 'hey', '||comma||', 'kramer', '||comma||', "it's", 'elaine', '||comma||', 'thanks', 'for', 'bringing', 'my', 'mattress', 'back', '||period||', 'and', 'i', 'guess', "i'll", 'just', 'get', 'my', 'spare', 'key', 'from', 'you', '||dash||', 'whenever', '||period||', 'all', 'right', '||comma||', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'this', 'is', 'a', 'good', 'mattress', '||period||', 'sniff', '||comma||', 'sniff', '||comma||', 'ugh', '||exclammark||', '||return||', '||return||', 'steinbrenner:', 'what', 'is', 'with', 'this', 'guy', '||questionmark||', "i've", 'been', 'waiting', 'three', 'and', 'a', 'half', 'hours', '||period||', 'should', 'i', 'go', '||questionmark||', 'no', 'way', 'jack', '||exclammark||', '||questionmark||', '||questionmark||', '||questionmark||', 'at', 'the', 'registrar', 'again', '||comma||', "i'll", 'tell', 'you', 'that', '||period||', '||return||', '||return||', 'seconrad:', 'mr', '||period||', 'steinbrenner', '||questionmark||', '||return||', '||return||', 'steinbrenner:', "that's", 'what', 'they', 'call', 'me', '||period||', '||return||', '||return||', 'seconrad:', 'your', 'grandchildren', 'are', 'here', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'steinbrenner:', 'oh', '||comma||', 'well', '||comma||', 'send', 'them', 'in', '||period||', 'send', 'the', 'little', 'tykes', 'in', '||period||', 'little', 'people', '||period||', '||period||', 'pony', 'express', 'wow', '||comma||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'phone', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "i'm", 'trapped', 'under', 'my', 'desk', '||period||', 'steinbrenner', 'is', 'in', 'the', 'room', '||period||', 'you', 'got', 'to', 'help[', 'me', '||period||', '||return||', '||return||', 'jerry:', 'who', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'brady:', 'hi', '||comma||', '||return||', '||return||', 'george:', 'sh', '||comma||', 'sh', '||comma||', 'goodbye', '||comma||', 'sh', '||comma||', 'get', 'away', '||period||', '||return||', '||return||', 'brady:', 'hi', '||comma||', "i'm", 'brady', '||period||', '||return||', '||return||', 'george:', '||questionmark||', '||questionmark||', 'get', 'away', '||questionmark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'just', 'have', 'him', 'paged', '||questionmark||', '||return||', '||return||', 'george:', "can't", 'you', 'think', 'of', 'something', '||period||', 'call', 'in', 'a', 'bomb', 'threat', '||period||', '||return||', '||return||', 'jerry:', 'a', 'bomb', 'threat', '||questionmark||', 'why', 'would', 'i', 'call', 'in', 'a', 'bomb', 'threat', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'call', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'should', 'have', 'some', 'reason', '||period||', '||return||', '||return||', 'steinbrenner:', 'hey', 'you', 'kids', 'know', 'tunes', '||semicolon||', 'see', 'if', 'this', 'song', 'rinsteinbrenner', 'a', 'bell', '||comma||', '||quotemark||', 'heartbreaker', '||comma||', '||period||', '||period||', '||period||', '||quotemark||', '||return||', '||return||', 'seconrad:', 'mr', '||period||', 'steinbrenner', 'we', 'just', 'received', 'a', 'call', '||period||', "there's", 'a', 'bomb', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'steinbrenner:', 'a', 'bomb', 'in', 'the', 'building', '||comma||', 'oh', '||comma||', "m'god", '||period||', 'quick', '||comma||', 'everyone', 'under', 'the', 'desk', '||period||', '||return||', '||return||', 'steinbrenner:', 'boy', 'can', 'you', 'think', 'of', 'what', 'went', 'through', 'my', 'mind', 'when', 'i', 'saw', 'there', "wasn't", 'going', 'to', 'be', 'enough', 'room', 'under', 'that', 'desk', 'for', 'me', 'and', 'my', 'babies', '||period||', '||return||', '||return||', 'george:', "i'm", 'sorry', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', 'know', 'what', 'i', 'think', '||questionmark||', 'i', 'think', 'you', 'knew', 'about', 'that', 'bomb', 'ahead', 'of', 'time', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'steinbrenner:', '||questionmark||', '||questionmark||', '||questionmark||', '||questionmark||', 'about', 'that', 'bomb', '||period||', 'you', 'climbed', 'under', 'that', 'desk', 'because', 'you', 'have', 'esp', '||period||', 'george', '||comma||', "what's", 'on', 'my', 'mind', '||questionmark||', '||period||', '||period||', '||period||', 'meatballs', '||exclammark||', 'huh', '||questionmark||', 'unbelievable', '||period||', 'anyway', 'this', 'terrorist', 'had', 'a', 'specific', 'demand', '||period||', 'not', 'more', 'cheap', 'adjustable', 'hats', 'on', 'hat', 'day', '||period||', 'he', 'wants', 'fitted', 'hats', 'just', 'like', 'the', 'players', 'wear', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', 'where', 'are', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'over', 'here', '||period||', 'you', 'can', 'see', 'right', 'through', 'here', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', '||period||', "it's", 'like', "you're", 'selling', 'movie', 'tickets', 'back', 'here', '||period||', '||return||', '||return||', 'jerry:', "it's", 'kind', 'of', 'cozy', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "you're", 'not', 'going', 'to', 'believe', 'what', 'kramer', 'did', 'to', 'my', 'mattress', '||period||', '||period||', '||period||', '||period||', 'i', "can't", 'talk', 'to', 'you', 'like', 'this', '||period||', 'so', 'kramer', 'completely', 'funked', 'up', 'my', 'mattress', '||period||', '||return||', '||return||', 'jerry:', 'does', 'it', 'smell', 'like', 'the', 'east', 'river', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'did', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'kramer', 'has', 'been', 'swimming', 'laps', 'between', 'the', 'queensborough', 'bridge', 'and', 'the', 'brooklyn', 'bridge', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'great', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', 'man', '||comma||', "i'm", 'on', 'the', 'wrong', 'floor', 'again', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'thanks', 'for', 'ruining', 'my', 'mattress', '||period||', 'it', 'reeks', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', 'know', 'what', 'i', 'think', 'it', 'is', '||questionmark||', 'i', 'think', "it's", 'that', 'east', 'river', '||period||', 'i', 'think', 'it', 'might', 'be', 'polluted', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'really', 'did', 'it', 'to', 'me', 'this', 'time', '||comma||', 'seinfeld', '||period||', '||period||', '||period||', '||period||', 'what', 'the', 'hell', 'happened', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'george:', 'hi', '||period||', 'look', 'at', 'how', 'obtrusive', 'this', 'is', '||period||', '||return||', '||return||', 'elaine:', 'it', 'is', 'obtrusive', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'it', 'is', 'very', 'obtrusive', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', "it's", 'that', 'bad', '||period||', '||return||', '||return||', 'kramer:', 'you', "can't", 'get', 'a', 'stool', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'no', 'the', 'stools', 'go', 'over', 'there', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "that's", 'no', 'good', '||period||', "i'm", 'leaving', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'with', 'you', '||period||', "i'm", 'going', 'back', 'to', 'my', 'place', '||period||', '||return||', '||return||', 'george:', 'fitted', 'hat', 'day', '||exclammark||', "that's", 'what', 'you', 'asked', 'steinbrenner', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'mean', "they're", 'actually', 'doing', 'the', 'fitted', 'hats', '||questionmark||', 'cool', '||period||', '||return||', '||return||', 'george:', 'guess', 'who', 'he', 'put', 'in', 'charge', 'of', 'fitted', 'hat', 'day', '||questionmark||', 'me', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'look', 'at', 'you', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'look', 'at', 'me', '||period||', 'now', 'i', 'gotta', 'figure', 'out', 'the', 'hat', 'sizes', 'of', '59', '||comma||', '000', 'different', 'people', '||exclammark||', '||exclammark||', 'what', 'if', 'a', 'pinhead', 'shows', 'up', '||period||', 'i', 'gotta', 'be', 'on', 'top', 'of', 'that', '||period||', '||return||', '||return||', 'jerry:', 'no', 'knock', 'offs', '||period||', 'i', 'want', 'the', 'ones', 'like', 'the', 'real', 'players', 'wear', '||period||', '||return||', '||return||', 'george:', '||questionmark||', '||questionmark||', '||questionmark||', 'knock', 'offs', '||period||', 'i', 'not', 'going', 'to', 'do', 'it', '||exclammark||', 'and', "you're", 'going', 'to', 'call', 'steinbrenner', 'back', 'and', 'cancel', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'could', 'you', 'at', 'least', 'get', 'a', 'hat', 'for', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'fine', '||questionmark||', 'what', 'size', '||questionmark||', '||return||', '||return||', 'jerry:', 'seven', 'and', 'five', 'eighths', '||return||', '||return||', 'george:', 'seven', 'and', 'five', 'eighths', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'shouting', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', "it's", 'this', 'place', '||period||', "i'm", 'very', 'uncomfortable', 'here', '||period||', '||return||', '||return||', 'hal:', 'so', 'are', 'you', 'liking', 'the', 'mattress', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'totally', 'loving', 'it', '||period||', 'uh', '||comma||', 'you', 'know', 'we', 'should', 'um', 'get', 'going', '||period||', '||return||', '||return||', 'hal:', 'what', 'is', 'that', 'smell', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'smell', '||questionmark||', '||return||', '||return||', 'hal:', 'i', 'think', "it's", 'the', 'mattress', '||period||', 'did', 'something', 'happen', 'to', 'it', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||comma||', 'oh', '||comma||', 'you', 'know', 'what', 'that', 'is', '||questionmark||', 'i', 'um', '||comma||', 'went', 'claming', 'the', 'other', 'day', 'and', 'i', 'forgot', 'to', 'hose', 'off', 'my', 'boots', '||period||', '||return||', '||return||', 'hal:', 'claming', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'clam', 'and', 'scallop', '||period||', 'i', 'clam', 'and', 'scallop', '||period||', '||return||', '||return||', 'steinbrenner:', 'yes', '||comma||', 'yes', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'george:', 'sir', '||comma||', 'i', 'just', 'got', 'a', 'call', 'from', 'the', 'terrorist', '||period||', 'i', 'told', 'him', 'to', 'call', 'back', 'here', '||period||', '||return||', '||return||', 'steinbrenner:', 'just', 'let', 'me', 'ask', 'you', 'something', '||period||', 'is', 'it', '||quotemark||', 'february', '||quotemark||', 'or', '||quotemark||', 'february', '||quotemark||', '||questionmark||', 'because', 'i', 'prefer', '||quotemark||', 'febuary', '||quotemark||', 'and', 'what', 'is', 'this', '||quotemark||', 'ru', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'let', 'me', 'put', 'that', 'on', 'speaker', 'phone', '||period||', '||return||', '||return||', 'steinbrenner:', 'hello', 'are', 'you', 'the', 'bomber', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', 'this', 'is', 'the', 'terrorist', 'bomber', '||period||', '||return||', '||return||', 'steinbrenner:', 'costanza', 'here', 'is', 'busting', 'his', 'ass', 'on', 'those', 'hats', '||period||', '||return||', '||return||', 'jerry:', 'think', "i've", 'changed', 'my', 'mind', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', "don't", 'want', 'them', '||comma||', 'then', 'goodbye', '||period||', '||return||', '||return||', 'george:', '||questionmark||', '||questionmark||', '||questionmark||', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'well', 'what', 'do', 'you', 'want', 'instead', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'well', '||comma||', "you're", 'the', 'terrorist', '||period||', "you're", 'going', 'to', 'want', 'something', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'it', 'would', 'be', 'nice', 'if', 'you', 'called', 'all', 'the', 'ticket', 'holders', 'if', 'the', 'game', 'was', 'going', 'to', 'be', 'rained', 'out', '||period||', '||return||', '||return||', 'steinbrenner:', 'all', 'right', 'george', '||comma||', 'you', 'can', 'handle', 'that', '||period||', '||return||', '||return||', 'steinbrenner:', 'costanza', 'what', 'the', 'hell', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'have', 'to', 'stand', 'tough', 'sir', '||period||', "that's", 'why', 'i', 'had', 'to', 'hang', 'up', 'the', 'phone', '||period||', '||return||', '||return||', 'steinbrenner:', 'you', 'know', 'what', "i'm", 'going', 'to', 'do', '||questionmark||', "i'm", 'going', 'to', 'run', 'around', 'the', 'stadium', 'and', 'close', 'all', 'the', 'windows', '||period||', "that's", 'where', "i'm", 'going', '||comma||', 'pal', '||period||', 'and', "i'll", 'tell', 'you', 'something', 'else', '||period||', "i'm", 'very', 'nervous', '||period||', '||return||', '||return||', 'elaine:', 'gotta', 'get', 'some', 'of', 'that', 'stuffed', 'crust', 'pizza', '||period||', 'cheese', 'crust', 'pizza', '||period||', '||return||', '||return||', 'hal:', "it's", 'just', 'more', 'cheese', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'tell', 'you', 'something', '||period||', "it'll", 'be', 'years', 'before', 'they', 'find', 'places', 'to', 'hide', 'more', 'cheese', 'on', 'a', 'pizza', '||period||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||period||', 'this', 'is', 'hal', '||period||', 'hal', '||comma||', 'this', 'is', 'kramer', '||period||', 'kramer', '||comma||', 'hal', '||period||', '||return||', '||return||', 'kramer:', 'hal', '||comma||', '||period||', '||period||', 'uh', 'langerhans', '||period||', '||return||', '||return||', 'hal:', 'kitzmiller', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'kitzmiller', '||period||', "that's", 'right', '||return||', '||return||', 'elaine:', 'you', 'feeling', 'jiff', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'jiff', '||period||', '||return||', '||return||', 'hal:', 'that', 'smell', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'listen', 'i', 'gotta', 'get', 'to', 'the', 'pier', '||period||', 'the', 'ferry', 'traffic', 'is', 'really', 'bad', 'around', 'four', 'thirty', '||period||', 'look', '||comma||', 'i', 'still', 'got', 'the', 'key', 'to', 'your', 'apartment', 'and', "i'll", 'get', 'it', 'back', 'to', 'you', 'as', 'soon', 'as', 'i', 'can', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'baby', '||period||', '||return||', '||return||', 'george:', 'finished', '||period||', '||return||', '||return||', 'hal:', 'kramer', '||questionmark||', 'can', 'i', 'talk', 'to', 'you', 'a', 'minute', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'sure', '||comma||', 'um', '||comma||', 'oh', 'boy', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'hal:', 'kitzmiller', '||period||', '||return||', '||return||', 'kramer:', "that's", 'it', '||period||', '||return||', '||return||', 'hal:', 'you', 'and', 'elaine', 'are', 'pretty', 'close', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'we', 'go', 'back', 'a', 'ways', '||period||', '||return||', '||return||', 'hal:', 'and', "you've", '||comma||', '||period||', '||period||', '||period||', 'how', 'do', 'i', 'put', 'this', '||questionmark||', "you've", 'been', 'in', 'her', 'bed', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', '||return||', '||return||', 'hal:', 'but', 'this', "isn't", 'still', 'going', 'on', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'she', 'put', 'a', 'stop', 'to', 'that', '||period||', '||return||', '||return||', 'hal:', "that's", 'all', 'i', 'needed', 'to', 'know', '||period||', 'so', 'you', 'actually', 'swim', 'in', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||period||', 'exercises', 'every', 'muscle', 'in', 'the', 'body', '||period||', "it's", 'great', 'for', 'the', 'back', '||period||', '||return||', '||return||', 'hal:', 'great', 'for', 'the', 'back', '||period||', 'right', '||period||', '||return||', '||return||', 'kramer:', 'four', 'hours', 'in', 'this', 'chop', 'and', "i'm", 'a', 'full', 'inch', 'taller', '||period||', '||period||', '||period||', '||period||', 'giddyup', '||period||', '||return||', '||return||', 'steinbrenner:', '||quotemark||', 'heatbreaker', '||comma||', 'brewbaker', '||comma||', '||quotemark||', 'hey', 'george', '||comma||', 'i', 'remember', 'that', 'tune', '||period||', 'george', '||questionmark||', 'george', '||questionmark||', 'um', '||comma||', "what's", 'that', 'ticking', '||period||', 'oh', 'oh', '||period||', 'oh', '||comma||', 'oooh', '||comma||', 'wo', 'wo', 'wo', 'wo', '||period||', '[runs', 'out]', 'fire', 'in', 'the', 'hole', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', "wouldn't", 'believe', 'the', 'lumbar', 'yard', "wouldn't", 'pick', 'this', 'up', '||period||', 'ug', '||comma||', 'oh', '||comma||', 'okay', '||comma||', '||period||', '||period||', '||period||', '||return||', '||return||', 'conrad:', 'you', 'want', 'it', 'back', 'the', 'way', 'it', 'was', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'conrad:', 'you', 'know', 'i', "don't", 'get', 'you', 'seinfeld', '||period||', 'you', 'want', 'something', 'one', 'day', '||period||', 'the', 'next', 'day', 'you', "don't", 'like', 'it', '||period||', 'come', 'on', 'man', '||comma||', 'make', 'a', 'decision', '||period||', '||return||', '||return||', 'jerry:', 'one', 'second', '||period||', 'hello', '||period||', '||return||', '||return||', 'elaine:', 'jerry', 'you', 'gotta', 'help', 'me', '||period||', 'i', 'threw', 'my', 'back', 'out', '||period||', '||return||', '||return||', 'jerry:', 'just', 'lie', 'down', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'lying', 'down', '||period||', 'i', 'am', 'trapped', 'under', 'a', 'funky', 'mattress', '||period||', 'i', 'gotta', 'go', 'get', 'a', 'doctor', 'or', 'at', 'least', 'come', 'over', 'and', 'roll', 'this', 'thing', 'off', 'of', 'me', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', "i'll", 'be', 'right', 'there', '||period||', '||comma||', 'conrad', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'conrad:', 'stay', '||comma||', 'go', 'whatever', '||period||', '||return||', '||return||', 'hal:', 'hey', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'hal:', 'i', 'told', 'my', 'chiropractor', 'how', 'swimming', 'in', 'the', 'river', 'made', 'my', 'back', 'heal', '||period||', 'he', 'recommended', 'it', 'to', 'all', 'his', 'patients', '||period||', '||return||', '||return||', 'old', 'man:', 'step', 'aside', '||period||', '||return||', '||return||', 'kramer:', 'he', 'just', 'sunk', 'like', 'a', 'stone', '||period||', '||return||', '||return||', 'george:', 'sir', '||comma||', "i'm", 'sure', "it's", 'not', 'a', 'police', 'matter', '||period||', '||return||', '||return||', 'steinbrenner:', "don't", 'be', 'so', 'sure', 'george', '||period||', 'mess', 'with', 'them', 'and', "they're", 'messing', 'with', 'you', '||period||', 'all', 'right', 'boys', 'send', 'it', 'in', '||return||', '||return||', 'steinbrenner:', "what's", 'that', 'figure', 'ahead', '||questionmark||', 'is', 'that', 'anything', '||questionmark||', 'okay', '||comma||', "let's", 'check', 'the', 'desk', '||period||', "that's", 'where', 'i', 'heard', 'the', 'ticking', '||period||', 'search', 'each', 'one', 'of', 'those', 'drawers', 'starting', 'with', 'the', 'top', 'one', '||period||', 'so', '||comma||', 'empty', 'calories', 'and', 'male', 'curiosity', '||comma||', 'eh', '||comma||', 'georgie', '||questionmark||', '||return||', '||return||', 'bomb', 'cop:', 'looks', 'like', "there's", 'more', 'compartments', 'underneath', '||period||', '||return||', '||return||', 'steinbrenner:', 'compartments', 'underneath', '||comma||', "that's", 'probably', 'where', 'it', 'is', '||period||', 'okay', 'boys', '||comma||', 'let', "'er", 'rip', '||period||', "i'll", 'tell', 'you', 'what', 'george', '||period||', 'starting', 'tomorrow', 'no', 'more', 'desks', '||period||', 'just', 'lucite', 'tables', 'and', 'four', 'lesteinbrenner', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'watch', 'where', "you're", 'kicking', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'it', '||period||', 'hey', '||comma||', "i'll", 'meet', 'you', 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hi', 'connie', '||comma||', 'jerry', 'around', '||questionmark||', '||return||', '||return||', 'conrad:', 'no', '||comma||', 'and', 'i', 'prefer', '||quotemark||', 'conrad', '||quotemark||', '||period||', 'so', 'i', 'heard', 'what', 'happened', 'to', 'the', 'desk', '||period||', '||return||', '||return||', 'george:', 'there', 'was', 'something', 'so', 'reassuring', 'about', 'that', 'cozy', 'little', 'space', '||period||', '||return||', '||return||', 'conrad:', 'yeah', '||comma||', 'well', '||comma||', 'whatever', '||period||', 'see', "ya'", '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'back', 'to', 'normal', '||period||', 'not', 'bad', 'for', 'four', 'thousand', 'bucks', '||period||', '||period||', '||period||', '||period||', 'i', "can't", 'believe', 'i', 'got', 'the', 'low', 'fat', '||exclammark||', '||return||', '||return||', 'george:', 'so', '||comma||', 'marcy', '||comma||', 'you', "should've", 'seen', 'me', 'in', 'the', 'hot', 'tub', 'yoday', '||period||', '||return||', '||return||', 'marcy:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', 'naked', '||period||', '||return||', '||return||', 'marcy:', 'oh', '||comma||', 'george', '||period||', '||return||', '||return||', 'jerry:', 'i', 'saw', 'it', '||period||', '||return||', '||return||', 'marcy:', "how'd", 'he', 'look', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'i', "wouldn't", 'see', 'it', 'again', '||period||', '||return||', '||return||', 'marcy:', 'you', 'know', '||comma||', 'a', 'friend', 'of', 'mine', 'thought', 'she', 'got', "legonare's", 'disease', 'in', 'the', 'hot', 'tub', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'marcy:', 'oh', '||comma||', 'yada', 'yada', 'yada', '||comma||', 'just', 'some', 'bad', 'egg', 'salad', '||period||', "i'll", 'be', 'right', 'back', '||period||', '||leftparen||', 'she', 'gets', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'noticed', "she's", 'big', 'on', 'the', 'phrase', '||quotemark||', 'yada', 'yada', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'is', '||quotemark||', 'yada', 'yada', '||quotemark||', 'bad', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', '||quotemark||', 'yada', 'yada', '||quotemark||', 'is', 'good', '||period||', "she's", 'very', 'succinct', '||period||', '||return||', '||return||', 'george:', 'she', 'is', 'succinct', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'like', "you're", 'dating', 'usa', 'today', '||period||', '||leftparen||', 'tim', 'the', 'dentist', 'enters', "monk's", '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||comma||', 'you', 'know', 'tim', 'whatley', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'dentist', 'of', 'the', 'stars', '||period||', '||return||', '||return||', 'jerry:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'tim:', "i'll", 'tell', 'you', "what's", 'up', '||period||', "i'm", 'a', 'jew', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'tim:', "i'm", 'a', 'jew', '||period||', 'i', 'finished', 'converting', 'two', 'days', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||leftparen||', 'thinking', 'of', 'something', 'to', 'say', '||rightparen||', 'welcome', 'aboard', '||period||', '||return||', '||return||', 'tim:', 'thanks', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'where', 'you', 'just', 'at', 'the', 'health', 'club', '||questionmark||', '||return||', '||return||', 'tim:', 'oh', '||comma||', 'well', '||comma||', 'i', "didn't", 'do', 'much', '||period||', 'i', 'just', 'sat', 'in', 'the', 'sauna', '||period||', 'you', 'know', '||comma||', 'it', 'was', 'more', 'like', 'a', 'jewish', 'workout', '||period||', "i'll", 'see', 'ya', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'give', 'confused', 'looks', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'the', "guy's", 'jewish', 'two', 'days', '||comma||', "he's", 'already', 'making', 'jewish', 'jokes', '||period||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', 'when', 'someone', 'turns', 'twenty', '||dash||', 'one', '||comma||', 'they', 'usually', 'get', 'drunk', 'the', 'first', 'night', '||period||', '||return||', '||return||', 'jerry:', 'booze', 'is', 'not', 'a', 'religion', '||period||', '||return||', '||return||', 'elaine:', 'tell', 'that', 'to', 'my', 'father', '||period||', 'anyway', '||comma||', 'guess', 'what', '||questionmark||', 'beth', 'lookner', 'called', 'me', '||period||', '||return||', '||return||', 'jerry:', 'ooh', '||period||', 'beth', 'lookner', '||comma||', 'still', "waitin'", 'out', 'hat', 'marriage', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'that', 'marriage', 'ended', 'six', 'months', 'ago', '||period||', "she's", 'already', 'remarried', '||period||', '||return||', '||return||', 'jerry:', 'i', 'gotta', 'get', 'on', 'that', 'internet', '||period||', "i'm", 'late', 'on', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'anyway', '||comma||', 'beth', 'and', 'her', 'new', 'husband', 'arnie', 'have', 'listed', 'me', 'a', 'reference', 'for', 'an', 'adoption', 'agency', '||period||', "they're", 'trying', 'to', 'get', 'a', 'baby', '||period||', '||leftparen||', 'kramer', 'and', 'mickey', 'enter', 'wearing', 'the', 'same', 'shirt', '||rightparen||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'all', 'right', '||comma||', 'who', 'looks', 'better', 'in', 'this', 'shirt', '||questionmark||', 'me', 'or', 'mickey', '||questionmark||', '||return||', '||return||', 'mickey:', "we're", 'double', 'dating', 'tonight', '||comma||', 'and', 'if', 'we', 'wear', 'the', 'same', 'shirt', "we'll", 'look', 'like', 'idiots', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||comma||', 'turn', 'around', '||period||', '||leftparen||', 'they', 'turn', 'around', '||rightparen||', 'both', 'so', 'striking', '||period||', '||return||', '||return||', 'kramer:', 'tell', 'me', 'about', 'it', '||period||', 'we', 'just', 'picked', 'up', 'two', 'women', 'at', 'the', 'gap', '||period||', '||return||', '||return||', 'elaine:', 'how', 'did', 'you', 'decide', 'which', 'one', 'of', 'you', 'would', 'date', 'which', 'girl', '||questionmark||', '||leftparen||', 'they', 'pause', 'then', 'look', 'at', 'each', 'other', '||rightparen||', '||return||', '||return||', 'marcy:', 'so', "i'm", 'on', '3rd', 'avenue', '||comma||', "mindin'", 'my', 'own', 'business', '||comma||', 'and', '||comma||', 'yada', 'yada', 'yada', '||comma||', 'i', 'get', 'a', 'free', 'massage', 'and', 'a', 'facial', '||period||', '||return||', '||return||', 'george:', 'what', 'a', 'succinct', 'story', '||period||', '||return||', '||return||', 'marcy:', "i'm", 'surprised', 'you', 'drive', 'a', 'cadillac', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'not', 'mine', '||period||', "it's", 'my', "mother's", '||period||', '||return||', '||return||', 'marcy:', 'are', 'you', 'close', 'with', 'your', 'parents', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'they', 'gave', 'birth', 'to', 'me', '||comma||', 'and', '||comma||', 'yada', 'yada', '||period||', '||period||', '||period||', '||return||', '||return||', 'marcy:', 'yada', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'yada', 'yada', 'yada', '||period||', '||period||', '||period||', '||return||', '||return||', 'karen:', '||leftparen||', 'to', 'mickey', '||comma||', 'wearing', 'the', 'shirt', 'elaine', 'looked', 'at', 'for', 'them', '||rightparen||', 'i', 'like', 'your', 'shirt', '||period||', '||return||', '||return||', 'mickey:', 'oh', '||comma||', 'thank', 'you', '||period||', "it's", '100', 'cotton', '||comma||', 'and', 'some', 'wool', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'too', 'seem', 'to', 'have', 'the', 'same', 'taste', '||period||', '||return||', '||return||', 'julie:', 'well', 'i', 'like', 'it', '||comma||', 'too', '||period||', '||return||', '||return||', 'kramer:', 'well', 'i', 'have', 'the', 'same', 'shirt', '||period||', '||return||', '||return||', 'mickey:', 'yeah', '||comma||', 'well', "i'm", "wearin'", 'it', '||period||', '||return||', '||return||', 'julie:', 'i', 'like', 'your', 'shirt', 'too', '||period||', '||return||', '||return||', 'karen:', 'oh', '||comma||', 'so', 'do', 'i', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||leftparen||', 'waiter', 'approaches', 'table', '||rightparen||', '||return||', '||return||', 'waiter:', 'anything', 'to', 'drink', '||questionmark||', 'some', 'wine', '||comma||', 'perhaps', '||period||', '||return||', '||return||', 'mickey:', 'i', 'like', 'merlot', '||period||', '||return||', '||return||', 'karen:', 'i', 'love', 'merlot', '||period||', '||return||', '||return||', 'julie:', "i'm", 'crazy', 'about', 'merlot', '||period||', '||return||', '||return||', 'kramer:', 'i', 'live', 'for', 'merlot', '||period||', '||return||', '||return||', 'waiter:', "we're", 'out', 'of', 'merlot', '||period||', '||return||', '||return||', 'agent:', 'so', 'you', '||comma||', 'uh', '||comma||', 'know', 'betha', 'and', 'arnie', 'pretty', 'well', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'agent:', 'do', 'you', 'socialize', 'with', 'them', 'often', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'we', 'got', 'out', 'to', 'dinner', 'a', 'lot', '||period||', 'usually', 'chinese', '||comma||', 'well', 'sometimes', 'thai', '||period||', 'and', 'we', 'go', 'to', 'the', 'movies', '||comma||', "arnie's", 'a', 'real', 'film', 'buff', '||period||', '||return||', '||return||', 'agent:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'actually', '||comma||', 'i', 'remember', 'this', 'one', 'time', '||comma||', 'um', '||comma||', 'this', 'is', 'funny', '||period||', 'um', '||comma||', 'we', 'went', 'to', 'see', 'the', 'movie', 'striptease', '||period||', 'i', "don't", 'know', 'if', "you've", 'seen', '||period||', '||period||', '||period||', "doesn't", 'matter', '||period||', 'anyway', '||comma||', 'i', 'was', 'whispering', 'something', 'to', 'beth', '||comma||', 'and', 'arnie', 'leens', 'over', 'to', 'me', '||comma||', 'and', 'he', 'goes', '||comma||', '||quotemark||', 'would', 'you', 'shut', 'up', '||questionmark||', '||exclammark||', '||quotemark||', 'i', 'mean', '||comma||', 'he', 'barely', 'even', 'knew', 'me', '||period||', 'where', 'did', 'he', 'get', 'ah', '||dash||', '||dash||', 'but', "they're", 'nice', 'people', '||period||', '||leftparen||', 'elaine', 'tries', 'to', 'smile', 'realizing', 'her', 'mistake', '||rightparen||', '||return||', '||return||', 'george:', 'oh', '||comma||', "you're", 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'knew', 'you', 'had', 'an', 'appointment', '||period||', '||return||', '||return||', 'jerry:', 'well', 'this', 'is', 'very', 'awkward', '||period||', '||return||', '||return||', 'george:', "i'll", 'leave', 'when', 'the', 'guy', 'comes', 'in', '||period||', 'i', 'gotta', 'tell', 'you', '||comma||', 'i', 'am', 'loving', 'this', 'yada', 'yada', 'thing', '||period||', 'you', 'know', '||comma||', 'i', 'can', 'cross', 'over', 'my', 'whole', 'life', 'story', '||period||', '||leftparen||', 'picks', 'up', 'dental', 'tool', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', "don't", 'play', 'with', 'that', '||period||', "that's", 'going', 'in', 'my', 'mouth', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'what', 'this', 'thing', '||questionmark||', 'whew', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "that's", 'enough', '||period||', 'now', 'get', 'going', '||period||', 'get', 'outta', 'here', '||period||', '||leftparen||', 'tim', 'and', 'his', 'staff', 'enter', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'tim', '||period||', 'quick', 'question', '||period||', 'is', 'it', 'normal', 'for', 'your', 'teeth', 'to', 'make', 'noises', '||comma||', 'like', 'a', 'hissing', 'or', 'a', 'chirping', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'tim:', 'um', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'fine', '||comma||', "i'll", 'make', 'an', 'appointment', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'tim:', 'all', 'right', '||comma||', 'it', 'is', 'cavity', 'time', '||period||', 'ah', '||comma||', 'here', 'we', 'go', '||period||', 'which', 'reminds', 'me', '||comma||', 'did', 'you', 'here', 'the', 'one', 'about', 'the', 'rabbi', 'and', 'the', "farmer's", 'daughter', '||questionmark||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'tim:', 'those', "aren't", 'mahtzah', 'balls', '||period||', '||return||', '||return||', 'jerry:', 'tim', '||comma||', 'do', 'you', 'think', 'you', 'should', 'be', 'making', 'jokes', 'like', 'that', '||questionmark||', '||return||', '||return||', 'tim:', 'why', 'not', '||questionmark||', "i'm", 'jewish', '||comma||', 'remember', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'know', '||comma||', 'but', '||period||', '||period||', '||period||', '||return||', '||return||', 'tim:', 'jerry', '||comma||', "it's", 'our', 'sense', 'of', 'humor', 'that', 'sustained', 'us', 'as', 'a', 'people', 'for', '3000', 'years', '||period||', '||return||', '||return||', 'jerry:', '5000', '||period||', '||return||', '||return||', 'tim:', '5000', '||comma||', 'even', 'better', '||period||', 'okay', '||comma||', 'chrissie', '||period||', 'give', 'me', 'a', 'schtickle', 'of', 'flouride', '||period||', '||return||', '||return||', 'jerry:', 'and', 'then', 'he', 'asked', 'the', 'assistant', 'for', 'a', 'schtickle', 'of', 'flouride', '||period||', '||return||', '||return||', 'elaine:', 'why', 'are', 'you', 'so', 'concerned', 'about', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'why', '||period||', 'because', 'i', 'believe', 'whatley', 'converted', 'to', 'judaism', 'just', 'for', 'the', 'jokes', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', '||return||', '||return||', 'phone:', 'would', 'you', 'be', 'interested', 'in', 'a', 'subscription', 'to', 'the', 'new', 'york', 'times', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||leftparen||', 'slams', 'down', 'phone', '||period||', 'kramer', 'and', 'mickey', 'enter', '||rightparen||', '||return||', '||return||', 'kramer:', 'i', "don't", 'believe', 'that', '||period||', '||return||', '||return||', 'mickey:', 'if', 'you', 'had', 'gotten', 'into', 'the', 'backseat', 'of', 'the', 'car', 'we', "could've", 'figured', 'this', 'whole', 'thing', 'out', '||period||', '||return||', '||return||', 'kramer:', 'why', 'were', 'you', 'holding', 'the', 'door', 'open', 'for', '||questionmark||', '||return||', '||return||', 'mickey:', 'not', 'for', 'you', '||exclammark||', 'who', 'holds', 'a', 'door', 'open', 'for', 'a', 'man', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'thought', 'it', 'was', 'a', 'nice', 'gesture', '||period||', 'but', 'i', 'guess', 'i', 'was', 'wrong', '||exclammark||', '||return||', '||return||', 'mickey:', "let's", 'just', 'put', "they're", 'names', 'in', 'a', 'hat', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'even', 'know', 'their', 'names', '||exclammark||', 'look', '||comma||', 'why', "don't", 'you', 'just', 'take', 'the', 'one', 'that', 'was', 'on', 'the', 'left', '||questionmark||', '||return||', '||return||', 'mickey:', "i'm", 'not', 'sure', 'she', 'was', 'my', 'type', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "everybody's", 'your', 'type', '||period||', '||return||', '||return||', 'mickey:', 'what', 'the', 'hell', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', "you've", 'been', 'married', 'three', 'times', '||period||', '||return||', '||return||', 'mickey:', "that's", 'it', '||comma||', "it's", 'go', 'time', '||exclammark||', '||leftparen||', 'charges', 'toward', 'kramer', '||comma||', 'only', 'to', 'be', 'held', 'back', 'by', 'jerry', 'and', 'elaine', '||rightparen||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'let', 'him', 'go', '||period||', 'you', 'want', 'throw', '||questionmark||', "let's", 'throw', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'hold', 'on', 'a', 'second', '||period||', 'all', 'right', '||comma||', 'look', '||comma||', 'i', 'got', 'an', 'idea', '||period||', 'why', "don't", 'you', 'just', 'show', 'up', 'early', 'for', 'your', 'next', 'date', '||comma||', 'sit', 'across', 'from', 'each', 'other', '||comma||', 'and', 'see', 'who', 'the', 'girls', 'sit', 'next', 'to', '||period||', '||return||', '||return||', 'mickey:', "that's", 'not', 'bad', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'so', 'we', 'let', 'the', 'girls', 'decide', '||period||', '||return||', '||return||', 'mickey:', 'yeah', '||comma||', 'why', 'should', 'we', 'knock', 'ourselves', 'out', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'wanna', 'wear', 'that', 'shirt', 'next', 'time', '||period||', '||return||', '||return||', 'mickey:', 'no', '||comma||', 'no', 'one', 'wears', 'the', 'shirt', 'next', 'time', '||period||', '||return||', '||return||', 'kramer:', "that's", 'right', '||comma||', "'cause", 'they', 'already', 'saw', 'it', '||period||', '||return||', '||return||', 'mickey:', "we'll", 'look', 'like', 'idiots', '||period||', '||leftparen||', 'they', 'exit', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'we', 'were', 'engaged', 'to', 'be', 'married', '||comma||', 'uh', '||comma||', 'we', 'bought', 'the', 'wedding', 'invitations', '||comma||', 'and', '||comma||', 'uh', '||comma||', 'yada', 'yada', 'yada', '||comma||', "i'm", 'still', 'single', '||period||', '||return||', '||return||', 'marcy:', 'so', "what's", 'she', 'doing', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'yada', '||period||', '||return||', '||return||', 'marcy:', 'speaking', 'of', "ex's", '||comma||', 'my', 'old', 'boyfriend', 'came', 'over', 'late', 'last', 'night', '||comma||', 'and', '||comma||', 'yada', 'yada', 'yada', '||comma||', 'anyway', '||period||', "i'm", 'really', 'tired', 'today', '||period||', '||return||', '||return||', 'elaine:', 'beth', '||comma||', 'arnie', '||comma||', 'hi', '||period||', "what's", 'up', '||questionmark||', '||return||', '||return||', 'arnie:', 'well', 'our', 'adoption', 'application', 'was', 'denied', '||period||', '||return||', '||return||', 'elaine:', 'really', '||period||', '||return||', '||return||', 'beth:', 'the', 'adoption', 'agent', 'seems', 'to', 'feel', 'that', 'arnie', 'has', 'a', 'violent', 'temper', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'beth:', 'so', "we're", 'just', 'asking', 'our', 'friends', 'what', 'they', 'may', 'have', 'said', 'to', 'the', 'adoption', 'agent', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'you', 'know', '||comma||', 'i', 'just', 'told', 'them', 'what', 'kind', 'people', 'you', 'are', 'and', '||comma||', 'uh', '||comma||', 'yada', 'yada', 'yada', '||comma||', 'that', 'is', 'it', '||period||', '||return||', '||return||', 'jerry:', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'father:', 'i', 'have', 'a', 'discomfort', 'in', 'my', 'molar', '||period||', '||leftparen||', 'enter', 'tim', '||rightparen||', '||return||', '||return||', 'tim:', 'well', '||comma||', 'the', 'curtis', '||comma||', 'why', "don't", 'you', 'come', 'in', '||questionmark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'father', 'curtis', '||comma||', 'good', 'guy', '||period||', 'oh', '||comma||', 'which', 'reminds', 'me', '||comma||', 'did', 'you', 'hear', 'the', 'one', 'about', 'the', 'pope', 'and', 'raquel', 'welch', 'on', 'the', 'lifeboat', '||comma||', 'huh', '||questionmark||', "i'll", 'tell', 'you', 'later', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'whatley', '||period||', '||leftparen||', 'like', '||quotemark||', 'newman', '||quotemark||', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', 'are', 'they', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'mickey:', 'i', 'told', 'you', 'we', "should've", 'gotten', 'here', 'a', 'half', 'hour', 'early', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'now', "what're", 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'mickey:', 'all', 'right', '||comma||', "don't", 'panic', '||period||', "let's", 'just', 'decide', 'now', '||period||', 'which', 'one', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'll", 'take', 'julie', '||period||', '||return||', '||return||', 'mickey:', 'i', 'knew', 'you', 'wanted', 'her', '||period||', "that's", 'who', 'i', 'wanted', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'll", 'take', 'karen', '||period||', '||return||', '||return||', 'mickey:', 'no', '||comma||', 'no', '||comma||', 'you', 'think', "i'm", "fallin'", 'for', 'that', '||questionmark||', "i'll", 'take', 'karen', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'which', 'one', 'is', 'julie', '||questionmark||', '||leftparen||', 'they', 'walk', 'over', 'to', 'the', 'table', 'and', 'fight', 'over', 'who', 'sits', 'where', '||rightparen||', 'hey', '||comma||', 'you', 'ladies', 'look', 'lovely', 'tonight', '||period||', '||leftparen||', 'continue', 'to', 'struggle', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'whatley', 'sayd', 'to', 'me', '||comma||', '||quotemark||', 'hey', '||comma||', 'i', 'can', 'make', 'catholic', 'jokes', '||comma||', 'i', 'used', 'to', 'be', 'catholic', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'you', 'see', '||comma||', 'i', "don't", 'think', 'it', 'is', 'a', 'catholic', 'joke', '||period||', 'i', 'think', "it's", 'more', 'of', 'a', 'raquel', 'welch', 'joke', '||period||', 'what', 'was', 'it', '||questionmark||', 'no', '||comma||', 'i', 'said', 'hand', 'me', 'the', 'buoys', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'bouys', '||exclammark||', '||return||', '||return||', 'jerry:', "don't", 'you', 'see', 'what', 'whatley', 'is', 'after', '||questionmark||', 'total', 'joke', 'telling', 'immunity', '||period||', "he's", 'already', 'got', 'the', 'two', 'big', 'religions', 'covered', '||comma||', 'if', 'he', 'ever', 'gets', 'polish', 'citizenship', "there'll", 'be', 'no', 'stopping', 'him', '||period||', '||return||', '||return||', 'elaine:', 'so', "what're", 'you', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'this', 'father', 'curtis', 'might', 'be', 'very', 'interested', 'to', 'hear', 'what', 'whatley', 'has', 'the', 'pope', 'doing', 'with', 'raquel', 'welch', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'calling', 'on', 'phone', '||rightparen||', 'hey', '||comma||', 'beth', '||comma||', 'arnie', '||comma||', "it's", 'elaine', '||period||', 'um', '||comma||', 'thought', 'you', 'guys', 'might', 'wanna', 'have', 'lunch', '||period||', 'gimme', 'a', 'call', '||period||', 'bye', '||period||', '||return||', '||return||', 'jerry:', "they're", 'not', 'getting', 'a', 'baby', 'so', "you're", 'taking', 'them', 'out', 'to', 'lunch', '||questionmark||', '||return||', '||return||', 'elaine:', 'thought', 'it', 'would', 'be', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'poor', 'beth', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "arnie's", 'just', 'as', 'upset', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'screw', 'him', '||exclammark||', '||leftparen||', 'george', 'enters', '||rightparen||', '||return||', '||return||', 'george:', 'listen', 'to', 'this', '||period||', 'marcy', 'comes', 'up', 'and', 'she', 'tells', 'me', 'her', 'ex', '||dash||', 'boyfriend', 'was', 'over', 'late', 'last', 'night', '||comma||', 'and', '||quotemark||', 'yada', 'yada', 'yada', '||comma||', "i'm", 'really', 'tired', 'today', '||period||', '||quotemark||', 'you', "don't", 'think', 'she', 'yada', "yada'd", 'sex', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'raising', 'hand', '||rightparen||', "i've", 'yada', "yada'd", 'sex', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'i', 'met', 'this', 'lawyer', '||comma||', 'we', 'went', 'out', 'to', 'dinner', '||comma||', 'i', 'had', 'the', 'lobster', 'bisk', '||comma||', 'we', 'went', 'back', 'to', 'my', 'place', '||comma||', 'yada', 'yada', 'yada', '||comma||', 'i', 'never', 'heard', 'from', 'him', 'again', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'yada', "yada'd", 'over', 'the', 'best', 'part', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'mentioned', 'the', 'bisk', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'gotta', 'do', "somethin'", '||period||', '||leftparen||', 'walks', 'over', 'to', 'bathroom', '||period||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'gotta', 'do', "somethin'", '||period||', '||return||', '||return||', 'jerry:', 'george', 'is', 'already', 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'confused', '||rightparen||', 'no', '||comma||', 'mickey', 'and', 'i', '||comma||', 'we', "can't", 'work', 'it', 'out', '||period||', 'you', 'know', '||comma||', "i'm", 'thinking', 'of', 'asking', 'that', 'karen', 'out', 'by', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'were', 'leaning', 'towards', 'julie', '||period||', '||return||', '||return||', 'kramer:', 'i', 'was', '||comma||', 'but', 'the', 'one', 'i', 'thought', 'was', 'julie', 'turned', 'out', 'to', 'be', 'karen', '||period||', '||return||', '||return||', 'george:', 'well', 'it', 'was', 'a', 'helluva', 'yada', 'yada', '||period||', '||return||', '||return||', 'marcy:', "he's", 'moving', 'to', 'seattle', '||period||', 'we', 'wanted', 'to', 'say', 'goodbye', '||comma||', 'i', 'was', 'just', 'getting', 'out', 'of', 'the', 'shower', '||comma||', 'and', 'yada', 'yada', 'yada', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'enough', '||exclammark||', 'enough', '||exclammark||', 'from', 'now', 'on', '||comma||', 'no', 'more', 'yada', "yada's", '||period||', 'just', 'give', 'me', 'the', 'full', 'story', '||period||', '||return||', '||return||', 'marcy:', 'okay', '||period||', '||return||', '||return||', 'george:', 'tell', 'me', 'about', 'the', 'free', 'facial', '||period||', '||return||', '||return||', 'marcy:', 'okay', '||comma||', 'well', '||comma||', 'like', 'i', 'said', 'i', 'was', 'on', '3rd', 'avenue', '||comma||', 'and', 'i', 'stopped', 'by', 'a', 'large', 'department', 'store', '||period||', '||return||', '||return||', 'george:', 'which', 'one', '||questionmark||', '||return||', '||return||', 'marcy:', "bloomingdale's", '||period||', '||return||', '||return||', 'george:', 'very', 'good', '||period||', 'go', 'on', '||period||', '||return||', '||return||', 'marcy:', 'oh', '||comma||', 'and', 'i', 'stole', 'a', 'piaget', 'watch', '||period||', '||return||', '||return||', 'george:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'marcy:', 'and', 'then', '||comma||', 'i', 'was', 'on', 'such', 'a', '||period||', '||period||', '||period||', 'high', '||comma||', 'that', 'i', 'went', 'upstairs', 'to', 'the', 'salon', 'on', 'the', 'fifth', 'floor', '||comma||', 'and', 'got', 'a', 'massage', 'and', 'facial', '||comma||', 'and', 'skipped', 'out', 'on', 'the', 'bill', '||period||', '||return||', '||return||', 'george:', 'shoplifting', '||period||', '||return||', '||return||', 'marcy:', 'well', '||comma||', 'what', 'about', 'you', '||questionmark||', 'you', 'told', 'me', 'that', 'you', 'were', 'engaged', '||period||', 'what', 'was', 'the', 'rest', 'of', 'that', '||questionmark||', '||leftparen||', 'pause', '||rightparen||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||comma||', 'mother', '||questionmark||', '||return||', '||return||', 'nun:', 'sister', '||period||', '||return||', '||return||', 'jerry:', 'sister', '||comma||', 'right', '||period||', 'do', 'you', 'know', 'when', 'father', 'curtis', 'has', 'office', 'hours', '||questionmark||', '||return||', '||return||', 'nun:', 'well', 'not', 'until', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||comma||', 'i', 'really', 'need', 'to', 'speak', 'with', 'him', '||period||', '||return||', '||return||', 'father:', "that's", 'a', 'kneeler', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||leftparen||', 'adjusts', 'accordingly', '||rightparen||', '||return||', '||return||', 'father:', 'tell', 'me', 'your', 'sins', '||comma||', 'my', 'son', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'should', 'tell', 'you', 'that', "i'm", 'jewish', '||period||', '||return||', '||return||', 'father:', "that's", 'no', 'sin', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'good', '||period||', 'anyway', '||comma||', 'i', 'wanted', 'to', 'talk', 'to', 'you', 'about', 'dr', '||period||', 'whatley', '||period||', 'i', 'have', 'a', 'suspicion', 'that', "he's", 'converted', 'to', 'judaism', 'just', 'for', 'the', 'jokes', '||period||', '||return||', '||return||', 'father:', 'and', 'this', 'offends', 'you', 'as', 'a', 'jewish', 'person', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it', 'offends', 'me', 'as', 'a', 'comedian', '||period||', 'and', "it'll", 'interest', 'you', 'that', "he's", 'also', 'telling', 'catholic', 'jokes', '||period||', '||return||', '||return||', 'father:', 'well', '||period||', '||return||', '||return||', 'jerry:', 'and', "they're", 'old', 'jokes', '||period||', 'i', 'mean', '||comma||', 'the', 'pope', 'and', 'raquel', 'welch', 'in', 'a', 'lifeboat', '||period||', '||return||', '||return||', 'father:', 'i', "haven't", 'heard', 'that', 'one', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'sure', 'you', 'have', '||period||', "they're", 'out', 'on', 'the', 'ocean', 'and', '||comma||', 'yada', 'yada', 'yada', '||comma||', 'and', 'she', 'says', '||comma||', '||quotemark||', 'those', "aren't", 'buoys', '||period||', '||quotemark||', '||leftparen||', 'father', 'starts', 'laughing', '||rightparen||', 'father', '||period||', '||period||', '||period||', '||return||', '||return||', 'father:', 'one', 'second', '||period||', '||period||', '||period||', 'well', '||comma||', 'if', 'it', 'would', 'make', 'you', 'feel', 'better', 'i', 'could', 'speak', 'to', 'dr', '||period||', 'whatley', '||period||', 'i', 'have', 'to', 'go', 'back', 'and', 'have', 'a', 'wisdom', 'teeth', 'removed', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'the', 'difference', 'between', 'a', 'dentist', 'and', 'a', 'sadist', "don't", 'you', '||questionmark||', '||return||', '||return||', 'father:', 'um', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'newer', 'magazines', '||period||', '||return||', '||return||', 'father:', 'now', 'if', "you'll", 'excuse', 'me', '||period||', '||leftparen||', 'closes', 'door', '||period||', 'george', 'enters', 'confessional', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'i', 'gotta', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'karen:', 'hi', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'got', 'a', 'minute', '||questionmark||', '||return||', '||return||', 'karen:', 'uh', '||comma||', 'actually', 'my', 'parents', 'are', 'over', '||comma||', 'but', '||comma||', 'would', 'you', 'like', 'to', 'meet', 'them', '||questionmark||', '||return||', '||return||', 'kramer:', 'sure', '||period||', '||return||', '||return||', 'karen:', '||leftparen||', 'parents', 'enter', 'and', 'are', 'little', 'people', 'like', 'mickey', '||rightparen||', 'mom', '||comma||', 'dad', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'arnie:', 'elaine', '||comma||', 'i', 'have', 'to', 'ask', 'you', 'something', '||period||', 'what', 'exactly', 'happened', 'down', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', '||period||', 'i', 'mean', '||comma||', 'i', 'talked', 'to', 'him', 'and', '||comma||', 'blah', 'blah', 'blah', '||comma||', 'he', 'asked', 'about', 'you', 'guys', 'and', '||comma||', 'da', 'da', 'da', 'da', 'da', '||comma||', 'more', 'questions', '||comma||', 'bleh', 'bleh', 'bleh', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'arnie:', 'all', 'right', '||comma||', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'elaine:', 'again', 'you', 'are', 'telling', 'me', 'to', 'shut', 'up', '||questionmark||', '||return||', '||return||', 'arnie:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'yelled', 'that', 'time', 'at', 'the', 'movies', '||period||', "that's", 'why', "you're", 'not', 'getting', 'the', 'baby', '||period||', '||return||', '||return||', 'arnie:', 'oh', 'my', 'god', '||period||', 'how', 'am', 'i', 'gonna', 'tell', 'beth', '||questionmark||', '||return||', '||return||', 'elaine:', 'look', '||comma||', "i'll", 'go', 'down', 'and', 'talk', 'to', 'this', 'adoption', 'guy', 'and', "i'll", 'make', 'sure', 'that', 'it', 'all', 'gets', 'worked', 'out', '||period||', '||return||', '||return||', 'arnie:', 'all', 'right', '||comma||', 'just', "don't", 'screw', 'it', 'up', 'this', 'time', '||exclammark||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'again', 'with', 'the', 'yelling', '||period||', 'not', 'a', 'fan', 'of', 'the', 'yelling', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'pain', '||rightparen||', 'oh', '||comma||', 'are', 'you', 'about', 'done', '||questionmark||', '||return||', '||return||', 'tim:', "i'm", 'just', 'getting', 'warmed', 'up', '||period||', 'because', "i'm", 'just', 'a', 'sadist', 'with', 'newer', 'magazines', '||period||', '||return||', '||return||', 'jerry:', 'huh', '||questionmark||', '||return||', '||return||', 'tim:', 'father', 'curtis', 'told', 'me', 'about', 'your', 'little', 'joke', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'all', 'your', 'jewish', 'jokes', '||questionmark||', '||return||', '||return||', 'tim:', "i'm", 'jewish', '||comma||', "you're", 'not', 'a', 'dentist', '||period||', 'you', 'have', 'no', 'idea', 'what', 'my', 'people', 'have', 'been', 'through', '||period||', '||return||', '||return||', 'jerry:', 'the', 'jews', '||questionmark||', '||return||', '||return||', 'tim:', 'no', '||comma||', 'the', 'dentists', '||period||', 'you', 'know', '||comma||', 'we', 'have', 'the', 'highest', 'suicide', 'rate', 'of', 'any', 'profession', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'that', 'why', "it's", 'so', 'hard', 'to', 'get', 'an', 'appointment', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "i'll", 'uh', '||period||', '||period||', '||period||', 'all', 'right', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', 'date', 'with', 'karen', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'julie', '||period||', "she's", 'the', 'one', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'karen', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'mickey', 'and', 'her', 'have', 'a', 'lot', 'more', 'in', 'common', '||period||', 'you', 'know', 'her', 'parents', 'are', 'little', 'people', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'small', 'world', '||period||', 'so', 'little', 'people', 'can', 'have', 'not', 'little', 'people', 'children', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'and', 'vice', 'versa', '||period||', 'mother', "nature's", 'a', 'mad', 'scientist', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', "won't", 'believe', 'what', 'happened', 'with', 'whatley', 'today', '||period||', 'it', 'got', 'back', 'to', 'hime', 'that', 'i', 'made', 'this', 'little', 'dentist', 'joke', 'and', 'he', 'got', 'all', 'offended', '||period||', 'those', 'people', 'can', 'be', 'so', 'touchy', '||period||', '||return||', '||return||', 'kramer:', 'those', 'people', '||comma||', 'listen', 'to', 'yourself', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'think', 'that', 'dentists', 'are', 'so', 'different', 'from', 'me', 'and', 'you', '||questionmark||', 'they', 'came', 'to', 'this', 'country', 'just', 'like', 'everybody', 'else', '||comma||', 'in', 'search', 'of', 'a', 'dream', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "he's", 'just', 'a', 'dentist', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', "you're", 'an', 'anti', '||dash||', 'dentite', '||period||', '||return||', '||return||', 'jerry:', 'i', 'am', 'not', 'an', 'anti', '||dash||', 'dentite', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", 'a', 'rabid', 'anti', '||dash||', 'dentite', '||exclammark||', 'oh', '||comma||', 'it', 'starts', 'with', 'a', 'few', 'jokes', 'and', 'some', 'slurs', '||period||', '||quotemark||', 'hey', '||comma||', 'denty', '||exclammark||', '||quotemark||', 'next', 'thing', 'you', 'know', "you're", 'saying', 'they', 'should', 'have', 'their', 'own', 'schools', '||period||', '||return||', '||return||', 'jerry:', 'they', 'do', 'have', 'their', 'own', 'schools', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'one', 'little', 'baby', '||comma||', 'whatever', 'you', 'have', 'in', 'stock', '||period||', '||return||', '||return||', 'aent:', 'miss', 'benes', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'look', 'it', '||comma||', 'look', 'it', '||comma||', 'ryan', '||period||', 'these', 'people', 'are', "gettin'", 'a', 'baby', '||period||', 'period', '||period||', 'now', 'we', 'can', 'do', 'this', 'the', 'easy', 'way', '||comma||', 'or', 'we', 'can', 'do', 'this', 'the', 'fun', 'way', '||period||', '||return||', '||return||', 'beth:', 'jerry', '||comma||', "i'm", 'sorry', 'to', 'bother', 'you', '||comma||', 'but', 'you', 'always', 'said', "you'd", 'be', 'there', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'beth:', "i'm", 'thinking', 'of', 'leaving', 'arnie', '||period||', '||return||', '||return||', 'jerry:', 'talk', 'to', 'me', '||period||', '||return||', '||return||', 'beth:', 'he', 'met', 'with', 'elaine', '||comma||', 'and', 'i', 'asked', 'him', 'what', 'happened', '||comma||', 'and', 'he', 'yada', "yada'd", 'me', '||period||', 'i', 'mean', '||comma||', 'could', 'he', 'be', 'having', 'an', 'affair', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "wouldn't", 'put', 'anything', 'past', 'anybody', '||period||', '||return||', '||return||', 'beth:', 'but', 'we', 'just', 'got', 'married', '||period||', '||return||', '||return||', 'jerry:', 'well', 'obviously', 'that', 'was', 'a', 'mistake', '||period||', 'you', 'need', 'to', 'forget', 'about', 'arnie', '||period||', 'the', 'important', 'thing', 'is', "you're", 'moving', 'on', '||period||', '||return||', '||return||', 'beth:', 'why', 'would', 'elaine', 'do', 'that', 'to', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'forget', 'about', 'elaine', '||period||', "let's", 'just', 'focus', 'on', 'us', '||period||', 'come', 'on', '||comma||', 'big', 'hug', '||period||', '||leftparen||', 'mickey', 'and', 'karen', 'enter', '||rightparen||', '||return||', '||return||', 'mickey:', 'hey', 'jerry', '||period||', "where's", 'kramer', '||questionmark||', "i've", 'got', 'exciting', 'news', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'kinda', 'in', 'the', 'middle', 'of', 'something', '||period||', '||return||', '||return||', 'mickey:', 'karen', 'and', 'i', 'are', 'getting', 'married', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'congratulations', '||period||', 'her', 'marriage', 'just', 'fell', 'apart', '||period||', '||return||', '||return||', 'mickey:', '||leftparen||', 'to', 'beth', '||rightparen||', 'how', 'many', 'is', 'that', 'for', 'you', '||questionmark||', '||return||', '||return||', 'beth:', 'two', '||period||', '||return||', '||return||', 'mickey:', "you're", 'a', 'lightweight', '||period||', 'come', 'on', '||comma||', 'honey', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'jerry', '||period||', 'what', 'are', 'you', 'doing', 'here', 'with', 'beth', '||questionmark||', '||return||', '||return||', 'jerry:', 'beth', 'and', 'arnie', 'broke', 'up', '||period||', '||return||', '||return||', 'elaine:', 'so', 'they', "don't", 'want', 'a', 'baby', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shaking', 'his', 'head', 'no', '||rightparen||', 'pff', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'realizes', 'her', 'mistake', '||rightparen||', 'i', 'think', "i'm", 'gonna', 'be', 'sick', '||period||', '||leftparen||', 'george', 'enters', 'alone', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "where's", 'marcy', '||questionmark||', '||return||', '||return||', 'george:', 'she', '||comma||', 'uh', '||comma||', 'went', 'shopping', 'for', 'some', 'shoes', 'for', 'the', 'wedding', 'and', '||comma||', 'yada', 'yada', 'yada', '||comma||', "i'll", 'see', 'her', 'in', 'six', 'to', 'eight', 'months', '||period||', '||leftparen||', 'kramer', 'and', 'julie', 'enter', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'kramer', '||comma||', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', 'i', 'just', 'assume', 'not', 'sit', 'next', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||period||', '||period||', 'oh', 'look', '||comma||', "there's", 'mickey', 'and', 'his', 'parents', '||period||', '||return||', '||return||', 'elaine:', 'nice', 'looking', 'family', '||period||', '||return||', '||return||', 'jerry:', 'very', 'handsome', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'mr', '||period||', 'abbott', '||rightparen||', 'how', 'ya', 'doing', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'abbott:', 'hey', 'kramer', '||period||', '||return||', '||return||', 'julie:', 'oh', 'mickey', '||period||', 'excuse', 'me', '||comma||', 'i', "can't", 'take', 'this', '||period||', '||leftparen||', 'she', 'exits', 'quickly', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'mr', '||period||', 'abbott', '||period||', '||return||', '||return||', 'mr', '||period||', 'abbott:', "that's", 'dr', '||period||', 'abbott', '||comma||', 'd', '||period||', 'd', '||period||', 's', '||period||', 'tim', 'whatley', 'was', 'one', 'of', 'my', 'students', '||period||', 'and', 'if', 'this', "wasn't", 'my', "son's", 'wedding', 'day', '||comma||', "i'd", 'knock', 'you', 'teeth', 'out', 'you', 'anti', '||dash||', 'dentite', 'bastard', '||period||', '||return||', '||return||', 'beth:', 'what', 'was', 'that', 'all', 'about', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'said', 'something', 'about', 'dentists', 'and', 'it', 'got', 'blown', 'all', 'out', 'of', 'proportion', '||period||', '||return||', '||return||', 'beth:', 'hey', '||comma||', 'what', 'do', 'you', 'call', 'a', 'doctor', 'who', 'fails', 'out', 'of', 'med', 'school', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'beth:', 'a', 'dentist', '||period||', '||leftparen||', 'they', 'laugh', '||rightparen||', '||return||', '||return||', 'jerry:', "that's", 'a', 'good', 'one', '||period||', 'dentists', '||period||', '||return||', '||return||', 'beth:', 'yeah', '||comma||', 'who', 'needs', "'em", '||questionmark||', 'not', 'to', 'mention', 'the', 'blacks', 'and', 'the', 'jews', '||period||', '||leftparen||', 'jerry', 'fakes', 'a', 'smile', '||rightparen||', '||return||', '||return||', 'elaine:', "where's", 'beth', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'went', 'out', 'to', 'get', 'her', 'head', 'shaved', '||period||', '||return||', '||return||', 'father:', 'we', 'are', 'gathered', 'her', 'today', 'to', 'unite', 'this', 'couple', 'in', 'holy', '||period||', '||period||', '||period||', 'matrimony', '||period||', '||return||', '||return||', 'jerry:', 'those', 'wisdom', 'teeth', 'are', 'tough', 'to', 'get', 'out', '||period||', '||return||', '||return||', 'father:', 'marriage', 'is', 'not', 'an', 'intervention', 'to', 'be', 'entered', 'lightly', '||period||', '||period||', '||period||', 'yada', 'yada', 'yada', '||comma||', 'i', 'pronounce', 'you', 'man', 'and', 'wife', '||period||', '||leftparen||', 'they', 'kiss', '||comma||', 'walk', 'toward', 'exit', '||rightparen||', '||return||', '||return||', 'karen:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'really', 'wanted', 'you', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'excuse', 'me', '||period||', '||return||', '||return||', 'gladys:', 'be', 'with', 'you', 'in', 'a', 'minute', '||period||', '||leftparen||', 'turns', 'her', 'back', 'to', 'elaine', 'and', 'continues', 'into', 'phone', '||rightparen||', 'no', '||comma||', 'you', 'shoulda', 'come', 'last', 'night', '||comma||', 'it', 'was', 'fun', '||period||', '||return||', '||return||', 'elaine:', 'uhm', '||comma||', 'i', 'just', 'have', 'a', 'question', '||period||', '||return||', '||return||', 'gladys:', '||leftparen||', 'into', 'phone', '||rightparen||', 'i', 'know', '||comma||', 'the', 'margaritas', 'in', 'that', 'place', 'are', 'so', 'strong', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'walks', 'up', 'to', 'counter', '||rightparen||', 'helloo', '||questionmark||', "i'd", 'like', 'to', 'buy', 'these', 'hirachis', '||period||', '||return||', '||return||', 'gladys:', '||leftparen||', 'into', 'phone', '||rightparen||', 'so', '||questionmark||', 'what', 'else', 'is', "goin'", 'on', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouts', '||rightparen||', 'hey', '||exclammark||', '||exclammark||', '||return||', '||return||', 'gladys:', 'listen', '||comma||', "i'll", 'call', 'you', 'back', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'yes', '||questionmark||', 'what', 'can', 'i', 'do', 'for', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'tosses', 'the', 'hirachis', 'onto', 'the', 'counter', '||rightparen||', 'nothing', '||period||', 'you', '||comma||', 'just', 'lost', 'a', 'customer', '||period||', '||return||', '||return||', 'valerie:', 'ready', 'to', 'go', '||questionmark||', 'i', "don't", 'wanna', 'miss', 'the', 'previews', '||period||', '||return||', '||return||', 'jerry:', 'me', 'neither', '||period||', 'i', 'love', 'the', 'previews', '||period||', 'in', 'fact', 'i', 'enjoy', 'being', 'in', 'the', 'theatre', 'cut', 'up', '||leftparen||', '||questionmark||', '||rightparen||', '||period||', 'last', 'week', 'after', 'a', 'preview', '||comma||', 'i', 'yelled', 'out', "'must", "miss'", '||period||', '||return||', '||return||', 'valerie:', 'i', 'think', 'that', 'i', 'was', 'in', 'that', 'theatre', '||period||', 'that', '||comma||', 'that', 'was', 'really', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'it', 'got', 'a', 'good', 'laugh', '||period||', 'let', 'me', 'just', 'check', 'my', 'messages', 'before', 'we', 'go', '||period||', '||return||', '||return||', 'george:', 'so', "you're", 'on', 'the', 'speed', 'dial', '||questionmark||', '||return||', '||return||', 'jerry:', 'after', 'two', 'dates', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'number', '||questionmark||', '||return||', '||return||', 'jerry:', 'seven', '||period||', '||return||', '||return||', 'george:', 'wha', '||exclammark||', 'you', 'know', '||comma||', "it's", 'a', 'pain', 'to', 'change', 'that', '||period||', 'you', 'gotta', 'lift', 'up', 'that', 'plastic', 'thing', 'with', 'a', 'pen', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'hey', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'it', 'all', 'right', 'if', 'i', 'keep', 'these', 'here', 'for', 'a', 'while', '||questionmark||', "i'm", 'having', 'a', 'new', "year's", 'eve', 'party', '||period||', '||return||', '||return||', 'jerry:', "you're", 'gonna', 'keep', 'these', 'here', 'for', 'eight', 'months', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'jerry', '||period||', 'new', "year's", 'eve', 'nineteen', 'ninety', '||dash||', 'nine', '||period||', 'the', 'millennium', '||period||', 'i', 'told', 'you', 'about', 'that', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "you're", 'gonna', 'leave', 'these', 'chairs', 'here', 'for', 'two', 'and', 'a', 'half', 'years', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", 'not', 'gonna', 'see', "'em", '||period||', 'i', 'got', 'a', 'case', 'of', 'party', 'poppers', "i'm", 'gonna', 'keep', 'in', 'front', 'of', "'em", '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'so', 'get', 'this', '||period||', 'i', 'get', 'a', 'call', 'this', 'morning', 'from', 'one', 'of', 'the', 'mets', 'front', 'office', 'guys', '||period||', 'they', 'wanna', 'take', 'me', 'out', 'to', 'lunch', '||period||', '||return||', '||return||', 'jerry:', 'what', 'for', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'smiling', '||rightparen||', "i'm", 'on', 'a', 'winning', 'ball', 'club', '||comma||', 'jerry', '||period||', 'they', 'probably', 'wanna', 'pick', 'my', 'brains', '||period||', '||return||', '||return||', 'jerry:', 'really', '||comma||', 'why', "d'you", 'think', "they're", 'taking', 'you', 'out', 'to', 'lunch', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'thoughtful', '||rightparen||', 'i', 'have', 'no', 'idea', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'i', 'have', 'had', 'it', 'with', 'those', 'mayans', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'mind', 'the', 'mayans', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'unfolding', 'chair', '||rightparen||', 'you', 'know', 'that', 'store', '||comma||', 'putumayo', '||questionmark||', '||leftparen||', 'sits', '||rightparen||', 'i', 'was', 'trying', 'to', 'buy', 'these', 'hirachis', '||comma||', 'right', '||comma||', 'and', 'the', 'saleswoman', 'just', 'completely', 'ignored', 'me', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'we', 'talking', 'hirachis', '||questionmark||', 'i', 'know', 'a', 'great', 'store', 'for', 'hirachis', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'not', 'putumayo', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||period||', 'cinqo', 'de', 'mayo', '||period||', '||leftparen||', 'leaving', '||rightparen||', 'yeah', '||comma||', 'marcellino', '||comma||', 'he', 'turned', 'me', 'on', 'to', 'it', '||comma||', 'and', "he's", 'one', 'sixty', '||dash||', 'fourth', 'mayan', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'slightly', 'worried', '||rightparen||', 'you', 'know', '||comma||', "i'm", 'starting', 'to', 'get', 'a', 'little', 'nervous', 'about', 'this', 'lunch', '||period||', '||return||', '||return||', 'elaine:', "what'd", 'you', 'have', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'gonna', 'keep', 'these', 'here', 'too', '||comma||', 'huh', '||questionmark||', "they'll", 'be', 'alright', '||period||', '||leftparen||', 'begins', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'these', 'balloons', "aren't", 'gonna', 'stay', 'filled', 'till', 'new', "year's", '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'at', 'the', 'door', '||rightparen||', 'well', '||comma||', 'those', "aren't", 'for', 'new', "year's", '||period||', 'those', 'are', 'my', 'everyday', 'balloons', '||period||', '||return||', '||return||', 'minkler:', 'george', '||comma||', "we'll", 'be', 'blunt', '||period||', 'the', 'mets', 'need', 'somebody', 'to', 'head', 'up', 'scouting', '||comma||', 'and', 'we', 'think', 'that', 'someone', 'might', 'be', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'surprise', '||rightparen||', 'head', 'of', 'scouting', '||questionmark||', '||return||', '||return||', 'mooney:', 'interested', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'playing', 'it', 'cool', '||rightparen||', "i'm", 'still', 'here', '||period||', '||return||', '||return||', 'minkler:', 'now', '||comma||', 'unfortunately', '||comma||', 'league', 'rules', 'prevent', 'us', 'from', 'making', 'you', 'an', 'offer', 'while', "you're", 'still', 'under', 'contract', '||period||', '||return||', '||return||', 'mooney:', 'you', 'understand', 'what', "we're", 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'so', "you're", 'talking', '||period||', '||period||', '||period||', '||return||', '||return||', 'minkler:', 'no', '||comma||', 'no', '||period||', '||return||', '||return||', 'mooney:', "we're", '*not*', 'talking', '||period||', "we're", 'just', '||comma||', 'talking', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'need', 'me', 'to', 'get', 'fired', '||period||', '||return||', '||return||', 'minkler:', 'we', "didn't", 'say', 'that', '||period||', '||return||', '||return||', 'mooney:', 'we', "couldn't", 'say', 'that', '||comma||', 'because', 'even', 'if', 'we', 'did', '||period||', '||period||', '||period||', '||return||', '||return||', 'minkler:', '||period||', '||period||', '||period||', 'we', "couldn't", 'say', 'that', 'we', 'said', 'it', '||period||', '||return||', '||return||', 'mooney:', 'you', 'see', 'what', "we're", 'saying', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'jokingly', '||rightparen||', 'you', 'are', 'still', 'paying', 'for', 'this', 'lunch', '||questionmark||', '||return||', '||return||', 'minkler:', '||leftparen||', 'serious', '||rightparen||', 'we', "didn't", 'say', 'that', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'sorry', "i'm", 'late', '||period||', "there's", 'a', 'lotta', 'chairs', 'and', 'balloons', 'in', 'my', 'apartment', '||period||', 'how', "'bout", 'i', 'make', 'it', 'up', 'to', 'you', 'with', 'dinner', '||questionmark||', '||return||', '||return||', 'valerie:', '||leftparen||', 'pointedly', '||rightparen||', 'someplace', 'nice', 'this', 'time', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'sorry', 'about', 'that', 'mongolian', 'barbecue', 'last', 'night', '||period||', "i'd", 'heard', 'good', 'things', '||period||', '||return||', '||return||', 'valerie:', '||leftparen||', 'rising', '||rightparen||', 'i', "don't", 'know', '||comma||', 'got', 'a', 'two', 'in', "zagat's", '||period||', '||return||', '||return||', 'jerry:', 'lemme', 'just', 'check', 'my', 'messages', '||period||', '||leftparen||', 'to', 'himself', '||rightparen||', 'maybe', 'a', 'nicer', 'girl', 'called', '||period||', '||return||', '||return||', 'voice', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', "who's", 'this', '||questionmark||', '||return||', '||return||', 'voice', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'jane', '||period||', 'what', 'number', 'did', 'you', 'dial', '||questionmark||', '||return||', '||return||', 'jerry:', 'seven', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'see', 'these', '||questionmark||', '||leftparen||', 'raises', 'her', 'foot', 'so', 'her', 'new', 'hirachis', 'can', 'be', 'seen', '||rightparen||', 'cinqo', 'de', 'mayo', '||exclammark||', 'sales', 'commission', '||comma||', 'bye', '||dash||', 'bye', '||dash||', 'o', '||exclammark||', '||leftparen||', 'waves', '||rightparen||', '||return||', '||return||', 'george', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', '||leftparen||', 'singing', '||rightparen||', 'meet', 'the', 'mets', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'meet', 'the', 'mets', '||period||', 'come', 'on', 'in', 'and', 'greet', 'the', 'mets', '||period||', '||return||', '||return||', 'jerry:', 'good', 'meeting', '||questionmark||', '||return||', '||return||', 'george:', 'there', 'was', 'no', 'meeting', '||period||', '||leftparen||', 'gets', 'one', 'of', 'the', 'folding', 'chairs', '||rightparen||', 'but', 'it', 'was', 'quite', 'a', 'meeting', '||period||', 'you', 'are', 'looking', 'at', 'the', 'next', 'director', 'of', 'mets', 'scouting', '||period||', 'the', 'only', 'thing', 'is', '||comma||', 'i', 'have', 'to', 'get', 'fired', 'from', 'the', 'yankees', 'first', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'of', 'course', '||period||', 'but', 'i', 'really', 'wanna', 'leave', 'my', 'mark', 'this', 'time', '||comma||', 'you', 'know', '||comma||', 'uh', '||period||', 'i', 'wanna', 'walk', 'away', 'from', 'the', 'yankees', 'with', 'people', 'saying', "'wow", '||exclammark||', 'now', 'that', 'guy', 'got', 'canned', '||exclammark||', "'", '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'to', 'go', 'out', 'in', 'a', 'final', 'blaze', 'of', 'incompetence', '||questionmark||', '||return||', '||return||', 'george:', 'ehh', '||period||', '||leftparen||', 'nostalgic', '||rightparen||', 'remember', 'that', 'summer', 'at', 'dairy', 'queen', 'where', 'i', 'cooled', 'my', 'feet', 'in', 'the', 'soft', '||dash||', 'serve', 'machine', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'think', 'people', 'will', 'still', 'be', 'using', 'napkins', 'in', 'the', 'year', 'two', '||dash||', 'thousand', '||questionmark||', 'or', 'is', 'this', 'mouth', '||dash||', 'vacuum', 'thing', 'for', 'real', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'george', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'rising', '||rightparen||', 'i', 'had', 'like', 'a', 'so', '||dash||', 'so', 'date', 'with', 'valerie', '||comma||', 'now', "i'm", 'number', 'nine', 'on', 'the', 'speed', '||dash||', 'dial', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', 'i', 'used', 'to', 'be', 'seven', '||period||', 'i', 'dropped', 'two', 'spots', '||period||', '||return||', '||return||', 'george:', 'what', '||comma||', "she's", 'ranking', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'this', 'speed', '||dash||', "dial's", 'like', 'a', 'relationship', 'barometer', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'a', 'barometer', 'exactly', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'pronounced', 'thermometer', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'in', 'the', 'year', 'two', '||dash||', 'thousand', '||comma||', "we'll", 'all', 'be', 'on', 'speed', '||dash||', 'dial', '||period||', "you'll", 'just', 'have', 'to', 'think', 'of', 'a', 'person', '||comma||', "they'll", 'be', 'talking', 'to', 'you', '||period||', "it'll", 'be', 'like', '||comma||', 'wup', '||leftparen||', 'judders', 'and', 'puts', 'his', 'hands', 'to', 'his', 'temples', '||comma||', 'as', 'if', 'receiving', 'a', 'call', 'on', 'a', "'mental", "phone'", '||rightparen||', 'getting', 'a', 'call', 'here', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', 'hey', '||comma||', "it's", 'newman', '||period||', '||leftparen||', 'to', "'mental", "phone'", '||rightparen||', 'hey', '||comma||', 'how', 'you', 'doing', '||comma||', 'newman', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', "'mental", "phone'", '||rightparen||', 'oh', '||comma||', 'you', 'wanna', 'talk', 'to', 'jerry', '||questionmark||', '||return||', '||return||', 'valerie:', '||leftparen||', 'pleased', '||rightparen||', 'oh', '||comma||', 'flowers', '||period||', 'you', "didn't", 'have', 'to', 'do', 'that', '||period||', 'i', 'mean', '||comma||', 'the', 'dinner', '||comma||', 'and', 'the', 'play', '||comma||', 'and', 'the', 'hansom', 'cab', 'ride', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'just', 'wanted', 'to', '||period||', '||period||', '||period||', '||leftparen||', 'breaks', 'off', '||rightparen||', 'you', 'forgot', 'the', 'gift', 'certificate', 'to', 'barnes', 'and', 'noble', '||period||', '||return||', '||return||', 'valerie:', 'oh', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'resumes', '||rightparen||', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'make', 'a', 'good', 'impression', '||period||', '||return||', '||return||', 'valerie:', "i'm", 'gonna', 'go', 'put', 'these', 'in', 'some', 'water', '||period||', '||return||', '||return||', 'jerry:', 'i', 'like', 'the', 'way', 'you', 'think', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', 'number', 'one', '||exclammark||', '||exclammark||', 'seinfeld', '||comma||', 'you', 'magnificent', 'bastard', '||exclammark||', '||return||', '||return||', 'george:', 'sorry', "i'm", 'late', '||comma||', 'but', 'look', 'what', 'i', 'found', 'in', 'the', 'yankee', 'hall', 'of', 'pride', 'display', 'case', '||period||', '||return||', '||return||', 'wilhelm:', "isn't", 'that', 'babe', "ruth's", 'uniform', '||questionmark||', '||return||', '||return||', 'george:', 'is', 'it', '||questionmark||', '||leftparen||', 'reaches', 'into', 'bag', '||rightparen||', '||return||', '||return||', 'george:', 'huh', '||comma||', 'strawberries', '||comma||', 'anyone', '||questionmark||', '||leftparen||', 'eats', 'a', 'strawberry', '||rightparen||', 'ah', '||comma||', "that's", 'good', '||period||', 'ooh', '||comma||', 'juicy', 'this', 'time', 'of', 'year', '||period||', '||return||', '||return||', 'george:', 'gotta', 'get', 'the', 'good', 'ones', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'bad', '||period||', "that's", 'bad', '||period||', '||return||', '||return||', 'kramer:', 'so', 'jerry', '||comma||', 'my', 'millennium', "party's", 'really', 'coming', 'together', '||period||', 'will', 'people', 'be', 'able', 'to', 'breathe', 'underwater', 'in', 'the', 'year', 'two', '||dash||', 'thousand', '||questionmark||', '||return||', '||return||', 'jerry:', 'some', 'of', 'us', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'crumpling', 'a', 'piece', 'of', 'paper', '||rightparen||', 'i', "don't", 'wanna', 'exclude', 'anybody', '||period||', '||return||', '||return||', 'jerry:', 'hola', '||period||', '||return||', '||return||', 'elaine:', 'shove', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'all', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'all', 'this', 'junk', 'at', 'cinqo', 'de', 'mayo', '||comma||', 'because', 'i', 'was', 'trying', 'to', 'show', 'putumayo', 'how', 'much', 'business', "they'd", 'lost', '||period||', 'i', 'mean', '||comma||', 'i', 'been', 'dancing', '||leftparen||', 'demonstrates', 'dance', '||rightparen||', 'and', 'strutting', 'in', 'front', 'of', 'their', 'store', 'for', 'two', 'days', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'no', 'wonder', "we're", 'getting', 'so', 'much', 'rain', '||period||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', "i'm", 'having', 'a', 'millennium', 'party', '||comma||', 'so', 'save', 'the', 'date', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'you', 'know', 'what', '||questionmark||', 'newman', 'sent', 'me', 'an', 'invitation', 'already', '||comma||', 'to', 'his', 'party', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reads', '||rightparen||', 'come', 'celebrate', 'the', 'millennium', '||comma||', 'with', 'newmanniun', '||period||', 'newman', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', 'valerie', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'valerie', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', "i'm", 'her', 'step', '||dash||', 'mother', '||period||', 'drive', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', "it's", 'taken', 'me', 'thirteen', 'years', 'to', 'climb', 'up', 'to', 'the', 'top', 'of', 'that', 'speed', '||dash||', 'dial', '||comma||', 'and', 'i', "don't", 'intend', 'to', 'lose', 'my', 'spot', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'but', '||comma||', 'i', 'never', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', '||leftparen||', 'threatening', '||rightparen||', 'you', 'just', 'stay', 'away', 'from', 'that', 'phone', '||period||', '||return||', '||return||', 'george:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'i', 'heard', 'about', 'what', 'happened', 'at', 'the', 'meeting', 'this', 'morning', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yes', '||period||', 'i', 'already', 'packed', 'up', 'my', 'desk', '||comma||', 'sir', '||period||', 'i', 'can', 'be', 'outta', 'here', 'in', 'an', 'hour', '||period||', '||return||', '||return||', 'steinbrenner:', '||period||', '||period||', '||period||', 'and', 'i', 'have', 'to', 'tell', 'you', '||comma||', "it's", 'exactly', 'what', 'this', 'organisation', 'needed', '||period||', '||return||', '||return||', 'steinbrenner:', 'we', 'wanna', 'look', 'to', 'the', 'future', '||comma||', 'we', 'gotta', 'tear', 'down', 'the', 'past', '||period||', 'babe', 'ruth', 'was', 'nothing', 'more', 'than', 'a', 'fat', 'old', 'man', '||comma||', 'with', 'little', '||dash||', 'girl', 'legs', '||period||', 'and', "here's", 'something', 'i', 'just', 'found', 'out', 'recently', '||period||', 'he', "wasn't", 'really', 'a', 'sultan', '||period||', 'ah', '||comma||', 'what', "d'you", 'make', 'of', 'that', '||questionmark||', 'hey', '||comma||', 'check', 'this', 'out', '||period||', '||leftparen||', 'he', 'stands', 'to', 'reveal', "he's", 'wearing', 'baseball', 'pants', '||rightparen||', 'lou', "gehrig's", 'pants', '||period||', 'not', 'a', 'bad', 'fit', '||period||', '||leftparen||', 'a', 'thought', 'occurs', '||rightparen||', 'hey', '||comma||', 'you', "don't", 'think', 'that', 'nerve', 'disease', 'of', 'his', 'was', 'contagious', '||comma||', 'do', 'you', '||questionmark||', 'uh', '||comma||', 'i', 'better', 'take', "'em", 'off', '||period||', "i'm", 'too', 'important', 'to', 'this', 'team', '||period||', '||leftparen||', 'removes', 'the', 'pants', 'to', 'reveal', 'his', 'boxers', '||rightparen||', 'big', 'stein', "can't", 'be', 'flopping', 'and', 'twitching', '||period||', '||return||', '||return||', 'steinbrenner:', 'hey', '||comma||', 'how', "'bout", 'some', 'lunch', '||period||', "what're", 'you', 'going', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'uh', '||comma||', 'valerie', '||comma||', 'i', 'uh', '||comma||', "couldn't", 'help', 'but', 'notice', 'that', "i'm", 'on', 'your', 'speed', '||dash||', 'dial', '||period||', '||return||', '||return||', 'valerie:', 'you', 'deserve', 'it', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', "can't", 'help', 'thinking', 'that', 'maybe', "there's", 'someone', 'in', 'your', 'life', 'who', 'deserves', 'it', 'more', '||period||', 'someone', "you've", 'known', '||comma||', 'you', 'know', '||comma||', 'more', 'than', 'a', 'week', '||period||', '||return||', '||return||', 'valerie:', 'my', 'stepmother', 'got', 'to', 'you', '||comma||', "didn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'no', '||period||', '||return||', '||return||', 'valerie:', 'uuh', '||comma||', 'i', "can't", 'believe', 'she', 'did', 'this', 'again', '||period||', "that's", 'it', '||exclammark||', "she's", 'off', 'the', 'speed', '||dash||', 'dial', 'completely', '||exclammark||', '||return||', '||return||', 'jerry:', 'yikes', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'just', 'got', 'your', 'invitation', 'to', 'the', 'newmanniun', 'party', '||period||', '||return||', '||return||', 'newman:', 'you', 'just', 'got', 'it', '||questionmark||', 'damn', '||comma||', 'the', 'mail', 'is', 'slow', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'getting', 'worked', 'up', '||rightparen||', 'you', 'knew', 'i', 'was', 'having', 'a', 'millennium', 'party', '||comma||', 'but', 'you', 'just', 'had', 'to', 'throw', 'yours', 'on', 'the', 'same', 'day', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'have', 'done', 'nothing', 'unethical', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', "you're", 'gonna', 'have', 'to', 'cancel', 'it', '||comma||', 'because', "i've", 'told', 'everybody', 'about', 'my', 'party', '||period||', '||return||', '||return||', 'newman:', 'cancel', '||exclammark||', '||leftparen||', 'jumps', 'to', 'feet', '||rightparen||', 'think', 'again', '||comma||', 'longshanks', '||exclammark||', 'i', 'started', 'planning', 'this', 'in', 'nineteen', 'seventy', '||dash||', 'eight', '||period||', 'i', 'put', 'a', 'deposit', 'down', 'on', 'that', 'revolving', 'restaurant', 'that', 'overlooks', 'times', 'square', '||comma||', 'and', 'i', 'booked', 'christopher', 'cross', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'worked', 'up', '||rightparen||', 'well', '||comma||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', 'i', 'got', 'over', 'two', 'hundred', 'folding', 'chairs', '||comma||', 'and', 'quite', 'a', 'bit', 'of', 'ice', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'thoughtful', '||rightparen||', 'what', 'kind', '||questionmark||', '||return||', '||return||', 'kramer:', 'cubed', '||period||', '||return||', '||return||', 'newman:', "that's", 'good', 'stuff', '||comma||', 'and', 'you', 'can', 'never', 'have', 'too', 'much', 'ice', '||period||', 'alright', '||comma||', "i'll", 'tell', 'you', 'what', "i'll", 'do', '||period||', 'you', 'can', 'co', '||dash||', 'host', 'the', 'party', 'with', 'me', '||comma||', 'under', 'one', 'condition', '||period||', 'no', 'jerry', '||period||', 'jerry', 'is', 'not', 'invited', '||period||', '||return||', '||return||', 'kramer:', 'i', 'gotta', 'invite', 'jerry', '||period||', "he's", 'my', 'buddy', '||period||', '||return||', '||return||', 'newman:', 'that', 'he', 'may', 'be', '||period||', 'but', "he's", 'outta', 'my', 'life', '||comma||', 'starting', 'in', 'the', 'year', 'two', '||dash||', 'thousand', '||period||', 'for', 'me', '||comma||', 'the', 'next', 'millennium', 'must', 'be', '||comma||', 'jerry', '||dash||', 'free', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'could', 'they', 'not', 'fire', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'never', 'thought', "i'd", 'fail', 'at', 'failing', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', 'come', 'on', 'there', 'now', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'depressed', '||rightparen||', 'feel', 'like', 'i', "can't", 'do', 'anything', 'wrong', '||period||', '||return||', '||return||', 'jerry:', 'nonsense', '||period||', 'you', 'do', 'everything', 'wrong', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hopeful', '||rightparen||', 'everything', '||questionmark||', '||return||', '||return||', 'jerry:', 'everything', '||period||', '||return||', '||return||', 'george:', 'you', 'really', 'think', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', 'i', 'have', 'no', 'confidence', 'in', 'you', '||period||', '||return||', '||return||', 'george:', 'alright', '||period||', 'i', 'guess', 'i', 'just', 'have', 'to', 'pick', 'myself', 'up', '||comma||', 'dust', 'myself', 'off', '||comma||', 'and', 'throw', 'myself', 'right', 'back', 'down', 'again', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'the', 'spirit', '||period||', 'you', 'suck', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'pleased', '||rightparen||', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', 'no', '||comma||', 'listen', 'to', 'me', '||period||', 'i', 'work', 'in', 'fashion', '||period||', 'together', '||comma||', 'we', 'can', 'drive', 'putumayo', 'outta', 'business', 'and', 'make', 'cinqo', 'de', 'mayo', 'numero', 'uno', '||period||', '||period||', '||period||', 'de', 'mayo', '||period||', '||return||', '||return||', 'gladys:', 'do', 'you', 'need', 'some', 'help', 'with', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'puzzled', '||rightparen||', 'you', '||questionmark||', "what're", 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'gladys:', 'i', 'own', 'this', 'store', '||period||', '||return||', '||return||', 'elaine:', 'no', 'you', "don't", '||period||', 'you', 'own', 'putumayo', '||period||', 'unless', 'you', 'own', 'both', 'stores', '||period||', '||leftparen||', 'laughs', 'nervously', '||rightparen||', '||return||', '||return||', 'gladys:', "i'm", 'gladys', 'mayo', '||period||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'this', 'really', 'sticks', 'in', 'my', 'craw', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'mrs', 'hamilton', '||comma||', "it's", 'certainly', 'nice', 'that', 'you', 'and', 'valerie', 'patched', 'things', 'up', '||comma||', 'so', 'we', 'could', 'all', 'get', 'together', 'like', 'this', '||period||', 'where', 'is', 'valerie', '||questionmark||', '||return||', '||return||', 'mrs', 'hamilton:', "i'm", 'sure', "she'll", 'be', 'along', '||period||', '||leftparen||', 'handing', 'over', 'a', 'glass', '||rightparen||', 'have', 'some', 'wine', '||comma||', 'jerome', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', 'you', 'know', 'jerome', '||comma||', 'i', 'can', 'understand', 'what', 'valerie', 'sees', 'in', 'you', '||period||', 'so', 'attractive', '||comma||', 'so', 'strong', '||comma||', 'so', 'comedic', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'good', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', 'jerome', '||comma||', 'i', 'have', 'a', 'deliciously', 'naughty', 'idea', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nervous', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'mrs', 'hamilton:', 'why', "don't", 'i', 'put', 'you', 'on', 'my', 'speed', '||dash||', 'dial', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'mrs', 'hamilton', '||period||', 'that', "doesn't", 'sound', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', "don't", 'be', 'such', 'a', 'child', '||comma||', 'jerome', '||period||', "how's", 'number', 'three', 'sound', '||questionmark||', '||return||', '||return||', 'jerry:', "valerie's", 'not', 'coming', 'over', '||comma||', 'is', 'she', '||questionmark||', '||return||', '||return||', 'mrs', 'hamilton:', 'seven', '||comma||', 'four', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', 'two', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'stop', '||comma||', 'stop', '||period||', 'this', "isn't", 'right', '||period||', 'what', 'about', 'valerie', '||questionmark||', '||return||', '||return||', 'mrs', 'hamilton:', 'i', "won't", 'tell', 'if', 'you', "don't", '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', 'hurriedly', '||rightparen||', 'wuhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', '||period||', '||period||', 'newman', '||period||', '||period||', '||period||', 'two', '||dash||', 'thousand', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yells', '||rightparen||', 'newmanniun', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'whimper', '||rightparen||', 'jerry', '||questionmark||', '||return||', '||return||', 'koren', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'alright', '||comma||', 'yankees', '||comma||', 'two', '||period||', 'orioles', '||comma||', 'nothing', '||period||', 'wait', 'a', 'minute', '||exclammark||', 'a', 'short', 'stocky', 'bald', 'man', 'is', 'streaking', 'across', 'the', 'field', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'koren', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'check', 'that', '||period||', "he's", 'not', 'streaking', '||period||', "he's", 'wearing', 'a', 'flesh', '||dash||', 'tone', 'body', '||dash||', 'stocking', '||period||', 'apparently', '||comma||', "he's", 'a', 'bit', 'bashful', '||comma||', 'and', 'oddly', '||comma||', 'no', '||dash||', 'one', 'seems', 'upset', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'look', '||comma||', "it's", 'george', '||period||', '||return||', '||return||', 'koren', '||leftparen||', 'o', '||period||', 'c', '||period||', '||rightparen||', ':', 'everyone', 'loves', 'him', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'i', 'know', '||period||', '||leftparen||', 'he', 'clicks', 'off', 'the', 'tv', '||rightparen||', 'listen', '||comma||', 'jerry', '||comma||', 'i', "can't", 'let', 'you', 'come', 'to', 'my', 'new', "year's", 'party', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'neutral', '||rightparen||', 'fine', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'agitated', '||rightparen||', 'i', 'mean', '||comma||', "it's", 'killing', 'me', '||exclammark||', "newman's", 'got', 'the', 'jump', 'on', 'the', 'invites', '||comma||', 'and', 'will', 'crush', 'me', 'if', 'i', 'try', 'to', 'go', 'it', 'alone', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'neutral', '||rightparen||', 'no', 'problem', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'swung', 'by', "jerry's", 'argument', '||rightparen||', "you're", 'right', '||period||', 'i', "won't", 'do', 'it', 'without', 'you', '||period||', 'i', 'feel', 'so', 'ashamed', 'i', 'even', 'thought', 'of', 'it', '||comma||', 'huh', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pleading', '||rightparen||', 'elaine', '||comma||', 'you', "can't", 'go', 'to', "newman's", 'newmanniun', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'neutral', '||rightparen||', 'okay', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'you', 'gotta', 'spend', 'new', "year's", 'nineteen', 'ninety', '||dash||', 'nine', 'with', 'me', 'and', 'jerry', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'neutral', '||rightparen||', 'fine', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'frustrated', 'shout', '||rightparen||', 'oh', 'come', 'on', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'neutral', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'triumph', '||rightparen||', 'yesss', '||exclammark||', 'alright', '||comma||', 'so', "it's", 'you', '||comma||', "it's", 'me', '||comma||', 'and', "it's", 'jerry', '||comma||', 'huh', '||period||', '||leftparen||', 'claps', 'hands', '||rightparen||', 'yeah', '||comma||', 'now', 'things', 'are', 'starting', 'to', 'snowball', '||comma||', 'huh', '||period||', "i'll", 'tell', 'newman', 'i', "don't", 'need', 'him', '||period||', 'so', '||comma||', "i'll", 'uh', '||comma||', 'see', 'you', 'two', 'in', 'the', 'twenty', '||dash||', 'first', 'century', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'following', 'kramer', 'to', 'the', 'door', '||rightparen||', 'okay', '||period||', 'kramer', '||comma||', 'kramer', '||comma||', 'wait', 'a', 'minute', '||period||', 'do', 'you', 'still', 'have', 'that', 'pricing', '||dash||', 'gun', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'i', 'need', 'you', 'to', 'help', 'me', 'put', 'putumayo', 'outta', 'business', '||period||', '||return||', '||return||', 'kramer:', 'can', 'do', '||period||', '||return||', '||return||', 'jerry:', "what're", 'you', 'doing', 'with', 'a', 'pricing', '||dash||', 'gun', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'place', 'is', 'about', 'to', 'have', 'the', 'sale', 'of', 'the', 'century', '||period||', 'nothing', 'over', 'ninety', '||dash||', 'nine', 'cents', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'still', 'a', 'rip', '||dash||', 'off', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'valerie:', 'jerry', '||comma||', 'i', 'was', 'just', 'at', 'my', "stepmom's", 'house', '||comma||', 'and', 'i', 'saw', 'that', 'you', 'were', 'on', 'her', 'speed', '||dash||', 'dial', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'well', '||comma||', 'she', 'uh', '||comma||', 'probably', 'just', 'wanted', 'to', 'be', 'able', 'to', 'keep', 'tabs', 'on', 'you', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'on', 'a', 'second', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'mrs', 'hamilton:', '||leftparen||', 'seductive', '||rightparen||', 'hi', 'jerome', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'mrs', 'hamilton', '||comma||', 'this', 'is', 'a', 'very', 'bad', 'time', '||period||', "i've", 'got', 'valerie', 'on', 'the', 'other', 'line', '||period||', 'just', 'a', 'second', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'valerie:', "that's", 'her', 'on', 'the', 'other', 'line', '||comma||', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'valerie:', 'tell', 'her', 'i', "don't", 'want', 'you', 'on', 'her', 'speed', '||dash||', 'dial', '||period||', '||return||', '||return||', 'jerry:', 'hang', 'on', '||period||', '||return||', '||return||', 'jerry:', 'she', 'knows', 'about', 'the', 'speed', '||dash||', 'dial', '||period||', 'mrs', 'hamilton', '||comma||', 'you', 'gotta', 'get', 'me', 'off', 'this', 'thing', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', 'i', "won't", '||comma||', 'until', 'she', 'puts', 'me', 'back', 'on', 'hers', '||period||', '||return||', '||return||', 'jerry:', 'hang', 'on', '||period||', '||return||', '||return||', 'jerry:', 'she', 'wants', 'to', 'be', 'back', 'on', 'yours', '||period||', '||return||', '||return||', 'valerie:', 'fine', '||period||', 'but', 'only', 'if', "you're", 'off', 'hers', '||period||', '||return||', '||return||', 'jerry:', 'hang', 'on', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||comma||', 'if', "i'm", 'off', 'yours', '||period||', '||return||', '||return||', 'valerie:', 'no', '||comma||', 'still', 'me', '||period||', '||return||', '||return||', 'jerry:', 'sorry', '||period||', 'hang', 'on', '||period||', '||return||', '||return||', 'jerry:', 'fine', '||comma||', 'if', "i'm", 'off', 'yours', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', 'i', "won't", 'do', 'it', '||period||', "it's", 'my', 'speed', '||dash||', 'dial', '||comma||', 'and', 'i', "don't", 'trust', 'her', '||period||', '||return||', '||return||', 'jerry:', 'please', '||comma||', 'mrs', 'hamilton', '||comma||', 'this', 'is', 'very', 'awkward', 'for', 'me', '||period||', '||return||', '||return||', 'mrs', 'hamilton:', '||leftparen||', 'conspiratorial', '||rightparen||', 'alright', '||period||', "i'll", 'hide', 'you', 'in', 'one', 'of', 'the', 'emergency', 'buttons', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hurried', '||rightparen||', 'great', '||comma||', 'bye', '||period||', '||return||', '||return||', 'jerry:', 'she', 'said', "she'll", 'do', 'it', '||period||', '||return||', '||return||', 'valerie:', 'great', '||period||', '||return||', '||return||', 'jerry:', 'hang', 'on', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||period||', 'i', "can't", 'get', 'fired', '||period||', '||return||', '||return||', 'fan:', 'hey', '||comma||', 'body', '||dash||', 'suit', 'man', '||period||', "'s", 'up', '||questionmark||', '||return||', '||return||', 'fan:', '||leftparen||', 'pointing', '||rightparen||', 'hey', '||comma||', 'body', '||dash||', 'suit', 'man', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||comma||', "i'm", 'h', '||period||', 'e', '||period||', 'pennypacker', '||period||', "i'm", 'a', 'wealthy', 'american', 'industrialist', 'uh', '||comma||', 'looking', 'to', 'open', 'a', 'silver', 'mine', 'in', 'the', 'mountains', 'of', 'peru', 'and', 'uh', '||comma||', 'before', 'i', 'invest', 'millions', 'in', 'a', 'lucrative', 'mine', '||comma||', 'i', '||comma||', "i'd", 'like', 'to', 'go', 'a', 'little', 'native', '||period||', 'uh', '||comma||', 'get', 'the', 'feel', 'of', 'their', 'condiments', '||comma||', 'of', 'their', 'unmentionables', '||comma||', 'you', 'know', '||comma||', 'the', 'real', 'uh', '||comma||', 'gritty', '||dash||', 'gritty', '||period||', '||return||', '||return||', 'gladys:', 'well', '||comma||', 'lemme', 'show', 'you', 'what', 'we', 'have', '||period||', '||return||', '||return||', 'kramer:', 'well', 'uh', '||comma||', 'i', 'think', 'i', 'can', 'just', 'browse', 'around', 'on', 'my', 'own', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 're', 'the', 'chips', '||rightparen||', 'hmm', '||comma||', 'macchu', 'picchu', '||period||', 'are', 'these', 'free', '||questionmark||', '||return||', '||return||', 'gladys:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'hmm', '||dash||', 'mmm', '||period||', '||return||', '||return||', 'gladys:', 'some', 'of', 'those', 'are', "women's", 'clothes', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'not', 'a', 'problem', '||period||', '||return||', '||return||', 'george:', 'attention', 'steinbrenner', 'and', 'front', '||dash||', 'office', 'morons', '||exclammark||', 'your', 'triumphs', 'mean', 'nothing', '||period||', 'you', 'all', 'stink', '||period||', 'you', 'can', 'sit', 'on', 'it', '||comma||', 'and', 'rotate', '||exclammark||', 'this', 'is', 'george', 'costanza', '||period||', 'i', 'fear', 'no', 'reprisal', '||period||', 'extension', 'five', '||dash||', 'one', '||dash||', 'seven', '||dash||', 'oh', '||period||', '||return||', '||return||', 'kramer:', "l'occupado", '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', 'what', 'is', 'taking', 'you', 'so', 'long', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'i', 'broke', 'the', 'price', '||dash||', 'gun', '||comma||', 'so', 'i', 'had', 'to', 'move', 'to', 'plan', 'b', '||period||', '||return||', '||return||', 'elaine:', 'plan', 'b', '||questionmark||', 'there', 'is', 'no', 'plan', 'b', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holds', 'up', 'some', 'small', 'white', 'sachets', '||rightparen||', 'i', 'took', 'these', 'out', 'of', 'every', 'single', 'garment', 'in', 'the', 'store', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', "they're", 'dessicates', '||period||', 'see', '||comma||', 'they', 'absorb', 'moisture', '||period||', '||leftparen||', 'gleeful', '||rightparen||', 'these', 'clothes', "won't", 'last', 'five', 'years', 'without', "'em", '||period||', '||return||', '||return||', 'elaine:', "that's", 'not', 'gonna', 'do', 'anything', '||period||', '||return||', '||return||', 'kramer:', 'patience', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||period||', 'forget', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'have', 'screwed', 'me', 'again', '||comma||', 'pennypacker', '||exclammark||', '||return||', '||return||', 'gladys:', 'ladies', '||comma||', 'care', 'for', 'some', 'chips', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'emerging', 'from', 'the', 'changing', 'room', '||rightparen||', 'well', '||comma||', 'i', "don't", 'mind', 'if', 'i', 'do', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i've", 'uh', '||comma||', "i've", 'changed', 'my', 'mind', '||period||', 'i', 'think', "i'm", 'going', 'to', 'build', 'a', 'rollercoaster', 'instead', '||period||', '||return||', '||return||', 'steinbrenner:', 'i', 'heard', 'what', 'you', 'did', 'in', 'the', 'parking', 'lot', '||comma||', 'big', 'boy', '||comma||', 'and', 'it', 'is', 'in', '||dash||', 'excuse', '||dash||', 'a', '||dash||', 'bull', '||period||', 'you', 'personally', 'insulted', 'me', '||comma||', 'my', 'staff', '||period||', '||period||', '||period||', 'i', 'cannot', 'believe', 'that', 'you', '||comma||', 'body', '||dash||', 'suit', 'man', '||comma||', 'could', 'perpetrate', 'such', 'a', 'disloyalty', '||period||', 'breaks', 'my', 'heart', 'to', 'say', 'it', '||period||', '||period||', '||period||', 'oh', '||comma||', 'who', 'am', 'i', 'kidding', '||questionmark||', 'i', 'love', 'it', '||period||', "you're", 'fi', '||period||', '||period||', '||period||', '||return||', '||return||', 'wilhelm:', 'wait', '||comma||', 'wait', '||comma||', 'mr', 'steinbrenner', '||period||', 'george', "doesn't", 'deserve', 'any', 'of', 'the', 'blame', 'for', 'what', 'happened', 'in', 'the', 'parking', 'lot', 'today', '||comma||', 'sir', '||period||', 'if', "there's", 'anyone', 'to', 'blame', 'here', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'steinbrenner:', "what're", 'you', 'talking', 'about', '||comma||', 'wilhelm', '||period||', 'you', 'popping', 'pills', '||questionmark||', 'you', 'got', 'the', 'crazies', 'again', '||questionmark||', '||return||', '||return||', 'wilhelm:', 'no', '||comma||', 'no', '||period||', 'no', '||comma||', 'no', '||comma||', 'sir', '||period||', 'i', 'ordered', 'george', 'to', 'drive', 'around', 'insulting', 'people', 'today', '||period||', 'because', "i'm", 'tired', 'of', 'all', 'your', 'macho', 'head', 'games', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'agitated', '||rightparen||', "he's", 'lying', '||comma||', 'sir', '||exclammark||', "i'm", 'tired', 'of', 'all', 'your', 'macho', 'head', 'games', '||exclammark||', '||return||', '||return||', 'steinbrenner:', 'macho', 'head', 'games', '||questionmark||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'puts', 'arm', 'round', "george's", 'shoulder', '||rightparen||', "he's", 'just', 'being', 'loyal', 'to', 'me', '||comma||', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'wilhelm', '||comma||', "you're", 'fired', '||period||', 'i', 'owe', 'you', 'an', 'apology', '||comma||', 'body', '||dash||', 'suit', 'man', '||period||', 'streak', 'on', '||period||', '||leftparen||', 'rising', '||rightparen||', 'now', '||comma||', 'if', 'you', "gentlemen'll", 'excuse', 'me', '||comma||', "i'm", 'not', 'going', 'to', 'the', 'game', 'today', '||comma||', "i'm", 'gonna', 'go', 'outside', 'and', 'scalp', 'some', 'tickets', '||period||', '||leftparen||', 'heads', 'toward', 'the', 'door', '||rightparen||', "owner's", 'box', '||comma||', "that's", 'gotta', 'bring', 'in', 'forty', 'bucks', '||comma||', 'no', 'problem', '||period||', '||return||', '||return||', 'george:', 'mr', 'wilhelm', '||comma||', 'what', 'was', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'wilhelm:', 'i', 'wanted', 'to', 'get', 'fired', '||period||', 'george', '||comma||', 'you', 'are', 'looking', 'at', 'the', 'new', 'head', 'scout', 'of', 'the', 'new', 'york', 'mets', '||period||', '||return||', '||return||', 'wilhelm:', '||leftparen||', 'singing', '||rightparen||', 'meet', 'the', 'mets', '||comma||', 'meet', 'the', 'mets', '||period||', 'come', 'right', 'out', 'and', 'greet', 'the', 'mets', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', 'what', 'elaine', 'is', 'so', 'upset', 'about', '||period||', 'i', 'mean', '||comma||', 'without', 'dessicates', '||comma||', 'those', "clothes'll", 'be', 'noticeably', 'musty', 'in', 'five', 'years', '||period||', '||return||', '||return||', 'jerry:', 'she', 'never', 'sees', 'the', 'big', 'picture', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'newman', '||exclammark||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', '||leftparen||', 'to', 'kramer', '||rightparen||', 'what', 'did', 'you', 'say', 'to', 'elaine', '||questionmark||', 'i', 'just', 'got', 'her', 'cancellation', 'in', 'the', 'mail', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', 'i', 'guess', 'she', 'found', 'some', 'place', 'better', 'to', 'go', '||period||', '||return||', '||return||', 'newman:', 'well', '||comma||', "it's", 'her', 'mistake', '||period||', 'because', 'she', 'is', 'going', 'to', 'miss', 'the', 'party', 'of', 'a', 'lifetime', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', 'so', '||comma||', 'but', 'come', 'midnight', '||comma||', 'when', "she's", 'looking', 'for', 'someone', 'warm', 'and', 'cuddly', 'to', 'kiss', '||comma||', 'i', 'guess', "you'll", 'be', 'caught', 'between', 'the', 'moon', 'and', 'new', 'york', 'city', '||period||', '||return||', '||return||', 'newman:', 'alright', '||period||', 'come', 'back', 'to', 'my', 'party', '||comma||', 'please', '||period||', '||return||', '||return||', 'kramer:', 'jerry', 'too', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'reluctant', '||rightparen||', 'you', "don't", 'wanna', 'do', 'your', '||period||', '||period||', '||period||', 'act', '||comma||', 'or', 'anything', '||comma||', 'do', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'newman:', 'alright', 'then', '||comma||', 'i', 'guess', 'i', 'can', 'accept', 'a', 'little', 'jerry', '||comma||', 'if', 'it', 'gets', 'me', 'a', '||leftparen||', 'suggestive', '||rightparen||', 'lot', 'of', 'elaine', '||period||', '||return||', '||return||', 'kramer:', 'deal', '||questionmark||', '||return||', '||return||', 'newman:', 'to', 'the', 'newmanniun', '||exclammark||', '||leftparen||', 'holds', 'out', 'his', 'hand', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'grasps', "newman's", 'hand', '||rightparen||', 'to', 'the', 'kramennium', '||period||', '||return||', '||return||', 'jerry:', 'by', 'the', 'way', 'newman', '||comma||', "i'm", 'just', 'curious', '||period||', 'when', 'you', 'booked', 'the', 'hotel', '||comma||', 'did', 'you', 'book', 'it', 'for', 'the', 'millennium', 'new', 'year', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'smug', '||rightparen||', 'as', 'a', 'matter', 'of', 'fact', '||comma||', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'interesting', '||comma||', 'because', 'as', 'everyone', 'knows', '||comma||', 'since', 'there', 'was', 'no', 'year', 'zero', '||comma||', 'the', 'millennium', "doesn't", 'begin', 'until', 'the', 'year', 'two', '||dash||', 'thousand', 'and', 'one', '||period||', 'which', 'would', 'make', 'your', 'party', '||comma||', 'one', 'year', 'late', '||comma||', 'and', 'thus', '||comma||', 'quite', 'lame', '||period||', '||return||', '||return||', 'jerry:', 'aww', '||exclammark||', '||return||', '||return||', 'mrs', 'hamilton:', 'i', "don't", 'feel', 'well', 'at', 'all', '||period||', 'i', 'feel', 'all', 'dried', '||dash||', 'out', 'inside', '||period||', '||return||', '||return||', 'valerie:', "i'll", 'call', 'for', 'help', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'valerie:', "who's", 'this', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'jerry', '||period||', "who's", 'this', '||questionmark||', '||return||', '||return||', 'valerie:', 'uh', '||comma||', "it's", 'valerie', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', 'valerie', '||period||', "what's", 'up', '||questionmark||', '||return||', '||return||', 'valerie:', "i'll", 'tell', 'you', "what's", 'up', '||period||', 'my', 'stepmother', 'is', 'violently', 'ill', '||comma||', 'so', 'i', 'hit', 'the', 'button', 'for', 'poison', 'control', 'and', 'i', 'get', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'wow', '||comma||', 'poison', 'control', '||questionmark||', "that's", 'even', 'higher', 'than', 'number', 'one', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hang', 'on', 'just', 'let', 'me', 'pick', 'up', 'a', 'paper', '||period||', '||return||', '||return||', 'man:', 'excuse', 'me', '||period||', 'would', 'you', 'mind', 'watching', 'my', 'bag', 'for', 'a', 'minute', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'no', 'problem', '||period||', '||return||', '||return||', 'jerry:', "let's", 'go', '||period||', '||return||', '||return||', 'george:', 'woah', '||comma||', 'i', 'gotta', 'watch', 'this', "guy's", 'bag', '||period||', '||return||', '||return||', 'jerry:', 'for', 'how', 'long', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'sure', "he'll", 'be', 'back', 'in', 'a', 'second', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', 'sir', '||period||', 'would', 'you', 'mind', 'watching', 'my', 'bag', 'for', 'a', 'minute', '||questionmark||', '||return||', '||return||', 'man', '2:', 'why', '||questionmark||', 'so', 'i', 'can', 'stand', 'here', 'like', 'an', 'idiot', 'not', 'knowing', 'if', "you'll", 'ever', 'come', 'back', '||questionmark||', '||return||', '||return||', 'george:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'going', 'to', 'be', 'this', "guy's", 'friend', '||period||', '||return||', '||return||', 'jerry:', 'new', 'clothes', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'i', 'did', 'some', 'shopping', '||period||', 'some', 'new', 'clothes', 'shopping', '||period||', '||leftparen||', 'turns', 'to', 'a', 'man', '||rightparen||', 'can', 'i', 'borrow', 'your', 'menu', '||questionmark||', '||return||', '||return||', 'jerry:', 'strange', '||period||', 'for', 'new', 'pants', '||comma||', "there's", 'noticable', 'wear', 'on', 'the', 'buttocks', 'of', 'those', 'chinos', '||period||', 'wait', 'those', 'are', 'the', 'clothes', 'from', 'the', 'bag', '||exclammark||', '||return||', '||return||', 'george:', 'the', 'guy', 'never', 'came', 'back', '||period||', '||return||', '||return||', 'jerry:', 'he', 'asked', 'you', 'to', 'watch', 'them', 'not', 'wear', 'them', '||period||', '||return||', '||return||', 'george:', "i'm", 'still', 'watching', 'them', '||period||', '||return||', '||return||', 'jerry:', 'you', 'look', 'like', 'a', 'tourist', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'let', 'me', 'ask', 'you', 'something', 'when', 'do', 'you', 'start', 'to', 'worry', 'about', 'ear', 'hair', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'you', 'hear', 'like', 'a', 'soft', 'russeling', '||period||', '||return||', '||return||', 'george:', "it's", 'like', 'puberty', 'that', 'never', 'stops', '||period||', 'ear', 'puberty', '||comma||', 'nose', 'puberty', '||comma||', 'knuckle', 'puberty', '||comma||', 'you', 'gotta', 'be', 'vigilent', '||period||', 'let', 'me', 'ask', 'you', 'this', 'do', 'you', 'know', 'where', 'walker', 'street', 'is', 'downtown', '||questionmark||', "i've", 'got', 'a', 'league', 'meeting', 'there', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'right', '||comma||', 'the', 'new', 'job', '||comma||', 'how', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'love', 'it', '||period||', 'new', 'office', '||comma||', 'new', 'salary', '||period||', "i'm", 'the', 'new', 'wilhelm', '||period||', '||return||', '||return||', 'jerry:', 'so', "who's", 'the', 'new', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'got', 'a', 'new', 'intern', 'from', 'francis', 'louis', 'high', '||period||', 'his', 'name', 'is', 'keith', '||period||', 'he', 'comes', 'in', 'mondays', 'after', 'school', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'hi', 'alex', '||period||', '||return||', '||return||', 'alex:', "i'm", 'sorry', "i'm", 'late', '||period||', 'have', 'you', 'ordered', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'alex:', "i'll", 'be', 'right', 'back', '||period||', '||return||', '||return||', 'george:', 'where', 'are', 'you', 'meeting', 'these', 'women', '||questionmark||', 'when', 'they', 'get', 'off', 'the', 'bus', 'at', 'the', 'port', 'authority', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', 'here', '||comma||', 'george', '||period||', 'in', 'here', '||period||', '||leftparen||', 'pointing', 'to', 'his', 'chest', '||rightparen||', 'try', 'opening', 'this', 'up', '||period||', "you'll", 'find', 'the', 'biggest', 'dating', 'scene', 'in', 'the', 'world', '||period||', '||return||', '||return||', 'george:', 'thanks', '||period||', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hi', '||period||', '||return||', '||return||', 'elaine:', "where's", 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "he's", 'in', 'the', 'shower', '||period||', 'you', 'want', 'me', 'to', 'get', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', 'no', '||period||', 'actually', 'i', 'kind', 'of', 'need', 'to', 'speak', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'well', "let's", 'sit', 'down', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'ahem', '||comma||', 'remember', 'that', 'whole', 'deal', 'with', 'you', 'selling', 'peterman', 'your', 'stories', 'for', 'his', 'book', 'and', 'then', 'he', 'gave', 'them', 'back', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'vaguely', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', 'was', 'kind', 'of', '||comma||', 'hehehe', '||comma||', 'short', 'on', 'material', 'and', 'i', '||comma||', 'um', '||comma||', 'i', 'put', 'them', 'in', 'the', 'book', 'anyway', '||period||', '||return||', '||return||', 'kramer:', 'you', 'put', 'my', "life's", 'stories', 'in', 'his', 'autobiography', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', 'listen', '||comma||', 'it', 'is', 'such', 'a', 'stupid', 'book', '||period||', 'it', "doesn't", 'matter', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'no', '||period||', 'sure', '||period||', 'it', 'matters', '||period||', 'wow', '||period||', "i've", 'broken', 'through', '||comma||', 'huh', '||period||', "i'm", 'part', 'of', 'popular', 'culture', 'now', '||period||', 'listen', "i've", 'got', 'to', 'thank', 'mr', '||period||', 'peterman', '||period||', '||return||', '||return||', 'elaine:', "he's", 'doing', 'a', 'book', 'signing', 'at', 'waldenbooks', 'this', 'afternoon', '||period||', '||return||', '||return||', 'kramer:', 'waldenbooks', '||questionmark||', "that's", 'a', 'major', 'chain', 'huh', '||period||', '||return||', '||return||', 'kramer:', 'he', 'jerry', '||comma||', "i'm", 'going', 'to', 'waldenbooks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'yelling', '||rightparen||', 'get', 'out', '||exclammark||', 'get', 'out', '||exclammark||', 'i', "don't", 'want', 'to', 'live', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'lippman', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'well', "i'm", 'not', 'bad', '||period||', 'not', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'i', 'work', 'for', 'pundant', 'publishishing', '||period||', 'this', 'is', 'our', 'book', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'if', 'you', 'can', 'call', 'it', 'that', '||period||', 'why', 'is', 'it', 'every', 'half', '||dash||', 'wit', 'and', 'sitcom', 'star', 'has', 'his', 'own', 'book', 'out', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||period||', 'remember', 'me', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'peterman:', "you're", 'that', 'gangly', 'fellow', 'we', 'bought', 'the', 'stories', 'from', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'm", 'just', 'here', 'to', 'do', 'my', 'part', '||period||', "what's", 'your', 'name', 'darling', '||questionmark||', '||return||', '||return||', 'woman:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'the', 'real', 'peterman', '||period||', '||return||', '||return||', 'mr', '||period||', 'peterman:', 'all', 'right', "playtime's", 'over', '||period||', '||return||', '||return||', 'kramer:', 'relax', 'man', '||period||', "there's", 'enough', 'juice', 'here', 'to', 'keep', 'us', 'all', 'fat', 'and', 'giggley', '||period||', '||return||', '||return||', 'woman:', 'i', "can't", 'believe', 'somebody', 'pulled', 'the', 'top', 'off', 'of', 'this', 'muffin', '||period||', '||return||', '||return||', 'elaine:', 'that', 'was', 'me', '||period||', "i'm", 'sorry', '||period||', 'i', "don't", 'like', 'the', 'stumps', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'so', 'you', 'just', 'eat', 'the', 'tops', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||period||', "it's", 'the', 'best', 'part', '||period||', "it's", 'crunchy', '||comma||', "it's", 'explosive', '||comma||', "it's", 'where', 'the', 'muffin', 'breaks', 'free', 'of', 'the', 'pan', 'and', 'sort', 'of', '||leftparen||', 'makes', 'hand', 'motions', '||rightparen||', 'does', "it's", 'own', 'thing', '||period||', "i'll", 'tell', 'you', '||period||', "that's", 'a', 'million', 'dollor', 'idea', 'right', 'there', '||period||', 'just', 'sell', 'the', 'tops', '||period||', '||return||', '||return||', 'kramer:', 'i', 'have', 'a', 'right', 'to', 'be', 'here', '||period||', 'these', 'are', 'my', 'fans', '||period||', 'hey', "you're", 'hurting', 'my', 'elbow', '||period||', '||return||', '||return||', 'man', '1:', 'try', 'looking', 'up', 'hayseed', '||period||', '||return||', '||return||', 'man', '2:', 'you', 'wanna', 'sightsee', '||questionmark||', 'get', 'on', 'a', 'bus', '||period||', '||return||', '||return||', 'mary', 'anne:', 'please', "don't", 'think', 'all', 'new', 'yorkers', 'are', 'so', 'rude', '||period||', '||return||', '||return||', 'george:', 'well', 'actually', "i'm", '||period||', '||period||', '||period||', '||return||', '||return||', 'mary', 'anne:', "i'm", 'mary', 'anne', '||period||', 'i', 'work', 'for', 'the', 'new', 'york', "visitor's", 'center', '||period||', 'where', 'are', 'you', 'visiting', 'from', '||questionmark||', '||return||', '||return||', 'george:', 'little', 'rock', '||comma||', 'arkensas', '||period||', '||return||', '||return||', 'mary', 'anne:', 'ooh', '||period||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', 'that', 'looks', 'new', '||period||', '||return||', '||return||', 'kramer:', 'so', 'get', 'this', '||period||', 'peterman', 'has', 'his', 'henchmen', 'forcefully', 'eject', 'me', 'from', 'the', 'book', 'signing', 'like', "i'm", 'some', 'kind', 'of', 'a', 'maniac', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'uncomfortably', '||rightparen||', 'yeah', "that's", 'too', 'bad', '||period||', '||return||', '||return||', 'kramer:', "what's", 'the', 'matter', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'uncomfortably', '||rightparen||', 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "don't", 'give', 'me', 'that', '||period||', 'i', 'know', 'you', '||period||', "something's", 'wrong', '||period||', 'what', 'is', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'did', 'something', 'stupid', '||period||', '||return||', '||return||', 'kramer:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'was', 'shaving', '||period||', 'and', 'i', 'noticed', 'an', 'asymmetry', 'in', 'my', 'chest', 'hair', 'and', 'i', 'was', 'trying', 'to', 'even', 'it', 'out', '||period||', 'next', 'thing', 'i', 'knew', '||comma||', '||leftparen||', 'high', 'pitched', 'voice', '||rightparen||', 'gone', '||period||', '||return||', '||return||', 'kramer:', "don't", 'you', 'know', "you're", 'not', 'supposed', 'to', 'poke', 'around', 'down', 'there', '||period||', '||return||', '||return||', 'jerry:', 'well', 'women', 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'high', 'pitched', 'voice', '||rightparen||', '||quotemark||', 'well', 'women', 'do', 'it', '||period||', '||quotemark||', "i'll", 'tell', 'you', 'what', '||period||', "i'll", 'pick', 'you', 'up', 'a', 'sundress', 'and', 'a', 'parasol', 'and', 'you', 'can', 'just', '||leftparen||', 'high', 'pitched', 'voice', '||rightparen||', 'sashey', 'your', 'pretty', 'little', 'self', 'around', 'the', 'town', 'square', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'am', 'i', 'going', 'to', 'tell', 'alex', '||questionmark||', '||return||', '||return||', 'kramer:', 'listen', 'to', 'me', '||period||', 'you', "don't", 'tell', 'anybody', 'about', 'this', '||period||', 'no', 'one', '||period||', 'you', 'hear', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'um', 'hum', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', 'shaved', 'his', 'chest', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'forgot', '||period||', 'wait', '||period||', 'never', 'mind', '||period||', '||return||', '||return||', 'alex:', 'how', 'about', 'the', 'beach', 'this', 'weekend', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "couldn't", 'pay', 'me', 'enough', 'to', 'go', 'to', 'the', 'beach', 'on', 'a', 'weekend', '||period||', 'i', 'mean', "it's", 'hard', 'enough', '||period||', '||period||', '||period||', '||return||', '||return||', 'alex:', 'all', 'right', '||period||', 'all', 'right', '||period||', 'wow', 'is', 'that', 'a', 'mexican', 'hairless', '||questionmark||', 'oh', '||comma||', 'i', 'love', 'those', '||period||', 'ooh', '||comma||', 'hairless', '||period||', 'this', 'is', 'where', "it's", 'at', '||period||', "it's", 'so', 'much', 'smoother', 'and', 'cleaner', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'elaine:', '||quotemark||', 'top', 'of', 'the', 'muffin', 'to', 'you', '||exclammark||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'top', 'of', 'the', 'muffin', 'to', 'you', '||period||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'mr', 'lippman', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', "you're", 'pretending', 'to', 'be', 'a', 'tourist', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'beautiful', '||period||', 'she', 'makes', 'all', 'the', 'plans', '||period||', "i'm", 'not', 'from', 'around', 'here', 'so', "it's", 'okay', 'if', "i'm", 'stupid', '||comma||', 'and', 'she', 'knows', "i'm", 'only', 'in', 'town', 'visiting', 'so', "there's", 'no', 'messy', 'breakup', '||return||', '||return||', 'jerry:', 'how', 'do', 'you', 'explain', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'hotel', 'room', '||period||', '||return||', '||return||', 'jerry:', 'you', 'moved', 'into', 'a', 'hotel', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', "don't", 'know', 'anyone', 'here', 'jerry', '||period||', 'where', 'else', 'am', 'i', 'going', 'to', 'stay', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'get', 'this', "we're", 'in', 'the', 'park', 'today', 'alex', 'goes', 'wild', 'for', 'this', 'hairless', 'dog', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||period||', 'i', 'figure', 'since', 'she', 'likes', 'one', 'hairless', 'animal', 'why', 'not', 'another', '||period||', '||return||', '||return||', 'george:', 'oh', 'really', '||period||', 'you', 'tell', 'her', 'you', 'shaved', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'nuts', '||questionmark||', 'i', "don't", 'want', 'her', 'to', 'think', "i'm", 'one', 'of', 'those', 'low', '||dash||', 'rise', 'briefs', 'guys', 'who', 'shaves', 'his', 'chest', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yelling', 'up', 'at', 'jerry', '||rightparen||', 'hey', 'jerry', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'yelling', '||rightparen||', "i'm", 'starting', 'a', 'peterman', 'reality', 'bus', 'tour', '||period||', 'check', 'it', 'out', '||period||', 'hahaha', '||period||', '||return||', '||return||', 'george:', 'reality', 'tour', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'last', 'thing', 'this', "guy's", 'qualified', 'to', 'give', 'a', 'tour', 'of', 'is', 'reality', '||period||', '||return||', '||return||', 'elaine:', 'this', 'was', 'my', 'idea', 'you', 'stole', 'my', 'idea', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'elaine', 'these', 'ideas', 'are', 'all', 'in', 'the', 'air', '||period||', "they're", 'in', 'the', 'air', '||period||', '||return||', '||return||', 'elaine:', 'well', 'if', 'that', 'air', 'is', 'comming', 'out', 'of', 'this', 'face', 'then', 'it', 'is', 'my', 'air', 'and', 'my', 'idea', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'you', 'want', 'a', 'muffin', 'or', 'not', '||questionmark||', '||return||', '||return||', 'elaine:', 'peach', '||period||', '||return||', '||return||', 'mary', 'anne:', 'so', 'i', 'notice', 'you', "don't", 'have', 'much', 'of', 'an', 'accent', '||period||', '||return||', '||return||', 'george:', 'yeah', 'my', 'parents', 'have', 'it', '||period||', 'sometimes', 'it', 'skips', 'a', 'generation', '||period||', '||return||', '||return||', 'mary', 'anne:', 'look', 'george', '||comma||', "i'm", 'really', 'enjoying', 'spending', 'time', 'with', 'you', 'but', "i'm", 'not', 'sure', 'this', 'is', 'going', 'to', 'work', 'out', '||period||', 'at', 'some', 'point', "you're", 'going', 'back', 'to', 'your', 'job', 'at', 'tyler', 'chicken', 'and', 'your', 'three', '||dash||', 'legged', 'dog', 'willie', '||period||', '||return||', '||return||', 'george:', 'willie', '||period||', 'yeah', '||period||', '||return||', '||return||', 'mary', 'anne:', 'and', "i'm", 'still', 'going', 'to', 'be', 'here', '||period||', '||return||', '||return||', 'george:', 'well', 'what', 'if', 'i', 'told', 'you', "i'm", 'thinking', 'of', 'moving', 'here', '||questionmark||', '||return||', '||return||', 'mary', 'anne:', '||leftparen||', 'laughs', '||rightparen||', 'george', '||comma||', 'no', 'offense', '||period||', 'but', 'this', 'city', 'would', 'eat', 'you', 'alive', '||period||', '||return||', '||return||', 'jerry:', "you're", 'moving', 'to', 'new', 'york', '||questionmark||', "that's", 'fantastic', '||period||', 'i', 'can', 'see', 'you', 'all', 'the', 'time', 'now', '||period||', '||return||', '||return||', 'george:', 'eat', 'me', 'alive', '||comma||', 'huh', '||questionmark||', "we'll", 'see', 'who', 'can', 'make', 'it', 'in', '*this*', 'town', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'it', 'she', 'think', 'you', "can't", 'do', '||questionmark||', '||return||', '||return||', 'george:', 'find', 'a', 'job', '||period||', 'get', 'an', 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'do', 'those', 'things', '||questionmark||', '||return||', '||return||', 'george:', 'never', 'mind', '||period||', "the're", 'done', '||period||', 'all', 'i', 'have', 'to', 'do', 'now', 'is', 'redo', 'them', '||period||', 'you', 'know', 'if', 'you', 'take', 'everything', "i've", 'ever', 'done', 'in', 'my', 'entire', 'life', 'and', 'condense', 'it', 'down', 'into', 'one', 'day', '||comma||', 'it', 'looks', 'decent', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'were', 'you', 'doing', 'with', 'that', 'bus', 'yesterday', '||questionmark||', '||return||', '||return||', 'kramer:', 'here', 'you', 'go', '||comma||', 'here', 'you', 'go', '||comma||', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'the', 'real', 'peterman', 'reality', 'bus', 'tour', '||quotemark||', '||period||', "i'm", 'confused', '||period||', '||return||', '||return||', 'kramer:', "peterman's", 'book', 'is', 'big', 'business', '||period||', 'people', 'want', 'to', 'know', 'the', 'stories', 'behind', 'the', 'stories', '||period||', '||return||', '||return||', 'jerry:', 'nobody', 'wants', 'to', 'go', 'on', 'a', 'three', 'hour', 'bus', 'tour', 'of', 'a', 'totally', 'unknown', "person's", 'life', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'only', 'charging', '$37', '||period||', '50', '||comma||', 'plus', 'you', 'get', 'a', 'pizza', 'bagel', 'and', 'desert', '||period||', '||return||', '||return||', 'george:', "what's", 'desert', '||questionmark||', '||return||', '||return||', 'kramer:', 'bite', '||dash||', 'size', 'three', 'musketeers', '||period||', 'just', 'like', 'the', 'real', 'peterman', 'eats', '||period||', '||return||', '||return||', 'george:', 'he', 'eats', 'those', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'i', 'eat', 'those', '||period||', "i'm", 'the', 'real', 'peterman', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'understand', 'this', '||period||', 'jay', 'peterman', 'is', 'real', '||period||', 'his', 'biography', 'is', 'not', '||period||', 'now', '||comma||', 'you', 'kramer', 'are', 'real', '||period||', '||return||', '||return||', 'kramer:', 'talk', 'to', 'me', '||period||', '||return||', '||return||', 'george:', 'but', 'your', 'life', 'is', "peterman's", '||period||', 'now', 'the', 'bus', 'tour', '||comma||', 'which', 'is', 'real', '||comma||', 'takes', 'to', 'places', 'that', '||comma||', 'while', 'they', 'are', 'real', '||comma||', 'they', 'are', 'not', 'real', 'in', 'sense', 'that', 'they', 'did', 'not', '*really*', 'happen', 'to', 'the', '*real*', 'peterman', 'which', 'is', 'you', '||period||', '||return||', '||return||', 'kramer:', 'understand', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '$37', '||period||', '50', 'for', 'a', 'three', 'musketeers', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'elaine', '||period||', "i'm", 'in', 'over', 'my', 'head', '||period||', 'nobody', 'likes', 'my', 'muffin', 'tops', '||period||', '||return||', '||return||', 'elaine:', 'so', '||questionmark||', 'what', 'do', 'you', 'want', 'me', 'to', 'do', 'about', 'it', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', "you're", 'the', 'muffin', 'top', 'expert', '||comma||', 'tell', 'me', 'what', "i'm", 'doing', 'wrong', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'lippman', '||comma||', 'when', 'i', 'worked', 'for', 'you', 'at', 'pendent', 'publishing', '||comma||', 'i', 'believed', 'in', 'you', '||comma||', 'you', 'know', 'as', 'a', 'man', 'of', 'integrity', '||period||', 'but', '||comma||', 'i', 'saw', 'you', 'in', 'that', 'paper', 'hat', 'and', 'that', 'aprin', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'what', 'if', 'i', 'cut', 'you', 'in', 'for', '30%', 'of', 'the', 'profits', '||questionmark||', '||return||', '||return||', 'elaine:', 'deal', '||period||', "here's", 'your', 'problem', '||period||', "you're", 'making', 'just', 'the', 'muffin', 'tops', '||period||', "you've", 'gotta', 'make', 'the', '*whole*', 'muffin', '||period||', 'then', 'you', '||period||', '||period||', '||period||', 'pop', 'the', 'top', '||comma||', 'toss', 'the', 'stump', '||period||', 'taste', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'ah', '||period||', '||leftparen||', 'takes', 'a', 'bite', 'of', 'the', 'top', '||period||', '||rightparen||', 'mmmmm', '||period||', 'ah', 'hah', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'so', 'what', 'do', 'we', 'with', 'the', 'bottoms', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'give', 'em', 'to', 'a', 'soup', 'kitchen', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', "that's", 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'elaine:', 'and', 'one', 'more', 'thing', '||comma||', 'you', 'really', 'think', 'we', 'need', 'the', 'exclamation', 'point', '||questionmark||', 'because', '||comma||', "it's", 'not', '||quotemark||', 'top', 'of', 'the', 'muffin', '*to', 'you', '||exclammark||', '||exclammark||', '||exclammark||', '*', '||quotemark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'no', '||period||', 'no', '||period||', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||period||', 'what', 'is', 'this', '||questionmark||', 'lady', 'gillette', '||questionmark||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', "can't", 'i', 'get', 'a', "moment's", 'peace', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'are', 'you', 'doing', 'to', 'yourself', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'stop', '||period||', 'alex', 'thinks', "i'm", 'naturally', 'hairless', '||period||', '||return||', '||return||', 'kramer:', 'you', "can't", 'keep', 'this', 'up', '||period||', "don't", 'you', 'know', "what's", 'going', 'to', 'happen', '||questionmark||', 'everytime', 'you', 'shave', 'it', '||comma||', "it's", 'going', 'to', 'come', 'in', 'thicker', 'and', 'fuller', 'and', 'darker', '||period||', '||return||', '||return||', 'jerry:', 'oh', "that's", 'an', 'old', 'wives', 'tale', '||period||', '||return||', '||return||', 'kramer:', 'is', 'it', '||questionmark||', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'high', 'pitched', 'voice', '||rightparen||', 'look', 'at', 'it', '||exclammark||', 'look', 'at', 'it', '||exclammark||', 'and', "it's", 'all', 'me', '||period||', 'i', 'shaved', 'there', 'when', 'i', 'was', 'a', 'lifeguard', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'come', 'on', '||period||', "that's", 'genetics', '||period||', "that's", 'not', 'going', 'to', 'happen', 'to', 'me', '||period||', '||return||', '||return||', 'kramer:', "won't", 'it', '||questionmark||', 'or', 'is', 'it', 'already', 'starting', 'to', 'happen', '||questionmark||', '||return||', '||return||', 'elaine:', 'wow', '||period||', 'look', 'at', 'this', '||period||', "we're", 'cleaning', 'up', '||period||', '||return||', '||return||', 'lippman:', 'oh', '||comma||', 'rubin', '||comma||', 'get', 'me', 'another', 'tray', 'of', 'lowfat', 'cranberry', '||period||', '||return||', '||return||', 'rebecca:', 'excuse', 'me', '||comma||', "i'm", 'rebecca', 'demore', 'from', 'the', 'homeless', 'shelter', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'rebecca:', 'are', 'you', 'the', 'ones', 'leaveing', 'the', 'muffing', 'pieces', 'behind', 'our', 'shelter', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'been', 'enjoying', 'them', '||questionmark||', '||return||', '||return||', 'rebecca:', "they're", 'just', 'stumps', '||period||', '||return||', '||return||', 'elaine:', 'well', "they're", 'perfectly', 'edible', '||period||', '||return||', '||return||', 'rebecca:', 'oh', '||comma||', 'so', 'you', 'just', 'assume', 'that', 'the', 'homeless', 'will', 'eat', 'them', '||comma||', "they'll", 'eat', 'anything', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'no', 'no', '||comma||', 'we', 'just', 'thought', '||period||', '||period||', '||period||', '||return||', '||return||', 'rebecca:', 'i', 'know', 'what', 'you', 'thought', '||period||', 'they', "don't", 'have', 'homes', '||comma||', 'they', "don't", 'have', 'jobs', '||comma||', 'what', 'do', 'they', 'need', 'the', 'top', 'of', 'a', 'muffin', 'for', '||questionmark||', "they're", 'lucky', 'to', 'get', 'the', 'stumps', '||period||', '||return||', '||return||', 'elaine:', 'if', 'the', 'homeless', "don't", 'like', 'them', 'the', 'homeless', "don't", 'have', 'to', 'eat', 'them', '||period||', '||return||', '||return||', 'rebecca:', 'the', 'homeless', "don't", 'like', 'them', '||period||', '||return||', '||return||', 'elaine:', 'fine', '||period||', '||return||', '||return||', 'rebecca:', "we've", 'never', 'gotten', 'so', 'many', 'complaints', '||period||', 'every', 'two', 'minutes', '||comma||', '||quotemark||', 'where', 'is', 'the', 'top', 'of', 'this', 'muffin', '||questionmark||', 'who', 'ate', 'the', 'rest', 'of', 'this', '||questionmark||', '||quotemark||', '||return||', '||return||', 'elaine:', 'we', 'were', 'just', 'trying', 'to', 'help', '||period||', '||return||', '||return||', 'rebecca:', 'why', "don't", 'you', 'just', 'drop', 'off', 'some', 'chicken', 'skins', 'and', 'lobster', 'shells', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', 'i', 'might', '||period||', '||return||', '||return||', 'mary', 'anne:', 'i', "can't", 'believe', 'you', 'found', 'something', 'so', 'quickly', '||period||', 'how', 'much', 'you', 'pay', '||questionmark||', '||return||', '||return||', 'george:', '$2300', '||period||', '||return||', '||return||', 'mary', 'anne:', 'ouch', '||period||', 'a', 'month', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'mary', 'anne:', 'well', '||comma||', 'guess', "that's", 'all', 'right', 'for', 'now', '||comma||', 'but', 'if', 'you', 'say', 'here', 'for', 'more', 'than', 'a', 'few', 'months', '||comma||', "you're", 'a', 'real', 'sucker', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', 'i', 'uh', 'got', 'lots', 'of', 'other', 'stuff', 'to', 'show', 'you', 'too', '||period||', 'wait', 'till', 'you', 'see', 'the', 'plum', 'job', 'that', 'i', 'landed', '||period||', '||return||', '||return||', 'mary', 'anne:', 'yeah', '||period||', 'we', 'should', 'let', 'this', 'place', 'air', 'out', 'anyway', '||period||', 'it', 'smells', 'like', 'the', 'last', 'tenant', 'had', 'monkeys', 'or', 'something', '||period||', '||return||', '||return||', 'kramer:', 'comming', 'up', 'on', 'the', 'right', '||comma||', 'if', 'you', 'glance', 'up', 'you', 'can', 'just', 'make', 'out', 'my', 'bedroom', 'window', '||period||', "it's", 'the', 'one', "that's", 'covered', 'in', 'chicken', 'wire', '||period||', '||return||', '||return||', 'woman:', 'hey', 'if', "you're", 'the', 'real', 'peterman', '||comma||', 'who', 'come', "you're", 'wearing', 'those', 'ratty', 'clothes', '||questionmark||', "the're", 'not', 'very', 'romantic', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', 'well', "that's", 'your', 'opinion', '||period||', '||return||', '||return||', 'man', '1:', 'can', 'i', 'have', 'another', 'three', 'musketeers', '||questionmark||', "they're", 'rather', 'small', '||period||', '||return||', '||return||', 'kramer:', 'forget', 'it', '||period||', 'okay', "newman's", 'postal', 'route', 'is', 'around', 'here', 'somewhere', '||period||', '||return||', '||return||', 'man', '2:', "who's", 'newman', '||questionmark||', '||return||', '||return||', 'man', '3:', 'who', 'cares', '||period||', '||return||', '||return||', 'man', '4:', 'hey', 'fake', 'peterman', '||comma||', 'let', 'me', 'off', '||period||', "i'm", 'nautious', '||period||', '||return||', '||return||', 'man', '1:', 'can', 'i', 'have', 'his', 'candy', 'bar', '||questionmark||', '||return||', '||return||', 'kramer:', 'ahh', '||period||', 'everyone', 'just', 'settle', 'down', '||period||', 'we', 'have', 'three', 'hours', 'left', 'on', 'this', 'thing', '||comma||', 'and', 'i', "can't", 'drive', 'and', 'argue', 'with', 'you', 'rubes', 'all', 'at', 'the', 'same', 'time', '||period||', 'okay', '||period||', "lomez's", 'place', 'of', 'worship', 'is', 'right', 'on', 'the', 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'why', 'do', 'i', 'have', 'to', 'go', 'on', 'the', 'tour', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', "you're", 'a', 'minor', 'celebrity', '||period||', 'if', 'you', 'go', 'on', 'this', 'thing', '||comma||', 'it', 'could', 'create', 'a', 'minor', 'stir', '||period||', 'bring', 'that', 'girlfriend', 'of', 'your', 'and', "i'll", 'only', 'charge', 'to', '60', 'bucks', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "how's", 'business', '||questionmark||', '||return||', '||return||', 'elaine:', 'ooh', '||comma||', "i've", 'got', 'stump', 'troubles', '||period||', 'the', 'sanitation', 'department', "won't", 'get', 'rid', 'of', 'them', 'all', '||comma||', 'i', "can't", 'get', 'a', 'truck', 'to', 'haul', 'this', 'stuff', 'until', 'next', 'week', '||period||', 'meanwhile', '||comma||', "i'm", 'sitting', 'on', 'a', 'mountain', 'of', 'stumps', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i've", 'got', 'to', 'hose', 'the', 'puke', 'off', 'the', 'floor', 'of', 'the', 'bus', '||period||', '||return||', '||return||', 'elaine:', 'bus', '||questionmark||', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||comma||', 'bus', '||questionmark||', "you've", 'got', 'a', 'bus', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'any', 'room', 'on', 'that', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'there', 'are', 'a', 'few', 'seats', 'still', 'available', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'think', 'you', 'could', 'transport', 'some', 'stumps', 'for', 'me', '||questionmark||', "i'll", 'make', 'it', 'worth', 'your', 'while', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'if', 'they', "don't", 'mind', 'sitting', 'in', 'the', 'back', '||period||', '||return||', '||return||', 'elaine:', 'no', 'they', "don't", '||period||', '||return||', '||return||', 'kramer:', 'are', 'they', 'war', 'veterans', '||questionmark||', '||return||', '||return||', 'mary', 'anne:', 'wow', 'this', 'is', 'your', 'office', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'woah', '||period||', 'hello', '||period||', 'sorry', 'george', '||comma||', "didn't", 'know', 'you', 'got', 'a', 'girl', 'in', 'here', '||period||', 'give', 'me', 'a', 'signal', 'on', 'the', 'doornob', 'like', 'a', 'necktie', 'or', 'a', 'sock', 'or', 'something', '||period||', 'come', 'on', 'george', '||comma||', 'help', 'me', 'out', '||period||', '||return||', '||return||', 'mary', 'anne:', 'mr', '||period||', 'steinbrenner', '||comma||', 'i', 'would', 'like', 'to', 'thank', 'you', 'for', 'taking', 'a', 'chance', 'on', 'a', 'hen', 'supervisor', 'at', 'tyler', 'chicken', 'like', 'our', 'boy', 'george', 'here', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'hen', 'supervisor', 'from', 'tyler', 'chicken', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'very', 'nice', 'to', 'have', 'had', 'her', 'to', 'mention', '||period||', '||period||', '||period||', '||leftparen||', 'starting', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'wait', 'a', 'minute', 'george', '||period||', '||return||', '||return||', 'george:', 'be', 'right', 'with', 'you', '||period||', 'look', 'mr', '||period||', 'steinbrenner', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'moonlighting', 'for', 'tyler', 'chicken', '||period||', 'pretty', 'impressive', 'george', '||period||', 'days', 'with', 'the', 'new', 'york', 'yankees', 'and', 'nights', 'in', 'arkensas', 'with', 'a', 'top', 'flight', 'bird', 'outlet', '||period||', 'and', 'a', 'hen', 'supervisor', 'to', 'boot', '||period||', 'i', 'am', 'blown', '||period||', 'bloooown', 'away', '||period||', 'blown', 'george', '||period||', '||leftparen||', 'vibration', 'in', 'the', '||quotemark||', 'o', '||quotemark||', "'s", '||rightparen||', 'bloooooooooooooooooooown', '||period||', '||return||', '||return||', 'alex:', 'you', 'know', 'when', 'you', 'make', 'a', 'pizza', 'bagel', '||comma||', 'you', 'really', "shouldn't", 'use', 'cinnimon', 'rasin', '||period||', '||return||', '||return||', 'jerry:', 'you', 'also', "shouldn't", 'use', 'a', 'donut', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', 'ladies', 'and', 'gentlemen', '||period||', 'welcome', 'to', 'the', 'peterman', 'reality', 'tour', '||period||', '||period||', '||period||', '||return||', '||return||', 'tape', 'player:', 'turn', 'music', 'off', '||period||', '||return||', '||return||', 'jerry:', 'can', 'we', 'just', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'and', 'go', 'we', 'will', '||period||', '||return||', '||return||', 'man:', 'what', 'is', 'this', '||questionmark||', 'a', 'piece', 'of', 'pound', 'cake', '||questionmark||', '||return||', '||return||', 'kramer:', 'we', 'have', 'a', 'bonus', 'reality', 'stop', 'today', '||period||', 'we', 'will', 'be', 'hauling', 'muffin', 'stumps', 'to', 'the', 'local', 'repository', '||period||', '||return||', '||return||', 'man', '2:', "we're", 'going', 'to', 'a', 'garbage', 'dump', '||questionmark||', '||return||', '||return||', 'kramer:', 'and', "we're", 'off', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', 'i', 'never', 'though', 'he', 'would', 'be', 'able', 'to', 'recreate', 'the', 'experience', 'of', 'actually', 'knowing', 'him', '||comma||', 'but', 'this', 'is', 'pretty', 'close', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', '||leftparen||', 'the', 'back', 'of', 'his', 'head', 'to', 'the', 'camera', '||rightparen||', 'john', 'tyler', '||questionmark||', 'george', 'steinbreener', 'here', '||period||', 'i', 'want', 'to', 'talk', 'about', 'george', 'castanza', '||period||', 'i', 'understand', "he's", 'been', 'dividing', 'his', 'time', 'between', 'us', 'and', 'you', '||period||', 'i', 'cannot', 'have', 'that', '||period||', '||return||', '||return||', 'john', 'tyler:', '||leftparen||', 'the', 'back', 'of', 'his', 'head', 'also', 'to', 'the', 'camera', '||rightparen||', 'well', 'i', "don't", 'know', 'who', 'he', 'is', 'but', 'if', 'you', 'want', 'him', 'that', 'bad', "i'm", 'not', 'giving', 'him', 'up', 'that', 'easily', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'oh', 'is', 'that', 'so', '||period||', 'playing', 'a', 'little', 'hardball', 'huh', 'jonnyboy', '||questionmark||', '||return||', '||return||', 'john', 'tyler:', 'how', 'about', 'this', '||period||', 'you', 'give', 'me', 'castanza', '||comma||', 'i', 'convert', 'your', 'concessions', 'to', 'all', 'chicken', 'no', 'charge', '||period||', 'instead', 'of', 'hot', 'dogs', '||comma||', 'chicken', 'dogs', '||period||', 'instead', 'of', 'pretzels', '||comma||', 'chicken', 'twists', '||period||', 'instead', 'of', 'beer', '||comma||', 'alcoholic', 'chicken', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'how', 'do', 'you', 'make', 'that', 'alcoholic', 'chicken', '||questionmark||', '||return||', '||return||', 'john', 'tyler:', 'let', 'if', 'ferment', '||comma||', 'just', 'like', 'everything', 'else', '||period||', '||return||', '||return||', 'mr', '||period||', 'steinbrenner:', 'that', 'stuff', 'sounds', 'great', '||period||', 'all', 'right', '||period||', "i'll", 'have', 'costanza', 'on', 'the', 'next', 'bus', '||period||', '||return||', '||return||', 'man:', 'hey', 'hey', 'hey', 'hey', 'hey', '||period||', 'where', 'do', 'you', 'think', "you're", 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'was', 'going', 'to', 'dump', 'this', '||period||', '||return||', '||return||', 'man:', 'it', "doesn't", 'look', 'like', 'garbage', '||period||', '||return||', '||return||', 'kramer:', 'well', "it's", 'muffin', 'stumps', '||return||', '||return||', 'man:', 'where', 'are', 'the', 'muffin', 'tops', '||questionmark||', '||return||', '||return||', 'kramer:', 'this', 'is', 'a', 'garbage', 'dump', '||period||', 'just', 'let', 'me', 'dump', 'it', '||period||', '||return||', '||return||', 'man:', "can't", 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', 'is', 'this', 'a', 'joke', '||questionmark||', '||return||', '||return||', 'man:', "that's", 'what', "i'd", 'like', 'to', 'know', 'about', 'it', '||period||', '||return||', '||return||', 'alex:', 'you', 'have', 'a', 'pretty', 'heavy', 'beard', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'alex:', 'well', 'look', "it's", 'almost', 'time', 'for', 'you', 'to', 'shave', 'again', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'gets', 'back', 'on', 'the', 'bus', '||comma||', 'yelling', '||rightparen||', 'well', 'maybe', 'i', 'will', 'take', 'it', 'up', 'with', 'consumer', 'affairs', '||period||', 'ladies', 'and', 'gentlemen', "you're", 'in', 'for', 'an', 'additional', 'treat', '||period||', "we're", 'going', 'to', 'extend', 'the', 'tour', 'at', 'no', 'extra', 'charge', '||period||', '||return||', '||return||', 'man:', 'where', 'are', 'we', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', 'a', 'map', '||rightparen||', 'i', "don't", 'know', '||period||', '||leftparen||', 'over', 'the', 'speaker', '||rightparen||', 'uh', '||comma||', 'no', 'more', 'questions', '||period||', '||return||', '||return||', 'waitress:', 'so', '||comma||', 'the', 'new', 'york', 'yankees', 'traded', 'you', 'for', 'a', 'bunch', 'of', 'tyler', 'chicken', '||period||', '||return||', '||return||', 'george:', 'dogs', '||comma||', 'twists', '||comma||', 'a', 'kind', 'of', 'fermented', 'chicken', 'drink', '||period||', '||return||', '||return||', 'man:', 'hey', '||comma||', "aren't", 'you', 'the', 'guy', 'i', 'asked', 'to', 'watch', 'my', 'clothes', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'clothes', '||questionmark||', '||return||', '||return||', 'man:', 'these', 'clothes', '||period||', 'the', 'ones', "you're", 'wearing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'low', 'voice', 'to', 'next', 'to', 'kramer', '||rightparen||', 'kramer', 'how', 'much', 'longer', '||questionmark||', 'my', 'chest', 'hair', 'is', 'comming', 'back', 'and', "it's", 'itching', 'me', 'like', 'crazy', '||period||', 'i', "can't", 'let', 'her', 'see', 'me', 'scratch', 'it', '||period||', '||return||', '||return||', 'kramer:', "don't", 'worry', '||period||', "i've", 'got', 'a', 'good', 'feeling', 'about', 'this', 'dump', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'telling', 'you', 'man', '||comma||', "i'm", 'losing', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'sit', 'on', 'this', 'bus', 'anymore', '||period||', 'i', 'think', "i'll", 'go', 'play', 'with', 'that', 'dog', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', 'where', 'the', 'tops', 'are', '||period||', '||return||', '||return||', 'kramer:', 'jerry', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'for', 'the', 'first', 'half', 'of', 'the', 'howl', '||comma||', 'a', 'dog', 'howls', 'along', 'with', 'him', '||period||', '||rightparen||', 'awoooooo', '||dash||', 'oooooooo', '||comma||', 'that', 'feels', 'good', '||period||', '||return||', '||return||', 'bartender:', 'hey', '||comma||', 'you', 'looking', 'for', 'george', '||questionmark||', '||return||', '||return||', 'mary', 'anne:', 'yeah', '||period||', '||return||', '||return||', 'bartender:', "he's", 'been', 'in', 'the', 'bathroom', 'awhile', '||period||', 'you', 'might', 'want', 'to', 'check', 'on', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'on', 'the', 'phone', '||rightparen||', 'jerry', 'you', 'gotta', 'bring', 'me', 'some', 'clothes', 'down', 'here', '||period||', 'i', 'lost', 'my', 'job', 'with', 'the', 'yankees', '||period||', "i'm", 'standing', 'in', 'the', "men's", 'room', 'on', '43rd', 'street', 'in', 'my', 'underpants', '||period||', '||return||', '||return||', 'mary', 'anne:', 'i', 'told', 'you', 'this', 'city', 'would', 'eat', 'you', 'alive', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'what', 'is', 'this', 'guy', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'they', 'call', 'him', 'a', 'cleaner', '||period||', 'he', 'makes', 'problems', 'go', 'away', '||period||', '||return||', '||return||', 'newman:', 'hello', 'elaine', '||period||', 'where', 'are', 'they', '||questionmark||', '||return||', '||return||', 'elaine:', 'in', 'the', 'back', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', "i'm", 'going', 'to', 'need', 'a', 'clean', '8', 'ounce', 'glass', '||period||', '||return||', '||return||', 'mr', '||period||', 'lippman:', 'what', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'newman:', 'if', "i'm", 'curt', '||comma||', 'then', 'i', 'appologize', '||period||', 'but', 'as', 'i', 'understand', 'it', '||comma||', 'we', 'have', 'a', 'situation', 'here', 'and', 'time', 'is', 'of', 'the', 'essence', '||period||', '||return||', '||return||', '||leftparen||', 'newman', 'goes', 'to', 'the', 'back', 'room', 'with', 'the', 'muffin', 'stumps', 'and', 'sets', 'down', 'a', 'cooler', 'and', 'an', 'empty', 'glass', '||period||', 'from', 'the', 'cooler', 'he', 'takes', 'out', '4', 'bottles', 'of', 'milk', 'and', 'sets', 'them', 'down', '||period||', 'he', 'bites', 'into', 'a', 'stump', '||comma||', 'then', 'takes', 'a', 'drink', 'of', 'milk', 'from', 'the', 'glass', '||period||', '||leftparen||', 'continuity', 'error:', 'he', 'never', 'actually', 'poured', 'the', 'glass', 'of', 'milk', '||period||', '||rightparen||', 'he', 'swishes', 'the', 'muffin', 'and', 'the', 'milk', 'together', 'and', 'swollows', '||period||', 'he', 'takes', 'another', 'stump', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'you', 'had', 'a', 'good', 'run', '||period||', 'took', 'them', 'to', 'the', 'world', 'series', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'to', 'give', 'the', 'players', 'most', 'of', 'the', 'credit', 'for', 'that', '||period||', '||return||', '||return||', 'jerry:', "don't", 'sell', 'yourself', 'short', '||period||', 'you', 'made', 'all', 'the', 'flight', 'arrangements', '||comma||', 'hotels', '||comma||', 'busses', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "don't", 'know', 'who', 'was', 'doing', 'that', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'when', 'you', 'actually', 'did', 'work', '||comma||', 'what', 'it', 'was', 'that', 'you', 'did', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'had', 'a', 'pastry', 'cart', 'you', "wouldn't", 'believe', '||period||', '||return||', '||return||', 'lanette:', 'here', 'you', 'go', '||period||', 'your', 'latt', '||comma||', 'your', 'cappuccino', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'i', 'should', 'ask', 'her', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'is', 'a', 'good', 'waitress', '||period||', '||return||', '||return||', 'jerry:', "that's", 'true', '||period||', 'maybe', 'i', 'take', 'her', 'to', 'the', "tony's", '||period||', '||return||', '||return||', 'george:', "you're", 'going', 'to', 'the', "tony's", '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'wrote', 'some', 'jokes', 'to', 'the', 'show', 'and', 'they', 'gave', 'me', 'two', 'tickets', '||period||', '||return||', '||return||', 'george:', 'why', "didn't", 'you', 'ask', 'me', '||questionmark||', 'i', 'know', 'a', 'million', 'theater', 'jokes', '||period||', "'what's", 'the', 'deal', 'with', 'those', 'guys', 'down', 'in', 'the', 'pit', '||questionmark||', "'", '||return||', '||return||', 'jerry:', "they're", 'musicians', '||period||', "that's", 'not', 'a', 'joke', '||period||', '||return||', '||return||', 'george:', "it's", 'a', 'funny', 'observation', '||period||', '||return||', '||return||', 'george:', 'severance', 'package', '||period||', '||period||', '||period||', 'the', 'yankees', 'are', 'giving', 'me', 'three', 'months', 'full', 'pay', 'for', 'doing', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'they', 'did', 'it', 'for', 'three', 'years', '||period||', "what's", 'another', 'few', 'months', '||period||', '||return||', '||return||', 'george:', "i'm", 'really', 'going', 'to', 'do', 'something', 'with', 'these', 'three', 'months', '||period||', '||return||', '||return||', 'jerry:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'read', 'a', 'book', '||period||', 'from', 'beginning', 'to', 'end', '||period||', 'in', 'that', 'order', '||period||', '||return||', '||return||', 'jerry:', "i've", 'always', 'wanted', 'to', 'do', 'that', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'play', 'frolf', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'golf', '||questionmark||', '||return||', '||return||', 'george:', 'frolf', '||comma||', 'frisbee', 'golf', 'jerry', '||period||', 'golf', 'with', 'a', 'frisbee', '||period||', 'this', 'is', 'gonna', 'be', 'my', 'time', '||period||', 'time', 'to', 'taste', 'the', 'fruits', 'and', 'let', 'the', 'juices', 'drip', 'down', 'my', 'chin', '||period||', 'i', 'proclaim', 'this', 'the', 'summer', 'of', 'george', '||exclammark||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'and', 'then', 'peterman', 'ate', 'it', '||period||', 'i', 'never', 'told', 'him', '||period||', '||return||', '||return||', 'elaine:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'dugan:', "that's", 'sam', '||comma||', 'the', 'new', 'girl', 'in', 'the', 'counting', '||period||', '||return||', '||return||', 'walter:', "what's", 'with', 'her', 'arms', '||questionmark||', 'they', 'just', 'hang', 'like', 'salamis', '||period||', '||return||', '||return||', 'dugan:', 'she', 'walks', 'like', 'orangutan', '||period||', '||return||', '||return||', 'elaine:', 'better', 'call', 'the', 'zoo', '||period||', '||return||', '||return||', 'dugan:', 'reer', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'walter:', 'ssssss', '||period||', '||period||', '||period||', '||return||', '||return||', 'dugan:', 'cat', '||dash||', 'ty', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "it's", 'like', "she's", 'carrying', 'invisible', 'suitcases', '||period||', '||return||', '||return||', 'jerry:', 'like', 'this', '||questionmark||', '||leftparen||', 'imitates', 'the', 'walk', '||rightparen||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'exactly', '||period||', '||return||', '||return||', 'jerry:', "that's", 'so', 'strange', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', 'so', 'why', "i'm", 'the', 'one', 'who', 'gets', "'reer'", '||period||', 'you', 'know', 'i', 'mean', 'they', 'were', 'being', 'as', 'catty', 'as', 'i', 'was', '||period||', "it's", 'a', 'double', 'standard', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'what', 'about', "'ladies", "night'", '||questionmark||', 'women', 'admitted', 'free', 'before', '10', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'is', 'so', 'stupid', '||period||', '||return||', '||return||', 'jerry:', 'reer', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "'the", 'white', "shadow'", 'is', 'on', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'your', 'really', 'packing', 'it', 'all', 'in', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'my', 'vacation', 'just', 'started', '||period||', 'i', 'need', 'a', 'day', 'or', 'two', 'to', 'de', '||dash||', 'compress', '||period||', 'besides', '||comma||', 'i', 'did', 'plenty', 'today', '||period||', '||return||', '||return||', 'jerry:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'bought', 'a', 'new', 'recliner', 'with', 'a', 'fridge', 'build', 'right', 'in', 'to', 'it', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||comma||', 'you', 'got', 'any', 'tums', '||questionmark||', '||return||', '||return||', 'jerry:', 'stomach', 'ache', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'drank', 'too', 'much', 'water', 'in', 'the', 'shower', '||period||', '||return||', '||return||', 'jerry:', 'aah', '||comma||', 'top', 'of', 'the', 'fridge', '||period||', 'hey', 'george', '||comma||', "i'm", 'taking', 'that', 'waitress', 'to', 'the', "tony's", '||period||', '||return||', '||return||', 'george:', 'shadow', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'the', "tony's", '||period||', "i'll", 'see', 'you', 'there', 'buddy', '||period||', '||return||', '||return||', 'elaine:', "you're", 'going', 'to', 'the', "tony's", 'too', '||questionmark||', '||return||', '||return||', 'kramer:', 'roger', 'that', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'sitting', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'all', 'over', 'the', 'place', '||period||', 'yeah', '||comma||', "i'm", 'a', 'seat', 'filler', '||period||', 'they', "don't", 'like', 'to', 'see', 'empty', 'seats', 'on', 'tv', 'so', 'when', 'somebody', 'gets', 'up', 'i', 'just', 'park', 'my', 'kaboos', 'on', 'their', 'spot', 'until', 'they', 'get', 'back', '||period||', '||return||', '||return||', 'elaine:', 'how', 'did', 'you', 'get', 'that', 'job', '||questionmark||', '||return||', '||return||', 'kramer:', 'mickey', '||comma||', 'mickey', 'he', 'hooked', 'me', 'up', '||period||', "he's", 'a', 'member', 'of', 'the', 'academy', '||period||', '||return||', '||return||', 'jerry:', 'what', 'academy', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', "didn't", 'say', '||leftparen||', 'leaves', '||rightparen||', '||period||', '||return||', '||return||', 'lanette:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||exclammark||', '||return||', '||return||', 'lanette:', 'nice', 'tuxedo', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', "it's", 'a', 'breakaway', '||period||', '||return||', '||return||', 'lanette:', 'should', 'we', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'absolutely', '||period||', '||return||', '||return||', 'lanette:', 'lyle', '||comma||', 'were', 'going', '||exclammark||', 'jerry', '||comma||', 'this', 'is', 'lyle', '||period||', '||return||', '||return||', 'lyle:', 'hey', '||comma||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||period||', '||period||', '||return||', '||return||', 'lanette:', 'bye', '||period||', '||return||', '||return||', 'lyle:', 'have', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'jerry:', 'thanks', '||comma||', 'lyle', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'leaving', '||questionmark||', 'cause', 'i', 'got', 'you', 'covered', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'just', 'squeeze', 'in', '||period||', '||period||', '||period||', '||return||', '||return||', 'man:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'job', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'if', 'they', 'catch', 'two', 'of', 'us', 'on', 'tv', '||comma||', 'you', 'got', 'some', 'explaining', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'and', 'lyle', 'are', 'roommates', '||questionmark||', '||return||', '||return||', 'lanette:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'gay', '||questionmark||', '||return||', '||return||', 'lanette:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'he', 'gay', '||questionmark||', '||return||', '||return||', 'lanette:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', '||questionmark||', '||return||', '||return||', 'lanette:', 'i', 'think', 'i', 'would', 'know', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'this', 'is', 'a', 'new', 'one', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'woman', 'next', 'to', 'him', '||rightparen||', 'pemmican', 'turkey', '||questionmark||', 'come', 'on', 'take', 'a', 'bite', '||period||', '||period||', '||period||', 'well', 'more', 'for', 'me', '||period||', '||return||', '||return||', 'announcer:', '||period||', '||period||', '||period||', 'and', 'the', 'best', 'musical', 'award', 'goes', 'to', 'scarsdale', 'surprise', '||exclammark||', '||return||', '||return||', 'george:', 'kramer', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'graham:', '||leftparen||', 'on', 'tv', '||rightparen||', 'thank', 'you', 'and', 'god', 'bless', 'you', 'all', '||period||', 'this', 'has', 'truly', 'been', 'a', 'scarsdale', 'surprise', '||exclammark||', '||return||', '||return||', 'sam:', 'elaine', '||comma||', 'am', 'i', 'crazy', '||questionmark||', 'i', 'just', 'get', 'the', 'feeling', 'that', 'dugan', 'and', 'the', 'others', 'are', 'making', 'fun', 'of', 'me', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'might', 'wanna', 'think', 'about', '||period||', '||period||', '||period||', 'maybe', '||comma||', 'eh', '||period||', '||period||', '||period||', 'moving', 'your', 'arms', 'a', 'little', 'when', 'you', 'walk', '||period||', '||return||', '||return||', 'sam:', 'my', 'arms', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'sort', 'of', 'swing', 'them', '||comma||', 'so', 'your', 'not', 'lurching', 'around', 'like', 'a', 'caveman', '||period||', '||return||', '||return||', 'sam:', 'i', 'a', 'caveman', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', 'no', '||comma||', "it's", 'just', '||period||', '||period||', '||period||', '||return||', '||return||', 'sam:', 'everybody', 'told', 'what', 'a', 'catty', 'shrude', 'you', 'are', '||period||', 'your', 'horrible', '||exclammark||', '||return||', '||return||', 'george:', 'she', 'had', 'a', 'dude', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'when', 'i', 'went', 'to', 'pick', 'her', 'up', 'there', 'was', 'this', 'dude', '||period||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'know', 'it', 'was', 'her', 'dude', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', 'it', "could've", 'been', 'just', 'some', 'dude', '||questionmark||', '||return||', '||return||', 'george:', 'sure', '||comma||', 'dudes', 'in', 'this', 'town', 'are', 'dime', 'a', 'dozen', '||period||', '||return||', '||return||', 'jerry:', 'i', 'reckon', '||period||', '||return||', '||return||', 'george:', 'or', 'maybe', '||comma||', 'she', 'just', 'wanted', 'to', 'go', 'to', 'the', "tony's", '||period||', 'i', 'tell', 'you', 'what', '||semicolon||', 'you', 'ask', 'her', 'out', 'again', '||period||', 'no', 'tony', '||comma||', 'just', 'jerry', '||period||', 'that', 'way', 'you', 'know', 'it', 'he', 'was', 'her', 'dude', 'or', 'just', 'some', 'dude', '||period||', '||return||', '||return||', 'jerry:', 'dude', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "that's", 'enough', '||period||', 'i', 'gotta', 'go', 'home', 'and', 'take', 'a', 'nap', '||period||', '||return||', '||return||', 'jerry:', "it's", '1030', 'in', 'the', 'morning', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', '||semicolon||', "i'm", 'wiped', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'has', 'the', 'summer', 'of', 'george', 'already', 'started', 'or', 'are', 'you', 'still', 'de', '||dash||', 'composing', '||questionmark||', '||return||', '||return||', 'george:', 'de', '||dash||', 'compressing', '||period||', '||return||', '||return||', 'kramer:', 'whooa', '||comma||', 'good', 'morning', 'gentleman', 'and', 'tony', 'says', 'hello', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'you', "didn't", 'give', 'that', 'thing', 'back', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'it', 'was', 'a', 'whirlwind', '||period||', 'they', 'whisked', 'us', 'backstage', '||comma||', 'the', 'media', 'is', 'sworming', '||comma||', 'champagne', 'is', 'flowing', '||period||', '||period||', '||period||', 'whooo', '||exclammark||', 'i', "can't", 'describe', 'how', 'great', 'it', 'is', 'to', 'win', '||period||', '||return||', '||return||', 'jerry:', "that's", 'because', 'you', "didn't", 'win', '||period||', '||return||', '||return||', 'george:', "'scarsdale", "surprise'", '||period||', "that's", 'the', 'musical', 'about', 'that', 'scarsdale', 'diet', 'doctor', 'murder', '||period||', '||return||', '||return||', 'kramer:', 'featuring', 'the', 'mind', '||dash||', 'blowing', 'performance', 'of', 'ms', '||period||', 'raquel', 'welch', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', "haven't", 'even', 'seen', 'it', '||period||', '||return||', '||return||', 'kramer:', 'aah', '||comma||', 'jerry', "i'm", 'not', 'gonna', 'let', 'you', 'bring', 'me', 'down', 'from', 'this', 'high', '||period||', "i've", 'been', 'partying', 'all', 'night', '||period||', 'i', 'saw', 'the', 'sunrise', 'at', "liza's", '||exclammark||', '||return||', '||return||', 'george:', 'what', '||comma||', "minelli's", '||exclammark||', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'sam', '||comma||', 'listen', "i'm", 'so', 'sorry', 'about', 'the', 'other', 'day', '||period||', '||return||', '||return||', 'sam:', 'no', '||comma||', "don't", 'apologize', 'elaine', '||period||', 'i', 'was', 'thinking', 'that', 'maybe', 'i', 'should', 'swing', 'my', 'arms', 'a', 'little', 'bit', 'more', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'yeah', '||comma||', "that's", 'all', 'i', 'was', 'saying', '||period||', '||return||', '||return||', 'sam:', "how's", 'this', '||leftparen||', 'sam', 'hits', 'a', 'pen', 'case', 'out', 'of', 'the', 'table', '||rightparen||', '||comma||', 'or', 'this', '||leftparen||', 'swings', 'a', 'paper', 'holder', 'of', 'the', 'table', 'and', 'starts', 'to', 'clear', 'the', 'table', 'left', 'and', 'right', '||rightparen||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'seem', 'to', 'be', 'getting', 'a', 'hang', 'of', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||exclammark||', '||return||', '||return||', 'lanette:', 'sorry', '||comma||', "i'm", 'running', 'late', '||period||', 'i', 'just', 'lost', 'track', 'of', 'time', '||period||', '||return||', '||return||', 'jerry:', 'no', 'rush', '||period||', '||return||', '||return||', 'lyle:', 'hey', '||comma||', 'jerry', '||exclammark||', "what's", 'up', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'i', 'have', 'absolutely', 'no', 'idea', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'except', 'that', 'the', 'dude', 'plays', 'the', 'showroom', 'and', "i'm", 'stuck', 'doing', 'food', 'and', 'beveridged', '||exclammark||', '||return||', '||return||', 'george:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'kramer', '||period||', '||return||', '||return||', 'george:', 'hey', 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'george', 'says', 'hi', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shouts', 'to', 'the', 'telephone', '||rightparen||', 'hi', 'george', '||exclammark||', '||return||', '||return||', 'george:', "how's", 'that', 'tony', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'just', 'come', 'over', '||questionmark||', '||return||', '||return||', 'george:', 'why', "can't", 'we', 'do', 'this', 'on', 'the', 'phone', '||questionmark||', "what's", 'kramer', 'doing', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'looking', 'on', 'to', 'fridgerator', '||period||', '||return||', '||return||', 'george:', 'kramer', '||period||', 'anything', 'good', 'in', 'there', '||questionmark||', 'any', 'popsicles', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'do', 'this', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "what's", 'george', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'not', 'doing', 'anything', '||period||', 'goodbye', '||exclammark||', '||return||', '||return||', 'kramer:', 'so', 'listen', '||comma||', "i'm", 'going', 'to', 'crab', 'a', 'bite', 'to', 'eat', 'at', "sardi's", '||period||', 'you', 'wanna', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'taking', 'the', 'tony', 'to', "sardi's", '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'tony', 'is', 'taking', 'me', 'to', "sardi's", '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hello', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'going', '||period||', '||return||', '||return||', 'lanette:', 'congratulations', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', 'so', 'much', '||period||', 'i', 'have', 'so', 'many', 'people', 'i', 'want', 'to', 'thank', 'and', "don't", 'want', 'to', 'forget', 'anyone', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'i', 'said', 'no', '||exclammark||', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||period||', '||rightparen||', '||return||', '||return||', 'lanette:', 'jerry', '||comma||', 'i', 'just', 'want', 'to', 'let', 'you', 'know', '||semicolon||', 'lyle', 'and', 'i', 'are', 'completely', 'over', '||period||', "i'd", 'rather', 'be', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'just', 'me', '||questionmark||', 'no', 'dudes', 'or', 'fellas', '||questionmark||', '||return||', '||return||', 'lanette:', 'what', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'can', 'start', 'right', 'away', '||period||', '||return||', '||return||', 'jerry:', 'but', 'not', 'here', '||period||', '||leftparen||', 'they', 'leave', '||period||', '||rightparen||', '||return||', '||return||', "jerry's", 'answering', 'machine:', "'i'm", 'not', 'here', '||comma||', 'leave', 'a', 'message', '||period||', "'", '||return||', '||return||', 'george:', '||leftparen||', 'on', 'the', 'answering', 'machine', '||rightparen||', 'jerry', '||comma||', "what's", 'happening', '||questionmark||', 'come', 'on', '||comma||', 'pick', 'up', 'the', 'phone', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'so', 'i', 'said', 'to', 'him', 'arthur', '||comma||', 'artie', 'come', 'on', '||comma||', 'why', 'does', 'the', 'salesman', 'have', 'to', 'die', '||questionmark||', 'change', 'the', 'title', '||semicolon||', 'the', 'life', 'of', 'a', 'salesman', '||period||', "that's", 'what', 'people', 'want', 'to', 'see', '||period||', '||return||', '||return||', 'mr', '||period||', 'graham:', 'mr', '||period||', 'kramer', '||comma||', 'my', 'name', 'is', 'lewis', 'maxton', 'graham', '||period||', "i'm", 'one', 'of', 'the', 'producers', 'of', "'scarsdale", "surprise'", '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'eh', '||comma||', 'lew', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'graham:', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'what', 'did', 'you', 'want', 'to', 'talk', 'me', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', '||period||', 'my', 'office', '||period||', 'sam', 'trashed', 'my', 'office', '||period||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'i', 'see', "what's", 'going', 'on', 'in', 'here', '||period||', 'i', 'am', 'smack', 'dab', 'in', 'the', 'middle', 'of', 'a', 'good', 'old', 'fashioned', 'cat', 'fight', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'petermen', '||comma||', 'this', 'is', 'not', 'a', 'cat', 'fight', '||period||', 'this', 'is', 'violent', 'psychotic', 'behavior', 'directed', 'at', 'me', 'all', 'because', 'are', 'told', 'her', 'to', 'swing', 'her', 'arms', '||period||', '||return||', '||return||', 'peterman:', 'woof', '||exclammark||', '||return||', '||return||', 'elaine:', 'do', 'you', 'mean', '||quotemark||', 'reer', '||questionmark||', '||quotemark||', '||return||', '||return||', 'peterman:', 'yes', '||comma||', "that's", 'the', 'one', '||exclammark||', 'good', 'day', 'elaine', '||period||', '||leftparen||', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', 'please', 'mr', '||period||', 'peterman', '||comma||', "she's", 'crazy', '||exclammark||', '||leftparen||', 'sam', 'walks', 'by', 'and', 'elaine', 'starts', 'to', 'sing', '||rightparen||', 'crazy', 'for', 'feelings', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'how', 'much', 'we', 'did', 'this', 'afternoon', '||period||', 'i', 'have', 'friends', 'who', 'this', "would've", 'be', 'their', 'whole', 'life', '||period||', '||return||', '||return||', 'lanette:', 'now', '||comma||', 'what', 'time', 'are', 'you', 'picking', 'me', 'up', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'lanette:', 'you', 'got', 'our', 'reservation', 'from', "sfuzi's", '||comma||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'sfuzi', '||questionmark||', 'i', '||dash||', "i've", 'gotta', 'do', 'that', '||period||', '||return||', '||return||', 'lanette:', 'should', 'i', 'ware', 'the', 'outfit', 'i', 'bought', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'lanette:', 'which', 'one', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'one', 'with', 'the', '||period||', '||period||', '||period||', '||leftparen||', 'mumbles', '||period||', '||rightparen||', '||return||', '||return||', 'lanette:', 'if', 'i', 'wanna', 'get', 'my', 'hair', 'cut', "i've", 'gotta', 'go', 'now', '||period||', 'call', 'me', 'when', 'you', 'get', 'home', '||period||', 'i', 'wont', 'be', 'there', '||comma||', 'but', 'leave', 'a', 'message', 'so', 'i', 'know', 'you', 'called', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'ok', '||period||', '||period||', '||period||', '||return||', '||return||', 'lanette:', 'do', 'you', 'mind', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'll", 'crab', 'it', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "i've", 'done', 'that', 'today', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'did', 'you', 'lose', 'your', 'remote', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'the', "cable's", 'out', '||period||', "what's", 'with', 'you', '||questionmark||', 'you', 'look', 'dead', '||period||', '||return||', '||return||', 'jerry:', "it's", 'lanette', '||exclammark||', 'i', 'need', 'an', 'assistant', 'or', 'intern', 'or', 'something', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', '||rightparen||', 'relationship', 'intern', '||period||', '||period||', '||period||', 'hey', '||comma||', 'what', 'if', 'two', 'of', 'us', 'teamed', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'because', "that's", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'listen', '||semicolon||', 'we', 'are', 'always', 'sitting', 'here', '||comma||', 'i', 'am', 'always', 'helping', 'you', 'with', 'your', 'girl', 'problems', 'and', 'you', 'are', 'helping', 'me', 'with', 'my', 'girl', 'problems', '||period||', 'where', 'do', 'we', 'end', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'here', '||period||', '||return||', '||return||', 'george:', 'exactly', '||exclammark||', 'because', 'neither', 'one', 'of', 'us', "can't", 'handle', 'a', 'woman', 'all', 'by', 'ourselves', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'trying', '||period||', '||return||', '||return||', 'george:', "i've", 'tried', '||period||', 'we', "don't", 'have', 'it', '||period||', 'but', 'maybe', 'the', 'two', 'of', 'us', '||comma||', 'working', 'together', 'at', 'full', 'capacity', '||comma||', 'could', 'do', 'the', 'job', 'of', 'one', 'normal', 'man', '||period||', '||return||', '||return||', 'jerry:', 'then', 'each', 'of', 'us', 'would', 'only', 'have', 'be', 'like', 'a', 'half', 'man', '||period||', 'that', 'sounds', 'about', 'right', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'graham:', "i'm", 'sure', 'how', 'excited', 'you', 'are', 'to', 'have', 'this', 'very', 'very', 'prestigious', 'award', '||period||', 'but', 'you', "didn't", 'have', 'anything', 'to', 'do', 'with', 'the', 'actual', 'production', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'mr', '||period||', 'graham:', 'i', "don't", 'think', "there's", 'no', 'way', 'how', 'we', 'can', 'allow', 'you', 'to', 'keep', 'this', 'tony', '||period||', 'unless', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'anything', '||period||', '||period||', '||period||', '||return||', '||return||', 'malcolm:', 'are', 'you', 'familiar', 'with', 'our', 'star', '||comma||', 'raquel', 'welch', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "she's", 'fantastic', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'mr', '||period||', 'graham:', "she's", 'a', 'train', 'wreck', '||period||', '||return||', '||return||', 'malcolm:', "there's", 'a', 'big', 'tap', 'dance', 'number', 'just', 'before', 'jean', 'harris', 'leaves', 'the', '||leftparen||', '||questionmark||', '||rightparen||', 'school', 'to', 'confront', 'dr', 'tarnover', '||period||', '||return||', '||return||', 'mr', '||period||', 'graham:', 'it', 'is', 'a', 'gut', 'wrenching', 'scene', '||period||', '||return||', '||return||', 'malcolm:', 'but', '||comma||', 'raquel', 'welch', "doesn't", 'move', 'her', 'arms', 'when', 'she', 'tap', 'dances', '||period||', "it's", 'very', 'distracting', '||period||', '||return||', '||return||', 'mr', '||period||', 'graham:', "there's", 'lot', 'of', 'this', '||leftparen||', 'swings', 'his', 'arms', '||rightparen||', 'in', 'tap', 'dancing', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "you'd", 'like', 'me', 'to', 'teach', 'how', 'to', 'dance', '||questionmark||', '||return||', '||return||', 'malcolm:', 'no', '||comma||', 'we', 'want', 'you', 'to', 'fire', 'her', '||period||', '||return||', '||return||', 'jerry:', 'why', 'they', 'want', 'you', 'to', 'fire', 'raquel', 'welch', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "they're", 'terrified', 'of', 'her', '||period||', 'i', 'heard', 'from', 'someone', 'that', 'when', 'they', 'cut', 'one', 'of', 'her', 'lines', '||comma||', 'she', 'climbed', 'up', 'the', 'rope', 'on', 'side', 'of', 'the', 'stage', 'and', 'started', 'dropping', 'lights', 'on', 'peoples', 'heads', '||period||', 'story', 'like', 'that', 'has', 'got', 'to', 'be', 'true', '||period||', '||return||', '||return||', 'jerry:', 'she', 'seems', 'very', 'nice', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "you're", 'not', 'in', 'show', 'business', '||period||', 'you', "don't", 'know', 'what', 'these', 'people', 'are', 'like', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'in', 'show', 'business', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||exclammark||', 'what', 'am', 'i', 'gonna', 'do', '||questionmark||', "she's", 'going', 'to', 'eat', 'me', 'alive', '||period||', '||return||', '||return||', 'jerry:', "i've", 'got', 'a', 'tape', 'of', "'fantastic", "voyage'", 'if', 'you', 'think', 'that', 'would', 'help', '||period||', '||return||', '||return||', 'kramer:', 'yayaya', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'that', 'crazy', 'straight', '||dash||', 'armed', 'woman', 'down', 'at', "peterman's", 'trashed', 'my', 'office', '||period||', 'and', 'then', 'listen', 'to', 'this', '||semicolon||', 'this', 'is', 'message', 'she', 'left', 'me', '||period||', '||return||', '||return||', "sam's", 'voice:', 'elaine', '||period||', '||period||', '||period||', 'i', 'am', 'going', 'to', 'find', 'you', '||period||', 'if', 'not', 'in', 'your', 'office', 'then', 'in', 'the', 'xerox', 'room', 'or', 'the', 'little', 'conference', 'room', 'near', 'to', 'the', 'kitchen', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'she', "must've", 'got', 'a', 'blueprint', 'of', 'the', 'building', 'or', 'something', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'tell', 'peterman', 'about', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'tried', '||comma||', 'but', 'he', 'thought', 'it', 'was', 'some', 'sort', 'of', 'cat', 'fight', '||period||', '||return||', '||return||', 'kramer:', 'cat', 'fight', '||questionmark||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'why', '||questionmark||', 'why', 'do', 'guys', 'do', 'this', '||questionmark||', 'what', 'is', 'so', 'appealing', 'to', 'men', 'about', 'a', 'cat', 'fight', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeye', 'cat', 'fight', '||exclammark||', '||return||', '||return||', 'jerry:', 'because', 'men', 'think', 'if', 'women', 'are', 'grabbing', 'and', 'clawing', 'at', 'each', 'other', "there's", 'a', 'chance', 'they', 'might', 'somehow', 'kiss', '||period||', '||return||', '||return||', 'kramer:', 't', '||dash||', 't', '||dash||', 't', '||dash||', 't', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'the', 'tickets', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'two', 'for', 'the', '715', 'of', 'novaj', 'pravas', '||leftparen||', '||questionmark||', '||rightparen||', '||period||', 'what', "you're", 'wearing', 'the', 'green', 'sweater', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'george:', 'she', "doesn't", 'like', '||period||', 'here', 'is', 'your', 'blue', 'one', '||comma||', "it's", 'her', 'favorite', '||period||', '||leftparen||', 'takes', 'sweater', 'out', 'of', 'his', 'bag', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'put', 'it', 'on', '||exclammark||', 'all', 'right', 'now', '||comma||', 'remember', 'she', 'had', 'her', 'nails', 'done', 'today', 'so', 'remark', 'how', 'you', 'like', 'the', 'color', '||period||', 'and', 'if', 'you', 'need', 'me', 'you', 'beep', 'me', '||comma||', 'all', 'right', '||period||', 'here', 'you', 'go', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', '||period||', '||period||', '||leftparen||', 'sprays', 'binaca', 'into', "jerry's", 'mouth', '||period||', '||rightparen||', 'go', "get'em", "you're", 'a', 'tiger', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', 'george', '||comma||', 'one', 'second', '||comma||', "she's", 'having', 'a', 'party', 'friday', 'night', 'and', 'she', 'wants', 'me', 'to', 'take', 'care', 'of', 'the', 'invitations', '||period||', '||return||', '||return||', 'george:', 'a', 'little', 'notice', "would've", 'helped', '||exclammark||', 'how', 'many', 'people', '||questionmark||', '||return||', '||return||', 'jerry:', '35', '||comma||', 'and', 'george', '||comma||', 'on', 'the', 'invitations', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'know', '||period||', '||period||', '||period||', "don't", 'skimp', '||period||', 'go', 'go', 'go', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'lanette:', 'right', 'on', 'time', '||comma||', 'i', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'like', 'your', 'nails', '||comma||', 'that', 'is', 'a', 'great', 'color', '||period||', '||return||', '||return||', 'lanette:', 'love', 'the', 'sweater', '||period||', '||return||', '||return||', 'jerry:', 'this', 'old', 'thing', '||questionmark||', '||return||', '||return||', 'george:', 'hi', '||comma||', 'i', 'need', 'some', 'party', 'invitations', '||period||', '||return||', '||return||', 'clerk:', 'okay', '||comma||', 'have', 'you', 'been', 'in', 'here', 'before', '||questionmark||', '||return||', '||return||', 'george:', 'about', 'a', 'year', 'ago', '||period||', 'wedding', 'invitations', '||period||', '||return||', '||return||', 'clerk:', 'right', '||comma||', 'how', 'did', 'that', 'all', 'work', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'no', 'complaints', '||period||', '||return||', '||return||', 'clerk:', 'well', '||comma||', 'they', 'are', 'arranged', 'according', 'the', 'price', '||period||', 'and', 'as', 'i', 'recall', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'flips', 'the', 'sample', 'book', 'all', 'the', 'way', 'to', 'the', 'end', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'actually', '||comma||', '||leftparen||', 'george', 'flips', 'the', 'book', 'back', 'to', 'the', 'beginning', '||rightparen||', "i'll", 'take', 'these', 'nice', 'glossy', 'ones', '||period||', '||return||', '||return||', 'raquel:', '||quotemark||', 'you', 'are', 'a', 'fraud', 'dr', 'tarnover', '||period||', 'you', "haven't", 'even', 'been', 'to', 'scarsdale', '||period||', '||quotemark||', '||return||', '||return||', 'kramer:', 'ms', '||period||', 'welch', '||period||', '||return||', '||return||', 'raquel:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'cosmo', 'kramer', '||comma||', "i'm", 'one', 'of', 'the', 'producers', '||period||', '||return||', '||return||', 'raquel:', 'hello', '||comma||', 'sidney', '||exclammark||', 'no', '||comma||', 'no', 'i', 'told', 'you', 'i', "don't", 'want', 'to', 'do', 'that', '||exclammark||', 'if', 'you', 'bring', 'it', 'up', 'again', 'i', 'will', 'feed', 'your', 'genitals', 'to', 'a', 'wolf', '||exclammark||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'kids', '||exclammark||', "you're", 'still', 'here', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', '||dash||', 'i', 'ms', '||period||', 'welch', 'i', 'do', 'need', 'to', 'talk', 'to', 'you', 'about', 'a', 'little', 'problem', 'regarding', '||comma||', 'eh', '||comma||', 'your', 'performance', '||period||', '||return||', '||return||', 'raquel:', 'what', 'kind', 'of', 'problem', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'it', 'seems', 'that', 'due', 'to', 'the', 'vagaries', 'of', 'the', 'production', 'parameters', 'of', 'this', 'fragmenting', 'of', 'the', 'audience', 'to', 'the', 'cable', 'television', '||comma||', 'carnivals', '||comma||', 'water', 'parks', '||period||', '||period||', '||period||', '||return||', '||return||', 'raquel:', 'out', 'with', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'fired', 'because', 'you', "don't", 'move', 'your', 'arms', 'when', 'you', 'tap', 'dance', '||comma||', "you're", 'like', 'a', 'gorilla', 'out', 'there', "i've", 'gotta', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'guy:', 'little', 'help', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'frolf', '||questionmark||', '||return||', '||return||', 'guy:', 'yeah', '||comma||', 'you', 'know', 'we', 'need', 'a', 'fourth', 'for', 'the', 'back', 'nine', '||period||', 'you', 'want', 'in', '||questionmark||', '||return||', '||return||', '||leftparen||', 'george', 'looks', 'up', 'and', 'sees', 'jerry', 'on', 'the', 'other', 'side', 'and', 'frisbee', 'on', 'the', 'other', '||period||', 'jerry', 'says:', '||quotemark||', "what's", 'the', 'deal', 'with', 'airplane', 'peanuts', '||questionmark||', '||quotemark||', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'sure', '||period||', '||return||', '||return||', 'guy:', 'ok', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', "let's", 'towel', 'it', 'up', '||period||', '||return||', '||return||', 'lanette:', 'jerry', '||comma||', 'where', 'are', 'those', 'invitations', 'you', 'were', 'supposed', 'to', 'get', '||questionmark||', 'if', 'they', "don't", 'go', 'out', 'today', "they're", 'useless', '||period||', '||return||', '||return||', 'jerry:', 'but', "we're", 'in', 'towels', '||period||', '||return||', '||return||', 'lanette:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'one', 'second', '||period||', '||return||', '||return||', 'george:', 'he', 'frolfs', '||comma||', 'he', 'scores', '||period||', '||period||', '||period||', '||leftparen||', 'he', 'drops', 'one', 'invitation', 'on', 'the', 'stairs', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'where', 'are', 'those', 'invitations', '||questionmark||', 'you', 'were', 'supposed', 'to', 'leave', 'them', 'with', 'her', 'doorman', '||exclammark||', '||return||', '||return||', 'lanette:', 'did', 'you', 'shave', 'your', 'chest', 'hair', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||leftparen||', 'lanette', 'leaves', '||period||', '||rightparen||', 'did', 'you', 'at', 'least', 'pick', 'them', 'up', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'the', 'super', 'glossy', '||period||', 'the', 'best', 'they', 'had', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'get', 'them', 'over', 'here', 'pronto', '||period||', "we're", 'in', 'towels', 'here', 'george', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'keep', 'your', 'towel', 'on', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'what', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'joke', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "that's", 'not', 'bad', '||period||', 'now', 'get', 'over', 'here', '||exclammark||', '||return||', '||return||', "sam's", 'voice:', '||leftparen||', 'on', 'the', 'tape', '||rightparen||', '||period||', '||period||', '||period||', 'if', 'not', 'in', 'your', 'apartment', 'then', 'in', 'the', 'laundry', 'room', 'or', 'the', 'atm', 'in', 'the', 'building', 'across', 'the', 'street', 'or', 'the', 'watch', 'shop', '||exclammark||', '||return||', '||return||', 'elaine:', "can't", 'you', 'do', 'anything', 'about', 'this', '||questionmark||', 'i', 'mean', 'this', 'woman', 'is', 'a', 'psycho', '||exclammark||', '||return||', '||return||', 'cop', '#1:', "'reer", '||period||', "'", '||return||', '||return||', 'elaine:', 'look', '||comma||', 'just', 'because', "i'm", 'a', 'woman', '||period||', '||period||', '||period||', '||return||', '||return||', 'cop', '#2:', "'mauau", '||period||', "'", '||return||', '||return||', 'cop', '#1:', "'meeow", '||period||', "'", '||return||', '||return||', 'raquel:', 'i', "don't", 'move', 'my', 'arms', 'when', 'i', 'dance', '||period||', "that's", 'my', 'signature', '||exclammark||', '||return||', '||return||', 'elaine:', 'would', 'you', 'just', 'keep', 'an', 'eye', 'out', 'for', 'this', 'woman', '||period||', "she's", 'about', 'ye', 'high', 'and', 'eh', '||comma||', 'she', "doesn't", 'swing', 'her', 'arms', 'when', 'she', 'walks', '||period||', '||return||', '||return||', 'cop', '#1:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'like', 'this', '||period||', '||period||', '||period||', '||leftparen||', 'imitates', 'the', 'walk', 'with', 'her', 'arms', 'hanging', '||period||', '||rightparen||', '||return||', '||return||', 'raquel:', 'what', 'the', 'hell', 'is', 'that', '||questionmark||', 'are', 'you', 'making', 'fun', 'of', 'my', 'dancing', '||questionmark||', '||return||', '||return||', 'elaine:', "aren't", 'you', 'raquel', 'welch', '||questionmark||', '||return||', '||return||', 'raquel:', 'you', 'know', 'who', 'i', 'am', '||period||', 'now', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||comma||', 'i', "wasn't", 'just', 'moving', 'my', 'arms', '||period||', '||period||', '||period||', '||return||', '||return||', 'raquel:', "that's", 'it', '||comma||', 'you', 'are', 'going', 'down', '||period||', '||return||', '||return||', 'cop', '#1:', 'ooh', '||comma||', 'cat', 'fight', '||period||', '||return||', '||return||', 'kramer:', 'so', "how's", 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', 'they', "don't", 'tell', 'me', 'anything', '||period||', "what's", 'that', '||questionmark||', '||leftparen||', 'kramer', 'holds', 'a', 'broken', 'tony', '||rightparen||', '||return||', '||return||', 'kramer:', 'tony', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'raquel', 'welch', '||exclammark||', '||return||', '||return||', 'jerry:', 'yikes', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'raquel', 'welch', '||exclammark||', '||return||', '||return||', 'kramer:', 'the', 'woman', 'is', 'a', 'menace', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'bumped', 'in', 'to', 'her', 'on', 'the', 'street', '||period||', 'it', 'got', 'pretty', 'ugly', '||period||', '||return||', '||return||', 'jerry:', 'cat', 'fight', 'with', 'raquel', 'welch', '||period||', '||return||', '||return||', 'kramer:', 'yey', 'eye', 'ca', '||dash||', 'catfight', '||period||', '||return||', '||return||', 'elaine:', 'my', 'god', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'slipped', 'on', 'the', 'invitations', '||period||', '||period||', '||period||', "how's", 'the', 'towels', '||questionmark||', '||return||', '||return||', 'jerry:', 'back', 'on', 'the', 'rack', '||period||', '||return||', '||return||', 'george:', 'with', 'the', 'two', 'of', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', "we're", 'still', 'a', 'man', 'short', '||period||', '||return||', '||return||', 'doctor:', 'mr', '||period||', 'costanza', '||period||', '||period||', '||period||', 'your', 'legs', 'have', 'sustained', 'extensive', 'trauma', '||period||', 'apparently', 'your', 'body', 'was', 'in', 'the', 'state', 'of', 'advanced', 'atrophy', '||comma||', 'due', 'to', 'a', 'period', 'of', 'extreme', 'inactivity', '||period||', 'but', 'with', 'a', 'lot', 'of', 'hard', 'work', 'and', 'a', 'little', 'bit', 'of', 'luck', '||comma||', 'i', 'think', "there's", 'a', 'good', 'chance', 'you', 'may', '||comma||', 'one', 'day', '||comma||', 'walk', 'again', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'good', 'news', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||comma||', 'invitations', 'again', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "that's", 'weird', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'well', '||period||', '||period||', '||period||', 'you', 'want', 'to', 'grab', 'some', 'coffee', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "i'd", 'like', 'to', 'get', 'some', 'coffee', '||period||', '||return||', '||return||', 'george:', 'this', 'was', 'supposed', 'to', 'be', "'the", 'summer', 'of', "george'", '||exclammark||', 'the', 'summer', 'of', 'george', '||period||', '||return||', '||return||', 'therapist:', 'now', '||comma||', 'swing', 'them', '||period||', '||period||', '||period||', 'swing', '||period||', '||period||', '||period||', 'swing', 'them', '||comma||', 'just', 'swing', 'them', '||period||', '||return||', '||return||', 'sam:', 'i', "can't", 'do', 'it', '||period||', "it's", 'hard', '||exclammark||', '||return||', '||return||', 'george:', 'still', 'a', 'little', 'summer', 'left', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'holland', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'also', 'wearing', 'a', 'moustache', '||rightparen||', 'what', 'do', 'you', 'mean', '||comma||', "'what", 'is', 'it', '||questionmark||', "'", "it's", 'a', 'country', 'right', 'next', 'to', 'belgium', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "that's", 'the', 'netherlands', '||period||', '||return||', '||return||', 'jerry:', 'holland', '*is*', 'the', 'netherlands', '||period||', '||return||', '||return||', 'george:', 'then', 'who', 'are', 'the', 'dutch', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picking', 'at', 'his', 'moustache', '||rightparen||', 'you', 'know', 'i', 'cannot', 'stand', 'this', 'thing', 'anymore', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||comma||', 'i', 'hate', 'it', 'too', '||period||', 'i', 'feel', 'like', 'an', 'out', 'of', 'work', 'porn', 'star', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', '||comma||', 'we', 'should', 'have', 'taken', 'some', 'kind', 'of', 'vacation', '||period||', '||return||', '||return||', 'george:', 'well', 'why', "didn't", 'we', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'you', 'said', 'this', 'would', 'be', 'better', '||period||', 'remember', '||questionmark||', 'a', 'vacation', 'from', 'ourselves', '||period||', "that's", 'what', 'you', 'said', '||period||', '||return||', '||return||', 'george:', 'what', 'if', 'we', 'grew', 'muttonchops', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', 'buzz', 'cuts', '||questionmark||', 'parachute', 'pants', '||exclammark||', '||return||', '||return||', 'jerry:', 'stop', 'it', '||comma||', 'george', '||period||', 'stop', 'it', '||period||', "i'm", 'sorry', '||comma||', "you've", 'gotta', 'get', 'a', 'job', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'resigned', '||rightparen||', 'dammit', '||period||', '||return||', '||return||', 'george:', 'hey', 'hey', 'hey', '||comma||', 'check', 'me', 'out', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'more', 'crutches', '||comma||', 'that', 'must', 'be', 'a', 'relief', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'with', 'crutches', 'everyone', 'has', 'questions', '||period||', '||return||', '||return||', 'jerry:', 'not', 'with', 'a', 'cane', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||comma||', 'with', 'crutches', "it's", 'a', 'funny', 'story', '||comma||', 'with', 'a', 'cane', "it's", 'a', 'sad', 'story', '||period||', 'you', 'through', 'with', 'those', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'is', 'a', 'sad', 'story', '||period||', 'hey', '||comma||', 'you', 'should', 'have', 'been', 'here', 'tonight', '||period||', 'some', 'guy', 'from', 'nbc', 'saw', 'my', 'set', '||comma||', 'he', 'wants', 'me', 'to', 'do', 'a', 'showcase', '||period||', 'i', 'might', 'have', 'another', 'shot', 'at', 'a', 'pilot', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "we're", 'back', 'in', '||exclammark||', '||return||', '||return||', 'jerry:', 'we', '||questionmark||', 'no', '||period||', '||return||', '||return||', 'club', 'announcer:', '||leftparen||', 'off', 'camera', '||rightparen||', 'ladies', 'and', 'gentlemen', '||comma||', 'kenny', 'bania', '||period||', '||return||', '||return||', 'bania:', 'thank', 'you', '||comma||', 'thank', 'you', '||comma||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'jerry', '||comma||', 'did', 'ya', 'see', 'me', 'up', 'there', '||questionmark||', 'i', 'was', 'killing', '||comma||', 'jerry', '||period||', 'killing', '||period||', 'i', 'killed', '||period||', '||return||', '||return||', 'jerry:', 'killed', '||questionmark||', '||return||', '||return||', 'bania:', 'killed', '||period||', '||leftparen||', 'pause', '||rightparen||', "i'm", 'gonna', 'go', 'pick', 'up', 'some', 'chicks', '||period||', 'good', '||dash||', 'looking', 'ones', '||comma||', 'too', '||exclammark||', '||leftparen||', 'walking', 'away', '||rightparen||', 'hey', '||comma||', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'killed', '||period||', 'because', 'i', 'killed', 'first', 'and', 'warmed', 'up', 'the', 'crowd', '||period||', "he's", 'like', 'that', 'fish', 'that', 'attaches', 'himself', 'to', 'the', 'shark', '||period||', '||return||', '||return||', 'george:', 'and', "you're", 'the', 'shark', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "i'm", 'the', 'shark', 'and', "he's", 'the', 'fish', 'eating', 'my', 'laughs', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', 'how', 'a', 'fish', 'could', 'eat', 'laughs', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'glad', 'i', 'brought', 'it', 'up', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'any', 'shredded', 'coconut', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', "kramer's", 'moustache', '||rightparen||', 'uh', '||comma||', "we're", 'not', 'doing', 'that', 'anymore', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||comma||', 'right', '||period||', '||leftparen||', 'walks', 'out', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'oh', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'job', 'interview', '||period||', 'they', 'want', 'to', 'see', 'me', 'this', 'afternoon', '||period||', '||return||', '||return||', 'jerry:', 'so', "what's", 'this', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'beautiful', '||period||', "it's", 'in', 'sports', '||period||', '||return||', '||return||', 'jerry:', 'knicks', '||questionmark||', 'rangers', '||questionmark||', '||return||', '||return||', 'george:', 'playground', 'equipment', '||period||', '||return||', '||return||', 'jerry:', 'welcome', 'back', 'to', 'the', 'show', '||period||', '||return||', '||return||', 'george:', 'yeah', 'haha', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'this', 'is', 'better', '||period||', 'so', '||comma||', 'you', 'got', 'any', 'shredded', 'coconut', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'holding', 'his', 'cane', '||rightparen||', 'i', 'gotta', 'hobble', '||period||', '||leftparen||', 'walks', 'out', '||rightparen||', '||return||', '||return||', 'kramer:', 'd', '||dash||', 'd', '||dash||', 'd', '||dash||', 'd', '||period||', 'i', 'gotta', 'switch', 'shaving', 'creams', '||period||', "i'm", 'getting', 'no', 'protection', '||period||', '||return||', '||return||', 'jerry:', 'what', 'kind', 'do', 'you', 'use', '||questionmark||', '||return||', '||return||', 'kramer:', 'whatever', 'you', 'get', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nods', '||rightparen||', 'look', '||comma||', 'postcard', 'from', 'elaine', 'from', 'europe', '||period||', '||return||', '||return||', 'kramer:', "don't", 'tell', 'me', "she's", 'dragging', 'another', 'poor', 'guy', 'across', 'europe', '||period||', '||return||', '||return||', 'jerry:', 'remember', 'david', 'puddy', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'the', 'face', '||dash||', 'painting', 'auto', 'mechanic', '||period||', 'so', "she's", 'dating', 'him', 'again', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'guess', "she's", 'batted', 'around', 'and', "she's", 'back', 'at', 'the', 'top', 'of', 'the', 'order', '||period||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'a', 'month', 'in', 'europe', 'with', 'elaine', '||period||', '||leftparen||', 'whistles', '||rightparen||', 'that', "guy's", 'coming', 'home', 'in', 'a', 'body', 'bag', '||period||', '||return||', '||return||', 'puddy:', 'well', '||comma||', "let's", 'see', '||comma||', "i've", 'got', 'a', 'ten', 'kroner', '||comma||', 'a', 'five', 'kroner', '||comma||', 'a', 'twenty', 'kroner', '||questionmark||', 'no', 'wait', '||comma||', "that's", 'another', 'ten', 'kroner', '||period||', 'a', 'fimty', 'kroner', '||questionmark||', 'how', 'much', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'have', 'to', 'break', 'up', '||period||', '||return||', '||return||', 'puddy:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'take', 'this', 'anymore', '||exclammark||', 'i', "don't", 'want', 'to', 'hear', 'how', 'interesting', 'the', 'change', 'with', 'the', 'hole', 'in', 'it', 'is', '||exclammark||', 'and', 'if', 'you', 'tell', 'me', 'what', 'time', 'it', 'is', 'in', 'new', 'york', 'again', '||comma||', 'you', 'are', 'going', 'home', 'in', 'a', 'body', 'bag', '||exclammark||', '||return||', '||return||', 'puddy:', 'well', 'what', 'about', 'you', '||questionmark||', 'what', 'do', 'you', 'think', 'the', 'gap', 'in', 'rome', 'has', "that's", 'not', 'in', 'the', 'gap', 'on', 'broadway', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'alright', 'listen', '||period||', 'forget', 'about', 'the', 'gap', 'because', 'we', 'are', 'through', '||exclammark||', '||return||', '||return||', 'puddy:', 'fine', '||exclammark||', '||return||', '||return||', 'elaine:', 'fine', '||exclammark||', '||return||', '||return||', 'cab', 'driver:', 'okay', '||comma||', 'terminal', 'three', '||period||', 'have', 'a', 'nice', 'flight', '||period||', '||return||', '||return||', 'captain:', 'ladies', 'and', 'gentlemen', '||comma||', 'our', 'flight', 'time', '||comma||', 'with', 'stopovers', '||comma||', 'will', 'be', 'approximately', '22', 'hours', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'flight', 'attendant', '||rightparen||', 'hey', '||comma||', 'you', 'gonna', 'bust', 'out', 'that', 'drink', 'cart', 'or', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'taking', 'this', 'lace', 'out', '||period||', 'it', 'came', 'undone', 'and', 'touched', 'the', 'floor', 'of', 'a', "men's", 'room', '||period||', "that's", 'the', 'end', 'of', 'that', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'see', "bania's", 'set', 'last', 'night', '||questionmark||', "'cause", 'i', 'read', 'on', 'the', 'internet', 'he', 'killed', '||period||', '||return||', '||return||', 'jerry:', 'he', 'killed', '||period||', 'he', 'only', 'does', 'well', 'when', 'he', 'has', 'me', 'for', 'a', 'lead', '||dash||', 'in', '||period||', "he's", 'a', 'time', 'slot', 'hit', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'gotta', 'give', 'him', 'some', 'credit', '||period||', '||leftparen||', 'starts', 'rubbing', 'a', 'stick', 'of', "jerry's", 'butter', 'across', 'his', 'face', '||rightparen||', "you're", 'just', 'being', 'totally', 'ridiculous', '||period||', '||leftparen||', 'keeps', 'rubbing', '||rightparen||', "i'll", 'see', 'you', 'later', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', 'a', 'minute', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'do', 'i', 'have', 'to', 'ask', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'ran', 'out', 'of', 'butter', 'so', 'i', 'had', 'to', 'borrow', 'yours', '||period||', 'anything', 'else', '||comma||', 'mr', '||period||', 'nosy', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'buttering', 'your', 'face', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'shaving', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'moses', 'smell', 'the', 'roses', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "it's", 'vastly', 'superior', 'to', 'any', 'commercial', 'shaving', 'cream', '||period||', 'the', 'shave', 'is', 'close', 'and', 'clean', '||comma||', 'and', 'the', 'natural', 'emolients', 'keep', 'my', 'skin', 'silky', '||dash||', 'smooth', '||period||', 'now', 'feel', 'my', 'face', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'feel', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'kramer:', 'feel', 'it', '||period||', 'feel', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'places', 'two', 'slices', 'of', 'bread', 'against', "kramer's", 'face', '||rightparen||', 'that', 'is', 'close', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'the', 'job', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'george', '||comma||', 'everybody', 'here', 'at', 'play', 'now', 'is', 'very', 'impressed', 'with', 'you', '||period||', 'i', '||comma||', "i'm", 'sure', 'you', 'heard', 'that', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'no', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'now', 'i', "don't", 'want', 'you', 'to', 'think', 'that', "anyone's", 'gonna', 'treat', 'you', 'any', 'differently', 'just', 'because', 'of', 'your', '||comma||', 'uh', '||comma||', '||leftparen||', 'clears', 'his', 'throat', '||rightparen||', 'handicap', '||period||', '||return||', '||return||', 'george:', 'handicap', '||questionmark||', '||leftparen||', 'gesturing', 'to', 'his', 'cane', '||rightparen||', 'oh', '||comma||', "i'm", 'not', 'handicapped', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', "i'm", 'sorry', '||period||', 'differently', '||comma||', 'uh', '||comma||', 'advantaged', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', "didn't", 'mean', 'that', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'of', 'course', 'you', 'will', 'have', 'your', 'own', 'private', '||comma||', 'fully', 'equipped', 'bathroom', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shocked', '||rightparen||', 'when', 'do', 'i', 'start', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'whenever', 'you', 'feel', 'that', "you're", 'able', '||period||', '||leftparen||', 'rises', 'to', 'show', 'george', 'out', '||rightparen||', 'um', '||comma||', 'you', 'need', 'a', 'hand', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'thomassoulo', 'helps', 'george', 'get', 'up', '||rightparen||', 'yeah', '||comma||', 'what', 'the', 'hell', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'the', 'job', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "it's", 'fantastic', '||period||', 'i', 'love', 'the', 'people', 'over', 'there', '||period||', 'they', '||dash||', 'they', 'treat', 'me', 'so', 'great', '||period||', 'you', 'know', 'they', 'think', "i'm", 'handicapped', '||comma||', 'they', 'gave', 'me', 'this', 'incredible', 'office', '||comma||', 'a', 'great', 'view', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'on', '||comma||', 'they', 'think', "you're", 'handicapped', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||comma||', 'well', '||comma||', 'because', 'of', 'the', 'cane', '||period||', 'you', 'should', 'see', 'the', 'bathroom', 'they', 'gave', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'can', 'you', 'do', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "let's", 'face', 'it', '||comma||', "i've", 'always', 'been', 'handicapped', '||period||', "i'm", 'just', 'now', 'getting', 'the', 'recognition', 'for', 'it', '||period||', 'name', 'one', 'thing', 'i', 'have', 'that', 'puts', 'me', 'in', 'a', 'position', 'of', 'advantage', '||period||', 'huh', '||questionmark||', 'there', 'was', 'a', 'guy', 'that', 'worked', 'at', 'the', 'yankees', '||dash||', '||dash||', 'no', 'arms', '||exclammark||', 'he', 'got', 'more', 'work', 'done', 'than', 'i', 'did', '||comma||', 'made', 'more', 'money', '||comma||', 'had', 'a', 'wife', '||comma||', 'a', 'family', '||comma||', 'drove', 'a', 'better', 'car', 'than', 'i', 'did', '||period||', '||return||', '||return||', 'jerry:', 'he', 'drove', 'a', 'car', 'with', 'no', 'arms', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'i', 'made', 'up', 'the', 'part', 'about', 'the', 'car', '||comma||', 'but', 'the', 'rest', 'is', 'true', '||period||', 'and', 'he', 'hated', 'me', 'anyway', '||exclammark||', '||return||', '||return||', 'jerry:', 'do', 'you', 'know', 'how', 'hard', "it's", 'getting', 'just', 'to', 'tell', 'people', 'i', 'know', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'love', 'that', 'bathroom', '||period||', "it's", 'got', 'that', 'high', '||comma||', 'high', 'toilet', '||period||', 'i', 'feel', 'like', 'a', 'gargoyle', 'perched', 'on', 'the', 'ledge', 'of', 'a', 'building', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'they', 'hooked', 'me', 'up', '||period||', '||return||', '||return||', 'george:', "what's", 'with', 'all', 'the', 'butter', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'shaving', 'with', 'it', '||comma||', 'and', 'you', 'know', 'what', 'i', 'discovered', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'can', 'eat', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'my', 'face', 'feels', 'so', 'good', '||comma||', "i'm", 'gonna', 'use', 'it', 'all', 'over', 'my', 'body', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', "it's", 'bania', 'and', 'jenna', '||period||', '||return||', '||return||', 'george:', 'who', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'tooth', 'brush', 'in', 'the', 'toilet', 'bowl', '||period||', '||return||', '||return||', 'bania:', 'hey', 'jerry', '||comma||', 'this', 'is', 'jenna', '||period||', 'pretty', 'good', '||dash||', "lookin'", 'huh', '||questionmark||', '||return||', '||return||', 'jenna:', 'uh', '||comma||', "jerry's", 'the', 'guy', 'that', 'i', 'dated', 'right', 'before', 'you', '||period||', '||return||', '||return||', 'bania:', 'oh', '||period||', 'this', 'is', 'awkward', '||period||', '||return||', '||return||', 'jenna:', "don't", 'worry', '||comma||', 'kenny', '||period||', 'after', 'dating', 'jerry', '||comma||', "you're", 'a', 'pleasure', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'believe', 'this', '||period||', '||return||', '||return||', 'george:', 'you', 'miss', 'her', '||comma||', "don't", 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', "he's", 'riding', 'my', 'coattails', 'again', '||period||', "he's", 'getting', 'everything', 'off', 'me', '||comma||', 'first', 'laughs', 'now', 'ladies', '||period||', '||return||', '||return||', 'george:', 'you', 'miss', 'her', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'to', 'flight', 'attendant', '||rightparen||', 'you', 'know', 'i', 'think', 'ultimately', '||comma||', "i'm", 'upset', 'with', 'myself', '||period||', 'i', 'knew', 'what', 'i', 'was', 'getting', 'into', '||comma||', "she's", 'a', 'bitter', '||comma||', 'unstable', 'person', '||period||', 'i', 'mean', 'the', 'sex', 'was', 'good', '||period||', "i'm", 'sure', 'it', 'was', 'fine', 'for', 'her', '||period||', 'i', 'need', 'more', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'another', 'passenger', '||rightparen||', 'huh', '||period||', 'you', 'believing', 'this', '||questionmark||', '||return||', '||return||', 'passenger:', 'excuse', 'me', '||comma||', 'i', '||period||', '||period||', '||period||', 'i', 'was', 'sleeping', '||period||', '||return||', '||return||', 'elaine:', 'you', 'missed', 'quite', 'a', 'performance', '||period||', '||return||', '||return||', 'passenger:', '||leftparen||', 'disbelieving', '||rightparen||', "that's", 'my', 'apple', 'juice', '||period||', '||return||', '||return||', 'jerry:', "someone's", 'cooking', '||period||', '||return||', '||return||', 'newman:', 'hello', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'you', 'know', '||comma||', 'old', 'friend', '||comma||', 'sometimes', 'i', 'ponder', 'this', 'silly', 'gulf', 'between', 'us', 'and', 'i', 'say', '||comma||', '||quotemark||', 'why', '||questionmark||', '||quotemark||', 'are', 'we', 'really', 'so', 'different', '||period||', 'for', 'what', 'is', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cutting', 'in', '||rightparen||', "i'm", 'not', 'the', 'one', 'doing', 'the', 'cooking', '||comma||', 'newman', '||period||', '||return||', '||return||', 'newman:', 'damn', 'you', 'seinfeld', '||period||', 'you', 'useless', 'pustule', '||period||', 'um', '||comma||', "somebody's", 'got', 'something', 'on', 'the', 'griddle', '||period||', 'maybe', "it's", 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "he's", 'up', 'on', 'the', 'roof', 'getting', 'some', 'sun', 'with', 'the', 'butter', '||leftparen||', 'pauses', '||rightparen||', 'oh', 'no', '||exclammark||', '||return||', '||return||', 'newman:', 'butter', '||questionmark||', '||return||', '||return||', 'passenger:', '||leftparen||', 'explaining', 'the', 'coins', 'to', 'elaine', '||rightparen||', 'this', 'is', 'the', 'fimty', 'kroner', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'passenger', '||rightparen||', 'oh', '||questionmark||', 'you', 'know', 'my', 'last', 'boyfriend', '||comma||', 'he', 'had', 'a', 'real', 'kroner', 'comprehension', 'problem', '||period||', 'know', 'what', 'i', 'mean', '||questionmark||', 'a', 'real', 'cement', 'head', '||period||', '||return||', '||return||', 'woman:', 'david', '||comma||', 'you', 'are', 'so', 'funny', '||period||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', 'i', 'know', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'grabbing', 'puddy', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'puddy:', "it's", 'a', 'long', 'flight', '||comma||', 'elaine', '||period||', 'i', 'had', 'to', 'get', 'on', 'with', 'my', 'life', '||period||', '||return||', '||return||', 'elaine:', 'by', 'making', 'time', 'with', 'some', 'floozy', 'across', 'the', 'aisle', '||questionmark||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', "that's", 'right', '||period||', 'well', '||comma||', "what's", 'going', 'on', 'over', 'there', 'with', 'you', 'and', '||comma||', 'uh', '||comma||', 'vegetable', 'lasagna', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'guy', '||questionmark||', "he's", 'an', 'idiot', '||period||', 'he', "doesn't", 'mean', 'anything', 'to', 'me', '||period||', '||return||', '||return||', 'passenger:', '||leftparen||', 'hereon', 'known', 'as', 'vegetable', 'lasagna', '||rightparen||', 'i', 'can', 'hear', 'you', '||period||', '||return||', '||return||', 'puddy:', 'well', '||comma||', 'she', "doesn't", 'mean', 'anything', 'to', 'me', 'either', '||period||', 'if', 'it', 'were', 'up', 'to', 'me', '||comma||', "we'd", 'still', 'be', 'together', '||period||', '||return||', '||return||', 'elaine:', 'well', 'maybe', 'i', 'feel', 'the', 'same', 'way', '||period||', '||return||', '||return||', 'puddy:', 'ok', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', 'so', 'now', 'what', '||questionmark||', '||return||', '||return||', 'puddy:', "let's", 'make', 'out', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'man', '||period||', 'i', 'think', 'i', 'cooked', 'myself', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'your', 'skin', '||period||', '||return||', '||return||', 'kramer:', 'stick', 'a', 'fork', 'in', 'me', '||comma||', 'jerry', '||period||', "i'm", 'done', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'fried', '||period||', '||return||', '||return||', 'jerry:', 'technically', '||comma||', "you're", 'sauted', '||period||', 'so', '||comma||', 'what', 'are', 'you', 'doing', 'for', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'just', 'gotta', 'keep', 'my', 'skin', 'moist', 'so', 'i', "don't", 'dry', 'out', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'what', 'the', 'doctor', 'said', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'read', 'an', 'article', 'in', 'bon', 'appetit', 'magazine', '||period||', '||leftparen||', 'grabs', 'a', 'baster', '||rightparen||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'yea', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'how', 'you', 'doing', '||questionmark||', '||leftparen||', 'kramer', 'leaves', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'sniffing', '||rightparen||', 'hmm', '||period||', 'game', 'hen', '||questionmark||', '||return||', '||return||', 'jerry:', 'kind', 'of', '||period||', 'nice', 'limp', '||comma||', "you're", 'bringing', 'your', 'work', 'home', 'with', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'fake', 'limp', 'on', 'my', 'right', '||period||', 'this', 'is', 'a', 'real', 'limp', 'because', 'i', 'sprained', 'my', 'ankle', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'was', 'buttering', 'myself', 'up', 'for', 'a', 'nice', 'shave', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', 'not', 'you', 'too', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'must', 'have', 'dripped', 'some', 'on', 'the', 'floor', 'and', 'i', 'slipped', 'and', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "what's", 'good', 'for', 'that', '||questionmark||', 'relish', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'yeah', '||comma||', 'this', 'is', 'jerry', 'seinfeld', '||period||', 'what', '||questionmark||', 'no', '||period||', 'no', '||exclammark||', 'no', '||exclammark||', 'no', '||exclammark||', '||exclammark||', 'no', '||exclammark||', '||exclammark||', '||exclammark||', 'thank', 'you', '||period||', '||leftparen||', 'hangs', 'up', '||period||', '||rightparen||', 'i', "don't", 'believe', 'this', '||period||', "they've", 'added', 'bania', 'to', 'the', 'network', 'showcase', 'and', "he's", 'going', 'on', 'right', 'after', 'me', '||period||', '||return||', '||return||', 'george:', 'so', 'what', '||comma||', "he's", 'got', 'a', 'couple', 'of', 'good', 'jokes', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'like', 'what', '||comma||', 'ovaltine', '||questionmark||', 'why', 'do', 'dogs', 'drink', 'out', 'of', 'the', 'toilet', '||questionmark||', 'shopping', 'carts', 'with', 'one', 'bad', 'wheel', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'true', '||comma||', 'that', 'always', 'happens', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', "that's", 'funny', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'i', 'like', 'stuff', 'you', "don't", 'have', 'to', 'think', 'about', 'too', 'much', '||period||', '||return||', '||return||', 'jerry:', 'you', 'like', "bania's", 'act', '||period||', "you're", 'a', 'closet', 'bania', 'fan', '||exclammark||', '||return||', '||return||', 'george:', 'maybe', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'gonna', 'puke', '||period||', '||return||', '||return||', 'george:', 'puke', '||exclammark||', "that's", 'a', 'funny', 'word', '||period||', 'puke', '||period||', '||leftparen||', 'laughing', '||rightparen||', 'puke', '||exclammark||', "don't", 'have', 'to', 'think', 'about', 'that', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'believe', 'we', 'broke', 'up', 'like', 'that', '||period||', '||return||', '||return||', 'puddy:', 'it', 'was', 'stupid', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'want', 'something', 'to', 'read', '||questionmark||', '||return||', '||return||', 'puddy:', 'no', "i'm", 'good', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'are', 'you', 'going', 'to', 'take', 'a', 'nap', 'or', '||dash||', '||dash||', '||return||', '||return||', 'puddy:', 'no', '||period||', '||return||', '||return||', 'elaine:', "you're", 'just', 'going', 'to', 'sit', 'there', 'staring', 'at', 'the', 'back', 'of', 'a', 'seat', '||questionmark||', '||return||', '||return||', 'puddy:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "that's", 'it', '||exclammark||', 'i', 'cannot', 'take', 'this', '||exclammark||', 'i', 'mean', '||comma||', 'look', 'at', 'this', '||comma||', 'nothing', 'has', 'changed', '||period||', "we've", 'been', 'back', 'together', 'two', 'hours', '||comma||', "we're", 'having', 'the', 'same', 'problems', 'we', 'had', '12', 'hours', 'ago', '||period||', '||return||', '||return||', 'puddy:', 'tell', 'me', 'about', 'it', '||comma||', 'i', "don't", 'know', 'why', 'i', 'ever', 'took', 'you', 'back', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'please', '||exclammark||', 'i', 'took', 'you', 'back', '||period||', 'you', 'know', 'it', '||comma||', 'i', 'know', 'it', '||comma||', 'vegetable', 'lasagna', 'here', 'knows', 'it', '||period||', '||return||', '||return||', 'vegetable', 'lasagna:', 'please', '||comma||', 'please', '||comma||', 'i', "don't", 'want', 'to', 'get', 'involved', '||period||', '||return||', '||return||', 'elaine:', 'ugh', '||comma||', 'i', 'hope', 'a', 'giant', 'mountain', 'rises', 'out', 'of', 'the', 'ocean', 'and', 'we', 'just', 'ram', 'right', 'into', 'it', 'and', 'end', 'this', 'whole', 'thing', '||exclammark||', '||return||', '||return||', 'vegetable', 'lasagna:', 'oh', 'god', '||period||', '||return||', '||return||', 'passenger', '2:', 'ow', '||exclammark||', 'ow', '||exclammark||', '||exclammark||', '||return||', '||return||', 'newman:', 'how', 'much', 'longer', 'you', 'gonna', 'be', '||comma||', "i'm", 'starving', 'here', '||period||', '||return||', '||return||', 'kramer:', 'just', 'a', 'few', 'more', 'squirts', '||period||', 'cause', 'i', 'gotta', 'stay', 'juicy', '||period||', '||return||', '||return||', 'newman:', 'that', 'smell', '||period||', "it's", 'still', 'with', 'you', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'baked', 'on', 'in', '||period||', 'hey', '||comma||', 'put', 'another', 'stick', 'of', 'butter', 'in', '||period||', '||return||', '||return||', 'newman:', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'stir', 'it', 'up', 'so', 'it', 'melts', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yea', 'that', 'feels', 'good', '||period||', 'ahh', '||comma||', 'now', "i'm", 'simmering', '||period||', '||return||', '||return||', 'newman:', "i'll", 'meet', 'you', 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'good', 'morning', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'good', 'morning', '||comma||', 'sir', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'is', 'there', 'something', 'wrong', 'with', 'your', 'other', 'leg', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', "that's", 'just', 'the', 'old', '||comma||', 'uh', '||comma||', 'the', 'old', 'handicap', 'acting', 'up', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'but', 'your', "cane's", 'on', 'the', 'wrong', 'side', '||period||', '||return||', '||return||', 'george:', 'oh', 'well', '||comma||', "that's", '||comma||', 'uh', '||comma||', 'thats', 'just', 'because', "we're", '||comma||', 'uh', '||comma||', 'standing', 'on', 'opposite', 'sides', '||period||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'see', '||comma||', 'uh', '||comma||', 'when', 'we', 'met', '||comma||', 'i', 'was', 'over', 'there', 'and', '||comma||', 'uh', '||comma||', 'you', 'were', 'over', 'here', '||comma||', 'so', 'the', 'image', '||comma||', 'uh', '||comma||', 'the', 'image', 'was', 'reversed', '||comma||', 'like', '||comma||', 'uh', '||comma||', 'like', 'in', 'the', 'mirror', '||period||', '||return||', '||return||', 'george:', 'see', '||questionmark||', 'this', 'looks', 'right', 'to', 'you', '||comma||', "doesn't", 'it', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'uh', '||comma||', 'yeah', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'passes', 'cane', 'from', 'right', 'to', 'left', 'and', 'back', 'a', 'few', 'times', '||rightparen||', 'but', '||comma||', 'see', 'here', '||period||', 'right', '||period||', 'wrong', '||period||', 'right', '||period||', 'wrong', '||period||', 'right', '||period||', 'right', '||period||', 'wrong', '||dash||', '||dash||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'will', 'you', 'stop', 'it', '||comma||', 'george', '||questionmark||', 'just', 'stop', 'it', '||exclammark||', 'i', 'think', 'i', 'can', 'see', "what's", 'going', 'on', 'here', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "you're", 'not', 'gonna', 'believe', 'what', 'happened', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mugged', 'stephen', 'hawking', '||questionmark||', '||return||', '||return||', 'george:', 'play', 'now', 'thinks', 'i', 'got', 'problems', 'in', 'both', 'legs', '||period||', 'my', 'own', 'personal', 'rascal', '||comma||', 'jerry', '||period||', 'on', 'the', 'house', '||period||', '||return||', '||return||', 'jerry:', 'well', 'it', 'must', 'be', 'comforting', 'to', 'know', "you'll", 'be', 'going', 'straight', 'to', 'hell', 'at', 'no', 'more', 'than', 'three', 'miles', 'an', 'hour', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'lainie', '||comma||', "how's", 'the', 'trip', 'going', '||questionmark||', '||return||', '||return||', 'elaine:', 'awful', '||period||', 'this', 'trip', 'was', 'a', '*huge*', 'mistake', '||period||', 'huge', '||exclammark||', '||return||', '||return||', 'vegetable', 'lasagna:', 'please', "don't", 'shout', '||period||', 'i', "can't", 'take', 'it', '||period||', '||return||', '||return||', 'jerry:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'vegetable', 'lasagna', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'elaine:', 'vegetable', 'lasagna', '||exclammark||', '||return||', '||return||', 'vegetable', 'lasagna:', 'my', 'name', 'is', 'magnus', '||period||', '||return||', '||return||', 'elaine:', 'shut', 'up', 'or', "i'll", 'snap', 'you', 'in', 'half', 'and', 'stuff', 'you', 'in', 'the', 'overhead', '||exclammark||', '||return||', '||return||', 'jerry:', 'get', 'me', 'some', 'duty', 'free', 'kahlua', '||period||', '||return||', '||return||', 'george:', "how's", 'the', 'trip', '||questionmark||', '||return||', '||return||', 'jerry:', 'sounded', 'good', '||period||', '||return||', '||return||', 'george:', 'well', '||period||', 'gotta', 'motor', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'if', 'you', 'got', 'any', 'juice', 'left', '||comma||', 'you', 'might', 'wanna', 'roll', 'by', 'the', 'big', 'showcase', 'tonight', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'you', 'still', 'going', 'on', 'in', 'front', 'of', 'bania', '||comma||', 'eh', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'and', "i'll", 'tell', 'you', 'what', '||period||', "i'm", 'feeling', 'a', 'little', 'off', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||leftparen||', 'jerry', 'grins', '||rightparen||', "you're", 'not', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', "i'm", 'taking', 'a', 'dive', '||period||', '||return||', '||return||', 'george:', "you're", 'throwing', 'the', 'set', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'laying', 'down', '||exclammark||', 'then', "we'll", 'see', 'how', 'he', 'does', 'up', 'there', '||comma||', 'without', 'all', 'the', 'assistance', '||period||', '||return||', '||return||', 'george:', 'listen', 'jerry', '||period||', 'with', 'all', 'due', 'respect', '||comma||', "bania's", 'voice', 'is', 'the', 'voice', 'of', 'a', 'new', 'generation', '||period||', 'my', 'generation', '||period||', '||return||', '||return||', 'jerry:', "we're", 'four', 'months', 'apart', '||period||', '||return||', '||return||', 'george:', 'nevertheless', '||period||', 'his', 'time', 'has', 'come', '||period||', '||return||', '||return||', 'george:', 'now', 'if', 'you', 'will', 'kindly', 'help', 'me', 'unwedge', 'my', 'front', 'wheel', '||comma||', "i'll", 'be', 'on', 'my', 'way', '||period||', '||return||', '||return||', 'newman:', 'butter', '||period||', 'kramer', '||period||', 'butter', '||period||', 'kramer', '||period||', '||return||', '||return||', 'kramer/turkey:', '||leftparen||', 'waving', 'wing', '||rightparen||', 'hey', 'buddy', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'george', 'tells', 'me', "you're", 'gonna', 'throw', 'your', 'set', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'choochie', '||period||', "let's", 'see', 'how', 'bania', 'does', 'without', 'the', 'cushy', 'timeslot', '||period||', '||return||', '||return||', 'club', 'announcer:', '||leftparen||', 'oc', '||rightparen||', 'ladies', 'and', 'gentlemen', '||comma||', 'jerry', 'seinfeld', '||exclammark||', '||return||', '||return||', 'jerry:', 'if', "you'll", 'excuse', 'me', '||period||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'oc', '||rightparen||', 'hey', 'everybody', '||exclammark||', "who's", 'ready', 'to', 'laugh', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'deal', 'with', 'lampshades', '||questionmark||', 'i', 'mean', 'if', "it's", 'a', 'lamp', '||comma||', 'why', 'do', 'you', 'want', 'shade', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', "what's", 'with', 'people', 'getting', 'sick', '||questionmark||', '||return||', '||return||', 'newman:', 'hee', 'hee', '||exclammark||', 'yeah', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'mean', '||comma||', "what's", 'the', 'deal', 'with', 'cancer', '||questionmark||', '||return||', '||return||', 'man', 'in', 'audience:', 'i', 'have', 'cancer', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'tough', 'crowd', '||period||', '||return||', '||return||', 'man:', 'hey', '||comma||', 'hey', '||exclammark||', 'you', 'dented', 'my', 'ride', '||period||', '||return||', '||return||', 'george:', 'whatcha', 'got', 'there', '||comma||', 'the', '4', '||dash||', 'volt', '||questionmark||', 'heh', '||comma||', 'i', 'did', 'you', 'a', 'favor', '||period||', '||return||', '||return||', 'man:', 'how', 'about', 'i', 'do', 'you', 'a', 'favor', 'upside', 'your', 'head', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', '||questionmark||', '||return||', '||return||', 'man:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'man:', 'hey', '||exclammark||', '||return||', '||return||', 'woman:', 'get', 'the', 'bikes', '||period||', '||return||', '||return||', 'bania:', 'ouch', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', "wasn't", 'so', 'bad', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'i', 'bombed', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'you', 'had', 'some', 'good', 'stuff', '||period||', 'the', 'cancer', 'bit', '||questionmark||', 'i', 'mean', '||comma||', 'it', 'was', 'edgy', '||comma||', 'it', 'was', 'not', 'my', 'sort', 'of', 'thing', 'but', 'some', 'of', 'those', 'people', 'out', 'there', '||comma||', 'they', 'really', 'liked', 'it', '||period||', '||return||', '||return||', 'jerry:', 'like', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'guy', 'who', 'yelled', 'out', '||period||', '||return||', '||return||', 'jerry:', 'he', '*had*', 'cancer', '||exclammark||', '||return||', '||return||', 'kramer:', 'and', 'laughter', 'is', 'the', 'best', 'medicine', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'sorry', 'kenny', '||period||', 'guess', 'you', 'got', 'your', 'work', 'cut', 'out', 'for', 'you', '||period||', '||return||', '||return||', 'club', 'announcer:', '||leftparen||', 'oc', '||rightparen||', 'ladies', 'and', 'gentlemen', '||comma||', 'kenny', 'bania', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||comma||', 'he', 'could', 'have', 'used', 'your', 'laugh', '||period||', 'he', 'was', 'a', 'big', 'turkey', 'out', 'there', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'salivating', '||rightparen||', 'turkey', '||questionmark||', '||return||', '||return||', 'kramer:', 'a', 'big', 'fat', 'turkey', '||period||', '||return||', '||return||', 'newman:', "i'm", 'sorry', 'i', 'missed', 'that', '||period||', '||return||', '||return||', 'kramer:', 'i', 'tell', 'ya', '||comma||', 'he', 'worked', 'so', 'hard', 'and', 'then', 'he', 'just', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'what', 'is', 'this', '||comma||', 'oregano', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', 'at', 'me', '||exclammark||', "i'm", 'all', 'covered', 'in', 'oregano', 'and', 'parmesan', '||comma||', 'and', "it's", 'sticking', 'to', 'me', 'because', 'of', 'the', 'butter', '||exclammark||', 'look', 'at', 'me', '||exclammark||', '||return||', '||return||', 'newman:', 'here', '||period||', 'hold', 'this', '||period||', '||return||', '||return||', 'kramer:', 'what', 'is', 'this', '||comma||', 'parsley', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'the', 'sweet', 'stench', 'of', 'failure', '||period||', '||return||', '||return||', 'kramer:', 'ah', 'you', 'bit', 'me', '||period||', 'get', 'off', 'of', 'me', '||comma||', 'get', 'off', 'of', 'me', '||exclammark||', '||return||', '||return||', 'man:', 'now', 'i', 'got', 'you', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'george', '||questionmark||', 'your', 'legs', '||exclammark||', '||return||', '||return||', 'george:', 'are', 'you', 'a', 'religious', 'man', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'thomassoulo:', 'no', '||period||', '||return||', '||return||', 'man:', 'eat', 'hickory', '||exclammark||', '||exclammark||', '||return||', '||return||', 'bania:', 'hey', 'jerry', '||comma||', 'didja', 'see', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'ouch', '||period||', '||return||', '||return||', 'stu:', 'kenny', '||exclammark||', 'there', 'you', 'are', '||period||', 'jay', 'shermak', 'and', 'stu', 'crespi', 'from', 'nbc', '||period||', 'listen', '||comma||', 'kenny', '||period||', 'really', 'funny', 'out', 'there', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'jay:', 'that', 'thing', 'you', 'did', 'having', 'the', 'two', 'guys', 'running', 'through', '||questionmark||', 'i', 'love', 'stuff', 'you', "don't", 'have', 'to', 'think', 'too', 'much', 'about', '||period||', '||return||', '||return||', 'stu:', 'give', 'us', 'a', 'call', '||period||', 'we', 'want', 'to', 'be', 'in', 'the', 'kenny', 'bania', 'business', '||period||', '||return||', '||return||', 'jay:', 'by', 'the', 'way', '||comma||', 'jerry', '||questionmark||', 'the', 'suspenders', '||questionmark||', 'a', 'little', 'hacky', '||period||', '||return||', '||return||', 'bania:', 'how', 'about', 'that', 'jerry', '||questionmark||', 'first', 'you', 'had', 'a', 'pilot', 'on', 'nbc', 'and', 'now', "i'll", 'have', 'one', '||period||', 'looks', 'like', "i'm", 'following', 'you', 'again', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'gonna', 'puke', '||period||', '||return||', '||return||', 'bania:', 'puke', '||questionmark||', "that's", 'a', 'funny', 'word', '||period||', 'can', 'i', 'use', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'david', '||comma||', 'this', 'has', 'been', 'the', 'worst', 'month', 'of', 'my', 'life', 'and', 'if', 'i', 'never', 'see', 'you', 'again', "it'll", 'be', 'too', 'soon', '||period||', '||return||', '||return||', 'puddy:', 'ditto', '||period||', '||return||', '||return||', 'elaine:', 'oh', "that's", 'origi', '||dash||', '||return||', '||return||', 'puddy:', 'go', 'to', 'hell', '||period||', '||return||', '||return||', 'elaine:', '86th', 'and', 'broadway', 'please', '||period||', '||return||', '||return||', 'cab', 'driver:', "i'm", 'sorry', 'lady', '||comma||', "there's", 'a', 'cab', 'shortage', '||period||', 'the', 'transit', 'police', 'are', 'making', 'everybody', 'share', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'no', '||period||', '||return||', '||return||', 'vegetable', 'lasagna:', 'hello', '||exclammark||', '||leftparen||', 'sees', 'elaine', '||rightparen||', 'oh', 'no', '||period||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'elaine:', 'noooooooooooo', '||exclammark||', '||return||', '||return||', '[scene:', 'in', 'the', 'play', 'now', 'office]', '||return||', '||return||', 'thomassoulo:', 'george', '||comma||', 'youre', 'not', 'really', 'handicapped', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'ive', 'had', 'my', 'difficulties', '||period||', '||return||', '||return||', 'thomassoulo:', 'i', 'saw', 'you', 'running', 'down', 'amsterdam', 'avenue', 'lifting', 'that', '200', 'pound', 'motorized', 'cart', 'with', 'one', 'hand', '||period||', '||return||', '||return||', 'george:', 'mr', '||period||', 'thomassoulo', 'during', 'times', 'of', 'great', 'stress', '||comma||', 'people', 'are', 'capable', 'of', 'super', 'human', 'strength', '||period||', 'have', 'you', 'ever', 'seen', 'the', 'incredible', 'hulk', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'thomassoulo:', 'no', '||return||', '||return||', 'george:', 'how', 'about', 'the', 'old', 'spider', 'man', 'live', 'action', 'show', '||questionmark||', '||return||', '||return||', 'thomassoulo:', 'george', '||comma||', 'ive', 'realized', 'weve', 'signed', 'a', 'one', '||dash||', 'year', 'contract', 'with', 'you', '||comma||', 'but', 'at', 'this', 'point', 'i', 'think', 'its', 'best', 'that', 'we', 'both', 'go', 'our', 'separate', 'ways', '||period||', '||return||', '||return||', 'george:', 'i', 'dont', 'understand', '||period||', '||return||', '||return||', 'thomassoulo:', 'we', 'dont', 'like', 'you', '||period||', 'we', 'want', 'you', 'to', 'leave', '||period||', '||return||', '||return||', 'george:', 'clearer', '||return||', '||return||', '[scene:', 'at', 'monks', 'caf]', '||return||', '||return||', 'jerry:', 'so', 'youre', 'staying', 'at', 'play', 'now', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', 'pay', 'is', 'good', '||period||', 'i', 'got', 'dental', '||comma||', 'private', 'access', 'to', 'one', 'of', 'the', 'great', 'handicapped', 'toilets', 'in', 'the', 'city', '||period||', '||return||', '||return||', 'jerry:', 'but', 'they', 'not', 'you', 'arent', 'handicapped', '||comma||', 'arent', 'you', 'ashamed', '||questionmark||', '||return||', '||return||', 'george:', 'theyre', 'the', 'ones', 'who', 'should', 'be', 'ashamed', '||period||', 'they', 'signed', 'me', 'to', 'a', 'one', '||dash||', 'year', 'contract', '||period||', 'as', 'long', 'as', 'i', 'show', 'up', 'for', 'work', 'every', 'day', '||comma||', 'they', 'have', 'to', 'pay', 'me', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||return||', '||return||', 'jerry', '&', 'george:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||exclammark||', '||return||', '||return||', 'george:', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'whats', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'its', 'just', 'this', 'stupid', 'thing', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'im', 'sure', 'its', 'stupid', '||period||', 'its', 'not', 'about', 'me', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'no', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'not', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', 'tell', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'you', 'know', 'this', 'girl', 'clare', 'i', 'am', 'seeing', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'he', 'and', 'i', 'starting', 'joking', 'that', 'when', 'she', 'falls', 'asleep', 'her', 'stomach', 'stays', 'awake', 'all', 'night', 'and', 'talks', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', 'how', 'is', 'it', 'talking', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'her', 'belly', 'button', 'is', 'like', 'a', 'mouth', '||period||', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'im', 'bored', '||period||', 'talk', 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'i', 'gotta', 'start', 'taking', 'these', '||quotemark||', 'stupid', '||quotemark||', 'warnings', 'more', 'seriously', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'look', 'whose', 'here', '||dash||', 'puddy', '||period||', '||return||', '||return||', 'elaine:', 'my', 'puddy', '||questionmark||', 'but', 'we', 'broke', 'up', '||period||', '||return||', '||return||', 'jerry:', 'and', 'yet', 'he', 'continues', 'to', 'live', '||period||', '||return||', '||return||', 'puddy:', 'hey', 'benes', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'im', 'doing', 'great', '||period||', '||return||', '||return||', 'puddy:', 'great', '||period||', '||leftparen||', 'pauses', '||rightparen||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'thats', 'it', '||period||', 'you', 'two', 'are', 'back', 'together', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'bump', 'into', '||period||', 'the', 'bump', 'into', 'always', 'leads', 'to', 'the', 'backslide', '||period||', '||return||', '||return||', 'elaine:', 'david', 'and', 'i', 'will', 'not', 'be', 'getting', 'back', 'together', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'breaking', 'up', 'is', 'like', 'knocking', 'over', 'a', 'coke', 'machine', '||period||', 'you', 'cant', 'do', 'it', 'in', 'one', 'push', '||comma||', 'you', 'got', 'to', 'rock', 'it', 'back', 'and', 'forth', 'a', 'few', 'times', '||comma||', 'and', 'then', 'it', 'goes', 'over', '||period||', '||return||', '||return||', 'george:', 'thats', 'beautiful', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'you', '||questionmark||', 'you', 'were', 'even', 'engaged', '||comma||', 'and', 'you', 'cut', 'it', 'off', 'just', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'thats', 'different', '||period||', 'i', 'didnt', 'have', 'feelings', 'for', 'those', 'people', '||period||', 'but', 'you', '||comma||', 'youll', 'backslide', '||return||', '||return||', 'elaine:', 'you', 'want', 'to', 'bet', '||questionmark||', '||return||', '||return||', 'jerry:', 'stakes', '||questionmark||', '||return||', '||return||', 'elaine:', '50', '||return||', '||return||', 'jerry:', 'dollars', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'witness', '||questionmark||', '||leftparen||', 'looks', 'at', 'george', '||rightparen||', '||period||', '||return||', '||return||', 'george:', 'witness', '||period||', '||return||', '||return||', 'jerry:', 'done', '||period||', '||return||', '||return||', 'george:', 'percentage', '||questionmark||', '||return||', '||return||', 'jerry', '&', 'elaine:', 'no', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'clare:', 'so', 'ill', 'call', 'you', 'tonight', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'clare:', 'whats', 'wrong', 'with', 'the', 'belt', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'went', 'to', 'the', 'movies', 'last', 'night', '||comma||', 'i', 'went', 'to', 'the', 'bathroom', 'and', 'i', 'unbuckled', 'a', 'little', 'wobbly', 'and', 'the', 'buckle', 'kind', 'of', 'banged', 'against', 'the', 'side', 'of', 'the', 'urinal', '||period||', 'so', '||leftparen||', 'throws', 'away', 'belt', '||rightparen||', 'thats', 'it', '||exclammark||', '||return||', '||return||', 'clare:', 'so', '||comma||', 'youre', 'insane', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yes', '||comma||', 'quite', '||period||', '||return||', '||return||', 'kramer:', 'hello', '||exclammark||', '||return||', '||return||', 'jerry:', 'of', 'course', 'its', 'a', 'sliding', 'scale', '||period||', '||return||', '||return||', 'clare:', 'catch', 'you', 'later', '||period||', '||return||', '||return||', 'kramer', '&', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||exclammark||', '||leftparen||', 'haha', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'la', 'la', 'la', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'la', 'la', 'la', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'this', '||comma||', 'they', 'are', 'redoing', 'the', 'cloud', 'club', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'that', 'restaurant', 'on', 'top', 'of', 'the', 'chrysler', 'building', '||questionmark||', 'yeah', '||comma||', 'thats', 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'kramer:', 'of', 'course', 'its', 'a', 'good', 'idea', '||comma||', 'its', 'my', 'idea', '||period||', 'i', 'conceived', 'this', 'whole', 'project', 'two', 'years', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'which', 'part', '||questionmark||', 'the', 'renovating', 'the', 'restaurant', 'you', 'dont', 'own', 'part', 'or', 'spending', 'the', 'two', 'hundred', 'million', 'you', 'dont', 'have', 'part', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'see', 'i', 'come', 'up', 'with', 'these', 'things', '||comma||', 'i', 'know', 'theyre', 'gold', '||comma||', 'but', 'nothing', 'happens', '||period||', 'you', 'know', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'resources', '||comma||', 'no', 'skill', '||comma||', 'no', 'talent', '||comma||', 'no', 'ability', '||comma||', 'no', 'brains', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interrupts', '||rightparen||', 'no', '||comma||', 'notime', '||exclammark||', 'its', 'all', 'this', 'meaningless', 'time', '||period||', 'laundry', '||comma||', 'grocery', '||comma||', 'shopping', '||comma||', 'coming', 'in', 'here', 'talking', 'to', 'you', '||period||', 'do', 'you', 'have', 'any', 'idea', 'how', 'much', 'time', 'i', 'waste', 'in', 'this', 'apartment', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'can', 'ball', 'park', 'it', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||exclammark||', '||return||', '||return||', 'kramer:', 'here', 'we', 'go', '||semicolon||', 'now', 'she', 'comes', 'in', '||period||', 'now', 'my', 'whole', 'day', 'is', 'shot', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'called', 'you', 'last', 'night', '||comma||', 'where', 'were', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'very', 'guilty', '||rightparen||', 'i', 'went', 'out', 'with', 'a', '||leftparen||', 'fake', 'cough', '||rightparen||', 'a', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'guiltier', '||rightparen||', 'no', '||comma||', 'nono', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'was', 'here', '||comma||', 'thats', 'everyone', '||leftparen||', 'laughing', '||rightparen||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'are', 'those', 'the', 'same', 'shoes', 'as', 'yesterday', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'you', 'know', 'i', 'wear', 'these', 'shoes', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'jerry:', 'your', 'hair', '||comma||', 'its', 'somewhat', 'de', '||dash||', 'poofed', '||period||', '||return||', '||return||', 'elaine:', 'its', 'the', 'new', 'look', '||period||', 'you', 'know', 'heroin', 'cheek', '||questionmark||', '||return||', '||return||', 'jerry:', 'wait', 'a', 'second', '||comma||', 'whats', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||comma||', 'nothing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'screams', '||rightparen||', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'screams', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'wearing', 'the', 'same', 'clothes', 'as', 'yesterday', '||exclammark||', '||exclammark||', '||exclammark||', '||leftparen||', 'pauses', '||rightparen||', 'you', 'saw', 'puddy', '||exclammark||', '||return||', '||return||', 'kramer:', 'hoochie', 'moochie', '||period||', '||leftparen||', 'haha', '||rightparen||', '||return||', '||return||', 'jerry:', 'hand', 'it', 'over', '||period||', 'pay', 'up', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'its', 'an', 'isolated', '||comma||', 'sexual', 'incident', '||period||', 'we', 'are', 'not', 'back', 'together', '||exclammark||', '||return||', '||return||', 'jerry:', 'then', 'what', 'do', 'you', 'call', 'it', '||questionmark||', 'people', 'dont', 'just', 'bump', 'into', 'each', 'other', 'and', 'have', 'sex', '||period||', 'this', 'isnt', 'cinemax', '||period||', '||return||', '||return||', 'elaine:', 'it', 'was', 'no', 'big', 'deal', 'ok', '||questionmark||', 'i', 'mean', 'we', 'fooled', 'around', '||comma||', 'then', 'we', 'went', 'out', 'and', 'grabbed', 'a', 'little', 'dinner', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'dinner', '||exclammark||', 'thats', 'it', '||comma||', 'youre', 'all', 'the', 'way', 'back', '||exclammark||', '||return||', '||return||', 'elaine:', 'ugh', '||exclammark||', '||return||', '||return||', 'jerry:', 'sex', '||comma||', 'thats', 'meaningless', '||comma||', 'i', 'can', 'understand', 'that', '||comma||', 'but', 'dinner', '||semicolon||', 'thats', 'heavy', '||period||', 'thats', 'like', 'an', 'hour', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'still', 'reading', 'the', 'paper', '||rightparen||', 'man', '||comma||', '2', '||period||', '9', 'percent', 'financing', 'on', 'a', 'toyota', 'onedun', '||leftparen||', 'sp', '||questionmark||', '||rightparen||', '||period||', 'that', 'was', 'my', 'idea', 'too', '||exclammark||', '||return||', '||return||', '[scene:', 'at', 'play', 'now]', '||return||', '||return||', 'george:', 'good', 'morning', '||exclammark||', '||return||', '||return||', 'co', '||dash||', 'worker:', 'go', 'to', 'hell', '||exclammark||', '||return||', '||return||', 'george:', 'hi', 'allison', '||comma||', 'thats', 'a', 'nice', 'dress', '||period||', '||return||', '||return||', 'allison:', 'dont', 'even', 'look', 'at', 'me', '||period||', '||return||', '||return||', 'george:', 'hey', 'glenn', '||exclammark||', '||return||', '||return||', 'glenn:', 'hey', '||comma||', 'go', 'tell', 'hell', '||exclammark||', '||return||', '||return||', 'george:', 'heard', 'that', 'one', 'already', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'kramer:', 'so', 'thats', 'the', 'bedroom', '||period||', 'heres', 'the', 'bathroom', '||period||', 'if', 'you', 'need', 'to', '||comma||', 'you', 'can', 'familiarize', 'yourself', 'with', 'the', 'kitchenyeah', '||comma||', 'go', 'ahead', 'and', 'look', 'through', 'some', 'of', 'the', 'drawers', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'are', '||questionmark||', '||return||', '||return||', 'darren:', 'oh', '||comma||', 'hey', '||comma||', 'im', 'darren', '||period||', 'im', 'new', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'thats', 'jerry', '||comma||', 'you', 'dont', 'have', 'to', 'worry', 'about', 'him', '||period||', 'why', 'dont', 'you', 'go', 'across', 'the', 'hall', 'and', 'get', 'started', 'on', 'that', 'mail', '||period||', '||return||', '||return||', 'darren:', 'right', '||exclammark||', '||return||', '||return||', 'kramer:', 'hes', 'a', 'go', 'getter', '||exclammark||', '||return||', '||return||', 'jerry:', 'whos', 'he', '||questionmark||', '||return||', '||return||', 'kramer:', 'my', 'intern', 'from', 'nyu', '||period||', 'well', '||comma||', 'you', 'remember', 'my', 'corporation', '||comma||', 'kramerica', 'industries', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'apparently', 'nyu', 'is', 'very', 'enthusiastic', 'about', 'their', 'students', 'getting', 'some', 'real', 'world', 'corporate', 'experience', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'only', 'provide', 'fantasy', 'world', 'corporate', 'experience', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'will', 'really', 'free', 'up', 'my', 'time', 'so', 'i', 'can', 'focus', 'on', 'more', 'important', 'things', '||comma||', 'like', 'my', 'bladder', 'system', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'its', 'time', 'to', 'go', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'its', 'not', 'for', 'people', '||comma||', 'its', 'for', 'oil', 'tankers', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastically', '||rightparen||', 'i', 'know', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'see', 'the', 'idea', 'is', 'for', 'a', 'rubber', 'ball', 'inside', 'the', 'tanker', 'so', 'if', 'it', 'crashes', '||comma||', 'the', 'oil', 'wont', 'spill', 'out', '||period||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'that', 'is', 'not', 'a', 'bad', 'idea', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'smiles', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'now', '||comma||', 'its', 'time', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||return||', '||return||', 'george:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', '||leftparen||', 'hes', 'sitting', 'on', 'the', 'floor', 'in', 'his', 'play', 'now', 'office', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', '||leftparen||', 'pauses', '||rightparen||', 'so', '||comma||', 'whats', 'going', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'siege', 'mentality', '||comma||', 'jerry', '||period||', 'they', 'really', 'want', 'me', 'out', 'of', 'here', '||period||', 'theyve', 'downgraded', 'me', 'to', 'some', 'sort', 'of', 'a', 'bunker', '||period||', 'im', 'like', 'hitlers', 'last', 'days', 'here', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'are', 'you', 'going', 'to', 'leave', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', '||exclammark||', 'im', 'vigilant', '||period||', 'theyll', 'never', 'get', 'me', 'out', '||period||', 'im', 'like', 'a', 'weed', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'youre', 'like', 'hitler', 'in', 'the', 'bunker', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'a', 'weed', 'in', 'hitlers', 'bunker', '||period||', '||return||', '||return||', 'jerry:', 'im', 'getting', 'a', 'little', 'uncomfortable', 'with', 'the', 'hitler', 'stuff', '||period||', '||leftparen||', 'his', 'other', 'line', 'beeps', '||rightparen||', 'im', 'getting', 'another', 'call', '||comma||', 'see', 'ya', '||leftparen||', 'answers', 'call', '||rightparen||', 'hello', '||exclammark||', '||return||', '||return||', 'darren:', 'hi', '||comma||', 'this', 'is', 'darren', 'from', 'kramers', 'office', '||period||', 'mr', '||period||', 'kramer', 'would', 'like', 'to', 'schedule', 'a', 'lunch', 'with', 'you', 'at', 'monks', 'coffee', 'shop', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'shocked', '||rightparen||', 'really', '||questionmark||', 'when', '||questionmark||', '||return||', '||return||', 'darren:', 'in', '10', 'minutes', '||period||', 'do', 'you', 'need', 'directions', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'dont', '||period||', '||return||', '||return||', 'darren:', 'well', '||comma||', 'ill', 'call', 'back', 'in', '5', 'minutes', 'to', 'confirm', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', '5', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'so', '||comma||', 'wheres', 'my', 'money', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'money', '||comma||', 'i', 'am', 'puddy', 'free', '||period||', 'so', '||comma||', 'are', 'we', 'eating', 'or', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||comma||', 'hold', 'on', '||period||', '||return||', '||return||', 'jerry:', 'hello', 'darren', '||comma||', 'this', 'is', 'jerry', 'from', 'jerrys', 'office', '||period||', '||leftparen||', 'elaine', 'is', 'looking', 'confused', '||rightparen||', '||period||', 'were', 'going', 'to', 'be', 'three', 'for', 'lunch', '||period||', '||leftparen||', 'elaine', 'is', 'still', 'looking', 'confused', '||rightparen||', 'what', 'do', 'you', 'mean', 'hes', 'already', 'left', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', 'is', 'going', 'to', 'come', 'with', 'us', '||comma||', 'alright', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'when', 'did', 'this', 'happen', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'just', '||return||', '||return||', 'kramer:', '||leftparen||', 'yelling', '||rightparen||', 'darren', '||exclammark||', '||return||', '||return||', '[scene:', 'at', 'elaines', 'apartment]', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'calling', 'puddy', '||period||', 'what', 'did', 'i', 'do', 'with', 'my', 'gloves', '||questionmark||', 'oh', '||comma||', 'i', 'bet', 'i', 'left', 'them', 'over', 'at', 'puddys', '||period||', 'i', 'should', 'call', 'him', '||period||', 'i', 'need', 'those', 'gloves', '||period||', 'no', '||comma||', 'i', 'better', 'not', '||period||', 'ill', 'call', '||period||', '||leftparen||', 'looks', 'at', 'table', '||rightparen||', 'oh', '||comma||', 'look', 'at', 'that', '||exclammark||', 'there', 'are', 'the', 'gloves', '||period||', 'i', 'was', 'just', 'about', 'to', 'call', '||period||', 'there', 'they', 'are', '||period||', 'thats', 'funny', '||period||', 'thats', 'really', 'funny', '||period||', 'thats', 'really', 'really', 'funny', '||period||', 'you', 'know', 'who', 'loves', 'funny', 'stories', '||comma||', 'david', 'puddy', '||period||', '||leftparen||', 'picks', 'up', 'phone', '||rightparen||', '||period||', '||return||', '||return||', '[scene:', 'at', 'monks', 'cafe]', '||return||', '||return||', 'george:', 'well', '||comma||', 'play', 'now', 'is', 'through', 'playing', '||period||', 'they', 'turned', 'the', 'heat', 'way', 'up', 'in', 'my', 'office', '||period||', 'they', 'tried', 'to', 'sweat', 'me', 'out', '||period||', '||return||', '||return||', 'jerry:', 'do', 'you', 'have', 'to', 'write', 'all', 'this', 'stuff', 'down', '||period||', '||return||', '||return||', 'darren:', 'well', '||comma||', 'mr', '||period||', 'kramer', 'is', 'in', 'a', 'meeting', 'with', 'mr', '||period||', 'lohmase', 'and', 'he', 'didnt', 'want', 'to', 'miss', 'anything', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'how', 'hot', 'did', 'it', 'get', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||comma||', '120', '||comma||', '130then', 'they', 'sent', 'some', 'guys', 'to', 'sandblast', 'for', '6', 'hours', '||period||', 'tomorrow', 'they', 'are', 'putting', 'in', 'asbestos', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'you', 'can', 'take', 'anything', '||comma||', 'but', 'actual', 'work', '||period||', '||return||', '||return||', 'george:', 'bring', 'it', 'on', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', 'kramer', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'wel', '||dash||', 'l', '||dash||', 'l', '||dash||', 'c', '||dash||', 'o', '||dash||', 'm', '||dash||', 'e', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'la', 'la', 'la', '||period||', '||return||', '||return||', 'kramer:', 'sorry', 'i', 'couldnt', 'get', 'out', 'of', 'there', '||comma||', 'what', 'did', 'i', 'miss', '||questionmark||', '||leftparen||', 'asking', 'his', '||quotemark||', 'intern', '||quotemark||', '||rightparen||', '||return||', '||return||', 'darren:', 'well', '||comma||', 'after', 'ordering', '||comma||', 'mr', '||period||', 'seinfeld', 'and', 'mr', '||period||', 'costanza', 'debated', 'on', 'whether', 'or', 'not', 'iron', 'man', 'wore', 'some', 'sort', 'under', 'garment', 'between', 'his', 'skin', 'and', 'his', 'iron', 'suit', '||return||', '||return||', 'kramer:', 'uh', 'huh', '||return||', '||return||', 'george:', '||leftparen||', 'interrupts', '||rightparen||', 'and', 'i', 'still', 'say', 'hes', 'naked', 'under', 'there', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', 'that', 'makes', 'a', 'lot', 'of', 'sense', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'darren:', 'then', 'mr', '||period||', 'seinfeld', 'went', 'to', 'the', 'restroom', '||comma||', 'at', 'which', 'point', 'mr', '||period||', 'costanza', 'scooped', 'ice', 'out', 'of', 'mr', '||period||', 'seinfelds', 'drink', 'with', 'his', 'bare', 'hands', 'using', 'it', 'to', 'wash', 'up', '||leftparen||', 'jerry', 'is', 'taking', 'a', 'sip', 'of', 'water', 'and', 'looking', 'mad', '||rightparen||', 'then', 'mr', '||period||', 'costanza', 'remarked', 'to', 'me', '||comma||', '||quotemark||', 'this', 'never', 'happened', '||period||', '||quotemark||', '||leftparen||', 'jerry', 'then', 'spits', 'out', 'the', 'water', '||rightparen||', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment', 'in', 'his', 'bed]', '||return||', '||return||', 'jerry:', '||leftparen||', 'giggling', '||rightparen||', '||return||', '||return||', 'clare:', 'whats', 'so', 'funny', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'nothing', '||period||', '||leftparen||', 'still', 'giggling', '||rightparen||', '||return||', '||return||', 'clare:', 'what', 'are', 'you', 'laughing', 'about', '||questionmark||', 'tell', 'me', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'all', 'right', '||comma||', 'this', 'is', 'really', 'dumb', '||comma||', 'really', 'stupid', '||period||', 'weve', 'been', 'doing', 'this', 'silly', '||comma||', 'dumb', 'voice', '||period||', '||return||', '||return||', 'clare:', 'so', 'is', 'it', 'fun', 'humiliating', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'its', 'not', 'you', '||period||', 'its', 'your', 'stomach', '||comma||', 'hes', 'taking', 'with', 'this', 'funny', '||comma||', 'booming', '||comma||', 'jovial', 'voice', '||period||', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', '||return||', '||return||', 'clare:', 'so', 'you', 'think', 'im', 'fat', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'its', '||return||', '||return||', 'darren:', 'mr', '||period||', 'kramer', 'says', '||comma||', '||quotemark||', 'hey', 'buddy', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'were', 'kind', 'of', 'in', 'the', 'middle', 'of', 'something', 'here', '||period||', 'would', 'you', 'mind', 'coming', 'back', 'later', '||questionmark||', '||return||', '||return||', 'darren:', 'oh', 'yeah', 'sure', '||comma||', 'sure', '||period||', 'should', 'we', 'set', 'something', 'up', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'screams', '||rightparen||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'clare:', 'im', 'leaving', 'too', '||period||', '||return||', '||return||', 'jerry:', 'no', 'body', 'said', 'youre', 'fat', '||period||', 'hes', 'a', 'loving', 'character', '||comma||', 'like', 'the', 'kool', '||dash||', 'ade', 'guy', '||period||', '||return||', '||return||', 'clare:', 'he', 'is', 'fat', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'hes', 'just', 'a', 'little', 'bloated', '||period||', '||return||', '||return||', 'clare:', 'good', '||dash||', 'bye', '||exclammark||', '||return||', '||return||', 'jerry:', 'its', 'mostly', 'water', 'weight', '||period||', '||return||', '||return||', 'kramer:', 'boysenberry', '||comma||', 'the', 'kid', 'is', 'still', 'learning', '||period||', '||return||', '||return||', 'darren:', 'mr', '||period||', 'kramerdean', '||comma||', 'my', 'internship', 'is', 'on', 'line', 'two', '||comma||', 'she', 'wants', 'to', 'set', 'up', 'a', 'meeting', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', 'nothing', 'before', 'noon', '||period||', '||return||', '||return||', 'jerry:', 'line', 'two', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'your', 'phone', 'is', 'line', 'one', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||return||', '||return||', '[scene:', 'at', 'elaines', 'apartment]', '||return||', '||return||', 'puddy:', 'so', 'the', 'gloves', 'were', 'right', 'by', 'the', 'phone', '||period||', 'that', 'is', 'pretty', 'funny', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'this', 'is', 'what', 'jerrys', 'doesnt', 'understand', '||period||', 'we', 'can', 'see', 'each', 'other', '||period||', 'we', 'can', 'see', 'each', 'other', 'every', 'day', '||comma||', 'but', 'it', 'doesnt', 'mean', 'we', 'are', 'back', 'together', '||period||', '||return||', '||return||', 'puddy:', 'i', 'mean', 'i', 'love', 'just', 'seeing', 'you', 'and', 'having', 'sex', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'puddy:', 'not', 'having', 'to', 'do', 'all', 'thatyou', 'knowwork', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'either', 'way', '||return||', '||return||', 'puddy:', 'all', 'that', 'calling', 'you', '||comma||', 'and', 'buying', 'you', 'stuff', '||return||', '||return||', 'elaine:', 'david', '||return||', '||return||', 'puddy:', 'caring', 'about', 'how', 'everyone', 'at', 'work', 'isnt', 'as', 'smart', 'as', 'you', '||period||', 'its', 'brutal', '||period||', '||return||', '||return||', 'elaine:', 'alright', 'thats', 'it', '||exclammark||', 'were', 'back', 'together', '||exclammark||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'puddy:', 'look', 'elaine', '||comma||', 'be', 'reasonable', '||period||', '||return||', '||return||', 'elaine:', 'get', 'those', 'clothes', 'off', '||period||', 'youre', 'going', 'to', 'spend', 'the', 'night', 'and', 'were', 'going', 'to', 'cuddle', '||period||', '||return||', '||return||', 'puddy:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'heard', 'me', '||period||', 'strip', '||exclammark||', '||return||', '||return||', '[scene:', 'at', 'play', 'now]', '||return||', '||return||', 'george:', '||leftparen||', 'whistling', '||rightparen||', '||period||', '||leftparen||', 'laughing', '||rightparen||', '||period||', 'alrightok', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'phone', 'calling', 'secretary', '||rightparen||', 'hello', 'margery', '||comma||', 'george', 'costanza', '||period||', 'how', 'are', 'you', 'sweet', 'heart', '||questionmark||', 'listen', '||comma||', 'can', 'you', 'give', 'mr', '||period||', 'thomassoulo', 'a', 'message', 'for', 'me', '||questionmark||', 'yes', '||period||', 'if', 'he', 'needs', 'me', '||comma||', 'tell', 'him', '||leftparen||', 'screams', '||rightparen||', 'im', 'in', 'my', 'office', '||exclammark||', 'thanks', '||period||', '||return||', '||return||', '[scene:', 'at', 'nyu]', '||return||', '||return||', 'kramer:', 'dean', 'jones', '||comma||', 'you', 'wanting', 'to', 'talk', 'to', 'me', '||questionmark||', '||return||', '||return||', 'dean', 'jones:', 'ive', 'been', 'reviewing', 'darrens', 'internship', 'journal', '||period||', 'doing', 'laundry', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'dean', 'jones:', 'mending', 'chicken', 'wire', '||comma||', 'hi', '||dash||', 'tea', 'with', 'a', 'mr', '||period||', 'newman', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', 'it', 'sounds', 'pretty', 'glamorous', '||comma||', 'but', 'its', 'business', 'as', 'usual', 'at', 'kramerica', '||period||', '||return||', '||return||', 'dean', 'jones:', 'as', 'far', 'as', 'i', 'can', 'tell', 'your', 'entire', 'enterprise', 'is', 'more', 'than', 'a', 'solitary', 'man', 'with', 'a', 'messy', 'apartment', 'which', 'may', 'or', 'may', 'not', 'contain', 'a', 'chicken', '||period||', '||return||', '||return||', 'kramer:', 'and', 'with', 'darrens', 'help', '||comma||', 'well', 'get', 'that', 'chicken', '||period||', '||return||', '||return||', 'dean', 'jones:', 'im', 'sorry', '||comma||', 'but', 'we', 'cant', 'allow', 'darren', 'to', 'continue', 'working', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'have', 'to', 'say', 'this', 'seems', 'capricious', 'and', 'arbitrary', '||period||', '||return||', '||return||', 'dean', 'jones:', 'you', 'fly', 'is', 'open', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'jerry:', 'so', 'youre', 'sure', 'youre', 'not', 'still', 'angry', 'about', 'last', 'night', '||questionmark||', '||return||', '||return||', 'clare:', 'no', '||comma||', 'im', 'fine', '||period||', 'just', 'as', 'long', 'as', 'you', 'dont', 'ever', 'do', 'that', 'voice', 'again', '||period||', '||return||', '||return||', 'jerry:', 'never', '||questionmark||', '||return||', '||return||', 'clare:', 'never', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'if', 'youre', 'not', 'around', '||questionmark||', '||return||', '||return||', 'clare:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'i', 'have', 'to', 'choose', 'between', 'seeing', 'you', 'and', 'doing', 'the', 'voice', '||questionmark||', '||return||', '||return||', 'clare:', 'thats', 'right', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'clare:', 'so', 'whats', 'your', 'decision', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dont', 'know', '||period||', '||return||', '||return||', 'clare:', 'jerryhi', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', 'la', '||dash||', 'la', '||dash||', 'la', '||period||', '||leftparen||', 'haha', '||rightparen||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'george:', 'you', 'broke', 'up', 'with', 'her', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'we', 'could', 'do', 'the', 'voice', '||period||', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'la', '||dash||', 'la', '||dash||', 'la', '||period||', 'whats', 'the', 'matter', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'im', 'getting', 'tired', 'of', 'it', '||period||', 'i', 'mean', 'is', 'that', 'all', 'it', 'does', '||questionmark||', 'hello', '||questionmark||', 'la', '||dash||', 'la', '||dash||', 'la', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'it', 'can', 'do', 'anything', '||period||', 'it', 'can', 'be', 'spanish', '||period||', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hola', '||period||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'like', 'the', 'girl', 'better', 'than', 'the', 'voice', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||period||', '||return||', '||return||', 'elaine:', 'still', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'here', 'you', 'go', '||comma||', 'choke', 'on', 'it', '||leftparen||', 'hands', 'him', 'money', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'never', 'bet', 'against', 'the', 'backslide', '||period||', 'i', 'knew', 'you', 'two', 'would', 'get', 'back', 'together', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'well', 'not', 'for', 'long', '||period||', 'im', 'breaking', 'up', 'with', 'him', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'dont', 'think', 'so', '||period||', 'ive', 'seen', 'you', 'two', 'together', '||period||', 'you', 'make', 'each', 'other', 'miserable', '||period||', 'its', 'kismet', '||period||', '||return||', '||return||', 'elaine:', 'double', 'or', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'done', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'from', 'bathroom', '||rightparen||', 'witness', '||questionmark||', '||return||', '||return||', 'jerry:', 'youre', 'in', 'there', 'again', '||period||', '||return||', '||return||', 'george:', 'i', 'think', 'play', 'now', 'is', 'putting', 'something', 'in', 'my', 'food', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'im', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||leftparen||', 'kramer', 'is', 'wearing', 'jeans', 'that', 'look', 'like', 'it', 'doesnt', 'fit', 'him', '||rightparen||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'dont', 'know', '||period||', 'i', 'found', 'them', 'in', 'your', 'closet', '||period||', 'ever', 'since', 'darren', 'left', 'i', 'havent', 'been', 'able', 'to', 'find', 'anything', '||period||', 'he', 'took', 'all', 'my', 'clothes', 'to', 'some', 'cleaners', '||period||', 'im', 'clueless', '||period||', '||leftparen||', 'looks', 'at', 'clock', '||rightparen||', 'is', 'that', 'clock', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'nine', 'oclock', '||period||', '||return||', '||return||', 'kramer:', 'i', 'was', 'supposed', 'to', 'pick', 'up', 'newman', 'at', 'the', 'zoo', 'twelve', 'hours', 'ago', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'good', '||dash||', 'bye', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'buddy', '||comma||', 'i', 'got', 'to', 'tell', 'you', 'something', '||period||', 'that', 'voice', 'is', 'played', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'so', 'played', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'you', '||period||', '||return||', '||return||', '[scene:', 'hallway', '||comma||', 'darren', 'is', 'knocking', 'on', 'kramers', 'door]', '||return||', '||return||', 'kramer:', 'darren', '||questionmark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', 'the', 'college', 'canceled', 'the', 'internship', '||period||', '||return||', '||return||', 'darren:', 'i', 'dont', 'care', 'about', 'the', 'internship', '||period||', 'i', 'care', 'about', 'kramerica', '||period||', '||return||', '||return||', 'kramer:', 'kramerica', 'is', 'no', 'more', '||period||', '||return||', '||return||', 'darren:', 'what', 'about', 'the', 'oil', 'tanker', 'bladder', 'system', '||questionmark||', 'we', 'were', 'going', 'to', 'put', 'an', 'end', 'to', 'maritime', 'oil', 'spills', '||period||', '||return||', '||return||', 'kramer:', 'probably', '||period||', 'darren', '||comma||', 'you', 'go', 'home', '||period||', 'forget', 'about', 'kramerica', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'youre', 'still', 'here', '||questionmark||', '||return||', '||return||', 'darren:', 'i', 'havent', 'had', 'time', 'to', 'leave', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'havent', 'changed', 'my', 'mind', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'are', 'a', 'tenacious', 'little', 'monkey', '||period||', 'alright', '||comma||', 'ill', 'do', 'it', '||period||', 'kramerica', 'industries', 'lives', '||exclammark||', 'lets', 'get', 'back', 'to', 'work', '||exclammark||', '||return||', '||return||', 'kramer:', 'lets', 'see', 'what', 'jerry', 'has', 'to', 'eat', '||period||', '||return||', '||return||', '[scene:', 'at', 'play', 'now', 'in', 'the', 'bosses', 'office]', '||return||', '||return||', 'thomassoulo:', 'you', 'win', 'george', '||period||', 'weve', 'had', 'it', '||period||', 'if', 'you', 'leave', 'right', 'now', '||comma||', 'play', 'now', 'will', 'give', 'you', 'six', 'months', 'pay', '||period||', 'thats', 'half', 'of', 'your', 'entire', 'contract', '||period||', 'pleasejust', 'go', '||period||', '||return||', '||return||', 'george:', 'you', 'see', 'if', 'i', 'stay', 'the', 'whole', 'year', '||comma||', 'i', 'get', 'it', 'all', '||period||', '||return||', '||return||', 'thomassoulo:', 'want', 'to', 'play', 'hand', 'ball', 'huh', '||questionmark||', 'fine', '||period||', '||leftparen||', 'calls', 'on', 'intercom', '||rightparen||', 'attention', 'play', 'now', 'employees', '||comma||', 'george', 'costanzas', 'handicapped', 'bathroom', 'is', 'now', 'open', 'on', 'the', 'sixteenth', 'floor', 'to', 'all', 'employees', 'and', 'their', 'families', '||period||', '||return||', '||return||', 'george:', 'well', 'played', '||period||', '||return||', '||return||', 'thomassoulo:', 'ill', 'see', 'you', 'in', 'hell', 'costanza', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', 'with', 'clare', '||rightparen||', 'clare', 'thanks', 'for', 'giving', 'me', 'a', 'second', 'chance', '||period||', 'our', 'relationship', 'is', 'certainly', 'worth', 'more', 'than', 'some', 'silly', '||comma||', 'stupid', 'voice', '||period||', 'hold', 'on', 'one', 'second', '||period||', '||leftparen||', 'george', 'walks', 'in', 'jerry', 'asks', 'george', '||rightparen||', 'so', 'we', 'definitely', 'dont', 'want', 'to', 'do', 'the', 'voice', 'anymore', '||questionmark||', '||leftparen||', 'george', 'shakes', 'his', 'head', 'no', '||rightparen||', 'alright', '||comma||', 'were', 'back', 'together', 'again', '||comma||', 'great', '||period||', 'bye', 'bye', '||period||', '||return||', '||return||', '[scene:', 'hallway', 'kramer', '&', 'darren', 'are', 'pushing', 'an', 'oil', 'tank]', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'trouble', 'down', 'at', 'the', 'plant', '||questionmark||', '||return||', '||return||', 'kramer:', 'its', 'a', 'tank', 'of', 'oil', '||period||', 'darren', 'and', 'i', 'are', 'finally', 'going', 'to', 'test', 'out', 'my', 'bladder', 'system', '||period||', '||return||', '||return||', 'george:', 'you', 'have', 'to', 'drink', 'that', 'whole', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', '||period||', 'no', '||period||', 'its', 'for', 'oil', 'tankers', '||period||', 'all', 'i', 'need', 'to', 'do', 'is', 'fill', 'some', 'sort', 'of', 'rubber', 'container', 'with', 'oil', 'and', 'then', 'drop', 'it', 'to', 'see', 'whether', 'or', 'not', 'it', 'can', 'restrain', 'the', 'impact', '||period||', '||return||', '||return||', 'jerry:', 'i', 'understand', '||leftparen||', 'not', 'really', 'understanding', '||comma||', 'lol', '||rightparen||', '||period||', '||return||', '||return||', 'george:', 'would', 'a', 'giant', 'rubber', 'ball', 'work', '||questionmark||', '||return||', '||return||', 'kramer:', 'conceivably', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'play', 'now', 'has', 'all', 'kinds', 'of', 'different', 'rubber', 'balls', '||period||', 'why', 'dont', 'we', 'test', 'your', 'bladder', 'system', 'at', 'my', 'office', '||questionmark||', '||return||', '||return||', 'jerry:', 'youre', 'not', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yes', 'i', 'am', '||period||', 'mr', '||period||', 'thomassoulo', 'likes', 'to', 'play', 'dirty', '||period||', 'well', '||comma||', 'theres', 'nothing', 'dirtier', 'than', 'a', 'giant', 'ball', 'of', 'oil', '||period||', '||return||', '||return||', '[scene:', 'at', 'monks', 'cafe]', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'you', 'want', 'to', 'split', 'a', 'root', 'beer', '||leftparen||', 'i', 'think', 'thats', 'what', 'he', 'says', '||rightparen||', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'dont', 'think', 'so', 'david', '||comma||', 'were', 'through', '||period||', '||return||', '||return||', 'puddy:', 'ohthats', 'a', 'nice', 'sweater', '||leftparen||', 'elaine', 'smiles', '||rightparen||', '||period||', '||return||', '||return||', '[scene:', 'at', 'elaines', 'house', 'the', 'two', 'are', 'in', 'bed]', '||return||', '||return||', 'elaine:', 'whew', 'that', 'was', 'a', 'dozy', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'jerry:', 'go', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'book', 'it', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'again', 'from', 'bathroom', '||rightparen||', 'witness', '||period||', '||return||', '||return||', '[scene:', 'at', 'elaines', 'apartment]', '||return||', '||return||', 'elaine:', 'david', 'i', 'know', 'this', 'hurts', '||comma||', 'but', 'its', 'the', 'way', 'it', 'has', 'to', 'be', '||leftparen||', 'puddy', 'is', 'giving', 'her', 'a', 'look', 'like', 'hes', 'going', 'to', 'still', 'get', 'some', '||rightparen||', '||period||', '||return||', '||return||', '[scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'jerry:', 'ha', 'ha', 'ha', '||period||', 'ha', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', '[scene:', 'jerry', 'and', 'elaine', 'at', 'the', 'movies]', '||return||', '||return||', 'elaine:', 'im', 'going', 'to', 'get', 'some', 'popcorn', '||period||', '||return||', '||return||', 'scene:', 'at', 'jerrys', 'apartment]', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'how', 'did', 'it', 'end', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'got', 'away', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||period||', '||return||', '||return||', '[scene:', 'at', 'elaines', 'apartment]', '||return||', '||return||', 'elaine:', 'listen', 'david', '||comma||', 'ive', 'got', 'to', 'run', '||period||', 'can', 'you', 'lend', 'me', 'fifty', 'bucks', '||questionmark||', '||return||', '||return||', '[scene:', 'at', 'play', 'now]', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'bring', 'the', 'video', 'camera', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'put', 'a', 'six', 'hour', 'tape', 'in', '||period||', 'that', 'should', 'cover', 'the', 'experiment', '||comma||', 'the', 'arrest', '||comma||', 'and', 'most', 'of', 'your', 'trial', '||period||', 'alright', '||comma||', 'ill', 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'might', 'want', 'to', 'stick', 'around', 'jerry', '||period||', 'mr', '||period||', 'thomassoulo', 'picked', 'the', 'wrong', 'man', 'to', 'hire', 'because', 'he', 'was', 'fake', 'handicapped', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cant', '||period||', 'i', 'got', 'to', 'meet', 'clare', '||period||', '||return||', '||return||', 'kramer:', 'you', 'gave', 'up', 'the', 'voice', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'thought', 'it', 'was', 'stupid', '||period||', 'unless', 'you', 'guys', 'are', 'liking', 'it', 'again', '||period||', '||return||', '||return||', 'kramer', '&', 'george:', 'no', '||period||', 'no', '||return||', '||return||', 'jerry:', 'darren', '||questionmark||', '||return||', '||return||', 'darren:', 'sorry', 'mr', '||period||', 'seinfeld', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'use', 'mine', '||period||', 'ill', 'let', 'you', 'in', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'it', 'was', 'open', 'to', 'the', 'public', '||period||', '||return||', '||return||', 'george:', 'i', 'uh', '||comma||', 'took', 'care', 'of', 'that', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', 'zanadu', '||period||', 'no', 'wonder', 'youre', 'putting', 'in', 'so', 'many', 'hours', '||period||', '||leftparen||', 'looks', 'at', 'urinal', '||rightparen||', 'may', 'i', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'insist', '||period||', 'ill', 'fix', 'us', 'a', 'drink', '||period||', '||leftparen||', 'phone', 'rings', 'who', 'would', 'that', 'be', '||questionmark||', '||rightparen||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'kramer:', 'whew', '||period||', 'you', 'know', 'darren', '||comma||', 'if', 'you', 'would', 'have', 'told', 'me', 'twenty', '||dash||', 'five', 'years', 'ago', 'that', 'some', 'day', 'id', 'be', 'standing', 'here', 'about', 'to', 'solve', 'the', 'worlds', 'energy', 'problems', '||comma||', 'i', 'wouldve', 'said', 'youre', 'crazy', 'now', 'lets', 'push', 'this', 'giant', 'ball', 'of', 'oil', 'out', 'the', 'window', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'check', 'out', 'my', 'view', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', 'hey', '||comma||', 'theres', 'clare', '||period||', 'i', 'better', 'go', 'down', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'theres', 'kramer', '&', 'darren', '||period||', '||return||', '||return||', 'jerry:', 'theres', 'the', 'giant', 'ball', 'of', 'oil', '||period||', 'clares', 'right', 'underneath', 'that', 'thing', '||period||', 'clare', '||exclammark||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||exclammark||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||exclammark||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', '||exclammark||', '||return||', '||return||', 'clare:', 'i', 'dont', 'believe', 'this', '||period||', 'i', 'am', 'not', 'looking', 'up', 'if', 'youre', 'going', 'to', 'do', 'that', 'voice', '||period||', '||return||', '||return||', 'kramer:', 'bombs', 'away', '||leftparen||', 'uh', 'oh', '||rightparen||', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'going', 'to', 'be', 'a', 'shame', '||period||', '||return||', '||return||', 'george:', 'hello', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'that', 'didnt', 'work', '||period||', 'hey', '||comma||', 'how', 'about', 'thisketchup', 'and', 'mustard', 'in', 'the', 'same', 'bottle', '||questionmark||', '||return||', '||return||', 'darren:', 'oh', 'that', 'sounds', 'interesting', 'sir', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', '[scene:', 'at', 'monks', 'caf]', '||return||', '||return||', 'jerry:', 'clare', 'won', 'her', 'lawsuit', 'against', 'play', 'now', '||period||', 'gee', '||comma||', 'play', 'now', 'is', 'filing', 'for', 'bankruptcy', '||period||', 'i', 'guess', 'youre', 'not', 'going', 'in', 'anymore', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'so', 'theyre', 'not', 'paying', 'you', 'your', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'so', 'youre', 'pretty', 'much', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'ever', 'happened', 'to', 'darren', '||questionmark||', '||return||', '||return||', 'kramer:', 'darren', 'is', 'going', 'away', 'for', 'a', 'long', 'long', 'time', '||period||', '||return||', '||return||', 'jerry:', 'so', 'clare', 'sure', 'looked', 'real', 'funny', 'covered', 'in', 'oil', 'like', 'that', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'hello', '||dash||', 'o', '||dash||', 'o', '||dash||', 'o', 'i', 'got', 'beamed', 'with', 'a', 'giant', 'ball', 'of', 'oil', '||return||', '||return||', 'george:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'im', 'slippery', 'as', 'an', 'eel', '||return||', '||return||', 'kramer:', '||leftparen||', 'doing', 'the', 'voice', '||rightparen||', 'la', 'la', 'la', '||period||', '||return||', '||return||', 'jerry:', 'im', 'just', 'so', 'glad', 'its', 'back', '||period||', '||return||', '||return||', '||leftparen||', 'scene:', 'at', 'elaines', 'apartment', 'in', 'bed', 'with', 'puddy', 'again', '||rightparen||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'this', 'is', 'good', '||period||', 'this', 'is', 'the', 'way', 'it', 'should', 'be', '||period||', 'you', 'know', 'why', 'are', 'we', 'fooling', 'ourselves', '||period||', 'we', 'belong', 'together', '||period||', '||return||', '||return||', 'puddy:', 'elaine', 'i', 'want', 'to', 'break', 'up', '||period||', '||return||', '||return||', 'elaine:', 'ah', 'nuts', '||exclammark||', '||return||', '||return||', 'frank:', 'i', 'got', 'no', 'leg', 'room', 'back', 'here', '||period||', 'move', 'your', 'seat', 'forward', '||period||', '||return||', '||return||', 'estelle:', "that's", 'as', 'far', 'as', 'it', 'goes', '||period||', '||return||', '||return||', 'frank:', "there's", 'a', 'mechanism', '||period||', 'you', 'just', 'pull', 'it', '||comma||', 'and', 'throw', 'your', 'body', 'weight', '||period||', '||return||', '||return||', 'estelle:', 'i', 'pulled', 'it', '||period||', 'it', "doesn't", 'go', '||period||', '||return||', '||return||', 'frank:', 'if', 'you', 'want', 'the', 'leg', 'room', '||comma||', 'say', 'you', 'want', 'the', 'leg', 'room', '||exclammark||', "don't", 'blame', 'the', 'mechanism', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'dad', '||comma||', "we're", 'five', 'blocks', 'from', 'the', 'house', '||period||', 'sit', 'sideways', '||period||', '||return||', '||return||', 'frank:', 'like', 'an', 'animal', '||period||', 'because', 'of', 'her', '||comma||', 'i', 'have', 'to', 'sit', 'here', 'like', 'an', 'animal', '||exclammark||', 'serenity', 'now', '||exclammark||', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'frank:', 'doctor', 'gave', 'me', 'a', 'relaxation', 'cassette', '||period||', 'when', 'my', 'blood', 'pressure', 'gets', 'too', 'high', '||comma||', 'the', 'man', 'on', 'the', 'tape', 'tells', 'me', 'to', 'say', '||comma||', "'serenity", 'now', '||exclammark||', "'", '||return||', '||return||', 'george:', 'are', 'you', 'supposed', 'to', 'yell', 'it', '||questionmark||', '||return||', '||return||', 'frank:', 'the', 'man', 'on', 'the', 'tape', "wasn't", 'specific', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'the', 'screen', 'door', '||questionmark||', 'it', 'blew', 'off', 'again', '||questionmark||', '||return||', '||return||', 'estelle:', 'i', 'told', 'you', 'to', 'fix', 'that', 'thing', '||period||', '||return||', '||return||', 'frank:', 'serenity', 'nowww', '||exclammark||', '||return||', '||return||', 'patty:', 'so', 'i', 'told', 'bobby', 'and', 'lisa', 'that', "we'd", 'try', 'the', 'new', 'chinese', 'spanish', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'thought', 'we', 'had', 'tickets', 'for', 'the', 'knicks', 'home', 'opener', '||period||', '||return||', '||return||', 'patty:', 'well', 'i', 'thought', 'this', 'would', 'be', 'more', 'fun', 'so', 'i', 'gave', 'the', 'tickets', 'away', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'all', 'right', '||comma||', 'fine', '||period||', '||return||', '||return||', 'patty:', 'are', 'you', 'mad', 'at', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'love', 'a', 'good', 'chinese', 'spanish', 'whatever', 'it', 'is', '||period||', '||return||', '||return||', 'patty:', 'you', 'know', '||period||', '||period||', '||period||', "i've", 'never', 'seen', 'you', 'mad', '||period||', '||return||', '||return||', 'jerry:', 'i', 'get', 'peeved', '||period||', '||return||', '||return||', 'patty:', 'mad', '||period||', '||return||', '||return||', 'jerry:', 'miffed', '||period||', '||return||', '||return||', 'patty:', '*mad*', '||period||', '||return||', '||return||', 'jerry:', 'irked', '||questionmark||', '||return||', '||return||', 'patty:', "i'd", 'like', 'to', 'see', 'you', 'get', '*really*', 'mad', '||period||', '||return||', '||return||', 'george:', 'why', 'does', 'she', 'want', 'you', 'to', 'be', 'mad', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'says', 'i', 'suppress', 'my', 'emotions', '||period||', '||return||', '||return||', 'george:', 'so', 'what', 'do', 'you', 'care', 'what', 'she', 'thinks', '||period||', '||return||', '||return||', 'jerry:', 'good', 'body', '||period||', '||return||', '||return||', 'george:', 'she', 'probably', 'gets', 'that', 'impression', 'because', "you're", 'cool', '||period||', "you're", 'under', 'control', '||period||', 'like', 'me', '||period||', 'nothing', 'wrong', 'with', 'that', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'get', 'upset', '||comma||', "i've", 'yelled', '||period||', "you've", 'heard', 'me', 'yell', '||period||', '||return||', '||return||', 'george:', 'not', 'really', '||period||', 'your', 'voice', 'kind', 'of', 'raises', 'to', 'this', 'comedic', 'pitch', '||period||', '||leftparen||', 'kramer', 'enters', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', 'am', 'so', 'sick', 'of', 'you', "comin'", 'in', 'here', 'and', "eatin'", 'all', 'my', 'food', '||period||', 'now', 'shut', 'that', 'door', 'and', 'get', 'the', 'hell', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughing', '||rightparen||', 'what', 'is', 'that', '||comma||', 'a', 'new', 'bit', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'ya', '||period||', 'hey', '||comma||', 'any', 'of', 'you', 'guys', 'want', 'to', 'come', 'out', 'and', 'help', 'me', 'fix', 'my', "father's", 'screen', 'door', 'in', 'queens', '||questionmark||', '||return||', '||return||', 'jerry:', 'sorry', '||comma||', "i'm", 'fixing', 'a', 'screen', 'door', 'in', 'the', 'bronx', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'do', 'it', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'you', 'wanna', 'come', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'love', 'going', 'to', 'the', 'country', '||period||', '||return||', '||return||', 'elaine:', 'where', 'are', 'they', "goin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'fix', 'a', 'screen', 'door', 'in', 'queens', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', '||rightparen||', "that's", 'funny', '||period||', 'hey', '||comma||', 'listen', '||comma||', 'what', 'are', 'you', "doin'", 'saturday', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'not', "goin'", 'to', 'the', 'knick', 'game', '||period||', '||return||', '||return||', 'elaine:', 'i', 'need', 'someone', 'to', 'go', 'with', 'me', 'to', 'mr', '||period||', "lippman's", "son's", 'bar', 'mitzvah', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'if', 'you', "don't", 'bring', 'a', 'guest', 'they', 'save', 'a', 'catering', '||period||', 'you', 'should', 'be', 'able', 'to', 'buy', 'a', 'cheaper', 'gift', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'taking', 'out', 'boggle', '||rightparen||', 'oh', '||comma||', 'i', "don't", 'think', "that's", 'possible', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'holding', 'camera', '||rightparen||', 'get', 'in', 'a', 'little', 'closer', '||period||', 'i', "can't", 'see', 'the', 'screen', 'door', '||period||', '||leftparen||', 'takes', 'picture', '||rightparen||', 'perfect', '||period||', '||return||', '||return||', 'george:', 'dad', '||comma||', 'the', 'hinges', 'are', 'all', 'rusted', 'here', '||period||', "that's", 'why', 'the', 'wind', 'keeps', 'blowing', 'the', 'door', 'off', '||period||', '||return||', '||return||', 'estelle:', 'i', 'hate', 'that', 'old', 'door', '||period||', 'throw', 'it', 'out', '||exclammark||', '||return||', '||return||', 'frank:', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'it', 'might', 'be', 'time', 'to', 'just', 'let', 'her', 'go', '||comma||', 'frank', '||period||', "she's", 'worked', 'hard', 'for', 'ya', '||period||', '||return||', '||return||', 'frank:', 'will', 'you', 'put', 'her', 'to', 'rest', 'for', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "i'll", 'take', 'good', 'care', 'of', 'her', '||period||', '||leftparen||', 'rips', 'out', 'the', 'screen', 'door', '||rightparen||', '||return||', '||return||', 'estelle:', '||leftparen||', 'from', 'other', 'room', '||rightparen||', 'get', 'george', 'to', 'put', 'those', 'boxes', 'in', 'the', 'garage', '||period||', '||return||', '||return||', 'george:', 'dad', '||comma||', "what's", 'all', 'this', '||questionmark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'from', 'other', 'room', '||rightparen||', "it's", 'junk', '||period||', '||return||', '||return||', 'frank:', 'my', 'computers', '||period||', "i've", 'been', 'selling', 'them', 'for', 'two', 'months', 'now', '||period||', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'george:', "you're", 'selling', 'computers', '||questionmark||', '||return||', '||return||', 'frank:', 'two', 'months', 'ago', '||comma||', 'i', 'saw', 'a', 'provocative', 'movie', 'on', 'cable', 'tv', '||period||', 'it', 'was', 'called', 'the', 'net', '||comma||', 'with', 'that', 'girl', 'from', 'the', 'bus', '||period||', 'i', 'did', 'a', 'little', 'reading', '||comma||', 'and', 'i', 'realize', '||comma||', 'it', "wasn't", 'that', 'farfetched', '||period||', '||return||', '||return||', 'george:', 'dad', '||comma||', 'you', 'know', 'what', 'it', 'takes', 'to', 'compete', 'with', 'microsoft', 'and', 'ibm', '||questionmark||', '||return||', '||return||', 'frank:', 'yes', '||comma||', 'i', 'do', '||period||', "that's", 'why', 'i', 'got', 'a', 'secret', 'weapon', '||period||', '||period||', '||period||', 'my', 'son', '||period||', '||return||', '||return||', 'jerry:', 'damn', 'it', '||comma||', 'they', 'gave', 'me', 'cream', '||exclammark||', 'i', 'asked', 'for', 'nonfat', 'milk', '||exclammark||', '||return||', '||return||', 'patty:', 'i', 'think', 'they', 'have', '1%', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', '1%', '||questionmark||', '||exclammark||', 'they', 'can', 'kiss', '1%', 'of', 'my', 'ass', '||exclammark||', '||return||', '||return||', 'patty:', 'ok', '||comma||', 'jerry', '||comma||', 'enough', '||period||', "i'm", 'not', 'buying', 'it', '||period||', '||return||', '||return||', 'jerry:', "you're", 'damn', 'right', "you're", 'not', 'buying', 'it', '||exclammark||', '||return||', '||return||', 'patty:', 'you', "shouldn't", 'have', 'to', 'try', '||period||', "it's", 'just', 'being', 'open', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'open', '||period||', "there's", 'just', 'nothing', 'in', 'there', '||period||', '||return||', '||return||', 'patty:', 'sarcastically', '||rightparen||', 'uh', 'huh', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'think', "i'm", 'lying', 'about', 'this', '||questionmark||', '||return||', '||return||', 'patty:', 'i', 'think', 'you', 'are', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'not', '||period||', '||return||', '||return||', 'patty:', 'yes', '||comma||', 'you', 'are', '||comma||', 'liar', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'patty:', 'ok', '||comma||', 'liar', '||period||', '||return||', '||return||', 'jerry:', "that's", 'enough', '||exclammark||', '||return||', '||return||', 'patty:', 'ooh', '||comma||', 'that', 'was', 'good', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'it', 'felt', 'good', '||period||', '||return||', '||return||', 'elaine:', 'congratulations', '||comma||', 'mr', '||period||', 'lippman', '||period||', '||return||', '||return||', 'lippman:', 'oh', '||comma||', 'elaine', '||period||', 'my', "boy's", 'a', 'man', 'today', '||period||', 'can', 'you', 'believe', 'it', '||questionmark||', "he's", 'a', 'man', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'congratulations', '||comma||', 'adam', '||period||', '||leftparen||', 'adam', 'zealously', 'french', '||dash||', 'kisses', 'elaine', '||rightparen||', '||return||', '||return||', 'adam:', "i'm", 'a', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', 'tongue', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'wow', '||exclammark||', 'i', "didn't", 'try', 'that', "'til", 'i', 'was', '23', '||period||', '||return||', '||return||', 'jerry:', 'well', 'this', "kid's", 'not', 'just', 'a', 'man', '||period||', "he's", 'a', "man's", 'man', '||period||', '||return||', '||return||', 'elaine:', 'and', 'i', 'think', "he's", 'been', 'telling', 'his', 'friends', '||period||', 'i', 'got', 'invitations', 'to', 'six', 'more', 'bar', 'mitzvahs', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'yeah', '||comma||', 'this', 'is', 'jerry', 'seinfeld', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'do', 'not', 'want', 'to', 'stop', 'over', 'in', 'cincinnati', '||period||', 'well', '||comma||', 'then', 'you', 'upgrade', 'me', '||period||', "that's", 'right', '||comma||', 'you', 'should', 'thank', 'me', '||period||', 'goodbye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'hey', '||comma||', "i'm", "flyin'", 'first', 'class', '||period||', '||return||', '||return||', 'elaine:', 'where', 'did', 'that', 'come', 'from', '||questionmark||', '||return||', '||return||', 'jerry:', 'patty', 'showed', 'me', 'how', 'to', 'get', 'mad', '||period||', 'you', 'gotta', 'problem', 'with', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'relax', '||comma||', 'tough', 'guy', '||period||', 'i', 'got', 'to', 'go', 'out', 'to', 'my', "father's", 'garage', '||comma||', 'help', 'him', 'sell', 'some', 'computers', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'the', 'two', 'of', 'you', "workin'", 'in', 'that', 'garage', 'is', 'like', 'a', 'steel', 'cage', 'death', 'match', '||period||', '||return||', '||return||', 'george:', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'what', '||dash||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i'm", 'putting', 'up', "frank's", 'screen', 'door', '||period||', 'this', "beauty's", 'got', 'a', 'little', 'life', 'in', 'her', 'yet', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'need', 'it', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'closing', 'door', '||rightparen||', 'the', 'cool', 'evening', 'breezes', 'of', 'anytown', '||comma||', 'usa', '||period||', "let's", 'see', 'how', 'this', 'baby', 'closes', '||period||', 'oh', 'yeah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'morning', '||comma||', 'ma', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'from', 'another', 'room', '||rightparen||', "you're", 'late', '||exclammark||', '||return||', '||return||', 'george:', 'morning', '||comma||', 'dad', '||period||', '||return||', '||return||', 'frank:', "i'm", 'not', "'dad'", 'in', 'the', 'workplace', '||period||', 'my', 'professional', 'name', 'is', 'mr', '||period||', 'costanza', '||comma||', 'and', 'i', 'will', 'refer', 'to', 'you', 'as', "'costanza'", '||period||', 'morning', '||comma||', 'braun', '||period||', '||return||', '||return||', 'lloyd:', '||leftparen||', 'handing', 'frank', 'coffee', '||rightparen||', 'morning', '||comma||', 'george', '||period||', 'two', 'cream', '||comma||', 'no', 'sugar', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'lloyd', 'braun', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'frank:', 'your', 'mother', 'recommended', 'him', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'of', 'course', 'she', 'did', '||period||', "that's", 'all', 'i', 'ever', 'heard', 'growing', 'up', 'is', "'why", "can't", 'you', 'be', 'more', 'like', 'lloyd', 'braun', '||questionmark||', "'", 'did', 'you', 'know', 'he', 'was', 'in', 'a', 'mental', 'institution', '||questionmark||', '||return||', '||return||', 'frank:', 'i', "didn't", 'read', 'his', 'resume', '||period||', '||return||', '||return||', 'lloyd:', '||leftparen||', 'ringing', 'the', 'sale', 'bell', '||rightparen||', 'another', 'sale', '||comma||', 'mr', '||period||', 'costanza', '||period||', 'chalk', 'me', 'up', 'on', 'the', 'big', 'board', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'inquiring', 'about', 'the', 'chalk', 'board', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'drawing', 'a', 'zero', 'under', "george's", 'name', '||rightparen||', 'this', 'is', 'your', 'lagging', '||period||', 'good', 'work', '||comma||', 'braun', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'from', 'another', 'room', '||rightparen||', 'good', 'for', 'you', '||comma||', 'lloyd', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'adam', '||comma||', 'i', 'just', 'talked', 'to', 'your', 'father', '||comma||', 'and', '||comma||', 'apology', 'accepted', '||period||', '||return||', '||return||', 'adam:', "i'm", 'not', 'apologizing', '||period||', 'it', 'was', 'great', '||period||', 'i', 'told', 'everyone', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'i', 'know', '||period||', 'uh', '||comma||', 'by', 'the', 'way', '||comma||', 'could', 'you', 'do', 'me', 'a', 'favor', 'and', 'tell', 'mitchell', 'tanenbaum', 'that', 'i', 'will', 'be', 'unable', 'to', 'attend', 'this', 'saturday', '||period||', '||return||', '||return||', 'adam:', 'are', 'you', 'free', 'friday', 'night', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'am', '||comma||', 'but', 'that', 'is', 'not', 'the', 'point', '||period||', 'you', 'are', 'thirteen', '||comma||', 'and', 'i', 'am', 'in', 'my', 'early', '||period||', '||period||', '||period||', '20s', '||period||', '||return||', '||return||', 'adam:', 'but', "i'm", 'a', 'man', '||period||', 'the', 'rabbi', 'said', 'so', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'you', 'are', 'not', 'a', 'man', '||period||', 'it', 'takes', 'a', '*long*', 'time', 'to', 'become', 'a', 'man', '||period||', 'i', 'mean', '||comma||', 'half', 'my', 'friends', "aren't", 'even', 'there', 'yet', '||period||', '||return||', '||return||', 'adam:', 'well', '||comma||', 'if', "i'm", 'not', 'a', 'man', '||comma||', 'then', 'this', 'whole', 'thing', 'was', 'a', 'sham', '||exclammark||', 'first', '||comma||', 'they', 'said', 'i', 'was', 'gonna', 'get', 'great', 'gifts', '||comma||', 'and', 'then', '||comma||', 'somebody', 'gives', 'me', 'boggle', '||period||', 'i', 'renounce', 'my', 'religion', '||exclammark||', '||return||', '||return||', 'lippman:', 'who', 'wants', 'cookies', '||questionmark||', '||return||', '||return||', 'adam:', 'as', 'of', 'this', 'moment', '||comma||', 'i', 'am', 'no', 'longer', 'jewish', '||period||', 'i', 'quit', '||exclammark||', '||return||', '||return||', 'lippman:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'eating', '||rightparen||', 'walnuts', '||comma||', 'mmmmmm', '||period||', '||return||', '||return||', 'frank:', "you're", 'late', 'again', '||comma||', 'costanza', '||comma||', 'so', 'listen', 'up', '||period||', 'starting', 'tonight', '||comma||', "we're", 'having', 'a', 'little', 'sales', 'contest', '||period||', 'the', 'loser', 'gets', 'fired', '||comma||', 'the', 'winner', 'gets', 'a', 'waterpik', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'from', 'another', 'room', '||rightparen||', "you're", 'not', 'giving', 'away', 'our', 'waterpik', '||exclammark||', '||return||', '||return||', 'frank:', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'know', 'what', '||questionmark||', 'it', "doesn't", 'matter', '||comma||', 'because', 'i', 'quit', '||exclammark||', '||return||', '||return||', 'frank:', 'i', 'guess', 'your', 'mother', 'was', 'right', '||period||', 'you', 'never', 'could', 'compete', 'with', 'lloyd', 'braun', '||exclammark||', '||leftparen||', 'lloyd', 'rings', 'his', 'sale', 'bell', 'and', 'smiles', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'wanna', 'sell', 'computers', '||questionmark||', 'i', 'will', 'show', '*you*', 'how', 'to', 'sell', 'computers', '||exclammark||', 'hello', '||comma||', 'mr', '||period||', 'farneman', '||period||', 'you', 'wanna', 'buy', 'a', 'computer', '||questionmark||', 'no', '||questionmark||', 'why', 'not', '||questionmark||', 'all', 'right', '||comma||', 'i', 'see', '||exclammark||', 'good', 'answer', '||exclammark||', 'thank', 'you', '||exclammark||', '||leftparen||', 'lloyd', 'rings', 'his', 'sale', 'bell', '||rightparen||', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'elaine:', 'adam', '||comma||', 'you', "don't", 'become', 'a', 'man', 'overnight', '||period||', 'look', 'at', 'your', 'father', '||period||', 'it', 'takes', 'time', '||period||', 'patience', '||comma||', 'experience', '||period||', 'uh', '||comma||', 'several', 'careers', 'of', 'varying', 'success', '||period||', 'and', 'these', 'are', 'things', 'i', 'look', 'for', 'in', 'a', 'man', '||period||', '||return||', '||return||', 'adam:', '||leftparen||', 'storming', 'out', 'of', 'the', 'room', '||rightparen||', 'well', '||comma||', 'that', 'does', 'me', 'a', 'lot', 'of', 'good', '||period||', "'early", "20s'", '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'sorry', '||comma||', 'sir', '||comma||', 'i', 'tried', '||period||', '||return||', '||return||', 'lippman:', 'so', '||comma||', "that's", 'the', 'type', 'of', 'guy', "you're", 'looking', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'uhh', '||period||', 'i', 'guess', 'so', '||period||', 'why', '||questionmark||', '||leftparen||', 'mr', '||period||', 'lippman', 'vigorously', 'starts', 'making', 'out', 'with', 'her', '||rightparen||', '||return||', '||return||', 'patty:', '||leftparen||', 'surveying', "kramer's", 'hall', 'patio', '||rightparen||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'knocking', 'on', "kramer's", 'door', '||rightparen||', 'anytown', '||comma||', 'u', '||period||', 's', '||period||', 'a', '||period||', 'hello', '||questionmark||', 'is', 'kramer', 'home', '||questionmark||', 'oh', '||comma||', 'hey', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'spraying', 'his', 'flowers', '||rightparen||', 'hello', '||comma||', 'neighbor', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'those', 'azaleas', 'are', 'really', 'coming', 'in', 'nicely', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'gotta', 'mulch', '||period||', "you've", 'got', 'to', '||period||', '||return||', '||return||', 'jerry:', 'you', 'barbecuing', 'tonight', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'ringing', 'his', 'wind', 'chimes', '||rightparen||', 'right', 'after', 'the', 'fireworks', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'where', 'do', 'you', 'want', 'to', 'eat', 'tonight', '||questionmark||', '||return||', '||return||', 'patty:', 'how', 'about', 'la', 'caridad', 'again', '||questionmark||', '||return||', '||return||', 'jerry:', 'again', '||exclammark||', '||questionmark||', 'how', 'much', 'flan', 'can', 'a', 'person', 'eat', '||exclammark||', '||questionmark||', '||return||', '||return||', 'patty:', 'jerry', '||comma||', "you've", 'been', 'yelling', 'at', 'me', 'all', 'afternoon', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', "don't", 'think', 'more', 'flan', 'is', 'the', 'answer', '||exclammark||', '||return||', '||return||', 'patty:', 'maybe', 'i', 'should', 'just', 'leave', '||period||', '||return||', '||return||', 'jerry:', "'maybe'", '||exclammark||', '||questionmark||', '||return||', '||return||', 'patty:', 'good', '||dash||', 'bye', '||exclammark||', '||return||', '||return||', 'jerry:', 'double', 'good', '||dash||', 'bye', '||exclammark||', '||leftparen||', 'as', 'patty', 'leaves', '||comma||', 'open', 'door', 'reveals', 'kramer', '||comma||', 'sitting', 'on', 'his', 'lawn', 'chair', 'with', 'a', 'sparkler', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'buddy', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'coming', 'in', "jerry's", 'apartment', '||rightparen||', 'hey', '||period||', 'happy', 'new', 'year', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'getting', 'the', 'door', 'slammed', 'on', 'him', '||rightparen||', "y'all", 'come', 'back', 'reeeaall', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'did', 'you', 'and', 'patty', 'just', 'break', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'in', 'fact', '||comma||', 'she', 'broke', 'up', 'with', 'me', '||exclammark||', 'and', 'i', "don't", 'want', 'to', 'talk', 'about', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'then', "you're", 'free', 'tonight', '||period||', 'you', 'know', 'what', '||comma||', 'i', 'heard', 'about', 'this', 'great', 'place', 'called', 'la', 'caridad', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'last', 'thing', 'she', 'said', 'to', 'me', '||period||', 'she', 'wanted', 'to', 'go', 'there', 'also', '||comma||', 'but', 'i', "wasn't", 'in', 'the', 'mood', '||period||', '||return||', '||return||', 'elaine:', 'whoa', '||period||', 'what', 'is', 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'patty', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'you', 'break', 'up', 'with', 'a', 'girl', 'every', 'week', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'crying', '||rightparen||', 'what', '||dash||', '||dash||', 'what', 'is', 'this', 'salty', 'discharge', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||period||', "you're", 'crying', '||period||', '||return||', '||return||', 'jerry:', 'this', 'is', 'horrible', '||exclammark||', 'i', 'care', '||exclammark||', '||return||', '||return||', 'jerry:', 'patty', "won't", 'call', 'me', 'back', '||period||', 'i', "don't", 'know', 'if', 'i', 'can', 'live', 'without', 'her', '||period||', '||return||', '||return||', 'kramer:', "she's", 'really', 'gotten', 'to', 'you', '||comma||', "hasn't", 'she', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', "what's", 'happening', 'to', 'me', '||period||', '||return||', '||return||', 'kramer:', 'simple', '||period||', 'you', 'let', 'out', 'one', 'emotion', '||comma||', 'all', 'the', 'rest', 'will', 'come', 'with', 'it', '||period||', "it's", 'like', "endora's", 'box', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'the', 'mother', 'on', 'bewitched', '||period||', 'you', 'mean', 'pandora', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'she', '||period||', '||period||', '||period||', 'had', 'one', '||comma||', 'too', '||period||', '||leftparen||', 'george', 'enters', '||rightparen||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'second', '||questionmark||', '||leftparen||', 'they', 'enter', "jerry's", 'apartment', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'baseball', 'flies', 'at', 'kramer', 'and', 'hits', 'him', '||rightparen||', "that's", 'it', '||comma||', "that's", 'it', '||exclammark||', 'i', 'warned', 'you', 'kids', '||period||', 'i', 'told', 'you', 'not', 'to', 'play', 'in', 'front', 'of', 'my', 'house', '||period||', 'this', 'time', '||comma||', "i'm", "keepin'", 'it', '||period||', 'and', "you're", 'not', 'getting', 'back', 'your', 'rock', 'either', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'hearing', 'jerry', 'broke', 'up', 'with', 'patty', '||rightparen||', 'are', 'you', 'still', 'down', 'in', 'the', 'dumps', '||questionmark||', 'come', 'on', '||period||', "it's", 'just', 'a', 'chick', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ever', 'heard', 'of', 'a', 'little', 'thing', 'called', 'feelings', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'got', 'just', 'the', 'thing', 'to', 'cheer', 'you', 'up', '||period||', 'a', 'computer', '||exclammark||', 'huh', '||questionmark||', 'we', 'can', 'check', 'porn', '||comma||', 'and', 'stock', 'quotes', '||period||', '||return||', '||return||', 'jerry:', 'porn', 'quotes', '||period||', '||period||', '||period||', "i'm", 'so', 'lucky', 'to', 'have', 'a', 'friend', 'like', 'you', '||comma||', 'george', '||period||', 'ever', 'tell', 'you', 'how', 'much', 'i', 'love', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'love', 'you', '||comma||', 'george', '||period||', 'come', 'here', '||period||', '||return||', '||return||', 'george:', 'i', '||dash||', "i'm", 'already', 'here', '||period||', "i'm", 'here', '||period||', "i'm", 'here', '||period||', 'uh', '||comma||', 'you', 'know', 'what', '||questionmark||', 'if', 'you', 'want', 'a', 'computer', '||comma||', 'call', 'me', '||period||', 'i', '||dash||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'go', 'wherever', 'you', 'want', '||period||', "i'm", 'still', 'gonna', 'love', 'you', '||period||', '||return||', '||return||', 'kramer:', 'look', 'what', 'they', 'did', '||period||', 'look', 'what', 'they', 'did', 'to', 'my', 'house', '||exclammark||', 'i', 'turn', 'my', 'back', 'for', 'two', 'seconds', '||comma||', 'and', 'they', 'put', 'shaving', 'cream', 'all', 'over', 'my', 'door', '||period||', 'you', '||comma||', 'i', 'see', 'you', '||exclammark||', "i'll", 'teach', 'these', 'kids', 'a', 'lesson', '||period||', "where's", 'that', 'house', 'i', 'put', 'under', 'your', 'sink', '||questionmark||', '||return||', '||return||', 'jerry:', 'hose', 'under', 'my', 'sink', '||period||', 'i', 'love', '*you*', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'love', 'you', '||comma||', 'too', '||comma||', 'buddy', '||comma||', 'and', 'george', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'to', 'hear', 'it', '||comma||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'when', 'i', 'give', 'you', 'the', 'signal', '||comma||', 'i', 'want', 'you', 'to', 'turn', 'this', 'water', 'on', 'full', 'blast', '||period||', '||return||', '||return||', 'george:', 'what', 'signal', '||questionmark||', 'what', '||dash||', 'what', 'signal', '||questionmark||', '||return||', '||return||', 'kramer:', "i'll", 'yell', '||comma||', 'uh', '||comma||', "'hoochie", 'mama', '||exclammark||', "'", '||return||', '||return||', 'george:', 'if', 'i', 'do', 'it', '||comma||', 'will', 'you', 'buy', 'a', 'computer', '||questionmark||', '||return||', '||return||', 'kramer:', 'on', 'the', 'signal', '||comma||', 'george', '||period||', 'on', 'the', 'signal', '||period||', '||return||', '||return||', 'george:', 'only', 'if', 'you', 'buy', '||period||', 'i', 'gotta', 'make', 'a', 'sale', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'you', '||comma||', 'costanza', '||period||', '||return||', '||return||', 'george:', 'will', 'you', 'shut', 'up', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'now', '||exclammark||', 'now', '||comma||', 'george', '||exclammark||', 'turn', 'on', 'the', 'faucet', '||exclammark||', 'george', '||comma||', 'turn', 'on', 'the', 'faucet', '||exclammark||', 'hoochie', 'mama', '||exclammark||', 'hoochie', 'mama', '||exclammark||', 'hoochie', 'mamamaaaaa', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'now', 'the', '*other*', 'lippman', 'kissed', 'me', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'sure', '||period||', "they're", 'jewish', '||comma||', 'and', "you're", 'a', 'shiksa', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'means', 'a', 'non', '||dash||', 'jewish', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', 'what', 'it', 'means', '||comma||', 'but', 'what', 'does', 'being', 'a', 'shiksa', 'have', 'to', 'do', 'with', 'it', '||questionmark||', '||return||', '||return||', 'george:', "you've", 'got', "'shiksappeal'", '||period||', 'jewish', 'men', 'love', 'the', 'idea', 'of', 'meeting', 'a', 'woman', "that's", 'not', 'like', 'their', 'mother', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "that's", 'insane', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'you', "what's", 'insane', 'the', 'price', 'that', 'i', 'could', 'get', 'you', 'on', 'a', 'new', 'desktop', 'computer', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'buying', 'a', 'computer', 'from', 'you', '||period||', '||return||', '||return||', 'george:', "there's", 'porn', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pausing', '||rightparen||', 'even', 'so', '||period||', '||return||', '||return||', 'george:', 'damn', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', "don't", 'get', 'me', 'wrong', '||comma||', 'mr', '||period||', 'lippman', '||period||', 'i', '||dash||', "i'm", 'very', 'flattered', 'that', 'you', 'found', 'me', 'attractive', 'enough', 'to', '||period||', '||period||', '||period||', 'lunge', 'at', 'me', '||period||', 'huh', '||period||', 'but', 'the', 'only', 'reason', 'you', 'like', 'me', 'is', 'because', "i'm", 'a', 'shiksa', '||period||', '||return||', '||return||', 'lippman:', "that's", 'simply', 'not', 'true', '||period||', '||return||', '||return||', 'elaine:', 'if', 'you', "weren't", 'jewish', '||comma||', 'you', "wouldn't", 'be', 'interested', 'in', 'me', '||period||', '||return||', '||return||', 'lippman:', 'you', 'are', 'wrong', '||period||', "i'll", 'prove', 'it', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', "don't", '||exclammark||', '||return||', '||return||', 'lippman:', 'i', 'renounce', 'judaism', '||exclammark||', '||return||', '||return||', 'elaine:', 'oy', 'vey', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||comma||', 'pal', '||questionmark||', '||return||', '||return||', 'kramer:', 'joey', 'zanfino', 'and', 'some', 'of', 'the', 'neighborhood', 'kids', '||period||', 'they', 'ambushed', 'me', 'with', 'a', 'box', 'of', "'grade", "a's", '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'all', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||period||', "i'm", 'fine', '||period||', 'serenity', 'now', '||period||', 'serenity', 'now', '||period||', 'serenity', 'now', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "you're", 'using', "frank's", 'relaxation', 'method', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'trying', 'to', 'open', 'a', 'back', 'of', 'chips', '||rightparen||', 'jerry', '||comma||', 'the', 'anger', '||comma||', 'it', 'just', 'melts', 'right', 'off', '||period||', 'serenity', 'now', '||period||', 'look', 'at', 'this', '||period||', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'enters', '||rightparen||', 'hey', '||comma||', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'serenity', '||exclammark||', '||leftparen||', 'he', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', '||period||', 'you', 'are', 'not', 'gonna', 'believe', 'this', '||period||', 'now', 'lippman', 'is', 'renounced', '||period||', 'this', 'shiksa', 'thing', 'is', '*totally*', 'out', 'of', 'control', '||period||', 'what', 'is', '*with*', 'you', 'people', '||questionmark||', 'what', 'are', 'you', 'looking', 'at', '||questionmark||', '||return||', '||return||', 'jerry:', 'sit', 'down', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', 'jerry', '||comma||', 'i', "can't", 'take', 'any', 'more', 'gentle', 'sobbing', '||period||', '||return||', '||return||', 'jerry:', "i've", 'been', 'thinking', 'about', 'what', 'it', 'means', 'to', 'be', 'complete', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'have', 'an', 'apple', 'or', 'anything', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', 'at', 'us', '||comma||', 'hurtling', 'through', 'space', 'on', 'this', 'big', '||comma||', 'blue', 'marble', '||period||', '||return||', '||return||', 'elaine:', 'or', 'a', 'nectarine', '||questionmark||', 'i', 'would', 'absolutely', 'love', 'a', 'nectarine', '||period||', '||return||', '||return||', 'jerry:', 'looking', 'everywhere', 'for', 'some', 'kind', 'of', 'meaning', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'why', 'am', 'i', 'in', 'such', 'a', 'fruit', 'mood', '||questionmark||', 'ahh', '||comma||', 'banana', '||exclammark||', '||return||', '||return||', 'jerry:', 'when', 'all', 'the', 'while', '||comma||', 'the', 'real', 'secret', 'to', 'happiness', 'has', 'been', 'right', 'in', 'front', 'of', 'us', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', "jerry's", 'apartment', 'with', 'a', 'cartload', 'of', 'computers', '||rightparen||', 'jerry', '||comma||', "i've", 'found', 'a', 'way', 'to', 'beat', 'lloyd', 'braun', '||exclammark||', 'i', 'buy', 'the', 'computers', 'myself', '||comma||', 'i', 'store', "'em", 'in', 'your', 'apartment', '||period||', 'then', '||comma||', 'after', 'i', 'win', 'the', 'contest', '||comma||', 'i', 'bring', "'em", 'all', 'back', 'and', 'get', 'my', 'money', 'back', '||period||', 'ha', 'ha', '||exclammark||', "it's", 'brilliant', '||period||', 'what', '||questionmark||', "what's", 'wrong', 'with', 'your', 'leg', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'asking', 'elaine', 'to', 'marry', 'me', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', '||rightparen||', "i'll", 'store', 'these', 'over', 'at', "kramer's", 'apartment', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'uhh', '||comma||', 'jerry', '||comma||', "i've", 'got', 'a', 'lot', "goin'", 'on', 'with', '||comma||', 'uh', '||comma||', 'lippman', 'right', 'now', '||period||', '||return||', '||return||', 'jerry:', 'lippman', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'trying', 'to', 'get', 'her', 'bag', 'to', 'leave', '||rightparen||', 'yeah', '||comma||', 'and', 'him', 'too', '||period||', 'what', '||questionmark||', '||exclammark||', 'oh', '||comma||', 'yeah', '||exclammark||', 'i', 'think', 'george', 'is', 'calling', 'me', '||comma||', 'so', "i'm", 'gonna', 'go', 'give', 'him', 'a', 'hand', '||period||', 'come', 'on', '||exclammark||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'can', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'stay', '||exclammark||', 'stay', '||period||', 'stay', '||period||', '||return||', '||return||', 'frank:', 'hey', '||comma||', 'braun', '||comma||', "costanza's", 'kicking', 'your', 'butt', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'using', 'the', 'phone', '||rightparen||', 'watch', 'how', "it's", 'done', '||period||', 'oh', '||comma||', 'hello', '||comma||', 'mr', '||period||', 'vandelay', '||questionmark||', 'would', 'you', 'like', 'to', 'buy', 'a', 'computer', '||questionmark||', 'oh', '||comma||', 'really', '||questionmark||', 'two', 'dozen', '||questionmark||', '||return||', '||return||', 'frank:', 'costanza', '||comma||', "you're", 'white', 'hot', '||exclammark||', '||return||', '||return||', 'phone:', 'if', "you'd", 'like', 'to', 'make', 'a', 'call', '||comma||', 'please', 'hang', 'up', 'and', '||dash||', '||dash||', '||return||', '||return||', 'frank:', 'hey', '||comma||', 'braun', '||comma||', 'i', 'got', 'good', 'news', 'and', 'bad', 'news', '||period||', 'and', "they're", 'both', 'the', 'same', "you're", 'fired', '||period||', 'costanza', '||comma||', "you've", 'won', 'the', 'water', 'pik', '||exclammark||', '||return||', '||return||', 'estelle:', "you're", 'not', 'gonna', 'give', 'away', 'that', 'water', 'pik', '||exclammark||', '||return||', '||return||', 'frank:', 'you', 'wanna', 'bet', '||questionmark||', 'serenity', 'now', '||comma||', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'lloyd:', 'you', 'know', '||comma||', 'you', 'should', 'tell', 'your', 'dad', 'that', "'serenity", "now'", 'thing', "doesn't", 'work', '||period||', 'it', 'just', 'bottles', 'up', 'the', 'anger', '||comma||', 'and', 'eventually', '||comma||', 'you', 'blow', '||period||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'know', '||questionmark||', 'you', 'were', 'in', 'the', 'nut', 'house', '||period||', '||return||', '||return||', 'lloyd:', 'what', 'do', 'you', 'think', 'put', 'me', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'heard', 'they', 'found', 'a', 'family', 'in', 'your', 'freezer', '||return||', '||return||', 'lloyd:', 'serenity', 'now', '||period||', 'insanity', 'later', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'here', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'serenity', 'now', '||comma||', 'serenity', 'now', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'geez', '||exclammark||', 'jerry', '||comma||', 'i', "didn't", 'here', 'you', 'come', 'in', '||period||', 'yeah', '||comma||', 'the', 'children', '||comma||', "they've", 'done', 'sum', 'redecorating', '||period||', 'serenity', 'now', '||comma||', 'serenity', 'now', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'look', 'well', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'odd', '||comma||', "'cause", 'i', 'feel', 'perfectly', 'at', 'peace', 'with', 'the', 'world', '||dash||', 'uh', '||exclammark||', 'eggs', '||exclammark||', 'you', '||exclammark||', 'serenity', 'now', '||comma||', 'serenity', 'now', '||comma||', 'serenity', 'now', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'sorry', '||period||', 'look', 'at', 'me', '||comma||', 'i', 'stepped', 'on', 'your', 'last', 'rose', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'going', 'into', 'his', 'apartment', '||rightparen||', 'jerry', '||comma||', 'come', 'on', '||period||', "don't", 'get', 'upset', 'about', 'it', '||period||', "there's", 'always', 'next', 'spring', '||period||', 'now', 'will', 'you', 'excuse', 'me', 'for', 'a', 'moment', '||period||', 'serenity', 'nooooooooww', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'i', 'did', 'it', '||exclammark||', 'haha', '||exclammark||', 'i', 'beat', 'braun', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'crashing', 'and', 'banging', 'in', 'his', 'apartment', '||rightparen||', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'george:', 'come', 'on', '||comma||', 'wanna', 'give', 'me', 'a', 'hand', 'with', 'the', 'computers', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'crashing', 'and', 'banging', 'around', '||rightparen||', 'serenity', 'nooooowwwww', '||exclammark||', '||return||', '||return||', 'george:', 'why', "couldn't", 'you', 'squeeze', 'one', 'of', 'those', 'stupid', 'rubber', 'balls', 'to', 'get', 'your', 'stress', 'out', '||questionmark||', 'why', 'did', 'you', 'have', 'to', 'destroy', '*twenty', '||dash||', 'five*', 'computers', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'leaving', '||rightparen||', 'george', '||comma||', 'you', 'listen', 'to', 'me', '||period||', 'i', 'owe', 'ya', 'one', '||period||', '||return||', '||return||', 'jerry:', "he's", 'incorrigible', '||period||', 'you', 'want', 'to', 'talk', 'about', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'please', "don't", 'tell', 'me', 'you', 'love', 'me', 'again', '||comma||', 'jerry', '||comma||', 'i', "can't", 'handle', 'it', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'letting', 'my', 'emotions', 'out', 'was', 'the', 'best', 'thing', "i've", 'ever', 'done', '||period||', 'sure', "i'm", 'not', 'funny', 'anymore', '||comma||', 'but', "there's", 'more', 'to', 'life', 'than', 'making', 'shallow', '||comma||', 'fairly', '||dash||', 'obvious', 'observations', '||period||', 'how', 'about', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||period||', '||period||', 'here', 'goes', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'rabbi', '||comma||', 'is', 'there', 'anything', 'i', 'can', 'do', 'to', 'combat', 'this', 'shiks', '||dash||', 'appeal', '||questionmark||', '||return||', '||return||', 'rabbi:', 'ha', '||exclammark||', 'elaine', '||comma||', 'shiks', '||dash||', 'appeal', 'is', 'a', 'myth', '||comma||', 'like', 'the', 'yeti', '||comma||', 'or', 'his', 'north', 'american', 'cousin', '||comma||', 'the', 'sasquatch', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "something's", "goin'", 'on', 'here', '||comma||', "'cause", 'every', 'able', '||dash||', 'bodied', 'israelite', 'in', 'the', 'county', 'is', 'driving', 'pretty', 'strong', 'to', 'the', 'hoop', '||period||', '||return||', '||return||', 'rabbi:', 'elaine', '||comma||', "there's", 'much', 'you', "don't", 'understand', 'about', 'the', 'jewish', 'religion', '||period||', 'for', 'example', '||comma||', 'did', 'you', 'know', 'that', 'rabbis', 'are', 'allowed', 'to', 'date', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'about', 'to', 'leave', '||rightparen||', 'well', '||comma||', 'what', 'does', 'that', 'have', 'to', 'do', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'rabbi:', 'you', 'know', '||comma||', 'a', 'member', 'of', 'my', 'congregation', 'has', 'a', 'timeshare', 'in', 'myrtle', 'beach', '||period||', 'perhaps', '||comma||', 'if', "you're", 'not', 'too', 'busy', '||comma||', 'we', 'could', 'wing', 'on', 'down', 'after', 'the', 'high', 'holidays', '||questionmark||', 'elaine', '||questionmark||', "'lainie", '||questionmark||', '||return||', '||return||', 'george:', 'so', '||comma||', "that's", 'it', '||period||', 'all', 'of', 'my', 'darkest', 'fears', '||comma||', 'and', '||period||', '||period||', '||period||', 'everything', "i'm", 'capable', 'of', '||period||', "that's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'yikes', '||period||', 'well', '||comma||', 'good', 'look', 'with', 'all', 'that', '||period||', '||return||', '||return||', 'george:', 'where', 'you', 'going', '||questionmark||', 'i', '||dash||', 'i', 'thought', 'i', 'could', 'count', 'on', 'you', 'for', 'a', 'little', 'compassion', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'you', 'scared', 'me', 'straight', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'jerome', '||comma||', "i'm", 'in', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'maybe', 'we', 'should', 'get', 'married', '||period||', 'maybe', 'everything', 'we', 'need', 'is', 'right', 'here', 'in', 'front', 'of', 'us', '||period||', 'jer', '||period||', '||period||', '||period||', "let's", 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'tell', 'ya', '||comma||', 'i', "don't", 'see', 'it', 'happening', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'happened', 'to', 'the', 'new', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', "doesn't", 'work', 'here', 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'well', "that's", 'just', '*great', '||exclammark||', '*', '||return||', '||return||', 'george:', 'i', 'love', 'you', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', '||rightparen||', 'right', 'back', 'at', 'ya', '||comma||', 'slick', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'all', 'these', 'years', '||comma||', "i've", 'always', 'wanted', 'to', 'see', 'the', 'two', 'of', 'you', 'get', 'back', 'together', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "that's", 'because', "you're", 'an', 'idiot', '||period||', '||return||', '||return||', 'frank:', 'you', 'single', '||dash||', 'handedly', 'brought', 'costanza', 'and', 'son', 'to', 'the', 'brink', 'of', 'bankruptcy', '||period||', '||return||', '||return||', 'george:', 'well', 'what', 'about', 'all', 'the', 'lloyd', 'braun', 'sales', '||questionmark||', '||return||', '||return||', 'frank:', "he's", 'crazy', '||period||', 'his', 'phone', "wasn't", 'even', 'hooked', 'up', '||period||', 'he', 'just', 'liked', 'ringing', 'that', 'bell', '||period||', '||return||', '||return||', 'estelle:', 'i', 'told', 'you', 'to', 'clean', 'out', 'this', 'garage', '||period||', 'i', 'have', 'to', 'put', 'my', 'car', 'in', '||exclammark||', '||return||', '||return||', 'frank:', 'this', 'is', 'a', 'place', 'of', 'business', '||period||', 'i', 'told', 'you', 'never', 'to', 'come', 'in', 'here', '||period||', 'serenity', 'now', '||exclammark||', '||return||', '||return||', 'estelle:', 'all', 'right', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'dad', '||comma||', 'you', 'really', 'should', 'lay', 'off', 'the', "'serenity", "now'", 'stuff', '||period||', '||return||', '||return||', 'frank:', 'so', '||comma||', 'what', 'am', 'i', 'supposed', 'to', 'say', '||questionmark||', '||return||', '||return||', 'george:', "'hoochie", "mama'", '||questionmark||', '||return||', '||return||', 'estelle:', 'move', 'your', 'crap', '||comma||', "i'm", "comin'", 'in', '||exclammark||', '||return||', '||return||', 'frank:', 'no', "you're", 'not', '||exclammark||', 'hoochie', 'mama', '||exclammark||', 'hoochie', 'mama', '||exclammark||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', 'you', "can't", 'stay', 'longer', '||questionmark||', '||return||', '||return||', 'morty:', 'no', '||comma||', 'we', 'just', 'came', 'for', 'the', 'funeral', '||period||', '`', '||return||', '||return||', 'helen:', 'poor', 'marvin', 'kessler', '||comma||', 'he', 'went', 'too', 'early', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', '96', 'years', 'old', '||period||', '||return||', '||return||', 'morty:', 'that', 'had', 'nothing', 'to', 'do', 'with', 'it', '||comma||', 'the', 'man', 'was', 'out', 'of', 'shape', '||period||', '||return||', '||return||', 'helen:', "that's", 'why', 'we', 'joined', 'a', 'program', '||period||', 'we', 'walk', 'once', 'around', 'the', 'block', 'three', 'times', 'a', 'week', '||period||', '||return||', '||return||', 'morty:', 'and', 'every', 'morning', 'i', 'eat', 'a', 'plum', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'ever', 'you', 'do', '||comma||', "you're", 'wearing', 'me', 'out', '||period||', '||return||', '||return||', 'helen:', 'what', 'about', 'you', '||questionmark||', '||return||', '||return||', 'morty:', 'yeah', '||comma||', 'looks', 'like', "you're", 'getting', 'a', 'little', 'spare', 'tire', 'there', '||comma||', 'tiger', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'seinfelds', '||exclammark||', '||return||', '||return||', 'morty:', 'hey', '||comma||', 'mr', '||period||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'how', 'long', 'are', 'you', 'staying', '||questionmark||', '||return||', '||return||', 'helen:', 'we', 'just', 'came', 'down', 'for', 'a', 'funeral', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'yeah', 'i', 'heard', '||comma||', 'marvin', 'kessler', '||period||', 'boy', '||comma||', 'that', 'makes', 'you', 'think', '||period||', 'if', 'he', 'could', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'helen:', 'see', 'you', 'downstairs', 'with', 'the', 'car', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'sure', 'you', "don't", 'need', 'a', 'hand', 'with', 'that', '||questionmark||', '||return||', '||return||', 'morty:', 'no', 'no', '||comma||', 'the', 'luggage', 'is', 'on', 'the', 'program', '||period||', 'i', 'got', 'a', 'brick', 'in', 'here', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'give', 'blood', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'not', 'giving', '||period||', 'hoarding', '||period||', "i'm", 'storing', 'it', 'in', 'to', 'a', 'blood', 'bank', '||period||', 'just', 'in', 'case', '||period||', '||return||', '||return||', 'jerry:', 'in', 'case', 'of', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'know', 'myself', '||period||', 'if', "i'm", 'out', 'on', 'the', 'street', 'and', "it's", 'starts', 'to', 'go', 'down', '||comma||', 'i', "don't", 'back', 'off', 'until', "it's", 'finished', '||period||', '||return||', '||return||', 'jerry:', 'are', 'we', 'finished', '||questionmark||', '||return||', '||return||', 'kramer:', 'done', '||period||', '||return||', '||return||', 'vivian:', 'elaine', '||comma||', "i'm", 'so', 'glad', 'you', 'came', 'out', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'vivian:', 'you', "haven't", 'seen', 'jimmy', 'for', 'years', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', "i'm", 'glad', 'i', 'got', 'to', 'see', 'him', 'before', 'he', 'hit', 'puberty', 'and', 'got', '||comma||', 'you', 'know', 'all', 'lurchy', 'and', 'awkward', '||period||', '||return||', '||return||', 'vivian:', 'actually', '||comma||', "i'm", 'gonna', 'need', 'someone', 'to', 'look', 'after', 'him', 'tomorrow', 'evening', '||period||', '||return||', '||return||', 'elaine:', 'tomorrow', 'evening', '||comma||', 'sure', '||period||', '||return||', '||return||', 'vivian:', 'do', 'you', 'know', 'anyone', 'responsible', '||questionmark||', '||return||', '||return||', 'elaine:', 'do', 'i', 'know', 'anyone', '||questionmark||', '||questionmark||', '||return||', '||return||', 'vivian:', 'well', '||comma||', 'if', 'you', 'think', 'of', 'anybody', '||comma||', 'give', 'me', 'a', 'call', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'tara:', 'incense', '||comma||', 'for', 'the', 'mood', '||period||', '||return||', '||return||', 'george:', 'oh', 'yes', '||comma||', 'by', 'no', 'means', '||comma||', 'the', 'mood', '||period||', 'let', 'me', 'know', 'if', "there's", 'anything', 'i', 'can', 'do', 'to', 'lend', 'support', 'to', 'the', 'mood', '||period||', '||return||', '||return||', 'george:', 'um', '||comma||', 'cream', 'soda', '||questionmark||', '||return||', '||return||', 'tara:', 'vanilla', '||period||', '||return||', '||return||', 'elaine:', 'can', 'you', 'believe', 'that', '||comma||', 'vivian', "doesn't", 'think', "i'm", 'responsible', '||questionmark||', '||return||', '||return||', 'jerry:', 'who', 'wants', 'to', 'responsible', '||questionmark||', 'when', 'ever', 'anything', 'goes', 'wrong', '||comma||', 'the', 'first', 'thing', 'they', 'ask', 'is', "who's", 'responsible', 'for', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "couldn't", 'raise', 'a', 'kid', '||questionmark||', 'come', 'on', '||comma||', 'i', 'love', 'bossing', 'people', 'around', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||comma||', 'i', 'thought', 'you', 'were', 'with', 'tara', 'tonight', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'was', '||comma||', 'i', 'had', 'to', 'leave', '||period||', 'she', 'lit', 'some', 'vanilla', 'incenses', '||period||', 'the', 'smell', 'drove', 'me', 'nuts', '||comma||', 'all', 'i', 'could', 'think', 'about', 'was', 'food', '||comma||', 'i', 'had', 'to', 'get', 'out', 'of', 'there', '||period||', 'we', 'need', 'some', 'pudding', 'here', '||exclammark||', 'pudding', '||exclammark||', '||return||', '||return||', 'elaine:', 'you', 'just', 'left', '||questionmark||', 'what', 'did', 'you', 'tell', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'i', 'had', 'a', 'bus', 'transfer', 'that', 'was', 'only', 'good', 'just', 'for', 'another', 'hour', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||comma||', 'i', 'was', 'starving', 'jerry', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'pudding', '||exclammark||', 'you', 'want', 'some', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'guys', 'think', "i'm", 'getting', 'a', 'little', '||period||', '||period||', '||period||', 'chunky', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'kidding', '||questionmark||', 'we', 'look', 'great', '||exclammark||', 'you', 'know', 'what', 'this', 'pudding', 'needs', '||questionmark||', 'the', 'skin', 'on', 'the', 'top', '||comma||', 'you', 'know', 'like', 'your', 'mother', 'used', 'to', 'make', 'it', 'on', 'the', 'stove', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', "you're", 'getting', 'a', 'little', 'pudding', 'under', 'the', 'skin', 'yourself', '||period||', '||return||', '||return||', 'kramer:', 'my', 'service', 'rates', 'went', 'up', '||questionmark||', 'you', 'banks', 'are', 'all', 'the', 'same', 'with', 'your', 'hidden', 'fees', 'and', 'your', 'service', 'charges', '||period||', 'well', '||comma||', 'maybe', "i'll", 'just', 'take', 'my', 'blood', 'elsewhere', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'bank', 'employee:', 'well', '||comma||', 'we', 'can', 'transfer', 'to', 'another', 'bank', 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', 'no', 'no', '||period||', '||period||', '||period||', 'no', 'more', 'banks', '||period||', "i'm", 'keeping', 'my', 'blood', 'in', 'my', 'freezer', 'with', '||period||', '||period||', '||period||', 'my', 'money', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'eh', '||comma||', 'what', 'do', 'you', 'say', '||questionmark||', '||return||', '||return||', 'tara:', 'i', 'guess', 'we', 'could', 'use', 'some', 'food', 'in', 'our', 'lovemaking', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'we', 'got', 'your', '||period||', '||period||', '||period||', 'got', 'your', 'strawberries', '||comma||', 'your', 'chocolate', 'sauce', '||comma||', 'your', 'pastrami', 'on', 'rye', 'with', 'mustard', '||comma||', 'your', 'honey', '||period||', '||period||', '||period||', '||return||', '||return||', 'tara:', 'wait', 'wait', 'wait', '||comma||', 'pastrami', 'on', 'rye', 'with', 'mustard', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'yeah', 'yeah', '||comma||', "don't", 'you', 'know', 'they', 'used', 'pastrami', 'in', 'that', 'movie', '9', '||questionmark||', 'weeks', '||questionmark||', 'remember', 'the', 'pastrami', 'scene', '||questionmark||', '||return||', '||return||', 'tara:', 'no', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'maybe', 'it', 'was', 'ghostbusters', '||questionmark||', 'where', 'ever', 'it', 'was', '||comma||', 'it', 'worked', '||exclammark||', '||return||', '||return||', 'jerry:', "didn't", 'go', 'for', 'it', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'she', "didn't", 'appreciate', 'the', 'erotic', 'qualities', 'of', 'the', 'salted', 'cured', 'meats', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'tolerated', 'the', 'strawberries', 'and', 'the', 'chocolate', 'sauce', '||comma||', 'but', 'eh', '||comma||', "it's", 'not', 'a', 'meal', '||comma||', 'you', 'know', '||questionmark||', 'food', 'and', 'sex', '||comma||', 'those', 'are', 'my', 'two', 'passions', '||period||', "it's", 'only', 'natural', 'to', 'combine', 'them', '||period||', '||return||', '||return||', 'jerry:', 'natural', '||questionmark||', 'sex', 'is', 'about', 'love', 'between', 'a', 'man', 'and', 'a', 'woman', '||comma||', 'not', 'a', 'man', 'and', 'a', 'sandwich', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "i'm", 'not', 'suggesting', 'getting', 'rid', 'of', 'the', 'girl', '||period||', "she's", 'integral', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'instead', 'of', 'trying', 'to', 'satisfy', 'two', 'of', 'your', 'needs', '||comma||', 'how', 'about', 'satisfying', 'one', 'of', 'somebody', "else's", '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'speaking', 'of', 'which', '||comma||', 'i', 'found', 'a', 'great', 'way', 'to', 'separate', 'the', 'skin', 'from', 'the', 'top', 'of', 'the', 'pudding', 'without', 'leaving', 'any', 'around', 'the', 'edges', '||semicolon||', 'exacto', 'knife', '||period||', '||return||', '||return||', 'jerry:', 'i', 'told', 'you', 'george', '||comma||', 'no', 'more', 'pudding', '||period||', "i'm", 'starting', 'a', 'purification', 'program', '||period||', 'keep', 'all', 'that', 'kind', 'of', 'food', 'away', 'from', 'me', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'guess', 'these', 'would', 'be', 'out', 'of', 'the', 'question', '||period||', '||leftparen||', 'pulls', 'out', 'two', 'pudding', 'skins', 'in', 'plastic', 'bags', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'pudding', 'skin', 'singles', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'buddy', '||comma||', "i'm", 'borrowing', 'all', 'your', 'tupperware', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'closed', 'down', 'my', 'account', 'at', 'the', 'blood', 'bank', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'it', '||period||', '||period||', '||period||', "it's", 'here', 'in', 'the', 'building', '||questionmark||', '||return||', '||return||', 'kramer:', 'right', 'across', 'the', 'hall', '||period||', 'what', '||comma||', 'you', 'wanna', 'go', 'see', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'i', "don't", '||exclammark||', 'in', 'fact', '||comma||', 'if', 'even', 'one', 'corpuscles', 'of', 'that', 'blood', 'should', 'find', "it's", 'way', 'across', 'that', 'hall', 'i', 'will', 'freak', 'out', 'on', 'you', 'kramer', '||exclammark||', 'freak', 'out', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'for', 'a', 'fat', 'guy', "you're", 'not', 'very', 'jolly', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'working', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'it', 'and', 'i', 'ditched', 'all', 'my', 'junk', 'food', '||period||', '||return||', '||return||', 'kramer:', 'what', 'the', 'heck', 'is', 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'sorry', 'buddy', '||comma||', 'clean', 'house', '||period||', "it's", 'all', 'health', 'food', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'may', 'have', 'to', 'take', 'it', '||comma||', 'but', 'i', "don't", 'have', 'to', 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'vivian', 'left', 'me', 'a', 'message', '||period||', 'i', 'guess', 'a', 'certain', 'someone', 'changed', 'her', 'mind', 'about', 'whether', 'someone', 'was', 'responsible', 'enough', 'to', 'watch', 'certain', 'other', 'someone', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'about', 'me', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'then', 'i', 'lost', 'interest', '||period||', '||return||', '||return||', 'elaine:', 'vivian', '||comma||', 'hi', "it's", 'elaine', '||period||', 'yeah', '||comma||', "i'm", 'over', 'at', "jerry's", '||comma||', 'i', 'got', 'your', 'message', '||period||', '||period||', '||period||', 'what', '||questionmark||', 'yeah', '||comma||', "he's", 'right', 'here', '||comma||', 'hold', 'on', '||period||', '||period||', '||period||', '||leftparen||', 'hands', 'the', 'phone', 'to', 'kramer', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'for', 'me', '||questionmark||', 'go', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'what', 'tonight', '||questionmark||', 'yeah', '||comma||', "i'll", 'be', 'there', '||period||', '||period||', '||period||', 'yeah', 'later', '||period||', '||leftparen||', 'puts', 'the', 'phone', 'down', '||rightparen||', 'well', '||comma||', "somebody's", 'baby', '||dash||', 'sitting', '||period||', '||return||', '||return||', 'elaine:', 'you', '||questionmark||', "i'm", 'more', 'responsible', 'than', 'you', 'are', '||exclammark||', '||return||', '||return||', 'kramer:', "don't", 'be', 'ridiculous', '||period||', 'now', '||comma||', 'if', "you'll", 'excuse', 'me', '||comma||', 'i', 'have', 'to', 'go', 'to', 'fill', 'my', 'freezer', 'with', 'my', 'own', 'blood', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'tara', '||exclammark||', '||return||', '||return||', 'kramer:', 'hello', '||comma||', 'vivian', '||exclammark||', 'oh', '||comma||', 'this', 'is', 'a', 'nice', 'screen', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "don't", 'take', 'my', 'money', '||exclammark||', '||return||', '||return||', 'elaine:', 'it', 'is', 'me', '||comma||', 'you', 'idiot', '||period||', 'hi', '||comma||', 'all', 'right', "you've", 'got', 'to', 'get', 'out', 'of', 'here', '||comma||', "i'm", 'gonna', 'baby', '||dash||', 'sit', 'the', 'hell', 'out', 'of', 'that', 'kid', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'm", 'the', 'baby', '||dash||', 'sitter', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', 'no', '||comma||', "you're", 'out', '||comma||', "i'm", 'in', '||period||', 'now', '||comma||', 'hit', 'the', 'road', '||period||', '||return||', '||return||', 'vivian:', 'elaine', '||questionmark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', 'is', 'actually', 'sleeping', 'one', 'off', '||comma||', 'so', 'i', 'thought', 'that', "i'd", 'help', 'out', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'moans', 'from', 'the', 'bushes', '||rightparen||', "what's", 'that', '||comma||', 'some', 'raccoon', 'or', 'something', '||period||', '||period||', '||period||', '||leftparen||', 'hits', 'kramer', 'with', 'a', 'broom', '||period||', '||rightparen||', '||return||', '||return||', 'vivian:', 'well', '||comma||', 'i', 'guess', 'this', 'would', 'be', 'all', 'right', '||period||', 'jimmy', '||comma||', 'you', 'remember', 'elaine', '||questionmark||', "she's", 'gonna', 'watch', 'you', 'tonight', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'jimmy', '||period||', '||leftparen||', 'jimmy', 'kicks', 'elaine', 'to', 'the', 'shin', '||period||', '||rightparen||', 'ouch', '||exclammark||', '||leftparen||', 'the', 'screen', 'door', 'hits', 'her', 'in', 'the', 'head', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', 'i', 'thought', 'you', 'were', 'baby', '||dash||', 'sitting', 'at', "vivian's", '||period||', '||return||', '||return||', 'kramer:', 'there', 'was', 'an', 'incident', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', "where's", 'the', 'blood', '||questionmark||', '||leftparen||', 'opens', 'the', 'fridge', '||rightparen||', "it's", 'in', 'here', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'would', 'you', 'stop', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'jell', '||dash||', 'o', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'this', '||questionmark||', 'this', 'is', 'blood', "isn't", 'it', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'this', 'is', 'tomato', 'juice', '||comma||', 'look', '||period||', '||period||', '||period||', '||leftparen||', 'drinks', 'from', 'the', 'bottle', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'ooh', '||comma||', "you're", 'sick', '||exclammark||', "you're", 'sick', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'will', 'you', 'calm', 'down', '||period||', 'i', 'took', 'all', 'my', 'blood', 'down', 'to', "newman's", '||period||', 'he', 'let', 'me', 'put', 'it', 'in', 'his', 'meat', 'freezer', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', 'who', 'made', 'pudding', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', 'yeah', '||comma||', 'george', 'he', 'came', 'by', 'and', 'made', 'more', 'of', 'those', 'pudding', 'skin', 'singles', '||period||', "they're", 'delicious', '||period||', '||return||', '||return||', 'jerry:', 'damn', 'that', 'george', '||comma||', 'i', 'told', 'him', 'i', "don't", 'want', 'this', 'stuff', 'around', 'here', 'anymore', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'heads', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'aaah', '||period||', '||period||', '||period||', '||return||', '||return||', 'jimmy:', "you're", 'dead', '||comma||', 'president', 'lincoln', '||exclammark||', "you're", 'dead', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'wish', 'i', 'was', 'dead', '||period||', '||return||', '||return||', 'jimmy:', 'can', 'i', 'have', 'your', 'juice', '||questionmark||', '||return||', '||return||', 'elaine:', 'as', 'long', 'as', 'you', "don't", 'put', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'thanks', 'for', 'the', 're', '||dash||', 'fill', '||period||', '||return||', '||return||', 'vivian:', 'hey', '||comma||', 'elaine', '||exclammark||', 'how', 'did', 'it', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", '||period||', '||period||', '||period||', "he's", 'a', 'joy', '||period||', '||period||', '||period||', '||return||', '||return||', 'vivian:', 'really', '||questionmark||', 'some', 'sitter', 'have', 'told', 'me', "he's", 'bit', 'of', 'a', 'handful', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'handful', 'of', 'sunshine', '||period||', 'i', 'wish', 'i', 'could', 'do', 'this', 'every', 'day', '||period||', '||return||', '||return||', 'vivian:', 'oh', 'elaine', '||comma||', "that's", 'so', 'good', 'to', 'hear', '||period||', "i've", 'been', 'having', 'a', 'few', 'health', 'problems', 'lately', '||period||', '||return||', '||return||', 'elaine:', "it's", 'not', 'serious', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'vivian:', 'well', '||comma||', 'it', 'might', 'be', '||period||', 'just', 'in', 'case', 'anything', 'does', 'happen', '||comma||', "it's", 'nice', 'to', 'know', "there's", 'somebody', 'like', 'you', 'around', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'yeah', '||comma||', 'that', 'eh', '||period||', '||period||', '||period||', 'that', 'is', 'nice', 'to', 'know', '||period||', '||leftparen||', 'pours', 'the', 'juice', 'from', 'the', 'bag', 'back', 'to', 'glass', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'aah', '||exclammark||', '||return||', '||return||', 'kramer:', "it's", 'ok', '||comma||', 'jerry', '||period||', "i'm", 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'i', 'can', 'see', 'that', '||exclammark||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'knife', '||comma||', 'it', 'nicked', 'your', 'jugular', '||period||', 'you', 'know', 'jerry', '||comma||', 'when', 'somebody', 'yells', "'heads", "up'", '||comma||', "you're", 'not', 'supposed', 'to', 'actually', 'look', 'up', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'remember', 'that', '||period||', '||return||', '||return||', 'kramer:', 'anyway', '||comma||', 'you', 'were', 'lucky', 'that', 'i', 'was', 'there', '||period||', 'you', 'lost', 'a', 'lot', 'of', 'blood', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', "you've", 'got', 'three', 'pints', 'of', 'kramer', 'in', 'you', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'george:', 'three', 'pints', 'of', "kramer's", 'blood', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'can', 'feel', 'his', 'blood', 'inside', 'of', 'me', '||period||', 'borrowing', 'things', 'from', 'my', 'blood', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'so', 'much', 'for', 'purification', 'week', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "how's", 'the', 'fornicating', 'gourmet', '||questionmark||', '||return||', '||return||', 'george:', 'doing', 'quite', 'well', '||comma||', 'thank', 'you', '||period||', 'yesterday', 'i', 'had', 'a', 'soft', 'boiled', 'egg', 'and', 'a', 'quickie', '||period||', 'you', 'know', 'what', '||questionmark||', 'if', 'i', 'could', 'add', 'tv', 'to', 'the', 'equation', '||comma||', 'that', 'would', 'really', 'be', 'the', 'ultimate', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', "we're", 'trying', 'to', 'have', 'a', 'civilization', 'here', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'how', 'was', 'baby', '||dash||', 'sitting', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'just', 'great', '||period||', 'i', 'found', 'out', 'that', 'vivian', 'has', 'some', 'kind', 'of', 'medical', 'problem', 'and', 'if', 'the', 'worst', 'happens', 'she', 'wants', 'me', 'to', 'take', 'care', 'of', 'jimmy', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'sure', 'it', "won't", 'be', 'the', 'worst', '||period||', '||return||', '||return||', 'elaine:', 'it', "doesn't", 'matter', '||period||', 'if', 'anything', 'happens', 'to', 'her', '||comma||', "i'm", 'on', 'deck', '||exclammark||', 'scissors', 'mishap', '||comma||', 'air', 'show', 'disaster', '||comma||', 'chinese', 'organ', 'thieves', '||period||', '||period||', '||period||', "it's", 'a', 'dangerous', 'world', '||period||', '||return||', '||return||', 'george:', "she's", 'right', '||comma||', 'i', 'heard', 'kramer', 'got', 'mugged', 'out', 'on', 'the', 'suburbs', 'on', 'a', 'baby', '||dash||', 'sitting', 'gig', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'kramer:', 'look', 'at', 'this', '||comma||', 'look', 'at', 'the', 'hair', 'on', 'the', 'back', 'of', 'my', 'neck', '||period||', "it's", 'all', 'bramble', '||comma||', 'see', "it's", 'like', 'thicket', 'back', 'there', '||period||', 'look', '||comma||', 'i', 'need', 'somebody', 'to', 'shave', 'it', 'for', 'me', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'touching', 'that', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'have', 'to', 'say', "i'm", 'very', 'surprised', 'and', 'disappointed', '||dash||', 'blood', 'brother', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'jerry', '||comma||', 'i', 'gave', 'you', 'my', 'blood', '||period||', 'listen', 'to', 'your', 'pulse', '||comma||', '||leftparen||', 'takes', 'jerry', 'hand', '||rightparen||', 'hey', 'buddy', '||dash||', 'hey', 'buddy', '||dash||', 'hey', 'buddy', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "i'm", 'not', 'shaving', 'your', 'neck', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'my', 'blood', 'is', 'not', 'enough', '||period||', 'would', 'you', 'like', 'a', 'kidney', 'too', '||comma||', 'because', "i'll", 'give', 'it', 'to', 'you', '||questionmark||', "i'll", 'rip', 'it', 'out', 'right', 'here', 'and', 'stack', 'it', 'on', 'the', 'table', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', "i'll", 'do', 'it', '||comma||', 'sit', 'down', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||comma||', 'i', "don't", 'have', 'time', 'right', 'now', '||period||', "i'll", 'catch', 'you', 'tonight', '||comma||', "we'll", 'do', 'sort', 'of', 'an', 'all', 'over', 'kind', 'of', 'thing', '||comma||', 'all', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'helen:', 'kramer', 'called', '||comma||', 'he', 'told', 'that', 'you', 'were', 'in', 'a', 'hospital', '||period||', '||return||', '||return||', 'jerry:', 'kramer', 'called', 'you', '||questionmark||', '||return||', '||return||', 'helen:', 'he', 'calls', 'every', 'week', '||period||', 'are', 'you', 'all', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', "i'm", 'fine', '||period||', '||return||', '||return||', 'helen:', 'he', 'says', "he's", 'fine', '||period||', '||return||', '||return||', 'morty:', 'tell', 'him', 'to', 'eat', 'a', 'plum', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'you', 'really', 'have', 'to', 'take', 'better', 'care', 'of', 'yourself', '||period||', 'we', 'bought', 'you', 'some', 'session', 'with', 'a', 'personal', 'trainer', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'need', 'a', 'personal', 'trainer', '||period||', '||leftparen||', 'kramer', 'comes', 'in', '||rightparen||', 'all', 'right', "i've", 'got', 'to', 'go', '||comma||', "we'll", 'talk', 'about', 'this', 'later', '||period||', '||return||', '||return||', 'morty:', 'plum', '||period||', '||period||', '||period||', '||leftparen||', 'jerry', 'hangs', 'up', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'why', 'are', 'you', 'calling', 'my', 'parents', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'maybe', 'if', 'you', 'called', 'more', 'often', '||comma||', 'i', "wouldn't", 'have', 'to', '||period||', 'listen', '||comma||', 'is', 'it', 'all', 'right', 'if', 'i', 'watch', 'a', 'tape', 'in', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'taping', 'canadian', 'parliament', '||comma||', 'you', 'know', 'on', 'c', '||dash||', 'span', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'is', 'it', 'all', 'right', 'if', 'i', 'watch', 'it', 'in', 'your', 'bedroom', '||comma||', 'cause', 'your', 'bed', 'is', 'really', 'nice', '||questionmark||', '||return||', '||return||', 'jerry:', 'fine', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'no', '||exclammark||', 'i', 'do', 'not', 'want', 'that', 'in', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'blood', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'izzy:', 'hello', '||comma||', 'dough', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'mr', '||period||', 'mandelbaum', '||questionmark||', "you're", 'the', 'personal', 'trainer', '||questionmark||', '||return||', '||return||', 'izzy:', "i'm", 'here', 'to', 'whip', 'you', 'in', 'to', 'shape', '||comma||', 'so', 'grab', 'your', 'jocks', '||dash||', 'if', 'you', 'need', 'one', '||period||', "it's", 'go', '||dash||', 'time', '||period||', '||return||', '||return||', 'vivian:', 'elaine', '||questionmark||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||comma||', 'oh', 'god', '||period||', 'i', "didn't", 'here', 'you', 'come', 'in', '||period||', '||return||', '||return||', 'vivian:', "where's", 'jimmy', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', "don't", 'know', '||period||', '||period||', '||period||', 'we', 'had', 'hohos', 'for', 'dinner', 'and', 'then', 'eh', '||period||', '||period||', '||period||', 'and', 'then', 'he', 'put', 'this', 'plastic', 'bag', 'over', 'his', 'head', 'and', 'started', 'running', 'around', 'until', 'he', 'got', 'tired', 'and', 'then', 'he', 'laid', 'down', 'somewhere', 'i', '||period||', '||period||', '||period||', 'i', 'tell', 'you', "i'm", 'no', 'good', 'watching', 'that', 'kid', '||period||', '||return||', '||return||', 'vivian:', 'sleeping', 'like', 'an', 'angel', '||period||', 'elaine', '||comma||', "you're", 'the', 'best', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', "i'm", 'a', 'scatter', 'brain', '||period||', "that's", 'why', 'i', 'probably', "can't", 'hold', 'a', 'job', 'or', 'keep', 'a', 'man', '||exclammark||', '||return||', '||return||', 'vivian:', 'be', 'quiet', '||period||', 'so', '||comma||', 'will', 'you', 'watch', 'jimmy', 'tomorrow', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'but', "i'm", 'running', 'out', 'of', 'purses', 'here', '||period||', '||leftparen||', 'takes', 'her', 'purse', 'from', 'a', 'punch', 'ball', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'ok', 'mr', '||period||', 'mandelbaum', '||comma||', 'what', 'you', 'want', 'me', 'to', 'do', '||questionmark||', '||return||', '||return||', 'izzy:', "don't", 'get', 'puss', 'honey', '||comma||', 'and', 'pick', 'up', 'that', 'medicine', 'ball', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'a', 'gym', '||comma||', 'or', 'some', 'kind', 'of', 'fitness', 'museum', '||questionmark||', '||return||', '||return||', 'izzy:', 'not', 'funny', '||comma||', 'over', 'your', 'head', 'with', 'it', '||period||', 'are', 'you', 'ready', '||questionmark||', '||return||', '||return||', 'jerry:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'izzy:', 'all', 'aboard', 'in', 'the', 'pain', 'train', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'many', 'session', 'did', 'my', 'parents', 'paid', 'for', '||questionmark||', '||return||', '||return||', 'izzy:', 'not', 'enough', 'to', 'make', 'a', 'man', 'of', 'you', '||comma||', 'daffodil', '||period||', '||return||', '||return||', 'george:', 'oohoho', '||period||', '||period||', '||period||', 'spicy', 'mustard', '||period||', '||period||', '||period||', 'woohoho', '||comma||', "you're", 'hot', 'tonight', '||exclammark||', '||return||', '||return||', 'tara:', 'oh', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'and', 'now', 'for', 'the', 'trifecta', '||period||', '||leftparen||', 'picks', 'up', 'a', 'hand', 'held', 'tv', 'and', 'gets', 'back', 'under', 'the', 'covers', '||period||', '||rightparen||', '||return||', '||return||', 'tara:', 'george', '||questionmark||', 'george', '||questionmark||', 'what', 'are', 'you', 'doing', '||questionmark||', '||exclammark||', '||leftparen||', 'pulls', 'the', 'covers', 'off', '||period||', 'george', 'is', 'eating', 'a', 'sandwich', 'and', 'watching', 'tv', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'pleasuring', 'you', '||questionmark||', '||return||', '||return||', '[5a', '||period||', 'kramer', 'and', 'newman', 'are', 'making', 'sausages', '||period||', 'tape', 'recorder', 'plays', 'jackie', 'davis:', 'manana', '||period||', 'jerry', 'comes', 'in', '||period||', ']', '||return||', '||return||', 'jerry:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', "we're", 'making', 'sausages', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'were', 'gonna', 'watch', 'a', 'video', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'an', 'instructional', 'video', 'about', 'how', 'to', 'make', 'your', 'own', 'sausages', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "i'm", 'not', 'in', 'a', 'mood', 'for', 'this', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'newman', '||comma||', "let's", 'go', 'grab', 'some', 'mail', 'sacks', 'and', 'haul', 'these', 'beauties', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', 'blood', 'over', 'there', '||comma||', 'sausages', 'over', 'here', '||period||', "i'm", 'living', 'in', 'a', 'slaughter', 'house', '||period||', '||return||', '||return||', 'izzy:', 'tonight', 'i', 'want', 'you', 'to', 'sleep', 'on', 'this', '||period||', 'toughens', 'the', 'vertebrae', '||period||', '||leftparen||', 'looks', 'at', 'the', 'sausages', '||rightparen||', 'what', 'in', 'holy', 'hell', '||questionmark||', 'sausages', '||questionmark||', 'is', 'this', 'your', 'diet', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', "they're", 'not', 'mine', 'mr', '||period||', 'mandelbaum', '||period||', '||period||', '||period||', '||return||', '||return||', 'izzy:', "don't", 'lie', 'to', 'me', '||comma||', 'butter', 'bean', '||period||', "we're", 'taking', 'it', 'up', 'a', 'notch', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'the', 'free', 'love', 'buffet', 'is', 'over', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'got', 'greedy', '||period||', 'flew', 'too', 'close', 'to', 'the', 'sun', 'on', 'wings', 'of', 'pastrami', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'what', 'you', 'did', '||period||', '||period||', '||period||', 'i', "can't", 'believe', 'i', 'got', 'another', 'session', 'with', 'izzy', 'mandelbaum', '||comma||', "he's", 'probably', 'makes', 'me', 'box', 'a', 'kangaroo', '||period||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'this', 'sandwich', 'is', 'making', 'me', 'flush', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'no', '||comma||', "i'll", 'tell', 'you', 'what', 'you', 'did', 'caligula', '||semicolon||', 'you', 'combined', 'food', 'and', 'sex', 'in', 'to', 'one', 'disgusting', 'uncontrollable', 'urge', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "you're", 'right', '||period||', 'you', 'gonna', 'eat', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'but', 'please', 'tell', 'me', "that's", 'all', "you're", 'gonna', 'do', 'with', 'it', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'i', 'tell', 'you', '||semicolon||', 'if', 'this', 'woman', 'dies', '||comma||', 'it', 'is', 'going', 'to', 'be', 'a', 'major', 'inconvenience', '||period||', '||return||', '||return||', 'george:', 'these', 'fries', 'are', 'really', 'really', 'good', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "that's", 'enough', 'of', 'that', '||period||', '||leftparen||', 'jerry', 'takes', 'the', 'plates', 'and', 'hands', 'them', 'to', 'a', 'waitress', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', 'mean', 'i', "can't", 'shake', 'this', 'woman', '||period||', 'you', 'know', '||comma||', 'now', 'i', 'have', 'to', 'go', 'to', "jimmy's", 'birthday', 'party', '||period||', '||return||', '||return||', 'george:', 'uuh', '||comma||', 'sleepy', '||period||', '||return||', '||return||', 'elaine:', 'no', 'matter', 'what', 'i', 'do', '||comma||', 'i', 'cannot', 'weasel', 'out', 'of', 'raising', 'this', 'kid', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'sleepy', 'here', 'is', 'quite', 'a', 'weasel', '||comma||', 'maybe', 'he', 'can', 'bat', 'for', 'you', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'what', 'i', 'need', '||semicolon||', 'a', 'pinch', 'weasel', '||period||', '||return||', '||return||', 'kramer:', 'why', 'did', 'you', 'get', 'rid', 'of', 'that', 'sausage', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', "wasn't", 'me', '||comma||', 'it', 'was', 'mr', '||period||', 'mandelbaum', '||period||', '||return||', '||return||', 'kramer:', 'yeah', 'well', '||comma||', "newman's", 'not', 'happy', '||comma||', 'he', 'booted', 'me', 'out', 'of', 'his', 'freezer', '||period||', 'look', '||comma||', "i've", 'got', 'to', 'take', 'my', 'blood', 'back', 'to', 'the', 'bank', '||comma||', 'can', 'i', 'borrow', 'your', 'car', '||questionmark||', '||return||', '||return||', 'jerry:', "what's", 'wrong', 'with', 'yours', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'no', 'a/c', 'and', 'i', 'gotta', 'keep', 'the', 'blood', 'cold', 'or', "it'll", 'go', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'but', 'this', 'is', 'it', '||comma||', 'this', 'is', 'the', 'last', 'favor', '||comma||', "we're", 'even', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'even', 'steven', '||period||', 'oh', '||comma||', 'by', 'the', 'way', '||comma||', 'when', 'you', 'get', 'back', 'to', 'your', 'apartment', 'try', 'to', 'keep', 'it', 'down', 'because', 'newman', 'is', 'taking', 'a', 'nap', 'in', 'your', 'bed', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'man', '||period||', '||period||', '||period||', '||leftparen||', 'looks', 'to', 'the', 'glove', 'compartment', 'for', 'a', 'manual', '||period||', '||rightparen||', '||quotemark||', 'if', 'the', 'engine', 'begins', 'to', 'overheat', '||comma||', 'turn', 'off', 'air', 'conditioner', '||quotemark||', '||period||', 'never', '||comma||', 'i', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'mama', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'shees', '||comma||', 'come', 'on', '||period||', '||period||', '||period||', '||leftparen||', 'opens', 'the', 'radiator', '||rightparen||', '||period||', '||period||', 'this', 'thing', 'is', 'bone', 'dry', '||period||', '||leftparen||', 'looks', 'at', 'the', 'blood', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'vivian', '||period||', '||period||', '||period||', '||return||', '||return||', 'vivian:', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', 'this', 'is', 'my', 'friend', 'george', '||period||', '||return||', '||return||', 'vivian:', 'hi', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'gonna', 'go', 'say', 'hi', 'to', 'jimmy', '||period||', '||return||', '||return||', 'vivian:', 'ok', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whispering', 'to', 'george', '||rightparen||', "you're", 'up', '||period||', '||return||', '||return||', 'vivian:', 'oh', '||comma||', "isn't", 'elaine', 'fantastic', '||questionmark||', '||return||', '||return||', 'george:', 'yes', 'she', 'is', '||period||', "it's", 'a', 'pity', 'we', "won't", 'be', 'seeing', 'much', 'more', 'of', 'her', '||period||', '||return||', '||return||', 'vivian:', 'really', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', "haven't", 'heard', '||comma||', "she's", 'going', 'to', 'live', 'with', 'her', 'grandparents', 'in', 'redding', 'pennsylvania', '||period||', '||return||', '||return||', 'vivian:', 'her', 'grandparent', 'passed', 'away', 'five', 'years', 'ago', '||period||', '||return||', '||return||', 'george:', 'yes', 'they', 'did', '||period||', 'i', 'was', 'covering', '||period||', 'elaine', 'has', 'been', 'deported', 'back', 'to', 'scotland', '||period||', '||return||', '||return||', 'vivian:', "she's", 'american', 'citizen', '||comma||', 'i', 'have', 'seen', 'her', 'passport', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'no', 'more', 'lies', '||period||', 'elaine', 'is', 'been', 'chosen', 'to', 'represent', 'the', 'upper', 'west', 'side', 'in', 'the', 'next', 'biosphere', 'project', '||period||', '||return||', '||return||', 'vivian:', 'i', "haven't", 'heard', 'anything', 'about', 'another', 'biosphere', '||period||', '||return||', '||return||', 'george:', "that's", 'because', "it's", 'underwater', '||period||', '||return||', '||return||', 'vivian:', 'this', 'is', 'insane', '||period||', '||return||', '||return||', 'george:', 'is', 'it', '||questionmark||', '||return||', '||return||', 'vivian:', 'yes', 'it', 'it', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'all', 'for', 'charity', '||comma||', 'so', "what's", 'the', 'difference', '||period||', '||return||', '||return||', 'vivian:', 'you', '||period||', '||period||', '||period||', 'very', 'knowledgeable', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'also', 'an', 'architect', '||period||', 'is', 'that', 'pastrami', '||questionmark||', '||return||', '||return||', 'vivian:', 'yes', 'it', 'is', '||period||', 'i', 'find', 'the', 'pastrami', 'to', 'be', 'the', 'most', 'sensual', 'of', 'all', 'the', 'salted', 'cured', 'meats', '||period||', 'hungry', '||questionmark||', '||return||', '||return||', 'george:', 'very', '||period||', '||return||', '||return||', 'vivian:', 'oh', '||comma||', 'wait', '||period||', '||period||', '||period||', '||leftparen||', 'vivian', 'turns', 'the', 'tv', 'on', '||period||', '||rightparen||', 'oohh', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'vivian', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'this', 'really', 'necessary', '||questionmark||', '||return||', '||return||', 'izzy:', 'if', 'you', 'wanna', 'live', 'in', 'a', 'butcher', 'shop', '||comma||', "i'm", 'gonna', 'treat', 'you', 'like', 'a', 'piece', 'of', 'meat', '||period||', '||return||', '||return||', 'jerry:', 'what', 'if', 'i', "can't", 'keep', 'up', '||questionmark||', '||return||', '||return||', 'izzy:', 'you', 'lie', '||comma||', 'you', 'dry', '||period||', 'fire', 'it', 'up', '||comma||', 'son', '||period||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'right', 'dad', '||comma||', 'mandelbaum', '||comma||', 'mandelbaum', '||period||', '||period||', '||period||', '||return||', '||return||', 'izzy', '&', 'izzy', 'jr', '||period||', ':', 'mandelbaum', '||comma||', 'mandelbaum', '||period||', '||period||', '||period||', '||leftparen||', 'izzy', 'jr', '||period||', 'drives', 'ahead', '||comma||', 'but', 'the', 'car', 'starts', 'jerking', '||rightparen||', '||return||', '||return||', 'izzy:', 'move', 'it', '||comma||', 'move', 'it', '||exclammark||', 'get', 'those', 'knees', 'up', '||exclammark||', 'come', 'on', '||comma||', 'kick', 'it', '||comma||', 'kick', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', "there's", 'something', 'wrong', 'with', 'your', 'car', '||period||', "it's", 'dripping', 'something', 'on', 'my', 'feet', '||period||', 'some', 'kind', 'of', 'red', 'liquid', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||comma||', 'the', 'blood', '||exclammark||', '||return||', '||return||', 'izzy', 'jr', '||period||', ':', 'blood', '||exclammark||', '||exclammark||', '||return||', '||return||', 'izzy:', 'get', 'up', 'boy', '||comma||', 'get', 'up', '||exclammark||', 'we', 'got', 'a', 'problem', 'here', '||exclammark||', 'tough', 'it', 'up', '||period||', 'this', 'is', 'for', 'real', '||comma||', "you've", 'got', 'to', 'want', 'it', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', 'how', 'long', 'did', 'they', 'drag', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'for', 'the', 'first', 'quarter', 'mile', 'they', 'thought', 'that', 'i', 'was', 'just', "doggin'", 'it', '||period||', '||return||', '||return||', 'elaine:', 'hi', 'george', '||period||', 'hi', 'jimmy', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'jimmy', 'why', "don't", 'you', 'wait', 'outside', '||comma||', 'you', 'know', '||comma||', 'play', 'with', 'something', '||period||', '||return||', '||return||', 'george:', 'ouch', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'the', 'kid', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'baby', '||dash||', 'sitting', '||exclammark||', 'vivian', 'asked', 'me', 'to', 'raise', 'him', 'if', 'she', "doesn't", 'make', 'it', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'a', 'drag', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'that', 'kid', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'put', 'blood', 'in', 'the', 'car', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'it', 'was', 'overheating', '||period||', 'you', 'should', 'take', 'better', 'care', 'of', 'that', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'they', 'told', 'me', 'that', 'i', 'got', 'more', 'blood', '||comma||', 'so', 'i', 'guess', 'i', 'owe', 'you', 'again', '||period||', '||return||', '||return||', 'kramer:', 'you', "didn't", 'get', 'the', 'blood', 'from', 'me', '||period||', '||return||', '||return||', 'jerry:', 'then', 'who', '||questionmark||', '||return||', '||return||', 'newman:', 'hello', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'aaaaahhh', '||period||', '||period||', '||period||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry', '&', 'kramer:', 'aaaahhh', '||period||', '||period||', '||period||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry', '||comma||', 'kramer', '&', 'newman:', 'aaaaahhh', '||period||', '||period||', '||period||', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'yeah', '||period||', 'yeah', '||period||', 'all', 'right', '||period||', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'knocking', 'on', 'the', 'counter', 'and', 'feigning', 'a', 'muffled', '||comma||', 'chinese', 'voice', '||rightparen||', 'chinese', 'food', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hanging', 'up', 'the', 'phone', '||rightparen||', 'oh', '||exclammark||', "there's", 'my', 'chinese', 'food', '||comma||', 'i', 'gotta', 'run', '||period||', 'all', 'you', '||period||', '||return||', '||return||', 'george:', 'who', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'did', 'a', 'show', 'for', 'a', 'car', 'dealership', 'and', "they're", 'getting', 'me', 'a', 'new', 'saab', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'your', 'old', 'car', '||questionmark||', 'they', "couldn't", 'get', "kramer's", 'blood', 'out', 'of', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'the', 'engine', 'clotted', '||period||', 'you', 'know', 'who', 'set', 'this', 'whole', 'thing', 'up', 'for', 'me', '||questionmark||', 'frank', 'merman', '||period||', '||return||', '||return||', 'george:', 'fragile', 'frankie', 'merman', '||questionmark||', 'i', 'never', 'liked', 'that', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', "he's", 'harmless', '||period||', '||return||', '||return||', 'george:', 'every', 'summer', 'you', 'guys', 'went', 'to', 'camp', 'together', '||period||', 'i', 'was', 'jealous', '||period||', 'felt', 'like', 'he', 'was', 'the', 'summer', 'me', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'not', 'the', 'summer', 'you', '||period||', 'besides', '||comma||', 'you', 'had', 'a', 'summer', 'me', '||period||', 'whitey', 'fisk', '||comma||', 'the', 'guy', 'who', 'snuck', 'you', 'into', 'last', 'tango', 'in', 'paris', '||period||', '||return||', '||return||', 'george:', 'i', 'made', 'him', 'up', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'never', 'saw', 'last', 'tango', 'in', 'paris', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'too', 'bad', '||period||', 'it', 'was', 'erotic', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', '||rightparen||', 'well', '||period||', '||period||', '||period||', "i've", 'had', 'it', 'with', 'these', 'jackbooted', 'thugs', '||exclammark||', '||return||', '||return||', 'jerry:', "'pottery", "barn'", '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'got', 'three', "'pottery", "barn'", 'catalogs', 'in', 'one', 'day', '||period||', 'that', 'makes', 'eight', 'this', 'month', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'holding', 'a', 'magazine', 'cover', '||rightparen||', 'mira', 'sorvino', '||period||', 'think', "she'd", 'go', 'out', 'with', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "don't", 'you', 'just', 'throw', "'em", 'out', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||period||', "i've", 'been', 'saving', 'them', 'up', 'here', 'in', 'your', 'apartment', '||period||', 'and', 'now', '||comma||', "it's", 'payback', 'time', '||period||', "'pottery", "barn'", 'is', 'in', 'for', 'a', 'world', 'of', 'hurt', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'a', 'catalog', '||rightparen||', 'can', 'i', 'have', 'one', '||questionmark||', 'i', 'need', 'one', 'of', 'those', 'old', '||dash||', 'looking', 'phones', '||period||', 'so', 'you', 'wanna', 'grab', 'a', 'bite', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", '||period||', 'i', 'gotta', 'make', 'the', 'weekly', 'call', 'to', 'the', 'folks', '||period||', '||return||', '||return||', 'jerry:', 'so', 'call', 'now', '||period||', '||return||', '||return||', 'george:', 'i', 'gotta', 'prep', '||period||', 'i', 'need', 'a', 'couple', 'of', 'anecdotes', '||comma||', 'a', 'few', 'you', '||dash||', 'were', '||dash||', 'right', '||dash||', 'abouts', '||period||', "it's", 'a', 'whole', 'procedure', '||period||', "wasn't", 'fragile', 'frankie', 'the', 'one', 'that', 'used', 'to', 'run', 'into', 'the', 'woods', 'every', 'time', 'he', 'got', 'upset', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'him', '||period||', '||return||', '||return||', 'george:', 'is', 'he', 'still', 'nuts', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', '||questionmark||', 'they', 'gave', 'me', 'a', 'new', 'car', 'for', 'thirty', 'minutes', 'of', "'so", '||comma||', "who's", 'from', 'out', 'of', 'town', '||questionmark||', "'", '||return||', '||return||', 'puddy:', '||leftparen||', 'finishing', 'eating', '||rightparen||', 'seriously', '||comma||', 'is', 'this', 'the', 'best', 'okra', "you've", 'ever', 'had', '||comma||', 'or', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'mmm', '||period||', 'de', '||dash||', 'lish', '||period||', '||return||', '||return||', 'puddy:', 'delish', '||questionmark||', '||return||', '||return||', 'elaine:', 'delish', '||period||', 'you', 'know', '||comma||', 'short', 'for', 'delicious', '||period||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'like', 'scrump', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'leaving', '||rightparen||', "i'm", 'gonna', 'be', 'late', '||period||', 'see', 'ya', 'later', '||period||', '||return||', '||return||', 'jack:', 'excuse', 'me', '||comma||', 'can', 'i', 'borrow', 'your', 'ketchup', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'passing', 'him', 'the', 'ketchup', '||rightparen||', 'oh', '||comma||', 'sure', '||period||', '||return||', '||return||', 'jack:', 'thank', 'you', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'answering', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', "it's", 'georgie', '||period||', '||return||', '||return||', 'estelle:', 'let', 'me', 'put', 'your', 'father', 'on', 'the', 'phone', '||period||', '||return||', '||return||', 'george:', 'ma', '||exclammark||', '||return||', '||return||', 'frank:', 'who', 'is', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'dad', '||comma||', "it's", 'me', '||period||', 'hey', '||comma||', 'listen', '||comma||', 'i', 'was', 'at', "fortunoff's", 'the', 'other', 'day', '||comma||', 'and', '||comma||', 'you', 'know', 'what', '||comma||', 'you', 'were', 'right', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'feigning', 'a', 'chinese', '||comma||', 'muffled', 'voice', '||rightparen||', 'chinese', 'food', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'hanging', 'up', '||rightparen||', 'sorry', '||comma||', 'george', '||comma||', 'our', 'chinese', 'food', 'just', 'came', '||period||', 'talk', 'to', 'you', 'later', '||period||', '||return||', '||return||', 'george:', 'chinese', 'food', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'throwing', 'his', 'catalogs', 'in', 'the', 'pottery', 'barn', 'store', '||rightparen||', 'hey', '||comma||', 'you', 'like', 'sending', 'out', 'catalogs', '||exclammark||', '||questionmark||', 'how', 'do', 'you', 'like', "gettin'", "'em", 'back', '||exclammark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'maybe', 'they', 'had', 'chinese', 'food', '||questionmark||', '||return||', '||return||', 'george:', 'after', 'dark', '||questionmark||', 'please', '||period||', 'at', 'their', 'age', '||comma||', "that's", 'like', 'swallowing', 'stun', 'grenades', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "there's", 'one', 'way', 'to', 'check', '||period||', 'where', "there's", 'chinese', 'food', '||comma||', "there's", 'leftovers', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'enters', '||rightparen||', 'well', '||comma||', 'gentlemen', '||period||', 'lainie', 'is', '||period||', '||period||', '||period||', 'in', 'love', '||period||', '||return||', '||return||', 'george:', "that's", 'dynamite', '||period||', 'yeah', '||comma||', "i'll", 'look', 'for', 'the', 'chinese', 'food', 'leftovers', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', 'i', 'met', 'this', 'guy', '||exclammark||', 'and', 'it', 'was', 'like', 'this', '||comma||', 'totally', 'unreal', '||comma||', 'fairy', 'tale', 'moment', '||period||', '||return||', '||return||', 'jerry:', 'it', "wasn't", 'whitey', 'fisk', '||comma||', 'was', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "george's", 'friend', '||period||', 'whatever', 'happened', 'to', 'him', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', 'uh', '||comma||', 'i', "don't", 'know', '||period||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'this', 'is', 'beautiful', '||period||', 'you', '||comma||', 'and', 'puddy', '||comma||', 'and', 'this', 'new', 'guy', '||comma||', 'in', 'a', 'big', 'pot', 'of', 'love', 'stew', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'puddy', '||period||', 'well', '||comma||', 'i', "won't", 'fire', 'him', 'until', 'i', 'see', 'if', 'this', 'new', 'guy', 'can', '||period||', '||period||', '||period||', 'handle', 'the', 'workload', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'entering', "jerry's", 'apartment', '||rightparen||', 'will', 'you', 'look', 'at', 'this', '||questionmark||', 'more', 'catalogs', '||exclammark||', "'omaha", "steaks'", '||comma||', "'mac", "warehouse'", '||comma||', "'newsweek'", '||questionmark||', '||exclammark||', 'i', "can't", 'stop', 'all', 'these', 'companies', '||comma||', 'so', '||comma||', "i'm", 'gonna', 'attack', 'this', 'problem', 'at', 'the', 'choke', 'point', '||period||', '||return||', '||return||', 'jerry:', 'stop', 'the', 'mail', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", '||period||', '||period||', '||period||', 'even', 'better', '||exclammark||', '||return||', '||return||', 'frankie:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'frankie', '||exclammark||', 'so', '||comma||', "where's", 'the', 'car', '||questionmark||', '||return||', '||return||', 'frankie:', 'this', 'is', 'it', '||period||', '||return||', '||return||', 'jerry:', 'inside', 'the', 'van', '||questionmark||', '||return||', '||return||', 'frankie:', 'it', 'is', 'the', 'van', '||exclammark||', "don't", 'you', 'remember', '||comma||', 'we', 'always', 'talked', 'about', 'how', 'cool', 'it', 'would', 'be', 'to', 'have', 'a', 'van', 'and', 'just', 'drive', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'were', 'ten', '||period||', '||return||', '||return||', 'frankie:', 'come', 'on', '||period||', "let's", 'take', 'it', 'for', 'a', 'spin', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'a', 'van', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'just', 'tell', 'him', 'you', 'want', 'the', 'saab', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||period||', 'this', 'is', 'fragile', 'frankie', 'merman', '||period||', 'when', 'we', 'were', 'in', 'camp', '||comma||', 'if', 'you', 'upset', 'him', '||comma||', "he'd", 'run', 'out', 'to', 'the', 'woods', '||comma||', 'dig', 'a', 'hole', '||comma||', 'and', 'sit', 'in', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'have', 'an', 'idea', '||period||', 'keep', 'the', 'van', '||comma||', 'and', 'get', 'a', 'bumper', 'sticker', 'that', 'says', '||comma||', "'if", 'this', 'vans', 'a', '||dash||', "rockin'", '||comma||', "don't", 'come', 'a', '||dash||', "knockin'", '||period||', "'", '||return||', '||return||', 'jerry:', 'always', 'helpful', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'georgie', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'dropped', 'in', 'for', 'a', 'visit', '||period||', 'you', '||comma||', 'uh', '||comma||', 'you', 'never', 'called', 'me', 'back', '||period||', '||return||', '||return||', 'estelle:', 'uh', '||period||', '||period||', '||period||', 'the', 'phone', 'broke', '||period||', '||return||', '||return||', 'frank:', 'well', '||comma||', 'we', 'got', 'to', 'get', 'moving', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'frank:', 'we', 'have', 'a', 'catered', 'affair', '||period||', '||return||', '||return||', 'george:', "you're", 'going', 'like', 'that', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'leaving', 'the', 'kitchen', '||rightparen||', "it's", 'creative', 'black', 'tie', '||period||', 'move', '||comma||', 'woman', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'checking', 'the', 'fridge', '||rightparen||', 'no', 'chinese', 'leftovers', '||period||', 'george', 'is', "gettin'", 'suspicious', '||period||', '||return||', '||return||', 'jack:', 'elaine', '||comma||', "i'm", 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'jack:', "i'm", 'gonna', 'be', 'in', 'the', 'can', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'jack', '||period||', '||leftparen||', 'to', 'the', 'cashier', '||rightparen||', 'can', 'i', 'use', 'your', 'phone', '||questionmark||', '||return||', '||return||', 'cashier', '||leftparen||', 'ruthie', 'cohen', '||rightparen||', ':', 'sure', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'over', 'the', 'phone', '||rightparen||', 'puddy', '||questionmark||', "it's", 'elaine', '||period||', "we're", 'through', '||period||', 'yeah', '||comma||', "that's", 'right', '||period||', 'again', '||period||', '||return||', '||return||', 'frankie:', '||leftparen||', 'in', 'the', 'van', 'with', 'jerry', '||rightparen||', 'nice', "captain's", 'chairs', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'aye', '||comma||', 'aye', '||period||', '||return||', '||return||', 'frankie:', 'oh', '||comma||', "there's", 'a', 'spot', '||period||', 'just', 'back', 'up', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'on', '||period||', 'there', 'must', 'be', 'a', 'truck', 'backing', 'up', '||period||', '||return||', '||return||', 'frankie:', 'no', '||comma||', "that's", 'us', '||period||', '||return||', '||return||', 'jerry:', 'great', '||period||', 'you', 'know', '||comma||', 'frankie', '||comma||', 'i', 'was', 'wondering', '||period||', 'what', 'if', 'i', 'decided', 'that', "it's", 'silly', 'to', 'drive', 'a', 'van', '||comma||', 'because', '||comma||', 'you', 'know', '||comma||', 'i', 'live', 'in', 'new', 'york', 'city', '||period||', 'is', 'there', 'maybe', 'some', 'way', 'i', 'could', 'exchange', 'it', '||questionmark||', '||return||', '||return||', 'frankie:', 'you', "don't", 'like', 'the', 'van', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'just', 'hypothetically', '||period||', '||return||', '||return||', 'frankie:', 'i', 'gotta', 'go', 'to', 'the', 'park', '||period||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', 'no', '||comma||', 'you', "don't", '||exclammark||', 'no', 'woods', '||period||', 'i', 'love', 'the', 'van', '||period||', "i'm", 'a', 'van', 'guy', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'showing', 'jerry', 'his', 'mailbox', '||rightparen||', 'check', 'it', 'out', '||period||', 'rain', 'and', 'sleet', 'may', 'not', 'stop', 'them', '||comma||', 'but', "let's", 'see', 'them', 'get', 'by', '||period||', '||period||', '||period||', 'these', 'bricks', '||period||', '||return||', '||return||', 'jerry:', "where'd", 'you', 'get', 'the', 'bricks', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'the', 'whole', 'building', 'is', 'brick', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'want', 'to', 'take', 'a', 'ride', 'with', 'me', 'out', 'to', 'jersey', '||questionmark||', "i'm", 'gonna', 'try', 'to', 'sell', 'the', 'van', 'to', 'a', 'lot', '||period||', '||return||', '||return||', 'kramer:', 'a', 'dealer', '||questionmark||', 'are', 'you', 'insane', '||questionmark||', 'no', '||comma||', 'take', 'out', 'an', 'ad', '||period||', 'sell', 'it', 'privately', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'think', 'i', 'want', 'to', 'meet', 'the', 'people', 'that', 'are', 'in', 'the', 'market', 'for', 'a', 'used', 'van', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'jerry', '||comma||', 'just', 'let', 'me', 'help', 'you', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||exclammark||', 'ok', '||exclammark||', 'right', '||comma||', 'here', 'we', 'go', '||period||', 'yeah', '||period||', 'ok', '||comma||', 'so', '||period||', '||period||', '||period||', "'for", 'sale', '||period||', 'a', 'big', '||comma||', 'juicy', 'van', '||period||', "'", 'and', '||comma||', 'ooh', '||comma||', 'you', 'gotta', 'put', 'down', '||comma||', "'interesting", 'trades', 'considered', '||period||', "'", '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', 'trade', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'you', "don't", 'have', 'to', '||period||', "it's", 'all', 'about', 'tickling', 'their', 'buying', 'bone', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'you', 'know', 'what', '||questionmark||', 'this', 'is', 'all', 'your', 'mail', '||period||', "they're", "puttin'", 'it', 'in', 'my', 'box', 'now', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'it', '||period||', 'they', 'have', 'gone', 'too', 'far', '||period||', 'they', 'keep', 'pushing', 'me', '||comma||', 'and', 'pushing', 'me', '||period||', 'now', 'i', 'got', 'no', 'choice', 'but', 'to', 'go', 'down', 'there', '||period||', '||period||', '||period||', 'and', 'talk', 'to', 'them', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'jerry', '||period||', "i'd", 'like', 'you', 'to', 'meet', 'someone', '||period||', 'this', 'is', 'jack', '||period||', '||leftparen||', 'heraldic', 'harp', 'sounds', 'as', 'jerry', 'looks', 'at', "jack's", 'face', '||rightparen||', '||return||', '||return||', 'postal', 'employee:', 'may', 'i', 'help', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "i'd", 'like', 'to', 'cancel', 'my', 'mail', '||period||', '||return||', '||return||', 'postal', 'employee:', 'certainly', '||period||', 'how', 'long', 'would', 'you', 'like', 'us', 'to', 'hold', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', "don't", 'think', 'you', 'get', 'me', '||period||', 'i', 'want', 'out', '||comma||', 'permanently', '||period||', '||return||', '||return||', 'newman:', "i'll", 'handle', 'this', '||comma||', 'violet', '||period||', 'why', "don't", 'you', 'take', 'your', 'three', 'hour', 'break', '||questionmark||', 'oh', '||comma||', 'calm', 'down', '||comma||', 'everyone', '||period||', 'no', "one's", 'cancelling', 'any', 'mail', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yes', '||comma||', 'i', 'am', '||period||', '||return||', '||return||', 'newman:', 'what', 'about', 'your', 'bills', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'bank', 'can', 'pay', "'em", '||period||', '||return||', '||return||', 'newman:', 'the', 'bank', '||period||', 'what', 'about', 'your', 'cards', 'and', 'letters', '||questionmark||', '||return||', '||return||', 'kramer:', 'e', '||dash||', 'mail', '||comma||', 'telephones', '||comma||', 'fax', 'machines', '||period||', 'fedex', '||comma||', 'telex', '||comma||', 'telegrams', '||comma||', 'holograms', '||period||', '||return||', '||return||', 'newman:', 'all', 'right', '||comma||', "it's", 'true', '||exclammark||', 'of', 'course', 'nobody', 'needs', 'mail', '||period||', 'what', 'do', 'you', 'think', '||comma||', "you're", 'so', 'clever', 'for', 'figuring', 'that', 'out', '||questionmark||', 'but', 'you', "don't", 'know', 'the', 'half', 'of', 'what', 'goes', 'on', 'here', '||period||', 'so', 'just', 'walk', 'away', '||comma||', 'kramer', '||period||', 'i', 'beg', 'of', 'you', '||period||', '||return||', '||return||', 'supervisor:', 'is', 'everything', 'all', 'right', 'here', '||comma||', 'postal', 'employee', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||comma||', 'sir', '||comma||', 'i', 'believe', 'everything', 'is', 'all', 'squared', 'away', '||period||', "isn't", 'it', '||comma||', 'mr', '||period||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'as', 'long', 'as', 'i', 'stop', 'getting', 'mail', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'surprising', 'his', 'parents', 'in', 'the', 'kitchen', '||rightparen||', 'welcome', 'back', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||exclammark||', '||return||', '||return||', 'george:', 'quick', 'for', 'a', '||period||', '||period||', '||period||', 'catered', 'affair', '||period||', '||return||', '||return||', 'frank:', 'i', "don't", 'know', 'what', 'you', 'mean', '||period||', '||return||', '||return||', 'george:', 'you', 'ditched', 'me', '||period||', "that's", 'twice', '||period||', 'now', 'i', 'demand', 'to', 'know', "what's", 'going', 'on', '||exclammark||', '||return||', '||return||', 'frank:', 'george', '||comma||', "we've", 'had', 'it', 'with', 'you', '||period||', 'understand', '||questionmark||', 'we', 'love', 'you', 'like', 'a', 'son', '||comma||', 'but', 'even', 'parents', 'have', 'limits', '||period||', '||return||', '||return||', 'estelle:', 'the', 'breakups', '||comma||', 'the', 'firings', '||period||', 'and', 'every', 'sunday', 'with', 'the', 'calls', '||period||', '||return||', '||return||', 'frank:', 'what', 'my', 'wife', 'is', 'trying', 'to', 'say', 'is', 'that', 'this', 'is', 'supposed', 'to', 'be', 'our', 'time', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'following', '||period||', '||return||', '||return||', 'frank:', "we're", "cuttin'", 'you', 'lose', '||period||', '||return||', '||return||', 'george:', "you're", "cuttin'", 'me', 'loose', '||questionmark||', '||return||', '||return||', 'frank:', 'now', '||comma||', 'if', "you'll", 'excuse', 'me', '||comma||', "i'm", 'going', 'to', 'make', 'love', 'to', 'your', 'mother', '||period||', '||return||', '||return||', 'george:', 'they', "don't", 'want', 'to', 'see', 'me', 'anymore', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'this', 'is', 'what', "you've", 'always', 'wanted', '||period||', '||return||', '||return||', 'george:', 'it', 'is', '||period||', "i'm", 'just', 'not', 'ready', 'yet', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||comma||', "that's", 'kind', 'of', 'sweet', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'shut', 'up', '||comma||', 'jerry', '||period||', 'my', 'parents', 'think', 'they', 'can', 'ignore', 'me', '||period||', 'heh', 'heh', '||period||', 'well', '||comma||', 'they', 'better', 'think', 'again', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', 'george', '||comma||', 'please', '||period||', 'what', 'are', 'you', 'going', 'to', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'remember', 'my', 'cousin', 'rhisa', '||questionmark||', "i'm", 'gonna', 'date', 'her', '||period||', '||return||', '||return||', 'jerry:', 'mother', 'of', 'god', '||period||', '||return||', '||return||', 'george:', 'one', 'little', 'wink', '||period||', "she'll", 'freak', 'out', '||comma||', 'tell', 'my', 'parents', '||period||', "they'll", 'be', 'all', 'over', 'me', '||period||', 'who', 'is', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'guy', "elaine's", 'dating', 'seems', 'really', 'familiar', 'to', 'me', '||period||', 'i', 'think', 'he', 'may', 'have', 'been', 'a', 'comedian', 'i', 'worked', 'with', 'one', 'time', '||period||', 'wait', 'a', 'minute', '||comma||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'that', 'is', 'the', 'guy', '||exclammark||', '||return||', '||return||', 'george:', "elaine's", 'in', 'love', 'with', 'the', 'wiz', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'she', 'thinks', "she's", 'in', 'love', 'with', 'him', '||period||', 'but', "she's", 'just', 'remembering', 'this', 'old', 'commercial', '||period||', '||return||', '||return||', 'george:', "that's", 'pretty', 'pathetic', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', "they're", 'not', 'even', 'related', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'enters', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'george:', 'uh', '||period||', '||period||', '||period||', 'hey', '||period||', "i'm", 'gonna', 'get', 'going', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'have', 'fun', 'at', 'the', '||period||', '||period||', '||period||', 'family', 'reunion', '||period||', '||leftparen||', 'george', 'exits', '||rightparen||', 'so', '||comma||', 'what', 'do', 'you', 'know', 'about', 'this', 'jack', 'fellow', '||questionmark||', '||return||', '||return||', 'elaine:', "isn't", 'he', 'the', 'best', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'nobody', 'beats', 'him', '||period||', 'what', 'kind', 'of', 'work', 'does', 'he', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'right', 'now', "he's", 'a', 'fact', 'checker', 'for', 'new', 'york', 'magazine', '||period||', "it's", 'not', 'much', '||comma||', 'but', 'it', 'has', 'a', 'certain', 'type', 'of', 'quiet', 'dignity', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'turning', 'on', 'the', 'commercial', '||rightparen||', 'right', '||comma||', 'quiet', 'dignity', '||period||', 'as', 'opposed', 'to', '||comma||', 'say', '||comma||', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yes', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'the', 'phone', '||rightparen||', 'hello', '||questionmark||', 'yeah', '||comma||', 'the', 'van', 'is', 'still', 'for', 'sale', '||period||', 'sure', '||comma||', 'come', 'on', 'buy', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'rushing', 'into', "jerry's", 'apartment', '||rightparen||', 'yeah', '||comma||', 'i', 'called', 'about', 'the', 'van', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'at', 'dinner', 'with', 'his', 'cousin', '||rightparen||', 'some', 'more', 'merlot', '||questionmark||', '||return||', '||return||', 'rhisa:', 'yeah', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'george:', 'sure', '||period||', 'you', 'know', '||comma||', 'rhisa', '||period||', "i've", 'always', 'found', 'you', '||period||', '||period||', '||period||', 'very', 'attractive', '||period||', '||return||', '||return||', 'rhisa:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'know', 'it', 'may', 'sound', 'shocking', '||period||', 'but', '||comma||', 'i', 'just', "can't", 'stop', 'myself', 'from', '||period||', '||period||', '||period||', 'wanting', 'you', '||period||', '||return||', '||return||', 'rhisa:', 'you', 'want', 'to', 'borrow', 'money', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||period||', 'i', '||dash||', 'i', 'just', 'want', 'us', 'to', 'be', '||period||', '||period||', '||period||', 'together', '||period||', '||return||', '||return||', 'rhisa:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||questionmark||', '||return||', '||return||', 'rhisa:', "let's", 'go', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', 'we', 'could', 'dance', 'around', 'it', 'a', 'little', 'first', '||period||', '||return||', '||return||', 'rhisa:', '||leftparen||', 'playing', 'footsie', '||rightparen||', 'nah', '||period||', "let's", 'be', 'bad', '||comma||', 'george', '||period||', "let's", 'be', 'really', '||period||', '||period||', '||period||', 'bad', '||period||', '||return||', '||return||', 'george:', 'whoa', '||exclammark||', 'whoa', '||exclammark||', 'geez', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'inspecting', "jerry's", 'van', '||rightparen||', 'so', '||comma||', 'how', 'come', "you're", 'selling', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'why', "i'm", 'selling', 'it', '||period||', 'i', 'hate', 'it', '||period||', '||return||', '||return||', 'kramer:', 'how', 'many', 'miles', '||questionmark||', '||return||', '||return||', 'jerry:', 'two', '||period||', '||return||', '||return||', 'kramer:', 'city', 'or', 'highway', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'do', 'you', 'really', 'want', 'to', 'buy', 'this', 'thing', '||comma||', 'or', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'breaking', 'the', 'antenna', '||rightparen||', 'hey', '||comma||', 'hey', '||period||', 'take', 'it', 'easy', '||period||', "i'm", 'not', 'gonna', 'be', 'pressured', '||period||', "i'll", 'walk', 'away', 'right', 'now', '||period||', 'is', 'this', 'thing', 'bent', '||questionmark||', "i'm", 'not', 'paying', 'for', 'that', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'just', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'look', '||period||', "i'm", 'going', 'to', 'be', 'honest', '||period||', "i'm", 'very', 'interested', 'in', 'the', 'van', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'fine', '||period||', "'what", 'do', 'i', 'have', 'to', 'do', 'to', 'put', 'you', 'in', 'this', 'van', 'today', '||questionmark||', "'", '||return||', '||return||', 'kramer:', '||leftparen||', 'pointing', 'to', 'the', 'newspaper', 'ad', '||rightparen||', 'well', '||comma||', 'i', "don't", 'really', 'have', 'any', 'money', '||period||', 'but', 'it', 'says', 'right', 'here', '||comma||', "'interesting", 'trades', "considered'", '||period||', '||return||', '||return||', 'jerry:', 'you', 'put', 'that', 'in', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pulling', 'out', 'an', 'undershirt', '||rightparen||', 'and', "i'm", 'glad', 'i', 'did', '||period||', 'here', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'trade', 'me', 'an', 'undershirt', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'want', 'to', 'trade', 'you', 'screen', 'legend', 'anthony', "quinn's", 'undershirt', '||period||', 'he', 'took', 'this', 'off', 'to', 'do', 'sit', '||dash||', 'ups', 'in', 'the', 'park', 'and', 'i', 'nabbed', 'it', '||period||', '||return||', '||return||', 'jerry:', "that's", 'disgusting', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'my', 'final', 'offer', '||period||', '||return||', '||return||', 'puddy:', 'you', 'dumped', 'me', 'for', 'some', 'idiotic', 'tv', 'pitchman', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', "i'm", 'sorry', '||comma||', 'puddy', '||period||', 'it', '||dash||', 'it', 'was', 'a', 'mistake', '||period||', 'so', '||comma||', "let's", 'just', 'put', 'it', 'behind', 'us', '||comma||', 'and', 'we', 'can', 'continue', 'like', 'this', 'never', 'happened', '||period||', '||return||', '||return||', 'puddy:', 'gee', '||comma||', 'i', "don't", 'know', '||period||', 'what', 'if', "we're", 'out', 'somewhere', 'and', 'you', 'see', 'the', 'maytag', 'repairman', '||period||', '||return||', '||return||', 'elaine:', "you're", 'not', 'taking', 'me', 'back', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'leaving', '||rightparen||', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', "he's", 'not', 'idiotic', '||period||', "he's", 'the', 'wiz', '||period||', 'and', 'nobody', 'beats', 'him', '||period||', 'nobody', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'handing', 'out', 'anti', '||dash||', 'mail', 'pamphlets', '||rightparen||', 'here', 'you', 'go', '||period||', 'mail', 'is', 'evil', '||period||', 'pass', 'it', 'on', '||period||', 'hey', '||comma||', 'mail', 'blows', '||period||', 'fax', 'it', 'to', 'a', 'friend', '||period||', '||return||', '||return||', 'woman:', 'why', 'does', 'this', 'dummy', 'have', 'a', 'bucket', 'on', 'its', 'head', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', "we're", 'blind', 'to', 'their', 'tyranny', '||period||', '||return||', '||return||', 'woman:', 'then', "shouldn't", 'you', 'be', 'wearing', 'the', 'bucket', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'move', 'along', '||comma||', 'betty', '||period||', '||return||', '||return||', 'frankie:', 'is', 'this', '||comma||', 'uh', '||comma||', 'jerry', "seinfeld's", 'van', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'not', 'anymore', '||period||', 'he', 'traded', 'it', 'to', 'me', 'for', 'some', 'hollywood', 'memorabilia', '||period||', '||return||', '||return||', 'frankie:', "i'm", '||comma||', 'uh', '||comma||', "i'm", 'so', 'stupid', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'frankie:', '||leftparen||', 'running', 'away', '||rightparen||', "i'm", 'so', 'stupid', '||period||', 'uh', '||comma||', 'excuse', 'me', '||period||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'jerry:', "she's", 'into', 'it', '||questionmark||', '||return||', '||return||', 'george:', "she's", 'leaving', 'me', 'dirty', 'messages', 'on', 'my', 'answering', 'machine', '||period||', '||return||', '||return||', 'jerry:', 'so', 'have', 'your', 'parents', 'found', 'out', 'about', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'wants', 'to', 'keep', 'it', 'quiet', '||period||', 'she', '||period||', '||period||', '||period||', 'thinks', 'we', 'have', 'a', 'real', 'future', 'together', '||period||', '||return||', '||return||', 'jerry:', 'brave', 'new', 'world', '||comma||', 'alright', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'entering', "monk's", '||rightparen||', 'hey', '||comma||', 'you', 'guys', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "how's", 'the', 'anti', '||dash||', 'mail', 'campaign', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'fantastic', '||period||', 'we', 'were', 'out', 'in', 'front', 'of', 'the', 'post', 'office', 'today', '||comma||', 'and', 'not', 'one', 'person', 'went', 'in', '||period||', '||return||', '||return||', 'jerry:', "it's", 'sunday', '||period||', '||return||', '||return||', 'george:', 'why', 'is', 'the', 'mailman', 'wearing', 'a', 'bucket', '||questionmark||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', 'well', '||comma||', 'it', 'symbolizes', 'our', 'persecution', '||period||', '||return||', '||return||', 'george:', 'then', '||period||', '||period||', '||period||', "shouldn't", 'you', 'be', 'wearing', 'the', 'bucket', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'want', 'my', 'van', 'keys', 'back', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||period||', 'i', '||comma||', 'uh', '||comma||', 'thought', 'we', 'made', 'a', 'deal', 'for', "quinn's", 't', '||dash||', 'shirt', '||period||', '||return||', '||return||', 'jerry:', 'are', 'you', 'insane', '||questionmark||', 'give', "'em", 'to', 'me', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', "can't", '||comma||', 'i', "can't", '||period||', 'see', '||comma||', 'i', 'told', 'frank', 'he', 'could', 'borrow', 'it', '||period||', 'yeah', '||comma||', 'he', 'wants', 'to', 'move', 'some', 'of', "george's", 'stuff', 'into', 'storage', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||questionmark||', "he's", 'picking', 'up', 'the', 'van', 'tonight', '||questionmark||', 'this', 'is', 'perfect', '||period||', "i'll", 'drive', 'rhisa', 'to', 'someplace', 'romantic', '||period||', 'then', 'when', 'my', 'father', 'slides', 'the', 'door', 'open', '||comma||', "i'm", 'in', 'the', 'van', 'kissing', 'his', "brother's", 'daughter', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'listen', '||comma||', 'jerry', '||period||', 'one', 'of', 'your', 'friends', 'came', 'by', 'and', 'he', 'was', 'very', 'upset', 'that', 'i', 'had', 'your', 'wheels', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'not', 'frankie', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "didn't", 'catch', 'his', 'name', '||comma||', 'but', 'then', 'he', 'went', 'running', 'into', 'the', 'park', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||comma||', 'the', 'woods', '||exclammark||', 'the', 'hole', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'seeing', 'newman', 'pull', 'up', 'along', 'side', 'him', 'in', 'his', 'truck', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'newman:', 'kramer', '||comma||', 'what', 'the', 'hell', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', "i'm", 'gonna', 'switch', 'the', 'bucket', 'to', 'something', 'else', '||period||', '||return||', '||return||', 'newman:', 'not', 'that', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', "you're", 'in', 'trouble', '||comma||', 'kramer', '||period||', 'i', "shouldn't", 'even', 'be', 'talking', 'to', 'you', '||comma||', 'but', "i'm", 'telling', 'you', 'as', 'a', 'friend', '||period||', "here's", 'how', "it's", 'going', 'to', 'happen', 'you', 'may', 'be', 'walking', '||period||', 'maybe', 'on', 'a', 'crisp', '||comma||', 'autumn', 'day', 'just', 'like', 'today', '||period||', 'when', 'a', 'mail', 'truck', 'will', 'slow', 'beside', 'you', '||comma||', 'and', 'a', 'door', 'will', 'open', '||comma||', 'and', 'a', 'mailman', 'you', 'know', '||comma||', 'maybe', 'even', 'trust', '||comma||', 'will', 'offer', 'to', 'give', 'you', 'a', 'lift', '||period||', '||return||', '||return||', 'kramer:', 'are', 'you', 'through', '||questionmark||', '||return||', '||return||', 'newman:', 'no', '||exclammark||', 'and', 'no', 'one', 'will', 'ever', 'see', 'you', 'again', '||exclammark||', '||return||', '||return||', 'kramer:', 'are', 'you', 'through', '||questionmark||', '||return||', '||return||', 'newman:', 'yes', '||period||', 'no', '||comma||', 'wait', '||exclammark||', 'ok', '||comma||', 'yes', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'seeing', 'postal', 'security', 'officials', 'walking', 'towards', 'kramer', '||rightparen||', 'quick', '||exclammark||', 'get', 'in', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "that's", 'exactly', 'how', 'you', 'said', 'it', 'was', 'going', 'down', '||period||', '||return||', '||return||', 'newman:', "there's", 'another', 'way', 'it', 'can', 'go', 'down', '||comma||', 'and', "it's", 'going', 'down', 'right', 'now', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'you', 'said', 'a', 'mailman', 'i', 'know', '||comma||', 'and', "you're", 'a', 'mailman', 'i', 'know', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'know', 'you', 'know', '||comma||', 'but', 'you', "don't", 'know', 'what', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'being', 'grabbed', 'by', 'the', 'security', 'officials', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'frankie', '||exclammark||', 'frankie', '||exclammark||', 'frankie', '||exclammark||', 'frankie', '||comma||', 'is', 'that', 'you', '||questionmark||', '||return||', '||return||', 'hole', 'digger:', 'my', 'name', 'is', 'edgar', '||period||', '||return||', '||return||', 'jerry:', 'have', 'a', 'nice', 'night', '||period||', '||return||', '||return||', 'hole', 'digger:', 'thank', 'you', '||period||', '||return||', '||return||', 'frankie:', '||leftparen||', 'digging', 'a', 'hole', '||comma||', 'talking', 'to', 'himself', '||comma||', 'and', 'seeing', "jerry's", 'van', 'pull', 'up', 'near', 'him', '||rightparen||', 'stupid', '||period||', '||period||', '||period||', 'so', 'stupid', '||exclammark||', 'jerry', '||questionmark||', '||return||', '||return||', 'rhisa:', 'all', 'right', '||comma||', 'george', '||period||', "i'm", 'ready', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'hold', 'on', '||period||', "i'm", '||comma||', 'uh', '||comma||', "i'm", 'just', 'trying', 'to', 'get', 'a', 'reading', 'on', 'my', 'dashboard', 'compass', '||period||', 'where', 'are', 'my', 'parents', '||questionmark||', '||return||', '||return||', 'rhisa:', 'geor', '||dash||', 'gie', '||period||', '||period||', '||period||', '||return||', '||return||', 'frankie:', '||leftparen||', 'running', 'up', 'to', 'the', 'van', 'and', 'yelling', 'through', 'the', 'window', '||rightparen||', 'is', 'this', "seinfeld's", 'van', '||questionmark||', "seinfeld's", 'van', '||questionmark||', "seinfeld's", 'van', '||questionmark||', '||exclammark||', '||return||', '||return||', 'rhisa:', '||leftparen||', 'hearing', 'frankie', 'as', 'george', 'runs', 'to', 'the', 'back', 'of', 'the', 'van', '||rightparen||', 'wait', '||period||', "what's", 'he', 'saying', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', "he's", 'saying', "'son", 'of', "sam'", '||exclammark||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'rhisa:', 'no', '||comma||', 'they', 'caught', 'him', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'running', 'out', 'and', 'away', 'from', 'the', 'van', '||rightparen||', 'i', 'knew', 'it', "wasn't", 'berkowitz', '||exclammark||', '||return||', '||return||', 'frankie:', '||leftparen||', 'seeing', 'george', 'running', 'away', '||rightparen||', 'ohh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', 'i', 'told', 'him', '||comma||', "'hit", 'the', 'road', '||period||', "i'm", 'going', 'back', 'with', 'jack', '||period||', "'", '||return||', '||return||', 'jack:', 'elaine', '||comma||', "that's", 'the', 'second', 'piece', 'of', 'good', 'news', 'today', '||period||', '||return||', '||return||', 'elaine:', 'really', '||comma||', 'what', 'was', 'the', 'first', '||questionmark||', '||return||', '||return||', 'jack:', '||leftparen||', 'pulling', 'out', 'his', 'wiz', 'hat', '||rightparen||', "they're", 'bringing', 'me', 'back', '||period||', 'yeah', '||period||', "i'm", 'the', 'wiz', 'again', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jack:', '||leftparen||', 'dancing', 'around', '||rightparen||', "i'm", 'the', 'wiz', '||exclammark||', "i'm", 'the', 'wiz', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', 'what', '||comma||', 'what', 'about', 'your', 'fact', '||dash||', 'checking', 'job', '||questionmark||', '||return||', '||return||', 'jack:', '||leftparen||', 'dancing', 'around', '||rightparen||', 'oh', '||period||', '||period||', '||period||', "here's", 'a', 'fact', '||period||', 'uh', '||comma||', "i'm", '||period||', '||period||', '||period||', 'the', 'wiz', '||exclammark||', "i'm", 'the', 'wiz', 'and', 'noooobody', 'beats', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'finding', 'frankie', '||comma||', 'in', 'his', 'hole', '||rightparen||', 'frankie', '||period||', '||period||', '||period||', 'come', 'on', 'out', 'of', 'there', '||period||', '||return||', '||return||', 'frankie:', 'you', 'hate', 'the', 'van', '||period||', '||return||', '||return||', 'jerry:', 'but', "i'm", 'keeping', 'it', '||period||', 'as', 'much', 'as', 'i', 'hate', 'the', 'idea', 'of', 'being', 'a', 'van', 'guy', '||comma||', "it's", 'much', 'better', 'than', 'hanging', 'out', 'here', 'with', 'the', 'nocturnal', 'dirt', 'people', '||period||', '||return||', '||return||', 'frankie:', 'so', '||comma||', 'can', 'we', 'go', 'for', 'a', 'ride', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "let's", 'just', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'hole', 'digger', '#2:', '||leftparen||', 'eyeing', 'the', 'empty', 'hole', '||comma||', 'and', 'getting', 'into', 'it', '||rightparen||', 'are', 'you', 'done', 'with', 'that', '||questionmark||', '||return||', '||return||', 'frank:', '||leftparen||', 'coming', 'upon', 'the', 'van', '||rightparen||', 'good', '||period||', 'he', 'left', 'the', 'door', 'unlocked', '||period||', '||return||', '||return||', 'estelle:', 'why', 'did', 'kramer', 'have', 'to', 'park', 'the', 'van', 'in', 'the', 'woods', '||questionmark||', '||return||', '||return||', 'frank:', "isn't", 'it', 'obvious', '||questionmark||', 'there', 'are', 'no', 'parking', 'meters', 'out', 'here', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'looking', 'inside', 'of', 'the', 'van', '||rightparen||', 'wow', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'reclining', 'the', 'seats', 'in', 'the', 'van', 'to', 'a', 'bed', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'this', '||period||', 'hoochie', 'mama', '||exclammark||', '||return||', '||return||', 'postmaster', 'general:', 'oh', '||comma||', 'my', 'goodness', '||period||', 'what', 'have', 'they', 'done', 'to', 'you', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'postmaster', 'general:', 'well', '||comma||', 'you', 'can', 'just', 'call', 'me', 'henry', '||period||', '||return||', '||return||', 'kramer:', 'henry', 'atkins', '||questionmark||', 'the', 'postmaster', 'general', '||questionmark||', '||return||', '||return||', 'postmaster', 'general:', 'last', 'time', 'i', 'checked', '||period||', '||return||', '||return||', 'kramer:', 'henry', '||period||', '||period||', '||period||', 'can', 'i', 'get', 'out', 'of', 'here', 'now', '||questionmark||', '||return||', '||return||', 'postmaster', 'general:', 'oh', '||comma||', 'oh', '||period||', 'sit', 'a', 'bit', '||period||', 'sit', 'a', 'bit', '||period||', 'i', 'mean', '||comma||', 'after', 'all', '||comma||', 'i', 'drove', 'all', 'the', 'way', 'up', 'here', 'from', 'd', '||period||', 'c', '||period||', 'just', 'to', 'talk', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||questionmark||', '||return||', '||return||', 'postmaster', 'general:', 'i', 'even', 'had', 'to', 'cancel', 'a', 'round', 'of', 'golf', 'with', 'the', 'secretary', 'of', 'state', '||period||', 'do', 'you', 'like', 'golf', '||comma||', 'mr', '||period||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'postmaster', 'general:', 'kramer', '||comma||', "i've", 'been', '||comma||', 'uh', '||comma||', 'reading', 'some', 'of', 'your', 'material', 'here', '||period||', 'i', 'gotta', 'be', 'honest', 'with', 'you', 'you', 'make', 'a', 'pretty', 'strong', 'case', '||period||', 'i', 'mean', '||comma||', 'just', 'imagine', '||period||', 'an', 'army', 'of', 'men', 'in', 'wool', 'pants', 'running', 'through', 'the', 'neighborhood', 'handing', 'out', 'pottery', 'catalogs', '||comma||', 'door', 'to', 'door', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', 'ha', 'ha', '||period||', '||return||', '||return||', 'postmaster', 'general:', 'well', '||comma||', "it's", 'my', 'job', '||period||', 'and', "i'm", 'pretty', 'damn', 'serious', 'about', 'it', '||period||', 'in', 'addition', 'to', 'being', 'a', 'postmaster', '||comma||', "i'm", 'a', 'general', '||period||', 'and', 'we', 'both', 'know', '||comma||', "it's", 'the', 'job', 'of', 'a', 'general', 'to', '||comma||', 'by', 'god', '||comma||', 'get', 'things', 'done', '||period||', 'so', 'maybe', 'you', 'can', 'understand', 'why', 'i', 'get', 'a', 'little', 'irritated', 'when', 'someone', 'calls', 'me', 'away', 'from', 'my', 'golf', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'very', '||comma||', 'very', 'sorry', '||period||', '||return||', '||return||', 'postmaster', 'general:', 'sure', '||comma||', "you're", 'sorry', '||period||', 'i', 'think', 'we', 'got', 'a', 'stack', 'of', 'mail', 'out', 'at', 'the', 'desk', 'that', 'belongs', 'to', 'you', '||period||', 'now', '||comma||', 'you', 'want', 'that', 'mail', '||comma||', "don't", 'you', 'mr', '||period||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'sure', 'do', '||exclammark||', '||return||', '||return||', 'postmaster', 'general:', '||leftparen||', 'receiving', 'a', 'salute', 'from', 'kramer', '||rightparen||', 'now', '||comma||', "that's", 'better', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'seeing', 'newman', 'walk', 'into', 'the', 'office', 'with', 'a', 'bucket', 'on', 'his', 'head', '||comma||', 'escorted', 'by', 'a', 'security', 'man', '||rightparen||', 'geez', '||period||', 'newman', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'whimpering', '||rightparen||', 'tell', 'the', 'world', 'my', 'story', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'hey', '||comma||', "that's", 'the', 'guy', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'george', 'costanza', '||comma||', 'frankie', 'merman', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'the', 'summer', 'me', '||period||', '||return||', '||return||', 'frankie:', 'the', 'winter', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'must', 'be', "george's", 'cousin', '||period||', '||return||', '||return||', 'rhisa:', 'girlfriend', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'seeing', "jerry's", 'van', 'shaking', '||rightparen||', 'what', 'is', 'that', '||questionmark||', 'that', "van's", 'a', '||dash||', "rockin'", '||period||', '||return||', '||return||', 'jerry:', "don't", 'go', 'a', '||dash||', "knockin'", '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'after', 'george', 'opens', 'the', 'van', 'door', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'seeing', 'his', 'parents', 'being', 'intimate', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'frankie:', 'now', 'you', 'gotta', 'sell', 'this', 'van', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'frank:', 'what', 'you', 'saw', 'in', 'that', 'van', 'was', 'a', 'natural', 'expression', 'of', 'a', "man's", 'love', 'for', 'his', 'lady', '||period||', '||return||', '||return||', 'george:', 'ohhhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'estelle:', 'your', "father's", 'right', '||period||', "it's", 'beautiful', '||period||', '||return||', '||return||', 'frank:', 'and', 'it', 'was', 'safe', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'frank:', 'now', 'if', "you'll", 'excuse', 'me', '||period||', 'once', 'again', '||comma||', 'your', 'mother', 'and', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', 'make', 'it', 'stop', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'think', 'if', 'you', 'borrow', 'my', 'blender', 'you', 'should', 'return', 'it', '||period||', '||return||', '||return||', 'kramer:', 'well', 'whats', 'the', 'difference', '||dash||', '||dash||', 'come', 'on', '||leftparen||', 'pats', 'him', 'on', 'the', 'back', '||rightparen||', '||dash||', '||dash||', 'were', 'like', 'cain', 'and', 'able', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'ya', 'know', 'cain', 'slew', 'able', '||period||', '||return||', '||return||', 'kramer:', 'no', 'he', 'didnt', '||period||', 'they', 'were', 'in', 'business', 'together', 'it', 'was', 'dry', 'wall', '||comma||', 'or', 'somethin', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', 'then', '||comma||', 'what', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', 'i', 'think', 'able', 'worked', 'hard', 'all', 'summer', 'harvesting', 'his', 'crops', '||comma||', 'while', 'cain', 'just', 'played', 'in', 'the', 'field', '||period||', 'then', 'when', 'winter', 'came', '||comma||', 'able', 'had', 'all', 'the', 'nuts', '||semicolon||', 'cain', 'had', 'no', 'nuts', '||comma||', 'so', 'he', 'killed', 'him', '||period||', '||return||', '||return||', 'kramer:', 'the', 'way', 'i', 'remember', 'it', '||comma||', 'cain', '||comma||', 'he', 'was', 'a', 'successful', 'doctor', '||comma||', 'but', 'when', 'he', 'took', 'this', 'special', 'formula', '||comma||', 'he', 'became', 'mr', '||period||', 'able', '||period||', '||return||', '||return||', 'jerry:', 'ya', 'broke', 'my', 'blender', '||comma||', 'didnt', 'ya', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'well', 'i', 'was', 'trying', 'to', 'make', 'gravel', 'and', 'it', 'just', '||leftparen||', 'moves', 'hands', 'around', '||rightparen||', 'just', 'didnt', 'work', 'out', '||period||', '||return||', '||return||', 'jerry:', 'i', 'knew', 'it', '||period||', '||return||', '||return||', 'jerry:', 'why', 'were', 'you', 'making', 'gravel', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||period||', '||period||', '||period||', 'i', 'like', 'the', 'sound', 'it', 'makes', 'when', 'you', 'walk', 'on', 'it', '||period||', '||return||', '||return||', 'kramer:', 'aahh', '||comma||', 'this', 'looks', 'familiar', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', "it's", 'garbage', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'these', 'brown', 'things', '||period||', 'the', 'chairs', '||period||', '||leftparen||', 'hits', 'his', 'hand', 'on', 'the', 'rim', '||rightparen||', 'jerry', '||comma||', 'this', 'is', 'the', 'set', 'from', 'the', 'old', 'merv', 'griffin', 'show', '||exclammark||', '||leftparen||', 'he', 'climbs', 'into', 'the', 'dumpster', '||rightparen||', 'they', 'must', 'be', 'throwing', 'it', 'out', '||period||', 'this', 'stuff', 'belongs', 'in', 'the', 'smithsonian', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'at', 'least', 'in', 'the', 'dumpster', 'behind', 'the', 'smithsonian', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'this', '||period||', 'boy', '||comma||', 'one', 'minute', 'elliot', 'gould', 'is', 'sitting', 'on', 'you', 'and', 'the', 'next', 'thing', '||dash||', "you're", "yesterday's", 'trash', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||comma||', 'kramer', '||comma||', 'get', 'out', 'of', 'there', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'you', 'go', 'on', 'ahead', '||period||', "i'm", 'not', 'finished', 'taking', 'this', 'in', '||period||', 'oh', '||comma||', 'jerry', 'look', '||period||', '||period||', '||period||', 'merv', "griffin's", 'cigar', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'moans', '||rightparen||', 'ohhh', '||leftparen||', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'know', 'i', 'uh', '||comma||', 'spilled', 'a', 'yogurt', 'smoothie', 'in', 'here', 'two', 'days', 'ago', '||period||', 'hm', '||comma||', "can't", 'smell', 'anything', '||comma||', 'can', 'ya', '||questionmark||', '||return||', '||return||', 'miranda:', 'banana', '||questionmark||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'miranda:', 'george', 'watch', 'out', 'for', 'those', 'pigeons', '||period||', '||return||', '||return||', 'george:', 'oh', "they'll", 'get', 'out', 'of', 'the', 'way', '||period||', 'you', 'really', 'smell', 'banana', '||questionmark||', '||return||', '||return||', 'miranda:', '||leftparen||', 'gasp', '||rightparen||', 'oh', 'my', 'god', '||period||', '||leftparen||', 'trying', 'to', 'catch', 'her', 'breath', '||comma||', 'she', 'puts', 'her', 'hand', 'to', 'her', 'chest', '||period||', '||rightparen||', '||return||', '||return||', 'george:', 'so', 'uh', 'where', 'we', 'eating', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'it', 'was', 'his', 'idea', 'to', 'put', 'a', 'sprig', 'of', 'parsley', 'on', 'the', 'plate', '||period||', '||return||', '||return||', 'celia:', "you're", 'making', 'this', 'up', '||period||', 'there', 'was', 'never', 'a', 'joseph', 'garnish', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', '||leftparen||', 'jerry', 'spots', 'all', 'the', 'classic', 'toys', '||rightparen||', '||return||', '||return||', 'celia:', 'oh', 'yeah', 'the', 'toys', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'get', 'all', 'these', '||questionmark||', '||return||', '||return||', 'celia:', 'my', 'dad', 'was', 'a', 'collector', '||period||', 'i', 'inherited', 'them', 'after', 'he', 'died', 'from', 'a', 'long', 'painful', 'bout', 'with', '||return||', '||return||', 'jerry:', 'super', 'bowl', '||exclammark||', 'hey', '||comma||', 'an', 'original', 'g', '||period||', 'i', '||period||', 'joe', '||period||', '||leftparen||', 'picks', 'up', 'both', 'items', '||rightparen||', 'with', 'a', 'full', 'frogman', 'suit', '||period||', '||return||', '||return||', 'celia:', 'jerry', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'putting', 'this', 'on', 'him', 'and', "we're", 'going', 'to', 'the', 'sink', '||period||', '||return||', '||return||', 'celia:', 'ohhh', 'jerry', '||period||', '||leftparen||', 'takes', 'them', 'from', 'jerry', 'and', 'puts', 'them', 'back', 'with', 'the', 'other', 'toys', '||rightparen||', "they're", 'priceless', '||period||', "they've", 'never', 'been', 'played', 'with', '||period||', '||return||', '||return||', 'jerry:', 'i', 'just', 'want', 'a', '||comma||', 'touch', 'em', 'a', 'little', '||period||', '||return||', '||return||', 'celia:', 'i', 'said', 'no', '||period||', 'now', 'come', 'here', '||period||', '||return||', '||return||', 'lou:', 'hi', '||leftparen||', 'startled', '||comma||', 'elaine', 'spills', 'her', 'coffee', 'on', 'her', 'sleeve', '||rightparen||', "i'm", 'lou', 'filerman', '||period||', "i'm", 'new', 'here', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'walter', '||comma||', 'what', 'is', 'the', 'deal', 'with', 'that', 'guy', '||questionmark||', '||return||', '||return||', 'walter:', 'uh', '||dash||', "he's", 'lou', 'filerman', '||period||', "he's", 'new', 'here', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'exhales', '||rightparen||', '||return||', '||return||', 'walter:', 'hey', 'your', 'coffee', 'stain', 'looks', 'like', 'fidel', 'castro', '||period||', '||return||', '||return||', 'elaine:', "you've", 'been', 'an', 'enormous', 'help', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ran', 'over', 'some', 'pigeons', '||questionmark||', 'how', 'many', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'ever', 'they', 'had', '||period||', 'miranda', 'thinks', "i'm", 'a', 'butcher', 'but', 'i', '||dash||', 'i', '||dash||', "it's", 'not', 'my', 'fault', 'is', 'it', '||questionmark||', "don't", 'we', 'have', 'a', 'deal', 'with', 'the', 'pigeons', '||questionmark||', '||return||', '||return||', 'jerry:', 'course', 'we', 'have', 'a', 'deal', '||period||', 'they', 'get', 'out', 'of', 'the', 'way', 'of', 'our', 'cars', '||comma||', 'we', 'look', 'the', 'other', 'way', 'on', 'the', 'statue', 'defecation', '||period||', '||return||', '||return||', 'george:', 'right', '||exclammark||', 'and', 'these', 'pigeons', 'broke', 'the', 'deal', '||period||', 'i', 'will', 'not', 'accept', 'the', 'blame', 'for', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "miranda's", 'cooled', 'on', 'ya', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'getting', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'me', 'neither', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'i', 'thought', 'you', 'and', 'celia', 'were', 'sleeping', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'the', 'sex', 'is', 'wild', 'but', "she's", 'got', 'this', 'incredible', 'toy', 'collection', 'and', 'she', "won't", 'let', 'me', 'near', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'understand', 'women', '||period||', '||return||', '||return||', 'jerry:', 'here', 'comes', 'one', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||leftparen||', 'sees', 'the', 'coffee', 'stain', '||rightparen||', 'art', 'garfunkel', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'castro', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'elaine:', 'all', 'because', 'of', 'this', 'creepy', 'new', 'guy', 'at', 'work', '||period||', 'he', 'just', '||dash||', 'he', 'just', 'comes', 'out', 'of', 'nowhere', 'and', "he's", 'right', 'next', 'to', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'he', 'just', 'sidles', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'right', '||exclammark||', "he's", 'a', 'real', 'sidler', '||period||', '||leftparen||', 'points', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'just', "didn't", 'see', 'him', '||period||', '||return||', '||return||', 'elaine:', 'wha', '||dash||', 'you', 'never', 'see', 'him', '||period||', 'he', 'sidled', 'me', 'again', 'in', 'my', 'office', '||period||', 'i', 'was', 'sitting', 'there', 'making', 'cup', '||dash||', 'a', '||dash||', 'soup', 'singing', 'that', 'song', 'from', '||quotemark||', 'the', 'lion', 'king', '||quotemark||', '||period||', '||return||', '||return||', 'jerry:', 'hakuna', 'matata', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'i', 'was', 'alone', '||period||', '||return||', '||return||', 'jerry:', 'that', "doesn't", 'make', 'it', 'right', '||period||', '||return||', '||return||', 'jerry:', 'see', '||comma||', 'to', 'me', '||comma||', 'the', 'hakuna', 'matata', 'is', 'not', 'nearly', 'as', 'embarrassing', 'as', 'the', 'cup', 'of', 'soup', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'would', 'you', 'just', '||comma||', 'let', 'it', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'his', 'apartment', '||rightparen||', 'hey', '||comma||', 'jerry', '||exclammark||', 'come', 'here', 'a', 'sec', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||leftparen||', 'moving', 'a', 'chair', 'onto', 'the', 'set', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'outstretched', 'arms', '||rightparen||', "it's", 'the', 'merv', 'griffin', 'set', '||period||', '||leftparen||', 'claps', '7', 'times', '||rightparen||', '||return||', '||return||', 'jerry:', 'how', 'did', 'you', 'get', 'this', 'in', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'just', 'bring', 'it', 'in', 'sideways', 'and', '||leftparen||', 'pop', '||rightparen||', 'hook', 'it', '||period||', '||return||', '||return||', 'jerry:', 'so', 'where', 'you', 'gonna', 'sleep', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', 'backstage', '||period||', '||return||', '||return||', 'elaine:', 'ehnn', '||exclammark||', 'this', 'chair', 'smells', 'like', 'garbage', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'putting', 'on', 'jacket', '||rightparen||', 'oh', '||comma||', 'well', 'a', 'lot', 'of', 'the', 'stars', 'from', 'the', "70's", '||dash||', 'they', 'were', 'not', 'as', 'hygienic', 'as', 'they', 'appeared', 'on', 'tv', '||period||', 'you', 'take', 'mannix', 'for', 'example', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'get', 'that', '||period||', '||leftparen||', 'walks', 'across', 'the', 'set', 'towards', 'the', 'blue', 'curtain', '||rightparen||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'well', '||comma||', 'jerry', '||comma||', "we'd", 'love', 'to', 'have', 'you', 'back', 'anytime', '||period||', '||leftparen||', 'stretches', 'his', 'arm', 'out', '||comma||', 'as', 'if', 'hes', 'reaching', 'out', 'a', 'good', '||dash||', 'bye', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'elaine', 'benes', '||exclammark||', 'well', '||comma||', "it's", 'great', 'to', 'have', 'you', '||exclammark||', '||leftparen||', 'elaine', 'sits', 'down', '||rightparen||', 'boy', '||comma||', 'is', 'it', 'possible', 'that', 'youre', 'even', 'more', 'beautiful', 'than', 'the', 'last', 'time', 'i', 'saw', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'giggles', '||rightparen||', '||return||', '||return||', 'george:', 'ahh', '||comma||', 'ah', '||dash||', 'ahwe', 'had', 'a', 'deal', '||exclammark||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||comma||', 'here', 'are', 'these', 'pages', 'that', 'you', 'wanted', '||period||', '||return||', '||return||', 'peterman:', 'one', 'moment', '||period||', "i'm", 'reading', 'the', 'most', 'fascinating', 'article', 'on', 'the', 'most', 'fascinating', 'people', 'of', 'the', 'year', '||period||', 'annnnnd', '||comma||', 'done', '||period||', 'oh', '||comma||', 'yes', '||period||', "i'm", 'sorry', 'i', 'needed', 'this', 'so', 'quickly', '||leftparen||', 'leafing', 'through', 'the', 'pages', '||rightparen||', '||period||', 'it', 'must', 'have', 'been', 'an', 'awful', 'lot', 'of', 'work', '||period||', 'thank', 'you', 'very', 'much', '||comma||', 'you', 'two', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||leftparen||', 'with', 'arms', 'crossed', '||comma||', 'she', 'turns', 'quickly', 'and', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'three', 'dates', 'and', 'she', 'still', "won't", 'let', 'me', 'play', 'with', 'her', 'toys', '||period||', '||return||', '||return||', 'kramer:', 'hm', '||comma||', "that's", 'interesting', '||period||', 'you', 'know', 'someone', 'mentioned', 'to', 'me', 'you', 'were', 'not', 'very', 'happy', 'with', 'your', 'toys', '||comma||', 'growing', 'up', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'that', 'was', 'me', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'right', '||comma||', 'right', '||comma||', 'right', '||period||', 'and', 'uh', 'you', 'mentioned', 'that', 'uh', '||comma||', 'you', "didn't", 'get', 'a', 'g', '||period||', 'i', '||period||', 'joe', '||period||', 'you', 'had', 'an', '||return||', '||return||', 'jerry:', 'an', 'army', 'pete', '||period||', '||return||', '||return||', 'kramer:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'he', 'was', 'made', 'of', 'wood', 'and', 'in', 'the', 'rain', 'he', 'would', 'swell', 'up', 'and', 'then', 'split', '||period||', '||return||', '||return||', 'kramer:', 'and', 'we', 'all', 'know', 'how', 'painful', 'that', 'can', 'be', '||period||', '||leftparen||', 'as', 'he', 'says', 'this', '||comma||', 'he', 'turns', 'and', 'speaks', 'directly', 'into', 'the', 'non', '||dash||', 'existent', 'television', 'camera', '||period||', 'jerry', 'looks', 'a', 'bit', 'confused', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'jerry', '||period||', 'oh', 'there', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'elaine', 'benes', '||period||', 'well', '||comma||', 'this', 'is', 'quite', 'a', 'thrill', '||comma||', 'yes', '||period||', 'come', '||dash||', '||dash||', '||leftparen||', 'motions', 'for', 'jerry', 'to', 'move', 'down', 'one', 'seat', 'as', 'the', 'new', 'guest', 'has', 'arrived', 'for', 'her', 'segment', '||period||', 'kramer', 'gives', 'jerry', 'a', 'little', 'push', '||rightparen||', 'come', 'on', 'sit', 'down', '||period||', 'yes', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'clears', 'throat', '||rightparen||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'well', '||comma||', "i'll", 'tell', 'ya', '||comma||', 'this', 'sidler', 'guy', 'is', 'really', 'chapping', 'my', 'hide', '||period||', '||return||', '||return||', 'kramer:', 'ju', '||dash||', 'excuse', 'me', '||period||', 'yeah', "we're", '||comma||', 'talking', 'this', 'way', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "he's", 'getting', 'credit', 'for', 'work', 'that', 'i', 'did', '||exclammark||', "he's", 'gonna', 'sidle', 'me', 'right', 'out', 'of', 'a', 'job', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'now', '||comma||', 'for', 'those', 'of', 'us', 'who', "don't", 'know', '||comma||', 'uh', '||comma||', 'sidling', 'is', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'what', 'is', 'wrong', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'for', 'starters', '||comma||', "you're", 'looking', 'at', 'note', 'cards', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', "i'm", 'gonna', 'have', 'to', 'give', 'that', 'guy', 'a', 'taste', 'of', 'his', 'own', 'medicine', '||comma||', 'so', '||comma||', 'i', 'am', 'going', 'to', 'sidle', '||comma||', 'the', 'sidler', '||period||', '||return||', '||return||', 'jerry:', 'you', '||comma||', 'sidle', '||questionmark||', 'y', '||dash||', 'you', '||period||', '||period||', '||period||', 'you', 'stomp', 'around', 'like', 'a', 'clydesdale', '||exclammark||', '||return||', '||return||', 'elaine:', 'not', 'with', 'these', 'honeys', '||period||', '||period||', '||period||', '||period||', 'wrestling', 'shoes', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'the', 'imaginary', 'tv', 'camera', '||rightparen||', 'only', 'in', 'new', 'york', '||period||', '||period||', '||period||', '||period||', 'ha', 'ha', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', '||leftparen||', 'turns', 'on', 'the', 'merv', 'griffin', 'theme', 'music', '||rightparen||', 'heeeyy', '||exclammark||', 'well', '||comma||', 'ladies', 'and', 'gentlemen', '||exclammark||', "it's", 'our', 'good', 'friend', '||comma||', 'george', 'costanza', '||exclammark||', 'what', 'a', 'surprise', '||exclammark||', '||return||', '||return||', 'tape', 'recorder:', 'turn', 'music', 'off', '||leftparen||', 'kramer', 'pushes', 'the', 'off', 'button', 'turning', 'the', 'music', 'off', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'sit', '||comma||', 'sit', '||comma||', 'sit', 'weeell', '||exclammark||', '||leftparen||', 'laughing', '||comma||', 'clapping', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'happened', 'again', '||period||', '||return||', '||return||', 'jerry:', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'eyaaaya', '||dash||', 'ya', '||dash||', 'ya', '||comma||', "i'll", 'ask', 'the', 'questions', '||period||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'george:', 'well', 'i', 'just', 'stomped', 'some', 'pigeons', 'in', 'the', 'park', '||period||', 'they', '||dash||', 'they', "didn't", 'move', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "let's", 'uh', '||comma||', 'change', 'the', 'subject', '||comma||', 'ah', '||period||', '||leftparen||', 'looking', 'at', 'the', 'yellow', 'note', 'cards', '||rightparen||', 'now', '||comma||', 'uh', 'you', 'and', 'uh', '||comma||', 'jerry', 'dated', 'for', 'a', 'while', '||period||', 'tell', 'us', 'ah', '||period||', '||period||', '||period||', 'what', 'was', 'that', 'like', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'was', 'the', 'wrong', 'card', '||period||', '||return||', '||return||', 'george:', 'i', '||dash||', 'i', "don't", 'get', 'these', 'birds', '||exclammark||', "they're", 'breaking', 'the', 'deal', '||period||', 'it', '||dash||', "it's", 'like', 'the', 'pigeons', 'decided', 'to', 'ignore', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', "they're", 'like', 'everyone', 'else', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'laughs', 'too', 'loudly', '||rightparen||', 'all', 'right', '||comma||', "let's", 'take', 'a', 'short', 'break', '||period||', '||return||', '||return||', 'kramer:', 'okay', 'ah', '||comma||', '||leftparen||', 'checks', 'his', 'watch', '||rightparen||', "we're", 'back', '||exclammark||', '||return||', '||return||', 'george:', 'boy', 'that', '||dash||', 'that', 'bank', 'clock', 'is', '||dash||', 'is', 'eight', 'minutes', 'off', '||period||', '||return||', '||return||', 'miranda:', 'then', 'why', "don't", 'you', 'just', 'run', 'it', 'over', 'too', '||questionmark||', '||return||', '||return||', 'george:', 'zing', '||period||', '||return||', '||return||', 'miranda:', 'george', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', 'did', 'you', 'see', 'that', '||questionmark||', 'that', '||dash||', 'that', 'pigeon', "didn't", 'move', '||exclammark||', 'i', 'had', 'to', 'swerve', 'to', 'get', 'out', 'of', 'the', 'way', '||exclammark||', 'i', 'saved', 'that', 'pigeons', 'life', '||exclammark||', '||return||', '||return||', 'miranda:', 'what', 'pigeon', '||questionmark||', 'you', 'drove', 'right', 'into', 'that', 'squirrel', '||period||', '||leftparen||', 'leaves', 'the', 'car', '||rightparen||', '||return||', '||return||', 'george:', 'squirrel', '||questionmark||', 'well', '||comma||', 'we', 'have', 'no', 'deal', 'with', 'them', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sound', 'of', 'gunfire', '||rightparen||', 'pkew', '||comma||', 'pkew', '||comma||', 'pkew', '||comma||', 'pkew', '||comma||', 'pkeeew', '||exclammark||', '||return||', '||return||', 'celia:', 'jerry', '||exclammark||', '||leftparen||', 'she', 'slides', 'away', 'from', 'him', '||rightparen||', 'those', 'hands', '||exclammark||', 'they', 'never', 'stop', '||exclammark||', '||return||', '||return||', 'jerry:', "i'm", 'sorry', '||period||', 'got', 'any', 'booze', '||questionmark||', "what's", 'say', 'you', 'and', 'i', 'get', 'ripped', '||exclammark||', '||return||', '||return||', 'celia:', 'no', '||period||', 'thanks', '||period||', 'i', 'have', 'a', 'headache', '||period||', 'can', 'you', 'just', 'get', 'me', 'an', 'aspirin', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'ohh', '||comma||', 'will', 'not', 'cause', 'drowsiness', '||quotemark||', '||return||', '||return||', 'lou:', "here's", 'the', 'new', 'copy', 'you', 'wanted', '||period||', '||return||', '||return||', 'peterman:', 'ah', '||comma||', 'yes', '||period||', 'well', 'this', 'certainly', 'looks', 'like', 'a', 'lot', 'of', 'words', '||period||', 'in', 'record', 'time', '||period||', "i'm", 'very', 'impressed', '||period||', '||period||', '||period||', 'with', 'both', 'of', 'you', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'winks', 'and', 'clicks', '||rightparen||', 'thank', 'you', '||period||', 'ha', 'ha', 'ha', 'ha', '||period||', '||leftparen||', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'peterman:', 'unfortunately', '||comma||', 'i', 'am', 'also', 'disgusted', '||period||', 'this', 'is', 'incoherent', 'drivel', '||exclammark||', 'this', 'is', 'a', 'total', 'redo', '||period||', 'and', "i'm", 'assuming', 'i', 'need', 'it', 'right', 'away', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'guess', "we'll", 'just', 'have', '||dash||', '||leftparen||', 'lou', 'has', 'left', '||rightparen||', 'ohh', '||comma||', 'just', 'gimme', 'that', '||period||', '||leftparen||', 'takes', 'the', 'papers', 'and', 'walks', 'away', '||rightparen||', '||return||', '||return||', 'jerry:', 'uhn', '||dash||', 'uh', '||dash||', 'uhn', '||dash||', 'uhn', '||dash||', 'uh', '||dash||', 'uhn', '||dash||', '||dash||', 'veeer', '||comma||', 'veeer', '||comma||', 'veeer', '||comma||', 'veeer', '||comma||', 'veeer', '||comma||', 'veeer', '||comma||', 'veeer', '||comma||', 'veeer', 'a', '||dash||', 'ha', 'ha', '||exclammark||', 'mission', 'accomplished', '||exclammark||', 'back', 'to', 'base', '||comma||', 'joe', '||period||', '||leftparen||', 'singing', '||rightparen||', 'dee', '||comma||', 'de', '||dash||', 'de', '||comma||', 'de', '||dash||', 'de', '||dash||', 'de', '||dash||', 'de', '||dash||', 'de', '||leftparen||', 'makes', 'g', '||period||', 'i', '||period||', 'joe', 'swim', 'off', '||comma||', 'legs', 'kicking', '||rightparen||', '||return||', '||return||', 'miranda:', 'doctor', 'is', 'the', 'squirrel', 'going', 'to', 'live', '||questionmark||', '||return||', '||return||', 'doctor:', "there's", 'been', 'massive', 'trauma', '||period||', 'we', 'could', 'of', 'course', 'try', 'to', 'save', 'him', 'but', '||comma||', 'it', 'would', 'be', 'costly', '||comma||', 'difficult', 'and', "we'd", 'have', 'to', 'send', 'away', 'for', 'some', 'special', 'really', 'tiny', 'instruments', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'uh', '||comma||', 'are', 'there', 'any', 'other', 'options', '||questionmark||', '||return||', '||return||', 'doctor:', 'we', '||comma||', 'could', 'put', 'him', 'to', 'sleep', '||period||', '||return||', '||return||', 'george:', 'what', 'might', 'that', 'cost', '||questionmark||', '||return||', '||return||', 'doctor:', 'well', "it's", 'by', 'the', 'pound', '||period||', 'so', '||period||', '||period||', '||period||', 'about', '80', 'cents', '||period||', '||return||', '||return||', 'george:', 'well', '||questionmark||', '||leftparen||', 'miranda', 'hits', 'george', '||rightparen||', 'i', 'was', 'just', '||dash||', "i'm", 'curious', '||comma||', "that's", 'all', '||period||', 'we', '||comma||', 'uh', '||period||', "we'd", 'like', 'you', 'to', '||comma||', 'do', 'everything', 'possible', '||period||', '||return||', '||return||', 'doctor:', 'he', '||comma||', 'um', '||period||', "he's", 'not', 'going', 'to', 'be', 'the', 'same', '||comma||', 'you', 'know', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'yeah', '||period||', 'i', '||dash||', 'i', 'know', '||period||', '||return||', '||return||', 'george:', 'so', "they're", 'flying', 'the', 'tiny', 'instruments', 'in', 'from', 'el', 'paso', '||period||', '||return||', '||return||', 'kramer:', 'el', 'paso', '||questionmark||', 'i', 'spent', 'a', 'month', 'there', 'one', 'night', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'laughs', '||dash||', 't', '||dash||', 'heheheheheheheh', '||rightparen||', 'el', 'paso', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'he', 'here', 'for', '||questionmark||', '||return||', '||return||', 'newman:', 'eue', '||dash||', 'aaa', '||period||', '||return||', '||return||', 'kramer:', 'ah', 'to', 'take', 'some', 'of', 'the', 'pressure', 'off', 'of', 'me', '||period||', 'so', '||comma||', 'jerry', 'ah', '||comma||', "what's", 'going', 'on', 'with', 'you', '||questionmark||', 'i', 'understand', "there's", 'a', 'young', 'lady', 'in', 'your', 'life', '||period||', 'mmm', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'actually', '||comma||', "it's", 'kind', 'of', 'a', 'funny', 'story', 'because', 'she', 'has', 'this', 'amazing', 'toy', 'collection', 'and', 'last', 'night', 'i', 'finally', 'got', 'to', 'play', 'with', 'them', '||period||', '||return||', '||return||', 'kramer:', 'well', '||period||', 'sounds', 'like', 'things', 'are', 'progressing', '||period||', 'do', 'i', 'hear', '||comma||', 'wedding', 'bells', '||questionmark||', '||return||', '||return||', 'newman:', 'are', 'you', 'married', 'right', 'now', '||questionmark||', '||leftparen||', 'points', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'kramer:', 'newman', '||period||', '||leftparen||', 'kramer', 'smacks', 'newmans', 'arm', '||rightparen||', '||return||', '||return||', 'jerry:', 'actually', 'she', "doesn't", 'even', 'know', 'about', 'the', 'toys', '||period||', 'i', 'gave', 'her', 'the', 'wrong', 'kind', 'of', 'medicine', 'and', 'i', '||comma||', 'guess', 'she', 'passed', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||quotemark||', 'wrong', 'kind', 'of', 'medicine', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'even', 'got', 'that', 'old', 'mattel', 'football', 'game', 'that', 'we', 'love', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'come', 'on', '||exclammark||', 'you', 'gotta', 'get', 'me', 'over', 'there', '||exclammark||', '||return||', '||return||', 'kramer:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||exclammark||', 'you', 'mean', 'to', 'say', 'that', 'you', 'drugged', 'a', 'woman', 'so', 'you', 'could', 'take', 'advantage', 'of', 'her', 'toys', '||questionmark||', "let's", 'pause', 'a', 'moment', '||period||', '||leftparen||', 'newman', 'starts', 'the', 'taped', 'music', '||rightparen||', 'jerry', '||comma||', 'now', '||comma||', 'what', 'you', 'do', 'with', 'your', 'personal', 'life', 'is', 'your', 'business', '||comma||', 'but', 'when', "you're", 'on', 'my', 'set', '||dash||', 'you', 'clean', 'it', 'up', '||comma||', 'mister', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'told', 'you', 'he', 'was', 'a', 'risk', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'like', "he's", 'not', 'just', 'carrying', 'you', '||exclammark||', 'and', 'has', 'been', 'for', 'years', '||exclammark||', '||return||', '||return||', 'newman:', 'yeah', '||questionmark||', 'well', '||comma||', 'you', 'bombed', '||exclammark||', 'that', 'story', 'stunk', 'worse', 'than', 'these', 'chairs', '||exclammark||', '||return||', '||return||', 'kramer:', 'smile', '||comma||', 'everyone', '||exclammark||', "we're", 'back', '||exclammark||', '||return||', '||return||', 'lou:', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'lou', '||period||', '||leftparen||', 'exhales', '||rightparen||', "you've", 'got', 'a', 'lot', 'going', 'for', 'you', '||period||', "you're", 'um', '||period||', '||period||', '||period||', "you're", 'spontaneous', '||period||', "you're", '||comma||', 'symmetrical', '||period||', "you're", '||comma||', 'uh', '||comma||', '||period||', '||period||', '||period||', '||leftparen||', 'spins', 'around', 'as', 'lou', 'is', 'behind', 'her', 'now', '||rightparen||', 'ehh', '||dash||', "you're", 'very', 'quick', '||comma||', "aren't", 'ya', '||period||', 'um', '||comma||', "it's", 'just', 'that', 'your', '||period||', '||period||', '||period||', '||return||', '||return||', 'lou:', 'my', 'dead', 'tooth', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'your', '||period||', '||leftparen||', 'breathes', '||rightparen||', '||return||', '||return||', 'lou:', 'not', 'my', 'breath', '||questionmark||', '||return||', '||return||', 'elaine:', 'uuhhh', '||period||', '||return||', '||return||', 'lou:', 'what', 'can', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'you', 'should', 'never', 'ever', 'go', 'anywhere', '||comma||', '||leftparen||', 'shakes', 'a', 'box', 'of', 'tic', 'tacs', '||rightparen||', 'without', 'these', '||period||', '||return||', '||return||', 'lou:', 'thanks', '||comma||', 'elaine', '||period||', "you're", 'such', 'a', 'super', 'lady', '||exclammark||', '||leftparen||', 'he', 'opens', 'the', 'door', 'and', 'goes', 'into', 'the', 'hall', '||dash||', 'now', 'he', 'clicks', 'and', 'clacks', 'when', 'he', 'walks', '||rightparen||', '||return||', '||return||', 'george:', 'more', 'wine', 'and', 'turkey', '||questionmark||', '||leftparen||', 'pours', 'celia', 'more', 'wine', '||rightparen||', '||return||', '||return||', 'celia:', 'hmm', '||period||', '||leftparen||', 'takes', 'a', 'sip', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'when', 'i', 'saw', 'george', 'on', 'the', 'street', 'with', 'an', '18', 'pound', 'turkey', 'and', 'a', 'giant', 'box', 'of', 'wine', '||comma||', 'i', 'thought', '||period||', '||period||', '||period||', 'what', 'a', 'coincidence', '||period||', "we're", 'just', 'about', 'to', 'eat', '||period||', '||return||', '||return||', 'celia:', 'what', 'is', 'that', 'stuff', 'in', 'turkey', 'that', 'makes', 'you', 'sleepy', '||questionmark||', '||return||', '||return||', 'jerry', 'and', 'george:', 'tryptophan', '||period||', '*', '||leftparen||', '*footnote', '||dash||', 'see', 'end', 'of', 'script', '||rightparen||', '||return||', '||return||', 'celia:', 'ahh', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', 'i', 'think', '||period||', 'have', 'some', 'more', 'wine', '||period||', '||leftparen||', 'jerry', 'pours', 'his', 'whole', 'glass', 'of', 'wine', 'into', 'her', 'glass', '||period||', '||rightparen||', '||return||', '||return||', 'celia:', 'what', 'video', 'did', 'you', 'get', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'george', 'brought', 'home', 'movies', 'of', 'his', 'boyhood', 'trip', 'to', 'michigan', '||period||', '||return||', '||return||', 'george:', 'four', 'hours', '||period||', '||return||', '||return||', 'jerry:', 'more', 'heavy', 'gravy', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'playing', 'with', 'toys', '||rightparen||', 'ahhhh', '||comma||', 'yes', '||exclammark||', 'touch', 'down', '||exclammark||', 'your', 'turn', '||comma||', 'jerry', '||period||', '||leftparen||', 'hands', 'jerry', 'the', 'mattel', 'football', '||period||', 'george', 'starts', 'playing', 'with', 'the', 'etch', '||dash||', 'a', '||dash||', 'sketch', '||period||', '||rightparen||', '||return||', '||return||', 'newman:', 'lately', '||comma||', 'though', '||comma||', "i've", 'been', '||comma||', 'uh', '||comma||', '||dash||', "i've", 'been', 'buying', 'the', 'generic', 'brand', 'of', 'waxed', 'beans', '||period||', 'you', 'know', '||comma||', 'i', 'rip', 'of', 'the', 'label', 'i', 'can', 'hardly', 'tell', 'the', 'difference', '||period||', '||return||', '||return||', 'kramer:', "we've", 'officially', 'bottomed', 'out', '||comma||', 'mm', '||period||', "who's", 'our', 'next', 'guest', '||questionmark||', '||return||', '||return||', 'newman:', 'we', 'got', 'no', 'one', '||exclammark||', '||return||', '||return||', 'kramer:', 'we', 'need', 'a', 'new', 'format', '||period||', 'we', 'should', 'shut', 'down', 'and', 're', '||dash||', 'tool', '||period||', '||return||', '||return||', 'newman:', 'what', 'about', 'a', 'guest', '||dash||', 'host', '||questionmark||', '||return||', '||return||', 'kramer:', "i'll", 'pretend', 'i', "didn't", 'hear', 'that', '||period||', '||return||', '||return||', 'miranda:', 'doctor', '||comma||', "how's", 'the', 'squirrel', '||questionmark||', '||return||', '||return||', 'george:', 'is', 'he', 'dead', '||questionmark||', '||return||', '||return||', 'doctor:', 'no', '||period||', 'fortunately', '||comma||', 'the', 'special', 'tiny', 'instruments', 'arrived', 'just', 'in', 'time', '||period||', 'would', 'you', 'like', 'to', 'visit', 'him', '||questionmark||', '||return||', '||return||', 'miranda:', 'yes', 'he', 'would', '||period||', '||return||', '||return||', 'doctor:', 'you', 'uh', '||comma||', 'you', 'have', '30', 'minutes', '||period||', '||leftparen||', 'doctor', 'exits', '||period||', 'george', 'turns', 'and', 'looks', 'towards', 'the', 'doctor', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', 'uh', '||comma||', 'squirrel', '||period||', '||return||', '||return||', 'doctor:', 'one', 'more', 'thing', 'mister', 'costanza', '||comma||', 'we', 'just', 'need', 'to', 'know', 'what', 'time', "you'll", 'be', 'picking', 'him', 'up', 'tomorrow', '||period||', '||return||', '||return||', 'george:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'doctor:', 'oh', '||comma||', "we're", 'discharging', 'the', 'squirrel', '||period||', 'we', 'think', "he'll", 'be', 'better', 'off', 'at', 'home', '||period||', '||return||', '||return||', 'george:', 'he', 'has', 'no', 'home', '||period||', "he's", 'a', 'squirrel', '||period||', '||return||', '||return||', 'doctor:', 'hmm', '||dash||', 'hm', '||period||', 'your', 'home', '||comma||', 'mister', 'costanza', '||period||', 'just', 'make', 'sure', 'he', 'gets', 'his', 'medicine', 'six', 'times', 'a', 'day', 'and', 'keep', 'his', 'tail', 'elevated', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'maybe', "it'll", 'be', 'fun', 'having', 'a', 'pet', '||period||', '||return||', '||return||', 'george:', "it's", 'not', 'a', 'pet', '||exclammark||', "it's", 'a', 'wild', 'invalid', '||exclammark||', 'and', 'it', 'knows', 'that', 'i', 'tried', 'to', 'kill', 'it', '||period||', 'as', 'soon', 'as', 'it', 'gets', 'better', '||comma||', "it's", 'gonna', 'gnaw', 'my', 'brain', 'out', 'in', 'my', 'sleep', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', '||leftparen||', 'claps', '||rightparen||', 'aaya', '||dash||', 'what', 'are', 'you', "doin'", 'tomorrow', '||questionmark||', 'i', 'want', 'you', 'to', 'come', 'by', 'the', 'set', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'my', '||quotemark||', 'questionable', 'material', '||quotemark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'nope', '||comma||', 'we', 'got', 'a', 'whole', 'new', 'format', '||period||', 'edgy', '||comma||', 'youthful', '||comma||', 'plus', '||period||', '||period||', '||period||', 'we', 'got', 'jim', 'fowler', '||exclammark||', '||return||', '||return||', 'jerry:', 'jim', 'fowler', '||questionmark||', 'the', 'animal', 'guy', 'from', '||quotemark||', 'wild', 'kingdom', '||quotemark||', 'is', 'coming', 'to', 'your', 'apartment', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'practically', 'raised', 'his', 'kids', '||period||', '||return||', '||return||', 'george:', "that's", 'perfect', '||exclammark||', "he's", 'a', 'zoo', 'guy', '||exclammark||', 'he', "take's", 'care', 'of', 'animals', '||period||', 'c', '||dash||', 'can', 'i', 'bring', 'the', 'squirrel', 'by', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'two', 'animal', 'acts', 'on', 'the', 'same', 'show', '||questionmark||', '||leftparen||', 'turns', 'to', 'jerry', '||rightparen||', 'what', 'is', 'this', '||comma||', 'amateur', 'hour', '||questionmark||', 'look', '||comma||', 'george', '||comma||', "i'm", 'sorry', '||comma||', 'maybe', 'another', 'time', '||comma||', 'all', 'right', '||questionmark||', '||leftparen||', 'drums', 'table', 'and', 'exits', '||rightparen||', '||return||', '||return||', 'george:', 'i', 'gotta', 'get', 'to', 'fowler', '||period||', 'i', 'know', 'that', 'he', 'would', 'take', 'this', 'squirrel', 'off', 'my', 'hands', '||period||', "it's", 'practically', 'bionic', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||leftparen||', 'startles', 'jerry', 'and', 'george', '||rightparen||', 'ha', 'ha', 'ha', 'ha', '||period||', 'nice', 'sidle', '||comma||', 'huh', '||questionmark||', 'speaking', '||comma||', 'of', 'which', 'i', 'think', 'ive', 'got', 'that', 'problem', '||comma||', 'solved', '||period||', '||return||', '||return||', 'jerry:', 'tic', '||dash||', 'tacs', 'work', '||questionmark||', '||return||', '||return||', 'elaine:', "he's", 'a', 'human', 'maraca', '||period||', '||return||', '||return||', 'george:', 'boy', '||comma||', 'my', 'knuckles', 'are', 'still', 'cramped', 'from', 'that', 'football', 'game', '||period||', '||return||', '||return||', 'elaine:', 'you', 'took', 'him', 'over', 'to', "celia's", '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', "it's", 'a', 'victimless', 'crime', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'the', 'woman', "who's", 'been', 'drugged', 'and', 'taken', 'advantage', 'of', '||questionmark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'one', 'victim', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', "it's", 'unconscionable', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'last', 'night', '||comma||', 'i', 'found', 'a', 'whole', 'weeble', 'village', 'right', 'behind', 'the', 'ez', 'bake', 'oven', '||period||', '||return||', '||return||', 'elaine:', 'ez', 'bake', 'oven', '||questionmark||', '||return||', '||return||', 'elaine:', 'who', 'wants', 'cupcake', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'me', '||comma||', 'me', '||comma||', 'me', '||comma||', 'me', '||comma||', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'that', 'batter', 'is', '||comma||', 'like', '||comma||', '30', 'years', 'old', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'on', 'tv', '||rightparen||', 'you', 'step', 'on', 'it', 'and', 'it', 'flushes', '||period||', '||return||', '||return||', 'elaine:', 'why', 'is', 'your', 'father', 'giving', 'a', 'tour', 'of', 'a', 'rest', 'stop', '||questionmark||', '||return||', '||return||', 'estelle:', '||leftparen||', 'on', 'tv', '||rightparen||', 'stop', 'squirming', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "don't", 'look', '||period||', 't', '||dash||', 'this', 'is', 'the', 'part', 'where', 'they', 'change', 'me', '||period||', '||return||', '||return||', 'jerry:', "you're", 'like', 'eight', 'years', 'old', '||period||', '||return||', '||return||', 'estelle:', '||leftparen||', 'on', 'tv', '||rightparen||', 'georgie', '||period||', '||return||', '||return||', 'george:', 'i', 'was', 'seven', 'and', 'a', 'half', '||period||', '||return||', '||return||', 'peterman:', 'that', 'noise', '||period||', "that's", 'the', 'noise', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'peterman:', 'that', 'infernal', 'rattling', 'sound', 'that', 'has', 'plagued', 'me', 'these', 'past', 'two', 'days', '||dash||', 'and', 'i', 'could', 'not', 'find', 'the', 'source', '||period||', 'in', 'my', 'office', '||comma||', 'in', 'the', 'hallway', '||period||', 'even', 'in', 'the', "men's", 'room', '||exclammark||', 'shame', 'on', 'you', '||comma||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'mr', '||period||', 'peterman', 'that', "wasn't", 'me', '||exclammark||', '||return||', '||return||', 'peterman:', 'that', 'reminds', 'me', 'of', 'the', 'hatian', 'voodoo', 'rattle', 'torture', '||exclammark||', 'you', "haven't", 'gone', 'over', 'to', 'their', 'side', 'have', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', 'mister', 'peterman', '||period||', '||return||', '||return||', 'peterman:', 'because', '||comma||', 'if', 'i', 'hear', 'one', 'more', 'rattle', '||dash||', 'just', 'one', '||dash||', 'your', 'out', 'on', 'your', 'can', '||period||', 'and', 'if', 'you', 'are', 'undead', '||dash||', "i'll", 'find', 'out', 'about', 'that', 'too', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pushes', 'lou', 'into', 'the', 'room', '||rightparen||', 'lou', '||exclammark||', 'in', 'here', '||exclammark||', '||leftparen||', 'closes', 'the', 'door', '||rightparen||', 'we', 'have', 'to', 'talk', '||period||', '||return||', '||return||', 'lou:', 'oh', '||comma||', 'right', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'takes', 'the', 'tic', 'tacs', 'away', 'from', 'lou', '||rightparen||', 'ooh', '||comma||', 'stop', 'it', '||exclammark||', 'bad', 'voodoo', '||period||', 'you', 'gotta', 'stop', 'using', 'these', '||period||', '||return||', '||return||', 'lou:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'because', "they're", 'turning', 'your', 'teeth', 'green', '||questionmark||', '||return||', '||return||', 'lou:', 'i', 'only', 'buy', 'the', 'white', 'ones', '||period||', '||return||', '||return||', 'elaine:', 'o', '||dash||', 'kay', '||period||', '||period||', '||period||', 'well', 'then', 'your', 'teeth', 'are', 'green', 'for', 'a', 'different', 'reason', '||period||', 'you', 'just', 'gotta', 'stop', 'carrying', 'these', '||comma||', 'okay', '||questionmark||', 'just', '||period||', '||period||', '||period||', 'just', 'mouth', 'wash', '||period||', '||return||', '||return||', 'lou:', 'i', "can't", '||period||', 'it', 'burns', 'my', 'cankers', '||period||', '||return||', '||return||', 'elaine:', 'binaca', '||questionmark||', '||return||', '||return||', 'lou:', 'again', '||period||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'right', '||comma||', 'cankers', '||period||', 'um', '||comma||', 'i', 'got', 'it', '||exclammark||', 'chew', 'gum', '||exclammark||', '||return||', '||return||', 'lou:', 'i', 'hate', 'gum', '||period||', 'the', 'only', 'guy', 'i', 'ever', 'liked', 'came', 'with', 'the', 'mickey', 'mouse', 'gumball', 'machine', '||period||', 'they', 'stopped', 'making', 'that', '20', 'years', 'ago', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'stinky', '||comma||', 'this', 'is', 'your', 'lucky', 'day', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||period||', 'a', 'little', 'later', '||comma||', "we're", 'gonna', 'be', 'talking', 'with', 'animal', 'expert', '||comma||', 'jim', 'fowler', '||period||', '||return||', '||return||', 'fowler:', 'where', 'are', 'the', 'cameras', '||questionmark||', '||leftparen||', 'he', 'has', 'a', 'live', 'hawk', 'perched', 'on', 'his', 'arm', '||rightparen||', '||return||', '||return||', 'kramer:', 'but', 'first', '||comma||', "we're", 'talking', 'with', '||comma||', 'jerry', '||period||', '||leftparen||', 'looks', 'down', 'to', 'his', 'yellow', 'note', 'cards', '||rightparen||', 'okay', '||comma||', 'jerry', '||comma||', 'uh', '||comma||', 'you', 'uh', '||comma||', 'you', 'drugged', 'a', 'woman', 'in', 'order', 'to', 'play', 'with', 'her', 'toy', '||comma||', 'collection', '||period||', 'how', 'do', 'you', 'feel', 'about', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'was', 'great', '||exclammark||', "i've", 'done', 'it', 'a', 'few', 'more', 'time', 'since', 'then', '||period||', '||return||', '||return||', 'kramer:', 'and', 'she', "doesn't", 'know', 'anything', '||comma||', 'about', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'not', 'a', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'jerry', '||comma||', 'we', 'have', 'a', 'little', 'surprise', 'for', 'you', '||exclammark||', 'come', 'on', 'out', '||comma||', 'celia', '||exclammark||', '||return||', '||return||', 'celia:', 'what', 'kind', 'of', 'a', 'sick', 'twisted', 'creep', 'are', 'you', '||questionmark||', '||return||', '||return||', 'newman', '&', 'kramer:', 'woah', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'what', 'is', 'this', '||questionmark||', 'what', 'is', 'she', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'the', 'new', 'format', '||period||', 'scandals', 'and', 'animals', '||period||', 'git', 'gt', 'gt', '||period||', '||return||', '||return||', 'celia:', 'if', 'you', 'think', 'you', 'can', 'drug', 'me', 'and', 'play', 'with', 'my', 'toys', '||comma||', 'you', 'got', 'another', 'thing', 'coming', '||comma||', 'buddy', '||exclammark||', '||return||', '||return||', 'newman:', 'go', 'girl', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'kind', 'of', 'woman', 'drinks', 'an', 'entire', 'box', 'of', 'wine', '||questionmark||', '||return||', '||return||', 'newman', 'and', 'kramer:', 'ohhh', '||exclammark||', '||return||', '||return||', 'george:', 'mister', 'fowler', '||comma||', 'i', '||dash||', 'i', 'have', 'a', 'squirrel', 'here', 'that', 'is', 'a', 'miracle', 'of', 'modern', 'science', '||exclammark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', 'george', 'i', 'told', 'you', "we're", 'booked', '||exclammark||', '||return||', '||return||', 'fowler:', 'careful', '||period||', 'hawks', 'and', 'squirrels', "don't", 'get', 'along', 'together', '||period||', '||return||', '||return||', 'kramer:', 'ohhh', '||period||', 'another', 'interesting', 'confrontation', '||period||', 'this', 'could', 'be', 'spicy', '||period||', 'yeah', '||comma||', 'george', 'bring', 'him', 'over', '||period||', '||return||', '||return||', 'george:', 'uh', '||period||', '||return||', '||return||', 'fowler:', 'no', '||comma||', 'you', 'idiot', '||exclammark||', 'hawks', 'eat', 'squirrels', '||exclammark||', '||return||', '||return||', 'george:', 'ahhhh', '||comma||', 'ahh', '||comma||', 'ah', '||comma||', 'ahhh', '||comma||', 'ahh', '||comma||', 'ah', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'off', 'camera', '||rightparen||', 'are', 'we', 'getting', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'the', 'whole', 'set', 'was', 'destroyed', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'the', 'squirrel', 'kept', 'scurrying', 'and', 'the', 'hawk', 'kept', 'clawing', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'at', 'least', 'we', 'know', 'the', 'prosthetic', 'squirrel', 'hips', 'work', '||period||', '||period||', '||period||', 'sorry', 'bout', 'the', 'set', '||period||', '||return||', '||return||', 'kramer:', 'ill', 'tell', 'ya', 'it', 'was', 'a', 'grind', 'having', 'to', 'fill', '10', 'hours', 'a', 'day', '||period||', "i'm", 'not', 'sure', 'i', 'was', 'ready', 'to', 'have', 'my', 'own', 'talk', 'show', 'set', '||period||', '||return||', '||return||', 'miranda:', 'i', 'got', 'the', 'nut', 'bread', '||comma||', 'george', '||period||', "let's", 'go', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'the', "squirrel's", 'gonna', 'make', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "he's", 'in', 'my', 'bed', '||period||', "i'm", 'sleeping', 'on', 'the', 'couch', '||period||', '||return||', '||return||', 'jerry:', 'on', 'the', 'couch', '||questionmark||', 'so', "you're", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'still', 'getting', 'nothing', '||exclammark||', '||return||', '||return||', 'george:', 'so', 'go', 'ahead', 'pigeons', '||period||', 'hu', 'hu', 'hu', '||period||', 'laugh', 'it', 'up', '||period||', "i'm", 'getting', 'in', 'my', 'car', 'now', 'and', 'the', 'last', 'i', 'heard', '||period||', '||period||', '||period||', 'we', 'have', 'no', 'deal', '||exclammark||', '||return||', '||return||', 'celia:', "i'm", 'glad', 'you', 'called', '||comma||', 'elaine', '||period||', 'i', 'really', 'needed', 'to', 'talk', 'to', 'someone', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'well', '||comma||', 'hey', '||comma||', 'i', 'dated', 'jerry', 'too', '||period||', 'i', '||dash||', 'i', 'know', 'what', 'a', 'monster', 'he', 'can', 'be', '||period||', 'more', 'wine', 'and', 'turkey', '||questionmark||', '||return||', '||return||', 'celia:', "who's", 'he', '||questionmark||', '||leftparen||', 'lou', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "he's", 'nobody', '||period||', 'hey', '||comma||', 'listen', '||comma||', '||period||', '||period||', '||period||', 'let', 'me', 'top', 'that', 'off', 'for', 'ya', '||period||', '||leftparen||', 'pours', 'her', 'glass', 'of', 'wine', 'into', 'celias', 'glass', '||rightparen||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'morning', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'this', 'is', 'crazy', '||comma||', 'i', "can't", 'go', 'on', 'like', 'this', '||period||', '||return||', '||return||', 'jerry:', 'but', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'need', 'some', 'space', '||period||', '||return||', '||return||', 'george:', 'does', 'that', 'mean', 'i', 'have', 'to', 'go', 'too', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'think', "she's", 'just', 'talking', 'to', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'shut', 'up', '||period||', '||return||', '||return||', 'jerry:', 'you', 'shut', 'up', '||period||', '||return||', '||return||', 'elaine:', 'i', 'hate', 'this', '||period||', '||return||', '||return||', 'kramer:', "you'll", 'get', 'used', 'to', 'it', '||period||', "it's", 'like', 'a', 'grubby', 'scrub', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "don't", 'want', 'this', 'anymore', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'come', 'to', 'work', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'and', 'on', 'your', 'dates', '||period||', '||return||', '||return||', 'jerry:', 'and', 'shopping', '||period||', '||return||', '||return||', 'kramer:', 'and', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'jerry', '||comma||', 'george', '&', 'kramer:', 'elaine', '||comma||', 'elaine', '||comma||', 'elaine', '||comma||', 'elaine', '||period||', '||period||', '||period||', '||leftparen||', 'distant', 'alarm', 'sound', 'which', 'is', 'getting', 'louder', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'i', "can't", 'breath', '||period||', '||period||', '||period||', "i'm", 'sorry', '||period||', '||period||', '||period||', '||leftparen||', 'elaine', 'wakes', 'up', '||rightparen||', "you're", 'killing', 'me', '||exclammark||', '||return||', '||return||', '||leftparen||', 'elaine', 'tries', 'to', 'push', 'her', 'alarm', 'clock', 'showing', '3:', '30', '||period||', 'she', 'realizes', '||comma||', 'that', 'alarm', 'comes', 'from', 'next', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'banging', 'the', 'wall', '||rightparen||', 'turn', 'your', 'alarm', 'off', '||exclammark||', '||exclammark||', '||leftparen||', 'screams', '||rightparen||', '||return||', '||return||', 'kruger:', 'your', 'background', 'is', 'impressive', 'george', '||comma||', 'but', 'how', 'does', 'it', 'apply', 'to', 'what', 'we', 'do', 'here', '||comma||', 'at', 'kruger', 'industrial', 'smoothing', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'at', 'the', 'yankees', 'it', 'was', 'all', 'about', 'smoothing', 'things', 'over', '||comma||', 'you', 'know', '||comma||', 'chiseling', 'away', '||comma||', 'grinding', 'down', '||period||', 'in', 'fact', 'we', 'used', 'to', 'call', 'it', "'the", "grind'", '||period||', '||return||', '||return||', 'kruger:', 'it', 'says', 'here', 'that', 'you', 'worked', 'at', 'play', 'now', 'for', 'four', 'days', '||questionmark||', '||return||', '||return||', 'george:', 'that', 'should', 'be', '14', '||comma||', 'let', 'me', 'just', '||period||', '||period||', '||period||', '||leftparen||', 'corrects', 'it', 'with', 'a', 'pen', '||period||', '||rightparen||', '||return||', '||return||', 'kruger:', 'george', '||comma||', 'i', 'have', 'to', 'honest', '||semicolon||', 'i', 'could', 'go', 'either', 'way', 'with', 'you', '||period||', '||period||', '||period||', 'but', 'what', 'the', 'hell', '||comma||', 'we', 'need', 'someone', '||comma||', 'huh', '||period||', '||return||', '||return||', 'george:', 'you', "won't", 'regret', 'this', '||comma||', 'sir', '||period||', '||return||', '||return||', 'kruger:', 'i', "don't", 'care', '||period||', "let's", 'find', 'you', 'an', 'office', '||period||', '||return||', '||return||', '||leftparen||', 'kruger', 'leaves', 'and', 'george', 'notices', 'a', 'photograph', 'on', 'the', 'table:', "kruger's", 'family', 'and', 'george', 'on', 'the', 'background', '||period||', '||rightparen||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'and', 'then', 'when', 'i', 'saw', 'the', 'photo', 'i', 'remembered', 'where', "i'd", 'seen', 'him', '||semicolon||', 'the', 'boom', 'box', 'incident', '||period||', '||return||', '||return||', 'jerry:', 'the', 'boom', 'box', 'incident', '||questionmark||', '||return||', '||return||', 'george:', 'summer', 'of', "'89", "i'm", 'at', 'the', 'beach', '||period||', 'this', 'family', 'sits', 'up', 'next', 'to', 'me', '||period||', 'i', 'go', 'in', 'to', 'the', 'surfs', 'and', 'when', 'i', 'come', 'from', 'out', '||comma||', 'my', 'clothes', '||comma||', 'my', 'towel', '||comma||', 'my', 'umbrella', '||comma||', "they're", 'all', 'gone', '||period||', 'i', 'am', 'furious', '||comma||', 'i', 'start', 'screaming', 'to', 'these', 'kids', 'demanding', 'my', 'stuff', 'back', 'and', 'finally', 'i', 'lose', 'it', '||semicolon||', 'i', 'grab', 'their', 'boom', 'box', 'and', 'i', 'chuck', 'it', 'in', 'to', 'the', 'ocean', '||period||', '||return||', '||return||', 'jerry:', 'seems', 'reasonable', '||period||', '||return||', '||return||', 'george:', 'then', 'i', 'see', 'my', 'clothes', 'floating', 'out', 'there', '||period||', 'the', 'tied', 'took', 'them', 'out', '||comma||', 'not', 'the', 'kids', '||period||', '||return||', '||return||', 'jerry:', 'even', 'more', 'reasonable', '||period||', '||return||', '||return||', 'george:', 'so', 'now', '||comma||', 'the', 'father', 'is', 'screaming', 'at', 'me', '||comma||', "he's", 'demanding', 'that', 'i', 'pay', 'for', 'the', 'boom', 'box', '||period||', 'finally', '||comma||', 'i', 'gave', 'them', 'a', 'fake', 'address', 'and', 'got', 'the', 'hell', 'out', 'of', 'there', '||period||', '||return||', '||return||', 'jerry:', 'and', 'that', 'guy', 'is', 'your', 'new', 'boss', '||questionmark||', '||return||', '||return||', 'george:', 'until', 'that', 'stupid', 'photo', 'jogs', 'his', 'memory', '||period||', '||return||', '||return||', 'kramer:', 'kruger', '||questionmark||', "that's", 'not', 'kruger', 'industrial', 'smoothing', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'grinders', '||comma||', 'sanders', '||comma||', 'wet', 'stones', '||period||', 'they', 'are', 'the', 'ones', 'who', 'botched', 'the', 'statue', 'of', 'liberty', 'job', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'they', "couldn't", 'get', 'the', 'green', 'stuff', 'off', '||period||', '||return||', '||return||', 'george:', 'it', 'is', 'a', 'horrible', 'company', '||period||', "there's", 'no', 'management', 'what', 'so', 'ever', '||period||', 'i', 'could', 'go', 'hog', 'wild', 'in', 'there', '||period||', '||return||', '||return||', 'kramer:', 'you', 'now', 'what', 'you', 'do', '||questionmark||', 'you', 'sneak', 'that', 'photo', 'out', 'of', 'there', 'for', 'couple', 'of', 'days', 'and', 'get', 'it', 'air', 'brushed', '||period||', '||return||', '||return||', 'george:', 'like', 'retouched', '||period||', '||return||', '||return||', 'kramer:', 'you', 'remember', 'that', 'photo', 'of', 'me', 'and', 'gerald', 'ford', 'and', 'i', 'took', 'it', 'in', '||period||', 'got', 'that', 'ford', 'right', 'out', 'of', 'there', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'this', 'is', 'good', '||period||', 'this', 'kruger', 'guy', 'is', 'clueless', '||period||', 'i', "can't", 'wait', 'to', 'work', 'for', 'him', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'this', '||period||', 'this', 'sandwich', 'is', 'terrible', '||period||', 'everywhere', 'you', 'go', '||comma||', 'they', 'give', 'you', 'this', 'misshaped', 'shardy', 'meat', '||period||', 'look', 'at', 'this', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', "haven't", 'had', 'a', 'decent', 'sandwich', 'in', '13', 'years', '||period||', '||return||', '||return||', 'jerry:', 'neither', 'have', 'i', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'our', 'meat', 'problems', 'are', 'solved', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'get', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'traded', 'it', 'to', 'my', 'sausage', 'press', '||period||', 'look', 'how', 'thin', 'that', 'is', '||comma||', 'see', "that's", 'all', 'surface', 'area', '||period||', 'the', 'taste', 'has', 'nowhere', 'to', 'hide', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'spice', '||period||', '||leftparen||', 'gives', 'elaine', 'a', 'piece', 'of', 'meat', '||period||', '||rightparen||', 'welcome', 'to', 'flavor', 'country', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'pretty', 'good', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'got', 'a', 'date', 'with', 'that', 'doctor', 'you', 'met', '||period||', '||return||', '||return||', 'elaine:', 'sara', 'sitarides', '||questionmark||', '||return||', '||return||', 'jerry:', 'mmhu', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', '||leftparen||', 'falls', 'in', 'to', 'the', 'sofa', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', "what's", 'with', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'remember', 'that', 'next', 'door', 'neighbor', 'of', 'mine', '||comma||', 'the', 'apartment', 'that', 'always', 'smells', 'like', 'potatoes', '||questionmark||', '||return||', '||return||', 'jerry:', 'your', 'whole', 'building', 'smells', 'like', 'potatoes', '||period||', '||return||', '||return||', 'elaine:', 'this', 'jackass', 'goes', 'to', 'paris', '||comma||', 'leaves', 'the', 'alarm', 'on', '||period||', "it's", 'been', 'beeping', 'since', '330', 'this', 'morning', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'that', 'happened', 'to', 'lomez', '||comma||', 'so', 'he', 'blew', 'his', "neighbor's", 'circuit', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'you', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'well', '||comma||', "that's", 'easy', '||period||', 'just', 'let', 'me', 'finish', 'this', 'mile', 'high', 'and', "i'll", 'be', 'right', 'with', 'you', '||period||', 'oh', '||comma||', 'and', 'jerry', '||comma||', 'we', 'are', 'gonna', 'need', 'a', 'case', 'of', 'kaiser', 'rolls', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'we', 'might', 'have', 'one', 'left', 'in', 'the', 'stock', 'room', '||period||', '||return||', '||return||', 'kramer:', 'this', 'hallway', 'smells', 'like', 'potatoes', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'i', 'know', '||comma||', 'this', 'is', 'it', '||period||', '||leftparen||', 'points', 'to', 'a', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', 'oh', '||comma||', 'you', 'see', 'this', 'socket', "it's", 'probably', 'connected', 'to', 'her', 'apartment', '||period||', 'so', 'what', "we'll", 'do', '||comma||', "we'll", 'take', 'this', 'paper', 'clip', 'and', 'bend', 'it', 'so', "it'll", 'short', 'out', 'the', 'entire', 'circuit', '||period||', 'here', 'you', 'go', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'i', 'think', "i'll", 'let', 'you', 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', 'no', 'no', 'no', '||period||', "it's", 'easy', '||comma||', 'you', 'just', '||period||', '||period||', '||period||', 'do', 'it', 'quickly', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'really', "don't", 'want', 'to', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'want', 'to', 'either', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'had', 'done', 'this', 'before', '||period||', '||return||', '||return||', 'kramer:', "it's", 'just', '||period||', '||period||', '||period||', "it's", 'no', 'picnic', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'how', 'are', 'we', 'gonna', 'do', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'fine', 'fine', '||comma||', "i'll", 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'mama', '||period||', '||return||', '||return||', 'elaine:', 'are', 'you', 'okay', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'will', 'lose', 'that', 'nail', '||period||', '||return||', '||return||', 'sara:', 'i', 'enjoy', 'the', 'challenge', 'of', 'medicine', '||period||', 'naturally', 'you', 'have', 'no', 'idea', 'what', "it's", 'like', 'to', 'have', "someone's", 'life', 'depending', 'on', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'have', 'this', 'neighbor', '||period||', '||period||', '||period||', '||return||', '||return||', 'sara:', 'a', 'joke', '||period||', 'do', 'you', 'have', 'any', 'idea', 'how', 'it', 'feels', 'like', 'to', 'save', "someone's", 'life', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'it', 'anything', 'like', 'hitting', 'a', 'home', 'run', 'in', 'softball', '||questionmark||', '||return||', '||return||', 'sara:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'cause', 'i', 'hit', 'a', 'whopper', 'last', 'week', '||exclammark||', '||return||', '||return||', 'clerk:', 'here', 'you', 'go', '||comma||', 'airbrushed', 'in', 'to', 'sand', 'and', 'sky', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'you', 'do', 'here', '||questionmark||', 'you', 'took', 'out', 'the', 'wrong', 'guy', '||period||', '||return||', '||return||', 'clerk:', 'i', 'thought', 'you', 'said', 'you', 'wanted', 'to', 'be', 'out', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'still', 'here', '||period||', 'you', 'took', 'out', 'the', 'other', 'guy', '||exclammark||', '||return||', '||return||', 'clerk:', "you've", 'really', 'lost', 'a', 'lot', 'of', 'hair', '||period||', '||return||', '||return||', 'george:', 'i', 'am', 'aware', '||exclammark||', '||return||', '||return||', 'elaine', 'thinking:', 'hmm', '||comma||', 'the', "world's", 'best', 'pizza', 'cutter', '||period||', '76', 'bucks', '||comma||', 'how', 'often', 'do', 'i', 'make', '||period||', '||period||', '||period||', 'oh', '||comma||', "i've", 'gotta', 'buy', 'a', 'book', '||period||', '||return||', '||return||', 'elaine:', 'the', 'cat', '||period||', '||return||', '||return||', 'jerry:', 'he', 'took', 'out', 'kruger', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'just', 'pray', 'kruger', "doesn't", 'realize', 'that', "it's", 'gone', 'until', 'this', 'guy', 'can', 'fix', 'it', 'up', '||period||', '||return||', '||return||', 'kramer:', 'this', 'slicer', 'is', 'indomitable', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'get', 'that', "butcher's", 'coat', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'buy', 'enough', 'meat', '||comma||', "they'll", 'give', 'you', 'anything', '||period||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'my', 'neighbor', 'has', 'a', 'cat', '||period||', 'when', 'you', 'blew', 'the', 'power', '||comma||', 'we', "must've", 'shut', 'off', 'the', 'automatic', 'feeder', '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', "that's", 'the', 'same', 'thing', 'that', 'happened', 'to', 'lomez', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'he', 'do', 'about', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'he', 'moved', 'to', 'a', 'hotel', 'and', 'the', 'cat', 'eventually', 'died', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'this', 'meowing', 'is', 'absolutely', 'worst', 'than', 'the', 'alarm', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "that's", 'a', 'prickly', 'one', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "how's", 'the', 'doctor', 'date', '||questionmark||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'died', 'on', 'the', 'table', '||period||', 'just', 'spent', 'hour', 'and', 'a', 'half', 'making', 'me', 'feel', '||comma||', 'if', 'i', "don't", 'save', 'lives', '||comma||', "i'm", 'worthless', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "she's", 'very', 'focused', '||period||', 'dermatology', 'is', 'her', 'life', '||period||', '||return||', '||return||', 'jerry:', 'dermatology', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "she's", 'a', 'dermatologist', '||period||', '||return||', '||return||', 'jerry:', 'saving', 'lives', '||questionmark||', 'the', 'whole', 'profession', 'is', '||semicolon||', 'eh', '||comma||', 'just', 'put', 'some', 'aloe', 'on', 'it', '||period||', '||return||', '||return||', 'kramer:', 'the', 'slicer', '||exclammark||', 'elaine', '||comma||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', 'where', 'are', 'we', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'cat', '||period||', 'just', 'grab', 'that', 'meat', 'and', "let's", 'ride', '||period||', '||return||', '||return||', 'george:', 'when', 'are', 'you', 'going', 'on', 'your', 'next', 'date', 'with', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "what's", 'the', 'point', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||comma||', "you're", 'gonna', 'pass', 'up', 'a', 'wonderful', 'opportunity', 'to', 'put', 'that', 'aloe', 'pusher', 'in', 'her', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'revenge', 'date', '||questionmark||', 'that', 'sound', 'like', 'you', 'more', 'than', 'me', '||period||', '||return||', '||return||', 'george:', 'this', 'good', 'be', 'so', 'sweet', '||comma||', 'jerry', '||period||', 'saving', 'lives', '||questionmark||', "she's", 'one', 'step', 'away', 'working', 'at', 'the', 'clinique', 'counter', '||exclammark||', '||return||', '||return||', 'jerry:', 'dermatologist', '||questionmark||', 'skin', "doesn't", 'need', 'a', 'doctor', '||exclammark||', '||return||', '||return||', 'george:', 'of', 'course', 'not', '||exclammark||', 'wash', 'it', '||comma||', 'dry', 'it', '||comma||', 'move', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'right', '||period||', "i'm", 'gonna', 'call', 'her', 'right', 'now', 'and', 'tell', 'her', 'off', '||period||', '||return||', '||return||', 'george:', 'no', 'no', 'no', 'no', 'no', '||comma||', 'this', 'has', 'to', 'be', 'carefully', 'orchestrated', '||period||', 'you', 'go', 'to', 'a', 'fancy', 'dinner', '||comma||', 'flowers', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'flowers', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'you', 'gotta', 'do', 'it', 'classy', '||leftparen||', 'wipes', 'his', 'mouth', 'to', 'his', 'sweater', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "you've", 'done', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'almost', '||period||', "couldn't", 'get', 'the', 'girl', 'go', 'out', 'with', 'me', 'the', 'second', 'time', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', 'we', 'are', 'looking', 'half', 'a', 'millimeter', '||period||', '||return||', '||return||', 'elaine:', 'can', 'it', 'cut', 'that', 'thin', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "i've", 'cut', 'slices', 'so', 'thin', '||comma||', 'i', "couldn't", 'even', 'see', 'them', '||period||', '||return||', '||return||', 'elaine:', 'how', 'did', 'you', 'know', 'you', 'cut', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'guess', 'i', 'just', 'assumed', '||period||', '||return||', '||return||', 'elaine:', 'hold', 'on', 'kitty', '||comma||', "dinner's", 'coming', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "that's", 'a', 'hall', 'of', 'famer', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', "let's", 'do', 'it', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'here', 'we', 'go', '||period||', 'yeah', '||comma||', 'watch', 'that', 'baby', 'slide', '||period||', '||period||', '||period||', '||leftparen||', 'puts', 'a', 'slice', 'of', 'meat', 'under', 'the', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', 'come', 'on', 'kitty', '||period||', '||period||', '||period||', '||leftparen||', 'slice', 'disappears', '||rightparen||', 'ooh', '||period||', '||period||', '||period||', 'how', 'about', 'that', '||semicolon||', 'it', 'worked', '||exclammark||', 'wow', '||comma||', 'can', 'i', 'borrow', 'that', 'thing', 'for', 'a', 'while', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'no', '||comma||', 'i', "don't", 'think', 'so', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "you're", 'not', 'checked', 'at', 'on', 'it', '||period||', '||return||', '||return||', 'elaine:', 'what', 'do', 'i', 'have', 'to', 'know', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'where', 'the', 'meat', 'goes', '||questionmark||', '||return||', '||return||', 'elaine:', 'right', 'there', '||period||', '||return||', '||return||', 'kramer:', 'where', 'do', 'you', 'turn', 'it', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', 'right', 'there', '||period||', '||return||', '||return||', 'kramer:', 'but', 'where', 'does', 'the', 'meat', 'go', '||questionmark||', '||return||', '||return||', 'sara:', 'restaurant', '||comma||', 'flowers', '||period||', '||period||', '||period||', 'this', 'is', 'so', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'a', 'classy', 'guy', '||period||', "how's", 'the', 'life', 'saving', 'business', '||questionmark||', '||return||', '||return||', 'sara:', "it's", 'fine', '||period||', '||return||', '||return||', 'jerry:', 'it', 'must', 'take', 'a', 'really', 'really', 'big', 'zit', '||comma||', 'to', 'kill', 'a', 'man', '||exclammark||', '||return||', '||return||', 'sara:', 'what', 'is', 'with', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'call', 'yourself', 'a', 'lifesaver', '||period||', 'i', 'call', 'you', 'pimple', 'popper', 'md', '||exclammark||', '||return||', '||return||', 'parry:', 'dr', '||period||', 'sitarides', '||questionmark||', '||return||', '||return||', 'sara:', 'mr', '||period||', 'parry', '||comma||', 'how', 'are', 'you', '||questionmark||', '||return||', '||return||', 'parry:', 'i', 'just', 'wanted', 'to', 'thank', 'you', 'again', 'for', 'saving', 'my', 'life', '||period||', '||return||', '||return||', 'jerry:', 'she', 'saved', 'your', 'life', '||questionmark||', '||return||', '||return||', 'parry:', 'i', 'had', 'skin', 'cancer', '||period||', '||return||', '||return||', 'jerry:', 'skin', 'cancer', '||exclammark||', 'damn', '||period||', '||return||', '||return||', 'elaine:', 'you', 'were', 'right', 'kramer', '||comma||', 'this', 'slicer', 'is', 'absolutely', 'amazing', '||period||', '||period||', '||period||', 'yeah', '||comma||', 'yeah', '||period||', '||period||', '||period||', 'no', 'no', 'no', "i'll", 'bring', 'it', 'by', 'tonight', '||period||', '||period||', '||period||', 'ok', 'bye', '||period||', '||return||', '||return||', 'elaine:', 'these', 'heals', 'are', 'so', 'uneven', '||period||', '||leftparen||', 'watches', 'the', 'slicer', '||period||', '||rightparen||', '||return||', '||return||', 'clerk:', 'here', 'you', 'mr', '||period||', 'costanza', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'this', '||questionmark||', 'this', 'is', 'a', 'drawing', '||period||', '||return||', '||return||', 'clerk:', 'looks', 'real', '||comma||', "doesn't", 'it', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'cartoon', '||exclammark||', '||return||', '||return||', 'clerk:', 'hey', '||comma||', 'i', 'had', 'to', 'draw', 'that', 'guy', 'from', 'memory', '||period||', 'considering', '||comma||', 'i', 'think', "that's", 'damn', 'good', '||period||', '||return||', '||return||', 'george:', 'but', "it's", 'not', 'a', 'photograph', '||comma||', 'i', 'need', 'a', 'photograph', '||exclammark||', '||return||', '||return||', 'clerk:', 'then', 'you', 'better', 'get', 'a', 'camera', '||period||', '||return||', '||return||', 'jerry:', 'he', 'looks', 'like', 'a', 'peanuts', 'character', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'the', 'only', 'way', 'to', 'fix', 'it', 'now', '||comma||', 'is', 'to', 'get', 'a', 'whole', 'new', 'photo', 'of', 'kruger', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'do', 'that', '||period||', '||return||', '||return||', 'george:', 'without', 'his', 'shirt', 'on', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'do', 'that', '||period||', 'well', '||comma||', 'maybe', 'kruger', "wasn't", 'the', 'place', 'for', 'you', '||period||', '||return||', '||return||', 'george:', 'it', 'seemed', 'so', 'disorganized', '||period||', '||return||', '||return||', 'jerry:', 'i', 'understand', '||period||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'coast', 'guard', '||questionmark||', 'seems', 'like', 'a', 'lot', 'of', 'pride', 'there', '||comma||', 'a', 'lot', 'of', 'tradition', '||period||', '||return||', '||return||', 'jerry:', 'true', '||period||', 'you', 'mean', '||comma||', 'for', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'your', 'sea', 'sickness', '||questionmark||', '||return||', '||return||', 'george:', 'maybe', 'i', 'could', 'be', 'a', 'land', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'if', 'they', 'have', 'land', 'guys', '||period||', '||return||', '||return||', 'george:', "someone's", 'have', 'to', 'unhook', 'the', 'boat', 'before', 'it', 'leaves', '||period||', '||period||', '||period||', 'the', 'place', '||exclammark||', '||return||', '||return||', 'elaine:', 'pliers', '||questionmark||', '||return||', '||return||', 'jerry:', 'drawer', '||period||', '||return||', '||return||', 'elaine:', 'got', 'it', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'they', 'for', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', '||period||', '||period||', '||period||', 'eh', '||period||', '||period||', '||period||', 'i', 'got', 'a', 'piece', 'a', 'my', 'heal', 'stuck', 'in', 'a', 'slicer', '||period||', '||return||', '||return||', 'jerry:', 'come', 'again', '||questionmark||', '||return||', '||return||', 'elaine:', 'okay', '||comma||', 'i', 'got', 'a', 'little', 'slicer', 'happy', '||comma||', 'but', 'listen', '||semicolon||', "don't", 'tell', 'kramer', '||comma||', 'okay', '||questionmark||', 'he', 'has', 'very', 'strong', 'feelings', 'for', 'it', '||period||', '||return||', '||return||', 'george:', 'i', 'forgot', 'to', 'ask', 'you', '||semicolon||', 'how', 'did', 'the', 'revenge', 'date', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'eh', '||comma||', 'it', 'went', 'okay', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'dressed', 'nice', '||comma||', 'did', 'you', 'do', 'it', 'classy', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'started', 'out', 'real', 'classy', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'yeah', 'you', 'did', '||comma||', 'you', 'classed', 'it', 'up', '||exclammark||', '||return||', '||return||', 'jerry:', 'but', 'then', 'i', 'found', 'out', 'about', 'the', 'skin', 'cancer', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'so', 'it', 'backfired', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'i', 'guess', 'i', 'was', 'lucky', 'that', 'i', 'never', 'tried', 'that', 'myself', '||period||', '||return||', '||return||', 'elaine:', 'of', 'course', 'she', 'treats', 'skin', 'cancer', '||period||', "that's", 'how', 'i', 'met', 'her', '||comma||', 'she', 'was', 'doing', 'a', 'skin', 'cancer', 'screening', 'at', 'peterman', '||period||', "that's", 'what', 'dermatologists', 'do', '||period||', '||return||', '||return||', 'jerry:', 'sadly', '||comma||', 'that', 'knowledge', "could've", 'help', 'me', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||comma||', 'she', 'did', 'a', 'skin', 'cancer', 'screening', 'at', 'peterman', '||questionmark||', '||return||', '||return||', 'elaine:', 'aha', '||period||', '||return||', '||return||', 'george:', 'could', 'she', 'do', 'that', 'at', 'kruger', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||comma||', 'i', 'guess', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'set', 'up', 'a', 'screening', '||comma||', 'everyone', 'takes', 'their', 'shirt', 'off', 'and', 'click', '||comma||', 'i', 'snap', 'me', 'a', 'shot', 'of', 'a', 'bear', '||dash||', 'chested', 'kruger', '||period||', '||return||', '||return||', 'elaine:', 'you', 'have', 'a', 'little', 'thing', 'for', 'this', "fella'", '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'you', 'gotta', 'talk', 'to', 'sitarides', '||period||', '||return||', '||return||', 'jerry:', 'yesterday', 'you', 'said', 'i', 'had', 'to', 'get', 'my', 'revenge', 'on', 'her', '||exclammark||', '||return||', '||return||', 'george:', 'and', 'that', 'was', 'wrong', '||comma||', 'jerry', '||exclammark||', 'you', 'simple', 'must', 'to', 'apologize', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'must', 'i', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', 'because', 'it', 'is', 'the', 'mature', '||comma||', 'adult', 'thing', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', 'how', 'does', 'that', 'reflect', 'me', '||questionmark||', '||return||', '||return||', 'kramer:', 'elaine', '||comma||', 'alright', "where's", 'the', 'sp2000', '||questionmark||', 'cause', 'i', 'gotta', 'slice', '||period||', '||return||', '||return||', 'elaine:', 'aah', '||comma||', 'i', 'forgot', 'it', '||period||', 'i', 'gotta', 'get', 'home', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', "i'll", 'go', 'with', 'you', '||period||', '||return||', '||return||', 'elaine:', 'umm', '||comma||', "i'm", 'not', 'actually', 'going', 'straight', 'to', 'home', '||comma||', 'i', 'have', 'to', 'first', 'stop', 'at', 'the', 'eh', '||period||', '||period||', '||period||', 'circus', '||comma||', 'you', 'know', 'with', 'all', 'the', '||period||', '||period||', '||period||', 'clowns', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', 'you', 'have', 'fun', '||period||', '||period||', '||period||', '||leftparen||', 'elaine', 'leaves', '||rightparen||', 'oh', 'no', 'clowns', '||period||', '||period||', '||period||', 'hate', 'clowns', '||period||', '||period||', '||period||', 'the', 'clowns', '||period||', '||return||', '||return||', 'jerry:', 'so', 'again', '||comma||', "i'm", 'sorry', '||period||', 'i', 'had', 'no', 'right', 'to', 'yell', 'at', 'you', '||comma||', "you're", 'a', 'life', 'saving', 'doctor', 'and', "i'm", 'just', 'a', 'comedian', '||period||', '||period||', '||period||', '||return||', '||return||', 'sara:', 'jerry', '||comma||', 'enough', '||period||', "i'll", 'do', 'your', "friend's", 'cancer', 'screening', '||comma||', 'because', 'i', 'believe', 'in', 'that', '||comma||', 'but', 'as', 'far', 'as', 'you', 'and', 'i', 'are', 'concerned', '||semicolon||', "it's", 'off', '||period||', '||return||', '||return||', 'jerry:', 'was', 'it', 'pimple', 'popper', 'md', '||questionmark||', '||return||', '||return||', 'sara:', "that's", 'the', 'one', '||period||', '||leftparen||', 'taps', 'jerry', 'on', 'the', 'cheek', 'and', 'leaves', '||period||', '||rightparen||', '||return||', '||return||', 'jerry:', 'still', 'got', 'it', '||period||', '||return||', '||return||', 'elaine:', 'out', '||comma||', 'damn', 'heal', '||exclammark||', '||return||', '||return||', 'kramer:', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', 'listen', '||comma||', 'i', 'need', 'my', 'slicer', 'back', '||period||', '||return||', '||return||', 'elaine:', 'just', 'hold', 'on', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'elaine:', 'nothing', '||period||', '||period||', '||period||', '||leftparen||', 'heal', 'comes', 'loose', 'and', 'elaine', 'opens', 'the', 'door', '||period||', '||rightparen||', 'here', '||comma||', 'ok', "i'm", 'on', 'the', 'phone', 'alright', '||questionmark||', "i'm", 'on', 'the', 'phone', 'with', 'someone', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'my', 'blade', 'is', 'all', 'dinged', 'up', '||period||', 'oh', '||comma||', 'come', 'on', '||exclammark||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'phone', 'call', '||exclammark||', "i'm", 'in', 'a', 'big', 'phone', 'call', '||exclammark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'this', 'is', 'important', '||exclammark||', '||leftparen||', 'shakes', 'the', 'door', 'handle', 'and', 'it', 'comes', 'loose', '||period||', 'kramer', 'falls', 'backwards', 'to', 'the', 'next', 'door', '||period||', '||rightparen||', '||return||', '||return||', 'neighbor:', 'hey', '||comma||', 'get', 'the', 'hell', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'kramer:', 'wow', '||comma||', "that's", 'a', 'lot', 'of', 'potatoes', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'george', 'took', 'my', 'slicer', 'down', 'to', 'kruger', 'and', "they're", 'smoothing', 'it', 'out', 'for', 'me', '||period||', '||return||', '||return||', 'jerry:', 'what', 'the', 'hell', 'is', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'boy', '||comma||', 'that', 'looks', 'like', 'an', 'allergic', 'reaction', '||period||', 'have', 'you', 'been', 'wearing', 'a', 'fake', 'beard', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'have', 'you', 'been', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||comma||', 'i', 'got', 'up', '||comma||', 'run', 'some', 'errands', '||comma||', 'i', 'went', 'down', 'to', "sara's", 'office', 'and', 'apologized', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'whoa', 'whoa', '||comma||', 'backup', '||comma||', 'dr', '||period||', 'sitarides', '||comma||', 'what', 'happened', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'tried', 'to', 'apologise', '||comma||', 'it', "didn't", 'go', 'over', 'that', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'there', '||comma||', "there's", 'your', 'hives', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'she', 'gave', 'me', 'hives', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'as', 'the', 'bible', 'says', '||semicolon||', 'thou', 'who', 'cureth', '||comma||', 'can', 'maketh', 'ill', '||period||', '||return||', '||return||', 'jerry:', 'she', 'did', 'kind', 'of', 'touch', 'my', 'face', '||period||', '||return||', '||return||', 'kramer:', 'now', 'you', 'listen', 'to', 'me', '||comma||', "you've", 'got', 'to', 'find', 'this', 'woman', 'and', 'tell', 'her', 'that', "you're", 'not', 'a', 'test', 'tube', 'pin', 'cushion', '||period||', '||return||', '||return||', 'jerry:', 'it', 'does', 'itch', '||period||', 'maybe', 'i', 'will', 'go', 'down', 'at', 'kruger', 'and', 'talk', 'to', 'her', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'great', '||comma||', 'because', 'i', 'got', 'to', 'get', 'down', 'there', 'and', 'pick', 'up', 'my', 'blade', '||period||', 'hey', '||comma||', 'and', 'i', "couldn't", 'find', 'that', 'stock', 'room', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "that's", 'fantastic', '||period||', '||return||', '||return||', 'george:', 'i', 'just', 'talked', 'to', 'mr', '||period||', 'kruger', '||comma||', "he'll", 'be', 'down', 'in', 'a', 'minute', '||period||', 'he', 'wanted', 'me', 'to', 'take', 'a', 'photograph', 'for', 'the', 'record', '||period||', '||return||', '||return||', 'sara:', 'what', 'record', '||questionmark||', '||return||', '||return||', 'george:', 'his', 'personal', 'file', '||comma||', 'i', '||comma||', 'i', "don't", 'ask', '||period||', '||period||', '||period||', '||return||', '||return||', 'sara:', 'jerry', '||questionmark||', 'what', 'brings', 'you', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||comma||', 'this', '||questionmark||', '||leftparen||', 'shows', 'his', 'neck', 'to', 'sara', '||period||', '||rightparen||', '||return||', '||return||', 'sara:', 'looks', 'like', 'hives', '||period||', '||return||', '||return||', 'jerry:', 'where', 'do', 'you', 'suppose', 'that', "could've", 'come', 'from', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'what', 'are', 'you', 'doing', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'he', 'is', 'just', 'setting', 'the', 'record', 'straight', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'sitarides', '||comma||', 'cop', 'to', 'it', '||period||', 'what', 'brand', 'of', 'perverted', 'science', 'do', 'you', 'practice', '||questionmark||', '||return||', '||return||', 'sara:', 'are', 'you', 'suggesting', 'i', 'somehow', 'i', 'infected', 'you', 'on', 'purpose', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'want', 'the', 'antidote', '||comma||', 'pimple', 'popper', '||exclammark||', '||return||', '||return||', 'sara:', "that's", 'it', '||comma||', "i'm", 'out', 'of', 'here', '||exclammark||', "you're", 'insane', '||period||', '||return||', '||return||', 'jerry:', 'am', 'i', '||questionmark||', 'you', 'touched', 'my', 'face', '||period||', 'i', "didn't", 'imagine', 'that', '||exclammark||', '||return||', '||return||', 'george:', 'dr', '||period||', 'sitarides', "don't", 'go', '||exclammark||', 'oh', '||comma||', 'thanks', 'jerry', '||exclammark||', '||return||', '||return||', 'kruger:', 'hey', 'george', '||comma||', 'hey', 'doc', '||period||', 'we', 'doing', 'the', 'screening', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'aah', '||comma||', 'yeah', '||comma||', 'yeah', '||period||', "won't", 'you', 'head', 'on', 'in', '||comma||', "we'll", 'be', 'in', 'in', 'a', 'second', '||period||', 'be', 'right', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', 'doc', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'this', 'is', 'perfect', '||period||', 'i', 'need', 'you', 'to', 'go', 'in', 'there', '||comma||', 'pretend', "you're", 'a', 'doctor', 'and', 'check', 'this', 'guy', 'for', 'moles', '||period||', '||return||', '||return||', 'kramer:', 'moles', '||comma||', 'yes', '||period||', "freckle's", 'ugly', 'cousin', '||period||', '||return||', '||return||', 'george:', 'and', 'get', 'a', 'picture', 'of', 'him', '||comma||', 'with', 'his', 'shirt', 'off', '||period||', '||return||', '||return||', 'kramer:', 'you', 'really', 'are', 'cooking', 'up', 'a', 'little', 'scheme', 'here', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'lets', 'get', 'in', 'there', '||period||', 'quick', '||comma||', 'quick', '||comma||', 'quick', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'it', '||period||', 'i', 'can', 'take', 'this', 'anymore', '||period||', '||return||', '||return||', '||leftparen||', 'she', 'turns', 'the', 'radio', 'on', 'loud', '||leftparen||', 'foghat:', 'slow', 'ride', '||rightparen||', 'and', '||quotemark||', 'dances', '||quotemark||', 'few', 'little', 'kicks', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'male', 'mammal', '||period||', 'approximately', '30', 'to', '60', 'years', 'of', 'age', '||period||', 'weight', '||period||', '||period||', '||period||', 'uh', 'indeterminate', '||period||', 'ok', '||comma||', 'mr', '||period||', 'kruger', '||comma||', 'we', 'are', 'gonna', 'take', 'a', 'photo', 'now', 'for', 'the', 'records', '||period||', 'so', 'if', "you'll", 'stand', 'up', 'please', 'and', 'give', 'me', 'a', 'big', 'smile', '||comma||', 'oh', 'no', 'no', 'no', '||comma||', 'not', 'that', 'big', '||period||', 'yeah', '||comma||', "that's", 'nice', '||comma||', 'yes', 'okay', '||period||', 'yes', '||comma||', "let's", 'have', 'a', 'looksee', '||period||', '||period||', '||period||', 'ok', '||comma||', 'so', 'eh', '||comma||', 'fiber', 'from', 'shirt', 'on', 'the', 'left', 'shoulder', '||period||', "i'm", 'gonna', 'have', 'to', 'keep', 'my', 'on', 'that', '||period||', '||return||', '||return||', 'kruger:', 'how', 'long', 'have', 'you', 'been', 'doing', 'this', 'dr', '||period||', 'van', 'nostrand', '||questionmark||', '||return||', '||return||', 'kramer:', 'uuh', '||comma||', 'long', 'long', 'time', '||period||', 'yes', '||comma||', "i've", 'seen', 'moles', 'so', 'big', 'they', 'have', 'their', 'own', 'moles', '||period||', 'freckles', 'that', 'cover', 'two', 'men', '||period||', '||return||', '||return||', 'kruger:', 'so', '||comma||', 'how', 'am', 'i', 'looking', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'so', 'far', '||comma||', 'so', 'good', '||period||', '||period||', '||period||', '||leftparen||', 'looks', 'at', 'mr', '||period||', "kruger's", 'shoulder', '||rightparen||', 'yeuye', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'i', 'really', 'owe', 'you', 'one', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'we', 'got', 'a', 'problem', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "he's", 'got', 'a', 'mole', 'on', 'his', 'shoulder', '||period||', 'very', 'suspicious', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'tell', 'him', "you're", 'concerned', 'about', 'it', 'and', 'he', 'should', 'see', 'someone', 'else', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'why', 'would', 'i', '||comma||', 'a', 'juilliard', 'trained', 'dermatologist', '||comma||', 'send', 'him', 'to', 'another', 'doctor', '||questionmark||', '||return||', '||return||', 'george:', 'because', '||comma||', "you're", 'not', 'a', 'dermatologist', '||period||', '||return||', '||return||', 'kramer:', 'he', 'thinks', 'i', 'am', '||period||', "i'm", 'not', 'gonna', 'betray', 'that', 'trust', '||period||', "here's", 'what', 'i', 'wanna', 'do', '||semicolon||', 'i', 'think', 'i', 'can', 'get', 'a', 'section', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'whoa', '||comma||', 'whoa', '||comma||', 'a', 'section', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'if', 'i', 'could', 'crab', 'my', 'slicer', 'and', "he'd", 'hold', 'still', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "you're", 'not', 'taking', 'a', 'deli', 'slicer', 'to', 'my', 'boss', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', "it'll", 'be', 'operative', 'thing', '||comma||', 'he', 'would', 'barely', 'feel', 'it', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'absolutely', 'not', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'my', 'medical', 'opinion', '||comma||', 'that', "you're", 'making', 'a', 'big', 'mistake', '||period||', 'and', "it's", 'going', 'in', 'my', 'chart', '||period||', '||return||', '||return||', '[elaine', 'is', 'on', 'the', 'phone', 'and', 'the', 'radio', 'plays', 'music', 'very', 'loud', '||leftparen||', 'iron', 'butterfly:', 'in', '||dash||', 'a', '||dash||', 'gadda', '||dash||', 'da', '||dash||', 'vida', '||rightparen||', ']', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'hello', 'is', 'this', 'allied', 'lock', 'smith', '||questionmark||', '||exclammark||', 'oh', '||comma||', 'finally', '||comma||', 'listen', 'i', 'need', 'someone', 'to', 'come', 'over', 'here', 'right', 'away', '||exclammark||', '||return||', '||return||', 'neighbor:', 'turn', 'it', 'off', '||exclammark||', 'turn', 'it', 'off', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'getting', 'a', 'lock', 'smith', '||comma||', 'alright', '||questionmark||', '||exclammark||', 'relax', '||exclammark||', '||return||', '||return||', 'neighbor:', 'alright', '||comma||', "that's", 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'the', 'address', 'is', '78th', 'west', '||period||', '||period||', '||period||', '||return||', '||return||', 'neighbor:', 'oh', '||comma||', 'oh', 'mama', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'kramer', 'pulled', 'it', 'off', '||questionmark||', '||return||', '||return||', 'george:', 'yep', '||comma||', 'and', 'the', 'photo', 'was', 'all', 'fixed', 'and', 'back', 'on', 'his', 'desk', '||comma||', 'no', 'thanks', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'that', 'woman', 'had', 'it', 'coming', 'to', 'her', '||period||', 'look', 'at', 'my', 'neck', '||comma||', 'it', 'looks', 'like', 'i', 'had', 'a', 'beard', 'of', 'bees', '||exclammark||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'see', 'someone', 'about', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', "i've", 'called', 'everyone', '||period||', 'you', 'know', 'how', 'hard', 'it', 'is', 'to', 'get', 'a', 'dermatologist', 'in', 'this', 'town', '||questionmark||', '||leftparen||', 'kramer', 'comes', 'in', '||rightparen||', 'a', 'real', 'dermatologist', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'points', 'to', 'a', 'page', 'on', 'the', 'book', '||rightparen||', 'squamous', 'cell', 'carcinoma', '||period||', '||return||', '||return||', 'george:', "you're", 'not', 'a', 'doctor', '||period||', 'you', "shouldn't", 'even', 'have', 'books', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', "that's", 'what', 'he', 'has', 'and', 'i', 'have', 'to', 'give', 'him', 'a', 'call', '||period||', 'now', 'we', 'gotta', 'came', 'clean', '||period||', '||return||', '||return||', 'george:', 'you', "can't", 'tell', 'him', 'the', 'truth', '||comma||', "you're", 'gonna', 'blow', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'want', 'this', 'on', 'my', 'conscience', '||period||', '||return||', '||return||', 'george:', "i'll", 'get', 'him', 'to', 'see', 'a', 'real', 'doctor', '||period||', 'you', 'just', 'stay', 'away', 'from', 'this', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'alright', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', 'wonder', 'if', 'they', 'have', 'a', 'picture', 'of', 'my', 'rash', 'in', 'here', '||period||', '||return||', '||return||', 'kramer:', "they've", 'got', 'everything', 'there', '||comma||', 'jerry', '||period||', 'i', 'underlined', 'the', 'best', 'parts', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'this', 'looks', 'like', 'the', 'thing', 'i', 'have', '||period||', 'caused', 'by', 'exposure', 'to', 'benzene', '||comma||', 'a', 'common', 'ingredient', 'in', 'metal', 'cleaners', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'weird', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'cleaning', 'my', 'slicer', '||period||', '||return||', '||return||', 'jerry:', "that's", 'my', 'hand', 'towel', '||exclammark||', 'i', 'use', 'that', 'on', 'my', 'face', '||comma||', 'hands', 'and', 'chest', '||exclammark||', "that's", 'where', 'the', 'hives', 'are', 'coming', 'from', '||exclammark||', "it's", 'not', 'from', 'dr', '||period||', 'sitarides', '||comma||', "it's", 'from', 'dr', '||period||', 'van', 'nostrand', '||exclammark||', '||return||', '||return||', 'kramer:', 'so', '||comma||', 'somehow', 'the', 'bronzo', '||leftparen||', '||questionmark||', '||rightparen||', 'is', 'reacting', 'to', 'the', 'poison', "she's", 'giving', 'you', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'get', 'out', '||period||', 'and', 'take', 'your', 'bronzo', 'with', 'you', '||leftparen||', 'throws', 'the', 'bottle', 'to', 'kramer', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'ohh', '||comma||', "that's", 'toxic', '||period||', '||leftparen||', 'jerry', 'throws', 'the', 'towel', 'over', "kramer's", 'head', '||period||', '||rightparen||', 'ououou', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kruger:', 'george', '||comma||', 'come', 'in', '||period||', "i'm", 'just', 'going', 'over', 'our', 'annual', 'report', '||period||', '||period||', '||period||', 'boy', 'did', 'we', 'take', 'it', 'on', 'the', 'chin', 'last', 'year', '||period||', '||return||', '||return||', 'george:', 'eh', '||comma||', 'listen', 'mr', '||period||', 'kruger', '||comma||', 'i', 'got', 'a', 'message', 'from', 'dr', '||period||', 'van', 'nostrand', 'and', 'he', 'says', 'it', 'might', 'be', 'wise', 'to', 'you', 'to', 'see', 'another', 'doctor', 'about', 'that', 'mole', '||period||', '||return||', '||return||', 'kruger:', "i'm", 'not', 'too', 'worried', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'he', 'said', 'it', 'could', 'be', 'cancer', '||comma||', 'maybe', 'you', 'should', 'get', 'it', 'checked', 'out', '||period||', '||return||', '||return||', 'kruger:', 'george', '||comma||', 'take', 'a', 'look', 'at', 'this', 'photo', '||period||', 'this', 'is', 'taken', '10', 'years', 'ago', '||period||', 'that', 'mole', 'looks', 'exactly', 'as', 'it', 'does', 'today', '||period||', 'so', '||comma||', "there's", 'no', 'cause', 'for', 'concern', '||comma||', 'eh', '||questionmark||', '||return||', '||return||', 'george:', 'whatever', '||period||', '||return||', '||return||', 'kruger:', 'actually', '||comma||', 'funny', 'thing', 'about', 'this', 'photo', '||period||', 'we', 'were', 'at', 'the', 'beach', 'and', 'there', 'was', 'this', 'dumb', 'looking', 'guy', 'near', 'by', '||period||', 'when', 'he', 'went', 'in', 'for', 'a', 'swim', '||comma||', 'my', 'sons', 'and', 'i', 'took', 'all', 'his', 'stuff', 'and', 'threw', 'it', 'in', 'the', 'ocean', '||exclammark||', 'what', 'a', 'pear', 'shaped', 'loser', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'that', 'pear', 'shaped', 'loser', 'was', 'me', '||exclammark||', 'and', 'i', 'was', 'in', 'that', 'photo', '||comma||', 'until', 'i', 'broke', 'in', 'here', '||comma||', 'stole', 'the', 'photograph', 'and', 'airbrushed', 'myself', 'out', 'of', 'there', '||exclammark||', '||return||', '||return||', 'kruger:', 'well', '||comma||', "i'll", 'be', '||period||', '||period||', '||period||', 'you', 'have', 'lost', 'a', 'lot', 'of', 'hair', '||period||', '||return||', '||return||', 'george:', "that's", 'what', 'they', 'tell', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'do', 'you', 'want', 'more', 'pastrami', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'what', 'was', 'that', 'last', 'thing', 'you', 'gave', 'me', '||questionmark||', 'that', 'was', 'pretty', 'good', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'it', 'was', 'olive', 'loaf', '||period||', 'you', 'want', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'kruger', "didn't", 'fire', 'you', 'after', 'all', 'you', 'did', '||period||', '||return||', '||return||', 'george:', 'he', 'said', 'he', "didn't", 'care', '||period||', 'oh', '||comma||', 'god', 'i', 'love', 'that', 'place', '||period||', 'hey', '||comma||', 'have', 'you', 'seen', 'other', 'dermatologist', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'finally', 'got', 'to', 'see', 'dr', '||period||', 'kazarian', '||period||', 'he', 'said', 'it', 'was', 'really', 'bad', '||period||', '||return||', '||return||', 'george:', 'what', 'did', 'he', 'give', 'you', 'for', 'it', '||period||', '||return||', '||return||', 'jerry:', 'aloe', '||period||', 'so', "where's", 'that', 'lock', 'smith', '||questionmark||', '||return||', '||return||', 'george:', 'have', 'to', 'give', 'him', 'time', 'on', 'this', 'hour', '||period||', '||return||', '||return||', 'elaine:', 'can', 'i', 'have', 'a', 'zip', '||questionmark||', '||leftparen||', 'sticks', 'a', 'straw', 'out', 'from', 'keyhole', '||period||', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||comma||', 'coming', 'up', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'elaine', '||comma||', 'are', 'you', 'going', 'to', 'sleep', 'with', 'me', 'or', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'aggravated', '||rightparen||', 'george', '||comma||', 'i', 'just', 'got', 'off', 'a', 'twenty', '||dash||', 'three', 'hour', 'plane', 'ride', '||period||', "i'm", 'too', 'tired', 'to', 'even', 'vomit', 'at', 'the', 'thought', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'angered', '||rightparen||', 'fine', '||period||', "i'll", 'ask', 'you', 'again', 'when', "you're", 'rested', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', "i'm", 'sure', "she'll", 'come', 'around', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'hope', 'so', '||period||', 'for', 'your', 'sake', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'i', 'said', 'i', 'was', 'sorry', '||period||', '||return||', '||return||', 'george:', 'you', 'can', 'stuff', 'you', 'sorries', 'in', 'a', 'sack', '||comma||', 'mister', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nauseated', 'at', 'the', 'saying', '||rightparen||', 'would', 'you', 'please', 'stop', 'saying', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'confused', '||rightparen||', 'what', 'is', 'up', 'with', 'you', 'two', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'want', 'to', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'so', 'how', 'was', 'the', 'big', 'trip', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', 'talk', 'about', 'it', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'observing', "elaine's", 'bandaged', 'nose', '||rightparen||', 'well', '||comma||', 'what', 'happened', 'to', 'your', 'nose', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'want', 'to', 'talk', 'ab', '||dash||', 'ow', '||exclammark||', '||dash||', 't', 'it', '||exclammark||', '||leftparen||', 'she', 'winces', 'under', 'the', 'pain', 'from', 'her', 'nose', 'on', 'the', 'word', "'about'", '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'gotta', 'give', 'me', 'something', '||exclammark||', 'come', 'on', '||comma||', 'how', 'was', 'the', 'wedding', '||questionmark||', 'was', 'the', 'bride', 'radiant', '||questionmark||', '||return||', '||return||', 'elaine:', 'she', '||period||', '||period||', 'was', '||period||', '||return||', '||return||', 'jerry:', "'till", 'she', 'found', 'out', 'elaine', 'slept', 'with', 'the', 'groom', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interested', '||rightparen||', 'ooohh', '||period||', '||period||', '||period||', 'that', 'sounds', 'juicy', '||period||', 'listen', '||comma||', 'i', 'gotta', 'go', 'to', 'the', 'bathroom', '||comma||', 'but', 'i', 'want', 'to', 'hear', 'all', 'about', 'it', '||period||', '||leftparen||', 'gets', 'up', 'and', 'heads', 'for', 'the', 'bathroom', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'while', 'skimming', 'a', "monk's", 'menu', '||rightparen||', 'you', 'know', '||comma||', 'i', "didn't", 'go', 'to', 'the', 'bathroom', 'the', 'entire', 'time', 'we', 'were', 'in', 'india', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'we', 'went', 'all', 'the', 'way', 'to', 'india', 'for', 'a', 'wedding', '||exclammark||', '||return||', '||return||', '[setting:', 'india]', '||return||', '||return||', 'notice:', '||quotemark||', 'india', '||dash||', 'one', 'day', 'earlier', '||quotemark||', '||return||', '||return||', 'sue', 'ellen:', "that's", 'it', '||exclammark||', 'the', "wedding's", 'off', '||period||', '||return||', '||return||', 'pinter:', 'what', '||questionmark||', 'but', '||comma||', 'sue', 'ellen', '||dash||', '||return||', '||return||', 'sue', 'ellen:', '||leftparen||', 'cutting', 'him', 'off', '||period||', 'to', 'elaine', '||rightparen||', 'elaine', '||comma||', 'you', 'were', 'my', 'maid', 'of', 'honor', 'and', 'you', 'slept', 'with', 'my', 'pinter', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||exclammark||', 'it', 'was', 'years', 'ago', '||dash||', 'before', 'you', 'met', 'him', '||period||', 'and', '||comma||', 'and', 'i', '||dash||', 'i', 'got', 'to', 'tell', 'you', '||period||', '||period||', 'it', 'was', 'very', 'mechanical', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'i', 'have', 'never', 'been', 'so', 'humiliated', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', 'idiots', '||exclammark||', 'this', 'is', 'all', 'your', 'fault', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'while', 'pointing', 'at', 'jerry', '||rightparen||', 'not', 'me', '||exclammark||', 'him', '||exclammark||', 'his', 'fault', '||exclammark||', 'he', 'betrayed', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'george', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', 'oh', 'you', 'can', 'stuff', 'your', 'sorries', 'in', 'a', 'sack', '||comma||', 'mister', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'i', "don't", 'know', 'what', 'that', 'means', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'his', 'girlfriend', '||rightparen||', 'nina', '||comma||', 'you', 'have', 'to', 'decide', 'right', 'now', '||period||', 'jerry', 'or', 'me', '||questionmark||', '||return||', '||return||', 'nina:', '||leftparen||', 'casually', '||rightparen||', 'alright', '||period||', '||period||', 'neither', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||exclammark||', 'well', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'nina:', 'a', 'free', 'trip', 'to', 'india', '||period||', 'and', 'by', 'the', 'way', '||comma||', 'you', 'can', 'take', 'off', 'those', 'boots', '||period||', 'everyone', 'knows', "you're", "five'", 'six', '||period||', '||return||', '||return||', 'george:', "five'", 'eight', '||exclammark||', "five'", 'seven', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'sue', 'ellen', '||rightparen||', 'see', '||questionmark||', 'see', 'the', 'way', 'they', 'are', '||questionmark||', '||exclammark||', "we're", '||dash||', "we're", 'still', 'best', 'friends', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', 'no', '||period||', '||leftparen||', 'grabbing', 'at', 'the', 'stud', 'in', "elaine's", 'nose', '||rightparen||', 'and', 'take', 'that', 'stupid', 'thing', 'out', 'of', 'your', 'nose', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'got', 'to', 'hurt', '||comma||', 'i', "don't", 'care', 'where', "you're", 'from', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'whispering', 'to', 'jerry', '||rightparen||', 'what', 'time', 'is', 'our', 'flight', 'back', '||questionmark||', 'i', 'got', 'to', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', '[setting:', 'a', 'building', 'in', 'india', '||dash||', 'the', 'wedding', 'ceremony', 'is', 'about', 'to', 'start]', '||return||', '||return||', 'notice:', '||quotemark||', 'fifteen', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whispering', 'to', 'jerry', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'what', 'happened', 'last', 'night', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'you', 'were', 'pretty', 'loaded', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gesturing', 'to', 'her', 'nose', 'stud', '||rightparen||', 'i', 'know', '||period||', 'i', 'woke', 'up', 'with', 'this', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'hello', '||comma||', 'tetanus', '||period||', '||return||', '||return||', 'nina:', 'george', '||comma||', "i've", 'used', 'the', 'bathroom', '||period||', "it's", 'fine', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'struggling', '||rightparen||', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'can', 'walk', 'it', 'off', '||period||', "it's", 'a', 'hundred', 'and', 'twenty', 'degrees', 'in', 'here', '||period||', '||period||', "i'll", 'sweat', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'seeing', 'george', '||comma||', 'she', 'walks', 'over', 'to', 'greet', 'him', '||rightparen||', 'hey', '||period||', '||leftparen||', 'looking', 'at', 'his', 'shoes', '||rightparen||', 'are', 'those', 'timberlands', '||period||', '||period||', '||period||', 'painted', 'black', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'at', 'her', 'nose', '||rightparen||', 'is', 'your', 'nose', 'pierced', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'embarrassed', '||rightparen||', 'i', 'should', '||period||', '||period||', '||leftparen||', 'walks', 'toward', 'the', 'bride', 'and', 'groom', '||rightparen||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||leftparen||', 'points', 'to', 'two', 'open', 'seats', 'in', 'front', 'of', "jerry's", '||period||', 'to', 'nina', '||rightparen||', 'sit', 'down', 'there', '||period||', '||leftparen||', 'sees', 'jerry', 'in', 'the', 'crowd', '||rightparen||', 'hello', '||comma||', 'jerry', '||period||', '||leftparen||', 'obviously', 'angered', 'at', 'jerry', '||rightparen||', 'i', 'believe', 'you', 'know', 'nina', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'george', 'sits', 'down', '||rightparen||', 'george', '||comma||', 'we', 'need', 'to', 'talk', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'to', 'keep', 'his', 'voice', 'down', '||rightparen||', 'i', 'think', "you've", 'done', 'a', 'lot', 'more', 'than', 'talk', '||exclammark||', 'you', 'betrayed', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'i', 'admit', 'it', '||period||', 'i', 'slept', 'with', 'nina', '||comma||', 'but', "that's", 'all', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'outraged', '||rightparen||', '||quotemark||', "that's", 'all', '||quotemark||', '||questionmark||', '||exclammark||', "that's", 'everything', '||exclammark||', 'i', "don't", 'know', 'what', 'all', 'the', 'rest', 'of', 'it', 'is', 'for', 'anyway', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', "i'm", 'really', 'sorry', '||period||', '||return||', '||return||', 'george:', 'you', 'can', 'stuff', 'your', 'sorries', 'in', 'a', 'sack', '||comma||', 'mister', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', "where'd", 'you', 'get', 'that', 'one', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'an', 'expression', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'from', 'the', 'front', 'of', 'the', 'room', '||comma||', 'she', 'can', 'hear', 'george', 'and', "jerry's", 'heated', 'discussion', '||rightparen||', 'hey', '||exclammark||', 'shhhhh', '||exclammark||', '||leftparen||', 'crosses', 'herself', '||comma||', 'then', 'shakes', 'her', 'head', '||dash||', 'apologizing', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'trying', 'to', 'whisper', 'to', 'jerry', '||rightparen||', 'look', '||comma||', 'we', 'are', 'gonna', 'settle', 'this', 'right', 'now', '||exclammark||', 'i', 'demand', 'reparations', '||exclammark||', 'i', 'should', 'get', 'to', 'sleep', 'with', 'elaine', '||period||', "that's", 'the', 'only', 'way', 'to', 'punish', 'you', '||exclammark||', '||return||', '||return||', 'jerry:', 'that', "doesn't", 'punish', 'me', '||period||', 'it', 'punishes', 'elaine', '||exclammark||', 'and', 'cruelly', '||comma||', 'i', 'might', 'add', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'losing', 'it', '||rightparen||', 'funny', 'guy', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'monkeys', '||exclammark||', 'knock', 'it', 'off', '||period||', 'my', 'best', 'friend', 'is', 'trying', 'to', 'get', 'married', 'up', 'here', '||exclammark||', '||return||', '||return||', 'george:', 'elaine', '||comma||', 'you', 'have', 'to', 'sleep', 'with', 'me', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'definite', '||rightparen||', "i'm", 'not', 'gonna', 'sleep', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'reparations', '||exclammark||', '||return||', '||return||', 'elaine:', 'would', 'you', 'grow', 'up', '||comma||', 'george', '||questionmark||', '||exclammark||', 'what', 'is', 'the', 'difference', '||questionmark||', 'nina', 'slept', 'with', 'him', '||leftparen||', 'points', 'to', 'jerry', '||rightparen||', '||comma||', 'he', 'slept', 'with', 'me', '||comma||', 'i', 'slept', 'with', 'pinter', '||period||', 'nobody', 'cares', '||exclammark||', "it's", 'all', 'ancient', 'history', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'loud', '||comma||', 'so', 'everyone', 'at', 'the', 'wedding', 'can', 'hear', '||rightparen||', 'you', 'slept', 'with', 'the', 'groom', '||questionmark||', '||exclammark||', '||return||', '||return||', '[setting:', 'new', 'york', 'street]', '||return||', '||return||', 'notice:', 'nan', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'thank', 'you', '||comma||', 'fdr', '||exclammark||', 'all', 'right', '||comma||', 'now', 'were', 'even', '||period||', '||return||', '||return||', 'fdr:', 'i', '||dash||', 'i', '||dash||', 'i', 'stuck', 'a', 'rock', 'in', 'there', 'too', '||period||', '||return||', '||return||', 'fdr:', 'all', 'right', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'hour', 'earlier', '||quotemark||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'fdr', '||period||', 'this', 'wish', 'is', 'for', 'all', 'the', 'marbles', '||period||', 'you', 'win', '||comma||', 'you', 'get', 'your', 'wish', '||dash||', 'i', 'drop', 'dead', '||period||', 'i', 'win', '||comma||', 'i', "don't", 'drop', 'dead', '||comma||', 'and', 'i', 'get', 'one', '||dash||', 'hundred', 'percent', 'anti', '||dash||', 'drop', '||dash||', 'dead', 'protection', '||dash||', '||dash||', 'forever', '||period||', '||return||', '||return||', 'fdr:', 'alright', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'man', '||exclammark||', 'all', 'right', '||comma||', 'come', 'on', '||period||', "there's", 'got', 'to', 'be', 'something', "that'll", 'change', 'your', 'mind', '||comma||', 'fdr', '||period||', 'something', '||period||', '||period||', '||quotemark||', '||leftparen||', 'fdr', 'lifts', 'up', 'a', 'cooler', '||comma||', 'and', 'puts', 'it', 'on', 'the', 'table', '||rightparen||', 'what', '||comma||', 'you', 'want', 'my', 'kidney', '||questionmark||', '||leftparen||', 'fdr', 'is', 'smiling', 'wickedly', 'as', 'he', 'pulls', 'a', 'snowball', 'out', 'of', 'the', 'cooler', '||rightparen||', 'mama', '||exclammark||', '||period||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'room', 'in', 'india]', '||return||', '||return||', 'notice:', '||quotemark||', 'the', 'night', 'before', '||comma||', 'back', 'in', 'india', '||quotemark||', '||return||', '||return||', 'elaine:', 'george', 'knows', 'that', 'you', 'slept', 'with', 'nina', '||period||', "that's", 'why', 'he', 'was', 'acting', 'so', 'weird', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'he', 'find', 'out', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'schnapped', 'me', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "you're", 'not', 'supposed', 'to', 'drink', 'while', "you're", 'keeping', 'a', 'secret', '||exclammark||', '||leftparen||', 'elaine', 'laughs', '||rightparen||', 'is', 'there', 'anything', 'else', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "can't", 'tell', 'you', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'handing', 'her', 'a', 'small', 'bottle', '||rightparen||', 'here', '||comma||', 'drink', 'this', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||leftparen||', 'takes', 'a', 'drink', 'and', 'wave', 'jerry', 'to', 'lean', 'in', '||rightparen||', 'i', 'slept', 'with', 'the', 'groom', '||period||', '||return||', '||return||', 'jerry:', 'pinter', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'used', 'to', 'be', 'called', 'peter', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'making', 'nothing', 'of', 'it', '||rightparen||', 'so', '||questionmark||', 'who', 'cares', 'about', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'sue', 'ellen', '||exclammark||', 'if', 'she', 'knew', '||comma||', "she'd", 'call', 'off', 'the', 'whole', 'wedding', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "nobody's", 'calling', 'off', 'any', 'weddings', '||period||', 'alright', '||comma||', "it's", 'time', 'to', 'go', '||period||', 'come', 'on', '||period||', '||period||', 'up', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'know', 'what', "'jerry'", 'is', 'in', 'indian', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'carrying', 'her', 'out', '||comma||', 'piggy', '||dash||', 'back', 'style', '||rightparen||', 'no', '||comma||', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'between', 'laughs', '||rightparen||', 'jugdish', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'jugdish', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'if', 'i', 'got', 'my', '||comma||', 'nose', 'pierced', '||questionmark||', 'that', 'would', 'be', 'pretty', 'freaky', '||period||', '||period||', 'oooohhhhaaa', '||exclammark||', '||leftparen||', 'sliding', 'off', 'jerry', 'onto', 'the', 'hallway', 'floor', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'get', 'rid', 'of', 'her', '||rightparen||', 'yes', '||comma||', 'i', 'think', "it's", 'a', 'fine', 'idea', '||period||', 'well', '||comma||', 'good', 'night', '||period||', '||return||', '||return||', 'elaine:', "g'night", '||comma||', 'jugdish', '||period||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'room', '||comma||', 'india]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'hour', 'earlier', '||quotemark||', '||return||', '||return||', 'jerry:', 'bless', 'you', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||period||', '||period||', '||period||', 'aah', '||comma||', 'hm', 'mm', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'room', '||comma||', 'india]', '||return||', '||return||', 'notice:', '||quotemark||', 'three', 'seconds', 'earlier', '||quotemark||', '||return||', '||return||', '[setting:', 'new', 'york', 'park]', '||return||', '||return||', 'notice:', '||quotemark||', 'two', 'hours', 'earlier', '||comma||', 'new', 'york', '||quotemark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'hello', 'fdr', '||period||', 'yeah', '||comma||', 'ill', 'have', 'a', 'hot', 'one', '||comma||', '||leftparen||', 'pulls', 'out', 'some', 'cash', 'and', 'slaps', 'down', 'a', 'bill', 'on', 'the', 'stand', '||rightparen||', 'everything', 'on', 'it', '||period||', '||return||', '||return||', 'fdr:', 'these', 'thingsll', 'kill', 'ya', '||period||', '||period||', '||period||', 'but', 'so', 'what', '||period||', '||period||', '||period||', '||leftparen||', 'squirts', 'mustard', 'on', 'the', 'hot', 'dog', '||rightparen||', 'youre', 'already', 'gonna', 'drop', 'dead', '||leftparen||', 'grins', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'guess', 'what', '||comma||', 'fdr', '||questionmark||', 'i', 'made', 'a', 'wish', 'on', 'a', 'shooting', 'star', 'last', 'night', '||comma||', 'and', 'i', 'wished', '||comma||', 'against', 'your', 'wish', '||period||', '||return||', '||return||', 'fdr:', "that's", 'funny', '||period||', 'as', 'it', 'happens', '||comma||', 'i', 'saw', 'the', 'same', 'shooting', 'star', 'and', 'double', '||dash||', 'wished', 'you', '||comma||', 'to', 'drop', 'dead', '||period||', '||leftparen||', 'clicks', 'out', 'some', 'coins', 'from', 'his', 'changer', 'and', 'hands', 'them', 'to', 'kramer', '||rightparen||', "here's", 'your', 'change', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', "i'm", 'triple', '||dash||', 'wishing', '||exclammark||', 'yep', '||exclammark||', '||return||', '||return||', 'fdr:', '||leftparen||', 'throwing', 'four', 'coins', 'into', 'the', 'fountain', '||rightparen||', 'then', "i'm", 'quadruple', '||dash||', 'wishing', '||exclammark||', '||return||', '||return||', 'kramer:', 'alright', '||period||', '||period||', 'how', 'do', 'you', 'like', 'this', '||questionmark||', '||leftparen||', 'pulls', 'out', 'one', 'of', 'his', 'eyebrows', '||rightparen||', 'ya', '||exclammark||', '||return||', '||return||', 'fdr:', 'i', 'like', 'it', 'a', 'lot', '||period||', '||leftparen||', 'pulls', 'out', 'one', 'of', 'his', 'eyebrows', '||rightparen||', 'ow', '||exclammark||', '||leftparen||', 'blows', 'it', 'away', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'tears', 'out', 'another', 'eyelash', '||rightparen||', 'ah', '||exclammark||', '||leftparen||', 'blows', 'it', 'away', '||rightparen||', '||return||', '||return||', 'fdr:', '||leftparen||', 'doing', 'the', 'same', '||rightparen||', 'oh', '||exclammark||', '||leftparen||', 'blows', 'it', 'away', '||rightparen||', '||return||', '||return||', '[setting:', 'indian', 'airport]', '||return||', '||return||', 'notice:', '||quotemark||', 'three', 'hours', 'earlier', '||dash||', 'india', '||quotemark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||comma||', "it's", 'so', 'hot', '||exclammark||', '||leftparen||', 'sniffing', '||rightparen||', 'what', 'is', 'that', 'smell', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joking', 'around', '||rightparen||', 'i', 'think', "it's", 'the', 'stench', 'of', 'death', '||period||', '||return||', '||return||', 'nina:', 'george', '||comma||', "you've", 'been', 'wearing', 'those', 'boots', 'since', 'i', 'met', 'you', '||period||', "you're", 'not', 'gonna', 'wear', 'them', 'to', 'the', 'wedding', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||leftparen||', 'snorts', '||dash||', 'laughing', 'nervously', '||rightparen||', '||period||', '||period||', '||period||', "i'm", 'gonna', 'wear', 'black', 'shoes', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sees', 'her', 'enemy', '||comma||', 'sue', 'ellen', '||comma||', 'at', 'the', 'airport', '||rightparen||', 'oh', 'boy', '||period||', "there's", 'sue', 'ellen', '||period||', 'she', "didn't", 'want', 'me', 'at', 'this', 'wedding', '||comma||', 'but', 'here', 'i', 'am', 'with', 'a', 'bunch', 'of', 'my', 'idiot', 'friends', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'giddy', '||rightparen||', 'this', 'is', 'gonna', 'be', 'great', '||exclammark||', '||return||', '||return||', 'sue', 'ellen:', '||leftparen||', 'walking', 'up', 'to', 'the', 'group', '||rightparen||', 'elaine', '||questionmark||', 'oh', '||exclammark||', 'oh', '||comma||', 'i', 'am', 'so', 'happy', 'to', 'see', 'you', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', 'by', 'her', 'reaction', '||rightparen||', 'you', 'are', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', 'well', '||comma||', 'of', 'course', '||exclammark||', 'no', 'one', 'else', 'was', 'even', 'willing', 'to', 'come', 'to', 'india', '||period||', 'i', 'mean', '||comma||', 'not', 'even', "pinter's", 'parents', '||dash||', 'and', "they're", 'indian', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', 'sue', 'ellen', '||period||', 'you', "don't", 'wear', 'a', 'bra', '||comma||', "you're", 'tall', '||period||', '||period||', '||period||', 'we', 'hate', 'each', 'other', '||exclammark||', '||return||', '||return||', 'sue', 'ellen:', 'elaine', '||comma||', 'i', 'know', '||period||', 'i', 'know', "we've", 'had', 'our', 'problems', '||comma||', 'but', '||period||', '||period||', 'i', 'want', 'you', 'to', 'be', 'my', 'maid', 'of', 'honor', '||dash||', 'and', 'my', 'best', 'friend', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'toying', 'with', 'the', 'idea', '||rightparen||', 'huh', '||period||', '||period||', 'alright', '||period||', 'i', 'guess', '||period||', '||return||', '||return||', 'sue', 'ellen:', 'uh', '||comma||', 'this', 'is', 'my', 'fianc', '||comma||', 'pinter', '||period||', '||leftparen||', 'to', 'pinter', '||rightparen||', 'say', 'hello', '||period||', '||return||', '||return||', 'pinter:', '||leftparen||', 'walking', 'up', 'to', 'them', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'recognizing', 'him', '||rightparen||', 'peter', '||questionmark||', '||return||', '||return||', 'sue', 'ellen:', 'uh', '||comma||', 'no', '||period||', "it's", 'pinter', '||period||', 'does', 'anyone', 'want', 'to', 'use', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'leading', 'nina', 'out', 'the', 'airport', '||rightparen||', 'oh', '||comma||', 'no', '||period||', 'no', '||period||', "we're", 'good', '||period||', "let's", 'get', "goin'", '||period||', 'alright', '||period||', '||leftparen||', 'almost', 'bumps', 'into', 'jerry', '||rightparen||', 'watch', 'it', '||comma||', 'funny', 'man', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'have', 'you', 'noticed', 'george', 'was', 'acting', 'strange', 'the', 'whole', 'flight', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'acting', 'equally', 'strange', '||rightparen||', 'no', '||period||', 'what', '||questionmark||', 'like', 'what', '||questionmark||', 'what', '||questionmark||', 'strange', '||period||', '||period||', 'no', '||period||', 'i', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pulls', 'a', 'small', 'bottle', 'out', 'of', 'his', 'pocket', '||rightparen||', 'uh', '||dash||', 'huh', '||period||', 'hey', '||comma||', 'look', 'what', 'they', 'had', 'on', 'the', 'plane', '||period||', 'schnapps', '||period||', '||return||', '||return||', 'elaine:', 'ooohh', '||period||', '||return||', '||return||', '[setting:', "jerry/kramer's", 'apartment', 'building]', '||return||', '||return||', 'notice:', '||quotemark||', 'the', 'night', 'before', '||comma||', 'new', 'york', '||quotemark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||period||', '||period||', 'come', 'on', '||period||', 'yes', '||exclammark||', '||leftparen||', 'sees', 'a', 'falling', 'star', '||rightparen||', "there's", 'one', '||exclammark||', '||leftparen||', 'yelling', 'out', '||rightparen||', 'i', 'wish', 'i', "don't", 'drop', 'dead', '||exclammark||', '||exclammark||', '||return||', '||return||', 'man:', '||leftparen||', 'off', '||dash||', 'screen', '||rightparen||', 'hey', '||comma||', 'shut', 'up', 'up', 'there', '||exclammark||', '||return||', '||return||', 'kramer:', 'you', 'shut', 'up', '||exclammark||', '||return||', '||return||', 'man:', 'aw', '||comma||', 'drop', 'dead', '||exclammark||', '||return||', '||return||', '[setting:', 'airplane]', '||return||', '||return||', 'notice:', '||quotemark||', 'five', 'hours', 'earlier', '||dash||', 'somewhere', 'between', 'new', 'york', '&', 'india', '||quotemark||', '||return||', '||return||', 'george:', 'hello', '||comma||', 'friend', '||period||', 'enjoying', 'the', 'flight', '||questionmark||', '||return||', '||return||', 'jerry:', 'coach', 'to', 'india', '||dash||', 'the', 'only', 'way', 'to', 'go', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'heavily', 'sarcastic', '||period||', "he's", 'angered', 'at', 'jerry', '||rightparen||', 'good', 'one', '||period||', 'very', 'funny', '||period||', "you're", 'very', 'funny', '||comma||', 'jerry', '||period||', "that's", 'what', 'i', 'always', 'tell', 'people', '||period||', '||leftparen||', 'yelling', 'out', '||rightparen||', 'jerry', "seinfeld's", 'a', 'funny', 'guy', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'all', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', "i'm", 'all', 'right', '||period||', "i'm", 'here', 'with', 'my', 'girl', '||comma||', 'nina', '||period||', 'and', 'what', 'better', 'way', 'to', 'pass', 'the', 'time', 'than', 'gabbing', 'with', 'my', 'best', 'friend', '||dash||', '||dash||', 'with', 'whom', 'there', 'are', 'no', 'secrets', '||period||', '||leftparen||', 'flashes', 'two', 'intertwined', 'fingers', '||rightparen||', 'like', 'this', '||period||', 'since', 'the', 'fourth', 'grade', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joking', 'around', '||rightparen||', 'hey', '||comma||', "didn't", 'i', 'beat', 'you', 'up', 'in', 'the', 'fourth', 'grade', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'yelling', 'out', 'to', 'the', 'whole', 'coach', '||rightparen||', 'funny', 'guy', '||exclammark||', '||leftparen||', 'points', 'to', 'jerry', '||rightparen||', 'right', 'here', '||exclammark||', '||return||', '||return||', 'nina:', 'by', 'the', 'way', '||comma||', 'you', 'never', 'said', 'anything', 'to', 'george', 'about', 'jerry', 'and', 'me', '||comma||', 'did', 'ya', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', 'please', '||period||', '||period||', "it's", 'in', 'the', 'vault', '||period||', '||return||', '||return||', 'george:', 'ho', '||comma||', 'ha', '||comma||', 'ho', '||exclammark||', 'jerry', "seinfeld's", 'a', 'funny', 'guy', '||exclammark||', '||return||', '||return||', '[setting:', 'the', 'airplane]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'hour', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'time', 'is', 'it', '||questionmark||', '||leftparen||', 'she', 'looks', 'up', 'and', 'asks', 'as', 'jerry', 'walks', 'in', 'the', 'aisle', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'just', 'asked', 'me', 'two', 'minutes', 'ago', '||period||', '||return||', '||return||', '[setting:', 'the', 'airplane]', '||return||', '||return||', 'notice:', '||quotemark||', 'two', 'minutes', 'ago', '||quotemark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'im', 'not', 'wearing', 'a', 'watch', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||leftparen||', 'quietly', '||rightparen||', '||period||', 'is', 'this', 'tooth', 'chipped', '||questionmark||', '||leftparen||', 'pointing', 'to', 'a', 'tooth', '||rightparen||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'howd', 'ya', 'do', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'have', 'no', 'idea', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'day', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', 'watch', 'this', '||period||', '||leftparen||', 'puts', 'the', 'bottle', 'of', 'schnapps', 'in', 'her', 'mouth', '||comma||', 'flips', 'her', 'head', 'up', '||comma||', 'drinking', 'it', '||comma||', 'then', 'puts', 'it', 'back', 'down', 'with', 'her', 'teeth', '||period||', 'she', 'is', 'effected', 'by', 'that', 'last', 'drink', '||rightparen||', 'oh', '||period||', '||period||', 'god', '||period||', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'jerry', 'and', 'nina', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'mm', 'mm', '||period||', '||period||', '||leftparen||', 'scoots', 'up', 'close', 'to', 'george', '||rightparen||', "i'm", 'not', 'gonna', 'tell', 'you', '||comma||', 'any', '||dash||', 'more', '||dash||', 'things', '||period||', '||leftparen||', 'points', 'at', 'george', '||rightparen||', '||return||', '||return||', 'george:', 'you', 'already', 'told', 'me', 'everything', '||period||', '||return||', '||return||', 'elaine:', 'okey', '||dash||', 'dokey', '||period||', '||return||', '||return||', '[setting:', "newman's", 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'thirty', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'kramer:', 'i', 'mean', '||comma||', 'we', 'had', 'a', 'deal', '||comma||', 'newman', '||period||', 'and', 'you', 'were', 'supposed', 'to', 'give', 'my', 'your', 'birthday', 'wish', '||period||', 'and', 'now', "you've", 'wasted', 'it', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'with', 'a', 'gorgeous', 'woman', 'sitting', 'on', 'his', 'lap', '||rightparen||', 'did', 'i', '||questionmark||', '||return||', '||return||', 'woman:', 'newman', '||comma||', "i'm", 'bored', '||period||', '||return||', '||return||', 'newman:', 'aww', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'does', 'your', 'girlfriend', 'have', 'to', 'be', 'here', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'suggesting', 'jerry', '||rightparen||', 'does', 'yours', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'giving', 'newman', 'a', 'sour', 'look', '||rightparen||', "i'm", 'just', 'hanging', 'out', 'in', 'this', 'hell', '||dash||', 'hole', 'because', 'of', 'george', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'come', 'on', '||comma||', 'newman', '||period||', 'now', 'you', 'gotta', 'help', 'me', '||exclammark||', 'what', 'am', 'i', 'gonna', 'do', 'about', 'fdr', '||questionmark||', '||return||', '||return||', 'woman:', 'why', "don't", 'you', 'just', 'make', 'another', 'wish', '||questionmark||', '||return||', '||return||', 'kramer:', 'and', 'how', 'am', 'i', 'gonna', 'do', 'that', '||comma||', 'toots', '||questionmark||', '||return||', '||return||', 'woman:', 'what', 'about', 'a', 'shooting', 'star', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interested', '||rightparen||', "that's", 'perfect', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'kissing', 'the', 'woman', '||rightparen||', 'beauty', '||period||', '||period||', 'and', 'brains', '||period||', '||leftparen||', 'they', 'nuzzle', 'noses', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'disgusted', '||period||', 'to', 'the', 'woman', '||rightparen||', 'oh', '||comma||', 'come', 'on', '||period||', 'you', 'know', "he's", 'a', 'postman', '||comma||', "don't", 'ya', '||questionmark||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'fifteen', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', 'heres', 'your', 'plane', 'ticket', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'talking', 'about', '||period||', '||return||', '||return||', 'elaine:', 'sue', 'ellen', 'sends', 'me', 'an', 'invitation', '||comma||', 'one', 'week', 'before', 'her', 'wedding', 'in', 'india', '||period||', 'tst', '||comma||', 'ill', 'show', 'her', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'by', 'flying', 'half', 'way', 'around', 'the', 'world', '||questionmark||', '||return||', '||return||', 'elaine:', 'spite', 'never', 'sleeps', '||leftparen||', 'doing', 'a', 'little', 'dance', 'as', 'she', 'says', 'it', '||return||', '||return||', 'jerry:', 'especially', 'when', 'you', 'got', 'a', 'layover', 'in', 'sarajevo', '||period||', '||leftparen||', 'bosnia', 'herzegovina', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'handing', 'george', 'a', 'ticket', '||rightparen||', 'here', '||period||', "you're", 'going', 'to', 'india', 'with', 'us', 'tomorrow', '||period||', '||return||', '||return||', 'george:', 'for', 'how', 'long', '||questionmark||', '||return||', '||return||', 'elaine:', 'three', 'days', '||period||', '||return||', '||return||', 'george:', 'great', '||period||', 'jerry', '||comma||', 'i', 'gotta', 'tell', 'you', '||comma||', 'i', 'had', 'the', 'best', 'time', 'with', 'that', 'nina', 'last', 'night', '||period||', 'i', '||dash||', 'i', 'think', "i'm", 'in', 'love', 'with', 'her', 'already', '||period||', 'you', 'are', 'a', 'great', 'friend', '||period||', '||leftparen||', 'hugs', 'jerry', '||rightparen||', 'a', 'great', '||comma||', 'great', 'friend', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'change', 'the', 'subject', 'away', 'from', 'nina', '||rightparen||', 'hey', '||dash||', 'hey', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', 'you', 'want', 'to', 'borrow', 'something', '||questionmark||', 'you', 'want', 'to', 'eat', 'something', '||questionmark||', 'come', 'on', 'in', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shrugging', 'jerry', 'off', '||rightparen||', 'nah', '||period||', '||return||', '||return||', 'elaine:', 'you', 'want', 'to', 'go', 'to', 'india', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', "can't", '||period||', '||leftparen||', 'complaining', '||rightparen||', "i'm", 'gonna', 'drop', 'dead', '||period||', '||return||', '||return||', 'george:', 'great', '||exclammark||', '||leftparen||', 'snaps', 'fingers', 'and', 'grabs', 'the', 'extra', 'plane', 'ticket', '||rightparen||', 'nina', 'could', 'go', '||comma||', 'huh', '||questionmark||', 'jerry', '||comma||', 'this', 'is', 'great', '||period||', 'you', 'and', 'elaine', '||period||', 'me', 'and', 'nina', '||period||', '||return||', '||return||', 'jerry:', 'h', '||dash||', 'hey', '||comma||', 'kramer', '||comma||', 'wait', 'up', '||period||', "i'll", 'go', 'with', 'you', '||period||', '||return||', '||return||', 'kramer:', "i'm", "goin'", 'to', "newman's", '||exclammark||', '||return||', '||return||', 'jerry:', 'great', '||comma||', 'i', 'love', 'newman', '||exclammark||', '||leftparen||', 'eagerly', 'following', 'kramer', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'asking', 'elaine', '||rightparen||', 'jerry', 'seem', 'a', 'little', 'weird', 'when', 'i', 'mentioned', 'nina', '||questionmark||', '||return||', '||return||', 'elaine:', 'nina', '||questionmark||', 'nina', '||questionmark||', 'no', '||period||', 'psshhh', '||period||', '||period||', 'not', 'weird', '||period||', 'no', '||period||', 'nina', '||period||', '||return||', '||return||', 'george:', 'why', 'do', 'you', 'keep', 'saying', 'nina', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'nina', '||period||', 'nina', '||exclammark||', '||leftparen||', 'feeling', "she's", 'said', 'to', 'much', '||comma||', 'she', 'goes', 'to', 'leave', '||rightparen||', "i'm", 'gonna', 'go', 'grab', 'a', 'bite', '||period||', '||return||', '||return||', 'george:', 'uhh', '||period||', '||period||', "i'll", '||dash||', "i'll", 'meet', 'you', 'down', 'there', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'notice:', '||quotemark||', 'thirty', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'knocking', 'on', 'a', 'port', '||dash||', 'a', '||dash||', 'potty', 'door', '||rightparen||', 'come', 'on', '||comma||', 'lomez', '||exclammark||', "we're", 'gonna', 'be', 'late', 'for', 'the', 'movie', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'to', 'his', 'new', 'girlfriend', '||rightparen||', 'you', 'see', '||comma||', 'my', 'dear', '||comma||', 'all', 'certified', 'mail', 'is', 'registered', '||comma||', 'but', 'registered', 'mail', 'is', 'not', 'necessarily', 'certified', '||period||', '||return||', '||return||', 'woman:', 'i', 'could', 'listen', 'to', 'you', 'talk', 'about', 'mail', 'all', 'day', '||period||', '||return||', '||return||', 'kramer:', 'anything', 'you', 'wish', '||period||', "i'll", 'tell', 'you', 'a', 'little', 'secret', 'about', 'zip', 'codes', "they're", 'meaningless', '||exclammark||', '||leftparen||', 'laughs', 'evilly', '||comma||', 'driving', 'away', '||rightparen||', '||return||', '||return||', 'kramer:', 'wish', '||questionmark||', '||exclammark||', 'newman', '||exclammark||', '||return||', '||return||', 'kramer:', 'lomez', '||comma||', 'im', 'leavin', '||return||', '||return||', '[setting:', "newman's", 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'day', 'earlier', '||quotemark||', '||return||', '||return||', 'all:', '||leftparen||', 'singing', 'to', 'newman', '||rightparen||', '||period||', '||period||', 'and', 'you', 'smell', 'like', 'one', '||comma||', 'too', '||period||', '||leftparen||', 'laughing', 'and', 'clapping', '||rightparen||', '||return||', '||return||', 'postman:', 'make', 'a', 'wish', '||comma||', 'newman', '||exclammark||', "we've", 'gotta', 'get', 'back', 'to', 'work', 'in', 'three', 'hours', '||exclammark||', '||return||', '||return||', 'kramer:', 'newman', '||comma||', 'wait', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'stands', 'up', 'and', 'sputtering', 'loudly', '||rightparen||', 'kramer', '||exclammark||', "i'm", 'with', 'people', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'and', 'thanks', 'for', 'inviting', 'me', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'did', 'invite', 'you', '||period||', 'your', 'invitation', "must've", 'gotten', '||period||', '||period||', '||period||', 'lost', 'in', 'the', 'mail', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'newman', '||comma||', 'i', 'need', 'your', 'wish', 'to', 'protect', 'me', 'from', 'fdr', '||period||', '||return||', '||return||', 'newman:', "can't", 'do', 'it', '||period||', "i'm", 'on', 'an', 'unbelievable', 'birthday', '||dash||', 'wish', 'hot', 'streak', '||exclammark||', 'my', 'last', 'five', 'birthday', 'wishes', 'came', 'true', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||exclammark||', 'look', '||comma||', "i'll", 'give', 'you', 'my', 'next', 'birthday', 'wish', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'newman:', '||leftparen||', 'negotiating', '||rightparen||', 'your', 'next', '||comma||', 'fifty', 'wishes', '||period||', '||return||', '||return||', 'kramer:', 'forty', '||dash||', 'eight', '||period||', '||return||', '||return||', 'newman:', 'fourty', '||dash||', 'nine', '||period||', '||return||', '||return||', 'kramer:', 'done', '||exclammark||', '||return||', '||return||', 'newman', 'and', 'kramer:', '||leftparen||', 'together', '||rightparen||', 'sucker', '||period||', '||period||', '||return||', '||return||', 'newman:', 'alright', '||comma||', 'alright', '||comma||', 'back', '||comma||', 'savages', '||period||', 'back', '||exclammark||', 'i', "haven't", 'made', 'my', 'wish', 'yet', '||period||', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'day', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'ahh', '||comma||', 'this', 'mischke', 'mish', '||dash||', 'mash', 'is', 'just', "gettin'", 'worse', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'elaine:', 'i', 'talked', 'with', 'the', "groom's", 'parents', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'mm', '||dash||', 'hmm', '||period||', 'mm', '||dash||', 'hmm', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'and', "it's", 'so', 'obvious', 'that', 'they', "don't", 'want', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'me', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'the', 'only', 'reason', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'she', 'sent', 'me', 'an', 'invitation', 'was', 'that', 'so', "i'd", 'send', 'her', 'a', 'gift', '||period||', '||return||', '||return||', 'jerry:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'nina:', '||leftparen||', 'from', "jerry's", 'room', '||rightparen||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'uh', '||comma||', 'well', '||comma||', 'you', 'know', '||comma||', 'a', 'coffee', 'grinder', 'is', 'nice', '||period||', 'or', 'a', 'coffee', 'maker', '||period||', 'everyone', 'likes', 'coffee', '||period||', 'anything', 'to', 'do', 'with', 'coffee', '||period||', 'maybe', 'you', 'should', 'go', 'get', 'some', 'coffee', '||period||', '||return||', '||return||', 'nina:', 'oh', '||period||', 'hi', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'nina:', '||leftparen||', 'getting', 'ready', 'to', 'leave', '||rightparen||', 'oh', '||comma||', 'i', 'should', '||period||', '||period||', '||period||', 'um', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'nina:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'bye', '||dash||', 'bye', '||period||', '||return||', '||return||', 'nina:', 'bye', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gesturing', 'back', 'to', 'the', 'bedroom', '||rightparen||', 'who', 'else', 'ya', 'got', 'back', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'there', 'was', 'an', 'awkward', 'moment', 'in', 'the', 'conversation', '||period||', 'it', 'never', 'happened', 'before', '||period||', '||return||', '||return||', 'elaine:', 'you', 'slept', 'with', 'nina', '||questionmark||', 'what', 'are', 'you', 'gonna', 'tell', 'george', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', 'and', 'neither', 'will', 'you', '||period||', 'george', 'can', 'never', 'know', 'about', 'this', '||period||', '||period||', "it'll", 'crush', 'him', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||period||', 'alright', '||comma||', 'alright', '||period||', "i'll", 'put', 'it', 'in', 'the', 'vault', '||period||', '||return||', '||return||', 'jerry:', 'no', 'good', '||period||', 'too', 'many', 'people', 'know', 'the', 'combination', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', '||rightparen||', 'what', 'combination', '||questionmark||', '||return||', '||return||', 'elaine:', "don't", 'be', 'ridiculous', '||period||', '||return||', '||return||', 'jerry:', 'oh', 'my', 'god', '||period||', 'this', 'drawer', 'is', 'filled', 'with', 'fruit', 'loops', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'milk', '||period||', '||return||', '||return||', 'notice:', '||quotemark||', 'thirty', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'geez', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'from', 'outside', 'the', 'apartment', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', '[setting:', "pinter's", "parent's", 'house', '||dash||', 'elaine', 'visiting]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'hour', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', 'hi', '||period||', 'mr', '||period||', 'and', 'mrs', '||period||', 'ranawat', '||questionmark||', '||return||', '||return||', 'zubin:', 'please', '||comma||', 'call', 'us', 'usha', 'and', 'zubin', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'well', '||comma||', 'usha', '||period||', '||return||', '||return||', 'zubin:', "i'm", 'zubin', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrugging', 'it', 'off', '||rightparen||', 'anyway', '||comma||', 'your', 'son', 'is', 'marrying', 'my', 'friend', '||comma||', 'sue', 'ellen', 'mischke', '||period||', '||return||', '||return||', 'usha:', "you're", 'not', 'going', 'to', 'the', 'wedding', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||period||', '||period||', '||period||', '||return||', '||return||', 'usha:', "don't", 'go', '||period||', 'india', 'is', 'a', 'dreadful', '||comma||', 'dreadful', 'place', '||period||', '||return||', '||return||', 'zubin:', 'you', 'know', '||comma||', "it's", 'the', 'only', 'country', 'that', 'still', 'has', 'the', 'plague', '||questionmark||', '||leftparen||', 'laughing', 'as', 'he', 'says', 'the', 'line', '||rightparen||', 'i', 'mean', '||comma||', 'the', 'plague', '||exclammark||', 'please', '||exclammark||', '||return||', '||return||', 'usha:', "here's", 'the', 'registry', '||period||', 'send', 'her', 'a', 'gift', '||comma||', 'and', 'be', 'glad', 'you', 'did', 'not', 'have', 'to', 'go', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'soaking', 'it', 'in', '||rightparen||', 'right', '||period||', "don't", 'go', '||period||', 'send', 'a', 'gift', '||period||', 'i', 'think', 'i', 'understand', '||period||', '||return||', '||return||', 'zubin:', 'if', 'i', 'had', 'to', 'go', 'to', 'india', '||comma||', 'i', "wouldn't", 'go', 'to', 'the', 'bathroom', 'the', 'entire', 'trip', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaving', '||rightparen||', "that's", 'fantastic', '||period||', '||return||', '||return||', 'zubin:', 'and', "i'm", 'not', 'so', 'crazy', 'about', 'manhattan', '||comma||', 'either', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'thirty', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'nina:', 'oh', '||comma||', 'you', 'were', 'going', 'to', 'tell', 'me', 'all', 'about', 'george', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', 'just', 'remember', 'when', 'you', 'see', 'him', 'tomorrow', 'night', 'to', 'tell', 'him', 'that', 'the', 'waiter', 'liked', 'him', '||period||', '||return||', '||return||', 'nina:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'believe', 'me', '||period||', 'you', 'know', '||comma||', 'i', 'forgot', 'how', 'much', 'fun', 'it', 'is', 'hanging', 'out', 'with', 'you', '||period||', '||return||', '||return||', 'nina:', 'i', 'know', '||period||', 'you', 'know', '||comma||', 'we', 'never', 'had', 'a', 'bad', 'conversation', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', '||period||', 'no', 'awkward', 'pauses', '||period||', 'probably', 'the', 'reason', 'we', 'never', 'fooled', 'around', '||period||', '||period||', '||return||', '||return||', 'nina:', 'heh', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'probably', 'the', 'reason', '||period||', '||period||', '||return||', '||return||', '[setting:', "fdr's", 'apartment', 'building]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'day', 'earlier', '||quotemark||', '||return||', '||return||', 'fdr:', 'are', '||dash||', 'are', 'you', 'dense', '||questionmark||', 'i', 'said', 'i', 'wanted', 'you', 'to', 'drop', 'dead', '||period||', 'now', '||period||', '||period||', 'drop', 'dead', '||exclammark||', '||leftparen||', 'slams', 'the', 'door', 'in', "kramer's", 'face', '*note', 'fdrs', 'apt', '||period||', '#548*', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'walking', 'away', '||rightparen||', 'i', 'knew', 'it', '||period||', '||period||', 'stupid', 'jerry', '||period||', '||period||', '||return||', '||return||', 'notice:', '||quotemark||', 'ten', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', 'know', 'what', "i'm", 'talking', 'about', '||period||', "there's", 'no', 'way', 'fdr', 'wants', 'you', 'to', 'drop', 'dead', '||period||', '||return||', '||return||', 'kramer:', 'but', 'you', "haven't", 'seen', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'just', 'go', 'back', 'and', 'ask', 'him', 'again', '||period||', '||leftparen||', 'slams', 'the', 'door', 'on', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||leftparen||', 'heads', 'for', "fdr's", '||rightparen||', '||return||', '||return||', 'notice:', '||quotemark||', 'ten', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'fdr:', "that's", 'right', '||period||', 'my', 'birthday', 'wish', 'was', 'that', 'you', 'drop', 'dead', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', '||questionmark||', '||return||', '||return||', 'fdr:', '||leftparen||', 'sinister', '||rightparen||', 'i', 'have', 'my', 'reasons', '||period||', '||return||', '||return||', 'kramer:', 'woah', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||period||', 'if', 'you', 'make', 'a', 'birthday', 'wish', 'out', 'loud', '||comma||', 'it', "doesn't", 'come', 'true', '||period||', '||return||', '||return||', 'fdr:', "that's", 'just', 'a', 'silly', 'superstition', '||period||', '||leftparen||', 'slams', 'his', 'door', 'on', 'kramer', '||rightparen||', '||return||', '||return||', 'notice:', '||quotemark||', 'ten', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'fdr', 'wants', 'me', 'to', 'drop', 'dead', '||period||', '||return||', '||return||', 'george:', 'fdr', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'george', '||rightparen||', 'yeah', '||comma||', 'franklin', 'delano', 'romanowski', '||period||', '||leftparen||', 'resumes', 'telling', 'the', 'story', '||rightparen||', 'i', 'go', 'to', 'his', 'birthday', 'part', '||comma||', 'and', 'just', 'before', 'he', 'blew', 'out', 'his', 'candles', '||comma||', 'he', 'gives', 'me', 'this', 'look', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'guessing', 'the', 'look', '||rightparen||', 'stink', 'eye', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'also', 'guessing', '||rightparen||', 'crook', 'eye', '||questionmark||', '||return||', '||return||', 'kramer:', 'evil', '||comma||', 'eye', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "everybody's", 'a', 'little', 'cranky', 'on', 'their', 'birthday', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "it's", 'a', 'bad', 'day', '||period||', 'uh', '||comma||', 'you', 'got', 'everyone', 'in', 'your', 'house', '||comma||', "you're", "thinkin'", '||comma||', '||quotemark||', 'these', 'are', 'my', 'friends', '||questionmark||', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'everyday', 'is', 'my', 'birthday', '||period||', '||leftparen||', 'sarcastically', 'joking', 'off', 'what', 'george', 'said', '||rightparen||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'i', "can't", 'have', 'this', 'hanging', 'over', 'my', 'head', '||period||', "it's", 'bad', 'mojo', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||period||', '||return||', '||return||', 'elaine:', "you're", 'not', 'gonna', 'believe', 'what', 'i', 'got', 'in', 'the', 'mail', '||period||', 'invitation', 'to', 'sue', 'ellen', "mischke's", 'wedding', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joking', 'about', 'the', 'bra', '||dash||', 'less', 'wonder', '||rightparen||', 'well', '||comma||', 'at', 'least', 'the', 'wedding', 'gown', 'will', 'give', 'her', 'some', 'support', '||period||', '||return||', '||return||', 'elaine:', 'not', 'the', 'point', '||period||', 'the', 'wedding', 'is', 'in', 'one', 'week', '||period||', 'i', 'got', 'this', '||leftparen||', 'holds', 'up', 'invitation', '||rightparen||', 'today', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'think', "it's", 'a', 'non', '||dash||', 'vite', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'an', 'un', '||dash||', 'vitation', '||exclammark||', '||leftparen||', 'notices', 'george', 'is', 'a', 'few', 'inches', 'higher', '||rightparen||', 'hey', '||comma||', 'are', 'you', "gettin'", 'taller', '||questionmark||', '||return||', '||return||', 'george:', 'timberlands', '||period||', '||leftparen||', 'showing', 'elaine', 'his', 'boots', '||rightparen||', '||return||', '||return||', 'elaine:', 'ah', '||period||', '||leftparen||', 'looking', 'at', 'the', 'invitation', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'this', '||period||', "'pinter", "ranawat'", '||period||', '||period||', 'i', 'wonder', 'if', "he's", 'related', 'to', 'that', 'guy', 'i', 'dated', '||comma||', 'peter', 'ranawat', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "it's", 'probably', 'like', 'smith', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'would', 'you', 'make', 'the', 'call', 'already', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'call', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'wants', 'me', 'to', 'set', 'him', 'up', 'with', 'this', 'girl', '||comma||', 'nina', 'stengal', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'remembers', "jerry's", 'talking', 'about', 'her', '||rightparen||', 'oh', '||comma||', 'the', 'great', 'conversation', 'girl', '||period||', '||leftparen||', 'somewhat', 'bitter', 'toward', 'jerry', '||rightparen||', 'the', 'one', 'you', 'think', 'can', 'replace', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'kidding', 'when', 'i', 'said', 'that', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'told', 'me', 'the', 'same', 'thing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'nina', '||comma||', 'hi', '||period||', "it's", 'jerry', '||period||', '||return||', '||return||', 'george:', 'you', '||dash||', 'you', 'sure', 'you', 'never', 'slept', 'with', 'her', '||questionmark||', '||leftparen||', 'jerry', 'shakes', 'his', 'head', "'no'", '||rightparen||', 'perfect', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'nina', '||rightparen||', 'hey', '||comma||', 'how', "'bout", 'my', 'friend', '||comma||', 'george', '||questionmark||', 'quite', 'a', 'guy', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'rubbing', 'his', 'stomach', '||rightparen||', 'ooh', '||period||', '||period||', "something's", 'not', 'sitting', 'right', '||period||', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'notice:', '||quotemark||', 'one', 'hour', 'earlier', '||quotemark||', '||return||', '||return||', 'george:', "i'll", 'have', 'the', 'clams', 'casino', '||period||', '||return||', '||return||', 'jerry:', 'get', 'outta', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'showing', 'jerry', 'the', 'menu', '||rightparen||', '||quotemark||', 'chef', 'recommends', '||quotemark||', '||return||', '||return||', 'jerry:', 'hmm', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'motioning', 'toward', 'waitress', '||rightparen||', 'i', 'think', 'she', 'likes', 'me', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'how', 'come', 'nothing', 'ever', 'happened', 'between', 'you', 'and', 'nina', '||questionmark||', '||leftparen||', 'getting', 'paranoid', '||rightparen||', 'is', 'there', 'a', 'problem', 'with', 'her', '||questionmark||', 'is', 'she', 'a', 'man', '||questionmark||', '||return||', '||return||', 'jerry:', 'are', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "what's", 'the', 'reason', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', 'were', 'too', 'compatible', 'our', 'conversations', 'were', 'so', 'engrossing', '||period||', '||return||', '||return||', 'george:', 'how', 'engrossing', '||questionmark||', '||return||', '||return||', 'jerry:', 'if', 'we', 'ever', 'had', 'a', 'problem', 'with', 'elaine', '||comma||', 'we', 'could', 'bring', 'in', 'nina', 'and', 'not', 'lose', 'a', 'step', '||period||', '||return||', '||return||', 'george:', 'wow', '||exclammark||', 'heh', '||period||', '||leftparen||', 'half', 'kidding', '||rightparen||', 'you', "don't", '||comma||', 'huh', '||comma||', 'have', 'a', 'replacement', 'lined', 'up', 'for', 'me', '||comma||', 'do', 'ya', '||questionmark||', 'heh', 'he', 'he', 'he', 'he', 'he', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'anyway', '||comma||', 'like', 'i', 'was', 'saying', '||comma||', 'i', "couldn't", 'make', 'the', 'transition', 'from', 'conversation', 'to', 'sex', '||period||', 'there', 'were', 'no', 'awkward', 'pauses', '||period||', '||period||', '||period||', 'i', 'need', 'an', 'awkward', 'pause', '||period||', '||return||', '||return||', 'george:', "i'm", 'all', 'for', 'awkward', 'pauses', '||period||', 'fix', 'me', 'up', 'with', 'her', '||period||', '||period||', 'wait', 'a', 'minute', '||comma||', 'nina', 'just', 'saw', 'me', 'in', 'my', 'timberlands', '||exclammark||', 'now', 'i', 'have', 'to', 'wear', 'them', 'every', 'time', 'i', 'see', 'her', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'in', 'any', 'other', 'shoe', '||comma||', 'i', 'lose', 'two', 'inches', '||period||', 'i', '||dash||', 'i', "can't", 'have', 'a', 'drop', 'down', '||period||', 'we', 'were', 'eye', 'to', 'eye', '||comma||', 'i', "can't", 'go', 'eye', 'to', 'chin', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "you're", 'gonna', 'wear', "'em", 'no', 'matter', 'what', 'the', 'situation', '||questionmark||', '||return||', '||return||', 'george:', 'in', 'every', 'situation', '||period||', 'no', 'matter', 'how', 'silly', 'i', 'look', '||period||', '||leftparen||', 'tastes', 'his', 'clams', 'casino', '||rightparen||', 'hm', '||period||', '||period||', 'tastes', 'a', 'little', 'funky', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "i'm", 'sure', "it's", 'fine', '||period||', '||return||', '||return||', '[setting:', "fdr's", 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'thirty', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'all:', '||period||', '||period||', 'to', 'you', '||exclammark||', '||return||', '||return||', 'man:', 'come', 'on', '||comma||', 'make', 'a', 'wish', '||exclammark||', 'make', 'a', 'wish', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||exclammark||', '||return||', '||return||', 'all:', 'heyyy', '||comma||', 'yeahhhh', '||leftparen||', 'clapping', '||rightparen||', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'notice:', '||quotemark||', 'ten', 'minutes', 'earlier', '||quotemark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'this', 'is', 'the', 'kind', 'of', 'day', 'that', 'almost', 'makes', 'you', 'feel', 'good', 'to', 'be', 'alive', '||period||', '||return||', '||return||', 'jerry:', 'almost', '||period||', '||leftparen||', 'notices', 'his', 'shoes', '||rightparen||', 'hey', '||comma||', 'new', 'timberlands', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'and', 'a', 'whole', 'new', 'me', '||period||', "i'm", 'up', 'two', 'inches', 'in', 'these', 'babies', '||exclammark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', '||return||', '||return||', 'george:', "five'", 'eight', '||period||', "five'", 'seven', '||period||', '||return||', '||return||', 'nina:', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'nina', '||questionmark||', '||return||', '||return||', 'nina:', 'hi', '||period||', '||return||', '||return||', 'jerry:', "it's", 'been', 'years', '||exclammark||', '||return||', '||return||', 'nina:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'introducing', 'the', 'two', '||rightparen||', 'george', '||comma||', 'this', 'is', 'nina', '||period||', '||return||', '||return||', 'george:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'nina:', 'nice', 'to', 'meet', 'you', '||comma||', 'too', '||period||', '||return||', '||return||', '[setting:', "elaine's", 'apartment', 'building]', '||return||', '||return||', 'notice:', '||quotemark||', 'three', 'hours', 'earlier', '||quotemark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'reading', 'an', 'invitation', '||rightparen||', 'india', '||questionmark||', 'tst', '||comma||', 'yeah', '||comma||', 'right', '||period||', '||leftparen||', 'sarcastic', '||rightparen||', "i'm", "goin'", 'to', 'india', '||period||', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'notice:', '||quotemark||', 'two', 'years', 'earlier', '||quotemark||', '||return||', '||return||', 'nina:', 'and', 'they', 'call', 'it', 'the', 'world', 'wide', 'web', '||period||', 'you', 'can', 'e', '||dash||', 'mail', 'anyone', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'mesmerized', '||rightparen||', 'what', 'are', 'you', '||comma||', 'a', 'scientist', '||questionmark||', '||exclammark||', '||return||', '||return||', 'nina:', 'ah', '||comma||', 'i', 'gotta', 'go', '||period||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||return||', '||return||', 'nina:', "it's", 'great', "talkin'", '||return||', '||return||', 'jerry:', 'great', "talkin'", 'to', 'you', '||period||', '||leftparen||', 'nina', 'leaves', '||period||', 'to', 'himself', '||rightparen||', 'what', 'the', 'hell', 'is', 'e', '||dash||', 'mail', '||questionmark||', '||return||', '||return||', 'george:', 'how', 'as', 'the', 'date', '||questionmark||', '||return||', '||return||', 'jerry:', 'pretty', 'good', '||period||', 'i', 'think', 'she', 'might', 'be', 'the', 'one', '||period||', '||return||', '||return||', 'susan:', 'no', '||period||', '||return||', '||return||', 'george:', 'whooo', '||period||', '||period||', '||leftparen||', 'to', 'a', 'waitress', 'taking', 'orders', '||rightparen||', 'ooh', '||period||', '||period||', 'french', 'fries', '||period||', '||return||', '||return||', 'susan:', 'ah', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'clearing', 'his', 'throat', '||comma||', 'he', 'changes', 'his', 'order', 'for', 'susan', '||rightparen||', 'baked', '||comma||', 'uh', '||comma||', 'potato', '||period||', '||return||', '||return||', 'susan:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', 'sorry', '||period||', '||return||', '||return||', 'susan:', 'yeah', '||comma||', 'you', 'stuff', 'your', 'sorries', 'in', 'a', 'sack', '||comma||', 'mister', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||period||', 'yeah', '||comma||', 'check', 'it', 'out', '||period||', "it's", "packin'", 'tight', '||exclammark||', '||leftparen||', 'puts', 'the', 'snowball', 'on', 'the', 'table', '||comma||', 'then', 'drips', 'water', 'from', "jerry's", 'cup', 'onto', 'it', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'bringing', 'snowballs', 'in', 'here', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'need', 'some', 'water', '||period||', 'ice', 'it', 'up', 'nice', 'and', 'hard', '||period||', '||period||', '||period||', 'and', 'when', 'you', 'throw', 'it', '||dash||', 'pop', '||exclammark||', 'oh', 'look', '||comma||', '||leftparen||', 'fdr', 'is', 'at', 'the', 'cash', 'register', '||comma||', 'pays', 'and', 'leaves', 'monks', '||rightparen||', "there's", 'my', 'friend', '||comma||', 'fdr', '||period||', "i'm", 'gonna', 'nail', 'him', 'in', 'the', 'back', 'of', 'the', 'head', '||period||', "it's", 'gonna', 'be', 'great', '||exclammark||', '||leftparen||', 'rushes', 'out', 'of', 'monks', 'to', 'peg', 'his', 'friend', 'with', 'the', 'snowball', '||rightparen||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'turning', 'around', 'and', 'leaving', 'with', 'pinter', '||rightparen||', 'hey', '||comma||', "let's", 'go', 'someplace', 'else', '||comma||', 'okay', '||comma||', 'peter', '||questionmark||', '||return||', '||return||', '[setting:', "jerry's", 'new', 'apartment]', '||return||', '||return||', 'notice:', '||quotemark||', 'eleven', 'years', 'earlier', '||quotemark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'how', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hi', '||period||', 'i', '||dash||', "i'm", 'jerry', 'seinfeld', '||period||', "i'm", "movin'", 'in', '||period||', 'i', 'saw', 'your', 'name', 'on', 'the', 'buzzer', '||dash||', 'you', 'must', 'be', 'kessler', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', '||period||', 'actually', '||comma||', "it's", 'kramer', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'you', 'need', 'any', 'help', '||comma||', 'or', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'thanks', '||period||', 'but', 'i', 'ordered', 'a', 'pizza', '||period||', 'you', 'want', 'some', 'of', 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', '||dash||', 'i', "couldn't", 'impose', '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', "we're", 'neighbors', '||period||', "what's", 'mine', 'is', 'yours', '||period||', '||leftparen||', 'and', 'with', 'that', '||comma||', 'jerry', 'made', 'the', 'most', 'fatal', 'mistake', 'of', 'his', 'life', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'quietly', '||rightparen||', 'ohh', '||leftparen||', 'eyeing', "jerry's", 'empty', 'apartment', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'the', 'definition', 'of', '\x93sari\x94', 'or', '\x93saree\x94', 'is:', 'nan', '||return||', '||return||', 'sari', '/', 'saree:', 'a', 'long', 'piece', 'of', 'cotton', 'or', 'silk', 'cloth', '||comma||', 'constituting', 'the', 'principal', 'garment', 'of', 'hindu', 'women', '||comma||', 'worn', 'round', 'the', 'waist', '||comma||', 'one', 'end', 'falling', 'to', 'the', 'feet', '||comma||', 'and', 'the', 'other', 'crossed', 'over', 'the', 'bosom', 'and', 'shoulder', '||comma||', 'and', 'sometimes', 'over', 'the', 'head', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'tapping', 'the', 'spatula', 'while', 'waiting', 'for', 'waffles', 'to', 'be', 'done', '||rightparen||', 'any', 'second', 'now', '||period||', 'light', 'is', 'on', '||exclammark||', 'melissa', '||comma||', 'waffles', 'are', 'ready', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'appearing', 'in', 'the', 'kitchen', 'stark', 'naked', '||rightparen||', 'oh', '||comma||', 'fantastic', '||exclammark||', "i'm", 'starving', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'her', '||rightparen||', 'how', 'about', 'that', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'eating', 'the', 'waffles', '||rightparen||', 'mmm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', 'she', 'ate', 'breakfast', 'naked', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', "didn't", 'even', 'want', 'a', 'napkin', '||period||', '||return||', '||return||', 'george:', "i've", 'had', 'bedroom', 'naked', '||comma||', "i've", 'had', 'walk', '||dash||', 'to', '||dash||', 'the', '||dash||', 'bathroom', 'naked', '||period||', '||period||', '||period||', 'i', 'have', 'never', 'had', 'living', '||dash||', 'room', 'naked', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "it's", 'a', 'scene', '||period||', '||return||', '||return||', 'george:', "it's", 'like', "you're", "livin'", 'in', 'the', 'playboy', 'mansion', '||exclammark||', 'did', 'she', '||comma||', 'uh', '||comma||', 'did', 'she', 'frolic', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'really', 'have', 'enough', 'room', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'seeing', 'elaine', 'and', 'puddy', 'come', 'into', "monk's", '||rightparen||', 'yeah', '||period||', 'hey', '||comma||', 'lainie', '||comma||', 'puddy', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'puddy:', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'heading', 'towards', 'the', 'bathroom', '||rightparen||', 'i', 'got', 'to', 'make', 'a', 'pit', 'stop', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sitting', 'down', 'in', 'the', 'booth', '||rightparen||', "'kay", '||period||', '||return||', '||return||', 'jerry:', 'back', 'together', '||questionmark||', '||return||', '||return||', 'elaine:', 'his', 'apartment', 'was', 'being', 'fumigated', '||comma||', 'so', 'we', 'thought', "we'd", 'give', 'it', 'another', 'shot', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', 'guess', 'who', 'called', 'me', 'last', 'night', '||questionmark||', 'jason', 'hanke', '||period||', '||return||', '||return||', 'george:', "'stanky", "hanke'", '||questionmark||', 'what', 'did', 'he', 'want', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'called', 'to', 'apologize', 'for', 'standing', 'me', 'up', 'five', 'years', 'ago', '||period||', '||return||', '||return||', 'jerry:', 'why', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', '||period||', 'a', '||period||', "it's", 'one', 'of', 'the', 'twelve', 'steps', '||period||', 'step', 'number', 'nine', 'is', 'you', 'have', 'to', 'apologize', 'to', 'anyone', "you've", 'ever', 'wronged', '||period||', '||return||', '||return||', 'george:', 'ho', 'ho', 'ho', 'ho', '||exclammark||', 'i', "can't", 'wait', 'for', 'hanke', 'to', 'come', 'crawling', 'back', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'still', 'with', 'the', 'neck', 'hole', '||questionmark||', '||return||', '||return||', 'george:', 'still', 'upset', '||period||', 'very', 'upset', '||period||', '||return||', '||return||', 'elaine:', 'what', 'neck', 'hole', '||questionmark||', '||return||', '||return||', 'george:', 'remember', 'that', 'new', "year's", 'party', 'he', 'threw', 'a', 'few', 'years', 'ago', '||questionmark||', 'he', 'had', 'that', 'very', 'drafty', 'apartment', '||comma||', 'you', 'know', '||comma||', 'i', 'think', 'on', 'ninth', 'avenue', '||period||', '||return||', '||return||', 'elaine', '||comma||', 'becoming', 'board:', 'faster', '||period||', '||return||', '||return||', 'george:', 'i', 'asked', 'if', 'i', 'could', 'borrow', 'a', 'sweater', '||period||', '||return||', '||return||', 'jerry:', 'a', 'cashmere', 'sweater', '||period||', '||return||', '||return||', 'george:', 'i', 'said', 'preferably', 'cashmere', '||comma||', 'for', 'warmth', '||period||', 'so', 'in', 'front', 'of', 'the', 'whole', 'party', '||comma||', 'he', 'says', '||comma||', "'no", '||period||', 'i', "don't", 'want', 'you', 'stretching', 'out', 'the', 'neck', 'hole', '||period||', "'", '||return||', '||return||', 'elaine:', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||comma||', 'laugh', 'it', 'up', '||period||', 'everybody', 'else', 'did', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "it's", 'funny', '||period||', 'i', 'mean', '||comma||', 'you', 'have', 'a', 'big', 'head', '||period||', 'or', 'is', 'it', "'cause", 'of', 'your', 'neck', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'think', 'the', 'head', 'does', 'most', 'of', 'the', 'stretching', '||period||', '||return||', '||return||', 'george:', 'regardless', '||period||', 'i', 'had', 'to', 'walk', 'around', 'for', 'the', 'rest', 'of', 'the', 'party', 'in', 'some', 'cheap', 'metlife', 'windbreaker', '||period||', 'now', '||comma||', 'it', 'is', 'payback', 'time', '||period||', '||return||', '||return||', 'elaine:', 'i', 'really', 'think', "it's", 'the', 'size', 'of', 'your', 'neck', '||period||', '||return||', '||return||', 'george:', "it's", 'my', 'head', '||exclammark||', '||return||', '||return||', 'elaine:', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'peggy:', 'hey', '||period||', '||return||', '||return||', 'elaine:', "isn't", 'this', 'great', '||questionmark||', 'with', 'those', 'nerds', 'in', 'accounting', 'moved', '||comma||', 'you', 'and', 'i', 'are', 'the', 'only', 'ones', 'who', 'use', 'this', 'bathroom', '||period||', '||return||', '||return||', 'peggy:', '||leftparen||', 'somewhat', 'sarcastically', '||rightparen||', 'yeah', '||period||', 'great', '||period||', '||return||', '||return||', 'kramer:', 'you', 'went', 'to', 'the', 'coffee', 'shop', 'without', 'me', '||questionmark||', 'i', 'told', 'ya', '||comma||', 'i', 'just', 'wanted', 'to', 'hop', 'in', 'the', 'shower', '||period||', '||return||', '||return||', 'jerry:', 'that', 'was', 'an', 'hour', 'ago', '||period||', 'what', 'were', 'you', 'doing', 'in', 'there', '||questionmark||', '||return||', '||return||', 'kramer:', 'showering', '||period||', 'how', 'long', 'does', 'it', 'take', 'you', '||questionmark||', '||return||', '||return||', 'jerry:', 'ten', 'minutes', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'seeing', 'elaine', 'come', 'into', "jerry's", 'apartment', '||rightparen||', 'ten', 'minutes', '||questionmark||', "that's", 'kooky', 'talk', '||period||', 'hey', 'elaine', '||comma||', 'how', 'long', 'do', 'you', 'spend', 'in', 'the', 'shower', '||questionmark||', '||return||', '||return||', 'elaine:', 'ten', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'let', 'me', 'smell', 'you', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'whiff', 'away', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'after', 'delicately', 'sniffing', 'elaine', '||rightparen||', 'uh', '||period||', '||period||', '||period||', "that's", 'not', 'bad', 'at', 'all', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'holding', 'kramer', 'off', 'from', 'getting', 'another', 'whiff', '||rightparen||', 'hup', '||exclammark||', "that's", 'it', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'backing', 'off', '||rightparen||', 'ok', '||period||', '||return||', '||return||', 'elaine:', 'so', 'get', 'this', '||period||', "i'm", 'in', 'the', 'bathroom', 'at', 'work', 'today', '||comma||', 'and', 'i', 'see', 'peggy', 'using', 'a', 'seat', 'protector', '||period||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||period||', '||period||', '||period||', "we're", 'the', 'only', 'women', 'on', 'the', 'floor', '||period||', 'i', 'mean', '||comma||', "we're", 'like', 'roommates', '||period||', 'would', '||dash||', 'would', 'you', 'use', 'a', 'seat', 'protector', 'if', 'you', 'had', 'a', 'roommate', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'seeing', 'kramer', 'struggle', 'to', 'open', 'a', 'soda', '||comma||', 'spilling', 'it', 'all', 'over', '||rightparen||', 'i', 'think', 'the', 'damage', 'is', 'probably', 'already', 'done', '||period||', '||leftparen||', 'interrupting', "kramer's", 'inadequate', 'attempt', 'to', 'clean', 'up', 'the', 'soda', '||rightparen||', 'all', 'right', '||exclammark||', "i'll", 'get', 'that', '||period||', 'well', '||comma||', 'maybe', 'she', 'just', 'practices', 'good', 'hygiene', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'eyeing', 'jerry', 'meticulously', 'cleaning', 'up', 'the', 'soda', '||rightparen||', 'yeah', '||comma||', "you're", 'probably', 'right', '||period||', "she's", 'probably', 'one', 'of', 'those', 'neurotic', 'clean', 'freaks', '||period||', '||return||', '||return||', 'jerry:', 'mmm', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "here's", 'my', 'shower', 'routine', '||period||', 'maybe', 'i', 'can', 'make', 'some', 'changes', '||period||', 'get', 'wash', 'cloth', 'mittens', 'and', 'maybe', 'some', 'liquid', 'soap', '||comma||', 'and', 'just', '||period||', '||period||', '||period||', '||dash||', 'pop', '||dash||', 'focus', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'playing', 'scrabble', 'with', 'his', 'naked', 'girlfriend', '||rightparen||', 'zephyr', '||questionmark||', 'that', 'is', 'not', 'a', 'word', '||period||', '||return||', '||return||', 'melissa:', 'do', 'you', 'challenge', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'do', 'not', 'challenge', '||period||', '||return||', '||return||', 'melissa:', '66', 'points', '||period||', 'ha', 'ha', '||period||', '||return||', '||return||', 'jerry:', "i'd", 'accuse', 'you', 'of', 'cheating', '||comma||', 'but', 'i', "don't", 'know', 'where', "you'd", 'hide', 'the', 'tiles', '||period||', '||return||', '||return||', 'melissa:', 'you', 'want', 'some', 'more', 'ice', 'tea', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'coughing', 'loudly', '||comma||', 'while', "jerry's", 'expression', 'turns', 'to', 'disgust', '||rightparen||', 'wrong', 'pipe', '||period||', '||return||', '||return||', 'george:', 'so', 'she', 'coughed', '||period||', '||return||', '||return||', 'jerry:', 'coughing', '||period||', '||period||', '||period||', 'naked', '||period||', '||period||', '||period||', "it's", 'a', 'turn', '||dash||', 'off', '||comma||', 'man', '||period||', '||return||', '||return||', 'george:', 'everything', 'goes', 'with', 'naked', '||period||', '||return||', '||return||', 'jerry:', 'when', 'you', 'cough', '||comma||', 'there', 'are', 'thousands', 'of', 'unseen', 'muscles', 'that', 'suddenly', 'spring', 'into', 'action', '||period||', "it's", 'like', 'watching', 'that', 'fat', 'guy', 'catch', 'a', 'cannonball', 'in', 'his', 'stomach', 'in', 'slow', 'motion', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'you', 'spoiled', '||comma||', 'spoiled', 'man', '||period||', 'do', 'you', 'now', 'how', 'much', 'mental', 'energy', 'i', 'expend', 'just', 'trying', 'to', 'picture', 'women', 'naked', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', 'the', 'thing', 'you', "don't", 'realize', 'is', 'that', "there's", 'good', 'naked', 'and', 'bad', 'naked', '||period||', 'naked', 'hair', 'brushing', '||comma||', 'good', '||semicolon||', 'naked', 'crouching', '||comma||', 'bad', '||period||', 'hey', '||comma||', "there's", 'hanke', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "it's", 'grovel', 'time', '||period||', '||return||', '||return||', 'hanke:', 'hey', '||comma||', 'george', '||period||', 'jerry', '||period||', 'listen', '||comma||', 'i', 'just', 'got', 'sober', '||comma||', 'so', "i've", 'been', 'going', 'through', 'the', 'twelve', 'steps', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'up', 'to', 'now', '||comma||', 'uh', '||comma||', 'step', 'nine', '||questionmark||', '||return||', '||return||', 'hanke:', 'yeah', '||period||', 'making', 'amends', '||period||', '||return||', '||return||', 'george:', 'important', 'step', '||period||', 'maybe', 'the', 'most', 'important', '||period||', '||return||', '||return||', 'hanke:', 'anyway', '||comma||', 'uh', '||comma||', 'jerry', '||comma||', 'you', 'know', '||comma||', 'this', 'may', 'sound', 'dumb', '||comma||', 'but', '||comma||', 'you', 'know', '||comma||', 'when', 'we', 'first', 'met', 'i', 'thought', 'your', 'name', 'was', 'gary', '||period||', 'and', '||comma||', 'i', 'think', 'i', 'may', 'even', 'have', 'called', 'you', 'gary', 'a', 'couple', 'of', 'times', '||comma||', 'and', '||period||', '||period||', '||period||', 'i', "don't", 'know', 'if', 'you', 'noticed', '||comma||', 'but', 'i', 'always', 'felt', 'bad', 'about', 'it', '||comma||', 'so', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', 'i', 'did', 'notice', '||comma||', 'and', 'i', 'appreciate', 'you', 'rectifying', 'it', '||period||', '||return||', '||return||', 'hanke:', '||leftparen||', 'eyeing', 'george', '||comma||', "who's", 'looking', 'expectedly', 'up', 'at', 'him', '||rightparen||', 'great', '||period||', 'great', '||period||', 'well', '||comma||', "i'll", 'see', 'you', 'guys', 'later', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', '||rightparen||', 'well', '||comma||', 'i', 'just', 'got', 'out', 'of', 'a', '27', '||dash||', 'minute', 'shower', '||period||', 'i', 'made', 'some', 'good', 'cuts', '||comma||', 'and', 'i', "didn't", 'lose', 'anything', 'i', 'needed', '||period||', 'yeah', '||comma||', 'i', 'think', 'what', 'i', 'kept', 'is', 'even', 'stronger', 'now', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', 'to', "kramer's", 'hair', '||rightparen||', 'you', 'got', 'some', 'suds', 'over', 'here', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'noticing', 'suds', 'all', 'over', 'his', 'clothes', 'and', 'body', '||rightparen||', 'wha', '||period||', '||period||', '||period||', '||questionmark||', 'oh', '||comma||', 'man', '||exclammark||', 'geez', '||exclammark||', 'look', 'at', 'that', '||exclammark||', "i'm", 'all', 'lathery', '||period||', 'jerry', '||comma||', 'you', 'got', 'to', 'show', 'me', 'what', "i'm", 'doing', 'wrong', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', 'mean', 'it', '||comma||', 'man', '||period||', "i'm", 'lost', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'promise', "you'll", 'never', 'come', 'in', 'here', 'again', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'chuckling', '||rightparen||', 'oh', '||comma||', 'jerry', '||comma||', 'you', 'know', 'i', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'standing', 'in', 'the', 'bathtub', '||rightparen||', 'now', 'my', 'sense', 'of', 'it', 'is', 'that', "you're", 'probably', 'wasting', 'time', 'working', 'piecemeal', '||comma||', 'first', 'cleaning', 'one', 'area', '||comma||', 'then', 'another', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'how', 'cats', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'but', '||comma||', 'when', 'you', 'have', 'a', 'faucet', 'instead', 'of', 'a', 'tongue', '||comma||', 'you', 'want', 'to', 'use', 'gravity', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||period||', "let's", 'turn', 'the', 'water', 'on', 'now', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'i', 'told', 'you', '||comma||', "it's", 'just', 'a', 'dry', 'run', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', "jerry's", 'bathroom', '||rightparen||', 'well', '||comma||', "hanke's", 'moved', 'on', 'to', 'step', 'ten', '||period||', 'he', 'was', 'spotted', 'taking', 'personal', 'inventory', '||period||', '||return||', '||return||', 'jerry:', "that's", 'step', 'ten', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'he', 'has', 'to', 'do', 'now', 'is', 'count', 'his', 'blessings', '||comma||', 'say', 'a', 'prayer', '||comma||', 'and', "he's", 'done', '||period||', 'do', 'you', 'believe', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'jerry', '||period||', 'how', 'about', 'a', '||dash||', 'a', 'baggy', 'swimsuit', '||questionmark||', '||return||', '||return||', 'jerry:', "you're", 'not', "gettin'", 'any', 'skin', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'has', 'all', 'been', 'one', 'big', 'tease', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'moving', "peggy's", 'water', 'to', 'make', 'room', 'for', 'paper', 'on', 'the', 'desk', '||rightparen||', 'these', 'proofs', 'look', 'pretty', 'good', '||period||', 'oh', '||period||', 'can', 'i', 'move', 'this', '||questionmark||', 'yup', '||period||', 'i', 'think', 'this', 'will', 'work', '||period||', '||return||', '||return||', 'peggy:', '||leftparen||', 'having', 'seen', 'elaine', 'touch', 'her', 'nearly', 'full', 'water', 'bottle', '||rightparen||', "i'm", '||period||', '||period||', '||period||', 'gonna', 'get', 'another', 'bottle', 'of', 'water', '||period||', '||return||', '||return||', 'walter:', '||leftparen||', 'taking', 'a', 'final', 'swig', 'from', 'his', 'own', 'water', 'bottle', '||rightparen||', 'here', '||comma||', 'take', 'mine', '||period||', "there's", 'a', 'little', 'left', '||period||', '||return||', '||return||', 'peggy:', '||leftparen||', 'gulping', 'down', "walter's", 'water', '||rightparen||', 'oh', '||comma||', 'thanks', '||comma||', 'walter', '||period||', 'ahh', '||exclammark||', '||return||', '||return||', 'hanke:', '||leftparen||', 'talking', 'with', 'two', 'men', 'in', "monk's", '||rightparen||', 'guys', '||comma||', "there's", 'no', 'doubt', 'that', 'the', 'pay', 'is', 'good', '||period||', 'but', 'i', "don't", 'just', 'know', 'if', 'i', 'see', 'myself', 'working', 'with', 'ice', 'cream', '||period||', '||return||', '||return||', 'man', '#1:', 'you', 'get', 'pretty', 'buff', 'forearms', '||period||', '||return||', '||return||', 'hanke:', 'i', "don't", 'know', 'if', "i'm", 'into', 'that', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', "monk's", '||rightparen||', 'oh', '||comma||', 'hello', '||comma||', 'hanke', '||comma||', 'others', '||period||', '||return||', '||return||', 'hanke:', 'george', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'jason', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'i', "couldn't", 'help', 'notice', '||comma||', 'i', '||period||', '||period||', '||period||', 'i', "didn't", 'get', 'my', 'apology', '||period||', '||return||', '||return||', 'hanke:', 'apology', '||questionmark||', 'for', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'drafty', 'apartment', '||questionmark||', 'a', '||period||', '||period||', '||period||', 'sweaterless', 'friend', '||questionmark||', 'a', 'ball', '||dash||', 'game', 'giveaway', 'metlife', 'windbreaker', '||questionmark||', '||return||', '||return||', 'hanke:', 'george', '||comma||', 'come', 'on', '||comma||', 'not', 'that', 'neck', 'hole', 'thing', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'the', 'neck', 'hole', 'thing', '||comma||', 'and', 'i', 'would', 'appreciate', 'it', 'if', 'you', 'would', 'say', "you're", 'sorry', '||period||', '||return||', '||return||', 'hanke:', 'no', 'way', '||comma||', 'you', "would've", 'completely', 'stretched', 'it', 'out', '||period||', '||return||', '||return||', 'george:', "you're", 'an', 'alcoholic', '||exclammark||', 'you', 'have', 'to', 'apologize', '||period||', 'step', 'nine', '||exclammark||', 'step', 'nine', '||period||', '||return||', '||return||', 'hanke:', 'all', 'right', '||comma||', 'george', '||comma||', 'all', 'right', '||period||', "i'm", 'sorry', '||period||', "i'm", 'very', '||comma||', 'very', 'sorry', '||period||', "i'm", 'so', 'sorry', 'that', 'i', "didn't", 'want', 'your', 'rather', 'bulbous', 'head', 'struggling', 'to', 'find', 'its', 'way', 'through', 'the', 'normal', '||dash||', 'size', 'neck', 'hole', 'of', 'my', 'finely', 'knit', 'sweater', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taking', 'notes', 'on', 'showering', 'men', 'at', 'the', 'ymca', '||rightparen||', 'now', 'see', '||comma||', "that's", 'smart', '||period||', 'constant', 'motion', '||period||', 'wow', '||period||', '||return||', '||return||', 'man', 'in', 'shower:', '||leftparen||', 'seeing', 'kramer', 'staring', 'at', 'the', 'showering', 'man', '||rightparen||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'yeah', '||comma||', 'i', '||dash||', "i'm", 'watching', 'you', '||comma||', 'too', '||period||', 'but', 'this', "guy's", 'really', 'showing', 'me', 'something', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'walking', 'into', "jerry's", 'apartment', 'with', 'a', 'fresh', 'black', 'eye', '||rightparen||', 'you', 'got', 'a', 'steak', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'happened', 'to', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'people', 'in', 'this', 'city', 'are', 'crazy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'giving', 'him', 'a', 'steak', 'from', 'the', 'fridge', '||rightparen||', 'here', 'ya', 'go', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'applying', 'the', 'steak', 'to', 'his', 'eye', '||rightparen||', 'thanks', '||comma||', 'buddy', '||period||', 'oh', '||period||', '||period||', '||period||', 'yes', '||exclammark||', 'hey', '||comma||', 'you', 'got', 'any', 'a1', '||comma||', "'cause", "i'm", 'cooking', 'a', 'steak', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'a', 'different', 'one', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'closing', 'the', 'door', 'on', 'him', '||rightparen||', 'oh', '||exclammark||', '||return||', '||return||', 'kramer:', 'jerry', '||exclammark||', '||return||', '||return||', 'melissa:', '||leftparen||', 'wheeling', 'out', "jerry's", 'bicycle', '||rightparen||', 'ok', '||comma||', 'jerry', '||period||', 'i', 'fixed', 'that', 'bike', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'that', "wasn't", 'really', 'necessary', '||period||', 'i', "don't", 'ride', 'it', '||period||', "it's", 'just', 'for', 'show', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'crouching', 'down', 'next', 'to', 'the', 'bike', '||rightparen||', 'i', 'should', 'really', 'clean', 'those', 'bearings', '||period||', 'hold', 'this', '||period||', 'look', 'at', 'all', 'that', 'gunk', '||period||', '||return||', '||return||', 'jerry:', 'please', "don't", 'crouch', '||period||', '||return||', '||return||', 'melissa:', 'ouch', '||exclammark||', 'caught', 'my', 'skin', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'bad', '||period||', 'especially', 'that', 'area', '||period||', '||return||', '||return||', 'melissa:', 'you', 'got', 'anything', 'to', 'snack', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'uhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'grabbing', 'the', 'pickle', 'jar', 'and', 'straining', 'to', 'open', 'it', '||rightparen||', 'oh', '||comma||', 'pickles', '||exclammark||', 'unnhhhh', '||exclammark||', "it's", 'a', 'tough', 'one', '||period||', '||return||', '||return||', 'jerry:', 'look', '||comma||', 'please', 'stop', '||exclammark||', 'let', 'me', 'help', 'you', 'with', 'that', '||exclammark||', '||return||', '||return||', 'melissa:', '||leftparen||', 'finally', 'opening', 'the', 'jar', '||rightparen||', 'unnnnh', '||exclammark||', 'oooh', '||period||', "that's", 'gonna', 'leave', 'a', 'welt', '||period||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'leaving', 'the', 'room', '||rightparen||', 'i', "can't", '||period||', 'i', "can't", 'look', 'anymore', '||period||', 'i', '||dash||', 'i', '||dash||', "i've", 'seen', 'too', 'much', '||period||', '||return||', '||return||', 'elaine:', 'peggy', '||comma||', "we've", 'got', 'to', 'talk', '||period||', 'what', 'is', 'it', 'about', 'me', 'that', 'you', 'find', 'so', 'offensive', '||questionmark||', '||return||', '||return||', 'peggy:', 'you', 'seem', 'to', 'be', 'with', 'a', 'lot', 'of', 'men', '||period||', '||return||', '||return||', 'elaine:', 'what', '||exclammark||', '||questionmark||', 'i', 'happen', 'to', 'have', 'a', 'very', 'steady', 'boyfriend', '||period||', 'you', 'know', '||comma||', 'i', 'mean', '||comma||', 'we', 'broke', 'up', 'a', 'few', 'times', 'and', 'there', 'has', 'been', 'an', 'occasional', 'guy', 'here', 'or', '||period||', '||period||', '||period||', 'or', 'there', '||comma||', 'but', '||comma||', 'wh', '||dash||', 'why', 'is', 'this', 'your', 'business', '||questionmark||', '||return||', '||return||', 'peggy:', "it's", 'not', '||period||', 'good', 'day', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaving', 'the', 'room', 'after', 'rubbing', "peggy's", 'keyboard', 'on', 'her', 'butt', '||comma||', 'sticking', 'the', 'stapler', 'in', 'her', 'armpit', '||comma||', 'and', 'coughing', 'on', 'her', 'doorknob', '||rightparen||', 'oh', '||period||', 'all', 'right', '||period||', 'you', 'think', "i've", 'got', 'germs', '||questionmark||', "i'll", 'give', 'you', 'some', 'germs', '||period||', 'how', 'about', 'some', 'for', 'your', 'keyboard', '||comma||', 'huh', '||questionmark||', 'huh', '||questionmark||', 'oooh', '||comma||', 'how', 'about', 'for', 'your', 'stapler', '||period||', 'hmmm', '||questionmark||', "that's", 'good', '||comma||', "isn't", 'it', '||questionmark||', 'you', 'have', 'a', 'happy', 'and', 'a', 'healthy', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'technically', 'he', 'did', 'apologize', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'i', 'felt', 'like', 'a', 'straight', 'man', 'in', 'some', 'horrible', 'sketch', '||period||', 'he', 'was', 'riffing', '||exclammark||', 'riffing', '||exclammark||', 'on', 'my', 'pain', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'now', 'you', 'want', 'an', 'apology', 'for', 'the', 'apology', '||comma||', 'plus', 'the', 'original', 'apology', '||questionmark||', '||return||', '||return||', 'george:', "that's", 'right', '||period||', "i'm", 'two', 'in', 'the', 'hole', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'hit', 'the', 'wall', 'yesterday', 'with', 'lady', 'godiva', '||period||', 'she', 'did', 'a', 'full', 'body', 'flex', 'on', 'a', 'pickle', 'jar', '||period||', '||return||', '||return||', 'george:', 'did', 'you', 'explain', 'to', 'her', 'about', 'the', 'good', 'naked', 'and', 'the', 'bad', 'naked', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', 'am', 'i', 'gonna', 'get', 'a', 'fat', 'guy', 'and', 'a', 'cannonball', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', 'what', 'if', 'you', 'showed', 'up', 'bad', 'naked', '||comma||', 'huh', '||questionmark||', 'you', 'still', 'got', 'that', 'belt', 'sander', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'going', 'into', 'the', 'bathroom', '||rightparen||', 'well', '||comma||', 'you', 'on', 'all', 'fours', '||comma||', 'that', 'thing', "vibratin'", '||comma||', "kickin'", 'up', 'sawdust', '||comma||', 'ho', 'ho', '||exclammark||', "she'll", 'get', 'the', 'picture', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'answering', 'the', 'ringing', 'phone', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||comma||', 'guess', 'where', "i'm", 'calling', 'from', '||exclammark||', '||return||', '||return||', 'jerry:', 'world', 'war', 'i', 'plane', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "i'm", 'in', 'my', 'shower', '||period||', 'well', '||comma||', 'you', 'know', '||comma||', "i'm", 'trying', 'to', 'get', 'out', 'of', 'the', 'shower', 'sooner', '||comma||', 'and', 'then', 'i', 'ask', 'myself', '||comma||', "'why", '||questionmark||', "'", 'i', 'mean', 'this', 'is', 'where', 'i', 'want', 'to', 'be', '||period||', 'so', 'i', 'got', 'a', 'waterproof', 'phone', '||comma||', 'i', 'shaved', '||comma||', 'i', 'brushed', 'my', 'teeth', '||comma||', 'and', 'now', 'i', 'ordered', 'a', 'pair', 'of', 'chinos', 'from', 'j', '||period||', 'crew', '||period||', '||return||', '||return||', 'jerry:', 'when', 'are', 'ya', "gettin'", 'out', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", 'not', '||exclammark||', "i'll", 'see', 'ya', 'later', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'peterman:', 'bad', 'news', '||comma||', 'people', '||period||', 'peggy', 'is', 'home', 'sick', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'please', '||period||', '||return||', '||return||', 'peterman:', "she's", 'stuffed', 'up', '||comma||', 'achy', '||comma||', 'and', 'suffering', 'from', 'intense', 'malaise', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||comma||', 'we', 'all', 'have', 'intense', 'malaise', '||period||', 'right', '||questionmark||', '||return||', '||return||', 'peterman:', 'i', 'just', 'spoke', 'with', 'her', '||comma||', 'elaine', '||period||', "she's", 'in', 'bed', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'let', 'me', 'tell', 'you', 'something', 'this', 'is', 'all', 'in', 'her', 'mind', '||comma||', 'ok', '||questionmark||', 'she', 'is', 'insane', '||period||', 'she', 'thinks', 'i', 'made', 'her', 'sick', 'because', 'i', 'coughed', 'on', 'her', 'doorknob', '||comma||', 'rubbed', 'her', 'stapler', 'in', 'my', 'armpit', '||comma||', 'and', 'put', 'her', 'keyboard', 'on', 'my', 'butt', '||period||', 'yeah', '||comma||', "she's", 'a', 'wacko', '||period||', '||return||', '||return||', 'george:', 'so', "you're", 'jason', "hanke's", 'supervisor', '||questionmark||', '||return||', '||return||', 'sponsor:', 'sponsor', '||period||', '||return||', '||return||', 'george:', 'whatever', '||period||', 'listen', '||comma||', "i'm", 'very', 'concerned', 'about', 'this', 'guy', '||period||', '||return||', '||return||', 'sponsor:', "he's", 'doing', 'very', 'well', '||period||', "he's", 'already', 'on', 'to', 'step', 'ten', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'well', 'when', 'you', "don't", 'actually', 'do', 'the', 'steps', '||comma||', 'you', 'can', 'go', 'through', 'them', 'pretty', 'quick', '||period||', 'you', 'can', 'get', 'through', 'six', 'a', 'day', '||period||', '||return||', '||return||', 'sponsor:', 'is', 'there', 'some', 'unresolved', 'issue', 'between', 'you', 'and', 'jason', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', 'a', 'little', 'thing', 'called', 'step', 'nine', '||questionmark||', 'instead', 'of', 'an', 'apology', '||comma||', 'he', 'was', "beboppin'", 'and', "scattin'", 'all', 'over', 'me', '||period||', '||return||', '||return||', 'sponsor:', "i'm", 'not', 'sure', 'what', 'you', 'want', 'me', 'to', 'do', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "aren't", 'you', 'the', 'boss', 'of', 'him', '||questionmark||', 'you', "shouldn't", 'let', 'him', 'move', 'up', '||exclammark||', 'when', 'i', 'was', 'in', 'the', 'cub', 'scouts', '||comma||', 'i', 'got', 'stuck', 'on', 'weebolos', 'for', 'three', 'years', "'cause", 'i', 'kept', 'losing', 'the', 'pinewood', 'derby', '||period||', '||return||', '||return||', 'sponsor:', "you're", 'quite', 'upset', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'think', 'you', 'should', 'drop', 'him', 'down', 'to', 'step', 'two', '||period||', '||return||', '||return||', 'sponsor:', 'admit', "there's", 'a', 'higher', 'power', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'let', 'him', 'chew', 'on', 'that', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'sponer:', 'you', 'know', 'george', '||comma||', 'i', 'think', 'i', 'can', 'help', 'you', '||period||', "we're", 'having', 'a', 'meeting', 'tomorrow', '||period||', 'why', "don't", 'you', 'just', 'come', 'by', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "that's", 'more', 'like', 'it', '||period||', 'thank', 'you', 'very', 'much', '||period||', '||leftparen||', 'giving', 'the', 'sponsor', 'the', "'be", "strong'", 'hand', 'clench', '||rightparen||', 'by', 'the', 'way', '||comma||', 'my', 'uncle', 'was', 'an', 'alcoholic', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'on', 'the', 'phone', 'in', 'the', 'shower', '||rightparen||', 'lomez', '||comma||', "you're", 'not', "listenin'", '||period||', 'jerry', 'likes', 'the', 'naked', '||comma||', 'just', 'some', 'of', 'the', 'things', 'she', 'does', 'when', "she's", 'naked', '||period||', 'calm', 'down', '||comma||', "i'm", 'on', 'your', 'side', '||period||', 'geez', '||period||', 'hey', '||comma||', 'hold', 'on', 'a', 'second', '||period||', 'i', 'got', 'a', 'clog', '||comma||', "i'll", 'call', 'ya', 'back', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'naked', 'on', 'the', 'couch', '||rightparen||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'naked', '||comma||', 'carrying', 'a', 'belt', 'sander', '||rightparen||', 'i', 'found', 'a', 'rough', 'spot', 'on', 'the', 'kitchen', 'floor', '||comma||', 'i', 'thought', "i'd", 'polish', 'it', 'up', 'with', 'this', 'belt', 'sander', 'i', 'have', 'here', '||period||', '||return||', '||return||', 'melissa:', 'no', '||comma||', 'not', 'that', '||period||', 'why', 'are', 'you', 'naked', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'naked', 'is', 'good', '||period||', '||return||', '||return||', 'melissa:', '||leftparen||', 'eyeing', 'him', '||rightparen||', 'this', "isn't", 'good', 'naked', '||period||', '||return||', '||return||', 'sponser:', 'george', '||comma||', 'here', '||comma||', 'have', 'a', 'seat', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sitting', 'down', '||rightparen||', "where's", 'hanke', '||questionmark||', '||return||', '||return||', 'sponser:', '||leftparen||', 'motioning', 'to', 'the', 'leader', '||rightparen||', 'shhhhh', '||period||', '||return||', '||return||', 'leader:', 'ok', '||comma||', "let's", 'get', 'started', '||period||', 'welcome', 'to', 'rage', '||dash||', 'aholics', 'anonymous', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'rate', '||dash||', 'aholics', '||questionmark||', '||return||', '||return||', 'sponser:', 'george', '||comma||', 'this', 'can', 'help', 'you', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'am', 'not', 'here', 'for', 'rage', '||period||', "i'm", 'here', 'for', 'revenge', '||period||', '||return||', '||return||', 'leader:', 'excuse', 'me', '||period||', 'we', 'have', 'a', "'no", "yelling'", 'policy', 'at', 'these', 'meetings', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', 'am', 'i', 'talking', 'to', 'you', '||comma||', 'pinhead', '||questionmark||', 'am', 'i', '||questionmark||', '||exclammark||', '||return||', '||return||', 'leader:', 'please', "don't", 'call', 'me', "'pinhead'", '||period||', '||return||', '||return||', 'george:', "i'm", "losin'", 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'he', 'took', 'you', 'to', 'rage', '||dash||', 'aholics', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'probably', 'because', 'this', 'whole', 'universe', 'is', 'against', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', "you've", 'got', 'a', 'little', 'rage', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'and', 'now', 'they', 'want', 'me', 'to', 'bottle', 'it', 'up', '||period||', 'it', 'makes', 'me', 'so', 'mad', '||exclammark||', '||return||', '||return||', 'jerry:', 'by', 'the', 'way', '||comma||', 'my', 'bad', 'naked', 'demo', "didn't", 'quite', 'work', '||period||', '||return||', '||return||', 'george:', 'this', 'bread', 'has', 'nuts', 'in', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'seeing', 'elaine', 'enter', "monk's", '||rightparen||', 'oh', '||comma||', 'great', '||period||', 'elaine', '||period||', 'what', 'is', 'wrong', 'with', 'my', 'body', '||questionmark||', '||return||', '||return||', 'elaine:', 'chicken', 'wing', 'shoulder', 'blades', '||period||', '||return||', '||return||', 'jerry:', "that's", 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', "that's", 'one', 'problem', '||period||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'was', 'walking', 'around', 'naked', 'in', 'front', 'of', 'melissa', 'the', 'other', 'day', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'whoa', '||exclammark||', 'walking', 'around', 'naked', '||questionmark||', 'ahh', '||period||', '||period||', '||period||', 'that', 'is', 'not', 'a', 'good', 'look', 'for', 'a', 'man', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', "it's", 'a', 'good', 'look', 'for', 'a', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'the', 'female', 'body', 'is', 'a', '||period||', '||period||', '||period||', 'work', 'of', 'art', '||period||', 'the', 'male', 'body', 'is', 'utilitarian', '||comma||', "it's", 'for', "gettin'", 'around', '||comma||', 'like', 'a', 'jeep', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', "don't", 'think', "it's", 'attractive', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'hideous', '||period||', 'the', 'hair', '||comma||', 'the', '||period||', '||period||', '||period||', 'the', 'lumpiness', '||period||', "it's", 'simian', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'some', 'women', 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'hmm', '||period||', 'sickies', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'in', 'the', 'shower', '||comma||', 'reading', 'an', 'instruction', 'manual', '||rightparen||', 'installing', 'your', 'clarkman', 'garbage', 'disposal', '||period||', 'dismantle', 'latch', 'hasp', 'beneath', 'main', 'drainage', 'lot', '||period||', 'oh', '||comma||', 'come', 'on', '||comma||', 'clarkman', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'staring', 'into', 'space', '||comma||', 'picks', 'up', 'the', 'phone', '||rightparen||', 'puddy', '||period||', '||return||', '||return||', 'kramer:', 'is', '||comma||', 'uh', '||comma||', 'david', 'puddy', 'there', '||questionmark||', '||return||', '||return||', 'puddy:', 'this', 'is', 'puddy', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'is', 'kramer', '||period||', '||return||', '||return||', 'puddy:', 'i', 'know', '||period||', '||return||', '||return||', 'kramer:', 'um', '||comma||', 'listen', '||comma||', "you're", 'a', 'mechanic', '||period||', 'could', 'you', 'help', 'me', 'install', 'a', 'garbage', 'disposal', '||questionmark||', '||return||', '||return||', 'puddy:', 'well', '||comma||', "it's", 'a', 'big', 'job', '||period||', "you've", 'got', 'to', 'dismantle', 'the', 'latch', 'hasp', 'from', 'the', 'auxiliary', 'drainage', 'line', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'it', 'says', "'main", "line'", '||period||', '||return||', '||return||', 'puddy:', "it's", 'a', 'misprint', '||period||', 'what', 'do', 'you', 'got', '||comma||', 'a', 'clarkman', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'seeing', 'elaine', 'come', 'in', '||rightparen||', 'hey', '||comma||', 'man', '||comma||', "i'll", 'call', 'you', 'back', '||period||', "i'll", 'talk', 'you', 'through', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'ok', '||period||', 'well', '||comma||', 'thanks', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'puddy', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'babe', '||comma||', 'your', 'boss', 'called', '||period||', 'you', 'owe', 'five', 'bucks', 'for', 'a', 'balloon', 'bouquet', '||period||', 'yeah', '||comma||', 'he', 'says', 'you', 'can', 'just', 'give', 'it', 'to', 'him', 'tomorrow', 'when', 'you', 'see', 'him', '||period||', '||return||', '||return||', 'elaine:', 'balloon', 'bouquet', '||questionmark||', 'for', 'who', '||questionmark||', '||return||', '||return||', 'puddy:', 'peggy', 'took', 'a', 'turn', 'for', 'the', 'worst', '||period||', '||return||', '||return||', 'elaine:', 'peggy', '||period||', 'oh', '||comma||', 'great', '||period||', 'i', 'suppose', "she's", 'still', 'blaming', 'me', '||questionmark||', '||return||', '||return||', 'puddy:', "that's", 'what', 'he', 'said', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'believe', 'this', 'woman', '||period||', '||return||', '||return||', 'puddy:', 'talk', 'to', 'me', '||comma||', 'babe', '||period||', '||return||', '||return||', 'elaine:', "she's", 'this', 'crazy', 'woman', 'who', 'is', 'convinced', 'that', 'my', 'germs', 'make', 'her', 'sick', '||period||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'germ', '||dash||', 'o', '||dash||', 'phobe', '||period||', 'i', 'know', 'what', "that's", 'about', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'showing', 'her', 'his', 'necklace', '||rightparen||', "i'm", 'a', 'recovering', 'germ', '||dash||', 'o', '||dash||', 'phobe', '||period||', 'ten', 'years', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', 'symbol', '||questionmark||', '||return||', '||return||', 'puddy:', "it's", 'a', 'germ', '||period||', '||return||', '||return||', 'peggy:', 'elaine', '||comma||', 'it', 'was', 'very', 'nice', 'of', 'you', 'to', 'bring', 'the', 'man', "you're", 'currently', 'sleeping', 'with', 'over', 'to', 'talk', 'to', 'me', '||comma||', 'but', 'i', 'assure', 'you', '||comma||', 'i', "don't", 'have', 'any', 'problem', 'with', 'germs', '||period||', '||return||', '||return||', 'puddy:', "don't", 'you', '||questionmark||', 'elaine', '||period||', '||return||', '||return||', 'peggy:', '||leftparen||', 'flinching', 'away', '||rightparen||', 'please', '||exclammark||', '||return||', '||return||', 'puddy:', 'i', 'know', 'it', 'looks', 'bleak', '||period||', "i've", 'been', 'there', '||period||', 'ten', 'years', 'ago', 'waking', 'up', 'in', 'bed', 'next', 'to', 'a', 'woman', 'like', 'this', "would've", 'sent', 'me', 'running', 'for', 'the', 'phisohex', '||period||', '||return||', '||return||', 'peggy:', 'really', '||questionmark||', '||return||', '||return||', 'puddy:', 'i', 'still', 'have', 'trouble', 'looking', 'at', 'those', 'disgusting', 'old', 'bedroom', 'slippers', 'she', 'slogs', 'around', 'in', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "i've", 'had', 'those', 'since', 'college', '||period||', "they're", 'bunnies', '||period||', '||return||', '||return||', 'puddy:', "they're", 'bacteria', 'traps', '||period||', '||return||', '||return||', 'peggy:', 'so', 'you', '||period||', '||period||', '||period||', 'just', 'learned', 'to', 'live', 'with', 'it', '||questionmark||', '||return||', '||return||', 'puddy:', 'for', 'the', 'most', 'part', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||comma||', "we're", 'broken', 'up', 'for', 'the', 'rest', 'of', 'the', 'day', '||period||', '||return||', '||return||', 'jerry:', 'so', "i'm", 'glad', 'we', 'had', 'a', 'talk', 'and', 'worked', 'this', 'out', '||period||', "don't", 'you', 'feel', 'this', 'is', 'better', '||questionmark||', '||return||', '||return||', 'melissa:', 'this', 'is', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'clothes', '||period||', 'this', 'is', 'normal', '||period||', '||return||', '||return||', 'melissa:', 'hey', '||comma||', 'what', 'are', 'you', 'doing', 'tomorrow', '||questionmark||', 'i', 'was', 'thinking', 'that', 'we', 'could', 'go', 'down', '||period||', '||period||', '||period||', '||return||', '||return||', 'melissa:', 'jerry', '||questionmark||', 'jerry', '||comma||', 'are', 'you', 'listening', 'to', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', '||period||', 'yeah', '||period||', 'what', '||questionmark||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'melissa:', 'i', 'wanted', 'to', 'know', 'what', "you're", 'doing', 'tomorrow', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'maybe', 'a', 'haircut', '||comma||', 'and', '||comma||', 'i', "don't", 'know', '||comma||', 'maybe', 'a', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'in', 'the', 'shower', '||comma||', 'on', 'the', 'phone', 'with', 'jerry', '||rightparen||', 'so', 'you', 'broke', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'we', "couldn't", 'carry', 'on', 'a', 'conversation', '||period||', 'i', 'kept', 'trying', 'to', 'picture', 'her', 'naked', '||comma||', 'she', 'kept', 'trying', 'to', 'not', 'picture', 'me', 'naked', '||period||', '||return||', '||return||', 'kramer:', 'hang', 'on', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'up', 'to', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'just', 'cooking', 'up', 'a', 'little', 'thank', 'you', 'for', 'puddy', '||period||', 'hey', '||comma||', 'how', 'do', 'you', 'make', 'those', 'radish', 'roses', '||questionmark||', '||return||', '||return||', 'jerry:', 'insert', 'a', 'knife', 'into', 'the', 'center', 'and', 'twist', '||period||', 'then', '||comma||', 'to', 'make', 'it', 'bloom', '||comma||', 'soak', 'it', 'in', 'water', 'for', 'thirty', 'to', 'forty', 'minutes', '||period||', '||return||', '||return||', 'kramer:', 'no', 'problem', 'there', '||period||', '||return||', '||return||', 'hanke:', 'george', '||period||', 'thanks', 'for', 'coming', 'down', 'to', 'talk', 'to', 'me', '||period||', 'i', 'wanted', 'to', 'see', 'you', 'right', 'away', '||comma||', 'but', 'my', 'hours', 'here', "aren't", 'very', 'flexible', '||period||', 'i', 'just', 'started', 'yesterday', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'here', '||period||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'hanke:', 'well', '||comma||', 'i', 'talked', 'to', 'my', 'sponsor', '||comma||', 'and', '||comma||', 'uh', '||comma||', "i've", 'thought', 'it', 'over', '||comma||', 'and', '||comma||', 'you', 'know', '||comma||', 'my', 'apology', 'at', 'the', 'coffee', 'shop', 'was', 'sarcastic', '||comma||', 'and', 'rude', '||comma||', 'and', 'you', 'deserve', 'much', 'better', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'ready', 'to', 'leave', '||rightparen||', 'well', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'hanke:', "you're", 'welcome', '||period||', '||return||', '||return||', 'kid:', '||leftparen||', 'entering', 'the', 'store', '||rightparen||', 'can', 'i', 'get', 'a', 'triple', 'minute', 'man', 'mint', '||questionmark||', '||return||', '||return||', 'hanke:', 'waffle', 'or', 'sugar', 'cone', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'uh', '||comma||', 'um', '||comma||', 'jason', '||period||', 'i', "don't", 'want', 'to', 'get', 'into', 'a', 'big', 'thing', 'here', '||comma||', 'but', '||period||', '||period||', '||period||', "i'm", 'not', 'sure', 'if', '||comma||', 'technically', '||comma||', 'what', 'you', 'just', 'said', 'was', 'actually', 'an', 'apology', '||period||', '||return||', '||return||', 'hanke:', 'what', '||questionmark||', '||return||', '||return||', 'kid:', 'can', 'you', 'get', 'on', 'that', 'cone', '||questionmark||', '||return||', '||return||', 'hanke:', 'would', 'you', 'hang', 'on', 'just', 'a', 'second', '||comma||', 'son', '||questionmark||', 'george', '||comma||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "it's", 'just', '||comma||', 'all', 'you', 'said', 'was', "'your", "welcome'", '||comma||', 'which', 'is', 'nice', '||period||', "it's", 'very', 'nice', '||period||', 'but', '||period||', '||period||', '||period||', 'i', 'feel', 'i', 'gotta', 'get', 'the', 'apology', '||period||', '||return||', '||return||', 'kid:', 'is', 'there', 'anybody', 'else', 'here', 'but', 'you', '||questionmark||', '||return||', '||return||', 'hanke:', "i'm", 'alone', '||comma||', 'and', "it's", 'my', 'second', 'day', '||period||', 'you', 'know', '||comma||', 'i', "don't", 'even', 'think', 'we', 'have', 'that', 'flavor', 'so', '||period||', '||period||', '||period||', 'george', '||comma||', 'really', '||comma||', 'enough', '||comma||', 'ok', '||questionmark||', 'you', 'know', '||comma||', 'i', '||dash||', 'i', 'admitted', 'i', 'was', 'wrong', '||comma||', 'so', 'what', 'more', 'do', 'you', 'want', 'from', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'would', 'like', 'an', 'apology', '||period||', '||return||', '||return||', 'hanke:', 'all', 'right', '||comma||', 'look', '||comma||', 'you', 'know', '||dash||', '||dash||', '||return||', '||return||', 'kid', '#2:', '||leftparen||', 'entering', 'the', 'store', '||rightparen||', 'did', 'you', 'try', 'it', '||questionmark||', '||return||', '||return||', 'kid:', 'no', '||comma||', 'this', 'guy', "doesn't", 'know', 'what', "he's", 'doing', '||period||', '||return||', '||return||', 'hanke:', 'oh', '||comma||', 'yes', 'i', 'do', '||period||', 'yes', '||comma||', 'i', 'do', '||period||', 'ok', '||questionmark||', "i'm", 'interacting', 'with', 'someone', 'here', '||comma||', 'if', 'you', 'can', 'understand', 'that', '||period||', 'now', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'george:', 'baah', '||exclammark||', 'there', 'it', 'is', '||exclammark||', 'you', 'just', 'said', 'it', '||exclammark||', "that's", 'what', 'i', 'want', '||exclammark||', 'now', 'say', 'it', 'again', '||comma||', 'and', 'tell', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'hanke:', "i'm", 'not', 'saying', 'anything', 'to', 'you', '||period||', "i'm", 'not', 'sorry', '||period||', 'i', 'was', 'never', 'sorry', '||period||', 'it', 'was', 'cashmere', '||period||', 'i', 'hate', 'step', 'nine', '||exclammark||', "where's", 'that', 'rum', 'raisin', '||questionmark||', 'where', 'is', 'it', '||questionmark||', "can't", 'find', 'anything', '||period||', 'i', 'need', 'a', 'drink', '||period||', 'ah', '||comma||', 'daquiri', 'ice', '||period||', 'here', 'we', 'go', '||period||', 'what', 'are', 'you', 'looking', 'at', '||questionmark||', 'get', 'out', '||exclammark||', 'come', 'on', '||comma||', "can't", 'you', 'see', "we're", 'closed', '||questionmark||', '||exclammark||', 'get', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'eating', 'dinner', 'with', 'kramer', '||comma||', 'elaine', '||comma||', 'and', 'puddy', '||rightparen||', 'mmm', '||period||', 'this', 'food', 'is', 'fantastic', '||comma||', 'peggy', 'and', 'what', 'a', 'pretty', 'radish', 'rose', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', "here's", 'to', 'peggy', '||comma||', 'on', 'her', 'first', 'week', 'of', 'being', 'germ', '||dash||', 'free', '||comma||', 'free', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'and', "here's", 'to', 'david', 'puddy', 'for', 'helping', 'me', 'install', 'a', 'much', 'needed', 'and', 'much', 'appreciated', 'garbage', 'disposal', 'in', 'my', 'bathtub', '||period||', '||return||', '||return||', 'peggy:', 'you', 'have', 'a', 'garbage', 'disposal', 'in', 'your', 'bathtub', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||comma||', 'and', 'i', 'use', 'it', 'all', 'the', 'time', '||period||', 'yeah', '||comma||', 'i', 'made', 'this', 'whole', 'meal', 'in', 'there', '||period||', '||return||', '||return||', 'elaine:', 'this', 'food', 'was', 'in', 'the', 'shower', 'with', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'mm', '||dash||', 'hmm', '||period||', 'i', 'prepared', 'it', 'as', 'i', 'bathed', '||period||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'germs', '||period||', 'germs', '||period||', 'germs', '||exclammark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', 'is', 'this', '||comma||', 'uh', '||comma||', 'rage', '||dash||', 'aholics', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'waiting', 'with', 'elaine', 'and', 'peggy', '||rightparen||', 'no', '||comma||', 'germ', '||dash||', 'o', '||dash||', 'phobes', '||period||', '||return||', '||return||', 'george:', 'thanks', '||period||', 'what', 'are', 'you', 'guys', "doin'", 'here', '||questionmark||', '||return||', '||return||', 'elaine:', 'kramer', '||period||', '||return||', '||return||', 'george:', 'right', '||period||', '||return||', '||return||', 'hanke:', '||leftparen||', 'speaking', 'in', 'front', 'of', 'other', 'rage', '||dash||', 'aholics', '||rightparen||', 'hi', '||comma||', "i'm", '||comma||', 'uh', '||comma||', 'jason', '||period||', "i'm", 'a', 'rage', '||dash||', 'aholic', '||period||', '||return||', '||return||', 'audience:', 'hi', '||comma||', 'jason', '||period||', '||return||', '||return||', 'hanke:', 'uh', '||comma||', 'this', 'is', 'my', 'first', 'meeting', '||period||', '||return||', '||return||', 'george:', 'step', '||dash||', 'skipper', '||period||', 'that', 'man', 'is', 'a', 'step', '||dash||', 'skipper', '||exclammark||', 'he', 'skips', 'step', 'nine', '||exclammark||', '||return||', '||return||', 'hanke:', 'please', '||period||', 'step', 'nine', '||period||', '||return||', '||return||', 'george:', "that's", 'right', '||exclammark||', 'he', 'never', 'apologized', 'to', 'me', 'for', 'saying', 'that', 'i', 'would', 'stretch', 'out', 'the', 'neck', 'hole', 'of', 'his', 'sweater', '||period||', '||return||', '||return||', 'george:', 'it', "wasn't", 'funny', '||period||', '||return||', '||return||', 'hanke:', 'it', 'was', 'a', 'very', 'nice', 'sweater', '||period||', 'take', 'a', 'look', 'at', 'his', 'neck', '||comma||', 'not', 'to', 'mention', 'the', 'melon', 'sitting', 'on', 'top', 'of', 'it', '||period||', 'i', "don't", 'know', 'if', "i'd", 'trust', 'him', 'with', 'a', 'v', '||dash||', 'neck', '||period||', '||return||', '||return||', 'george:', "he's", "beboppin'", 'and', "scattin'", '||comma||', 'and', "i'm", "losin'", 'it', '||exclammark||', '||return||', '||return||', '[setting:', 'tim', "whatley's", 'apartment]', '||return||', '||return||', 'elaine:', 'so', '||period||', '||period||', "whatley's", 'still', 'jewish', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'sure', '||period||', 'with', 'out', 'the', 'parents', '||comma||', "it's", 'a', 'breeze', '||period||', '||return||', '||return||', 'tim:', 'hey', '||exclammark||', 'happy', 'chanukah', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'tim', '||period||', 'great', 'party', '||period||', '||return||', '||return||', 'tim:', '||leftparen||', 'suggesting', 'a', 'kiss', 'to', 'elaine', '||rightparen||', 'eh', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrugging', 'it', 'off', '||rightparen||', 'eh', '||period||', '||return||', '||return||', 'tim:', '||leftparen||', 'accepting', '||rightparen||', 'oh', '||period||', '||leftparen||', 'turns', 'to', 'george', '||rightparen||', 'hey', '||comma||', 'george', '||comma||', 'thanks', 'again', 'for', 'getting', 'me', 'those', 'yankee', 'tickets', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||period||', 'still', 'in', 'good', 'with', 'the', 'ground', 'crew', '||period||', '||leftparen||', 'laghs', '||rightparen||', '||return||', '||return||', 'tim:', '||leftparen||', 'notices', 'a', 'woman', 'walking', 'by', '||rightparen||', 'oh', '||comma||', 'hey', '||comma||', 'listen', '||comma||', "i'd", 'better', 'circulate', '||period||', '||period||', '||leftparen||', 'moving', 'over', 'to', 'the', 'woman', '||rightparen||', 'happy', 'chanukah', '||comma||', 'tiffany', '||exclammark||', '||leftparen||', 'they', 'both', 'move', 'off', 'camera', '||rightparen||', '||return||', '||return||', 'elaine:', 'this', 'place', 'is', 'like', 'studio', '54', 'with', 'a', 'menorah', '||period||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'get', 'some', 'more', 'of', 'these', 'kosher', 'cocktail', 'franks', '||period||', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||leftparen||', 'sees', 'a', 'guy', 'looking', 'at', 'her', '||rightparen||', 'i', 'got', 'denim', 'vest', 'checking', 'me', 'out', '||period||', '||leftparen||', 'laughs', '||rightparen||', 'fake', 'phone', "number's", 'coming', 'out', 'tonight', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'a', 'standard', 'fake', '||questionmark||', '||return||', '||return||', 'elaine:', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'notices', 'an', 'attractive', 'woman', 'walking', 'by', '||comma||', 'starts', 'to', 'follow', 'her', '||rightparen||', "that's", 'neat', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'holds', 'onto', "jerry's", 'arm', '||rightparen||', 'no', '||comma||', 'please', '||exclammark||', 'denim', 'vest', '||exclammark||', "he's", 'smoothing', 'it', '||exclammark||', 'jerry', '||exclammark||', 'god', '||exclammark||', '||leftparen||', 'jerry', 'excapes', "elaine's", 'grasp', '||comma||', 'moves', 'over', 'to', 'the', 'woman', '||period||', 'the', 'man', 'wearing', 'a', 'denim', 'vest', 'moves', 'over', 'to', 'elaine', '||period||', '||rightparen||', '||return||', '||return||', 'denim', 'vest:', 'hi', '||exclammark||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', "i'm", 'jerry', '||period||', '||return||', '||return||', 'woman:', 'hi', '||period||', 'jerry', 'you', 'might', 'not', 'know', 'it', 'to', 'look', 'at', 'me', '||comma||', 'but', 'i', 'can', 'run', 'really', '||comma||', 'really', 'fast', '||period||', '||return||', '||return||', 'elaine:', 'nice', 'vest', '||period||', 'i', 'like', 'the', '||period||', '||period||', 'big', 'metal', 'buttons', '||return||', '||return||', 'denim', 'vest:', "they're", 'snaps', '||period||', 'listen', '||comma||', 'maybe', 'we', 'should', '||comma||', 'uh', '||comma||', 'go', 'out', 'some', 'time', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', "don't", 'i', 'give', 'you', 'my', 'phone', 'number', '||questionmark||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', "how'd", 'it', 'go', 'with', 'the', 'cocktail', 'franks', '||questionmark||', '||return||', '||return||', 'george:', 'great', '||exclammark||', 'i', 'ate', 'the', 'entire', 'platter', '||exclammark||', 'had', 'to', 'call', 'in', 'sick', 'today', '||period||', '||return||', '||return||', 'jerry:', "didn't", 'you', 'call', 'in', 'sick', 'yesterday', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'i', 'work', 'for', 'kruger', 'industrial', 'smoothing', '||quotemark||', 'we', "don't", 'care', '||comma||', 'and', 'it', 'shows', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'notices', 'george', 'brought', 'hhis', 'mail', '||rightparen||', "you're", 'gonna', 'open', 'your', 'mail', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'at', 'least', "i'm", 'bringing', 'something', 'to', 'this', '||period||', '||leftparen||', 'starts', 'flipping', 'through', 'envelopes', '||comma||', 'reads', 'one', '||rightparen||', '||quotemark||', 'have', 'you', 'seen', 'me', '||questionmark||', '||quotemark||', '||leftparen||', 'flicks', 'it', 'aside', '||rightparen||', 'nope', '||period||', '||leftparen||', 'looks', 'at', 'next', 'envelope', '||rightparen||', 'woah', '||comma||', 'something', 'from', 'whatley', '||period||', '||return||', '||return||', 'jerry:', 'see', '||questionmark||', 'you', 'give', '||comma||', 'and', 'you', 'get', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'reading', 'the', 'card', 'from', 'whatley', '||rightparen||', '||quotemark||', 'this', 'holiday', 'season', 'a', 'donation', 'has', 'been', 'made', 'in', 'your', 'name', 'to', 'the', "children's", 'alliance', '||period||', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'nice', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'him', "yankee's", 'tickets', '||exclammark||', 'he', 'got', 'me', 'a', 'piece', 'of', 'paper', 'saying', '||quotemark||', "i've", 'given', 'your', 'gift', 'to', 'someone', 'else', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'to', 'a', "children's", 'charity', '||exclammark||', '||return||', '||return||', 'george:', "don't", 'you', 'see', 'how', 'wrong', 'that', 'is', '||questionmark||', '||exclammark||', "where's", 'your', 'christmas', 'spirit', '||questionmark||', 'and', 'eye', 'for', 'an', 'eye', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'waitress', '||rightparen||', 'oh', '||comma||', 'nothing', 'for', 'me', '||period||', '||leftparen||', 'waitress', 'leaves', '||rightparen||', "i'm", 'going', 'to', '||quotemark||', 'atomic', 'sub', '||quotemark||', 'later', '||period||', '||return||', '||return||', 'jerry:', '||quotemark||', 'atomic', 'sub', '||quotemark||', '||questionmark||', 'why', 'are', 'you', 'eating', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'got', 'a', 'card', '||comma||', 'and', 'they', 'stamp', 'it', 'every', 'time', 'i', 'buy', 'a', 'sub', '||period||', '24', 'stamps', '||comma||', 'and', 'i', 'become', 'a', 'submarine', '||leftparen||', 'makes', 'a', 'gesture', '||rightparen||', 'captain', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'embarrassed', '||rightparen||', 'free', 'sub', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', "it's", 'a', 'card', 'from', 'my', 'dad', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'it', '||questionmark||', '||leftparen||', 'grabs', 'the', 'card', 'from', 'george', '||comma||', 'he', 'tries', 'to', 'stop', 'her', '||comma||', 'but', 'fails', '||period||', 'she', 'reads', 'it', 'out', 'loud', '||period||', '||rightparen||', '||quotemark||', 'dear', 'son', '||comma||', 'happy', 'festivus', '||period||', '||quotemark||', 'what', 'is', 'festivus', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'nothing', '||comma||', 'stop', 'it', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'when', 'george', 'was', 'growing', 'up', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupting', '||rightparen||', 'jerry', '||comma||', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'his', 'father', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'hated', 'all', 'the', 'commercial', 'and', 'religious', 'aspects', 'of', 'christmas', '||comma||', 'so', 'he', 'made', 'up', 'his', 'own', 'holiday', '||period||', '||return||', '||return||', 'elaine:', 'ohhhh', '||period||', '||period||', 'and', 'another', 'piece', 'of', 'the', 'puzzle', 'falls', 'into', 'place', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pleading', '||rightparen||', 'alright', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'and', 'instead', 'of', 'a', 'tree', '||comma||', "didn't", 'your', 'father', 'put', 'up', 'an', 'aluminum', 'pole', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||exclammark||', 'stop', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'and', "weren't", 'there', 'a', 'feats', 'of', 'strength', 'that', 'always', 'ended', 'up', 'with', 'you', 'crying', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'take', 'it', 'anymore', '||exclammark||', "i'm", 'going', 'to', 'work', '||exclammark||', 'are', 'you', 'happy', 'now', '||questionmark||', '||exclammark||', '||leftparen||', 'gathers', 'his', 'things', '||comma||', 'and', 'runs', 'out', 'of', 'the', 'coffee', 'shop', '||period||', 'elaine', 'and', 'jerry', 'laugh', 'hysterically', '||rightparen||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', "can't", 'believe', 'it', '||exclammark||', "i've", 'lost', 'my', '||quotemark||', 'atomic', 'sub', '||quotemark||', 'card', '||exclammark||', '||period||', '||period||', 'oh', 'no', '||exclammark||', 'i', 'bet', 'i', 'wrote', 'that', 'fake', 'number', 'on', 'the', 'back', 'of', 'it', 'when', 'i', 'gave', 'it', 'to', 'denim', 'vest', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'eaten', '23', 'bad', 'subs', '||comma||', 'i', 'just', 'need', '1', 'more', '||exclammark||', "it's", 'like', 'a', 'long', '||comma||', 'bad', 'movie', '||comma||', 'but', 'you', 'want', 'to', 'see', 'the', 'end', 'of', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', 'walk', 'out', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'then', '||comma||', "it's", 'like', 'a', 'boring', 'book', '||comma||', 'but', 'you', 'gotta', 'finish', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', 'wait', 'for', 'the', 'movie', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'irritated', '||comma||', 'and', 'through', 'clinched', 'teeth', '||rightparen||', 'i', 'want', 'that', 'free', 'sub', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'need', 'the', 'card', '||period||', 'high', '||dash||', 'end', 'hoagie', 'outfit', 'like', 'that', '||comma||', "it's", 'all', 'computerized', '||exclammark||', '||leftparen||', 'snaps', '||rightparen||', "they're", 'cloning', 'sheep', 'now', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'correcting', '||rightparen||', 'no', '||comma||', "they're", 'not', 'cloning', 'sheep', '||period||', "it's", 'the', 'same', 'sheep', '||exclammark||', 'i', 'saw', 'harry', 'blackstone', 'do', 'that', 'trick', 'with', 'two', 'goats', 'and', 'a', 'handkerchief', 'on', 'the', 'old', 'dean', 'martin', 'show', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'why', "don't", 'you', 'just', 'try', 'your', 'blow', '||dash||', 'off', 'number', 'and', 'see', 'if', "he's", 'called', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'answering', 'phone', '||rightparen||', 'yeah', '||comma||', 'go', '||exclammark||', 'wha', '||period||', '||period||', 'really', '||questionmark||', 'yeah', '||comma||', 'ok', '||period||', 'yeah', '||exclammark||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'great', 'news', '||exclammark||', 'yeah', '||comma||', 'the', 'strike', 'has', 'been', 'settled', '||period||', "i'm", 'going', 'back', 'to', 'work', '||period||', '||return||', '||return||', 'jerry:', 'what', 'strike', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'h&h', 'bagels', '||period||', "that's", 'where', 'i', 'worked', '||period||', '||return||', '||return||', 'jerry:', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'worked', '||questionmark||', '||return||', '||return||', 'jerry:', 'bagels', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'look', '||comma||', 'see', '||period||', 'i', 'still', 'have', 'my', 'business', 'card', '||period||', '||leftparen||', 'pulls', 'it', 'out', '||comma||', 'hands', 'it', 'to', 'elaine', '||rightparen||', 'yeah', '||comma||', "we've", 'been', 'on', 'strike', 'for', '12', 'years', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'remember', 'seeing', 'those', 'guys', 'picketing', 'out', 'there', '||comma||', 'but', 'i', "haven't", 'seen', 'them', 'in', 'a', 'long', 'time', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'h&h', "wouldn't", 'let', 'us', 'use', 'their', 'bath', 'room', 'while', 'we', 'were', 'picketing', '||period||', 'it', 'put', 'a', 'cramp', 'on', 'our', 'solidarity', '||period||', '||return||', '||return||', 'elaine:', 'what', 'were', 'your', '||period||', '||period||', 'demands', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', '5', '||period||', '35', 'an', 'hour', '||period||', 'and', "that's", 'what', "they're", 'paying', 'now', '||period||', '||return||', '||return||', 'elaine:', 'i', 'believe', "that's", 'the', 'new', 'minimum', 'wage', '||period||', '||return||', '||return||', 'kramer:', 'now', 'you', 'know', 'who', 'to', 'thank', 'for', 'that', '||exclammark||', '||period||', '||period||', 'alright', '||comma||', "i've", 'got', 'to', 'go', '||period||', '||leftparen||', 'heads', 'for', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'why', "didn't", 'you', 'ever', 'mention', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', "didn't", 'want', 'you', 'to', 'know', 'i', 'was', 'out', 'of', 'work', '||period||', "it's", 'embarrassing', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||leftparen||', 'scene', 'ends', '||rightparen||', '||return||', '||return||', '[setting:', 'h&h', 'bagel', 'shop]', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'everybody', '||exclammark||', "i'm", 'back', '||exclammark||', '||return||', '||return||', 'manager:', 'who', 'are', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'cosmo', 'kramer', '||period||', '||period||', 'strikes', 'over', '||period||', '||return||', '||return||', 'manager:', 'oh', 'yeah', '||exclammark||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||period||', '||period||', 'wha', '||dash||', "didn't", 'any', 'of', 'the', 'guys', 'come', 'back', '||questionmark||', '||return||', '||return||', 'manager:', 'no', '||comma||', 'i', '||quotemark||', 'm', 'sure', 'they', 'all', 'got', 'jobs', '||period||', '||period||', 'like', '||comma||', 'ten', 'years', 'ago', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'man', '||period||', 'makes', 'you', 'wonder', 'what', 'it', 'was', 'all', 'for', '||period||', '||period||', '||return||', '||return||', 'manager:', 'i', 'could', 'use', 'someone', 'for', 'the', 'holidays', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'alright', '||exclammark||', 'toss', 'me', 'an', 'apron', '||comma||', "let's", 'bagel', '||exclammark||', '||leftparen||', 'takes', 'off', 'his', 'coat', '||comma||', 'puts', 'it', 'in', 'the', 'display', 'case', '||comma||', 'then', 'turns', 'to', 'see', 'a', 'plate', 'full', 'of', 'bagels', '||period||', '||rightparen||', 'what', 'are', 'those', '||questionmark||', '||return||', '||return||', 'manager:', 'those', 'are', 'rasin', 'bagels', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'picks', 'one', 'up', '||comma||', "he's", 'mesmerized', '||rightparen||', 'i', 'never', 'thought', "i'd", 'live', 'to', 'see', 'that', '||period||', '||period||', '||return||', '||return||', '[setting:', 'horse', 'track', 'betting]', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'anyway', '||comma||', "i've", 'been', 'giving', 'out', 'your', 'number', 'as', 'my', 'standard', 'fake', '||period||', '||return||', '||return||', 'bookie:', 'so', '||period||', "you're", 'elaine', 'benes', '||period||', "we've", 'been', 'getting', 'calls', 'fro', 'you', 'for', '5', 'years', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'listen', '||comma||', 'when', 'this', 'guy', 'calls', '||comma||', 'if', 'you', 'could', 'just', 'give', 'him', 'my', 'real', 'number', '||period||', '||period||', '||return||', '||return||', 'bookie:', '||leftparen||', 'interrupting', '||rightparen||', 'hey', '||comma||', 'charlie', '||exclammark||', 'guess', "who's", 'here', '||period||', 'elaine', 'benes', '||period||', '||return||', '||return||', 'charlie:', 'elaine', 'benes', '||questionmark||', '||exclammark||', '||return||', '||return||', 'bookie:', 'you', 'make', 'a', 'lot', 'of', 'man', 'friends', '||period||', 'you', 'know', "who's", 'a', 'man', '||questionmark||', 'charlie', 'here', '||comma||', "he's", 'a', 'man', '||period||', 'you', 'know', 'who', 'else', '||questionmark||', 'me', '||period||', "i'm", 'a', 'man', '||period||', '||return||', '||return||', 'charlie:', '||leftparen||', 'faintly', '||rightparen||', "i'm", 'a', 'man', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||period||', '||period||', 'my', '||period||', '||period||', '||return||', '||return||', 'bookie:', "i'll", 'have', 'this', 'best', 'guy', 'call', 'your', 'real', 'number', '||period||', 'you', 'just', '||comma||', 'uh', '||comma||', 'give', 'it', 'to', 'me', '||period||', 'and', 'that', 'way', '||comma||', "i'll", 'have', 'it', '||period||', '||leftparen||', 'slides', 'a', 'pad', 'over', 'to', 'elaine', 'so', 'she', 'can', 'write', 'it', 'down', '||rightparen||', '||return||', '||return||', 'elaine:', 'my', 'number', '||questionmark||', 'ohh', '||period||', '||period||', '||leftparen||', 'looks', 'at', "kramer's", 'business', 'card', '||rightparen||', 'okay', '||period||', '||period||', 'uh', '||comma||', 'well', '||comma||', 'there', 'you', 'go', '||period||', '||leftparen||', 'writes', "h&h's", 'number', 'down', '||rightparen||', 'and', '||comma||', 'uh', '||comma||', 'tell', 'you', 'what', '||period||', '||period||', '||leftparen||', 'looks', 'at', 'the', 'board', 'in', 'the', 'back', '||rightparen||', 'put', 'a', 'sawbuck', 'on', 'captain', 'nemo', 'in', 'the', 'third', 'at', 'belmont', '||period||', '||return||', '||return||', '[setting:', 'classy', 'restaurant]', '||return||', '||return||', 'tim:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'tim', '||period||', '||return||', '||return||', 'tim:', "what's", 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', "i'm", 'having', 'dinner', 'with', 'a', 'girl', 'i', 'met', 'at', 'your', 'party', '||period||', '||return||', '||return||', 'tim:', 'mazel', 'tov', '||period||', '||return||', '||return||', 'gwen:', 'jerry', '||period||', '||period||', 'hi', '||period||', '||return||', '||return||', 'jerry:', 'gwen', '||questionmark||', '||return||', '||return||', 'gwen:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'willing', 'to', 'believe', 'how', 'much', 'uglier', 'she', 'is', '||rightparen||', 'really', '||questionmark||', '||return||', '||return||', 'gwen:', 'yeah', '||exclammark||', 'come', 'on', '||comma||', 'our', 'table', 'is', 'ready', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'george:', 'so', '||comma||', 'attractive', 'one', 'day', '||dash||', 'not', 'attractive', 'the', 'next', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'you', 'come', 'across', 'this', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', 'am', 'familiar', 'with', 'this', 'syndrome', '||dash||', '||dash||', "she's", 'a', 'two', '||dash||', 'face', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'relating', '||rightparen||', 'like', 'the', 'batman', 'villain', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'annoyed', '||rightparen||', 'if', 'that', 'helps', 'you', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'if', 'i', 'ask', 'her', 'out', 'again', '||dash||', 'i', "don't", 'know', "who's", 'showing', 'up', 'the', 'good', '||comma||', 'the', 'bad', '||comma||', 'or', 'the', 'ugly', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'identifying', 'what', 'jerry', 'said', '||rightparen||', 'clint', 'eastwood', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'check', 'this', 'out', '||period||', 'i', 'gotta', 'give', 'out', 'christmas', 'presents', 'to', 'everyone', 'down', 'at', 'kruger', '||comma||', 'so', "i'm", 'pulling', 'a', 'whatley', '||period||', '||leftparen||', 'give', 'a', 'christmas', 'card', 'to', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', 'it', '||rightparen||', '||quotemark||', 'a', 'donation', 'has', 'been', 'made', 'in', 'your', 'name', 'to', 'the', 'human', 'fund', '||period||', '||quotemark||', '||dash||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'with', 'pride', '||rightparen||', 'made', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'continuing', 'reading', '||rightparen||', '||quotemark||', 'the', 'human', 'fund', '||period||', 'money', 'for', 'people', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'has', 'a', 'certain', 'understated', 'stupidity', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'once', 'again', '||comma||', 'identifying', '||rightparen||', 'the', 'outlaw', 'of', 'josey', 'whales', '||exclammark||', '||return||', '||return||', 'jerry:', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||comma||', 'gentlemen', '||period||', '||period||', 'bagels', 'on', 'the', 'house', '||exclammark||', '||return||', '||return||', 'jerry:', 'how', 'was', 'your', 'first', 'day', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'fantastic', '||exclammark||', '||leftparen||', 'jerry', 'and', 'george', 'both', 'pick', 'out', 'a', 'bagel', '||rightparen||', 'it', 'felt', 'so', 'good', 'to', 'get', 'my', 'hands', 'back', 'in', 'taht', 'dough', '||period||', '||return||', '||return||', 'jerry:', 'your', 'hands', 'were', 'in', 'the', 'dough', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'i', "didn't", 'make', 'these', 'bagels', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'both', 'take', 'a', 'bite', '||rightparen||', 'yeah', '||comma||', "they're", 'day', '||dash||', 'olds', '||period||', 'the', 'homeless', "won't", 'even', 'touch', 'them', '||period||', '||leftparen||', 'jerry', 'and', 'george', 'stop', 'eating', '||rightparen||', 'oh', '||comma||', 'we', 'try', 'to', 'fool', 'them', 'by', 'putting', 'a', 'few', 'fresh', 'ones', 'on', 'top', '||comma||', 'but', 'they', 'dig', '||period||', '||period||', 'they', '||comma||', 'they', 'test', '||period||', '||return||', '||return||', 'george:', 'alright', '||period||', 'uh', '||comma||', 'well', '||comma||', "i'm", 'out', 'of', 'here', '||period||', '||leftparen||', 'gets', 'up', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'jerry:', 'happy', 'festivus', '||exclammark||', '||return||', '||return||', 'kramer:', "what's", 'festivus', '||questionmark||', '||return||', '||return||', 'jerry:', 'when', 'george', 'was', 'growing', 'up', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'interrupting', '||rightparen||', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'his', 'father', '||period||', '||period||', '||return||', '||return||', 'george:', 'stop', 'it', '||exclammark||', "it's", 'nothing', '||period||', "it's", 'a', 'stupid', 'holiday', 'my', 'father', 'invented', '||period||', 'it', "doesn't", 'exist', '||exclammark||', '||return||', '||return||', 'elaine:', 'happy', 'festivus', '||comma||', 'georgie', '||period||', '||return||', '||return||', 'kramer:', 'frank', 'invented', 'a', 'holiday', '||questionmark||', "he's", 'so', 'prolific', '||exclammark||', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'listen', '||comma||', 'i', 'got', 'a', 'little', 'phone', 'relay', 'going', '||comma||', 'so', '||comma||', 'if', 'a', 'guy', 'calls', 'h&h', 'and', "he's", 'looking', 'for', 'me', '||comma||', 'you', 'take', 'a', 'message', '||period||', '||return||', '||return||', 'jerry:', "you're", 'still', 'trying', 'to', 'gget', 'that', 'free', 'sub', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'i', 'have', 'spent', 'a', 'lot', 'of', 'time', '||comma||', 'and', 'i', 'have', 'eaten', 'a', 'lot', 'of', 'crap', 'to', 'get', 'to', 'where', 'i', 'am', 'today', '||period||', 'and', 'i', 'am', 'not', 'throwing', 'it', 'all', 'away', 'now', '||period||', '||return||', '||return||', 'jerry:', 'is', 'there', 'a', "captain's", 'hat', 'involved', 'in', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'maybe', '||period||', '||return||', '||return||', '[setting:', 'h&h', 'bagel', 'shop]', '||return||', '||return||', 'frank:', 'kramer', '||comma||', 'i', 'got', 'your', 'message', '||period||', 'i', "haven't", 'celebrated', 'festivus', 'in', 'years', '||exclammark||', 'what', 'is', 'your', 'interest', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'just', 'tell', 'me', 'everything', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'frank:', 'many', 'christmases', 'ago', '||comma||', 'i', 'went', 'to', 'buy', 'a', 'doll', 'for', 'my', 'son', '||period||', 'i', 'reach', 'for', 'the', 'last', 'one', 'they', 'had', '||dash||', 'but', 'so', 'did', 'another', 'man', '||period||', 'as', 'i', 'rained', 'blows', 'opon', 'him', '||comma||', 'i', 'realized', 'there', 'had', 'to', 'be', 'another', 'way', '||exclammark||', '||return||', '||return||', 'kramer:', 'what', 'happened', 'to', 'the', 'doll', '||questionmark||', '||return||', '||return||', 'frank:', 'it', 'was', 'destroyed', '||period||', 'but', 'out', 'of', 'that', '||comma||', 'a', 'new', 'holiday', 'was', 'born', '||period||', '||quotemark||', 'a', 'festivus', 'for', 'the', 'rest', 'of', 'us', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', 'that', 'musta', 'been', 'some', 'kind', 'of', 'doll', '||period||', '||return||', '||return||', 'frank:', 'she', 'was', '||period||', '||return||', '||return||', '[setting:', 'kruger', 'office', 'building]', '||return||', '||return||', 'george:', 'merry', 'christmas', '||comma||', 'merry', 'christmas', '||exclammark||', '||leftparen||', 'co', '||dash||', 'worker', 'gives', 'a', 'gift', 'to', 'george', '||rightparen||', 'oh', '||comma||', 'sandy', '||exclammark||', 'here', 'is', 'a', 'little', 'something', 'for', 'you', '||period||', '||period||', '||leftparen||', 'hands', 'her', 'a', 'card', '||rightparen||', '||return||', '||return||', 'sandy:', '||leftparen||', 'after', 'reading', 'the', 'cheap', 'gift', '||comma||', "she's", 'suddenly', 'unimpressed', '||rightparen||', '||period||', '||period||', 'oh', '||period||', '||period||', 'thanks', '||period||', '||leftparen||', 'walks', 'off', '||rightparen||', '||return||', '||return||', 'george:', 'phil', '||comma||', 'i', 'loved', 'those', 'cigars', '||exclammark||', 'incoming', '||exclammark||', '||leftparen||', 'flicks', 'his', 'card', 'tward', 'phil', '||rightparen||', '||return||', '||return||', 'phil:', 'ow', '||exclammark||', '||return||', '||return||', 'george:', 'aw', '||comma||', 'mr', '||period||', 'kruger', '||comma||', 'sir', '||period||', 'merry', 'christmas', '||exclammark||', '||leftparen||', 'hands', 'him', 'a', 'card', '||rightparen||', '||return||', '||return||', 'kruger:', 'not', 'if', 'you', 'could', 'see', 'our', 'books', '||period||', '||period||', "what's", 'this', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'human', 'fund', '||period||', '||return||', '||return||', 'kruger:', 'whatever', '||period||', '||leftparen||', 'walks', 'off', '||rightparen||', '||return||', '||return||', 'george:', 'exactly', '||period||', '||leftparen||', 'sees', 'an', 'off', '||dash||', 'camera', 'co', '||dash||', 'worker', '||rightparen||', 'erica', '||exclammark||', '||return||', '||return||', '[setting:', 'h&h', 'bagel', 'shop]', '||return||', '||return||', 'frank:', 'and', 'at', 'the', 'festivus', 'dinner', '||comma||', 'you', 'gather', 'your', 'family', 'around', '||comma||', 'and', 'you', 'tell', 'them', 'all', 'the', 'ways', 'they', 'have', 'disappointed', 'you', 'over', 'the', 'past', 'year', '||period||', '||return||', '||return||', 'kramer:', 'is', 'there', 'a', 'tree', '||questionmark||', '||return||', '||return||', 'frank:', 'no', '||period||', 'instead', '||comma||', "there's", 'a', 'pole', '||period||', 'it', 'requires', 'not', 'decoration', '||period||', 'i', 'find', 'tinsel', 'distracting', '||period||', '||return||', '||return||', 'kramer:', 'frank', '||comma||', 'this', 'new', 'holiday', 'of', 'yours', 'is', 'scratching', 'me', 'right', 'where', 'i', 'itch', '||period||', '||return||', '||return||', 'frank:', "let's", 'do', 'it', 'then', '||exclammark||', 'festivus', 'is', 'back', '||exclammark||', "i'll", 'get', 'the', 'pole', 'out', 'of', 'the', 'crawl', 'space', '||period||', '||leftparen||', 'turns', 'to', 'leave', '||comma||', 'meets', 'up', 'with', 'elaine', '||rightparen||', '||return||', '||return||', 'elaine:', 'hello', '||comma||', 'frank', '||period||', '||return||', '||return||', 'frank:', 'hello', '||comma||', 'woman', '||period||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', 'kramer', '||exclammark||', 'kramer', '||period||', '||period||', 'any', 'word', 'from', 'the', 'vest', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||leftparen||', 'to', 'manager', 'of', 'h&h', '||rightparen||', 'ah', '||comma||', 'listen', '||comma||', 'harry', '||comma||', 'i', 'need', 'the', '23rd', 'off', '||period||', '||return||', '||return||', 'manager:', 'hey', '||exclammark||', 'i', 'hired', 'you', 'to', 'work', 'during', 'the', 'holidays', '||period||', 'this', 'is', 'the', 'holidays', '||period||', '||return||', '||return||', 'kramer:', 'but', "it's", 'festivus', '||period||', '||return||', '||return||', 'manager:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', "you're", 'infringing', 'on', 'my', 'right', 'to', 'celebrate', 'new', 'holidays', '||period||', '||period||', '||return||', '||return||', 'manager:', "that's", 'not', 'a', 'right', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'going', 'to', 'be', '||exclammark||', 'because', "i'm", 'going', 'back', 'on', 'strike', '||period||', 'come', 'on', 'elaine', '||period||', '||leftparen||', 'takes', 'of', 'his', 'apron', '||comma||', 'and', 'goes', 'for', 'his', 'coat', '||rightparen||', "it's", 'a', 'walk', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'got', 'to', 'stay', 'here', 'and', 'wait', 'for', 'the', 'call', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', "you're", 'siding', 'with', 'management', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', 'just', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'interrupting', '||rightparen||', 'scab', '||exclammark||', 'scab', '||exclammark||', '||leftparen||', 'pointing', 'at', 'elaine', '||rightparen||', 'scab', '||exclammark||', '||return||', '||return||', '[setting:', 'taxi', 'cab]', '||return||', '||return||', 'gwen:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'am', 'i', 'glad', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'gwen:', 'you', 'were', 'expecting', 'someone', 'else', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'never', 'know', '||period||', '||return||', '||return||', 'gwen:', '||leftparen||', 'to', 'driver', '||rightparen||', 'you', 'know', '||comma||', 'you', 'might', 'want', 'to', 'take', 'the', 'tunnel', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'uh', '||comma||', 'what', 'do', 'you', 'feel', 'like', 'eating', '||questionmark||', 'chinese', 'or', 'italian', '||questionmark||', '||return||', '||return||', 'gwen:', 'i', 'can', 'go', 'either', 'way', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', '||rightparen||', "you're", 'telling', 'me', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'george:', 'so', '||comma||', 'she', 'was', 'switching', '||questionmark||', 'back', 'and', 'forth', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', 'the', 'only', 'place', 'she', 'always', 'looked', 'good', 'was', 'in', 'that', 'back', 'booth', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'just', 'bring', 'her', 'here', '||period||', 'this', 'is', 'all', 'you', 'really', 'need', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'just', 'keep', 'bringing', 'her', 'to', 'the', 'coffee', 'shop', '||period||', 'i', 'mean', '||comma||', 'what', 'if', 'things', '||comma||', 'you', 'know', '||comma||', 'progress', '||questionmark||', '||return||', '||return||', 'george:', 'lights', 'out', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'give', 'it', 'a', 'shot', '||exclammark||', 'i', 'do', 'really', 'like', 'this', 'coffee', 'shop', '||period||', 'nice', 'cuff', 'links', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pointing', 'to', 'them', '||rightparen||', 'office', 'christmas', 'gift', '||period||', 'i', 'tell', 'you', '||comma||', 'this', 'human', 'fund', 'is', 'a', 'gold', 'mine', '||exclammark||', '||return||', '||return||', 'jerry:', "that's", 'not', 'a', 'french', 'cuff', 'shirt', '||comma||', 'you', 'know', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', 'i', 'cut', 'the', 'button', 'off', 'and', 'poked', 'a', 'hole', 'with', 'a', 'letter', 'opener', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that's", 'classy', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'happy', 'festivus', '||period||', '||return||', '||return||', 'george:', 'what', 'is', 'that', '||questionmark||', 'is', 'taht', 'the', 'pole', '||questionmark||', '||exclammark||', '||return||', '||return||', 'frank:', 'george', '||comma||', 'festivus', 'is', 'your', 'heritage', '||dash||', "it's", 'part', 'of', 'who', 'you', 'are', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sulking', '||rightparen||', "that's", 'why', 'i', 'hate', 'it', '||period||', '||return||', '||return||', 'kramer:', "there's", 'a', 'big', 'dinner', 'tuesday', 'night', 'at', "frank's", 'house', '||dash||', "everyone's", 'invited', '||period||', '||return||', '||return||', 'frank:', 'george', '||comma||', "you're", 'forgetting', 'how', 'much', 'festivus', 'has', 'meant', 'to', 'us', 'all', '||period||', 'i', 'brought', 'one', 'of', 'the', 'casette', 'tapes', '||period||', '||leftparen||', 'franks', 'pushes', 'play', '||comma||', 'george', 'as', 'a', 'child', 'celebrating', 'festivus', 'is', 'heard', '||rightparen||', '||return||', '||return||', 'frank:', 'read', 'that', 'poem', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'complaining', '||rightparen||', 'i', "can't", 'read', 'it', '||period||', 'i', 'need', 'my', 'glasses', '||exclammark||', '||return||', '||return||', 'frank:', 'you', "don't", 'need', 'glasses', '||comma||', "you're", 'just', 'weak', '||exclammark||', "you're", 'weak', '||exclammark||', '||return||', '||return||', 'estelle:', 'leave', 'him', 'alone', '||exclammark||', '||return||', '||return||', 'frank:', 'alright', '||comma||', 'george', '||period||', "it's", 'time', 'for', 'the', 'feats', 'of', 'strength', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'no', '||exclammark||', 'turn', 'it', 'off', '||exclammark||', 'no', 'feats', 'of', 'strength', '||exclammark||', '||leftparen||', 'gets', 'up', 'and', 'starts', 'running', 'out', 'of', 'the', 'coffee', 'shop', '||rightparen||', 'i', 'hate', 'festivus', '||exclammark||', '||return||', '||return||', 'frank:', 'we', 'had', 'some', 'good', 'times', '||period||', '||return||', '||return||', 'gwen:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'i', 'there', '||period||', 'this', 'is', 'kramer', '||comma||', 'and', 'frank', '||period||', '||return||', '||return||', 'gwen:', 'hi', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shocked', 'at', 'her', 'ugliness', '||comma||', 'he', 'stammers', '||rightparen||', 'hello', '||period||', '||return||', '||return||', 'gwen:', 'so', '||comma||', 'you', 'ready', 'to', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'why', "don't", 'we', 'stay', 'here', '||questionmark||', 'the', 'back', 'booth', 'just', 'opened', 'up', '||period||', '||leftparen||', 'they', 'both', 'walk', 'to', 'the', 'booth', 'and', 'sit', 'down', '||period||', 'suddenly', '||comma||', 'gwen', 'is', 'attractive', '||rightparen||', 'now', 'this', 'is', 'a', 'good', 'looking', 'booth', '||period||', '||return||', '||return||', '[setting:', 'h&h', 'bagel', 'shop]', '||return||', '||return||', 'kramer:', 'protect', 'festivus', '||exclammark||', 'hey', '||comma||', 'no', 'bagels', '||comma||', 'no', 'bagels', '||comma||', 'no', 'bagels', '||comma||', '||leftparen||', 'continues', 'to', 'chant', '||rightparen||', '||return||', '||return||', 'manager:', '||leftparen||', 'to', 'a', 'waiting', 'elaine', '||rightparen||', 'lady', '||comma||', 'if', 'you', 'want', 'a', 'sandwich', '||comma||', "i'll", 'make', 'you', 'a', 'sandwich', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'whining', '||rightparen||', 'i', 'want', 'the', 'one', 'that', 'i', 'earned', '||period||', '||leftparen||', 'phone', 'rings', '||rightparen||', "i'll", 'get', 'it', '||period||', "i'll", 'get', 'it', '||exclammark||', '||leftparen||', 'into', 'phone', '||rightparen||', 'h&h', '||comma||', 'and', 'elaine', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'a', 'phone', 'booth', 'right', 'outside', 'the', 'store', '||rightparen||', 'elaine', '||comma||', 'you', 'should', 'get', 'out', 'of', 'there', '||period||', 'i', 'sabotaged', 'the', 'bagel', 'machine', 'last', 'night', '||period||', "it's", 'going', 'down', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', "you've", 'been', 'warned', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||exclammark||', '||leftparen||', 'waves', 'at', 'him', '||rightparen||', '||return||', '||return||', 'worker:', 'hey', '||comma||', 'the', 'steam', "valve's", 'broke', '||period||', '||return||', '||return||', 'manager:', 'can', 'we', 'still', 'make', 'bagels', '||questionmark||', '||return||', '||return||', 'worker:', 'sure', '||period||', "it's", 'just', 'a', 'little', 'steamy', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'how', 'do', 'you', 'like', 'your', 'bagels', 'now', '||questionmark||', '||exclammark||', '||return||', '||return||', '[setting:', 'kruger', 'building]', '||return||', '||return||', 'kruger:', 'george', '||comma||', 'i', 'got', 'something', 'for', 'you', '||period||', '||leftparen||', 'pulls', 'a', 'check', 'from', 'his', 'pocket', '||rightparen||', "i'm", 'suppose', 'to', 'find', 'a', 'charity', 'and', 'throw', 'some', 'of', 'the', "company's", 'money', 'at', 'it', '||period||', 'they', 'all', 'seem', 'the', 'same', 'to', 'me', '||comma||', 'so', '||comma||', "what's", 'the', 'difference', '||questionmark||', '||leftparen||', 'hands', 'the', 'check', 'to', 'george', '||rightparen||', '||return||', '||return||', 'george:', '20', 'thousand', 'dollars', '||questionmark||', '||return||', '||return||', 'kruger:', 'made', 'out', 'to', 'the', 'human', 'fund', '||period||', '||leftparen||', 'tries', 'to', 'enter', 'his', 'office', '||comma||', 'but', "it's", 'locked', '||rightparen||', 'oh', '||comma||', 'damn', '||period||', "i've", 'locked', 'myself', 'out', 'of', 'my', 'office', 'again', '||period||', 'oh', 'well', '||period||', "i'm", 'going', 'home', '||period||', '||return||', '||return||', '[setting:', 'coffee', 'shop]', '||return||', '||return||', 'gwen:', 'jerry', '||comma||', 'how', 'many', 'times', 'do', 'we', 'have', 'to', 'come', 'to', 'this', '||period||', '||period||', 'place', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', "it's", 'our', 'place', '||period||', '||return||', '||return||', 'gwen:', 'i', 'just', 'found', 'a', 'rubber', 'band', 'in', 'my', 'soup', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||period||', 'i', 'know', "who's", 'cooking', 'today', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'surprise', '||comma||', 'surprise', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'georgie', '||exclammark||', '||return||', '||return||', 'gwen:', 'i', 'think', "i'm", 'just', 'gonna', 'go', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'be', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sees', "gwen's", 'meal', '||rightparen||', 'hey', '||comma||', 'soup', '||period||', '||return||', '||return||', 'jerry:', 'she', "didn't", 'touch', 'it', '||period||', '||return||', '||return||', 'george:', 'ohh', '||period||', '||period||', 'paco', '||exclammark||', '||leftparen||', 'flicks', 'rubber', 'band', 'tward', 'the', 'kitchen', '||rightparen||', 'hey', '||comma||', 'take', 'a', 'look', 'at', 'this', '||period||', '||leftparen||', 'hands', 'jerry', "kruger's", 'check', '||rightparen||', '||return||', '||return||', 'jerry:', '20', 'thousand', 'dollars', 'from', 'kruger', '||questionmark||', "you're", 'not', 'keeping', 'this', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'george:', "i've", 'been', 'doing', 'a', 'lot', 'of', 'thinking', '||period||', 'this', 'might', 'be', 'my', 'chance', 'to', 'start', 'giving', 'something', 'back', '||period||', '||return||', '||return||', 'jerry:', 'you', 'want', 'to', 'give', 'something', 'back', '||questionmark||', 'start', 'with', 'the', '20', 'thousand', 'dollars', '||period||', '||return||', '||return||', 'george:', "i'm", 'serious', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'start', 'your', 'own', 'charity', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'could', 'be', 'a', 'philanthropist', '||period||', 'a', 'kick', 'ass', 'philanthropist', '||exclammark||', 'i', 'would', 'have', 'all', 'this', 'money', '||comma||', 'and', 'people', 'would', 'love', 'me', '||period||', 'then', 'they', 'would', 'come', 'to', 'me', '||period||', '||period||', 'and', 'beg', '||exclammark||', 'and', 'if', 'i', 'felt', 'like', 'it', '||comma||', 'i', 'would', 'help', 'them', 'out', '||period||', 'and', 'then', 'they', 'would', 'owe', 'me', 'big', 'time', '||exclammark||', '||leftparen||', 'thinking', 'to', 'himself', '||rightparen||', '||period||', '||period||', 'first', 'thing', "i'm", 'gonna', 'need', 'is', 'a', 'driver', '||period||', '||period||', '||return||', '||return||', '[setting:', 'outside', 'h&h', 'bagels]', '||return||', '||return||', 'elaine:', 'kramer', '||comma||', 'the', 'vest', 'just', 'called', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'shocked', 'by', 'the', 'way', 'elaine', 'looks', '||rightparen||', 'yama', '||dash||', 'hama', '||exclammark||', "it's", 'fright', 'night', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||comma||', 'i', 'got', 'a', 'little', 'steam', 'bath', '||period||', 'listen', '||comma||', 'in', '10', 'minutes', '||comma||', "i'm", 'gonna', 'have', 'my', 'hands', 'on', 'that', '||quotemark||', 'atomic', 'sub', '||quotemark||', 'card', '||period||', '||return||', '||return||', 'kramer:', 'and', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'embarrassed', '||rightparen||', 'free', 'sub', '||period||', '||leftparen||', 'starts', 'to', 'leave', '||rightparen||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'gwen:', 'kramer', '||comma||', 'hi', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hello', '||period||', '||return||', '||return||', 'gwen:', "it's", 'gwen', '||period||', '||period||', 'we', 'met', '||period||', '||period||', 'at', 'the', 'coffee', 'shop', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||dash||', 'huh', '||period||', '||return||', '||return||', 'gwen:', "i'm", 'dating', 'your', 'friend', '||comma||', 'jerry', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'ahh', '||period||', '||period||', 'i', "don't", 'know', 'who', 'you', 'really', 'are', '||comma||', 'but', "i've", 'seen', "jerry's", 'girlfriend', '||comma||', 'and', "she's", 'not', 'you', '||period||', "you're", 'much', 'better', 'looking', '||dash||', 'and', 'like', '||comma||', 'a', 'foot', 'taller', '||period||', '||return||', '||return||', 'gwen:', "that's", 'why', "we're", 'always', 'hiding', 'in', 'that', 'coffee', 'shop', '||exclammark||', "he's", 'afraid', 'of', 'getting', 'caught', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "he's", 'a', 'tomcat', '||period||', '||return||', '||return||', 'elaine:', 'steve', '||period||', '||return||', '||return||', 'denim', 'vest:', 'hmm', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'elaine', '||period||', '||return||', '||return||', 'denim', 'vest:', 'from', 'tim', "whatley's", 'party', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'denim', 'vest:', 'you', 'look', '||period||', '||period||', 'different', '||period||', '||return||', '||return||', 'elaine:', 'i', 'see', "you're", 'still', 'sticking', 'with', 'the', 'denim', '||period||', '||leftparen||', "he's", 'wearing', 'a', 'denim', 'coat', '||rightparen||', 'do', 'you', 'have', 'that', 'card', 'that', 'i', 'gave', 'you', '||questionmark||', '||return||', '||return||', 'denim', 'vest:', 'well', '||comma||', 'i', 'had', 'it', 'back', 'at', 'my', 'place', '||comma||', 'but', 'i', "can't", 'go', 'there', 'now', '||period||', '||period||', "i'll", 'give', 'it', 'to', 'you', 'later', '||comma||', 'or', 'something', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'you', 'give', 'me', 'your', 'number', '||period||', '||return||', '||return||', 'denim', 'vest:', 'okay', '||period||', 'sure', '||period||', '||leftparen||', 'pulls', 'out', 'a', 'pad', '||comma||', 'and', 'starts', 'writing', 'a', 'number', 'down', '||rightparen||', 'do', 'you', 'have', 'the', 'mumps', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'denim', 'vest:', 'typhoid', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', '||return||', '||return||', 'denim', 'vest:', '||leftparen||', 'hands', 'her', 'the', 'paper', '||comma||', 'and', 'runs', 'off', '||rightparen||', 'yama', '||dash||', 'hama', '||exclammark||', '||return||', '||return||', 'elaine:', 'a', 'fake', 'number', '||exclammark||', 'blimey', '||exclammark||', '||return||', '||return||', '[setting:', "kruger's", 'office]', '||return||', '||return||', 'kruger:', 'george', '||comma||', 'we', 'have', 'a', 'problem', '||period||', "there's", 'a', 'memo', '||comma||', 'here', '||comma||', 'from', 'accounting', 'telling', 'me', "there's", 'no', 'such', 'thing', 'as', 'the', 'human', 'fund', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'there', 'could', 'be', '||period||', '||return||', '||return||', 'kruger:', 'but', 'there', "isn't", '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', '||dash||', 'i', 'could', '||comma||', 'uh', '||comma||', 'i', 'could', 'give', 'the', 'money', 'back', '||period||', 'here', '||period||', '||leftparen||', 'holds', 'it', 'out', '||rightparen||', '||return||', '||return||', 'kruger:', 'george', '||comma||', 'i', "don't", 'get', 'it', '||period||', 'if', "there's", 'no', 'human', 'fund', '||comma||', 'those', 'donation', 'cards', 'were', 'fake', '||period||', 'you', 'better', 'have', 'a', 'damn', 'good', 'reason', 'why', 'you', 'gave', 'me', 'a', 'fake', 'christmas', 'gift', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'sir', '||comma||', 'i', '||dash||', 'i', 'gave', 'out', 'the', 'fake', 'card', '||comma||', 'because', '||comma||', 'um', '||comma||', 'i', "don't", 'really', 'celebrate', 'christmas', '||period||', 'i', '||comma||', 'um', '||comma||', 'i', 'celebrate', 'festivus', '||period||', '||return||', '||return||', 'kruger:', 'vemonous', '||questionmark||', '||return||', '||return||', 'george:', 'festivus', '||comma||', 'sir', '||period||', 'and', '||comma||', 'uh', '||comma||', 'i', 'was', 'afraid', 'that', 'i', 'would', 'be', 'persecuted', 'for', 'my', 'beliefs', '||period||', 'they', 'drove', 'my', 'family', 'out', 'of', 'bayside', '||comma||', 'sir', '||exclammark||', '||return||', '||return||', 'kruger:', 'are', 'you', 'making', 'all', 'this', 'up', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'sir', '||period||', 'festivus', 'is', 'all', 'too', 'real', '||period||', 'and', '||period||', '||period||', 'i', 'could', 'prove', 'it', '||dash||', 'if', 'i', 'had', 'to', '||period||', '||return||', '||return||', 'kruger:', 'yeah', '||comma||', 'you', 'probably', 'should', '||period||', '||return||', '||return||', '[setting:', 'the', "costanza's", 'house]', '||return||', '||return||', 'george:', 'happy', 'festivus', '||exclammark||', '||return||', '||return||', 'frank:', 'george', '||questionmark||', 'this', 'is', 'a', 'surprise', '||period||', '||leftparen||', 'looking', 'at', 'kruger', '||rightparen||', "who's", 'the', 'suit', '||questionmark||', '||return||', '||return||', 'george:', 'yo', '||comma||', 'dad', '||period||', 'this', 'is', 'my', 'boss', '||comma||', 'mr', '||period||', 'kruger', '||period||', '||return||', '||return||', 'frank:', 'have', 'you', 'seen', 'the', 'pole', '||comma||', 'kruger', '||questionmark||', '||return||', '||return||', 'george:', 'dad', '||comma||', 'he', "doesn't", 'need', 'to', 'see', 'the', 'pole', '||period||', '||return||', '||return||', 'frank:', "he's", 'gonna', 'see', 'it', '||period||', '||return||', '||return||', 'george:', 'happy', 'festivus', '||exclammark||', '||leftparen||', 'sees', 'elaine', '||rightparen||', 'yama', '||dash||', 'hama', '||exclammark||', '||return||', '||return||', 'elaine:', 'i', "didn't", 'have', 'time', 'to', 'go', 'home', '||period||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'embracing', 'my', 'roots', '||period||', '||return||', '||return||', 'jerry:', 'they', 'nailed', 'you', 'on', 'the', '20', "g's", '||questionmark||', '||return||', '||return||', 'george:', 'busted', 'cold', '||period||', '||return||', '||return||', 'frank:', "it's", 'made', 'from', 'aluminum', '||period||', 'very', 'high', 'strength', '||dash||', 'to', '||dash||', 'weight', 'ratio', '||period||', '||return||', '||return||', 'kruger:', 'i', 'find', 'your', 'belief', 'system', 'fascinating', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'happy', 'festivus', '||comma||', 'everyone', '||exclammark||', '||leftparen||', 'hugs', 'george', '||comma||', 'and', 'jumps', 'up', 'and', 'down', '||rightparen||', 'hee', '||comma||', 'hee', '||comma||', 'hee', '||exclammark||', '||return||', '||return||', 'bookie:', 'hello', 'again', '||comma||', 'miss', 'benes', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'bookie:', 'damnedest', 'thing', '||period||', '||period||', 'me', 'and', 'charlie', 'were', 'calling', 'to', 'ask', 'you', 'out', '||comma||', 'and', '||comma||', 'uh', '||comma||', 'we', 'got', 'this', 'bagel', 'place', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'finishing', 'the', 'story', '||rightparen||', 'i', 'told', 'them', 'i', 'was', 'just', 'about', 'to', 'see', 'you', '||period||', '||period||', "it's", 'a', 'festivus', 'miracle', '||exclammark||', '||return||', '||return||', 'estelle:', "dinner's", 'ready', '||exclammark||', '||return||', '||return||', 'frank:', "let's", 'begin', '||period||', '||return||', '||return||', '||leftparen||', 'everyone', 'sits', 'around', 'the', 'table', '||period||', 'kruger', 'recognized', 'kramer', 'from', '||quotemark||', 'the', 'meat', 'slicer', '||quotemark||', 'episode', '||period||', '||period||', '||rightparen||', 'kruger:', 'dr', '||period||', '||period||', 'van', 'nostrand', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||period||', '||period||', "that's", 'right', '||period||', '||return||', '||return||', 'frank:', 'welcome', '||comma||', 'new', 'comers', '||period||', 'the', 'tradition', 'of', 'festivus', 'begins', 'with', 'the', 'airing', 'of', 'grievances', '||period||', 'i', 'got', 'a', 'lot', 'of', 'problems', 'with', 'you', 'people', '||exclammark||', 'and', 'now', "you're", 'gonna', 'hear', 'about', 'it', '||exclammark||', 'you', '||comma||', 'kruger', '||period||', 'my', 'son', 'tells', 'me', 'your', 'company', 'stinks', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'god', '||period||', '||return||', '||return||', 'frank:', '||leftparen||', 'to', 'george', '||rightparen||', 'quiet', '||comma||', "you'll", 'get', 'yours', 'in', 'a', 'minute', '||period||', 'kruger', '||comma||', 'you', "couldn't", 'smooth', 'a', 'silk', 'sheet', 'if', 'you', 'had', 'a', 'hot', 'date', 'with', 'a', 'babe', '||period||', '||period||', 'i', 'lost', 'my', 'train', 'of', 'thought', '||period||', '||return||', '||return||', 'gwen:', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'gwen', '||exclammark||', "how'd", 'you', 'know', 'i', 'was', 'here', '||questionmark||', '||return||', '||return||', 'gwen:', 'kramer', 'told', 'me', '||period||', '||return||', '||return||', 'kramer:', 'another', 'festivus', 'miracle', '||exclammark||', '||return||', '||return||', 'gwen:', 'i', 'guess', 'this', 'is', 'the', 'ugly', 'girl', "i've", 'been', 'hearing', 'about', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'i', 'was', 'in', 'a', 'shvitz', 'for', '6', 'hours', '||period||', 'give', 'me', 'a', 'break', '||period||', '||return||', '||return||', 'jerry:', 'gwen', '||period||', 'gwen', '||comma||', 'wait', '||exclammark||', 'ah', '||exclammark||', '||leftparen||', 'runs', 'back', 'to', 'his', 'seat', '||rightparen||', 'bad', 'lighting', 'on', 'the', 'porch', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'bookie', '||rightparen||', 'hey', '||comma||', "how'd", 'my', 'horse', 'do', '||questionmark||', '||return||', '||return||', 'bookie:', 'he', 'had', 'to', 'be', 'shot', '||period||', '||return||', '||return||', 'frank:', 'and', 'now', 'as', 'festivus', 'rolls', 'on', '||comma||', 'we', 'come', 'to', 'the', 'feats', 'of', 'strength', '||period||', '||return||', '||return||', 'george:', 'not', 'the', 'feats', 'of', 'strength', '||period||', '||period||', '||return||', '||return||', 'frank:', 'this', 'year', '||comma||', 'the', 'honor', 'goes', 'to', 'mr', '||period||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'oh', '||period||', 'oh', '||comma||', 'gee', '||comma||', 'frank', '||comma||', "i'm", 'sorry', '||period||', 'i', 'gotta', 'go', '||period||', 'i', 'have', 'to', 'work', 'a', 'double', 'shift', 'at', 'h&h', '||period||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'you', 'were', 'on', 'strike', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'caved', '||period||', 'i', 'mean', '||comma||', 'i', 'really', 'had', 'to', 'use', 'their', 'bathroom', '||period||', 'frank', '||comma||', 'no', 'offence', '||comma||', 'but', 'this', 'holiday', 'is', 'a', 'little', '||leftparen||', 'makes', 'a', 'series', 'of', 'noises', '||rightparen||', 'out', 'there', '||period||', '||return||', '||return||', 'george:', 'kramer', '||exclammark||', 'you', "can't", 'go', '||exclammark||', "who's", 'gonna', 'do', 'the', 'feats', 'of', 'strength', '||questionmark||', '||return||', '||return||', 'kruger:', '||leftparen||', 'sipping', 'liquor', 'from', 'a', 'flask', '||rightparen||', 'how', 'about', 'george', '||questionmark||', '||return||', '||return||', 'frank:', 'good', 'thinking', '||comma||', 'kruger', '||period||', 'until', 'you', 'pin', 'me', '||comma||', 'george', '||comma||', 'festivus', 'is', 'not', 'over', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'please', '||comma||', 'somebody', '||comma||', 'stop', 'this', '||exclammark||', '||return||', '||return||', 'frank:', '||leftparen||', 'taking', 'off', 'his', 'sweater', '||rightparen||', "let's", 'rumble', '||exclammark||', '||return||', '||return||', 'estelle:', 'i', 'think', 'you', 'can', 'take', 'him', '||comma||', 'georgie', '||exclammark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'come', 'on', '||exclammark||', 'be', 'sensible', '||period||', '||return||', '||return||', 'frank:', 'stop', 'crying', '||comma||', 'and', 'fight', 'your', 'father', '||exclammark||', '||return||', '||return||', 'george:', 'ow', '||exclammark||', '||period||', '||period||', 'ow', '||exclammark||', 'i', 'give', '||comma||', 'i', 'give', '||exclammark||', 'uncle', '||exclammark||', '||return||', '||return||', 'frank:', 'this', 'is', 'the', 'best', 'festivus', 'ever', '||exclammark||', '||return||', '||return||', '[setting:', 'h&h', 'bagel', 'shop]', '||return||', '||return||', 'manager:', 'alright', '||period||', "that's", 'enough', '||period||', "you're", 'fired', '||period||', '||return||', '||return||', 'kramer:', 'thank', '||dash||', 'you', '||exclammark||', '||leftparen||', 'gets', 'his', 'coat', '||comma||', 'and', 'leaves', '||rightparen||', '||return||', '||return||', '[setting:', 'a', 'car', 'dealership]', '||return||', '||return||', 'george:', 'when', 'are', 'they', 'gonna', 'have', 'the', 'flying', 'cars', '||comma||', 'already', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'they', 'have', 'been', 'promising', 'that', 'for', 'a', 'while', '||period||', '||period||', '||return||', '||return||', 'george:', 'years', '||period||', 'when', 'we', 'were', 'kids', '||comma||', 'they', 'made', 'it', 'seem', 'like', 'it', 'was', 'right', 'around', 'the', 'corner', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'ed', 'begley', 'jr', '||period||', 'has', 'one', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', "that's", 'just', 'electric', '||period||', '||return||', '||return||', 'jerry:', 'what', 'about', 'harrison', 'ford', '||questionmark||', 'he', 'had', 'one', 'in', '||comma||', 'uh', '||comma||', 'blade', 'runner', '||period||', 'that', 'was', 'a', 'cool', 'one', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'sarcastically', '||rightparen||', "what's", 'the', 'competition', '||comma||', 'chitty', 'chitty', 'bang', 'bang', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'do', 'you', 'think', 'the', 'big', 'holdup', 'is', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'government', 'is', 'very', 'touchy', 'about', 'us', 'being', 'in', 'the', 'air', '||period||', 'let', 'us', 'run', 'around', 'on', 'the', 'ground', 'as', 'much', 'as', 'we', 'want', '||period||', 'anything', 'in', 'the', 'air', 'is', 'a', 'big', 'production', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'right', '||period||', 'and', 'what', 'about', 'the', 'floating', 'cities', '||questionmark||', '||return||', '||return||', 'george:', 'and', 'the', 'underwater', 'bubble', 'cities', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'like', "we're", 'living', 'in', 'the', "'50s", 'here', '||period||', '||return||', '||return||', 'kramer:', "it's", 'good', 'suspension', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'would', 'you', 'stop', 'it', '||questionmark||', "you'll", 'have', 'plenty', 'of', 'time', 'to', 'destroy', 'it', 'after', 'i', 'get', 'it', '||period||', 'hey', '||comma||', 'george', '||comma||', "i'm", "buyin'", 'this', 'car', '||period||', '||leftparen||', 'gestures', 'to', 'a', 'black', 'saab', '||rightparen||', '||return||', '||return||', 'george:', 'shhh', 'what', 'is', 'wrong', 'with', 'you', '||questionmark||', 'you', 'never', 'tell', "'em", 'you', 'like', 'the', 'car', '||period||', '||leftparen||', 'advising', '||rightparen||', "you're", 'not', 'sure', 'what', 'you', 'want', '||period||', 'you', "don't", 'even', 'know', 'why', "you're", 'here', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'gestures', 'to', 'his', 'forehead', '||rightparen||', 'youre', 'getting', 'that', 'vein', 'again', '||period||', '||return||', '||return||', 'george:', "i'm", 'starving', '||period||', 'we', 'should', 'have', 'had', 'lunch', 'first', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'quiet', 'george', 'down', '||rightparen||', "it'll", 'be', 'twenty', 'minutes', '||period||', 'i', 'told', 'ya', '||comma||', "puddy's", 'getting', 'me', 'an', 'insider', 'deal', '||period||', '||return||', '||return||', 'george:', 'since', 'when', 'is', "elaine's", 'boyfriend', 'selling', 'cars', '||questionmark||', 'i', 'thought', 'he', 'was', 'a', 'mechanic', '||period||', '||return||', '||return||', 'jerry:', 'i', 'guess', 'he', 'graduated', '||period||', '||return||', '||return||', 'george:', "there's", 'an', 'easy', 'move', 'go', 'from', "screwin'", 'you', 'behind', 'your', 'back', 'to', "screwin'", 'you', 'right', 'to', 'your', 'face', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'thank', 'you', '||period||', '||return||', '||return||', 'george:', 'puddys', 'just', 'gonna', 'give', 'you', 'the', 'car', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'skeptically', '||rightparen||', 'youll', 'see', '||period||', 'first', 'they', 'stick', 'you', 'with', 'the', 'undercoating', '||comma||', 'rust', '||dash||', 'proofing', '||comma||', 'dealer', 'prep', '||period||', 'suddenly', '||comma||', 'youre', 'on', 'your', 'back', 'like', 'a', 'turtle', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'calm', 'down', '||period||', '||return||', '||return||', 'george:', 'my', 'father', 'had', 'a', 'car', 'salesman', 'buddy', '||period||', 'he', 'was', 'gonna', 'fix', 'him', 'up', 'real', 'nice', '||period||', 'next', 'thing', 'i', 'know', '||comma||', 'im', 'gettin', 'dropped', 'of', 'in', 'a', 'le', 'car', 'with', 'a', 'fabric', 'sunroof', '||period||', 'all', 'the', 'kids', 'are', 'shoutin', 'at', 'me', '||comma||', '||quotemark||', 'hey', '||comma||', 'le', 'george', '||exclammark||', 'bonjour', '||comma||', 'le', 'george', '||exclammark||', 'lets', 'stuff', 'le', 'george', 'in', 'le', 'locker', '||exclammark||', '||quotemark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'i', 'dont', 'think', 'this', 'thing', 'is', 'hooked', 'up', 'right', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'all', 'right', '||comma||', 'were', 'goin', 'in', '||period||', '||return||', '||return||', 'salesman:', 'youve', 'got', 'a', 'good', 'eye', '||comma||', 'there', '||period||', 'i', 'see', 'youve', 'noticed', 'the', 'uni', '||dash||', 'body', 'construction', '||period||', 'im', 'rick', '||period||', 'are', 'you', 'looking', 'to', 'buy', 'or', 'to', 'lease', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'borrow', '||period||', 'its', 'for', 'my', 'friend', '||period||', 'yeah', '||comma||', 'hell', 'be', 'buying', '||period||', '||period||', '||return||', '||return||', 'rick:', 'maybe', 'i', 'should', 'talk', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'dont', 'think', 'so', '||period||', 'no', '||comma||', 'hes', 'an', 'entertainer', '||period||', 'you', 'know', '||comma||', 'all', 'over', 'the', 'place', '||period||', 'thats', 'where', 'i', 'come', 'in', '||period||', '||return||', '||return||', 'rick:', 'i', 'see', '||period||', 'so', '||comma||', 'youre', 'his', 'manag', '||dash||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'neighbor', '||period||', 'thats', 'right', '||period||', 'yeah', '||comma||', 'why', 'dont', 'we', 'take', 'this', 'boiler', 'out', 'for', 'a', 'shakedown', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'look', 'at', 'these', 'salesmen', '||period||', 'the', 'only', 'thing', 'these', 'guys', 'fear', 'is', 'the', 'walk', '||dash||', 'out', '||period||', 'no', 'matter', 'what', 'they', 'say', '||comma||', 'you', 'say', '||comma||', '||quotemark||', 'ill', 'walk', 'out', 'of', 'here', 'right', 'now', '||exclammark||', '||quotemark||', '||return||', '||return||', 'salesman:', 'can', 'i', 'help', 'you', 'with', 'something', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'threatening', '||rightparen||', 'hold', 'it', '||exclammark||', 'one', 'more', 'step', 'and', 'were', 'walkin', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'scolding', '||rightparen||', 'george', '||period||', '||leftparen||', 'to', 'salesman', '||rightparen||', 'sorry', '||comma||', 'were', 'just', 'waiting', 'for', 'david', 'puddy', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'with', 'a', 'tone', '||rightparen||', 'he', 'is', '||period||', 'you', 'dont', 'know', 'what', 'im', 'doin', 'here', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'puddy:', 'sorry', 'im', 'late', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'full', 'of', 'pride', '||rightparen||', 'my', 'new', 'salesman', 'boyfriend', 'took', 'me', 'out', 'to', 'celebrate', 'his', 'promotion', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||period||', 'whered', 'you', 'go', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'obviously', 'embarrassed', '||rightparen||', 'uh', '||comma||', 'to', 'a', 'restaurant', '||period||', '||return||', '||return||', 'puddy:', 'arbys', '||period||', '||return||', '||return||', 'elaine:', 'i', 'had', 'the', 'roast', 'beef', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'puddy', '||comma||', 'i', 'decided', 'im', 'gonna', 'go', 'with', 'another', '900', 'convertible', '||period||', '||return||', '||return||', 'puddy:', 'all', 'right', '||period||', 'classic', '||period||', '||leftparen||', 'holds', 'his', 'hand', 'up', '||rightparen||', 'high', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'interrupting', '||rightparen||', 'david', '||comma||', 'can', 'you', 'tell', 'me', 'where', 'the', 'xerox', 'machine', 'is', '||questionmark||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'sure', '||comma||', 'babe', '||period||', 'salesman', '||dash||', 'only', 'copy', 'room', '||leftparen||', 'points', '||rightparen||', 'right', 'there', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||leftparen||', 'leaves', 'for', 'the', 'room', '||rightparen||', '||return||', '||return||', 'puddy:', '||leftparen||', 'to', 'jerry', 'and', 'george', '||rightparen||', 'hey', '||comma||', 'come', 'on', '||comma||', 'guys', '||period||', 'ill', 'show', 'you', 'the', '900', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'mocking', '||comma||', 'skeptic', '||rightparen||', 'yeah', '||comma||', 'you', 'show', 'us', 'the', '900', '||period||', '||return||', '||return||', 'rick:', 'and', 'look', 'at', 'these', 'features', '||comma||', 'mr', '||period||', 'kramer', 'anti', '||dash||', 'lock', 'brakes', '||comma||', 'automatic', 'climate', 'control', '||period||', 'uh', '||comma||', '||leftparen||', 'points', 'out', 'the', 'windshield', '||rightparen||', 'make', 'a', 'right', 'at', 'this', 'corner', '||comma||', 'please', '||period||', '||leftparen||', 'goes', 'back', 'to', 'the', 'features', '||rightparen||', 'an', 'adjustable', 'steering', 'wheel', '||comma||', 'and', 'oh', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'you', 'missed', 'the', 'turn', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'i', 'didnt', '||period||', '||return||', '||return||', 'rick:', 'well', '||comma||', 'thats', 'okay', '||period||', '||leftparen||', 'pointing', '||rightparen||', 'well', 'make', 'this', 'next', 'right', '||comma||', 'and', 'swing', 'around', 'to', 'get', 'back', 'to', 'the', 'dealership', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'up', 'to', 'something', '||rightparen||', 'well', '||comma||', 'its', 'a', 'test', 'drive', '||comma||', 'right', '||questionmark||', 'i', 'never', 'drive', 'around', 'here', '||period||', 'if', 'im', 'gonna', 'recommend', 'this', 'car', '||comma||', 'i', 'need', 'to', 'see', 'that', 'itll', 'handle', 'my', 'daily', 'routine', '||period||', '||return||', '||return||', 'rick:', 'well', 'where', 'are', 'we', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'a', 'little', 'place', 'i', 'like', 'to', 'call', '||comma||', '||quotemark||', 'youll', 'see', '||quotemark||', '||period||', '||return||', '||return||', '[setting:', 'puddys', 'office]', '||return||', '||return||', 'george:', 'im', 'starving', '||period||', 'you', 'got', 'any', 'of', 'those', 'free', 'donuts', 'you', 'use', 'to', 'soften', 'people', 'up', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'pointing', 'out', 'his', 'office', 'door', '||rightparen||', 'by', 'the', 'service', 'department', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'up', '||comma||', 'he', 'addresses', 'jerry', '||rightparen||', 'all', 'right', '||comma||', 'remember', 'no', 'rust', '||dash||', 'proofing', '||period||', 'commit', 'to', 'nothing', '||period||', 'if', 'you', 'have', 'to', 'speak', '||dash||', 'mumble', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'george', 'is', 'leaving', 'for', 'the', 'donuts', '||rightparen||', 'au', 'revoir', '||comma||', 'le', 'george', '||period||', '||return||', '||return||', 'george:', 'dont', 'think', 'it', 'cant', 'happen', '||exclammark||', '||leftparen||', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'puddy', '||comma||', 'this', 'is', 'a', 'pretty', 'good', 'move', 'for', 'you', '||comma||', 'huh', '||questionmark||', 'no', 'more', '||quotemark||', 'grease', 'monkey', '||quotemark||', '||period||', '||return||', '||return||', 'puddy:', 'i', 'dont', 'care', 'for', 'that', 'term', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'sorry', '||comma||', 'i', 'didnt', 'know', '||period||', '||period||', '||return||', '||return||', 'puddy:', 'no', '||comma||', 'i', 'dont', 'know', 'too', 'many', 'monkeys', 'who', 'could', 'take', 'apart', 'a', 'fuel', 'injector', '||period||', '||return||', '||return||', 'jerry:', 'i', 'saw', 'one', 'once', 'that', 'could', 'do', 'sign', 'language', '||period||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', 'i', 'saw', 'that', 'one', '||period||', 'uh', '||period||', '||period||', 'koko', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'koko', '||period||', '||return||', '||return||', 'puddy:', 'right', '||comma||', 'koko', '||period||', 'that', 'chimps', 'all', 'right', '||period||', '||leftparen||', 'holds', 'up', 'his', 'hand', '||rightparen||', 'high', '||dash||', 'five', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', 'whats', 'goin', 'on', 'here', '||questionmark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'didnt', 'agree', 'to', 'anything', '||comma||', 'did', 'ya', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'we', 'both', 'just', 'saw', 'the', 'same', 'monkey', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'aggravated', '||rightparen||', 'well', '||comma||', 'i', 'got', 'screwed', 'on', 'the', 'donuts', '||period||', 'there', 'were', 'none', 'left', '||period||', 'heh', '||exclammark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'standing', 'up', '||rightparen||', 'well', '||comma||', 'theres', 'a', 'vending', 'machine', '||period||', 'i', 'could', 'show', 'you', 'where', 'it', 'is', '||period||', '||leftparen||', 'leaves', '||comma||', 'showing', 'george', 'the', 'way', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'hey', '||comma||', 'gimme', 'a', 'dollar', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'a', 'dollar', 'out', '||rightparen||', 'wheres', 'your', 'money', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'talking', 'it', '||rightparen||', 'im', 'here', 'helpin', 'you', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'wheres', 'puddy', '||questionmark||', 'the', 'copy', 'machine', 'is', 'broken', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'his', 'way', 'out', '||rightparen||', 'heh', '||comma||', 'heh', '||comma||', 'heh', '||period||', 'thats', 'what', 'they', 'want', 'you', 'to', 'think', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', '||comma||', 'have', 'you', 'noticed', 'your', 'boyfriend', 'has', 'developed', 'an', 'annoying', 'little', 'habit', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'squints', '||comma||', 'imitating', 'puddy', '||rightparen||', 'the', 'squinting', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'stares', 'ahead', '||comma||', 'again', '||comma||', 'imitating', 'puddy', '||rightparen||', 'the', 'staring', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'he', 'keeps', 'asking', 'me', 'to', 'give', 'him', 'a', 'high', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shrugging', '||rightparen||', 'i', 'thought', 'all', 'guys', 'do', 'that', '||period||', '||return||', '||return||', 'jerry:', 'slapping', 'hands', 'is', 'the', 'lowest', 'form', 'of', 'male', 'primate', 'ritual', '||period||', 'in', 'fact', '||comma||', 'even', 'some', 'of', 'them', 'have', 'moved', 'on', '||dash||', 'theyre', 'doing', 'sign', 'language', 'now', '||period||', '||return||', '||return||', 'elaine:', 'its', 'that', 'bad', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'think', 'the', 'nazis', 'were', 'doin', '||questionmark||', '||leftparen||', 'imitates', 'the', 'nazis', 'salute', '||rightparen||', 'that', 'was', 'the', 'heil', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'pointing', 'out', '||rightparen||', 'isnt', 'that', 'from', 'your', 'act', '||comma||', 'like', '||comma||', 'ten', 'years', 'ago', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'slightly', 'embarrassed', '||rightparen||', 'it', 'was', 'a', 'good', 'bit', 'in', 'the', '80s', '||comma||', 'and', 'its', 'still', 'relatable', 'today', '||period||', '||return||', '||return||', 'puddy:', 'good', 'news', '||period||', 'we', 'got', 'a', '900', 'in', 'black', '||period||', 'thats', 'the', 'hot', 'color', '||period||', '||leftparen||', 'holds', 'up', 'his', 'hand', '||rightparen||', 'high', '||dash||', 'five', '||period||', '||return||', '||return||', 'elaine:', 'um', '||comma||', 'david', '||comma||', 'you', 'know', 'what', '||questionmark||', 'can', 'you', 'come', 'help', 'me', 'fix', 'the', 'copy', 'machine', '||questionmark||', 'come', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'pointing', 'at', 'jerry', '||rightparen||', 'you', 'owe', 'me', 'five', '||period||', '||return||', '||return||', '[setting:', 'dealership', 'back', 'room]', '||return||', '||return||', 'george:', 'twix', '||period||', '||period||', '||leftparen||', 'makes', 'various', 'noises', '||rightparen||', 'b', '||dash||', '5', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'excuse', 'me', '||period||', 'do', 'you', 'have', '||comma||', 'uh', '||comma||', 'change', 'of', 'a', 'dollar', '||questionmark||', '||return||', '||return||', 'mechanic:', '||leftparen||', 'while', 'retrieving', 'his', 'candy', '||rightparen||', 'no', '||period||', '||return||', '||return||', 'george:', 'could', 'i', '||comma||', 'uh', '||comma||', 'could', 'i', 'trade', 'you', 'for', 'another', 'dollar', '||questionmark||', '||return||', '||return||', 'mechanic:', '||leftparen||', 'while', 'walking', 'away', '||rightparen||', 'dont', 'have', 'one', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'stopping', 'him', '||rightparen||', 'ah', '||comma||', 'excuse', 'me', '||period||', 'when', 'your', '||comma||', 'uh', '||comma||', 'when', 'your', 'wallet', 'was', 'open', '||comma||', 'i', '||dash||', 'i', 'glanced', 'inside', '||comma||', 'and', 'i', 'couldnt', 'help', 'but', 'notice', 'that', 'you', 'have', 'several', 'crisp', 'dollar', 'bills', '||period||', '||return||', '||return||', 'mechanic:', '||leftparen||', 'calm', '||rightparen||', 'youre', 'incorrect', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'persistent', '||rightparen||', 'perhaps', 'you', 'could', 'look', 'again', '||comma||', 'please', '||questionmark||', 'im', 'very', 'hungry', '||period||', '||return||', '||return||', 'mechanic:', '||leftparen||', 'while', 'taking', 'his', 'exit', '||rightparen||', 'we', 'had', 'donuts', 'earlier', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'losing', 'it', '||rightparen||', 'i', 'guess', 'everyone', 'here', 'enjoys', 'giving', 'the', 'old', 'screwgie', '||comma||', 'huh', '||questionmark||', '||exclammark||', 'youre', 'all', 'doin', 'a', 'hell', 'of', 'a', 'job', '||exclammark||', '||leftparen||', 'looks', 'longingly', 'at', 'the', 'twix', 'in', 'the', 'machine', '||rightparen||', 'ho', '||comma||', 'ho', '||period||', 'what', 'i', 'would', 'do', 'with', 'you', '||period||', '||period||', '||return||', '||return||', '[setting:', 'dealership', 'car]', '||return||', '||return||', 'rick:', 'uh', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'were', 'really', 'not', 'allowed', 'to', 'use', 'the', 'cars', 'to', 'run', 'errands', '||period||', '||return||', '||return||', 'kramer:', 'now', 'look', '||comma||', 'rick', '||period||', 'im', 'very', 'close', 'to', 'giving', 'this', 'car', '||comma||', 'that', 'my', 'celebrity', 'friend', 'is', 'considering', '||comma||', 'my', 'full', 'endorsement', '||period||', '||leftparen||', 'looks', 'out', 'the', 'window', '||rightparen||', 'oooh', '||comma||', 'lets', 'see', 'if', 'i', 'can', 'get', 'a', 'smile', 'from', 'these', 'femininas', '||period||', '||period||', '||leftparen||', 'yells', 'out', 'to', 'them', '||rightparen||', 'hey', '||comma||', 'ladies', '||exclammark||', '||leftparen||', 'points', 'to', 'the', 'car', '||rightparen||', 'its', 'the', 'saab', '900', '||exclammark||', 'what', 'do', 'you', 'think', '||questionmark||', 'can', 'i', 'interest', 'you', 'in', 'a', 'little', 'supplemental', 'restraint', '||questionmark||', '||exclammark||', '||leftparen||', 'they', 'obviously', 'do', 'something', 'to', 'offend', 'him', '||period||', 'kramer', 'reacts', 'with', 'a', 'face', '||rightparen||', 'geez', '||return||', '||return||', '[setting:', 'dealership', 'back', 'room]', '||return||', '||return||', 'jerry:', '||leftparen||', 'tapping', 'the', 'door', 'you', 'lift', 'to', 'retrieve', 'your', 'candy', 'on', 'the', 'machine', '||rightparen||', 'i', 'think', 'the', 'candy', 'comes', 'out', 'over', 'there', '||period||', '||return||', '||return||', 'george:', 'people', 'can', 'drop', 'change', 'down', 'here', '||comma||', 'jerry', '||period||', 'and', 'theyre', 'too', 'lazy', 'to', 'pick', 'it', 'up', '||period||', '||return||', '||return||', 'jerry:', 'either', 'that', '||comma||', 'or', 'theyve', 'got', 'a', 'weird', 'little', 'hang', '||dash||', 'up', 'about', 'lying', 'face', '||dash||', 'down', 'in', 'filth', '||period||', 'why', 'dont', 'you', 'just', 'go', 'to', 'the', 'cashier', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'cashier', 'is', 'at', 'lunch', '||dash||', 'which', 'is', 'where', 'id', 'like', 'to', 'be', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'was', 'under', 'there', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'at', 'his', 'finger', '||rightparen||', 'i', 'think', 'somethin', 'bit', 'me', '||period||', 'i', 'just', 'need', 'another', 'nickel', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'while', 'fishing', 'through', 'his', 'pocket', 'for', 'change', '||rightparen||', 'hey', '||comma||', 'puddy', 'thinks', 'i', 'should', 'go', 'for', 'the', 'cd', 'player', '||period||', 'what', 'do', 'you', 'think', '||questionmark||', '||leftparen||', 'hands', 'him', 'a', 'nickel', '||rightparen||', '||return||', '||return||', 'george:', 'ho', '||comma||', 'ho', '||comma||', 'ho', '||exclammark||', 'hes', 'got', 'a', 'live', 'one', '||period||', 'hes', 'just', 'reeling', 'his', 'big', 'fish', 'in', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'can', 'i', 'have', 'my', 'dollar', 'back', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'stingy', '||rightparen||', 'its', 'wrinkled', '||period||', 'its', 'worthless', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'as', 'the', 'twix', 'starts', 'to', 'move', '||rightparen||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||exclammark||', '||leftparen||', 'the', 'twix', 'gets', 'stuck', 'in', 'the', 'spindle', 'right', 'before', 'falling', '||period||', 'george', 'begins', 'to', 'pound', 'the', 'machine', '||rightparen||', 'come', 'on', '||exclammark||', 'jump', '||exclammark||', '||return||', '||return||', 'man:', 'they', 'just', 'put', 'out', 'some', 'more', 'donuts', '||period||', '||return||', '||return||', 'george:', 'they', 'did', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'holding', 'his', 'up', '||rightparen||', 'last', 'one', '||period||', '||return||', '||return||', '[setting:', 'dealership', 'car]', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'just', 'one', 'more', 'errand', 'and', 'we', 'can', 'head', 'back', '||period||', '||return||', '||return||', 'rick:', 'actually', '||comma||', 'it', 'looks', 'like', 'were', 'gonna', 'need', 'some', 'gas', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||questionmark||', 'well', '||comma||', 'how', 'much', 'gas', 'do', 'you', 'think', 'is', 'in', 'there', 'right', 'now', '||questionmark||', '||return||', '||return||', 'rick:', '||leftparen||', 'looking', '||rightparen||', 'well', '||comma||', 'its', 'on', '||quotemark||', 'e', '||quotemark||', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'rick', '||comma||', 'oftentimes', '||comma||', 'jerry', '||dash||', 'he', 'lends', 'me', 'his', 'car', 'and', 'i', 'find', 'myself', 'in', 'a', 'situation', 'where', 'the', 'car', 'is', 'almost', 'out', 'of', 'gas', '||period||', 'but', '||comma||', 'for', 'a', 'variety', 'of', 'reasons', '||comma||', 'i', 'dont', 'want', 'to', 'be', 'the', 'one', 'responsible', 'for', 'purchasing', 'costly', 'gasoline', '||period||', '||return||', '||return||', 'rick:', '||leftparen||', 'pointing', 'out', '||rightparen||', 'so', '||comma||', 'you', 'want', 'to', 'know', 'how', 'far', 'you', 'can', 'drive', 'your', 'friends', 'car', 'for', 'free', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'in', 'the', 'spotlight', '||comma||', 'his', 'voice', 'goes', 'high', '||rightparen||', 'well', '||comma||', 'i', 'make', 'it', 'up', 'to', 'him', 'in', 'other', 'ways', '||period||', '||return||', '||return||', '[setting:', 'dealership', 'back', 'room]', '||return||', '||return||', 'george:', 'as', 'you', 'will', 'see', '||comma||', 'the', 'candy', 'bar', 'is', 'paid', 'for', '||comma||', 'and', 'yet', '||comma||', 'remains', 'dangling', 'in', 'the', 'machine', '||period||', '||leftparen||', 'notices', 'that', 'the', 'twix', 'slot', 'is', 'completely', 'empty', '||rightparen||', 'hey', '||comma||', 'its', 'gone', '||period||', 'where', 'is', 'my', 'twix', '||questionmark||', '||leftparen||', 'quickly', 'looks', 'around', '||period||', 'his', 'sights', 'fall', 'on', 'the', 'window', 'of', 'a', 'door', 'labeled', '||quotemark||', 'employees', 'only', '||quotemark||', '||period||', 'the', 'same', 'mechanic', 'from', 'before', 'is', 'eating', 'a', 'candy', 'bar', '||rightparen||', 'what', '||questionmark||', '||exclammark||', 'that', 'guys', 'eatin', 'it', '||exclammark||', '||return||', '||return||', 'salesman:', 'well', '||comma||', 'how', 'do', 'you', 'know', 'that', 'ones', 'yours', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'it', 'was', 'dangling', '||exclammark||', 'there', 'were', 'only', 'two', 'left', 'in', 'the', 'machine', '||exclammark||', 'he', 'mustve', 'bought', 'one', '||comma||', 'and', 'gotten', 'both', '||period||', '||return||', '||return||', 'salesman:', 'sir', '||comma||', 'are', 'you', 'gonna', 'buy', 'a', 'car', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', '||leftparen||', 'the', 'salesman', 'walks', 'away', '||period||', 'he', 'addresses', 'the', 'mechanic', 'through', 'the', 'doors', 'window', '||rightparen||', 'hey', '||exclammark||', 'hey', '||exclammark||', 'i', 'see', 'you', '||exclammark||', 'that', 'is', 'my', 'twix', '||exclammark||', '||leftparen||', 'the', 'mechanic', 'eats', 'the', 'last', 'of', 'the', 'twix', '||comma||', 'obviously', 'to', 'make', 'george', 'even', 'more', 'angered', '||period||', 'it', 'works', '||rightparen||', 'oh', '||comma||', 'ha', '||comma||', 'ha', '||exclammark||', 'ho', '||comma||', 'ho', '||exclammark||', '||return||', '||return||', 'puddy:', 'paper', 'jam', '||period||', '||period||', 'got', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'yay', '||exclammark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'holds', 'his', 'hand', 'up', '||rightparen||', 'high', '||dash||', 'five', '||period||', '||leftparen||', 'elaine', 'reluctantly', 'slaps', 'it', '||period||', 'he', 'turns', 'around', '||comma||', 'and', 'puts', 'his', 'hand', 'out', 'behind', 'his', 'back', '||rightparen||', 'on', 'the', 'flip', 'side', '||period||', '||return||', '||return||', 'elaine:', 'david', '||comma||', 'um', '||comma||', 'i', '||period||', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'still', 'holding', 'out', 'his', 'hand', '||rightparen||', 'dont', 'leave', 'me', 'hangin', '||period||', '||return||', '||return||', 'elaine:', 'youre', 'a', 'salesman', 'now', '||dash||', 'and', 'the', 'high', '||dash||', 'five', 'is', 'its', 'very', 'grease', 'monkey', '||period||', '||return||', '||return||', 'puddy:', 'what', 'did', 'i', 'tell', 'you', 'about', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'ah', '||comma||', 'i', '||comma||', 'im', 'sorry', '||comma||', 'but', 'the', 'high', '||dash||', 'five', 'is', 'just', 'so', 'stupid', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'somewhat', 'hurt', '||rightparen||', 'oh', 'yeah', '||questionmark||', 'ill', 'tell', 'you', 'whats', 'stupid', '||period||', 'you', '||period||', 'stupid', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastically', '||rightparen||', 'oh', '||comma||', 'that', 'is', 'really', 'mature', '||period||', '||return||', '||return||', 'puddy:', 'yeah', '||questionmark||', 'so', 'are', 'you', '||period||', 'youre', 'the', 'grease', 'monkey', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', 'at', 'davids', 'attempts', 'at', 'a', 'comeback', '||rightparen||', 'uh', 'that', 'doesnt', 'make', 'any', 'sense', '||period||', 'i', 'am', 'leaving', '||period||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', 'if', 'you', 'leave', '||comma||', 'were', 'through', '||period||', '||return||', '||return||', 'elaine:', 'fine', '||exclammark||', 'were', 'through', '||exclammark||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'so', 'youre', 'leaving', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'while', 'leaving', '||rightparen||', 'thats', 'right', '||period||', '||leftparen||', 'mocking', 'puddy', '||comma||', 'she', 'puts', 'her', 'hand', 'up', '||rightparen||', 'high', '||dash||', 'five', '||exclammark||', '||leftparen||', 'turns', 'around', '||comma||', 'putting', 'her', 'hand', 'behind', 'her', 'back', 'like', 'he', 'had', 'done', '||rightparen||', 'on', 'the', 'flip', 'side', '||exclammark||', '||leftparen||', 'as', 'elaine', 'is', 'leaving', '||comma||', 'she', 'mutters', 'to', 'herself', '||rightparen||', 'takin', 'me', 'to', 'arbys', '||return||', '||return||', 'jerry:', '||leftparen||', 'sees', 'elaine', 'leaving', '||rightparen||', 'hey', '||exclammark||', 'wh', '||dash||', 'where', 'are', 'you', '||questionmark||', '||return||', '||return||', 'puddy:', 'lets', 'finish', 'this', 'up', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'two', 'break', 'up', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'while', 'punching', 'up', 'numbers', 'on', 'a', 'calculator', '||rightparen||', 'that', 'chicks', 'whacked', '||period||', 'were', 'history', '||period||', '||leftparen||', 'back', 'to', 'the', 'transaction', '||rightparen||', 'i', 'just', 'left', 'out', 'a', 'couple', 'of', 'things', 'uh', '||comma||', 'rust', '||dash||', 'proofing', '||return||', '||return||', 'jerry:', '||quotemark||', 'rust', '||dash||', 'proofing', '||quotemark||', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'reading', 'off', 'what', 'hes', 'adding', 'up', 'on', 'the', 'calculator', '||rightparen||', 'transport', 'charge', '||comma||', 'storage', 'surcharge', '||comma||', 'additional', 'overcharge', '||comma||', 'finders', 'fee', '||return||', '||return||', 'jerry:', '||quotemark||', 'finders', 'fee', '||quotemark||', '||questionmark||', 'it', 'was', 'on', 'the', 'lot', '||exclammark||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', 'thats', 'right', '||period||', '||leftparen||', 'continues', 'reading', 'off', '||rightparen||', 'uh', '||comma||', 'floor', 'mats', '||comma||', 'keys', '||return||', '||return||', 'jerry:', 'keys', '||questionmark||', '||exclammark||', '||return||', '||return||', 'puddy:', 'how', 'ya', 'gonna', 'start', 'it', '||questionmark||', '||return||', '||return||', '[setting:', 'dealerships', 'shop]', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', 'i', 'believe', 'you', 'just', 'ate', 'my', 'twix', 'bar', '||period||', 'it', 'was', 'dangling', '||period||', 'and', 'when', 'you', 'purchased', 'your', 'twix', 'bar', '||comma||', 'you', 'got', 'a', 'little', 'freebie', '||comma||', 'and', 'you', 'never', 'bothered', 'to', 'ask', 'why', '||comma||', 'or', 'seek', 'out', 'its', 'rightful', 'owner', '||period||', '||return||', '||return||', 'mechanic:', 'first', 'of', 'all', '||comma||', 'it', 'wasnt', 'a', 'twix', '||period||', 'it', 'was', 'a', '5th', 'avenue', 'bar', '||period||', '||return||', '||return||', 'george:', 'huh', '||period||', 'you', 'must', 'think', 'im', 'pretty', 'stupid', '||period||', '||leftparen||', 'the', 'mechanic', 'shoots', 'him', 'a', 'look', 'as', 'if', 'he', 'cleary', 'does', 'think', 'hes', 'stupid', '||rightparen||', 'that', 'was', 'no', '5th', 'avenue', 'bar', '||period||', 'i', 'can', 'see', 'the', 'crumb', 'right', 'there', 'in', 'the', 'corner', 'of', 'your', 'lip', '||exclammark||', 'now', '||comma||', 'that', '||dash||', 'that', '||dash||', 'that', 'is', 'a', 'cookie', '||dash||', 'and', 'we', 'all', 'know', 'that', 'twix', 'is', 'the', 'only', 'candy', 'bar', 'with', 'the', 'cookie', 'crunch', '||period||', '||return||', '||return||', 'mechanic:', 'its', 'uh', '||comma||', 'its', 'just', 'a', 'little', 'nougat', '||period||', '||return||', '||return||', 'george:', 'nougat', '||questionmark||', 'please', '||period||', 'i', 'think', 'ive', 'reached', 'the', 'point', 'in', 'my', 'life', 'where', 'i', 'can', 'tell', 'the', 'difference', 'between', 'nougat', 'and', 'cookie', '||period||', 'so', 'lets', 'not', 'just', 'say', 'things', 'that', 'we', 'both', 'know', 'are', 'obvious', 'fabrications', '||period||', '||return||', '||return||', 'mechanic:', '||leftparen||', 'pointing', 'to', 'georges', 'forehead', '||rightparen||', 'you', 'know', '||comma||', 'youre', 'gettin', 'a', 'little', 'vein', 'there', '||period||', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'watching', 'the', 'mechanic', 'leave', '||rightparen||', 'i', 'know', 'about', 'the', 'vein', '||exclammark||', 'i', 'cant', 'believe', 'this', 'guy', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'starving', '||exclammark||', '||leftparen||', 'grabs', 'the', 'box', 'from', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'last', 'one', '||period||', 'listen', '||comma||', 'you', 'gotta', 'help', 'me', 'out', '||period||', 'elaine', 'and', 'puddy', 'just', 'broke', 'up', '||comma||', 'hes', 'treatin', 'me', 'just', 'like', 'a', 'regular', 'customer', '||comma||', 'now', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'tried', 'to', 'tell', 'you', '||comma||', 'but', 'you', 'wouldnt', 'listen', '||period||', 'no', '||comma||', 'ho', '||comma||', 'ho', '||exclammark||', 'you', 'were', 'gonna', 'get', 'a', 'deal', '||comma||', 'huh', '||questionmark||', 'theres', 'no', 'laws', 'in', 'this', 'place', '||period||', 'anything', 'goes', '||exclammark||', 'its', 'thunderdome', '||exclammark||', '||return||', '||return||', 'saleswoman:', 'is', 'someone', 'helping', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'stay', 'back', '||exclammark||', '||leftparen||', 'runs', 'out', 'of', 'the', 'room', '||comma||', 'pushing', 'jerry', 'out', 'ahead', 'of', 'him', '||rightparen||', '||return||', '||return||', '[setting:', 'dealership', 'car]', '||return||', '||return||', 'rick:', '||leftparen||', 'trying', 'to', 'look', 'at', 'the', 'gas', 'gauge', '||rightparen||', 'where', 'is', 'it', 'now', '||questionmark||', '||return||', '||return||', 'kramer:', 'theres', 'still', 'some', 'overlap', 'between', 'the', 'needle', 'and', 'the', 'slash', 'below', 'the', '||quotemark||', 'e', '||quotemark||', '||period||', '||return||', '||return||', 'rick:', 'how', 'low', 'are', 'you', 'gonna', 'go', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'ive', 'been', 'in', 'the', 'slash', 'many', 'times', '||period||', 'this', 'is', 'nothing', '||period||', 'youll', 'get', 'used', 'to', 'it', '||period||', 'just', '||comma||', '||leftparen||', 'makes', 'a', 'popping', 'sound', '||rightparen||', 'put', 'it', 'out', 'of', 'your', 'mind', '||period||', '||return||', '||return||', 'rick:', 'have', 'you', 'ever', 'been', 'completely', 'below', 'the', 'slash', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'almost', 'did', 'once', '||comma||', 'and', 'i', 'blacked', 'out', '||period||', 'when', 'i', 'came', 'to', '||comma||', 'the', 'car', 'was', 'in', 'a', 'ditch', '||comma||', 'and', 'the', 'tank', 'was', 'full', '||period||', 'i', 'dont', 'know', 'who', 'did', 'it', '||comma||', 'and', 'i', 'never', 'got', 'to', 'thank', 'them', '||period||', '||period||', '||return||', '||return||', 'rick:', '||leftparen||', 'as', 'the', 'car', 'slowly', 'drifts', 'off', 'the', 'road', '||rightparen||', 'mr', '||period||', 'kramer', '||comma||', 'the', 'road', '||exclammark||', '||return||', '||return||', 'kramer:', 'whoop', '||exclammark||', 'whoop', '||exclammark||', '||return||', '||return||', '[setting:', 'puddys', 'office]', '||return||', '||return||', 'jerry:', '||leftparen||', 'threatening', 'tone', '||rightparen||', 'so', '||comma||', 'listen', '||comma||', 'puddy', '||period||', 'when', 'we', 'first', 'started', 'this', 'deal', '||comma||', 'i', 'thought', 'things', 'were', 'gonna', 'be', 'different', '||period||', 'now', '||comma||', 'if', 'you', 'want', 'to', 'play', 'hard', 'ball', '||comma||', 'i', 'got', 'my', 'friend', '||comma||', 'george', '||comma||', 'here', '||comma||', 'and', 'he', 'can', 'play', 'pretty', 'hard', 'ball', '||period||', '||leftparen||', 'leaving', 'the', 'negotiation', 'to', 'george', '||rightparen||', 'george', '||comma||', 'vein', 'it', 'up', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'puddy', '||comma||', 'listen', '||comma||', 'and', 'listen', 'good', 'i', 'need', 'to', 'know', 'the', 'name', 'of', 'that', 'mechanic', 'that', 'walks', 'around', 'here', '||period||', 'big', 'guy', '||comma||', 'a', 'liar', '||period||', 'short', 'name', '||period||', 'sam', '||questionmark||', 'moe', '||questionmark||', 'sol', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||exclammark||', 'can', 'we', 'focus', 'on', 'the', 'car', '||comma||', 'here', '||questionmark||', '||return||', '||return||', 'george:', 'im', 'starving', '||exclammark||', 'i', 'can', 'feel', 'my', 'stomach', 'sucking', 'up', 'against', 'my', 'spine', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'handing', 'a', 'sheet', 'of', 'paper', 'to', 'jerry', '||rightparen||', 'jerry', '||comma||', 'i', 'just', 'need', 'your', 'signature', 'here', '||comma||', 'and', 'well', 'get', 'you', 'that', 'yellow', 'car', 'ready', 'to', 'go', '||period||', '||return||', '||return||', 'jerry:', 'yellow', '||questionmark||', 'i', 'wanted', 'black', '||period||', '||return||', '||return||', 'puddy:', 'i', 'cant', 'give', 'you', 'black', 'at', 'that', 'price', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'george', '||comma||', 'would', 'you', 'help', 'me', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', 'up', '||rightparen||', 'yes', '||period||', 'this', 'is', 'wrong', '||exclammark||', '||return||', '||return||', 'jerry:', 'sing', 'it', '||comma||', 'sister', '||exclammark||', '||return||', '||return||', 'george:', 'just', 'because', 'a', 'candy', 'bar', 'fails', 'to', 'fall', 'from', 'its', 'perch', '||return||', '||return||', 'jerry:', '||leftparen||', 'exasperated', '||rightparen||', 'oh', '||comma||', 'god', '||return||', '||return||', 'george:', '||leftparen||', 'losing', 'it', '||rightparen||', 'does', 'not', 'imply', 'transfer', 'of', 'ownership', '||period||', 'moe', '||comma||', 'sol', '||comma||', 'or', 'lem', 'is', 'not', 'gonna', 'get', 'away', 'with', 'this', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'puddy', '||rightparen||', 'ill', 'be', 'right', 'back', '||period||', '||return||', '||return||', 'puddy:', 'okay', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||exclammark||', '||return||', '||return||', '[setting:', 'dealership', 'car]', '||return||', '||return||', 'rick:', 'is', 'it', 'just', 'the', 'angle', 'im', 'looking', 'from', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'sir', '||period||', 'we', 'are', 'down', 'there', '||period||', '||return||', '||return||', 'rick:', 'oh', '||comma||', 'this', 'is', 'amazing', '||exclammark||', 'oh', '||comma||', 'ive', 'never', 'felt', 'so', 'alive', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'im', 'satisfied', '||period||', 'we', 'better', 'get', 'some', 'gas', '||period||', '||return||', '||return||', 'rick:', 'what', '||questionmark||', 'well', '||comma||', 'we', 'cant', 'stop', 'now', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'rick:', 'we', 'have', 'to', 'keep', 'going', '||dash||', 'all', 'the', 'way', 'back', 'to', 'the', 'dealership', '||period||', 'that', 'was', 'the', 'plan', '||period||', '||return||', '||return||', 'kramer:', 'there', 'was', 'no', 'plan', '||period||', '||return||', '||return||', 'rick:', 'well', '||comma||', 'lets', 'make', 'it', 'the', 'plan', '||exclammark||', 'lets', 'just', 'go', 'for', 'it', '||exclammark||', 'like', 'thelma', 'and', 'louise', '||period||', '||return||', '||return||', 'kramer:', 'what', '||comma||', 'they', 'drove', 'to', 'a', 'dealership', '||questionmark||', '||return||', '||return||', 'rick:', 'no', '||comma||', 'they', 'drove', 'off', 'a', 'cliff', '||period||', '||return||', '||return||', 'kramer:', 'you', 'are', 'one', 'sick', 'mama', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'rick:', 'mr', '||period||', 'kramer', '||comma||', 'the', 'road', '||exclammark||', '||return||', '||return||', 'kramer:', 'yup', '||exclammark||', 'yup', '||exclammark||', '||return||', '||return||', '[setting:', 'elaines', 'apartment]', '||return||', '||return||', 'elaine:', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'over', 'the', 'phone', '||rightparen||', 'elaine', '||comma||', 'youve', 'got', 'to', 'get', 'back', 'down', 'to', 'the', 'dealer', '||period||', 'puddy', 'is', 'screwin', 'me', 'on', 'this', 'car', '||comma||', 'which', 'is', 'yellow', 'now', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'jokingly', 'mimicking', 'jerry', '||rightparen||', 'who', 'is', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'banging', 'the', 'phone', 'against', 'the', 'booth', '||rightparen||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'gotta', 'get', 'back', 'together', 'with', 'puddy', 'so', 'i', 'can', 'make', 'this', 'deal', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastically', '||rightparen||', 'you', 'know', '||comma||', 'just', 'that', 'you', 'cared', 'enough', 'to', 'call', 'means', 'so', 'much', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'youre', 'gonna', 'get', 'back', 'together', '||comma||', 'anyway', '||period||', 'its', 'thousands', 'of', 'dollars', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'dont', 'know', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'then', 'you', 'dont', 'have', 'to', 'see', 'him', 'again', 'til', 'my', '15', '||comma||', '000', '||dash||', 'mile', 'check', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'will', 'you', 'pay', 'my', 'cab', 'fare', 'out', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'fine', '||period||', '||return||', '||return||', 'elaine:', 'and', 'i', 'didnt', 'like', 'that', 'roast', 'beef', '||comma||', 'so', 'how', 'bout', 'some', 'lunch', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'no', 'lunch', '||period||', '||return||', '||return||', 'elaine:', 'ill', 'hang', 'this', 'phone', 'up', 'right', 'now', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||exclammark||', 'lunch', '||exclammark||', '||return||', '||return||', 'elaine:', 'ill', 'see', 'ya', '||period||', '||leftparen||', 'hanging', 'up', 'the', 'phone', '||rightparen||', '||return||', '||return||', 'jerry:', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'frustrated', '||comma||', 'he', 'reacts', '||rightparen||', 'everybodys', 'ripping', 'me', 'off', '||exclammark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'id', 'like', 'to', 'report', 'a', 'problem', 'with', 'one', 'of', 'your', 'mechanics', '||period||', '||return||', '||return||', 'willie:', 'when', 'did', 'you', 'bring', 'the', 'car', 'in', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'man', 'behind', 'him', 'in', 'line', '||rightparen||', 'yeah', '||comma||', 'right', 'im', 'gonna', 'get', 'my', 'car', 'repaired', 'at', 'a', 'dealership', '||period||', 'huh', '||exclammark||', 'why', 'dont', 'i', 'just', 'flush', 'my', 'money', 'down', 'the', 'toilet', '||questionmark||', '||return||', '||return||', 'willie:', 'sir', '||comma||', 'what', '||comma||', 'exactly', '||comma||', 'is', 'the', 'problem', '||questionmark||', '||return||', '||return||', 'george:', 'one', 'of', 'your', 'guys', '||dash||', 'kip', '||comma||', 'or', 'ned', '||comma||', 'short', 'name', '||dash||', 'stole', 'my', 'twix', 'candy', 'bar', '||exclammark||', '||return||', '||return||', 'willie:', 'are', 'you', 'saying', 'he', 'grabbed', 'your', 'candy', 'bar', 'away', 'from', 'you', '||questionmark||', '||return||', '||return||', 'george:', 'he', 'might', 'as', 'well', 'have', '||exclammark||', 'i', 'caught', 'him', '||comma||', 'and', 'his', 'face', 'was', 'covered', 'in', 'chocolate', 'and', 'cookie', 'crumbs', '||period||', '||return||', '||return||', 'willie:', 'i', 'thought', 'you', 'said', 'it', 'was', 'a', 'twix', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'it', 'was', '||period||', 'but', 'he', 'claimed', 'it', 'was', 'a', '5th', 'avenue', 'bar', '||period||', '||return||', '||return||', 'willie:', 'maybe', 'it', 'was', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||comma||', 'no', '||period||', 'twix', 'is', 'the', 'only', 'candy', 'with', 'the', 'cookie', 'crunch', '||period||', '||return||', '||return||', 'willie:', 'what', 'about', 'the', 'hundred', '||dash||', 'thousand', '||dash||', 'dollar', 'bar', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'rice', 'and', 'caramel', '||period||', '||return||', '||return||', 'willie:', 'nougat', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'willie:', 'positive', '||questionmark||', '||return||', '||return||', 'george:', 'please', '||period||', '||return||', '||return||', 'woman:', 'you', 'know', 'they', 'changed', 'the', 'name', 'from', 'hundred', '||dash||', 'thousand', '||dash||', 'dollar', 'bar', 'to', 'hundred', '||dash||', 'grand', '||questionmark||', '||return||', '||return||', 'george:', 'all', 'i', 'want', 'is', 'my', 'seventy', '||dash||', 'five', 'cents', 'back', '||comma||', 'an', 'apology', '||comma||', 'and', 'for', 'him', 'to', 'be', 'fired', '||exclammark||', '||return||', '||return||', 'willie', 'sr:', 'i', 'remember', 'when', 'you', 'used', 'to', 'be', 'able', 'to', 'get', 'a', 'hershey', 'for', 'a', 'nickel', '||period||', '||return||', '||return||', 'man:', 'whats', 'the', 'one', 'with', 'the', 'swirling', 'chocolate', 'in', 'the', 'commercial', '||questionmark||', '||return||', '||return||', 'george:', 'they', 'all', 'have', 'swirling', 'chocolate', 'in', 'the', 'commercial', '||exclammark||', '||return||', '||return||', 'willie', 'sr:', 'not', 'skittles', '||period||', '||return||', '||return||', 'willie:', 'dad', '||comma||', 'i', 'told', 'you', 'you', 'could', 'sit', 'here', 'only', 'if', 'you', 'dont', 'talk', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'sitting', 'behind', 'george', '||rightparen||', 'you', 'make', 'your', 'father', 'sit', 'here', 'all', 'day', '||questionmark||', '||return||', '||return||', 'willie:', 'he', 'likes', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'do', 'you', 'mind', '||questionmark||', 'i', 'have', 'the', 'window', '||exclammark||', '||leftparen||', 'to', 'willie', '||rightparen||', 'now', '||comma||', 'what', 'are', 'you', 'gonna', 'do', 'about', 'my', 'twix', '||questionmark||', '||return||', '||return||', 'man:', '||leftparen||', 'in', 'line', 'behind', 'george', '||rightparen||', 'twix', 'has', 'too', 'much', 'coconut', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'theres', 'no', 'coconut', '||exclammark||', '||return||', '||return||', 'woman:', '||leftparen||', 'behind', 'service', 'window', '||rightparen||', 'im', 'allergic', 'to', 'coconut', '||period||', '||return||', '||return||', 'willie:', 'im', 'not', '||period||', '||return||', '||return||', 'willie', 'sr:', 'a', 'nickel', '||exclammark||', '||return||', '||return||', '[setting:', 'dealership', 'office', 'showroom]', '||return||', '||return||', 'elaine:', 'cab', 'receipt', '||period||', 'hey', '||comma||', 'puddy', '||period||', '||return||', '||return||', 'puddy:', 'im', 'with', 'a', 'customer', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', 'no', '||comma||', 'elaine', '||comma||', 'the', 'car', 'can', 'wait', '||period||', 'whats', 'important', 'is', 'you', 'two', 'getting', 'back', 'together', '||period||', 'eh', '||comma||', 'then', 'well', 'talk', 'about', 'the', 'car', '||period||', '||return||', '||return||', 'puddy:', '||leftparen||', 'like', 'a', 'kid', '||rightparen||', 'i', 'dont', 'want', 'to', 'get', 'back', 'with', 'her', '||period||', 'shes', 'too', 'bossy', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'raising', 'her', 'finger', 'at', 'him', '||comma||', 'in', 'an', 'authoritative', 'tone', '||rightparen||', 'david', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', 'now', '||comma||', 'i', 'know', 'this', 'is', 'an', 'important', 'decision', '||period||', 'why', 'dont', 'we', 'all', 'just', 'sit', 'down', 'and', 'talk', 'about', 'it', '||questionmark||', 'come', 'on', '||comma||', 'come', 'on', '||period||', '||leftparen||', 'all', 'three', 'sit', 'down', '||rightparen||', 'now', '||comma||', 'look', '||comma||', 'you', 'both', 'find', 'each', 'other', 'attractive', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'elaine', 'and', 'puddy:', 'right', '||period||', '||return||', '||return||', 'jerry:', 'clearly', '||comma||', 'no', 'one', 'else', 'can', 'stand', 'to', 'be', 'with', 'either', 'one', 'of', 'you', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', '||period||', '||return||', '||return||', 'puddy:', 'good', 'point', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'smiling', '||comma||', 'like', 'a', 'salesman', '||rightparen||', 'all', 'right', '||period||', 'now', '||comma||', 'what', 'do', 'i', 'have', 'to', 'do', 'to', 'put', 'you', 'two', 'in', 'a', 'relationship', 'today', '||questionmark||', '||return||', '||return||', '[setting:', 'gas', 'station]', '||return||', '||return||', 'kramer:', 'cars', 'can', 'go', 'on', 'empty', '||comma||', 'but', 'not', 'us', 'humans', '||comma||', 'huh', '||comma||', 'fella', '||questionmark||', 'ill', 'get', 'us', 'a', 'couple', 'of', 'twix', 'bars', '||period||', '||return||', '||return||', 'rick:', 'no', '||comma||', 'no', 'coconut', 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'ill', 'get', 'ya', 'a', 'mounds', 'bar', '||period||', 'keep', 'the', 'engine', 'running', '||period||', '||return||', '||return||', 'rick:', 'ahh', '||exclammark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'man', '||exclammark||', 'not', 'the', 'gas', '||exclammark||', '||return||', '||return||', 'rick:', 'but', 'it', 'needs', 'it', '||comma||', 'kramer', '||exclammark||', 'it', 'needs', 'it', 'bad', '||exclammark||', '||return||', '||return||', 'kramer:', 'do', 'you', 'think', 'that', 'thisll', 'make', 'you', 'happy', '||questionmark||', 'cause', 'it', 'wont', '||exclammark||', '||return||', '||return||', 'rick:', '||leftparen||', 'walking', 'away', '||rightparen||', 'ah', '||comma||', 'you', 'can', 'just', 'go', 'on', 'without', 'me', '||period||', '||return||', '||return||', 'kramer:', 'listen', 'to', 'me', '||period||', 'when', 'that', 'car', 'rolls', 'into', 'that', 'dealership', '||comma||', 'and', 'that', 'tank', 'is', 'bone', 'dry', '||comma||', 'i', 'want', 'you', 'to', 'be', 'there', 'with', 'me', 'when', 'everyone', 'says', '||comma||', '||quotemark||', 'kramer', 'and', 'that', 'other', 'guy', '||comma||', 'oh', '||comma||', 'they', 'went', 'further', 'to', 'the', 'left', 'of', 'the', 'slash', 'than', 'anyone', 'ever', 'dreamed', '||exclammark||', '||quotemark||', '||return||', '||return||', 'rick:', 'maybe', 'we', 'better', 'get', 'moving', '||period||', '||return||', '||return||', 'kramer:', 'its', 'good', 'to', 'have', 'you', 'back', '||comma||', 'stan', '||period||', '||return||', '||return||', 'rick:', 'its', 'rick', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'kramer:', 'no', 'time', '||exclammark||', '||return||', '||return||', '[setting:', 'dealerships', 'customer', 'service', 'room]', '||return||', '||return||', 'willie:', 'mr', '||period||', 'costanza', '||comma||', 'i', 'really', 'dont', 'have', 'time', 'for', 'this', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', 'if', 'this', 'mechanic', 'guy', '||comma||', 'was', '||comma||', 'in', 'fact', '||comma||', 'eating', 'a', '5th', 'avenue', 'bar', '||comma||', 'as', 'he', 'claims', '||comma||', 'wouldnt', 'you', 'agree', 'he', 'would', 'have', 'no', 'problem', 'picking', 'one', 'out', 'from', 'a', 'candy', 'line', '||dash||', 'up', '||questionmark||', '||return||', '||return||', 'willie:', '||quotemark||', 'candy', 'line', '||dash||', 'up', '||quotemark||', '||questionmark||', '||return||', '||return||', 'george:', 'ive', 'spent', 'the', 'last', 'hour', 'preparing', 'ten', 'candy', 'bars', 'with', 'no', 'wrappers', 'or', 'identification', 'of', 'any', 'kind', 'for', 'him', 'to', 'select', 'from', '||period||', '||return||', '||return||', 'willie:', 'it', 'took', 'you', 'an', 'hour', '||questionmark||', '||return||', '||return||', 'george:', 'only', 'i', 'hold', 'the', 'answer', 'key', 'to', 'their', 'true', 'candy', 'identities', '||period||', 'and', 'so', '||comma||', 'without', 'further', 'ado', '||comma||', 'i', 'give', 'you', 'the', 'candy', 'line', '||dash||', 'up', '||period||', '||leftparen||', 'opens', 'a', 'door', 'to', 'a', 'back', 'room', '||period||', 'various', 'dealership', 'employees', 'are', 'munching', 'on', 'candy', 'bars', '||rightparen||', '||return||', '||return||', 'saleswoman:', 'hey', '||comma||', 'willie', '||comma||', 'check', 'it', 'out', '||exclammark||', 'free', 'candy', '||exclammark||', '||return||', '||return||', 'george:', 'thats', 'my', 'candy', 'line', '||dash||', 'up', '||exclammark||', 'where', 'are', 'all', 'my', 'cards', '||questionmark||', '||exclammark||', 'theyre', '||dash||', 'theyre', 'all', 'on', 'the', 'floor', '||exclammark||', '||return||', '||return||', 'george:', 'and', 'you', '||exclammark||', 'how', 'many', 'twix', 'does', 'that', 'make', 'for', 'you', '||comma||', 'today', '||questionmark||', '||exclammark||', 'like', '||comma||', '8', 'twix', '||questionmark||', '||exclammark||', '||return||', '||return||', 'mechanic:', 'no', '||period||', '||return||', '||return||', 'man:', 'hey', '||comma||', 'this', 'clark', 'bar', 'is', 'good', '||period||', '||return||', '||return||', 'george:', 'its', 'a', 'twix', '||exclammark||', 'theyre', 'all', 'twix', '||exclammark||', 'it', 'was', 'a', 'setup', '||exclammark||', 'a', 'setup', '||comma||', 'i', 'tell', 'ya', '||exclammark||', 'and', 'youve', 'robbed', 'it', '||exclammark||', 'youve', 'all', 'screwed', 'me', 'again', '||exclammark||', 'now', '||comma||', 'gimme', 'one', '||exclammark||', 'gimme', 'a', 'twix', '||exclammark||', '||return||', '||return||', 'mechanic:', 'theyre', 'all', 'gone', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'yelling', 'out', '||comma||', 'frustrated', '||period||', 'the', 'camera', 'spins', 'from', 'a', 'top', 'angle', '||rightparen||', 'twwwwiiiiiixxxxx', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'puddy:', 'theres', 'a', 'mental', 'hospital', 'right', 'near', 'here', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', 'elaine', '||comma||', 'david', '||comma||', 'i', 'believe', 'we', 'have', 'a', 'deal', 'here', 'in', 'principle', 'arbys', 'no', 'more', 'than', 'once', 'a', 'month', '||period||', 'and', 'in', 'exchange', '||comma||', 'elaine', 'comes', 'to', 'your', 'softball', 'game', '||comma||', 'and', 'doesnt', 'read', 'a', 'book', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'while', 'looking', 'over', 'the', 'contract', 'jerry', 'just', 'drew', 'up', '||rightparen||', 'yeah', '||comma||', 'well', '||comma||', 'thats', 'not', 'bad', '||period||', '||return||', '||return||', 'puddy:', 'i', 'can', 'live', 'with', 'that', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'youre', 'back', 'together', '||questionmark||', '||return||', '||return||', 'puddy:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'all', 'right', '||period||', 'all', 'right', '||comma||', 'thats', 'enough', '||exclammark||', 'lets', 'get', 'back', 'to', 'my', 'deal', '||period||', 'that', 'undercoating', '||comma||', 'thats', 'a', 'rip', '||dash||', 'off', '||comma||', 'isnt', 'it', '||comma||', 'david', '||questionmark||', '||return||', '||return||', 'puddy:', 'oh', '||comma||', 'we', 'dont', 'even', 'know', 'what', 'it', 'is', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'im', 'gettin', 'the', 'insiders', 'deal', '||questionmark||', '||return||', '||return||', 'puddy:', 'insiders', 'deal', '||period||', '||leftparen||', 'holds', 'up', 'his', 'hand', '||rightparen||', 'high', '||dash||', 'five', '||period||', '||return||', '||return||', '[setting:', 'dealership', 'car]', '||return||', '||return||', 'rick:', '||leftparen||', 'seeing', 'the', 'turn', '||dash||', 'off', 'up', 'ahead', '||rightparen||', 'theres', 'the', 'dealer', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', '||return||', '||return||', 'rick:', 'we', 'did', '||exclammark||', 'we', 'pulled', 'it', 'off', '||exclammark||', 'i', 'cant', 'believe', 'it', '||exclammark||', 'wheres', 'the', 'needle', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'it', 'broke', 'off', '||comma||', 'baby', '||exclammark||', 'woo', '||comma||', 'hoo', '||comma||', 'hoo', '||exclammark||', '||return||', '||return||', 'rick:', 'oh', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'i', 'gotta', 'thank', 'you', '||period||', 'i', '||dash||', 'i', 'learned', 'a', 'lot', '||period||', 'things', 'are', 'gonna', 'be', 'different', 'for', 'me', 'now', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'thats', 'a', 'weird', 'thing', 'to', 'say', '||return||', '||return||', 'rick:', 'i', 'wonder', 'how', 'much', 'longer', 'we', 'could', 'have', 'lasted', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', 'i', 'wonder', 'hmm', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'cab]', '||return||', '||return||', 'elaine:', 'this', 'is', 'nice', '||period||', 'what', 'kind', 'of', 'car', 'is', 'this', '||questionmark||', '||return||', '||return||', 'cabbie:', 'caprice', 'classic', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'couldnt', 'just', 'give', 'him', 'one', 'high', '||dash||', 'five', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'where', 'does', 'it', 'end', '||questionmark||', 'then', 'everyones', 'doin', 'it', '||period||', 'its', 'like', 'the', 'wave', 'at', 'ball', 'games', '||period||', 'air', 'quotes', '||period||', 'the', 'phrase', '||comma||', '||quotemark||', 'dont', 'go', 'there', '||period||', '||quotemark||', '||dash||', 'someones', 'gotta', 'take', 'a', 'stand', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'munching', 'on', 'a', 'hamburger', '||rightparen||', 'this', 'arbys', 'is', 'good', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'george', '||comma||', 'i', 'still', 'dont', 'understand', '||dash||', 'how', 'was', 'that', 'a', 'setup', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'who', 'were', 'you', 'tryin', 'to', 'set', 'up', '||comma||', 'anyway', '||questionmark||', 'the', 'mechanic', 'or', 'the', 'manager', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'dont', 'know', '||period||', 'all', 'of', 'em', '||period||', 'theyre', 'all', 'crooks', '||exclammark||', 'besides', '||comma||', 'i', 'couldnt', 'get', 'all', 'different', 'candy', 'bars', '||comma||', 'anyway', '||period||', '||return||', '||return||', 'george:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'theres', 'a', 'mental', 'hospital', 'near', 'here', '||period||', '||return||', '||return||', 'elaine:', 'very', 'near', '||period||', '||return||', '||return||', 'kramer:', 'ya', '||dash||', 'hoo', '||exclammark||', 'ya', '||dash||', 'hoo', '||exclammark||', '||leftparen||', 'rick', 'is', 'silent', '||rightparen||', 'whew', '||exclammark||', 'well', '||comma||', 'i', 'think', 'we', 'stopped', '||period||', '||return||', '||return||', 'rick:', 'you', '||dash||', 'you', 'can', 'probably', 'let', 'go', 'of', 'my', 'hand', 'now', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||leftparen||', 'getting', 'out', 'of', 'the', 'car', '||rightparen||', 'well', '||comma||', 'ill', 'think', 'about', 'it', '||period||', '||period||', '||return||', '||return||', 'rick:', 'do', 'you', 'have', 'my', 'card', '||questionmark||', '||return||', '||return||', 'waitress:', 'careful', '||comma||', 'this', 'plate', 'is', 'extremely', 'hot', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||period||', 'ow', '||exclammark||', '||return||', '||return||', 'waitress:', 'i', 'just', 'told', 'you', 'it', 'was', 'hot', '||period||', "why'd", 'you', 'touch', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'just', 'wanted', 'to', 'know', 'what', 'your', 'idea', 'of', "'hot'", 'is', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'babe', '||period||', 'you', 'ready', 'to', 'hit', 'the', 'ice', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'ready', 'to', 'skate', 'up', 'a', '||dash||', '||dash||', 'ha', '||comma||', 'ha', '||comma||', 'ha', '||period||', '||period||', '||period||', 'why', 'are', 'you', 'wearing', 'that', '||questionmark||', '||return||', '||return||', 'puddy:', "it's", 'my', 'winter', 'coat', '||period||', '||return||', '||return||', 'elaine:', 'a', 'fur', '||questionmark||', '||return||', '||return||', 'puddy:', 'is', 'there', 'a', 'problem', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'seemingly', 'infinite', 'supply', '||period||', '||return||', '||return||', 'elaine:', 'ow', '||exclammark||', 'careful', '||comma||', "it's", 'hot', '||period||', '||return||', '||return||', 'puddy:', 'ow', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'puddy', "wear's", 'a', 'man', 'fur', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'was', "struttin'", 'around', 'the', 'coffee', 'shop', 'like', 'stein', 'erickson', '||period||', '||return||', '||return||', 'jerry:', 'and', '||comma||', 'of', 'course', '||comma||', 'you', 'find', 'fur', 'morally', 'reprehensible', '||period||', '||return||', '||return||', 'elaine:', 'eh', '||comma||', 'anti', '||dash||', 'fur', '||period||', 'i', 'mean', '||comma||', 'who', 'has', 'the', 'energy', 'anymore', '||questionmark||', 'this', 'is', 'more', 'about', 'hanging', 'off', 'the', 'arm', 'of', 'an', 'idiot', '||period||', '||return||', '||return||', 'george:', 'and', 'this', 'is', 'the', 'first', "you're", 'seeing', 'of', 'the', 'coat', '||questionmark||', '||return||', '||return||', 'elaine:', 'we', 'never', 'dated', 'in', 'winter', '||period||', '||return||', '||return||', 'jerry:', 'you', 'might', 'want', 'to', 'get', 'a', 'look', 'at', 'that', 'bathing', 'suit', 'drawer', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'walked', 'by', "bloomingdale's", 'the', 'other', 'day', '||comma||', 'and', 'i', 'saw', 'that', 'massage', 'chair', 'we', 'want', 'to', 'get', 'joe', 'mayo', 'as', 'an', 'apartment', 'gift', '||period||', '||return||', '||return||', 'george:', 'an', 'apartment', '||dash||', 'warming', 'gift', '||questionmark||', 'we', 'got', 'to', 'give', 'presents', 'to', 'people', 'for', 'moving', '||questionmark||', 'birthdays', '||comma||', 'christmas', '||comma||', "it's", 'enough', 'gifts', '||period||', 'i', 'would', 'like', 'one', 'month', 'off', '||period||', '||return||', '||return||', 'jerry:', 'kramer', 'said', "it's", 'a', 'perfect', 'gift', '||period||', "that's", 'what', "we're", "gettin'", 'him', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'but', "we're", 'not', "buyin'", 'it', 'at', "bloomingdale's", '||period||', 'i', 'will', 'buy', 'it', '||comma||', 'you', 'pay', 'me', 'back', 'later', '||period||', "i'll", 'sniff', 'out', 'a', 'deal', '||period||', 'i', 'have', 'a', 'sixth', 'sense', '||period||', '||return||', '||return||', 'jerry:', 'cheapness', 'is', 'not', 'a', 'sense', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", 'stand', 'joe', "mayo's", 'parties', '||period||', 'you', 'know', '||comma||', 'the', 'second', 'you', 'walk', 'in', '||comma||', "he's", 'got', 'you', "workin'", 'for', 'him', '||period||', "'hey", '||comma||', 'can', 'you', 'do', 'me', 'a', 'favor', '||questionmark||', 'can', 'you', 'keep', 'an', 'eye', 'on', 'the', 'ice', '||comma||', 'make', 'sure', 'we', 'have', 'enough', '||questionmark||', "'", 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'great', 'time', 'at', 'the', 'last', 'one', '||period||', 'i', 'was', 'in', 'charge', 'of', 'the', 'music', '||period||', 'i', 'turned', 'that', 'mother', 'out', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'any', 'pliers', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'has', 'newman', 'got', 'another', 'army', 'man', 'stuck', 'in', 'his', 'ear', '||questionmark||', '||return||', '||return||', 'newman:', 'hilarious', '||period||', '||return||', '||return||', 'kramer:', 'newman', 'and', 'i', 'are', 'reversing', 'the', 'peepholes', 'on', 'our', 'door', '||period||', 'so', 'you', 'can', 'see', 'in', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'newman:', 'to', 'prevent', 'an', 'ambush', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'so', 'now', 'i', 'can', 'peek', 'to', 'see', 'if', 'anyone', 'is', 'waiting', 'to', 'jack', 'me', 'with', 'a', 'sock', 'full', 'of', 'pennies', '||period||', '||return||', '||return||', 'jerry:', 'but', 'then', 'anyone', 'can', 'just', 'look', 'in', 'and', 'see', 'you', '||period||', '||return||', '||return||', 'kramer:', 'our', 'policy', 'is', '||comma||', "we're", 'comfortable', 'with', 'our', 'bodies', '||period||', 'you', 'know', '||comma||', 'if', 'someone', 'wants', 'to', 'help', 'themselves', 'to', 'an', 'eyefull', '||comma||', 'well', '||comma||', 'we', 'say', '||comma||', "'enjoy", 'the', 'show', '||period||', "'", '||return||', '||return||', 'elaine:', "i'm", 'sorry', 'i', "can't", 'stay', 'for', 'the', '||period||', '||period||', '||period||', 'second', 'act', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||period||', "here's", 'the', 'model', 'number', 'on', 'that', 'chair', '||comma||', 'by', 'the', 'way', '||period||', '||return||', '||return||', 'kramer:', 'mmm', '||period||', '||period||', '||period||', 'nice', 'wallet', '||period||', '||return||', '||return||', 'newman:', 'wallet', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'nobody', 'carries', 'wallets', 'anymore', '||period||', 'i', 'mean', '||comma||', 'they', 'went', 'out', 'with', 'powdered', 'wigs', '||period||', 'yeah', '||comma||', 'see', "here's", 'what', 'you', 'need', '||period||', 'just', 'a', 'couple', 'of', 'cards', 'and', 'your', 'bankroll', '||period||', 'see', '||comma||', 'keep', 'the', 'big', 'bills', 'on', 'the', 'outside', '||period||', '||return||', '||return||', 'jerry:', "that's", 'a', 'five', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'on', 'the', 'mexican', '||comma||', 'whoa', 'ohh', '||comma||', 'radio', '||period||', '||period||', '||period||', '||return||', '||return||', 'silvio:', 'eh', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'silvio', '||period||', 'yeah', '||comma||', "i'm", 'reversing', 'my', 'peephole', '||period||', '||return||', '||return||', 'silvio:', 'hey', '||comma||', 'you', 'know', 'you', 'gotta', 'get', 'permission', 'from', 'me', '||period||', "i'm", 'the', 'super', '||period||', 'who', 'said', 'you', 'could', 'do', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'who', 'says', 'i', 'can', 'do', 'any', 'of', 'the', 'things', 'i', 'do', 'in', 'my', 'place', '||questionmark||', '||return||', '||return||', 'silvio:', 'like', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', '||period||', '||period||', '||period||', 'uh', '||comma||', 'nothing', '||period||', 'no', '||comma||', "i'll", '||comma||', 'um', '||comma||', "i'll", 'switch', 'it', 'back', '||period||', '||return||', '||return||', 'silvio:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'no', '||comma||', "that's", 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'good', '||period||', 'because', '||comma||', 'uh', '||comma||', 'newman', 'and', 'i', '||dash||', '||dash||', '||return||', '||return||', 'silvio:', 'newman', '||questionmark||', 'he', 'did', 'this', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'silvio:', 'i', 'deal', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'look', 'at', 'this', '||period||', 'this', 'is', 'the', 'same', 'massage', 'chair', "we're", "gettin'", 'for', 'joe', 'mayo', '||comma||', '$60', 'cheaper', '||period||', '||return||', '||return||', 'jerry:', 'except', 'the', "store's", 'in', 'delaware', '||period||', '||return||', '||return||', 'george:', "i'll", 'have', "'em", 'overnight', 'it', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'cheapness', 'is', 'a', 'sense', '||period||', 'you', 'know', 'it', 'is', 'better', 'without', 'this', 'big', 'wallet', '||period||', "it's", 'more', 'comfortable', '||period||', '||return||', '||return||', 'george:', 'it', "doesn't", 'matter', 'if', "it's", 'more', 'comfortable', '||period||', "it's", 'wrong', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'important', 'things', 'go', 'in', 'a', 'case', '||period||', 'you', 'got', 'a', 'skull', 'for', 'your', 'brain', '||comma||', 'a', 'plastic', 'sleeve', 'for', 'your', 'comb', '||comma||', 'and', 'a', 'wallet', 'for', 'your', 'money', '||period||', '||return||', '||return||', 'jerry:', 'but', 'look', 'at', 'this', 'thing', '||period||', "it's", '||dash||', "it's", 'huge', '||period||', 'you', 'got', 'more', 'cow', 'here', 'than', 'here', '||period||', '||return||', '||return||', 'george:', 'i', 'need', 'everything', 'in', 'there', '||period||', '||return||', '||return||', 'jerry:', 'irish', 'money', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'might', 'go', 'there', '||period||', '||return||', '||return||', 'jerry:', 'show', 'this', 'card', 'at', 'any', 'participating', 'orlando', '||dash||', 'area', 'exxon', 'station', '||period||', '||period||', '||period||', 'to', 'get', 'your', 'free', "'save", 'the', "tiger'", 'poster', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'just', 'gimme', 'that', '||period||', 'and', 'gimme', 'some', 'of', 'those', 'sweet', '&', 'lows', '||period||', '||return||', '||return||', 'kramer:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'newman', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'you', 'want', '||questionmark||', "i'm", 'in', 'the', 'middle', 'of', 'something', '||period||', '||return||', '||return||', 'newman:', 'i', "can't", 'believe', "i'm", 'being', 'evicted', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'newman:', 'the', 'reverse', 'peepholes', '||period||', 'silvio', 'said', "i'm", 'an', 'agitator', 'and', "i'm", 'out', 'of', 'the', 'building', '||period||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'no', '||comma||', 'he', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'newman:', "i'm", 'homeless', '||exclammark||', "i'm", 'gonna', 'be', 'out', 'on', 'a', 'street', 'corner', '||comma||', 'dancing', 'for', 'nickels', '||period||', "i'll", 'be', 'with', 'the', 'hobos', 'in', 'the', 'trainyard', '||comma||', 'eating', 'out', 'of', 'a', 'bucket', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', "we'll", 'go', 'and', 'talk', 'to', 'him', '||comma||', 'and', "we'll", 'straighten', 'this', 'thing', 'out', '||period||', '||return||', '||return||', 'newman:', 'uh', '||comma||', 'you', '||comma||', 'uh', '||comma||', 'you', 'better', 'put', 'something', 'on', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'i', 'am', 'loving', 'this', 'no', 'wallet', 'thing', '||period||', '||return||', '||return||', 'george:', 'a', 'man', 'carries', 'a', 'wallet', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'the', 'very', 'fact', 'that', 'you', 'oppose', 'this', 'makes', 'me', 'think', "i'm", 'onto', 'something', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'hey', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'joe', 'mayo', '||period||', 'nice', 'place', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'thanks', '||period||', 'george', '||comma||', 'can', 'you', 'do', 'me', 'a', 'favor', 'and', 'stay', 'by', 'the', 'phone', 'in', 'case', 'anybody', 'calls', 'and', 'needs', 'directions', '||questionmark||', '||return||', '||return||', 'george:', 'love', 'to', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'thanks', '||period||', 'jerry', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'music', '||questionmark||', '||return||', '||return||', 'joy', 'mayo:', 'actually', '||comma||', 'can', 'you', 'keep', 'an', 'eye', 'on', 'the', 'aquarium', 'and', 'make', 'sure', 'nobody', 'taps', 'on', 'the', 'glass', '||questionmark||', '||return||', '||return||', 'jerry:', 'but', 'i', 'could', 'do', 'that', 'and', 'the', 'music', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'oh', '||comma||', 'no', '||comma||', "don't", 'worry', 'about', 'the', 'music', '||period||', 'just', '||period||', '||period||', '||period||', 'have', 'fun', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'ready', 'to', 'get', 'jiggy', 'with', 'it', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'i', 'think', 'you', 'know', 'dr', '||period||', '||period||', '||period||', 'zaius', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'elaine', '||comma||', 'notice', 'anything', 'different', 'about', 'my', '||period||', '||period||', '||period||', 'pants', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'george', '||period||', '||period||', '||period||', 'did', 'you', 'get', 'the', 'chair', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', "don't", 'have', 'it', 'yet', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "we're", "givin'", 'him', 'nothing', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'i', 'brought', 'a', 'picture', 'of', 'the', 'chair', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'at', 'least', 'get', 'him', 'a', 'card', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'thought', "we'd", 'all', 'sign', 'the', 'picture', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'joe', 'mayo', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'i', 'need', 'you', 'to', 'be', 'in', 'charge', 'of', 'coats', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'fantastic', '||period||', '||return||', '||return||', 'joy', 'mayo:', 'and', 'puddy', '||comma||', 'can', 'you', 'make', 'sure', 'no', 'one', 'puts', 'a', 'drink', 'on', 'my', '||period||', '||period||', '||period||', 'sound', 'system', '||questionmark||', '||return||', '||return||', 'puddy:', 'sure', 'thing', '||comma||', 'joe', 'mayo', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', "i'm", 'jerry', '||period||', 'how', 'do', 'you', 'like', 'my', 'pants', '||questionmark||', '||return||', '||return||', 'keri:', 'nice', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'talking', 'to', 'george', '||rightparen||', "it's", 'working', '||period||', '||leftparen||', 'to', 'the', 'girl', '||comma||', "who's", 'tapping', 'on', 'the', 'aquarium', '||rightparen||', "don't", 'tap', 'on', 'the', 'glass', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'answering', 'the', 'phone', 'while', 'walking', 'away', '||rightparen||', 'joe', "mayo's", 'apartment', '||questionmark||', '||return||', '||return||', 'puddy:', '||leftparen||', 'standing', 'guard', 'by', 'the', 'stereo', 'as', 'george', 'walks', 'by', 'him', '||rightparen||', 'hey', '||exclammark||', 'cocktail', 'off', 'the', 'speaker', '||period||', '||return||', '||return||', 'elaine:', 'goodbye', '||comma||', 'dr', '||period||', 'zaius', '||period||', '||return||', '||return||', 'silvio:', 'why', 'are', 'we', 'in', "jerry's", 'apartment', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'i', 'like', 'to', 'think', 'of', 'this', 'as', 'my', 'conference', 'room', '||period||', 'yeah', '||comma||', 'it', 'has', 'a', 'more', 'formal', 'atmosphere', '||comma||', 'you', 'know', '||comma||', 'with', 'the', 'shelves', '||comma||', 'and', 'the', 'furniture', '||period||', '||return||', '||return||', 'silvio:', 'make', 'it', 'quick', 'kramer', '||comma||', 'my', 'wife', 'and', 'i', 'are', 'about', 'to', 'go', 'bowling', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'well', '||comma||', 'um', '||comma||', 'newman', 'thinks', 'that', 'you', '||comma||', 'uh', '||comma||', 'evicted', 'him', '||questionmark||', '||return||', '||return||', 'silvio:', 'i', 'did', '||period||', 'i', "don't", 'like', 'mr', '||period||', 'newman', '||period||', 'he', 'is', 'an', 'agitator', '||period||', '||return||', '||return||', 'kramer:', 'look', '||period||', '||period||', '||period||', "i've", 'known', 'newman', 'all', 'my', 'life', '||comma||', 'in', 'the', 'building', '||comma||', 'and', "you're", 'all', 'wrong', 'about', 'him', '||period||', "he's", 'a', 'model', 'tenant', '||period||', 'portly', '||comma||', 'yes', '||comma||', 'but', 'smart', 'as', 'a', 'whip', '||period||', '||return||', '||return||', 'silvio:', 'ok', '||comma||', 'on', 'your', 'word', 'he', 'can', 'stay', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', '||return||', '||return||', 'silvio:', 'but', '||period||', '||period||', '||period||', "i'm", 'gonna', 'keep', 'my', 'eye', 'on', 'him', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', "won't", 'regret', 'it', '||period||', '||return||', '||return||', 'silvio:', "what's", 'wrong', '||questionmark||', '||return||', '||return||', 'joy', 'mayo:', 'elaine', '||comma||', 'thanks', 'for', 'coming', '||period||', '||return||', '||return||', 'elaine:', 'good', 'working', 'with', 'you', '||period||', '||return||', '||return||', 'puddy:', 'all', 'right', '||comma||', "let's", 'hit', 'the', 'bricks', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'joy', 'mayo:', 'hey', '||comma||', 'i', 'got', 'a', 'coat', 'just', 'like', 'this', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'uhhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'so', 'joe', 'mayo', 'had', 'the', 'same', 'coat', '||period||', '||return||', '||return||', 'george:', 'and', 'you', 'threw', 'it', 'out', 'the', 'window', '||questionmark||', '||return||', '||return||', 'elaine:', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', 'god', '||comma||', "you're", 'like', 'a', 'rock', 'star', '||period||', '||return||', '||return||', 'elaine:', 'so', 'now', 'joe', 'mayo', 'wants', 'me', 'to', 'buy', 'him', 'a', 'new', 'coat', '||period||', '||return||', '||return||', 'jerry:', 'because', 'you', 'threw', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'because', 'i', 'was', 'in', 'charge', 'of', 'the', 'coats', '||period||', "it's", '||period||', '||period||', '||period||', 'insane', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'did', 'actually', 'throw', 'his', 'coat', 'out', 'the', 'window', '||period||', '||return||', '||return||', 'elaine:', 'but', 'he', "doesn't", 'know', 'that', '||period||', 'as', 'far', 'as', 'he', 'knows', '||comma||', 'somebody', 'stole', 'it', '||comma||', 'and', "that's", 'the', 'person', 'who', 'should', 'be', 'responsible', '||period||', '||return||', '||return||', 'jerry:', 'but', "that's", 'you', '||period||', '||return||', '||return||', 'elaine:', 'so', 'i', 'guess', "i'll", 'have', 'to', 'buy', 'him', 'a', 'new', 'coat', '||comma||', 'even', 'though', 'i', "don't", 'think', 'i', 'should', 'be', 'held', 'responsible', '||comma||', 'which', 'i', 'am', 'anyway', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'satisfied', '||period||', 'uh', '||period||', '||period||', '||period||', 'my', 'back', 'is', '||period||', '||period||', '||period||', 'killing', 'me', '||period||', '||return||', '||return||', 'jerry:', 'of', 'course', '||period||', 'because', 'of', 'that', 'wallet', '||period||', 'you', '||dash||', 'you', 'got', 'a', 'filing', 'cabinet', 'under', 'half', 'of', 'your', 'ass', '||period||', '||return||', '||return||', 'george:', 'this', '||period||', '||period||', '||period||', 'is', 'an', 'organizer', '||comma||', 'a', 'secretary', '||comma||', 'and', 'a', 'friend', '||period||', '||return||', '||return||', 'elaine:', 'look', 'at', 'you', '||period||', "you're", 'on', 'a', 'slant', '||period||', '||return||', '||return||', 'george:', 'here', '||comma||', 'just', 'give', 'me', 'a', 'couple', 'of', 'napkins', '||period||', '||return||', '||return||', 'george:', 'there', '||comma||', 'there', "i'm", 'fine', '||period||', '||return||', '||return||', 'jerry:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'i', 'had', 'some', 'hard', 'candy', 'in', 'there', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'no', '||comma||', 'this', 'is', 'supposed', 'to', 'go', 'to', 'joe', "mayo's", 'apartment', '||period||', '||return||', '||return||', 'george:', 'ahhh', '||period||', 'how', 'does', 'this', 'thing', 'work', '||questionmark||', '||return||', '||return||', 'george:', 'ahhhhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'delivery', 'man:', 'sir', '||comma||', 'do', 'you', 'want', 'me', 'to', 'deliver', 'this', 'to', 'your', "friend's", 'place', 'or', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'ahhhhh', '||period||', '||period||', '||period||', '||return||', '||return||', 'keri:', 'ready', 'to', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'set', '||period||', 'i', "can't", 'believe', "i'm", 'going', 'dancing', '||period||', '||return||', '||return||', 'keri:', 'you', "don't", 'go', 'that', 'often', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'because', "it's", 'so', 'stupid', '||period||', 'shall', 'we', '||questionmark||', '||return||', '||return||', 'keri:', 'do', 'me', 'a', 'favor', '||period||', 'can', 'you', 'hold', 'this', 'stuff', 'for', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'compact', '||comma||', 'lipstick', '||comma||', 'all', 'this', '||questionmark||', '||return||', '||return||', 'keri:', 'and', 'can', 'you', 'help', 'to', 'carry', 'my', 'keys', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', '||comma||', 'a', 'medieval', 'dungeon', 'master', '||questionmark||', '||return||', '||return||', 'keri:', 'and', 'a', 'tin', 'of', 'altoids', '||period||', '||return||', '||return||', 'jerry:', 'ow', '||exclammark||', 'sharp', 'key', '||period||', '||return||', '||return||', 'kramer:', 'so', '||comma||', "you're", 'sleeping', 'with', "silvio's", 'wife', '||questionmark||', '||return||', '||return||', 'newman:', 'well', '||comma||', "there's", 'very', 'little', 'sleeping', 'going', 'on', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', "didn't", 'you', 'tell', 'me', 'about', 'this', '||questionmark||', '||return||', '||return||', 'newman:', 'quite', 'frankly', '||comma||', 'i', "don't", 'see', 'how', "it's", 'any', 'of', 'your', 'business', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'my', 'business', 'now', '||period||', 'look', '||comma||', 'i', 'stuck', 'up', 'for', 'you', '||period||', 'man', '||comma||', 'if', 'he', 'catches', 'you', '||comma||', "we're", 'both', 'out', '||period||', '||return||', '||return||', 'newman:', 'hey', '||comma||', 'what', 'is', 'that', 'up', 'that', 'tree', '||questionmark||', '||return||', '||return||', 'kramer:', 'hoooh', '||exclammark||', 'man', '||comma||', 'that', 'looks', 'like', 'a', 'dead', 'bear', '||period||', '||return||', '||return||', 'newman:', 'no', '||comma||', "that's", 'a', 'fur', 'coat', '||exclammark||', 'hey', '||comma||', 'uh', '||comma||', 'give', 'me', 'a', 'boost', '||period||', '||return||', '||return||', 'kramer:', 'man', '||comma||', 'where', 'did', 'you', 'learn', 'to', 'climb', 'trees', 'like', 'that', '||questionmark||', '||return||', '||return||', 'newman:', 'the', 'pacific', 'northwest', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'you', 'had', 'to', 'carry', 'some', 'of', "keri's", 'stuff', '||period||', 'big', 'deal', '||period||', '||return||', '||return||', 'jerry:', 'you', "don't", 'understand', '||period||', 'i', 'went', 'on', 'a', 'successful', 'pocket', 'diet', '||comma||', 'and', 'i', 'want', 'to', 'keep', 'that', 'weight', 'off', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', 'what', '||questionmark||', 'we', 'sell', 'this', 'thing', 'at', 'peterman', 'that', 'would', 'be', 'perfect', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'not', 'more', 'of', 'that', 'crap', 'from', 'the', 'titanic', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'no', '||period||', "it's", 'a', 'small', "men's", 'carryall', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'carrying', 'a', 'purse', '||period||', '||return||', '||return||', 'elaine:', "it's", 'not', 'a', 'purse', '||period||', "it's", 'european', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'did', 'george', 'buy', 'joe', 'mayo', 'that', 'chair', 'yet', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'elaine:', 'if', "i'm", "gettin'", 'him', 'a', 'new', 'fur', '||comma||', "i'm", 'not', "chippin'", 'in', 'on', 'a', 'gift', '||comma||', 'too', '||period||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'george', '||comma||', 'did', 'you', 'get', 'joe', 'mayo', 'that', 'chair', 'yet', '||questionmark||', '||return||', '||return||', 'george:', 'not', 'yet', '||period||', 'oh', '||exclammark||', 'ho', 'ho', '||exclammark||', 'god', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'in', '||period||', '||period||', '||period||', 'transit', '||period||', '||return||', '||return||', 'elaine:', 'did', 'he', 'get', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'mmm', '||comma||', 'good', '||period||', 'tell', 'him', "i'm", 'out', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hearing', 'elaine', 'over', 'the', 'phone', '||rightparen||', 'what', '||comma||', "she's", 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'so', 'what', '||questionmark||', "you're", "gettin'", 'a', 'deal', '||comma||', 'right', '||questionmark||', "we'll", 'split', 'it', 'three', 'ways', '||period||', '||return||', '||return||', 'george:', 'allllll', 'right', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'noise', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'hangs', 'up', 'the', 'phone', '||rightparen||', "that's", 'my', 'toaster', '||period||', 'i', 'got', 'to', 'go', '||period||', 'ohhhhhhhhhhhhh', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'sometimes', 'i', 'get', 'the', 'feeling', 'george', "isn't", 'being', 'completely', 'honest', 'with', 'me', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'oh', '||comma||', 'uh', '||comma||', 'yeah', '||period||', 'uh', '||comma||', 'here', 'are', 'your', 'pliers', 'back', '||period||', '||period||', '||period||', '||period||', 'weak', 'hinge', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'guess', 'i', 'better', 'go', 'and', 'price', 'fur', 'coats', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'go', 'down', 'to', '88th', 'street', '||period||', "they're", 'free', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "they're", 'hanging', 'from', 'the', 'trees', '||period||', 'you', 'know', '||comma||', 'newman', 'found', 'one', 'there', 'yesterday', '||period||', 'man', '||comma||', 'that', 'guy', 'can', 'climb', 'like', 'a', 'ring', '||dash||', 'tailed', 'lemur', '||exclammark||', '||return||', '||return||', 'elaine:', '88th', 'street', '||questionmark||', "that's", 'where', 'joe', 'mayo', 'lives', '||period||', "that's", 'the', 'coat', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'was', 'that', 'pop', 'sound', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'had', 'some', 'hard', 'candy', 'in', 'there', '||period||', '||return||', '||return||', 'newman:', 'so', '||comma||', 'to', 'what', 'do', 'i', 'owe', 'this', 'unusual', 'invitation', '||questionmark||', '||return||', '||return||', 'elaine:', 'come', 'in', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'newman:', 'ahh', '||exclammark||', 'this', 'is', 'very', 'much', 'as', 'i', 'imagined', 'it', 'to', 'be', '||period||', 'aside', 'from', 'this', 'rattan', 'piece', '||comma||', 'which', 'seems', 'oddly', 'out', 'of', 'place', '||period||', '||return||', '||return||', 'elaine:', 'please', '||comma||', 'sit', 'down', '||period||', 'newman', '||comma||', 'um', '||comma||', 'i', 'wanted', 'to', 'talk', 'to', 'you', 'about', 'something', '||period||', '||return||', '||return||', 'newman:', 'this', "isn't", 'about', 'my', 'opening', 'your', 'mail', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'because', 'i', "don't", '||comma||', 'never', 'have', '||comma||', 'anything', 'i', 'read', 'was', 'already', 'open', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'yeah', '||comma||', 'uh', '||comma||', 'no', '||period||', 'newman', '||comma||', 'uh', '||comma||', 'i', 'heard', 'that', 'you', 'found', 'a', 'fur', 'coat', 'in', 'a', 'tree', '||period||', 'and', '||comma||', 'i', 'believe', 'that', 'it', 'belongs', 'to', 'a', 'friend', 'of', 'mine', '||comma||', 'and', "i'd", 'like', 'to', 'give', 'it', 'back', 'to', 'him', '||period||', '||return||', '||return||', 'newman:', 'sorry', '||period||', 'climbers', '||comma||', 'keepers', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'newmie', '||period||', 'um', '||comma||', 'i', 'know', 'how', 'you', 'feel', 'about', 'me', '||comma||', 'and', 'i', 'have', 'to', 'tell', 'you', '||comma||', "i'm", 'quite', 'flattered', '||period||', '||return||', '||return||', 'newman:', 'you', 'are', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', 'i', 'mean', '||comma||', 'of', 'all', 'the', 'men', 'that', 'i', 'know', '||comma||', "you're", 'the', 'only', 'one', "who's", 'held', 'down', 'a', 'steady', 'job', 'for', 'several', 'years', '||period||', '||return||', '||return||', 'newman:', 'well', '||comma||', "it's", '||dash||', "it's", 'interesting', 'work', '||comma||', 'i', "don't", 'mind', 'it', '||period||', '||return||', '||return||', 'elaine:', 'ha', 'ha', 'ha', 'ha', '||period||', '||return||', '||return||', 'newman:', "don't", 'you', 'have', 'a', '||dash||', 'a', 'boyfriend', '||questionmark||', 'a', '||comma||', 'uh', '||comma||', 'burly', '||comma||', 'athletic', 'type', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', "don't", 'worry', '||comma||', "he's", 'cool', '||period||', '||return||', '||return||', 'newman:', 'cool', '||questionmark||', '||return||', '||return||', 'elaine:', 'very', 'cool', '||period||', 'so', '||comma||', 'what', 'do', 'you', 'say', '||questionmark||', 'can', 'you', 'do', 'this', 'one', 'little', 'favor', '||comma||', 'newmie', '||questionmark||', '||return||', '||return||', 'newman:', 'oh', '||comma||', 'how', "i've", 'waited', 'for', 'this', 'moment', '||period||', 'but', 'alas', '||comma||', 'my', 'heart', 'belongs', 'to', 'another', "man's", 'wife', '||comma||', 'and', 'i', 'have', 'given', 'the', 'coat', 'to', 'her', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "we're", 'done', 'here', '||period||', '||return||', '||return||', 'newman:', 'for', 'i', 'am', 'in', 'love', 'with', 'svetlana', '||comma||', 'and', 'i', "don't", 'care', 'if', 'the', 'whole', 'world', 'knows', '||comma||', 'except', 'for', 'silvio', '||comma||', 'who', 'would', 'throw', 'me', 'out', 'of', 'the', 'apartment', '||comma||', 'where', 'i', 'would', 'be', 'dancing', 'on', 'the', 'sidewalk', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||comma||', 'thank', 'you', '||comma||', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'keri:', 'nice', 'carryall', '||period||', '||return||', '||return||', 'jerry:', "it's", 'european', '||period||', '||return||', '||return||', 'keri:', 'do', 'you', 'still', 'have', 'my', 'lipstick', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||comma||', 'i', 'think', 'i', 'do', '||period||', 'i', 'can', 'never', 'find', 'anything', 'in', 'here', '||period||', 'ah', '||comma||', 'here', 'it', 'is', '||period||', 'so', '||comma||', 'that', 'joe', 'mayo', 'throws', 'the', 'worst', 'parties', '||comma||', "doesn't", 'he', '||questionmark||', 'so', 'what', 'was', 'your', 'job', '||questionmark||', '||return||', '||return||', 'keri:', 'my', 'job', 'was', 'to', 'keep', 'you', 'away', 'from', 'the', 'music', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'he', "doesn't", 'like', 'my', 'taste', 'in', 'music', '||questionmark||', '||return||', '||return||', 'keri:', 'guess', 'not', '||period||', '||return||', '||return||', 'jerry:', 'you', "should've", 'been', 'there', 'last', 'year', '||period||', 'i', 'got', 'jiggy', 'with', 'it', '||exclammark||', '||return||', '||return||', 'silvio:', 'kramer', '||exclammark||', "it's", 'silvio', '||exclammark||', 'open', 'up', '||comma||', 'i', 'need', 'to', 'talk', 'to', 'you', '||exclammark||', 'i', 'can', 'see', 'you', 'through', 'the', 'reverse', 'peephole', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'silvio', '||exclammark||', '||return||', '||return||', 'silvio:', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', '||return||', '||return||', 'silvio:', 'svetlana', 'says', 'she', 'find', 'it', 'in', 'the', 'laundry', 'room', '||comma||', 'but', 'i', 'think', 'it', 'is', 'a', 'gift', 'from', 'that', 'postman', 'agitator', '||period||', 'where', 'is', 'he', '||questionmark||', '||return||', '||return||', 'kramer:', 'relax', '||comma||', 'silvio', '||period||', '||return||', '||return||', 'silvio:', 'no', '||comma||', "that's", 'it', '||period||', "you're", 'both', 'out', 'of', 'the', 'building', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||exclammark||', 'hey', '||comma||', 'newman', "didn't", 'even', 'give', 'her', 'that', '||exclammark||', 'no', '||comma||', "that's", 'not', 'even', 'a', "woman's", 'coat', '||period||', "it's", 'a', "man's", '||exclammark||', '||return||', '||return||', 'silvio:', 'a', "man's", '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'silvio:', 'what', 'kind', 'of', 'a', 'man', 'would', 'wear', 'fur', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'lots', 'of', "'em", '||period||', '||return||', '||return||', 'silvio:', 'would', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', '||return||', '||return||', 'silvio:', 'then', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', 'about', 'jerry', '||questionmark||', '||return||', '||return||', 'silvio:', 'jerry', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'sure', '||comma||', "he's", 'a', 'celebrity', '||period||', 'oh', '||comma||', 'yeah', '||comma||', 'they', 'wear', 'a', 'lot', 'of', 'furs', '||period||', "they're", 'desperate', '||comma||', 'insecure', 'people', '||period||', '||return||', '||return||', 'silvio:', 'yes', '||comma||', 'you', 'are', 'right', '||period||', "it's", 'all', 'about', '||comma||', 'me', '||comma||', 'me', '||comma||', 'me', '||period||', 'please', '||comma||', 'look', 'at', 'me', '||exclammark||', 'i', 'am', 'so', 'pretty', '||exclammark||', 'love', 'me', '||exclammark||', 'want', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'jerry:', 'i', 'have', 'to', 'do', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'you', 'have', 'to', 'do', 'is', 'wear', 'the', 'fur', 'so', 'silvio', 'thinks', "it's", 'yours', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'wearing', 'the', 'fur', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'then', '||comma||', 'newman', 'and', 'i', '||comma||', 'we', 'get', 'thrown', 'out', 'of', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'is', 'that', 'right', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'why', "don't", 'you', 'just', 'take', 'a', 'good', '||comma||', 'hard', 'look', 'at', 'what', 'your', 'life', 'will', 'be', 'like', 'if', "i'm", 'not', 'around', '||questionmark||', '||return||', '||return||', 'jerry:', 'newman', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'come', 'on', '||comma||', 'man', '||exclammark||', 'well', '||comma||', "i'll", 'tell', 'you', 'what', '||comma||', 'if', 'you', 'do', 'this', '||comma||', "i'll", 'give', 'you', 'that', 'walkman', "you're", 'always', 'asking', 'about', '||period||', '||return||', '||return||', 'jerry:', "that's", 'my', 'walkman', '||exclammark||', '||return||', '||return||', 'kramer:', 'and', "you'll", 'get', 'it', 'back', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'good', '||comma||', 'thanks', '||comma||', 'i', 'owe', 'you', 'one', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'and', 'by', 'the', 'way', '||comma||', 'uh', '||comma||', 'that', 'walkman', 'was', 'broke', 'when', 'you', 'gave', 'it', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'did', 'you', 'get', 'that', 'chair', 'yet', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'gets', 'here', 'when', 'it', 'gets', 'here', '||period||', 'would', 'you', 'stop', "ridin'", 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'know', 'what', '||questionmark||', 'just', 'call', 'up', 'and', 'cancel', 'it', '||period||', "i'm", 'out', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'joe', 'mayo', "doesn't", 'like', 'my', 'taste', 'in', 'music', '||period||', "he's", 'not', "gettin'", 'a', 'gift', 'from', 'me', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', "can't", 'believe', "you're", 'dropping', 'out', '||comma||', 'too', '||period||', 'so', 'now', 'kramer', 'and', 'i', 'have', 'to', 'pay', 'for', 'the', 'entire', 'gift', '||questionmark||', '||return||', '||return||', 'kramer:', 'whoa', '||comma||', 'whoa', '||period||', 'now', '||comma||', "who's", 'this', 'joe', 'mayo', "everyone's", 'talking', 'about', '||questionmark||', '||return||', '||return||', 'george:', "he's", 'the', 'guy', "we're", 'the', 'buying', 'the', 'chair', 'for', '||comma||', 'remember', '||questionmark||', 'it', 'was', 'your', 'suggestion', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', 'the', 'chair', 'is', 'a', 'fantastic', 'gift', 'idea', '||period||', 'but', 'i', 'never', 'heard', 'of', 'this', 'joe', 'mayo', '||period||', 'and', 'frankly', '||comma||', 'it', 'sounds', 'made', 'up', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'so', 'now', 'i', 'have', 'to', 'buy', 'this', 'whole', 'chair', 'by', 'myself', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'you', "don't", 'have', 'to', 'buy', 'anything', '||period||', '||return||', '||return||', 'george:', 'i', 'already', 'bought', 'it', '||exclammark||', "i've", 'been', "lyin'", 'to', 'you', 'for', 'three', 'days', '||comma||', 'and', 'now', "you're", 'all', "screwin'", 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'understand', '||period||', 'why', "didn't", 'you', 'tell', 'us', 'you', 'had', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'needed', 'it', '||exclammark||', 'my', 'back', 'is', '||period||', '||period||', '||period||', 'a', 'little', 'tweaked', '||period||', '||return||', '||return||', 'jerry:', 'because', 'of', 'your', 'giant', 'wallet', '||period||', 'just', 'get', 'rid', 'of', 'it', '||exclammark||', '||return||', '||return||', 'george:', 'never', '||exclammark||', 'it', 'is', 'a', 'part', 'of', 'me', '||period||', 'i', 'will', 'just', 'return', 'the', 'chair', '||comma||', 'and', 'it', 'will', 'be', 'easy', '||comma||', 'because', 'the', 'receipt', 'is', 'in', 'my', 'good', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'your', 'good', 'friend', 'is', 'morbidly', 'obese', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'at', 'least', '||comma||', "i'm", 'not', 'carrying', 'a', 'purse', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'a', 'purse', '||period||', "it's", 'european', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "silvio's", 'down', 'there', '||period||', "he's", 'shoveling', 'the', 'walk', '||period||', 'now', '||comma||', 'all', 'you', 'gotta', 'do', 'is', 'put', 'this', 'on', '||comma||', 'you', 'go', 'down', 'to', 'the', 'corner', '||comma||', 'you', 'pick', 'up', 'a', 'paper', '||comma||', 'and', 'you', 'come', 'right', 'back', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'there', 'you', 'go', '||period||', '||return||', '||return||', 'jerry:', 'how', 'do', 'i', 'look', '||questionmark||', '||return||', '||return||', 'kramer:', 'ahh', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'learn', 'guitar', '||comma||', 'first', 'lesson', 'free', '||questionmark||', 'huh', '||period||', '||return||', '||return||', 'george:', 'my', 'receipts', '||exclammark||', 'the', 'chair', '||exclammark||', 'my', 'tiger', 'poster', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'silvio', '||comma||', 'just', 'out', 'for', 'a', 'little', 'stroll', 'in', 'my', 'favorite', 'fur', 'coat', '||period||', '||return||', '||return||', 'silvio:', 'that', 'is', 'your', 'coat', '||questionmark||', '||return||', '||return||', 'jerry:', 'it', 'sure', 'is', '||period||', '||return||', '||return||', 'silvio:', 'kramer', 'says', 'you', 'need', 'it', 'because', "you're", 'an', 'entertainer', 'and', "you're", 'desperate', 'for', 'attention', '||period||', '||return||', '||return||', 'jerry:', "that's", 'true', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', 'forgot', 'your', 'purse', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'silvio', '||comma||', 'look', 'at', 'jerry', 'here', '||comma||', 'prancing', 'around', 'in', 'his', 'coat', 'with', 'his', 'purse', '||period||', 'yup', '||comma||', "he's", 'a', 'dandy', '||period||', "he's", 'a', 'real', 'fancy', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'this', "isn't", 'my', 'coat', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "you're", 'not', 'fancy', '||exclammark||', '||return||', '||return||', 'silvio:', 'no', '||comma||', "he's", 'very', 'fancy', '||exclammark||', 'want', 'me', '||comma||', 'love', 'me', '||exclammark||', 'shower', 'me', 'with', 'kisses', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "where'd", 'you', 'get', 'it', '||questionmark||', "that's", 'his', 'coat', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'not', '||period||', "it's", 'mine', '||period||', "i'm", 'a', 'fancy', 'boy', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "that's", 'not', 'your', 'coat', '||period||', '||return||', '||return||', 'silvio:', 'if', 'that', 'is', 'not', 'his', 'coat', '||comma||', 'whose', 'coat', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'joe', "mayo's", 'coat', '||period||', '||return||', '||return||', 'silvio:', "who's", 'joe', 'mayo', '||questionmark||', '||return||', '||return||', 'kramer:', 'that', 'must', 'be', 'the', 'man', "that's", 'sleeping', 'with', 'your', 'wife', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'officer', '||exclammark||', 'someone', 'took', 'my', 'european', 'carryall', '||exclammark||', '||return||', '||return||', 'cop:', 'your', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', '||period||', '||period||', '||period||', 'black', '||comma||', 'leather', '||period||', '||period||', '||period||', 'thing', 'with', 'a', 'strap', '||period||', '||return||', '||return||', 'cop:', 'you', 'mean', 'a', 'purse', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'a', 'purse', '||period||', 'i', 'carry', 'a', 'purse', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'silvio', 'ambushed', 'joe', 'mayo', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'he', 'was', "waitin'", 'inside', 'his', 'apartment', 'for', 'him', 'with', 'a', 'sock', 'full', 'of', 'pennies', '||period||', '||return||', '||return||', 'jerry:', 'he', 'should', 'have', 'had', 'a', 'reverse', 'peephole', '||period||', '||return||', '||return||', 'puddy:', 'hey', '||comma||', 'babe', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'puddy:', "it's", 'my', 'new', 'coat', '||period||', '||return||', '||return||', 'elaine:', 'you', 'ditched', 'the', 'fur', '||questionmark||', '||return||', '||return||', 'puddy:', 'yeah', '||comma||', 'i', 'saw', 'jerry', 'wearing', 'his', '||period||', 'he', 'looked', 'like', 'a', 'bit', 'of', 'a', 'dandy', '||period||', 'check', 'it', 'out', '||exclammark||', '8', '||dash||', 'ball', '||exclammark||', 'you', 'got', 'a', 'question', '||comma||', 'you', 'ask', 'the', '8', '||dash||', 'ball', '||period||', '||return||', '||return||', 'elaine:', "you're", 'gonna', 'wear', 'this', 'all', 'the', 'time', '||questionmark||', '||return||', '||return||', 'puddy:', 'all', 'signs', 'point', 'to', "'yes", '||exclammark||', "'", '||return||', '||return||', 'jerry:', 'so', 'your', 'saying', 'unicef', 'is', 'a', 'scam', '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'the', 'perfect', 'cover', 'for', 'a', 'money', 'laundering', 'operation', '||period||', 'no', 'one', 'can', 'keep', 'track', 'of', 'all', 'those', 'kids', 'with', 'the', 'little', 'orange', 'boxes', 'of', 'change', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'no', "it's", 'sally', 'weaver', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'yeah', 'your', 'old', 'college', 'roommate', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "it's", 'susan', "ross's", 'old', 'college', 'roommate', '||semicolon||', 'she', 'moved', 'to', 'new', 'york', 'a', 'few', 'years', 'ago', '||period||', "she's", 'trying', 'to', 'become', 'an', 'actress', '||period||', '||return||', '||return||', 'kramer:', 'hmmm', '||comma||', '||comma||', 'dramatica', 'comedia', 'heh', '||exclammark||', '||return||', '||return||', 'jerry:', 'untalented', '||comma||', "she's", 'always', 'inviting', 'me', 'to', 'see', 'her', 'in', 'some', 'bad', 'play', 'in', 'tiny', 'room', 'without', 'ventilation', '||period||', "it's", 'really', 'depressing', '||period||', '||return||', '||return||', 'kramer:', 'euh', '||period||', '||period||', 'we', "don't", 'go', 'to', 'enough', 'theater', '||period||', '||return||', '||return||', 'jerry:', 'she', 'should', 'just', 'give', 'up', '||period||', '||return||', '||return||', 'jerry:', 'heeyyy', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'sally:', 'hey', 'there', 'mr', '||period||', 'too', 'big', 'to', 'come', 'to', 'my', 'shows', '||period||', 'i', 'just', 'came', 'back', 'from', '||leftparen||', '||questionmark||', '||rightparen||', 'whoooooooo', '||period||', '||period||', '||period||', '||period||', '||period||', "i'm", 'on', 'my', 'way', 'to', 'an', 'audition', 'still', 'waiting', 'for', 'that', 'big', 'break', '||period||', '||return||', '||return||', 'kramer:', 'why', "don't", 'you', 'just', 'give', 'up', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'at', 'least', "that's", 'what', 'jerry', 'says', '||period||', 'now', 'face', 'it', '||period||', 'if', 'it', "hasn't", 'happen', "it's", 'not', 'gonna', 'happen', '||period||', 'all', 'right', '||comma||', 'we', 'go', 'grab', 'some', 'bouffe', '||period||', 'join', 'us', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', "susan's", 'dead', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', 'she', 'was', 'happy', 'someone', 'finally', 'said', 'it', '||period||', '||return||', '||return||', 'jerry:', "why'd", 'you', 'have', 'to', 'say', 'anything', 'to', 'her', '||questionmark||', '||return||', '||return||', 'kramer:', "'felt", 'that', 'the', 'conversation', 'was', 'lagging', '||period||', '||return||', '||return||', 'jerry:', 'why', "can't", 'you', 'ever', 'keep', 'your', 'big', 'mouth', 'shut', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'come', 'in', 'here', 'to', 'get', 'a', 'pleasant', 'meal', 'and', 'if', "we're", 'not', 'gonna', 'have', 'one', "i'll", 'grab', 'a', 'bite', 'to', 'eat', 'at', 'your', 'place', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'maybe', 'kramer', 'is', 'right', '||comma||', 'some', 'people', 'should', 'just', 'give', 'up', '||period||', 'i', 'have', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'wanna', 'be', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'remember', '||comma||', 'but', 'it', 'certainly', "wasn't", 'this', '||period||', 'look', 'at', 'this', 'cartoon', 'in', 'the', 'new', 'yorker', '||comma||', 'i', "don't", 'get', 'this', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'either', '||period||', '||return||', '||return||', 'elaine:', 'and', "you're", 'on', 'the', 'fringe', 'of', 'the', 'humor', 'business', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'george', 'look', 'at', 'this', '||period||', '||return||', '||return||', 'george:', "that's", 'cute', '||period||', '||return||', '||return||', 'elaine:', 'you', 'got', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'never', 'mind', '||period||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', "we're", 'two', 'intelligent', 'people', 'here', '||period||', 'we', 'can', 'figure', 'this', 'out', '||period||', 'now', 'we', 'got', 'a', 'dog', 'and', 'a', 'cat', 'in', 'an', 'office', '||period||', '||return||', '||return||', 'jerry:', 'it', 'looks', 'like', 'my', "accountant's", 'office', 'but', "there's", 'no', 'pets', 'working', 'there', '||period||', '||return||', '||return||', 'elaine:', 'the', 'cat', 'is', 'saying', '||quotemark||', "i've", 'enjoyed', 'reading', 'your', 'e', '||dash||', 'mail', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 'maybe', "it's", 'got', 'something', 'to', 'do', 'with', 'that', '42', 'in', 'the', 'corner', '||period||', '||return||', '||return||', 'elaine:', "it's", 'a', 'page', 'number', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "can't", 'crack', 'this', 'one', '||period||', '||return||', '||return||', 'elaine:', 'aahh', '||exclammark||', 'this', 'has', 'got', 'to', 'be', 'a', 'mistake', '||period||', '||return||', '||return||', 'george:', 'try', 'shaking', 'it', '||period||', '||period||', '||period||', '||leftparen||', 'long', 'pause', '||rightparen||', 'well', '||comma||', 'janet', 'should', 'be', 'here', 'any', 'minute', '||period||', '||return||', '||return||', 'jerry:', "you've", 'been', 'hiding', 'her', 'from', 'us', '||period||', 'you', 'must', 'really', 'like', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'aah', '||exclammark||', 'the', 'minute', 'i', 'saw', 'this', 'girl', '||comma||', 'we', 'just', 'clicked', '||period||', "she's", 'got', 'such', 'a', 'nice', 'face', '||period||', 'hummmm', 'her', 'eyes', '||comma||', 'her', 'mouth', '||comma||', 'nose', '||return||', '||return||', 'elaine:', 'we', 'know', 'what', 'a', 'face', 'consists', 'of', '||period||', '||return||', '||return||', 'janet:', "i'm", 'sorry', "i'm", 'late', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'elaine', '||comma||', 'i', 'give', 'you', '||period||', '||period||', 'janet', '||period||', '||return||', '||return||', 'janet:', 'nice', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||exclammark||', '||return||', '||return||', 'janet:', 'do', 'we', 'still', 'have', 'time', 'to', 'make', 'the', 'movie', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'euh', '||period||', '||period||', 'yeah', 'we', 'just', "can't", 'go', 'to', 'the', 'supermarket', 'to', 'get', 'some', 'candy', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'she', 'looks', 'exactly', 'like', 'you', '||period||', '||return||', '||return||', 'jerry:', 'she', 'does', 'not', '||period||', '||return||', '||return||', 'elaine:', 'well', 'maybe', 'she', "doesn't", '||comma||', 'i', "don't", 'care', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'you', 'got', 'some', 'messages', '||period||', '||period||', 'yeahumm', '||period||', '||period||', '||period||', 'george', '||comma||', 'george', '||comma||', 'elaine', '||comma||', 'george', 'again', '||comma||', 'elaine', '||comma||', 'newman', '||semicolon||', 'but', 'that', 'was', 'a', 'crank', 'call', '||period||', 'and', 'some', 'sally', 'woman', 'called', 'said', '||quotemark||', 'thanks', 'a', 'lot', '||comma||', "she's", 'quitting', 'the', 'business', '||comma||', 'you', 'ruined', 'her', 'life', '||period||', '||return||', '||return||', 'jerry:', 'what', '||exclammark||', "you're", 'the', 'one', 'who', 'ruined', 'her', 'life', '||period||', '||return||', '||return||', 'kramer:', 'well', "that's", 'not', 'how', 'she', 'remembers', 'it', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'got', 'to', 'talk', 'her', 'out', 'of', 'this', '||period||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'you', 'said', 'she', 'stinks', '||return||', '||return||', 'jerry:', 'she', 'does', 'stink', 'and', 'she', 'should', 'quit', '||period||', 'but', 'i', "don't", 'want', 'it', 'to', 'be', 'because', 'of', 'me', '||period||', 'it', 'should', 'be', 'the', 'traditional', 'route', '||semicolon||', 'years', 'of', 'rejections', 'and', 'failures', 'till', "she's", 'spit', 'out', 'the', 'bottom', 'of', 'the', 'porn', 'industry', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'george', 'and', 'janet', '||period||', '||return||', '||return||', 'kramer:', 'aahh', '||period||', '||period||', '||period||', "who's", 'janet', '||questionmark||', '||return||', '||return||', 'jerry:', "george's", 'girlfriend', '||comma||', 'elaine', 'thinks', 'she', 'looks', 'like', 'me', 'but', 'i', 'think', "it's", 'as', 'you', 'would', 'say', '||comma||', 'kookie', 'talk', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'what', 'woman', 'i', 'always', 'thought', 'you', 'looked', 'like', '||semicolon||', 'leena', 'horne', '||period||', '||return||', '||return||', 'all:', 'hey', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'kramer:', 'and', 'you', 'must', '||period||', '||period||', '||period||', '||period||', 'look', 'exactly', 'like', 'jerry', '||period||', 'you', "don't", 'see', 'this', '||semicolon||', "you're", 'like', 'twins', '||period||', '||period||', 'wooooohhhhh', '||exclammark||', '||exclammark||', '||exclammark||', 'this', 'is', 'eerie', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'what', 'are', 'you', 'talking', 'about', '||period||', '||period||', '||period||', 'janet', "doesn't", 'look', 'anything', 'like', 'jerry', '||return||', '||return||', 'janet:', 'well', 'maybe', 'we', 'do', 'look', 'a', 'little', 'like', 'each', 'other', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', 'hummm', '||comma||', 'what', 'do', 'you', 'know', 'about', 'what', 'you', 'look', 'like', '||period||', '||return||', '||return||', 'kramer:', "c'mon", 'george', 'relax', '||period||', 'just', 'because', 'they', 'look', 'alike', "doesn't", 'mean', "you're", 'secretly', 'in', 'love', 'with', 'jerry', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'nervous', '||rightparen||', 'all', 'right', 'now', "we're", 'going', 'bye', 'bye', '||period||', '||return||', '||return||', 'janet:', 'we', 'just', 'got', 'here', 'george', '||return||', '||return||', 'george:', 'well', '||comma||', '||comma||', '||comma||', "it's", 'getting', 'dark', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "she's", 'a', 'nice', 'girl', '||comma||', 'kinda', 'quiet', 'though', '||period||', '||return||', '||return||', 'jerry:', 'what', 'are', 'you', 'doing', '||questionmark||', "don't", 'tell', 'a', 'woman', 'she', 'looks', 'like', 'a', 'man', 'and', 'george', "doesn't", 'want', 'to', 'hear', 'his', 'girlfriend', 'looks', 'like', 'me', 'and', 'frankly', 'neither', 'do', 'i', '||return||', '||return||', 'kramer:', 'well', 'how', 'should', 'i', 'have', '||quotemark||', 'broached', 'the', 'subject', '||quotemark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'broach', '||comma||', 'you', 'keep', 'your', 'mouth', 'shut', '||period||', '||return||', '||return||', 'kramer:', 'well', 'sounds', 'like', "someone's", 'having', 'a', 'bad', 'day', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', 'because', 'of', 'you', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'think', 'one', 'of', 'us', 'should', 'leave', '||period||', '||return||', '||return||', 'jerry:', 'sally', '||comma||', 'you', "can't", 'quit', 'the', 'business', '||period||', 'this', 'is', 'all', 'because', 'of', 'me', '||period||', '||return||', '||return||', 'sally:', '||leftparen||', 'nods', '||rightparen||', 'hehumm', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'give', 'up', '||period||', 'you', "don't", 'think', 'people', 'tell', 'me', 'i', 'stink', '||questionmark||', 'when', "i'm", 'on', 'stage', "that's", 'all', 'i', 'hear', '||semicolon||', 'you', 'stink', '||comma||', 'you', 'suck', '||period||', 'we', 'like', 'magic', '||period||', '||return||', '||return||', 'sally:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'of', 'course', '||comma||', 'i', 'stink', '||comma||', 'you', 'stink', '||period||', "it's", 'show', 'bizz', '||period||', 'everybody', 'stinks', '||period||', '||period||', '||return||', '||return||', 'sally:', 'yeah', '||exclammark||', "you've", 'been', 'stinking', 'since', 'the', 'eighties', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'i', 'think', "we've", 'covered', 'my', 'act', '||period||', 'now', 'you', 'get', 'out', 'there', 'and', 'stink', 'it', 'up', 'with', 'everybody', 'else', '||period||', '||return||', '||return||', 'sally:', 'right', '||exclammark||', '||comma||', 'yesss', '||exclammark||', '||exclammark||', 'thank', 'you', "i'm", 'gonna', 'do', 'it', '||period||', '||leftparen||', 'starts', 'to', 'eat', 'her', 'food', '||rightparen||', '||return||', '||return||', 'jerry:', 'now', '||exclammark||', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'she', 'leaves', 'in', 'a', 'hurry', '||rightparen||', '||return||', '||return||', 'elaine:', 'well', "i've", 'asked', 'every', 'one', 'at', 'work', 'and', 'nobody', 'gets', 'this', 'cartoon', '||period||', 'i', 'mean', 'i', "don't", 'understand', 'why', 'no', 'one', 'can', 'explain', 'it', '||comma||', 'but', "i'm", 'gonna', 'get', 'to', 'the', 'bottom', 'of', 'this', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'i', 'think', "we're", 'at', 'the', 'bottom', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', 'who', 'just', 'came', 'in', '||rightparen||', 'hey', '||exclammark||', 'george', '||comma||', 'janet', 'looks', 'very', 'nice', 'and', "she's", 'quite', 'a', 'handsome', 'woman', '||period||', '||return||', '||return||', 'george:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'what', 'do', 'you', 'mean', 'by', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'enjoy', '||period||', '||leftparen||', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'jerry:', 'elaine', 'huh', '||questionmark||', '||period||', '||period||', "she's", 'completely', '||period||', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'i', 'know', '||period||', '||period||', '||period||', '||period||', "'cos", 'you', "don't", 'think', 'janet', '||questionmark||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'why', 'would', 'i', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "it's", 'ludicrous', '||period||', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', '||return||', '||return||', 'jerry:', 'for', 'either', 'one', 'of', 'us', '||period||', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'exactly', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'not', 'gay', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', 'neither', 'am', 'i', '||period||', '||return||', '||return||', 'both:', 'kramer', '||comma||', 'kramer', '||comma||', 'get', 'in', 'here', '||period||', '||return||', '||return||', 'george:', "where's", 'the', 'crazy', 'man', '||comma||', 'come', 'on', 'up', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', 'in', 'here', '||period||', '||return||', '||return||', 'george:', 'haaaaaa', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', "what's", 'happening', '||questionmark||', 'what', '||comma||', 'you', 'doing', '||comma||', 'come', 'and', 'talk', 'to', 'us', '||period||', '||return||', '||return||', 'kramer:', "i've", 'made', 'an', 'important', 'life', 'decision', '||period||', '||return||', '||return||', 'jerry:', 'lets', 'talk', 'about', 'that', '||period||', '||return||', '||return||', 'george:', "don't", 'leave', '||leftparen||', 'george', 'slams', 'the', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', 'aw', 'right', '||period||', 'i', 'know', "i've", 'been', 'shooting', 'off', 'at', 'the', 'mouth', 'lately', '||semicolon||', 'first', 'with', 'that', 'girl', 'whose', 'life', 'you', 'destroyed', 'and', '||period||', '||period||', 'emm', '||period||', '||period||', '||period||', 'about', 'george', 'dating', 'a', 'lady', 'jerry', '||return||', '||return||', 'george:', "what's", 'the', 'decision', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'know', 'you', 'want', 'me', 'to', 'keep', 'my', 'big', 'mouth', 'shut', 'and', "that's", 'exactly', 'what', "i'm", 'going', 'to', 'do', '||period||', "i'm", 'never', 'gonna', 'talk', 'again', '||period||', '||return||', '||return||', 'jerry:', 'yeah', 'right', '||period||', '||return||', '||return||', 'kramer:', 'what', 'do', 'i', 'need', 'to', 'talk', 'for', '||period||', '||period||', 'ha', '||exclammark||', '||comma||', 'for', 'to', 'blab', 'to', 'the', 'neighbors', 'about', 'george', 'has', 'a', 'new', 'fem', '||dash||', 'jerry', 'friend', 'or', 'to', 'tell', 'everybody', 'at', 'the', 'coffee', 'shop', 'ho', 'george', 'is', 'all', 'mixed', 'up', 'in', 'a', 'perverse', 'sexual', 'amalgam', 'of', 'some', 'girl', 'and', 'his', 'best', 'friend', '||period||', 'see', 'now', '||comma||', "i've", 'done', 'all', 'that', '||period||', '||period||', '||period||', '||period||', '||period||', 'now', "it's", 'time', 'for', 'silence', '||period||', '||return||', '||return||', 'george:', 'silence', 'yes', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', "you're", 'never', 'gonna', 'be', 'able', 'to', 'completely', 'stop', 'talking', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'ninety', 'four', 'percent', 'of', 'communications', 'is', 'non', '||dash||', 'verbal', '||period||', 'here', 'watch', '||period||', '||return||', '||return||', 'jerry:', 'well', 'what', 'does', 'this', 'mean', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', "it's", 'frank', 'and', "estelle's", 'reaction', 'of', 'hearing', "george's", 'man', 'love', 'towards', 'she', '||dash||', 'jerry', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'frantic', 'by', 'now', '||rightparen||', 'shut', 'up', '||comma||', 'shut', 'up', '||comma||', 'shut', 'up', '||comma||', '||period||', '||period||', '||period||', '||leftparen||', 'then', 'leaves', '||rightparen||', '||return||', '||return||', 'kramer:', "that's", 'the', 'idea', '||period||', '||return||', '||return||', 'jerry:', 'kramer', "there's", 'no', 'way', 'you', 'stick', 'to', 'this', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'makes', 'a', 'zipper', 'gesture', 'to', 'his', 'mouth', '||rightparen||', '||period||', '||period||', 'weeeeeepp', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', 'you', 'just', "startin'", 'now', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'right', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'aye', 'oooh', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', 'ouch', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'now', '||exclammark||', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'so', '||comma||', 'j', '||period||', 'peterman', 'wants', 'to', 'hire', 'some', 'of', 'our', 'cartoonists', 'to', 'illustrate', 'your', 'catalog', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', "we're", 'hoping', 'that', 'if', 'perhaps', 'that', 'the', 'catalog', 'is', 'a', 'little', 'funnier', '||comma||', 'people', "won't", 'be', 'so', 'quick', 'to', 'return', 'the', 'clothes', 'ha', 'ha', '||period||', '||period||', '||period||', '||period||', 'for', 'example', '||period||', '||period||', 'i', '||period||', '||period||', 'i', 'really', 'do', '||period||', '||period||', '||period||', '||period||', 'well', 'i', 'love', 'this', 'one', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'oh', '||exclammark||', 'yeah', '||period||', '||period||', '||period||', "that's", 'a', 'rather', 'clever', 'jab', 'at', 'inter', 'office', 'politics', "don't", 'you', 'think', '||period||', '||return||', '||return||', 'elaine:', 'ahan', '||comma||', 'ahan', '||period||', '||period||', '||period||', '||period||', 'yeah', '||period||', '||period||', '||period||', 'euh', 'but', '||comma||', 'why', 'is', 'it', 'that', 'the', '||comma||', 'that', 'the', 'animals', 'enjoy', 'reading', 'the', 'email', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'well', 'miss', 'benes', '||period||', 'cartoons', 'are', 'like', 'gossamer', 'and', 'one', "doesn't", 'dissect', 'gossamer', '||period||', 'heh', '||period||', '||period||', 'hemm', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', 'you', "don't", 'have', 'to', 'dissect', 'if', 'you', 'can', 'just', 'tell', 'me', '||period||', 'why', 'this', 'is', 'suppose', 'to', 'be', 'funny', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'ha', '||exclammark||', "it's", 'merely', 'a', 'commentary', 'on', 'contemporary', 'mores', '||period||', '||leftparen||', 'slides', 'the', 'magazine', 'to', 'her', '||rightparen||', '||return||', '||return||', 'elaine:', 'but', '||comma||', 'what', 'is', 'the', 'comment', '||period||', '||leftparen||', 'she', 'slides', 'the', 'magazine', 'back', 'to', 'him', '||rightparen||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', "it's", 'a', 'slice', 'of', 'life', '||period||', '||return||', '||return||', 'elaine:', 'no', 'it', "isn't", '||period||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'pun', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'don', '||comma||', 't', 'think', 'so', '||period||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'vorshtein', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'not', 'a', 'word', '||period||', '||period||', '||period||', '||period||', '||period||', 'you', 'have', 'no', 'idea', 'what', 'this', 'means', 'do', 'you', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'no', '||period||', '||return||', '||return||', 'elaine:', 'then', 'why', 'did', 'you', 'print', 'it', '||period||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'i', 'liked', 'the', 'kitty', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gets', 'up', '||rightparen||', 'you', 'know', 'what', '||questionmark||', 'you', 'people', 'should', 'be', 'ashamed', 'of', 'yourself', '||comma||', 'you', 'know', 'ya', 'doodle', 'a', 'couple', 'of', 'bears', 'at', 'a', 'cocktail', 'party', 'talking', 'about', 'the', 'stock', 'market', '||period||', 'you', 'think', "you're", 'doing', 'comedy', '||period||', '||return||', '||return||', 'mr', '||period||', 'elinoff:', 'actually', "that's", 'not', 'bad', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'really', '||leftparen||', 'laughs', '||rightparen||', 'well', 'you', 'know', '||period||', '||period||', '||period||', '||period||', '||period||', 'i', 'have', 'others', '||return||', '||return||', 'jerry:', 'sally', '||comma||', 'i', "can't", 'believe', "you're", 'already', 'doing', 'a', 'one', '||dash||', 'woman', 'show', '||questionmark||', '||return||', '||return||', 'sally:', 'no', '||comma||', 'no', '||period||', '||period||', "it's", 'just', 'a', 'little', 'performance', 'piece', 'i', 'wrote', '||period||', '||period||', '||period||', 'you', 'know', 'what', '||questionmark||', 'you', 'really', 'inspired', 'me', '||comma||', 'okay', '||comma||', 'a', 'tear', '||period||', '||return||', '||return||', 'jerry:', 'ah', '||exclammark||', 'there', 'you', 'are', '||period||', '||leftparen||', 'kramer', 'motions', 'silence', '||rightparen||', '||return||', '||return||', 'jerry:', 'aw', '||period||', '||period||', 'right', '||comma||', 'code', 'of', 'silence', '||period||', '||period||', "how's", 'that', 'going', '||questionmark||', '||period||', '||period||', '||period||', '||period||', 'ha', '||exclammark||', '||exclammark||', '||period||', '||period||', '||period||', '||return||', '||return||', 'sally:', 'hi', 'everybody', 'think', "you're", 'really', 'going', 'to', 'like', 'this', "'cos", "it'", 'about', 'me', '||period||', '||period||', '||period||', 'all', 'right', "it's", 'not', 'just', 'about', 'me', "it's", 'about', 'me', 'and', 'this', 'guy', '||semicolon||', 'jerry', 'seinfeld', '||period||', 'who', 'i', 'like', 'to', 'call', '||semicolon||', 'the', 'devil', '||period||', '||period||', '||period||', 'okay', '||comma||', 'okay', 'so', '||period||', '||period||', 'i', 'run', 'into', 'this', 'jerry', 'on', 'the', 'street', 'and', 'he', 'says', 'to', 'me', '||quotemark||', 'sally', '||comma||', 'you', 'stink', '||comma||', 'you', 'should', 'give', 'up', 'acting', '||period||', '||quotemark||', 'oh', '||exclammark||', "i'm", 'doing', 'jerry', 'now', 'so', "you've", 'got', 'imagine', 'i', 'have', '||semicolon||', 'horns', '||comma||', 'a', 'tail', 'and', 'hooks', 'instead', 'of', 'feet', '||period||', '||leftparen||', 'big', 'laughs', 'from', 'the', 'audience', 'and', 'kramer', 'is', 'cracking', 'up', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'oh', '||exclammark||', 'shut', 'up', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'she', 'does', 'a', 'full', 'hour', 'about', 'how', "you're", 'the', 'devil', '||period||', 'i', 'got', 'to', 'go', 'see', 'this', 'thing', '||period||', '||return||', '||return||', 'jerry:', 'good', 'luck', '||comma||', "it's", 'sold', 'out', 'for', 'the', 'next', 'three', 'weeks', '||period||', '||return||', '||return||', 'elaine:', 'well', 'i', 'bet', 'i', 'can', 'get', 'in', 'once', 'i', 'mention', "i'm", 'from', '||period||', '||period||', '||period||', 'the', 'new', 'yorker', '||period||', '||return||', '||return||', 'jerry:', 'the', 'new', 'yorker', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'the', 'new', 'yorker', '||comma||', "i've", 'met', 'with', 'their', 'cartoon', 'editor', 'and', 'i', 'got', 'him', 'to', 'admit', 'that', 'that', 'cartoon', '||period||', '||period||', '||period||', 'made', 'no', 'sense', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', 'good', 'work', '||comma||', 'nancy', 'drew', '||return||', '||return||', 'elaine:', 'then', 'we', 'ended', 'up', 'going', 'out', 'to', 'lunch', 'and', 'he', 'had', 'some', 'great', 'gossip', 'about', 'james', 'thurber', '||period||', '||return||', '||return||', 'jerry:', 'nodding', 'off', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', '||period||', 'and', 'he', 'said', 'i', 'could', 'submit', 'some', 'of', 'my', 'own', 'cartoons', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||exclammark||', "that's", 'incredible', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'but', 'you', "don't", 'draw', '||period||', '||return||', '||return||', 'elaine:', 'i', 'do', 'to', '||period||', '||return||', '||return||', 'jerry:', 'what', '||comma||', 'your', 'sad', 'little', 'horsies', '||comma||', 'the', 'house', 'with', 'the', 'little', 'curl', 'of', 'smoke', '||comma||', 'the', 'sunflower', 'with', 'the', 'smiley', 'face', '||period||', 'the', 'transparent', 'cube', '||period||', '||period||', '||period||', '||leftparen||', 'as', 'she', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', "it's", 'better', 'than', 'your', 'drawings', 'of', 'naked', 'lois', 'lane', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'see', 'that', '||questionmark||', 'those', 'are', 'private', '||exclammark||', '||exclammark||', '||exclammark||', '||return||', '||return||', 'sally:', 'jerry', '||comma||', 'sorry', "i'm", 'late', '||period||', 'channel', 'nine', 'is', 'doing', 'a', 'piece', 'on', 'my', 'show', '||period||', "isn't", 'that', 'great', '||questionmark||', 'do', 'you', 'hate', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', 'i', 'tought', 'the', 'show', 'was', 'terrific', '||period||', 'i', 'was', 'just', 'wondering', 'if', 'you', 'have', 'to', 'keep', 'saying', 'jerry', 'seinfeld', 'is', 'the', 'devil', '||period||', '||return||', '||return||', 'sally:', 'well', '||period||', '||period||', '||period||', 'that', 'is', 'the', 'title', '||period||', '||return||', '||return||', 'jerry:', 'i', 'know', 'but', 'i', 'thought', 'that', 'maybe', 'you', 'could', 'mention', 'how', 'i', 'apologized', 'then', 'encouraged', 'you', 'to', 'stick', 'with', 'it', '||period||', '||return||', '||return||', 'sally:', 'you', 'know', 'i', 'workshopped', 'that', 'and', '||period||', '||period||', 'snoozers', '||exclammark||', '||exclammark||', '||exclammark||', 'he', 'he', 'he', '||period||', '||period||', '||period||', '||period||', 'but', "i'll", 'tell', 'you', 'what', "i'll", 'think', '||period||', '||period||', '||period||', "it's", 'all', 'a', 'journey', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'a', 'little', 'shmootz', 'there', '||leftparen||', 'picks', 'something', 'on', 'her', 'sweater', '||rightparen||', '||return||', '||return||', 'newman:', 'excuse', 'me', 'miss', 'weaver', '||comma||', 'oh', '||exclammark||', 'my', 'god', 'it', 'is', 'you', '||exclammark||', 'i', '||period||', '||period||', "i've", 'seen', 'your', 'show', 'six', 'times', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'a', 'surprise', '||period||', '||return||', '||return||', 'newman:', 'aahh', '||exclammark||', "you're", 'great', '||comma||', "it's", 'great', '||comma||', "it's", 'so', 'great', 'to', 'see', 'a', 'show', "that's", '||leftparen||', 'looks', 'at', 'jerry', '||rightparen||', 'about', 'something', '||period||', '||return||', '||return||', 'driver:', 'where', 'to', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'we', 'hear', 'him', 'think', '||rightparen||', 'my', 'friends', 'are', 'idiots', '||comma||', 'she', "doesn't", 'look', 'like', 'jerry', '||period||', 'she', "doesn't", 'look', 'like', 'anybody', '||period||', 'and', 'so', 'what', 'if', 'does', 'look', 'like', 'jerry', '||comma||', 'what', 'does', 'that', 'mean', '||questionmark||', '||period||', 'that', 'i', 'could', 'have', 'everything', 'i', 'have', 'with', 'jerry', 'but', 'because', "it's", 'a', 'woman', 'i', 'could', 'also', 'have', 'sex', 'with', 'her', '||period||', '||period||', '||period||', '||period||', 'and', 'that', 'somehow', 'that', 'would', 'be', 'exactly', 'what', 'i', 'always', 'wanted', '||period||', '||period||', '||period||', '||period||', '||period||', 'she', "doesn't", 'even', 'look', 'like', 'jerry', '||period||', '||period||', '||return||', '||return||', 'sally:', 'you', 'know', 'i', 'really', 'do', 'look', 'like', 'your', 'friend', 'jerry', '||period||', '||return||', '||return||', 'george:', 'i', 'know', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'tv', 'announcer:', 'thanks', 'for', 'watching', 'nine', 'news', '||period||', 'we', 'leave', 'you', 'tonight', 'with', 'a', 'scene', 'from', 'sally', 'weavers', 'one', 'woman', 'show', '||period||', '||return||', '||return||', 'sally:', 'ok', 'so', 'i', 'go', 'to', 'meet', 'jerry', 'seinfeld', 'at', 'this', 'horrible', 'coffee', 'shop', 'right', '||questionmark||', 'and', "he's", 'like', '||quotemark||', 'hey', 'stop', 'doing', 'your', 'show', '||period||', '||quotemark||', 'and', "i'm", 'like', '||comma||', 'hello', '||exclammark||', "it's", 'a', 'free', 'country', '||period||', 'so', 'then', 'he', 'goes', '||period||', '||quotemark||', 'okay', 'shmootsie', '||quotemark||', 'and', 'he', 'starts', 'pulling', 'at', 'my', 'sweater', 'right', '||questionmark||', '||period||', "he's", 'getting', '||comma||', 'you', 'know', '||comma||', 'hands', 'across', 'america', '||period||', '||return||', '||return||', 'jerry:', 'there', 'really', 'was', 'shmootz', 'on', 'i', "didn't", 'try', 'to', 'grab', 'her', '||return||', '||return||', 'sally:', '||period||', '||period||', '||period||', 'and', 'this', 'is', 'what', 'he', 'looks', 'like', 'when', "he's", 'eating', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'get', 'out', 'of', 'my', 'house', '||exclammark||', '||exclammark||', '||period||', '||return||', '||return||', 'elaine:', 'well', 'boys', '||comma||', 'i', 'did', 'it', '||period||', 'i', 'had', 'to', 'stay', 'up', 'all', 'night', 'but', 'i', 'finally', 'came', 'up', 'with', 'a', 'great', 'new', 'yorker', 'cartoon', '||period||', '||return||', '||return||', 'jerry:', "i'd", 'stayed', 'up', 'all', 'night', "i'd", 'fixed', 'myself', 'up', 'a', 'little', 'before', "i'd", 'go', 'out', '||period||', '||return||', '||return||', 'elaine:', 'that', 'is', 'not', 'the', 'point', '||period||', '||return||', '||return||', 'jerry:', 'some', 'mouthwash', '||comma||', 'a', 'hat', '||comma||', 'something', '||period||', '||return||', '||return||', 'elaine:', 'just', 'read', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'glances', 'at', 'it', '||rightparen||', 'pretty', 'good', '||period||', '||return||', '||return||', 'elaine:', 'pretty', 'good', '||questionmark||', 'well', 'uh', '||exclammark||', 'this', 'is', 'a', 'gem', '||period||', 'kramer', 'look', 'it', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'kramer', 'stays', 'silent', '||rightparen||', '||period||', '||period||', '||period||', '||period||', '||period||', 'what', '||questionmark||', "it's", 'funny', '||period||', '||return||', '||return||', 'jerry:', "it's", 'a', 'pig', 'at', 'a', 'complain', 'department', '||period||', '||return||', '||return||', 'elaine:', 'and', "he's", 'saying', '||quotemark||', 'i', 'wish', 'i', 'was', 'taller', '||quotemark||', 'ha', 'ha', '||period||', 'see', '||questionmark||', "that's", 'his', 'complaint', '||period||', '||return||', '||return||', 'jerry:', 'i', 'get', 'it', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', '||exclammark||', '||exclammark||', '||exclammark||', '||period||', '||period||', 'because', "that's", 'not', 'a', 'normal', 'complaint', '||period||', '||return||', '||return||', 'jerry:', 'how', "'bout", 'if', 'it', 'was', 'something', 'like', '||quotemark||', 'i', "can't", 'find', 'my', 'receipt', 'my', "place's", 'a', 'stye', '||period||', '||return||', '||return||', 'elaine:', 'everything', 'with', 'you', 'has', 'to', 'be', 'so', '||period||', '||period||', 'jokey', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'a', 'comedian', '||period||', '||return||', '||return||', 'elaine:', 'i', 'wish', 'i', 'was', 'taller', '||comma||', "that's", '||comma||', "that's", '||comma||', "that's", 'nice', '||period||', "that's", 'real', '||period||', '||return||', '||return||', 'jerry:', 'well', 'i', 'got', 'a', 'complaint', '||period||', 'this', 'cartoon', 'stinks', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'tell', 'you', 'who', "doesn't", 'think', 'it', 'stinks', '||comma||', 'the', 'new', 'yorker', '||period||', "that's", 'right', '||period||', "they're", 'publishing', 'it', 'in', 'their', 'next', 'issue', '||period||', 'oh', '||exclammark||', 'you', 'know', 'what', 'i', 'just', 'ran', 'into', 'newman', 'in', 'the', 'hall', 'and', 'he', 'said', 'you', 'tried', 'to', 'grope', 'sally', 'weaver', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||exclammark||', "that's", 'it', "i'm", 'gonna', 'put', 'an', 'end', 'to', 'this', '||period||', '||return||', '||return||', 'elaine:', 'the', 'pig', 'says', '||quotemark||', 'my', 'wife', 'is', 'a', 'slut', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'now', "that's", 'a', 'complaint', '||period||', '||period||', '||period||', '||period||', 'hello', 'sally', '||comma||', 'yeah', 'this', 'is', 'jerry', '||comma||', 'i', 'just', 'wanted', 'to', 'leave', 'you', 'a', 'message', 'that', 'i', 'caught', 'your', 'little', 'piece', 'on', 'tv', 'and', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||period||', '||period||', '||period||', '||period||', "i'm", 'getting', 'a', 'little', 'tired', 'of', 'hearing', 'how', 'horrible', 'i', 'am', 'and', 'would', 'appreciate', 'it', 'if', 'you', 'would', 'leave', 'me', 'out', 'of', 'your', 'act', 'all', 'together', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'from', 'the', 'back', 'of', 'the', 'club', '||comma||', 'leaving', '||rightparen||', "that's", 'it', "i'm", 'calling', 'in', 'the', 'big', 'guns', '||period||', '||return||', '||return||', 'sally:', 'to', 'cease', 'and', 'desist', 'on', 'behalf', 'of', 'my', 'client', '||comma||', 'jerry', 'seinfeld', '||period||', 'signed', '||semicolon||', 'crybaby', 'jerry', "seinfeld's", 'lawyer', '||period||', 'ok', 'but', 'i', 'got', 'two', 'words', 'for', 'you', 'jerry', 'seinfeld', '||period||', '||period||', '||period||', '||leftparen||', 'censored', 'beep', '||rightparen||', '||period||', '||period||', '||period||', 'you', '||return||', '||return||', 'jerry:', 'how', 'could', 'she', 'say', 'that', 'on', 'tv', '||questionmark||', '||period||', '||period||', 'and', 'how', 'did', 'she', 'get', 'a', 'cable', 'special', '||period||', 'i', "'ve", 'never', 'gotten', 'a', 'cable', 'special', '||period||', '||period||', '||period||', '||period||', '||period||', 'well', "that's", 'it', "i'm", 'not', 'giving', 'her', 'any', 'more', 'material', '||period||', 'we', 'are', 'incommunicado', '||period||', '||leftparen||', 'to', 'the', 'silent', 'kramer', 'on', 'the', 'couch', 'beside', 'him', '||rightparen||', '||period||', '||period||', '||period||', 'exactly', '||period||', '||return||', '||return||', 'elaine:', 'check', 'it', 'out', '||comma||', 'from', 'the', 'new', 'issue', 'of', 'the', 'new', 'yorker', '||period||', '||period||', '||period||', 'huh', '||exclammark||', '||period||', '||period||', '||period||', 'funny', "isn't", 'it', '||questionmark||', '||leftparen||', 'dugan', 'shrugs', '||rightparen||', 'look', 'at', 'it', '||comma||', 'the', 'pig', 'wants', 'to', 'be', 'taller', 'and', "what's", 'this', 'guy', 'gonna', 'say', '||questionmark||', '||period||', '||period||', 'he', 'he', '||period||', '||period||', '||period||', "nothin'", '||period||', '||period||', 'he', 'he', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', "i'm", 'afraid', 'i', 'have', 'incurred', 'yet', 'another', 'flat', 'tire', '||period||', '||return||', '||return||', 'elaine:', 'can', 'i', 'fix', 'that', 'after', 'lunch', 'sir', '||questionmark||', '||return||', '||return||', 'peterman:', 'oh', '||exclammark||', 'no', 'right', 'away', '||comma||', 'chop', '||comma||', 'chop', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', 'oh', '||exclammark||', 'a', 'new', 'cartoon', '||period||', '||period||', '||period||', '||period||', '||period||', '||quotemark||', 'i', 'wish', 'i', 'was', 'taller', '||leftparen||', 'hearty', 'laugh', '||rightparen||', "i'd", 'like', 'to', 'see', 'that', 'complaint', 'get', 'rectified', '||period||', '||leftparen||', 'more', 'laughs', 'and', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'dugan', '||rightparen||', 'you', 'see', '||questionmark||', 'you', 'see', '||questionmark||', 'smart', 'people', 'think', 'this', 'is', 'funny', 'and', 'you', 'want', 'to', 'know', 'why', '||questionmark||', "'cause", 'i', 'wrote', 'it', '||period||', '||return||', '||return||', 'dugan:', 'you', "shouldn't", 'make', 'fun', 'of', 'pigs', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'peterman:', '||leftparen||', 'returns', '||rightparen||', 'flash', 'of', 'lightning', 'elaine', 'i', 'just', 'realized', 'why', 'i', 'like', 'this', 'cartoon', 'so', 'much', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', 'do', 'tell', 'sir', '||questionmark||', '||return||', '||return||', 'peterman:', "it's", 'a', 'ziggy', '||exclammark||', '||return||', '||return||', 'elaine:', 'a', 'ziggy', '||questionmark||', '||return||', '||return||', 'peterman:', 'that', 'irreverence', '||comma||', 'that', 'wit', "i'd", 'recognize', 'it', 'anywhere', '||period||', 'some', 'charlatan', 'has', 'stolen', 'a', 'ziggy', 'and', 'passed', 'it', 'off', 'as', 'his', 'own', '||period||', 'i', 'can', 'prove', 'it', '||period||', 'quick', 'elaine', '||comma||', 'to', 'my', 'archives', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'you', 'know', "what's", 'great', 'about', 'our', 'relationship', '||questionmark||', '||period||', '||period||', '||period||', "it's", 'not', 'about', 'looks', '||period||', '||return||', '||return||', 'janet:', "it's", 'not', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', "can't", 'be', '||period||', '||period||', '||period||', 'for', 'instance', 'i', 'remember', 'when', 'we', 'first', 'met', '||comma||', 'we', 'had', 'a', 'great', 'conversation', '||period||', '||return||', '||return||', 'janet:', 'i', 'remember', 'you', 'said', 'i', 'was', 'the', 'prettiest', 'girl', 'at', 'the', 'party', '||period||', '||return||', '||return||', 'george:', '||period||', '||period||', '||period||', '||period||', 'but', 'after', 'that', 'we', 'really', 'talked', "didn't", 'we', '||questionmark||', '||return||', '||return||', 'janet:', 'well', '||comma||', 'you', 'told', 'me', 'how', 'familiar', 'i', 'looked', 'and', 'that', 'you', 'must', 'have', 'seen', 'me', 'somewhere', 'before', '||period||', '||return||', '||return||', 'george:', 'na', '||period||', '||period||', '||period||', '||period||', 'no', '||period||', '||period||', '||period||', 'this', 'relationship', 'he', '||period||', '||period||', 'he', '||period||', '||period||', 'has', 'got', 'to', 'be', 'about', 'something', 'and', 'fast', 'or', "i'm", 'in', 'very', 'serious', 'and', 'weird', 'trouble', '||period||', '||period||', '||period||', '||period||', 'hum', 'what', 'else', 'happened', '||questionmark||', '||return||', '||return||', 'janet:', 'you', 'asked', 'for', 'a', 'piece', 'of', 'gum', 'because', 'you', 'thought', 'your', 'breath', 'smelled', 'like', 'hummus', '||period||', '||return||', '||return||', 'george:', 'aw', 'right', 'yes', '||exclammark||', 'gum', '||exclammark||', 'good', 'enough', "i'll", 'take', 'it', '||period||', '||return||', '||return||', 'janet:', 'i', 'like', 'gum', '||period||', '||return||', '||return||', 'george:', 'i', 'do', 'too', '||period||', 'you', 'see', "that's", 'what', "we're", 'about', '||period||', 'you', "don't", 'remind', 'me', 'of', 'anyone', 'and', 'we', 'love', 'gum', '||period||', '||return||', '||return||', 'janet:', 'i', 'have', 'gum', 'in', 'my', 'hair', '||period||', '||return||', '||return||', 'george:', "i'm", "losin'", 'it', '||return||', '||return||', 'sally:', '||leftparen||', 'joining', 'kramer', '||rightparen||', 'hey', '||exclammark||', 'your', "jerry's", 'friend', '||period||', "you're", 'goofy', '||comma||', 'mind', 'if', 'i', 'sit', '||period||', 'my', 'show', 'is', 'going', 'really', 'well', '||period||', 'have', 'you', 'seen', 'it', 'yet', '||questionmark||', 'you', 'should', '||period||', 'everybody', 'else', 'have', 'and', 'you', 'know', 'what', '||questionmark||', 'i', 'got', 'recognized', 'the', 'other', 'day', '||comma||', 'how', 'weird', 'is', 'that', '||period||', 'i', 'know', '||period||', 'at', 'first', 'i', 'liked', 'the', 'attention', 'but', "it's", 'like', 'whoa', '||exclammark||', '||exclammark||', 'take', 'three', 'steps', 'back', '||comma||', 'get', 'a', 'life', '||comma||', 'okay', '||period||', 'but', 'then', 'there', "wouldn't", 'be', 'a', 'sally', 'weaver', 'without', 'the', 'fans', '||comma||', 'know', 'what', 'i', 'mean', '||period||', 'but', 'who', 'am', 'i', '||questionmark||', 'anyway', '||period||', 'i', 'mean', "there's", 'sally', 'weaver', 'the', 'woman', '||comma||', 'sally', 'weaver', 'the', 'artist', '||comma||', 'sally', 'weaver', 'the', 'person', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'loudly', '||rightparen||', 'now', 'you', 'gotta', 'shut', 'up', '||exclammark||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'sally', 'is', 'speechless', '||rightparen||', '||period||', '||period||', '||period||', "i'm", 'sorry', '||comma||', 'i', '||period||', '||period||', 'i', "haven't", 'spoken', 'in', 'days', '||period||', '||return||', '||return||', 'sally:', 'well', '||comma||', 'lay', 'it', 'on', 'me', 'string', 'bean', '||period||', '||return||', '||return||', 'janet:', 'let', 'me', 'get', 'this', 'gum', 'out', 'of', 'my', 'hair', 'and', 'then', "i'll", 'be', 'ready', 'for', 'bed', '||period||', '||return||', '||return||', 'george:', 'ok', 'look', '||comma||', 'the', 'gum', "isn't", 'cutting', 'it', 'for', 'me', '||period||', 'we', 'need', 'to', 'be', 'about', 'something', 'else', '||period||', '||period||', '||period||', 'anything', '||period||', '||period||', 'please', '||period||', '||return||', '||return||', 'janet:', 'george', '||period||', '||return||', '||return||', 'george:', 'your', 'hair', '||questionmark||', '||return||', '||return||', 'janet:', 'well', 'i', 'had', 'to', 'cut', 'the', 'gum', 'out', 'and', 'i', 'had', 'a', 'little', 'trouble', 'getting', 'it', 'even', '||period||', 'so', 'why', "don't", 'you', 'get', 'undressed', 'george', '||period||', '||leftparen||', 'george', 'speeds', 'out', 'the', 'door', '||rightparen||', '||return||', '||return||', 'george:', 'george', 'is', 'in', 'big', 'trouble', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'ripped', 'off', 'a', 'ziggy', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', "must've", 'seeped', 'up', 'my', 'subconscious', '||comma||', 'puddy', 'has', 'ziggy', 'bed', 'sheets', '||period||', '||period||', '||period||', '||period||', "d'you", 'read', 'the', 'comics', 'today', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'see', 'that', "ziggy's", 'back', 'at', 'the', 'complaint', 'department', '||period||', '||period||', '||quotemark||', 'the', 'new', 'yorker', 'is', 'stealing', 'my', 'ideas', '||period||', '||quotemark||', 'ha', 'ha', 'ha', 'see', "that's", 'funny', '||period||', '||period||', '||period||', '||period||', '||period||', "'cause", "it's", 'real', '||period||', '||return||', '||return||', 'elaine:', 'hey', 'look', 'it', '||semicolon||', "sally's", 'cable', "show's", 'on', '||leftparen||', 'kramer', 'turns', 'around', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||exclammark||', 'kramer', 'come', 'on', 'in', '||period||', "you've", 'got', 'to', 'watch', 'this', '||comma||', 'now', "she's", 'got', 'nothing', '||period||', '||return||', '||return||', 'sally:', '||leftparen||', 'on', 'tv', '||rightparen||', 'master', 'of', 'evil', 'jerry', 'seinfeld', 'has', 'broke', 'off', 'all', 'contacts', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', "that's", 'right', 'sister', '||period||', 'why', "don't", 'you', 'just', 'give', 'up', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', 'are', 'you', 'yelling', 'at', 'the', 'tv', '||questionmark||', '||return||', '||return||', 'sally:', '||period||', '||period||', 'ok', 'get', 'this', '||semicolon||', 'i', 'heard', 'he', 'makes', 'his', 'best', 'friend', 'date', 'women', 'that', 'look', 'just', 'like', 'him', '||period||', 'hello', 'issues', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'have', 'you', 'been', 'talking', 'to', 'her', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', "i'm", 'just', 'a', 'fan', '||period||', '||period||', 'ha', 'ha', '||period||', '||period||', '||period||', '||return||', '||return||', 'sally:', 'oh', 'and', 'speaking', 'of', 'issues', '||period||', 'guess', 'who', 'got', 'a', 'no', '||dash||', 'polish', 'manicure', 'and', 'begged', 'his', 'neighbor', 'not', 'to', 'tell', 'anyone', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'kramer', '||rightparen||', 'i', 'thought', 'you', 'stopped', 'talking', '||questionmark||', '||questionmark||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'all', 'right', '||period||', '||period||', 'starting', 'now', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'you', 'broke', 'up', 'with', 'her', 'just', 'because', 'she', 'cut', 'her', 'hair', '||exclammark||', 'how', 'short', '||questionmark||', '||return||', '||return||', 'george:', 'like', 'that', '||leftparen||', 'looking', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'like', '||period||', '||period||', '||leftparen||', 'points', 'to', 'his', 'hair', '||rightparen||', '||return||', '||return||', 'george:', '||period||', '||period||', 'that', '||period||', '||return||', '||return||', 'jerry:', 'so', 'she', '||period||', '||period||', '||return||', '||return||', 'george:', 'yes', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', "don't", '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'nooo', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'exactly', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hmmmm', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'we', '||period||', '||period||', '||period||', 'must', 'never', 'ever', 'speak', 'of', 'this', 'again', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', '||period||', '||period||', '||period||', '||period||', '||period||', '||leftparen||', 'long', 'pause', '||period||', 'they', 'stare', 'at', 'the', 'walls', '||rightparen||', 'hey', 'uh', '||period||', '||period||', 'you', 'want', 'to', 'see', 'a', 'movie', '||questionmark||', '||return||', '||return||', 'george:', 'actually', 'i', 'think', "i'm", 'gonna', 'take', 'a', 'few', 'days', 'off', '||leftparen||', 'starts', 'to', 'leave', '||rightparen||', '||return||', '||return||', 'jerry:', 'i', 'think', "that's", 'for', 'the', 'best', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'clears', 'throat', '||rightparen||', 'maura', '||comma||', 'i', '||comma||', 'uh', '||dash||', 'i', 'want', 'you', 'to', 'know', '||period||', '||period||', '||period||', 'i', '||dash||', "i've", 'given', 'this', 'a', 'lot', 'of', 'thought', '||period||', "i'm", 'sorry', '||comma||', 'but', '||period||', '||period||', '||period||', 'we', '||comma||', 'uh', '||comma||', 'we', 'have', 'to', 'break', 'up', '||period||', '||return||', '||return||', 'maura:', 'no', '||period||', '||leftparen||', 'sips', 'her', 'drink', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'double', 'takes', '||rightparen||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'maura:', "we're", 'not', 'breaking', 'up', '||period||', '||leftparen||', 'takes', 'another', 'sip', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'puzzled', '||rightparen||', 'w', '||dash||', "we're", 'not', '||questionmark||', '||return||', '||return||', 'maura:', 'no', '||period||', '||leftparen||', 'hands', 'george', 'his', 'cup', '||rightparen||', '||return||', '||return||', 'george:', 'all', 'right', '||leftparen||', 'he', 'smiles', 'weakly', 'at', 'maura', '||rightparen||', '||return||', '||return||', 'jerry:', 'she', 'said', 'no', '||questionmark||', '||return||', '||return||', 'george:', 'she', 'said', 'no', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'could', 'i', 'do', '||questionmark||', '||exclammark||', 'we', 'fooled', 'around', 'and', 'went', 'to', 'a', 'movie', '||exclammark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'both', 'parties', "don't", 'have', 'to', 'consent', 'to', 'a', 'break', '||dash||', 'up', '||period||', "it's", 'not', 'like', "you're", 'launching', 'missiles', 'from', 'a', 'submarine', 'and', 'you', 'both', 'have', 'to', 'turn', 'your', 'keys', '||period||', 'obviously', '||comma||', 'you', "didn't", 'make', 'a', 'convincing', 'case', '||period||', 'let', 'me', 'hear', 'your', 'arguments', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', "don't", 'really', 'like', 'her', '||period||', '||return||', '||return||', 'jerry:', "that's", 'good', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'find', 'her', 'attractive', '||period||', '||return||', '||return||', 'jerry:', 'solid', '||period||', '||return||', '||return||', 'george:', "i'd", 'like', 'to', 'sleep', 'with', 'a', 'lot', 'of', 'other', 'women', '||period||', '||return||', '||return||', 'jerry:', 'always', 'popular', '||period||', '||return||', '||return||', 'george:', 'sometimes', 'at', 'restaurants', 'she', 'talks', 'to', 'her', 'food', "'ooh", '||comma||', 'mr', '||period||', 'mashed', 'potatoes', '||comma||', 'you', 'are', 'sooo', 'goood', '||period||', "'", '||return||', '||return||', 'jerry:', 'you', 'have', 'an', 'airtight', 'case', '||exclammark||', '||return||', '||return||', 'george:', 'and', 'in', 'bed', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', "i'm", 'afraid', "we're", 'out', 'of', 'time', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'check', 'these', 'out', '||period||', 'these', 'are', 'jerry', "lewis'", 'old', 'cufflinks', 'that', 'he', 'actually', 'wore', 'in', 'the', 'movie', '||quotemark||', 'cinderfella', '||quotemark||', '||period||', 'i', 'got', "'em", 'at', 'an', 'auction', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'some', 'cufflinks', 'i', "could've", 'loaned', 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'jerry', 'lewis', 'is', 'gonna', 'be', 'at', 'this', "friar's", 'club', 'roast', "i'm", "goin'", 'to', 'next', 'week', '||period||', 'now', 'i', 'have', 'an', 'in', 'to', 'strike', 'up', 'a', 'conversation', 'with', 'him', '||period||', '||return||', '||return||', 'george:', 'you', 'already', 'have', 'an', 'in', '||period||', 'you', 'have', 'the', 'same', 'first', 'name', '||exclammark||', '||period||', '||period||', '||period||', '||leftparen||', 'no', 'reaction', '||rightparen||', "'jerry'", '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "that'll", 'intrigue', 'him', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'worked', 'when', 'i', 'met', 'george', 'peppard', 'last', 'week', '||period||', '||return||', '||return||', 'jerry:', 'george', 'peppard', 'has', 'been', 'dead', 'for', 'years', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'whoever', 'he', 'was', '||comma||', 'he', 'knew', 'a', 'lot', 'about', 'the', 'a', '||dash||', 'team', '||exclammark||', '||return||', '||return||', 'glenn:', 'so', 'you', 'would', 'choose', 'your', 'last', 'meal', 'based', 'on', 'the', 'method', 'of', 'execution', '||questionmark||', '||return||', '||return||', 'elaine:', 'right', '||comma||', 'right', '||period||', 'i', 'mean', '||comma||', 'if', 'i', 'was', 'getting', 'the', 'chair', '||comma||', "i'd", 'go', 'for', 'something', '||period||', '||period||', '||period||', 'hot', 'and', 'spicy', '||comma||', 'you', 'know', '||period||', '||period||', '||period||', 'thai', '||comma||', 'maybe', 'mexican', '||period||', 'lethal', 'injection', '||comma||', 'feels', 'like', 'pasta', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'painless', '||comma||', "don't", 'want', 'anything', 'too', 'heavy', '||period||', '||period||', '||period||', '||return||', '||return||', 'glenn:', 'so', '||comma||', 'um', '||comma||', 'why', "don't", 'we', 'get', 'together', 'some', 'time', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'sure', '||exclammark||', 'why', "don't", 'you', 'give', 'me', 'your', 'number', '||questionmark||', '||return||', '||return||', 'glenn:', 'i', 'think', "it'd", 'be', 'better', 'if', 'i', 'called', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'ok', '||period||', 'maybe', 'we', 'could', 'grab', 'some', 'lunch', 'sometime', '||period||', 'd', '||dash||', 'do', 'you', 'work', 'around', 'here', 'or', '||dash||', '||questionmark||', '||return||', '||return||', 'glenn:', 'mm', 'mm', '||period||', '||period||', '||period||', 'no', '||comma||', 'not', 'really', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'is', 'there', 'anything', 'you', 'can', 'tell', 'me', 'about', 'yourself', '||questionmark||', '||return||', '||return||', 'glenn:', '||leftparen||', 'seductive', 'tone', '||rightparen||', 'i', 'think', "you're", 'very', 'beautiful', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'flattered', '||rightparen||', 'oh', '||leftparen||', 'laughs', '||rightparen||', "that'll", 'do', '||exclammark||', '||leftparen||', 'laughs', 'some', 'more', '||rightparen||', '||return||', '||return||', 'jerry:', 'what', 'about', 'puddy', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "haven't", 'talked', 'to', 'him', 'in', '||comma||', 'like', '||comma||', 'three', 'weeks', '||period||', '||period||', '||period||', 'i', 'think', 'it', 'might', 'be', 'over', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unimpressed', '||rightparen||', 'so', '||comma||', "what's", 'this', 'guy', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||period||', 'he', "wouldn't", 'tell', 'me', 'his', 'phone', 'number', '||comma||', 'where', 'he', 'worked', '||period||', '||period||', '||period||', "i'll", 'bet', "he's", 'in', 'a', 'relationship', '||period||', '||return||', '||return||', 'jerry:', 'or', "he's", 'a', 'crime', 'fighter', 'safeguarding', 'his', 'secret', 'identity', '||exclammark||', 'elaine', '||comma||', 'you', 'could', 'be', 'dating', 'the', 'green', 'lantern', '||exclammark||', '||return||', '||return||', 'elaine:', 'which', 'one', 'is', 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'green', 'suit', '||comma||', 'power', 'ring', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'care', 'for', 'jewellery', 'on', 'men', '||leftparen||', 'wags', 'her', 'finger', 'disapprovingly', '||rightparen||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'it', 'happened', 'again', '||period||', '||leftparen||', 'puts', 'box', 'on', 'counter', '||rightparen||', 'another', 'robbery', 'in', 'the', 'building', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'bought', 'a', 'cooler', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "it's", 'a', 'strongbox', 'to', 'protect', 'my', 'irreplaceables', '||period||', '||return||', '||return||', 'elaine:', 'and', '||period||', '||period||', '||period||', 'what', 'would', 'those', 'be', '||questionmark||', '||return||', '||return||', 'kramer:', 'some', 'taxidermy', "that's", 'been', 'in', 'my', 'family', 'for', 'generations', '||comma||', 'my', 'tony', '||comma||', 'my', '||period||', '||period||', '||period||', 'military', 'discharge', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'doubtful', '||rightparen||', 'you', 'were', 'in', 'the', 'army', '||questionmark||', '||return||', '||return||', 'kramer:', 'y', '||dash||', 'b', '||dash||', 'briefly', '||period||', 'now', '||comma||', 'i', 'gotta', 'find', 'a', 'good', 'place', 'to', 'hide', 'this', 'key', '||period||', 'because', 'if', 'somebody', 'finds', 'this', '||comma||', 'they', 'hold', 'the', 'key', 'to', 'all', 'my', 'possessions', '||period||', '||leftparen||', 'makes', 'a', 'clicking', 'sound', '||rightparen||', '||return||', '||return||', 'elaine:', 'literally', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'offended', '||rightparen||', "'literally'", '||questionmark||', "what's", 'that', 'supposed', 'to', 'mean', '||questionmark||', '||leftparen||', 'then', 'to', 'jerry', '||comma||', 'before', 'elaine', 'can', 'answer', '||rightparen||', 'you', 'mind', 'if', 'i', 'hide', 'this', 'somewhere', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'go', 'ahead', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stuttering', 'gibberish', '||comma||', 'gestures', 'that', 'they', 'should', 'leave', '||rightparen||', 'a', 'little', '||period||', '||period||', '||period||', 'privacy', '||comma||', 'uh', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||exclammark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'jerry', '||comma||', 'this', 'is', 'a', 'security', 'issue', '||exclammark||', '||leftparen||', 'elaine', 'laughs', '||rightparen||', 'boy', '||comma||', 'you', "wouldn't", 'last', 'a', 'day', 'in', 'the', 'army', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'towards', 'door', 'with', 'elaine', '||rightparen||', 'how', 'long', 'did', 'you', 'last', '||questionmark||', '||leftparen||', 'opens', 'door', '||rightparen||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "that's", 'classified', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'if', "he's", 'married', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'the', 'green', 'lantern', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'inside', '||rightparen||', 'ok', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'you', 'would', 'date', 'a', 'married', 'guy', '||questionmark||', "that's", 'so', 'hacky', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "don't", 'know', '||period||', 'i', 'may', 'never', 'marry', '||period||', 'it', 'might', 'be', 'the', 'closest', 'i', 'get', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'bangs', 'arm', 'of', 'couch', 'in', 'frustration', '||rightparen||', 'you', 'peeked', '||exclammark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'your', 'hiding', 'place', '||questionmark||', '||exclammark||', '||leftparen||', 'elaine', 'laughs', '||rightparen||', '||return||', '||return||', 'kramer:', 'it', 'was', 'under', 'a', 'spoon', '||exclammark||', '||return||', '||return||', 'george:', 'and', 'so', '||comma||', 'for', 'all', 'these', 'reasons', '||comma||', 'we', 'are', 'officially', 'broken', 'up', '||period||', '||leftparen||', 'shuts', 'book', 'and', 'reaches', 'for', 'door', '||rightparen||', 'thank', 'you', '||comma||', '||leftparen||', 'opens', 'door', '||rightparen||', 'and', 'good', 'night', '||period||', '||return||', '||return||', 'maura:', 'no', '||comma||', 'george', '||comma||', "we're", 'not', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'gestures', 'towards', 'book', '||rightparen||', 'but', 'i', 'proved', 'it', '||exclammark||', '||return||', '||return||', 'maura:', 'i', 'refuse', 'to', 'give', 'up', 'on', 'this', 'relationship', '||period||', "it's", 'like', '||period||', '||period||', '||period||', 'launching', 'missiles', 'from', 'a', 'submarine', '||period||', 'both', 'of', 'us', 'have', 'to', 'turn', 'our', 'keys', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'then', '||comma||', 'i', 'am', 'gonna', 'have', 'to', 'ask', 'you', 'to', 'turn', 'your', 'key', '||period||', '||return||', '||return||', 'maura:', '||leftparen||', 'assertive', '||rightparen||', "i'm", 'sorry', '||comma||', 'george', '||comma||', 'i', "can't", 'do', 'that', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'shouting', '||rightparen||', 'turn', 'your', 'key', '||comma||', 'maura', '||period||', 'turn', 'your', 'key', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'how', 'is', 'a', 'guy', 'like', 'you', 'not', 'involved', '||questionmark||', '||return||', '||return||', 'glenn:', 'i', 'might', 'ask', 'you', 'the', 'same', 'thing', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'her', 'mind', '||rightparen||', "that's", 'true', '||comma||', 'maybe', "he's", 'not', 'married', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'is', 'so', 'sweet', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'her', 'mind', '||comma||', 'cynical', '||rightparen||', 'how', 'long', 'do', 'i', 'have', 'to', 'hold', 'this', '||questionmark||', '||return||', '||return||', 'glenn:', '||leftparen||', 'seeing', 'a', 'woman', 'on', 'the', 'street', '||rightparen||', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine:', 'who', 'is', 'it', '||questionmark||', '||return||', '||return||', 'glenn:', 'um', '||comma||', 'uh', '||comma||', 'no', 'one', '||comma||', 'no', 'one', '||period||', '||leftparen||', 'running', 'with', 'elaine', 'into', 'an', 'alley', '||rightparen||', 'here', '||comma||', 'uh', '||comma||', 'let', 'me', 'show', 'you', 'a', 'short', 'cut', '||period||', 'come', 'on', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'her', 'mind', '||rightparen||', 'married', '||period||', "that's", 'it', '||comma||', "i'm", 'chucking', 'the', 'flower', '||period||', '||leftparen||', 'she', 'does', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'shouting', 'up', '||rightparen||', 'jerry', '||exclammark||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'what', 'are', 'you', "doin'", 'down', 'there', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', "didn't", 'hear', 'me', 'buzzing', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'guess', "it's", 'broken', '||exclammark||', '||return||', '||return||', 'elaine:', 'throw', 'down', 'your', 'key', '||period||', '||return||', '||return||', 'jerry:', "it's", 'liable', 'to', 'bounce', 'and', 'go', 'into', 'a', 'sewer', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'catch', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', "you'll", 'chicken', 'out', 'at', 'the', 'last', 'second', '||period||', '||return||', '||return||', 'elaine:', '||period||', '||period||', '||period||', 'yeah', '||comma||', "you're", 'right', '||period||', 'well', '||comma||', 'will', 'you', 'at', 'least', 'keep', 'me', 'company', 'until', 'somebody', 'comes', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'annoyed', '||rightparen||', 'all', 'right', '||period||', '||leftparen||', 'after', 'a', 'pause', '||rightparen||', 'hey', '||comma||', 'you', 'know', "what's", 'weird', '||questionmark||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'used', 'to', 'be', 'able', 'to', 'have', 'a', 'huge', 'meal', 'and', 'go', 'right', 'to', 'sleep', '||period||', 'but', 'i', "can't", 'anymore', '||period||', '||return||', '||return||', 'elaine:', 'nodding', 'off', '||exclammark||', '||period||', '||period||', '||period||', 'well', '||comma||', 'i', 'was', 'right', '||period||', "he's", 'an', 'adulterer', '||period||', 'and', "he's", 'cheating', 'on', 'his', 'wife', 'with', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'here', '||exclammark||', "i'm", 'gonna', 'try', 'and', 'fix', 'the', 'buzzer', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'from', 'the', 'street', '||rightparen||', 'it', 'went', 'in', 'the', 'sewer', '||exclammark||', '||leftparen||', 'jerry', 'reacts', '||rightparen||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||period||', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 're', 'buzzer', 'box', '||rightparen||', 'what', 'are', 'you', "doin'", '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'waving', 'the', 'key', '||rightparen||', 'you', 'jammed', 'your', 'key', 'in', 'here', '||questionmark||', 'you', 'shorted', 'out', 'my', 'intercom', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'grabbing', 'the', 'key', '||rightparen||', 'you', 'just', 'had', 'to', 'go', "lookin'", 'for', 'it', '||comma||', "didn't", 'you', '||questionmark||', 'see', '||comma||', 'you', 'hate', 'it', 'that', 'i', 'have', 'a', 'little', 'secret', '||period||', 'anything', 'i', 'do', '||dash||', '||dash||', 'oooh', '||comma||', 'oooh', '||exclammark||', '||dash||', '||dash||', 'you', 'gotta', 'know', 'all', 'about', 'it', '||period||', "you're", 'so', 'obsessed', 'with', 'me', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'gonna', 'go', 'let', 'elaine', 'in', '||period||', '||leftparen||', 'kramer', 'reaches', 'out', 'to', 'stop', 'him', 'leaving', '||rightparen||', '||return||', '||return||', 'kramer:', 'oo', '||comma||', 'y', '||dash||', 'what', 'are', 'you', 'doing', 'with', 'her', '||questionmark||', '||leftparen||', 'jerry', 'ignores', 'him', 'and', 'exits', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'the', 'hallway', '||comma||', 'hearing', 'the', 'door', 'lock', 'behind', 'him', '||comma||', 'turns', 'back', '||rightparen||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'inside', '||rightparen||', 'security', 'issue', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hey', '||period||', 'you', 'got', 'in', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'flirted', 'with', 'the', 'menu', 'guy', '||period||', 'here', '||period||', '||leftparen||', 'hands', 'him', 'a', 'large', 'stack', 'of', 'papers', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'taking', 'the', 'menus', '||rightparen||', 'oh', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'clattering', 'inside', '||rightparen||', 'that', "wasn't", 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "he's", 'definitely', 'married', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'boy', '||comma||', 'i', 'would', 'love', 'to', 'have', 'been', 'there', 'when', 'you', 'told', 'him', 'off', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'he', 'could', 'be', 'a', 'superhero', '||exclammark||', 'you', "should've", 'seen', 'him', 'run', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'from', 'inside', "jerry's", 'apartment', '||rightparen||', 'ok', '||exclammark||', '||leftparen||', 'door', 'opens', '||rightparen||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'jerry', '||period||', "let's", 'see', 'if', 'you', 'can', 'get', 'it', 'in', 'your', 'head', 'that', 'this', 'is', 'not', 'an', 'easter', 'egg', 'hunt', 'for', 'your', 'childish', 'amusement', '||period||', '||leftparen||', 'shuts', 'door', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'from', 'the', 'street', 'below', "jerry's", 'window', '||rightparen||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'out', 'of', 'window', '||rightparen||', 'george', '||comma||', 'the', "buzzer's", 'broken', '||exclammark||', "i'll", 'come', 'down', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'putting', 'on', 'his', 'coat', 'to', 'go', 'downstairs', '||comma||', 'he', 'finds', 'the', 'key', 'in', 'his', 'coat', 'pocket', '||rightparen||', 'i', 'believe', 'this', 'belongs', 'to', 'you', '||period||', '||return||', '||return||', 'kramer:', 'heyyyy', '||exclammark||', '||leftparen||', 'bangs', 'the', 'table', 'in', 'frustration', 'and', 'grabs', 'the', 'key', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'opens', 'the', 'door', 'for', 'george', '||rightparen||', 'where', 'did', 'you', 'get', 'that', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'puzzled', '||rightparen||', 'i', 'bought', 'it', '||period||', '||leftparen||', 'enters', 'lobby', '||rightparen||', '||return||', '||return||', 'phil:', '||leftparen||', 'walking', 'up', 'to', 'get', 'inside', 'after', 'george', '||rightparen||', 'thanks', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'barring', 'the', 'way', '||rightparen||', "i'm", 'sorry', '||period||', 'i', '||dash||', 'i', "don't", 'know', 'you', '||period||', '||return||', '||return||', 'phil:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', "there's", 'been', 'some', 'robberies', 'in', 'the', 'building', '||period||', 'i', '||dash||', 'i', "can't", 'let', 'you', 'in', '||period||', '||return||', '||return||', 'phil:', 'but', '||comma||', 'i', 'live', 'here', '||exclammark||', 'i', 'ran', 'out', 'to', 'buy', 'some', 'birdseed', '||comma||', 'and', '||dash||', 'and', 'i', 'forgot', 'my', 'key', '||period||', '||return||', '||return||', 'george:', 'sounds', 'like', 'a', 'scam', '||period||', '||leftparen||', 'takes', 'a', 'bite', 'from', 'the', 'granola', 'bar', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shakes', 'his', 'head', '||rightparen||', "i'm", 'very', 'sorry', '||period||', '||leftparen||', 'closing', 'the', 'door', 'on', 'phil', '||period||', 'jerry', 'smiles', 'and', 'shrugs', 'apologetically', 'as', 'phil', 'stares', 'at', 'them', 'through', 'the', 'glass', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||comma||', 'i', 'broke', 'up', 'with', 'maura', '||period||', "it's", 'done', '||period||', "i'm", 'out', '||period||', '||return||', '||return||', 'jerry:', 'great', '||comma||', "you're", 'lonely', 'and', 'miserable', 'again', '||period||', '||leftparen||', 'presses', 'button', 'to', 'call', 'elevator', '||rightparen||', '||return||', '||return||', 'george:', 'feels', 'right', '||period||', '||leftparen||', 'cheerfully', 'takes', 'another', 'bite', '||rightparen||', '||return||', '||return||', 'jerry:', 'is', 'that', 'guy', 'still', 'there', '||questionmark||', '||leftparen||', 'they', 'are', 'side', '||dash||', 'on', 'to', 'phil', 'who', 'is', 'in', 'the', 'background', '||comma||', 'still', 'pressed', 'against', 'the', 'glass', '||comma||', 'aghast', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'looking', 'at', 'the', 'door', '||rightparen||', "he's", "starin'", 'at', 'us', '||period||', '||return||', '||return||', 'jerry:', "don't", 'look', 'at', 'him', '||period||', '||leftparen||', 'phil', 'starts', 'to', 'knock', 'on', 'the', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'we', "don't", 'hear', 'that', '||period||', '||leftparen||', 'they', 'enter', 'the', 'elevator', '||rightparen||', '||return||', '||return||', 'george:', 'want', 'a', 'bite', '||questionmark||', '||return||', '||return||', 'jerry:', 'nooo', '||comma||', 'i', "don't", '||period||', '||leftparen||', 'the', 'elevator', 'doors', 'shut', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'in', 'his', 'mind', '||rightparen||', 'i', 'think', 'that', 'ginger', 'ale', 'at', 'the', 'coffee', 'shop', 'is', 'just', 'coke', 'and', 'sprite', 'mixed', 'together', '||period||', 'how', 'can', 'i', 'prove', 'it', '||questionmark||', 'ah', '||exclammark||', "can't", '||comma||', 'dammit', '||period||', '||leftparen||', 'knock', 'at', 'door', '||period||', 'george', 'goes', 'to', 'open', 'it', '||rightparen||', '||return||', '||return||', 'maura:', '||leftparen||', 'cheerily', '||rightparen||', 'hey', '||comma||', 'honey', '||period||', '||leftparen||', 'she', 'sweeps', 'in', '||comma||', 'shuts', 'the', 'door', 'behind', 'her', '||comma||', 'and', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'still', 'by', 'the', 'door', '||rightparen||', 'what', '||questionmark||', 'm', '||dash||', 'maura', '||comma||', 'what', 'are', 'you', "doin'", 'here', '||questionmark||', 'i', 'ended', 'this', 'relationship', '||period||', '||period||', '||period||', 'twice', '||exclammark||', '||return||', '||return||', 'maura:', 'george', '||comma||', 'you', "didn't", 'mean', 'that', '||period||', 'that', 'was', 'just', 'a', 'fight', '||period||', '||return||', '||return||', 'george:', 'why', 'does', 'it', 'always', 'seem', 'like', "i'm", 'the', 'only', 'one', 'working', 'at', 'this', 'break', '||dash||', 'up', '||questionmark||', '||return||', '||return||', 'maura:', 'george', '||comma||', 'i', 'listened', 'to', 'your', 'arguments', '||comma||', 'and', 'they', 'were', 'rambling', 'and', 'flimsy', '||period||', "i'm", 'not', 'convinced', '||period||', 'come', 'on', '||comma||', 'get', 'dressed', 'and', "let's", 'get', 'some', 'dinner', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pauses', 'to', 'consider', 'this', 'then', 'gives', 'in', '||rightparen||', 'all', 'right', '||period||', '||leftparen||', 'starts', 'heading', 'towards', 'bedroom', '||rightparen||', '||return||', '||return||', 'maura:', '||leftparen||', 'picking', 'up', 'the', 'apple', '||rightparen||', 'eww', '||comma||', 'mr', '||period||', 'apple', '||period||', 'you', 'have', 'a', 'brown', 'spot', '||period||', '||leftparen||', 'george', 'freezes', '||comma||', 'shakes', 'his', 'head', '||comma||', 'and', 'continues', 'walking', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'this', 'is', 'your', 'little', '||period||', '||period||', '||period||', 'love', 'nest', '||questionmark||', '||leftparen||', 'laughs', '||rightparen||', '||return||', '||return||', 'glenn:', "it's", 'nothing', 'special', '||comma||', 'just', 'a', 'little', 'place', 'i', 'keep', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'glenn:', 'ah', '||comma||', 'should', 'i', 'light', 'a', 'fire', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'that', 'sounds', '||period||', '||period||', '||period||', 'romantic', '||period||', '||return||', '||return||', 'glenn:', "i'm", 'having', 'a', 'little', 'problem', 'with', 'the', 'heat', '||period||', 'um', '||comma||', 'i', 'got', 'some', 'cardboard', 'out', 'here', '||period||', '||leftparen||', 'climbing', 'through', 'the', 'window', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', 'her', 'mind', '||comma||', 'anguished', '||rightparen||', 'this', 'is', 'wrong', '||period||', 'i', 'should', 'go', '||period||', '||leftparen||', "there's", 'a', 'knock', 'at', 'the', 'door', '||rightparen||', '||return||', '||return||', 'glenn:', '||leftparen||', 'leaning', 'in', '||rightparen||', 'can', 'you', 'get', 'that', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'sure', '||period||', '||return||', '||return||', 'woman:', "where's", 'glenn', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'guiltily', '||rightparen||', 'ah', '||period||', '||period||', '||period||', "you're", 'the', 'woman', 'from', 'the', 'street', '||comma||', 'and', 'i', 'am', 'so', 'sorry', '||period||', 'you', 'know', '||comma||', "i'm", 'not', 'really', 'a', 'home', '||dash||', 'wrecker', '||period||', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', 'i', '||dash||', 'i', 'thought', 'he', 'was', 'a', 'superhero', '||period||', 'i', 'swear', '||period||', '||return||', '||return||', 'woman:', 'lady', '||comma||', "i'm", 'not', 'his', 'wife', '||comma||', "i'm", 'his', 'welfare', 'caseworker', '||period||', 'is', 'he', 'home', '||questionmark||', '||return||', '||return||', 'elaine:', 'this', 'is', 'his', 'home', '||questionmark||', '||return||', '||return||', 'woman:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', "he's", '||period||', '||period||', '||period||', '||return||', '||return||', 'woman:', '||leftparen||', 'nodding', '||rightparen||', 'poor', '||period||', '||leftparen||', 'elaine', 'mouths', "'oo'", '||rightparen||', '||return||', '||return||', 'glenn:', '||leftparen||', 'coming', 'back', 'through', 'the', 'window', 'carrying', 'an', 'old', 'chair', '||rightparen||', 'i', 'think', 'this', 'will', 'burn', '||exclammark||', '||return||', '||return||', 'jerry:', 'so', 'you', 'do', 'live', 'here', '||period||', '||return||', '||return||', 'phil:', '||leftparen||', 'sulkily', '||rightparen||', 'yeah', '||period||', '||leftparen||', 'jerry', 'has', 'an', 'anguished', 'expression', 'as', 'the', 'elevator', 'doors', 'shut', '||rightparen||', '||return||', '||return||', 'jerry:', 'you', 'live', 'on', 'this', 'floor', '||questionmark||', '||return||', '||return||', 'phil:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'arriving', 'at', 'apartment', '||comma||', 'sees', 'phil', 'start', 'to', 'open', 'his', 'apartment', 'door', '||comma||', 'only', 'one', 'door', 'down', 'from', "kramer's", '||rightparen||', 'so', 'you', 'live', 'right', '||period||', '||period||', '||period||', 'there', '||period||', '||return||', '||return||', 'phil:', 'yeah', '||period||', '||leftparen||', 'enters', 'his', 'apartment', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', 'i', 'guess', "i'll", 's', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'he', "wouldn't", 'give', 'me', 'his', 'number', 'because', 'he', "doesn't", 'have', 'a', 'phone', '||period||', '||leftparen||', 'unwrapping', 'a', 'lollipop', '||rightparen||', "he's", 'not', 'married', '||period||', "he's", 'poor', '||period||', '||leftparen||', 'puts', 'lollipop', 'in', 'her', 'mouth', '||rightparen||', '||return||', '||return||', 'jerry:', 'is', 'he', 'wretchedly', 'poor', '||questionmark||', 'does', 'he', 'wear', 'one', 'of', 'those', 'barrels', 'with', 'the', 'straps', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'probably', 'busted', 'it', 'up', 'and', 'burned', 'it', 'for', 'heat', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'when', 'are', 'you', 'giving', 'boxcar', 'willie', 'his', 'walking', 'papers', '||questionmark||', '||return||', '||return||', 'elaine:', 'how', 'can', 'i', 'end', 'it', 'over', 'money', '||questionmark||', 'i', 'feel', 'bad', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "let's", 'think', '||period||', 'have', 'you', 'ever', 'dealt', 'with', 'the', 'poor', 'in', 'any', 'other', 'situation', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||period||', 'there', 'was', 'this', 'homeless', 'guy', 'who', 'used', 'to', 'urinate', 'on', 'our', 'garbage', 'cans', '||period||', '||return||', '||return||', 'jerry:', 'good', '||period||', 'how', 'did', 'you', 'handle', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'we', 'gave', 'him', 'a', 'few', 'bucks', '||comma||', 'and', '||period||', '||period||', '||period||', 'now', 'he', 'goes', 'in', 'the', 'alley', 'across', 'the', 'street', '||period||', '||return||', '||return||', 'jerry:', 'same', 'situation', '||period||', 'pay', 'him', 'off', '||comma||', 'and', "you're", 'clean', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', 'am', 'not', 'paying', 'glenn', 'off', 'to', 'get', 'out', 'of', 'this', 'relationship', '||period||', 'wh', '||dash||', 'what', 'am', 'i', 'supposed', 'to', 'do', '||comma||', 'just', 'walk', 'into', 'his', 'hovel', '||comma||', 'and', 'hand', 'him', '||period||', '||period||', '||period||', 'well', '||comma||', 'how', 'much', 'do', 'you', 'think', 'it', 'would', 'be', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', "monk's", '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'where', 'have', 'you', 'been', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'sitting', 'down', 'next', 'to', 'jerry', '||rightparen||', 'seeing', 'maura', '||period||', 'apparently', '||comma||', 'i', 'was', 'unable', 'to', 'break', 'up', 'beyond', 'a', 'reasonable', 'doubt', '||period||', '||return||', '||return||', 'elaine:', 'if', 'only', 'he', 'could', 'have', 'been', 'cheating', 'on', 'his', 'wife', '||comma||', 'you', 'know', '||comma||', 'things', 'would', 'have', 'been', 'so', 'much', 'simpler', '||period||', '||return||', '||return||', 'george:', "who's", 'this', '||comma||', 'blue', 'arrow', '||questionmark||', '||return||', '||return||', 'elaine:', 'green', 'lantern', '||period||', '||return||', '||return||', 'jerry:', 'we', 'found', 'out', 'his', 'super', 'power', 'was', 'lack', 'of', 'money', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'not', 'amused', '||rightparen||', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', "he's", 'invulnerable', 'to', 'creditors', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'annoyed', '||rightparen||', 'we', 'get', 'it', '||period||', '||leftparen||', 'george', 'is', 'laughing', '||rightparen||', '||return||', '||return||', 'jerry:', "he's", 'the', 'got', '||dash||', 'no', '||dash||', 'green', 'lantern', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||period||', '||leftparen||', 'gets', 'up', 'from', 'her', 'seat', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'elaine', '||period||', 'maybe', 'his', 'girlfriend', 'is', 'lois', 'loan', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaning', 'over', 'to', 'george', '||rightparen||', 'ooh', '||comma||', '||leftparen||', 'fake', 'laugh', '||rightparen||', 'well', 'crafted', '||period||', '||leftparen||', 'exits', '||rightparen||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'maybe', 'this', 'cheating', 'thing', 'is', 'what', 'i', 'could', 'use', 'to', 'ditch', 'maura', '||period||', '||return||', '||return||', 'jerry:', 'sure', '||comma||', 'just', 'tell', 'maura', "you're", 'having', 'an', 'affair', '||period||', '||return||', '||return||', 'george:', "she's", 'like', 'a', 'district', 'attorney', '||period||', 'if', "it's", 'not', 'the', 'truth', '||comma||', "i'll", 'break', 'under', 'the', 'cross', '||period||', 'i', 'actually', 'have', 'to', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'fidgets', 'like', 'he', 'has', 'no', 'room', 'with', 'george', 'next', 'to', 'him', '||rightparen||', '||period||', '||period||', '||period||', 'could', 'you', 'move', 'over', 'there', '||questionmark||', '||exclammark||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'you', 'know', '||comma||', "there's", 'this', 'secretary', 'at', 'work', 'that', 'always', 'had', 'a', 'crush', 'on', 'me', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', 'how', 'come', 'you', 'never', 'pursued', 'her', 'before', '||questionmark||', '||return||', '||return||', 'george:', "she's", 'too', 'tanned', '||period||', "it's", 'the', 'middle', 'of', 'the', 'winter', '||comma||', "she's", 'like', 'a', 'carrot', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'coming', 'back', 'into', "monk's", '||rightparen||', 'did', 'i', 'leave', 'my', 'glasses', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||comma||', 'still', 'joking', '||rightparen||', 'he', 'can', 'wipe', 'out', 'his', 'checking', 'account', 'in', 'a', 'single', 'bounce', '||exclammark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaving', 'again', '||rightparen||', 'keep', "'em", '||exclammark||', '||leftparen||', 'george', 'and', 'jerry', 'savour', 'the', 'joke', '||rightparen||', '||return||', '||return||', 'kramer:', 'heh', '||period||', '||return||', '||return||', 'jerry:', "there's", 'a', 'giant', 'parrot', 'in', 'the', 'hallway', '||period||', '||return||', '||return||', 'kramer:', "it's", "phil's", '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'kramer:', 'our', 'neighbor', 'that', 'you', '||period||', '||period||', '||period||', 'turned', 'against', '||period||', '||leftparen||', 'jerry', 'reacts', '||rightparen||', 'anyway', '||comma||', 'i', 'told', 'him', "it'd", 'be', 'fine', 'with', 'us', 'if', 'he', 'wanted', 'to', 'let', 'it', 'stretch', 'its', 'wings', 'out', 'in', 'the', 'hallway', '||period||', '||return||', '||return||', 'jerry:', "what'd", 'ya', 'tell', 'him', 'that', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'because', 'since', "you've", 'been', 'playing', 'god', 'with', 'the', 'front', 'door', '||comma||', "i've", 'been', "tryin'", 'to', 'smooth', 'things', 'out', '||comma||', 'jerry', '||period||', 'in', 'fact', '||comma||', 'i', 'was', 'just', 'hanging', 'out', 'at', 'his', 'place', '||period||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', "what's", 'it', 'like', '||questionmark||', 'is', 'it', 'nicer', 'than', 'mine', '||questionmark||', 'where', 'does', 'he', 'have', 'the', 'couch', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "don't", 'know', '||comma||', 'but', 'the', 'key', 'problem', 'is', 'solved', '||period||', 'i', 'hid', 'it', 'at', "phil's", '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'he', 'let', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'he', "doesn't", 'know', '||period||', 'see', '||comma||', 'i', 'hid', 'it', 'without', "tellin'", 'him', '||period||', 'so', '||comma||', 'uh', '||comma||', '||leftparen||', 'starts', 'walking', 'towards', 'door', '||rightparen||', 'phil', "won't", 'be', 'compulsively', 'looking', 'for', 'it', 'like', 'some', 'people', '||period||', '||period||', '||period||', 'you', '||exclammark||', '||leftparen||', 'points', 'at', 'jerry', '||rightparen||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', '||period||', '||period||', '||period||', 'you', 'say', "you've", 'been', 'in', 'the', 'city', 'all', 'winter', '||questionmark||', '||return||', '||return||', 'loretta:', 'i', 'was', 'in', 'maine', 'for', 'a', 'couple', 'days', '||period||', '||leftparen||', 'george', 'looks', 'puzzled', 'at', 'how', "she's", 'so', 'tanned', '||rightparen||', '||return||', '||return||', 'george:', 'well', '||period||', '||period||', '||period||', '||leftparen||', 'shuts', 'door', '||rightparen||', 'heeere', 'we', 'are', '||leftparen||', 'puts', 'down', 'his', 'coat', 'and', 'chuckles', '||rightparen||', '||return||', '||return||', 'loretta:', 'george', '||comma||', "i've", 'always', 'fantasized', 'about', 'jumping', 'into', 'bed', 'with', 'you', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'excited', '||rightparen||', 'ho', 'ho', '||exclammark||', '||leftparen||', 'gestures', 'and', 'steps', 'towards', 'bedroom', 'but', 'loretta', 'walks', 'the', 'other', 'way', 'to', 'the', 'couch', '||rightparen||', '||return||', '||return||', 'loretta:', 'but', '||period||', '||period||', '||period||', 'i', "don't", 'want', 'to', 'spoil', 'things', 'by', 'sleeping', 'with', 'you', 'too', 'soon', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'walking', 'back', '||rightparen||', 'are', 'you', 'sure', '||questionmark||', "'cause", 'it', 'could', 'really', 'help', 'me', 'out', 'of', 'a', 'jam', '||period||', '||return||', '||return||', 'loretta:', 'i', 'want', 'to', 'build', 'something', 'with', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'not', 'more', 'building', '||period||', '||return||', '||return||', 'loretta:', '||leftparen||', 'sighs', '||rightparen||', 'and', 'i', "won't", 'take', 'no', 'for', 'an', 'answer', '||period||', '||leftparen||', 'she', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'george:', 'no', '||questionmark||', '||return||', '||return||', 'loretta:', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'after', 'hesitating', '||comma||', 'resignedly', '||rightparen||', 'all', 'right', '||period||', '||leftparen||', 'he', 'sits', 'down', 'and', 'smiles', 'unconvincingly', 'at', 'her', '||rightparen||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'uh', '||comma||', 'what', 'are', 'we', 'doing', 'in', 'this', 'alley', '||comma||', 'anyway', '||questionmark||', '||return||', '||return||', 'glenn:', "it's", 'a', 'surprise', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'giggling', '||rightparen||', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'what', 'are', 'you', 'doing', '||questionmark||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'glenn:', "it's", 'a', 'bag', 'of', 'donuts', '||period||', '||return||', '||return||', 'elaine:', "it's", 'garbage', '||period||', '||return||', '||return||', 'glenn:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'when', 'they', 'make', 'the', 'new', 'ones', '||comma||', 'the', 'old', 'ones', 'come', 'out', '||period||', '||period||', '||period||', 'right', 'here', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'has', 'had', 'enough', '||rightparen||', 'all', 'right', '||comma||', "that's", 'it', '||period||', '||leftparen||', 'rummaging', 'in', 'purse', '||comma||', 'pulls', 'out', 'her', 'chequebook', '||rightparen||', 'how', 'do', 'you', 'spell', 'your', 'last', 'name', '||questionmark||', '||return||', '||return||', 'glenn:', '||leftparen||', 'still', 'looking', 'through', 'the', 'garbage', 'bag', '||rightparen||', "it's", 'a', 'bear', 'claw', '||exclammark||', 'you', 'have', 'no', 'idea', 'how', 'rare', 'this', 'is', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'writing', 'out', 'cheque', '||rightparen||', "i'll", 'make', 'it', 'out', 'to', 'cash', '||period||', 'how', "'bout", 'two', 'hundred', 'bucks', '||questionmark||', 'two', '||dash||', 'fifty', '||questionmark||', '||return||', '||return||', 'glenn:', '||leftparen||', 'eating', 'the', 'bear', 'claw', '||rightparen||', 'oooh', '||exclammark||', '||return||', '||return||', 'elaine:', 'make', 'it', 'three', 'hundred', '||period||', '||return||', '||return||', 'glenn:', '||leftparen||', 're', 'the', 'bear', 'claw', '||rightparen||', 'you', 'know', '||comma||', 'elaine', '||comma||', "you're", 'the', 'bear', 'claw', 'in', 'the', 'garbage', 'bag', 'of', 'my', 'life', '||period||', '||leftparen||', 'breaks', 'bear', 'claw', 'in', 'half', 'and', 'offers', 'her', 'a', 'piece', '||rightparen||', '||return||', '||return||', 'elaine:', '||leftparen||', 'touched', '||comma||', 'she', 'takes', 'it', '||rightparen||', 'aw', '||comma||', 'glenn', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'is', 'phil', 'here', '||questionmark||', '||return||', '||return||', 'phil:', '||leftparen||', 'from', 'inside', 'the', 'apartment', '||rightparen||', 'yeah', '||comma||', "i'm", 'here', '||period||', '||leftparen||', 'comes', 'to', 'the', 'door', '||period||', 'the', 'caged', 'parrot', 'is', 'visible', 'in', 'the', 'background', '||rightparen||', '||return||', '||return||', 'jerry:', 'phil', '||period||', '||period||', '||period||', 'hi', '||period||', 'i', '||dash||', 'i', 'know', 'we', 'got', 'off', 'to', 'kind', 'of', 'a', 'bad', 'start', '||period||', 'but', 'your', 'bird', '||comma||', 'which', 'is', 'lovely', '||period||', '||period||', '||period||', 'by', 'the', 'way', '||comma||', 'made', 'a', 'mess', 'on', 'my', 'door', '||period||', '||return||', '||return||', 'phil:', 'and', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'maybe', "you'd", 'clean', 'it', 'up', '||comma||', 'or', 'your', 'maid', '||comma||', 'there', '||period||', '||return||', '||return||', 'phil:', "that's", 'my', 'wife', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'nodding', 'awkwardly', 'for', 'a', 'moment', '||rightparen||', 'all', 'right', '||comma||', 'i', 'think', "we're", 'done', 'here', '||period||', '||leftparen||', 'jerry', 'leaves', 'and', 'phil', 'shuts', 'the', 'door', 'darkly', '||rightparen||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'a', 'tuxedo', '||rightparen||', 'so', '||comma||', "you're", 'in', 'a', 'relationship', 'with', 'a', 'woman', 'you', "don't", 'like', '||comma||', 'and', "you're", 'having', 'an', 'affair', 'with', 'a', 'woman', 'that', "won't", 'have', 'sex', 'with', 'you', '||period||', '||return||', '||return||', 'george:', 'this', "isn't", 'going', 'well', '||period||', '||return||', '||return||', 'jerry:', 'i', 'cannot', 'find', 'my', 'jerry', 'lewis', 'cufflinks', '||period||', 'without', "'em", '||comma||', 'i', 'have', 'no', 'in', '||exclammark||', '||return||', '||return||', 'george:', 'you', "don't", 'need', 'the', 'cufflinks', '||exclammark||', 'you', 'have', 'the', 'same', 'name', '||exclammark||', '||leftparen||', 'no', 'reaction', '||rightparen||', "'jerry'", '||exclammark||', '||leftparen||', 'heads', 'for', 'door', '||comma||', 'grabbing', 'his', 'coat', '||rightparen||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', "goin'", '||questionmark||', 'help', 'me', 'look', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'opening', 'door', '||rightparen||', "it's", 'a', 'big', 'night', '||period||', "i'm", '||comma||', 'uh', '||comma||', 'ice', 'skating', 'with', 'one', '||comma||', 'and', 'going', 'to', 'a', 'staged', 'reading', 'of', '||quotemark||', 'godspell', '||quotemark||', 'with', 'the', 'other', '||period||', '||return||', '||return||', 'jerry:', 'which', 'is', 'with', 'who', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'shaking', 'his', 'head', '||comma||', 'weary', '||rightparen||', 'it', "doesn't", 'matter', '||period||', '||leftparen||', 'he', 'leaves', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'entering', "jerry's", 'apartment', '||comma||', 'in', 'his', 'own', 'tuxedo', '||rightparen||', 'whoo', '||exclammark||', 'boy', '||period||', 'yeah', '||comma||', 'you', 'clean', 'up', 'nice', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'go', 'until', 'i', 'find', 'my', 'cufflinks', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'see', '||questionmark||', 'i', 'knew', 'you', 'would', 'lose', "'em", '||period||', "that's", 'why', 'i', 'took', "'em", 'out', 'of', 'your', 'dresser', 'drawer', 'and', 'put', "'em", 'in', 'my', 'strongbox', '||period||', '||return||', '||return||', 'jerry:', "you're", 'a', 'lifesaver', '||period||', 'would', 'you', 'get', 'them', '||comma||', 'please', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "we'll", 'stop', 'by', "phil's", '||comma||', "we'll", 'pick', 'up', 'the', 'key', '||comma||', 'uh', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'phil:', 'fredo', 'is', 'dead', '||period||', '||leftparen||', 'his', 'wife', 'sobs', '||rightparen||', '||return||', '||return||', 'jerry:', 'that', 'strange', 'portuguese', 'guy', 'that', 'lives', 'next', '||dash||', 'door', 'to', 'the', 'incinerator', '||questionmark||', '||return||', '||return||', 'phil:', 'no', '||exclammark||', 'my', 'bird', '||period||', 'we', 'just', 'got', 'back', 'from', 'the', 'pet', 'cemetery', '||period||', '||leftparen||', 'starts', 'opening', 'door', '||rightparen||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'phil', '||period||', '||period||', '||period||', 'mrs', '||period||', 'phil', '||period||', "i'm", 'so', 'sorry', '||period||', '||return||', '||return||', 'phil:', 'oh', '||comma||', "i'll", 'bet', 'you', 'are', '||exclammark||', 'they', 'told', 'us', 'he', 'was', 'poisoned', '||exclammark||', 'something', 'in', 'his', 'food', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', '||comma||', 'i', "didn't", '||comma||', 'i', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'they', 'think', 'i', 'killed', 'fredo', '||exclammark||', '||leftparen||', 'kramer', 'gestures', 'sympathetically', '||rightparen||', 'and', 'who', 'buries', 'a', 'bird', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'just', 'give', 'it', 'to', 'the', 'portuguese', 'guy', '||comma||', 'and', 'he', '||period||', '||period||', '||period||', 'puts', 'it', 'in', 'the', 'incinerator', '||period||', '||return||', '||return||', 'jerry:', 'just', 'get', 'the', 'key', 'and', "let's", 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||leftparen||', 'goes', 'to', "phil's", 'door', '||rightparen||', 'you', 'know', '||comma||', "it's", 'a', '||period||', '||period||', '||period||', "it's", 'a', 'funny', 'thing', 'about', 'that', 'bird', 'dying', '||period||', 'i', 'hid', 'the', 'key', 'in', "fredo's", 'food', 'dish', '||period||', 'whoo', '||exclammark||', "that's", 'a', 'weeeird', 'coincidence', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||questionmark||', '||leftparen||', 'grabbing', "kramer's", 'arm', 'roughly', '||comma||', 'pulling', 'him', 'back', 'as', "he's", 'about', 'to', 'knock', '||rightparen||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'killed', 'fredo', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'high', '||dash||', 'pitched', '||rightparen||', 'well', '||comma||', 'fredo', 'was', 'weak', 'and', 'stupid', '||exclammark||', 'he', "shouldn't", 'have', 'eaten', 'that', 'key', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', 'need', 'those', 'cufflinks', '||comma||', 'but', 'now', "they're", 'in', 'the', 'box', '||comma||', 'and', 'the', 'key', 'is', 'in', 'the', 'bird', '||period||', '||period||', '||period||', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'just', 'answered', 'your', 'own', 'question', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'frowning', 'in', 'realization', '||rightparen||', 'oh', '||comma||', 'no', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'nodding', '||rightparen||', "i'll", 'get', 'the', 'shovel', '||period||', '||leftparen||', 'walks', 'towards', 'his', 'apartment', '||comma||', 'as', 'jerry', 'grimaces', 'at', 'the', 'prospect', '||rightparen||', '||return||', '||return||', 'george:', 'the', '||comma||', 'uh', '||comma||', 'actor', 'that', 'played', 'jesus', 'made', 'some', 'odd', 'choices', '||period||', '||return||', '||return||', 'loretta:', '||leftparen||', 'shaking', 'head', '||comma||', 'confused', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'mean', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'had', 'fun', 'ice', 'skating', '||period||', '||return||', '||return||', 'loretta:', 'oh', '||period||', '||leftparen||', 'she', 'smiles', '||comma||', 'reassured', '||comma||', 'and', 'nods', '||rightparen||', '||return||', '||return||', 'maura:', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'maura', '||period||', '||leftparen||', 'starts', 'acting', 'dramatically', '||comma||', 'looking', 'from', 'maura', 'to', 'loretta', 'and', 'back', 'again', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||exclammark||', '||return||', '||return||', 'maura:', 'you', 'told', 'me', 'to', 'meet', 'you', 'here', 'for', 'lunch', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', 'up', '||comma||', 'still', 'acting', '||rightparen||', 'uhh', '||exclammark||', "i'm", 'caught', 'in', 'my', 'own', 'web', 'of', 'lies', '||exclammark||', '||leftparen||', 'holds', 'his', 'hands', 'up', 'in', 'surrender', '||rightparen||', '||return||', '||return||', 'maura:', '||leftparen||', 'calmly', 'ignoring', 'george', '||rightparen||', "i'm", 'maura', '||period||', '||leftparen||', 'shaking', "loretta's", 'hand', 'and', 'smiling', '||rightparen||', '||return||', '||return||', 'loretta:', '||leftparen||', 'to', 'maura', '||comma||', 'also', 'friendly', '||rightparen||', "i'm", 'loretta', '||period||', 'you', 'want', 'to', 'join', 'us', '||questionmark||', '||leftparen||', 'maura', 'nods', 'and', 'sits', 'down', 'next', 'to', 'her', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'laughs', 'hysterically', '||comma||', 'gesticulating', 'wildly', '||rightparen||', 'this', 'is', 'all', 'blowing', 'up', 'in', 'my', 'face', '||exclammark||', 'my', 'serious', 'girlfriend', '||comma||', 'and', 'my', 'torrid', 'love', 'affair', 'have', 'accidentally', 'crossed', 'paths', '||period||', 'i', 'have', 'ruined', 'three', 'lives', '||period||', '||period||', '||period||', '||leftparen||', 'grabbing', 'coat', '||rightparen||', 'well', '||comma||', 'i', 'understand', 'if', 'you', 'never', 'want', 'to', 'see', 'me', 'again', '||comma||', 'so', '||period||', '||period||', '||period||', '||leftparen||', 'points', 'towards', 'door', '||rightparen||', '||return||', '||return||', 'maura:', 'george', '||comma||', 'what', 'we', 'have', 'is', 'too', 'important', '||period||', 'we', 'can', 'work', 'through', 'this', '||period||', '||return||', '||return||', 'loretta:', 'so', 'can', 'we', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'astounded', '||rightparen||', 'what', '||questionmark||', 'so', '||comma||', 'this', 'is', 'still', 'not', 'over', '||questionmark||', '||return||', '||return||', 'maura:', 'no', '||period||', '||return||', '||return||', 'george:', 'you', '||questionmark||', '||return||', '||return||', 'loretta:', 'no', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', '||leftparen||', 'throws', 'his', 'coat', 'back', 'down', 'on', 'the', 'seat', 'and', 'sits', 'down', 'opposite', 'them', '||rightparen||', '||return||', '||return||', 'glenn:', 'elaine', '||comma||', 'wow', '||comma||', 'a', 'tv', '||comma||', 'a', 'stereo', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'and', 'i', 'got', 'you', 'a', 'cord', 'of', 'wood', '||comma||', 'so', 'you', "won't", 'have', 'to', 'burn', "'em", '||period||', '||return||', '||return||', 'glenn:', 'oh', '||comma||', 'my', 'god', '||comma||', 'alison', '||period||', "you're", 'home', 'early', '||period||', '||return||', '||return||', 'elaine:', 'who', 'is', 'this', '||questionmark||', '||return||', '||return||', 'alison:', '||leftparen||', 'arms', 'crossed', '||comma||', 'angry', '||rightparen||', 'his', 'wife', '||period||', '||return||', '||return||', 'elaine:', "you're", '||period||', '||period||', '||period||', 'poor', 'and', 'married', '||questionmark||', '||return||', '||return||', 'glenn:', 'looks', 'like', 'it', '||period||', '||return||', '||return||', 'alison:', 'who', 'the', 'hell', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'guess', "i'm", '||period||', '||period||', '||period||', 'lois', 'loan', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', "can't", 'believe', "we're", 'grave', 'robbers', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'reading', 'a', 'tombstone', '||rightparen||', "'man's", 'best', "friend'", '||period||', 'jerry', '||comma||', 'i', 'want', 'something', 'like', 'that', 'on', 'my', 'tombstone', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'seeing', "fredo's", 'tombstone', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||period||', 'here', 'he', 'is', '||period||', 'i', "don't", 'want', 'to', 'dig', 'him', 'up', '||exclammark||', '||leftparen||', 'hands', 'the', 'shovel', 'to', 'kramer', '||rightparen||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sighs', '||rightparen||', 'all', 'right', '||comma||', 'then', "you're", 'the', 'one', 'getting', 'the', 'key', 'out', 'of', 'him', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'grimaces', 'and', 'takes', 'the', 'shovel', 'back', '||rightparen||', "i'll", 'dig', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||comma||', 'i', 'heard', 'that', 'lassie', '#3', 'is', 'buried', 'around', 'here', '||period||', "i'm", 'gonna', 'go', 'check', 'it', 'out', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'hitting', 'metal', 'with', 'the', 'first', 'strike', 'of', 'the', 'shovel', '||rightparen||', 'well', '||comma||', 'that', 'was', 'easy', '||period||', '||return||', '||return||', 'phil:', 'all', 'right', '||comma||', 'honey', '||comma||', 'one', 'last', 'look', '||comma||', 'then', 'you', 'have', 'to', 'let', 'fredo', 'rest', 'in', 'peace', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'with', 'a', 'wild', 'expression', '||rightparen||', 'hey', '||comma||', 'kramer', '||exclammark||', 'i', 'dug', 'fredo', 'up', '||comma||', 'now', "let's", 'cut', 'him', 'open', '||exclammark||', '||return||', '||return||', 'phil:', '||leftparen||', 'horrified', '||rightparen||', 'oh', '||comma||', 'my', 'god', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'after', 'a', 'very', 'awkward', 'pause', '||comma||', 'cheerily', '||rightparen||', 'hey', '||comma||', 'neighbor', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', "i'm", 'gonna', 'try', "givin'", 'them', 'fifty', '||dash||', 'five', 'dollars', 'each', '||period||', '||period||', '||period||', '||leftparen||', 'to', 'elaine', '||rightparen||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'elaine:', 'give', 'me', 'forty', '||comma||', "you'll", 'never', 'see', 'me', 'again', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'so', '||comma||', 'what', 'are', 'you', 'gonna', 'do', '||questionmark||', 'are', 'you', 'gonna', 'live', 'here', '||comma||', 'or', 'are', 'you', 'gonna', 'move', 'out', '||comma||', 'or', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'in', 'tuxedo', '||comma||', 'tie', 'undone', '||rightparen||', 'ah', '||comma||', "i'll", 'just', 'take', 'the', 'fire', 'escape', 'to', 'get', 'in', 'and', 'out', 'of', 'the', 'building', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "what's", 'in', 'the', 'cooler', '||questionmark||', '||leftparen||', 'flips', 'open', 'the', 'lid', '||rightparen||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'well', '||comma||', 'would', 'you', 'look', 'at', 'that', '||period||', '||leftparen||', 'puts', 'a', 'gun', '||dash||', 'shaped', 'hand', 'to', 'his', 'head', 'and', 'goes', "'pop'", '||rightparen||', 'i', 'guess', 'i', 'forgot', 'to', 'lock', 'it', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'it', 'was', 'open', '||questionmark||', 'we', 'desecrated', 'a', 'pet', 'cemetery', 'for', 'nothing', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'this', 'is', 'one', 'for', 'the', 'books', '||comma||', 'huh', '||comma||', 'jerry', '||questionmark||', '||period||', '||period||', '||period||', 'reeeally', 'one', 'for', 'the', 'books', '||exclammark||', '||return||', '||return||', 'george:', 'when', 'are', 'they', 'gonna', 'learn', 'that', 'any', 'news', 'about', 'china', 'is', 'an', 'instant', 'page', '||dash||', 'turner', '||questionmark||', '||leftparen||', 'seeing', 'jerry', 'with', 'a', 'small', 'black', 'device', '||rightparen||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'wizard', 'electronic', 'organizer', 'for', 'my', 'dad', '||period||', "i'm", "goin'", 'to', 'florida', 'for', 'his', 'birthday', '||period||', '||return||', '||return||', 'george:', 'how', 'much', 'was', 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'two', 'hundred', '||period||', 'but', "i'll", 'tell', 'him', "it's", 'fifty', '||period||', 'he', "doesn't", 'care', 'about', 'the', 'gift', '||period||', 'he', 'gets', 'excited', 'about', 'the', 'deal', '||period||', '||return||', '||return||', 'george:', 'where', 'are', 'you', "gettin'", 'a', 'wizard', 'for', 'fifty', 'dollars', '||questionmark||', '||return||', '||return||', 'jerry:', 'ah', '||comma||', "i'll", 'tell', 'him', 'i', 'got', 'it', 'on', 'the', 'street', '||comma||', 'and', 'maybe', "it's", 'hot', '||period||', "that's", 'his', 'favorite', '||period||', '||return||', '||return||', 'george:', 'i', 'got', 'a', 'message', 'from', 'the', 'rosses', 'at', 'work', 'today', '||period||', '||return||', '||return||', 'jerry:', "susan's", 'parents', '||questionmark||', "when's", 'the', 'last', 'time', 'you', 'talked', 'to', 'them', '||questionmark||', '||return||', '||return||', 'george:', 'at', 'the', 'funeral', '||comma||', 'give', 'or', 'take', '||period||', 'you', 'know', '||comma||', 'deep', 'down', '||comma||', 'i', 'always', 'kinda', 'felt', 'that', 'they', 'blamed', 'me', 'for', "susan's", 'death', '||period||', '||return||', '||return||', 'jerry:', 'why', '||comma||', 'because', 'you', 'picked', 'out', 'the', 'poision', 'envelopes', '||questionmark||', "that's", 'silly', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'entering', "monk's", 'with', 'her', 'boyfriend', '||rightparen||', 'oh', '||comma||', 'um', '||period||', '||period||', '||period||', 'darryl', '||period||', 'these', 'are', '||period||', '||period||', '||period||', 'people', 'i', 'know', '||period||', 'jerry', '||comma||', 'george', '||period||', '||return||', '||return||', 'darryl:', 'nice', 'meeting', 'you', '||period||', 'ah', '||comma||', 'i', 'gotta', 'run', '||comma||', 'elaine', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'ok', '||period||', '||return||', '||return||', 'jerry:', 'still', 'no', 'puddy', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'i', 'think', 'his', 'answering', "machine's", 'broken', '||comma||', 'so', 'i', 'just', 'gave', 'up', '||period||', 'well', '||comma||', 'what', 'do', 'you', 'think', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'about', 'you', "datin'", 'a', 'black', 'guy', '||questionmark||', "what's", 'the', 'big', 'deal', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'black', 'guy', '||questionmark||', '||return||', '||return||', 'jerry:', 'darryl', '||period||', "he's", 'black', '||comma||', "isn't", 'he', '||questionmark||', '||return||', '||return||', 'elaine:', 'he', 'is', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||comma||', 'he', "isn't", '||period||', '||return||', '||return||', 'jerry:', "isn't", 'he', '||comma||', 'elaine', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'think', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'thought', 'he', 'looked', 'irish', '||period||', '||return||', '||return||', 'jerry:', "what's", 'his', 'last', 'name', '||questionmark||', '||return||', '||return||', 'elaine:', 'nelson', '||period||', '||return||', '||return||', 'george:', "that's", 'not', 'irish', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "he's", 'black', '||period||', '||return||', '||return||', 'george:', 'should', 'we', 'be', "talkin'", 'about', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', "it's", 'ok', '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', 'it', "isn't", '||period||', '||return||', '||return||', 'jerry:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'would', 'be', 'ok', 'if', 'darryl', 'was', 'here', '||period||', '||return||', '||return||', 'jerry:', 'if', "he's", 'black', '||period||', '||return||', '||return||', 'elaine:', 'is', 'he', 'black', '||questionmark||', '||return||', '||return||', 'jerry:', 'does', 'it', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'course', 'not', '||period||', 'i', 'mean', '||comma||', "i'd", 'just', 'like', 'to', 'know', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'so', 'you', 'need', 'to', 'know', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'i', "don't", 'need', 'to', 'know', '||period||', 'i', 'just', 'think', 'it', 'would', 'be', 'nice', 'if', 'i', 'knew', '||period||', '||return||', '||return||', 'waitress:', 'should', 'i', 'take', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'out', 'his', 'wallet', '||rightparen||', 'uh', '||comma||', 'one', 'second', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'looking', 'in', 'her', 'purse', '||rightparen||', 'oh', '||comma||', 'here', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'pulling', 'out', 'some', 'money', '||rightparen||', 'uh', '||comma||', 'yeah', '||period||', 'hang', 'on', '||period||', 'just', '||period||', '||period||', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'on', 'the', 'phone', '||rightparen||', 'uh', '||comma||', 'mrs', '||period||', 'ross', '||questionmark||', "it's", '||dash||', "it's", 'george', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'uh', '||comma||', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'george', 'costanza', '||period||', "susan's", '||comma||', 'uh', '||comma||', 'friend', '||questionmark||', 'long', 'time', 'no', 'speak', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'walking', 'by', 'mrs', '||period||', 'ross', '||rightparen||', "we're", 'all', 'out', 'of', 'lime', 'juice', '||period||', 'i', 'told', 'that', 'woman', 'to', 'buy', 'more', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'uh', '||comma||', 'george', '||comma||', 'the', 'susan', 'ross', 'foundation', 'is', 'having', 'an', 'event', 'this', 'weekend', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'i', 'just', '||comma||', 'uh', '||comma||', 'leased', 'a', 'house', 'out', 'in', 'the', 'hamptons', '||comma||', 'and', 'i', 'have', 'got', 'to', 'get', 'out', 'there', 'this', 'weekend', 'and', 'sign', 'the', 'papers', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', '||leftparen||', 'again', 'walking', 'by', '||rightparen||', "i'm", "goin'", 'back', 'to', 'bed', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'thank', 'you', 'for', 'calling', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'sure', '||period||', 'i', 'mean', '||comma||', 'after', 'all', '||comma||', 'you', 'were', 'almost', 'my', '||comma||', 'uh', '||period||', '||period||', '||period||', 'ok', '||comma||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'jerry:', 'house', 'in', 'the', 'hamptons', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'you', 'know', '||comma||', "i've", 'been', "lyin'", 'about', 'my', 'income', 'for', 'a', 'few', 'years', '||period||', 'i', 'figured', 'i', 'could', 'afford', 'a', 'fake', 'house', 'in', 'the', 'hamptons', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'enters', '||rightparen||', 'well', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'grab', 'a', 'cigar', '||comma||', 'boys', '||period||', 'yeah', '||period||', "it's", 'time', 'to', 'celebrate', '||period||', '||return||', '||return||', 'jerry:', 'wow', '||period||', 'what', 'are', 'we', 'celebrating', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'you', 'remember', 'my', 'coffee', 'table', 'book', '||questionmark||', '||return||', '||return||', 'jerry:', 'with', 'the', 'little', 'legs', '||questionmark||', '||return||', '||return||', 'kramer:', "that's", 'the', 'one', '||period||', 'a', 'big', 'hollywood', 'so', '||dash||', 'and', '||dash||', 'so', 'optioned', 'it', 'for', 'a', 'movie', '||period||', '||return||', '||return||', 'george:', 'how', 'are', 'they', 'gonna', 'make', 'that', 'book', 'into', 'a', 'movie', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'remember', 'that', 'photo', 'book', 'on', 'toy', 'ray', 'guns', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||questionmark||', '||return||', '||return||', 'kramer:', 'independence', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'how', 'much', 'are', 'they', "payin'", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "let's", 'just', 'say', 'that', 'i', "don't", 'have', 'to', 'worry', 'about', 'working', 'for', 'a', 'while', '||period||', 'a', 'long', 'while', '||period||', '||return||', '||return||', 'jerry:', "that's", 'funny', 'because', 'i', "haven't", 'seen', 'you', 'working', 'for', 'a', 'while', '||period||', 'a', 'long', 'while', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'and', "you're", 'not', 'going', 'to', '||comma||', 'because', "i'm", 'hanging', 'it', 'up', '||period||', 'boys', '||comma||', "i'm", 'retiring', '||period||', '||return||', '||return||', 'jerry:', 'from', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'from', 'the', 'grind', '||period||', 'i', 'mean', '||comma||', 'who', 'needs', 'it', '||questionmark||', 'i', 'mean', '||comma||', "i've", 'accomplished', 'everything', "i've", 'set', 'out', 'to', 'do', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'seeing', 'that', 'kramer', 'has', 'a', 'new', 'watch', '||rightparen||', "what's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'bought', 'myself', 'a', 'little', 'retirement', 'gift', '||period||', 'gold', 'watch', '||period||', '||return||', '||return||', 'jerry', '&', 'george:', 'ooh', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "it's", 'not', 'really', 'gold', '||period||', '||return||', '||return||', 'jerry', '&', 'george:', 'aww', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'darryl', 'opens', 'his', 'door', '||rightparen||', 'hey', '||period||', '||return||', '||return||', 'darryl:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'great', 'music', '||period||', '||return||', '||return||', 'darryl:', 'oh', '||comma||', "it's", 'my', 'neighbor', '||period||', 'they', 'blast', 'that', 'stuff', 'twenty', 'four', 'hours', 'a', 'day', '||period||', 'i', 'hate', 'it', '||period||', '||return||', '||return||', 'darryl:', 'yo', '||comma||', 'you', '||exclammark||', 'turn', 'it', 'down', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'wow', '||comma||', 'these', 'are', 'nice', '||period||', 'do', 'they', 'have', 'any', 'cultural', 'significance', '||questionmark||', '||return||', '||return||', 'darryl:', "they're", '||period||', '||period||', '||period||', 'african', '||period||', '||return||', '||return||', 'elaine:', 'right', '||period||', 'african', '||period||', '||return||', '||return||', 'darryl:', 'well', '||comma||', 'not', 'africa', '||comma||', 'actually', '||period||', 'south', 'africa', '||period||', '||return||', '||return||', 'elaine:', 'south', 'africa', '||period||', '||return||', '||return||', 'darryl:', 'my', 'family', 'used', 'to', 'live', 'there', '||comma||', 'but', '||comma||', 'uh', '||comma||', 'we', 'got', 'out', 'years', 'ago', '||comma||', 'for', 'obvious', 'reasons', '||period||', 'you', 'know', 'how', 'it', 'is', '||period||', '||return||', '||return||', 'elaine:', 'maybe', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'a', 'street', 'vender', 'selling', 'hot', 'dogs', '||rightparen||', 'you', 'must', 'hate', 'hot', 'dogs', '||comma||', 'huh', '||questionmark||', 'or', 'else', '||comma||', 'you', '||comma||', 'uh', '||comma||', 'you', 'really', 'like', "'em", 'and', "that's", 'why', 'you', '||comma||', 'you', 'do', 'this', '||period||', '||return||', '||return||', 'george:', "i'll", 'tell', 'ya', '||comma||', 'if', 'i', 'had', 'one', 'of', 'these', 'things', '||comma||', "i'd", 'be', "eatin'", 'hot', 'dogs', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'vender:', 'are', 'you', 'gonna', 'buy', 'a', 'hot', 'dog', 'or', 'not', '||questionmark||', '||return||', '||return||', 'george:', 'mmm', '||period||', '||period||', '||period||', 'no', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'jerry', 'comes', 'out', 'of', 'his', 'room', '||comma||', 'having', 'just', 'woken', 'up', '||rightparen||', 'rise', 'and', 'shine', '||comma||', 'sleepy', 'head', '||exclammark||', 'ha', 'ha', '||exclammark||', '||return||', '||return||', 'jerry:', "it's", '530', 'in', 'the', 'morning', '||exclammark||', '||return||', '||return||', 'helen:', 'we', 'let', 'you', 'sleep', 'in', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'handing', 'his', 'dad', 'a', 'gift', '||rightparen||', 'well', '||comma||', 'as', 'long', 'as', "i'm", 'up', '||period||', 'dad', '||comma||', 'i', 'got', 'you', 'a', 'birthday', 'present', '||period||', 'here', '||period||', 'happy', 'birthday', '||period||', '||return||', '||return||', 'morty:', 'aw', '||comma||', 'jerry', '||period||', 'i', 'should', 'be', "buyin'", 'you', 'presents', '||period||', '||return||', '||return||', 'jerry:', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'helen:', 'leave', 'your', 'father', 'alone', '||period||', "it's", 'his', 'birthday', '||period||', '||return||', '||return||', 'morty:', 'oooh', '||exclammark||', 'heh', 'heh', '||exclammark||', "it's", 'a', 'radar', 'detector', '||period||', '||return||', '||return||', 'jerry:', 'radar', 'detector', '||questionmark||', "i've", 'never', 'seen', 'you', 'go', 'over', 'twenty', 'miles', 'an', 'hour', '||period||', "you're", 'like', 'the', 'grand', 'marshall', 'of', 'the', 'rose', 'bowl', 'parade', '||period||', "it's", 'a', 'wizard', 'organizer', '||period||', '||return||', '||return||', 'morty:', 'this', 'looks', 'like', 'too', 'much', 'money', '||period||', '||return||', '||return||', 'jerry:', 'nah', '||comma||', 'i', 'got', 'it', 'from', 'a', 'guy', 'on', 'the', 'street', '||period||', 'it', 'was', '||comma||', 'like', '||comma||', 'fifty', 'bucks', '||period||', '||return||', '||return||', 'morty:', 'you', 'think', "it's", 'hot', '||questionmark||', '||return||', '||return||', 'jerry:', 'could', 'be', '||period||', '||return||', '||return||', 'morty:', 'attaboy', '||exclammark||', 'helen', '||comma||', 'jerry', 'got', 'me', 'a', 'hot', 'wizard', 'computer', '||exclammark||', '||return||', '||return||', 'helen:', "i'm", 'right', 'here', '||period||', '||return||', '||return||', 'jerry:', 'and', 'you', 'can', 'do', 'everything', 'with', 'it', '||period||', 'you', 'can', 'get', 'e', '||dash||', 'mail', '||comma||', 'fax', '||comma||', "there's", 'a', 'calculator', '||period||', '||return||', '||return||', 'morty:', 'so', '||comma||', 'i', 'can', 'use', 'it', 'in', 'the', 'restaurant', 'to', 'figure', 'out', 'the', 'tip', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'i', 'guess', '||period||', 'but', 'the', 'really', 'cool', 'thing', 'is', 'the', 'daily', 'planner', '||period||', '||return||', '||return||', 'morty:', 'helen', '||comma||', 'we', 'got', 'into', 'restaurants', 'and', 'figure', 'out', 'the', 'tips', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', "you're", 'getting', 'your', 'father', 'too', 'excited', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'entering', 'the', 'condo', '||comma||', 'and', 'going', 'to', 'the', 'fridge', 'as', 'if', "he's", 'a', 'neighbor', '||rightparen||', 'hey', '||comma||', 'buddy', '||period||', "when'd", 'you', 'get', 'here', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'told', 'you', 'i', 'was', 'retiring', '||period||', 'i', 'moved', 'in', 'next', 'door', '||period||', '||return||', '||return||', 'helen:', 'mr', '||period||', 'kornstein', 'died', '||comma||', 'and', "it's", 'a', 'beautiful', 'apartment', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'your', '||comma||', 'uh', '||comma||', 'folks', 'said', 'it', 'was', 'for', 'rent', '||comma||', 'so', 'i', 'jumped', 'on', 'it', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'you', "can't", 'live', 'down', 'here', '||period||', 'this', 'is', 'where', 'people', 'come', 'to', 'die', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'looks', 'from', 'his', 'parents', '||rightparen||', 'not', 'you', '||period||', 'older', 'people', '||period||', '||return||', '||return||', 'helen:', "don't", 'eat', 'cookies', 'for', 'breakfast', '||exclammark||', "i'll", 'fix', 'you', 'something', '||period||', 'how', "'bout", 'a', 'feta', 'cheese', 'omelette', '||questionmark||', '||return||', '||return||', 'kramer:', 'mmmm', '||comma||', 'that', 'sounds', 'great', '||comma||', 'mom', '||period||', '||return||', '||return||', 'jerry:', 'if', 'you', 'feed', 'him', '||comma||', "he'll", 'never', 'leave', '||period||', '||return||', '||return||', 'helen:', 'we', "don't", 'have', 'any', 'feta', '||period||', 'how', 'about', 'cottage', 'cheese', 'and', 'egg', 'beaters', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'immaturely', '||rightparen||', 'i', 'guess', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'this', '||period||', '||return||', '||return||', 'kramer:', 'i', 'know', '||comma||', 'i', 'know', '||period||', "don't", 'i', 'look', 'more', 'relaxed', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'george', '||comma||', 'do', 'you', 'have', 'any', 'thoughts', 'on', 'this', 'darryl', 'situation', '||questionmark||', '||return||', '||return||', 'george:', 'actually', '||comma||', 'i', 'did', 'have', 'a', 'thought', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'just', 'ask', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'rudely', 'and', 'giving', 'him', 'a', "'duh'", 'look', '||rightparen||', 'because', '||comma||', 'if', 'i', 'ask', 'him', '||comma||', 'then', "it's", 'like', 'i', 'really', 'want', 'to', 'know', '||period||', '||return||', '||return||', 'george:', 'maybe', "he's", '||comma||', 'um', '||period||', '||period||', '||period||', 'mixed', '||period||', '||return||', '||return||', 'elaine:', 'is', 'that', 'the', 'right', 'word', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'really', "don't", 'think', "we're", 'supposed', 'to', 'be', "talkin'", 'about', 'this', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'standing', 'up', '||rightparen||', "i'm", 'just', 'gonna', 'go', 'to', 'the', 'bathroom', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'starting', 'to', 'leave', '||rightparen||', 'you', 'know', 'what', '||comma||', "i'm", "leavin'", '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "i'll", 'just', 'talk', 'to', 'jerry', 'when', 'he', 'gets', 'back', '||period||', '||leftparen||', 'seeing', 'the', 'rosses', 'entering', "monk's", '||rightparen||', 'oh', '||period||', 'mrs', '||period||', 'ross', '||comma||', 'mr', '||period||', 'ross', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'oh', '||comma||', "you're", "george's", 'friend', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'we', 'saw', 'him', 'in', 'the', 'city', 'this', 'weekend', '||period||', 'uh', '||comma||', 'what', 'happened', 'to', 'his', 'place', 'in', 'the', 'hamptons', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'laughing', 'uproariously', '||rightparen||', 'the', 'hamptons', '||questionmark||', 'george', 'costanza', '||questionmark||', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', "don't", 'think', 'so', '||period||', 'have', 'a', 'good', 'one', '||period||', '||return||', '||return||', 'george:', 'rosses', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'george', '||comma||', 'we', 'were', 'just', 'talking', 'about', 'you', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'sorry', 'i', 'missed', 'that', '||comma||', 'uh', '||comma||', 'charity', 'thing', '||period||', 'but', 'this', 'was', 'one', 'of', 'those', 'truly', 'glorious', 'hampton', 'weekends', 'that', 'you', 'always', 'hear', 'about', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'really', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'i', 'may', 'move', 'out', 'there', '||period||', '||leftparen||', 'getting', "'yeah", '||comma||', "right'", 'glances', 'from', 'the', 'rosses', '||rightparen||', 'i', 'mean', 'it', '||comma||', "i'll", 'do', 'it', '||exclammark||', 'ok', '||comma||', "i'll", 'see', 'ya', 'later', '||period||', 'keep', 'it', 'real', '||exclammark||', '||return||', '||return||', 'morty:', '||leftparen||', 'eating', 'lunch', 'with', 'helen', 'and', 'jerry', '||rightparen||', 'another', 'fine', 'meal', '||comma||', 'and', 'now', 'for', 'my', 'wizard', 'tip', 'calculator', '||period||', '||return||', '||return||', 'jerry:', 'dad', '||comma||', "it's", 'got', 'lots', 'of', 'other', 'functions', '||period||', '||return||', '||return||', 'morty:', "don't", 'worry', '||period||', "i'll", 'get', 'to', 'the', 'other', 'functions', '||period||', '||leftparen||', 'trying', 'to', 'open', 'it', '||rightparen||', 'i', "can't", 'get', 'it', 'open', '||period||', '||return||', '||return||', 'helen:', 'yay', '||exclammark||', 'jerry', 'got', 'it', 'open', '||period||', '||return||', '||return||', 'morty:', 'the', 'service', 'was', 'slow', '||period||', 'and', 'god', 'forbid', 'they', 'should', 'refill', 'the', 'water', '||period||', 'how', 'does', '12', '||period||', '4%', 'sound', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'looking', 'at', 'the', 'wizard', '||rightparen||', 'well', '||comma||', 'your', 'tip', 'is', 'four', 'dollars', 'and', 'thirty', '||dash||', 'six', 'point', 'six', 'six', 'six', 'six', 'cents', '||period||', '||return||', '||return||', 'morty:', "we'll", 'round', 'down', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'it', 'was', 'so', 'nice', 'of', 'you', 'to', 'come', 'down', 'here', 'on', 'your', "father's", 'birthday', '||period||', "you've", 'helped', 'take', 'his', 'mind', 'off', 'the', 'condo', 'elections', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||period||', 'you', "can't", 'run', 'for', 'condo', 'president', 'because', 'you', 'were', 'impeached', 'at', 'the', 'other', 'condo', '||period||', '||return||', '||return||', 'morty:', 'i', 'was', 'never', 'impeached', '||exclammark||', 'i', 'resigned', '||exclammark||', '||return||', '||return||', 'helen:', 'even', 'so', '||comma||', 'the', 'press', 'would', 'bury', 'him', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'press', '||questionmark||', '||return||', '||return||', 'helen:', 'the', 'condo', 'newsletter', '||comma||', 'the', 'boca', 'breeze', '||period||', '||return||', '||return||', 'morty:', 'pinko', 'commie', 'rag', '||period||', '||return||', '||return||', 'old', 'man:', '||leftparen||', 'coming', 'up', 'to', 'the', 'three', 'seinfelds', '||rightparen||', 'hey', '||comma||', 'morty', '||period||', 'your', 'boy', 'here', '||comma||', 'he', 'just', 'got', 'a', 'date', 'with', 'that', 'young', 'aquacise', 'instructor', '||period||', '||return||', '||return||', 'jerry:', "she's", 'fifty', '||period||', '||return||', '||return||', 'old', 'man:', 'you', 'know', 'what', "he's", 'got', '||questionmark||', "he's", 'got', 'charisma', '||period||', "that's", 'my', 'man', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "i'll", 'see', 'you', 'guys', '||period||', '||return||', '||return||', 'old', 'man:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taping', "morty's", 'glasses', '||rightparen||', 'morty', '||comma||', "what're", 'you', "lookin'", 'at', '||questionmark||', '||return||', '||return||', 'morty:', "i'll", 'tell', 'you', 'what', "i'm", 'looking', 'at', 'the', 'next', 'condo', 'president', 'of', 'del', 'boca', 'vista', '||comma||', 'phase', 'three', '||period||', '||return||', '||return||', 'kramer:', 'hmm', '||period||', '||return||', '||return||', 'darryl:', 'elaine', '||comma||', 'thank', 'you', 'for', 'the', 'wizard', '||exclammark||', '||return||', '||return||', 'darryl:', 'wow', '||comma||', "it's", 'got', 'so', 'many', 'functions', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', 'forget', 'about', 'all', 'that', '||period||', 'first', 'thing', 'is', 'first', '||period||', 'warranty', 'information', '||period||', 'name', '||comma||', 'we', 'know', 'that', '||period||', 'uh', '||comma||', 'hobbies', '||period||', 'skiing', '||comma||', 'racquetball', '||period||', '||period||', '||period||', '||return||', '||return||', 'darryl:', 'well', '||comma||', 'i', "don't", 'do', 'that', 'stuff', '||period||', '||return||', '||return||', 'elaine:', 'it', "doesn't", 'matter', '||comma||', 'it', "doesn't", 'matter', '||comma||', 'it', "doesn't", 'matter', '||period||', 'um', '||period||', 'oh', '||comma||', "here's", 'one', 'race', '||period||', '||return||', '||return||', 'darryl:', "isn't", 'that', 'optional', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'certainly', 'should', 'be', '||period||', "it's", "nobody's", 'damn', 'business', '||exclammark||', 'but', 'they', 'really', 'would', 'like', 'to', 'know', '||period||', '||return||', '||return||', 'darryl:', 'all', 'right', '||comma||', "i'm", '||period||', '||period||', '||period||', 'asian', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'darryl:', 'just', 'to', 'mess', 'with', "'em", '||period||', '||return||', '||return||', 'elaine:', 'laughing', 'awkwardly', 'oh', '||period||', 'right', '||period||', 'good', 'one', '||period||', '||return||', '||return||', 'darryl:', 'average', 'income', '||comma||', 'uh', '||period||', '||period||', '||period||', 'over', 'a', 'hundred', 'thousand', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', '||return||', '||return||', 'darryl:', 'does', 'that', 'matter', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'but', '||period||', '||period||', '||period||', 'it', 'is', 'very', 'nice', 'to', 'know', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'his', "parent's", 'condo', '||comma||', 'on', 'the', 'phone', 'with', 'elaine', '||rightparen||', 'so', 'did', 'you', 'figure', 'out', "darryl's", '||period||', '||period||', '||period||', 'you', 'know', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'in', "jerry's", 'apartment', '||rightparen||', 'ah', '||comma||', "i've", 'given', 'up', '||period||', 'so', '||comma||', 'now', "we're", 'going', 'to', 'a', 'bunch', 'of', 'spanish', 'restaurants', '||period||', 'i', 'figure', "that'll", 'cover', 'us', 'either', 'way', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'as', 'kramer', 'walks', 'by', '||rightparen||', "you're", 'a', 'master', 'of', 'race', 'relations', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'so', "kramer's", 'running', 'for', 'president', 'of', 'the', 'condo', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'all', 'my', "father's", 'doing', '||period||', '||return||', '||return||', 'jerry:', 'he', 'wants', 'to', 'install', 'kramer', 'in', 'a', 'puppet', 'regime', 'and', 'then', 'wield', 'power', 'from', 'behind', 'the', 'scenes', '||period||', 'preferably', 'from', 'the', 'sauna', 'in', 'the', 'clubhouse', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'heh', 'heh', 'heh', '||period||', 'who', 'are', 'they', 'running', 'against', '||questionmark||', '||return||', '||return||', 'jerry:', 'common', 'sense', 'and', 'a', 'guy', 'in', 'a', 'wheelchair', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'entering', "jerry's", 'apartment', '||rightparen||', 'jerry', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', "he's", 'still', 'down', 'with', 'his', 'folks', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'what', 'are', 'you', "doin'", 'here', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'overhearing', 'the', 'other', 'two', 'elaine', '||comma||', 'elaine', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', "i'm", "gettin'", 'his', 'mail', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'overhearing', 'the', 'other', 'two', '||rightparen||', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'he', 'asked', 'you', 'to', 'get', 'the', 'mail', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'george', '||rightparen||', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'taking', 'the', 'phone', 'from', 'elaine', '||rightparen||', 'jerry', '||comma||', 'why', 'is', 'elaine', 'getting', 'your', 'mail', '||questionmark||', '||return||', '||return||', 'jerry:', 'george', '||comma||', 'listen', 'to', 'me', '||period||', 'i', 'have', 'a', 'very', 'important', 'job', 'for', 'you', '||period||', 'i', 'want', 'you', 'to', 'come', 'by', 'twice', 'a', 'day', 'and', 'flush', 'the', 'toilet', 'so', 'the', 'gaskets', "don't", 'dry', 'out', 'and', 'leak', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'trying', 'to', 'understand', 'what', "they're", 'talking', 'about', '||rightparen||', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'about', 'the', 'mail', '||questionmark||', '||return||', '||return||', 'jerry:', 'this', 'is', 'far', 'more', 'important', '||period||', 'you', 'must', 'exercise', 'the', 'gaskets', '||comma||', 'george', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'hanging', 'up', '||rightparen||', 'all', 'right', '||comma||', 'jerry', '||period||', "i'll", 'do', 'it', '||period||', 'see', 'ya', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'i', 'ran', 'into', 'the', 'rosses', 'again', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'right', '||comma||', 'at', 'the', 'coffee', 'shop', '||period||', 'where', 'did', 'they', 'get', 'the', 'idea', 'that', 'you', 'have', 'a', 'place', 'in', 'the', 'hamptons', '||questionmark||', '||return||', '||return||', 'george:', 'from', 'me', '||period||', '||return||', '||return||', 'elaine:', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'told', 'them', 'i', 'have', 'a', 'place', 'in', 'the', 'hamptons', '||period||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'told', 'them', 'you', "didn't", '||period||', 'and', 'i', 'laughed', 'and', 'i', 'laughed', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'they', 'knew', '||questionmark||', 'those', 'liars', '||exclammark||', '||return||', '||return||', 'elaine:', 'but', 'you', 'lied', 'first', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'but', 'they', 'let', 'me', 'go', 'on', 'and', 'on', 'all', 'about', 'the', 'hamptons', '||comma||', 'they', 'never', 'said', 'a', 'thing', '||exclammark||', 'you', "don't", 'let', 'somebody', 'lie', 'when', 'they', 'know', "you're", 'lying', '||period||', 'you', 'call', 'them', 'a', 'liar', '||exclammark||', '||return||', '||return||', 'elaine:', 'like', "you're", 'a', 'liar', '||exclammark||', '||return||', '||return||', 'george:', 'yes', '||period||', 'thank', 'you', '||exclammark||', 'is', 'that', 'so', 'hard', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'this', 'is', 'over', '||comma||', 'not', 'over', '||questionmark||', "i'm", "bettin'", '||comma||', 'not', 'over', '||period||', '||return||', '||return||', 'george:', 'hmm', '||dash||', 'hmm', '||comma||', 'not', 'by', 'a', 'long', 'shot', '||period||', "i'm", 'calling', 'up', 'the', 'rosses', 'and', 'inviting', 'them', 'up', 'to', 'my', 'non', '||dash||', 'existent', 'place', 'in', 'the', 'hamptons', '||period||', 'then', "we'll", 'see', 'who', 'blinks', 'first', '||period||', '||return||', '||return||', 'elaine:', "haven't", 'you', 'done', 'enough', 'to', 'these', 'people', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'not', 'about', 'them', '||period||', 'now', '||comma||', 'if', "you'll", 'excuse', 'me', '||comma||', 'i', 'have', 'to', 'exercise', "jerry's", 'gaskets', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'a', 'room', '||rightparen||', 'vote', 'for', 'kramer', '||period||', '||leftparen||', 'to', 'a', 'man', 'walking', 'by', '||rightparen||', 'cosmo', 'kramer', '||period||', "i'm", 'running', 'for', 'condo', 'president', '||period||', "i'd", 'like', 'your', 'vote', '||period||', 'thanks', '||period||', '||leftparen||', 'to', 'an', 'old', 'woman', '||rightparen||', 'remember', '||comma||', "ma'am", '||comma||', 'a', 'vote', 'for', 'me', '||comma||', 'is', 'a', 'vote', 'for', 'kramer', '||period||', '||return||', '||return||', 'old', 'woman:', 'will', 'you', 'cut', 'my', 'meat', '||questionmark||', '||return||', '||return||', 'kramer:', 'gladly', '||period||', '||return||', '||return||', 'waitress:', '||leftparen||', 'to', 'darryl', '||rightparen||', 'coffee', '||questionmark||', '||return||', '||return||', 'darryl:', 'sure', '||period||', '||return||', '||return||', 'waitress:', '||leftparen||', 'to', 'darryl', '||rightparen||', 'are', 'you', 'black', '||questionmark||', 'or', 'should', 'i', 'bring', 'some', 'cream', '||period||', '||return||', '||return||', 'darryl:', "i'm", 'black', '||period||', '||leftparen||', 're', '||dash||', 'thinking', '||rightparen||', 'oh', '||comma||', 'you', 'know', 'what', '||questionmark||', 'bring', 'a', 'little', 'cream', '||period||', '||leftparen||', 'seeing', 'a', 'couple', 'gesturing', 'towards', 'him', 'and', 'elaine', '||rightparen||', 'did', 'you', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'darryl:', 'god', '||comma||', 'there', 'are', 'still', 'people', 'who', 'have', 'trouble', 'with', 'an', 'interracial', 'couple', '||period||', '||return||', '||return||', 'elaine:', 'interracial', '||questionmark||', 'us', '||questionmark||', '||return||', '||return||', 'darryl:', "isn't", 'that', 'unbelievable', '||exclammark||', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', "it's", 'awful', '||exclammark||', "they're", 'upset', 'because', "we're", 'an', 'interracial', 'couple', '||period||', 'that', 'is', 'racism', '||exclammark||', '||return||', '||return||', 'darryl:', 'i', "don't", 'feel', 'like', 'eating', '||period||', '||return||', '||return||', 'elaine:', 'me', 'neither', '||period||', 'well', '||comma||', 'maybe', 'this', 'turkey', 'club', '||period||', '||return||', '||return||', 'george:', 'so', '||period||', '||period||', '||period||', 'here', 'i', 'am', '||period||', 'ready', 'to', 'take', 'you', 'to', 'the', 'hamptons', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'sounds', 'grand', '||period||', '||return||', '||return||', 'george:', 'do', 'you', 'have', 'your', 'bathing', 'suits', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', "it's", 'march', '||period||', '||return||', '||return||', 'george:', 'speak', 'now', '||comma||', 'or', 'we', 'are', 'headed', 'to', 'the', 'hamptons', '||period||', "it's", 'a', 'two', '||dash||', 'hour', 'drive', '||period||', 'once', 'you', 'get', 'in', 'that', 'car', '||comma||', 'we', 'are', 'going', 'all', 'the', 'way', '||period||', '||period||', '||period||', 'to', 'the', 'hamptons', '||period||', 'all', 'right', '||comma||', 'you', 'wanna', 'get', 'nuts', '||questionmark||', 'come', 'on', '||period||', "let's", 'get', 'nuts', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'in', 'his', "parent's", 'condo', '||comma||', 'to', 'his', 'father', '||comma||', "who's", 'in', 'another', 'room', '||rightparen||', 'hey', '||comma||', 'dad', '||period||', 'you', 'know', 'you', 'can', 'program', 'this', 'thing', 'to', 'beep', 'every', 'time', 'you', 'need', 'to', 'take', 'a', 'vitamin', '||period||', '||leftparen||', 'as', 'kramer', 'comes', 'walking', 'out', 'in', 'a', 'retirement', '||dash||', 'like', 'athletic', 'sweatsuit', '||rightparen||', 'dad', '||comma||', 'you', 'look', 'so', 'different', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||period||', "we're", 'campaigning', '||comma||', 'jerry', '||period||', 'to', 'rule', 'the', 'people', '||comma||', 'one', '||period||', '||period||', '||period||', 'must', 'walk', 'among', 'them', '||period||', '||return||', '||return||', 'morty:', '||leftparen||', 'coming', 'into', 'the', 'hall', '||rightparen||', 'this', 'is', 'the', 'home', 'stretch', '||period||', "tomorrow's", 'the', 'election', '||exclammark||', '||return||', '||return||', 'kramer:', 'right', '||period||', 'yeah', '||period||', 'the', 'polls', 'close', 'after', 'dinner', '||comma||', 'three', "o'clock", '||period||', 'but', 'then', 'when', 'we', 'win', '||comma||', 'the', 'celebration', 'goes', 'all', 'night', 'until', 'the', 'break', 'of', 'eight', 'p', '||period||', 'm', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'you', 'can', 'put', 'that', 'whole', 'schedule', 'right', 'in', 'your', 'daily', 'planner', '||period||', '||return||', '||return||', 'morty:', 'daily', 'what', '||questionmark||', '||return||', '||return||', 'helen:', '||leftparen||', 'coming', 'into', 'the', 'condo', '||rightparen||', 'have', 'you', 'read', "today's", 'boca', 'breeze', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'looking', 'at', 'the', 'newsletter', '||rightparen||', 'hey', '||comma||', 'look', 'at', 'that', '||period||', 'picture', 'of', 'me', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'reading', 'out', 'loud', '||rightparen||', 'candidate', 'cosmo', 'kramer', 'caught', 'barefoot', 'in', 'clubhouse', '||period||', '||return||', '||return||', 'morty:', 'barefoot', 'in', 'the', 'clubhouse', '||questionmark||', "don't", 'you', 'realize', 'this', 'is', 'against', 'the', 'rules', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', "couldn't", 'find', 'my', 'shoes', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'these', 'people', 'work', 'and', 'wait', 'their', 'whole', 'lives', 'to', 'move', 'down', 'here', '||comma||', 'sit', 'in', 'the', 'heat', '||comma||', 'pretend', "it's", 'not', 'hot', '||comma||', 'and', 'enforce', 'these', 'rules', '||period||', '||return||', '||return||', 'helen:', 'who', 'wants', 'hot', 'chocolate', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||exclammark||', 'me', '||period||', '||return||', '||return||', 'morty:', 'this', 'is', 'a', 'huge', 'scandal', '||exclammark||', 'we', 'need', 'damage', 'control', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'look', '||period||', 'people', 'seem', 'to', 'like', 'those', 'tip', 'calculators', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'wizards', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'well', '||comma||', 'how', "'bout", 'if', 'we', 'give', 'one', 'out', 'to', 'every', 'member', 'on', 'the', 'condo', 'board', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||period||', '||period||', '||period||', '||return||', '||return||', 'morty:', 'there', 'are', 'twenty', 'people', 'on', 'the', 'board', '||period||', 'thank', 'god', 'you', 'can', 'get', 'that', 'deal', '||period||', '||return||', '||return||', 'kramer:', 'payoffs', '||period||', 'now', "we're", "playin'", 'politics', '||period||', 'all', 'right', '||comma||', 'what', 'do', 'we', 'next', '||comma||', 'morty', '||comma||', 'huh', '||questionmark||', 'wiretaps', '||comma||', 'slush', 'funds', '||questionmark||', '||return||', '||return||', 'morty:', '||leftparen||', 'rushing', 'to', 'his', 'bedroom', '||rightparen||', 'first', '||comma||', 'i', 'need', 'a', 'nap', '||period||', '||return||', '||return||', 'helen:', '||leftparen||', 'running', 'after', 'him', '||rightparen||', 'oh', '||comma||', "i'll", 'get', 'your', 'electric', 'blanket', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'i', "can't", 'get', 'that', 'many', 'wizards', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'what', 'about', 'your', 'deal', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'have', 'a', 'deal', '||exclammark||', "they're", 'two', 'hundred', 'dollars', 'a', 'pop', '||period||', 'what', 'do', 'i', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "don't", 'worry', 'about', 'it', '||period||', 'i', 'know', 'a', 'guy', '||period||', '||return||', '||return||', 'jerry:', 'down', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'bob', "saccamano's", 'father', '||period||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'tell', 'us', 'more', '||period||', '||return||', '||return||', 'george:', 'you', 'want', 'to', 'hear', 'more', '||questionmark||', 'the', 'master', 'bedroom', 'opens', 'into', 'the', 'solarium', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'another', 'solarium', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'two', 'solariums', '||period||', 'quite', 'a', 'find', '||period||', 'and', 'i', 'have', 'horses', '||comma||', 'too', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'what', 'are', 'their', 'names', '||questionmark||', '||return||', '||return||', 'george:', 'snoopy', 'and', 'prickly', 'pete', '||period||', 'should', 'i', 'keep', 'driving', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'oh', '||comma||', 'look', '||comma||', 'an', 'antique', 'stand', '||period||', 'pull', 'over', '||period||', "we'll", 'buy', 'you', 'a', 'housewarming', 'gift', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'chuckling', 'to', 'himself', '||rightparen||', 'housewarming', 'gift', '||period||', '||leftparen||', 'swerving', 'the', 'car', 'to', 'go', 'to', 'the', 'antique', 'stand', '||rightparen||', 'all', 'right', '||comma||', "we're", 'taking', 'it', 'up', 'a', 'notch', '||exclammark||', '||return||', '||return||', 'waitress:', '||leftparen||', 'handing', 'elaine', 'a', 'menu', '||rightparen||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'to', 'the', 'black', 'waitress', '||rightparen||', 'long', 'day', '||questionmark||', '||return||', '||return||', 'waitress:', 'yeah', '||comma||', 'i', 'just', 'worked', 'a', 'triple', 'shift', '||period||', '||return||', '||return||', 'elaine:', 'i', 'hear', 'ya', '||comma||', 'sister', '||period||', '||return||', '||return||', 'waitress:', 'sister', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'as', 'darryl', 'comes', 'into', "monk's", '||rightparen||', 'yeah', '||period||', "it's", 'ok', '||period||', 'my', "boyfriend's", 'black', '||period||', 'here', 'he', 'is', '||period||', 'see', '||questionmark||', '||return||', '||return||', 'darryl:', 'hi', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'waitress:', "he's", 'black', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'darryl:', "i'm", 'black', '||questionmark||', '||return||', '||return||', 'elaine:', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'waitress:', '||leftparen||', 'leaving', '||rightparen||', "i'll", 'give', 'you', 'a', 'couple', 'minutes', 'to', 'decide', '||period||', '||return||', '||return||', 'darryl:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'black', '||period||', 'you', 'said', 'we', 'were', 'an', 'interracial', 'couple', '||period||', '||return||', '||return||', 'darryl:', 'we', 'are', '||period||', 'because', "you're", 'hispanic', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', '||questionmark||', '||return||', '||return||', 'darryl:', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'why', 'would', 'you', 'think', 'that', '||questionmark||', '||return||', '||return||', 'darryl:', 'your', "name's", 'benes', '||comma||', 'your', 'hair', '||comma||', 'and', 'you', 'kept', 'taking', 'me', 'to', 'those', 'spanish', 'restaurants', '||period||', '||return||', '||return||', 'elaine:', "that's", 'because', 'i', 'thought', 'you', 'were', 'black', '||period||', '||return||', '||return||', 'darryl:', 'why', 'would', 'you', 'take', 'me', 'to', 'a', 'spanish', 'restaurant', 'because', "i'm", 'black', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'think', 'we', 'should', 'be', 'talking', 'about', 'this', '||period||', '||return||', '||return||', 'darryl:', 'so', '||comma||', 'what', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', "i'm", 'white', '||period||', '||return||', '||return||', 'darryl:', 'so', '||comma||', "we're", 'just', 'a', 'couple', 'of', 'white', 'people', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'guess', '||period||', '||return||', '||return||', 'darryl:', 'oh', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'so', 'do', 'you', 'want', 'to', 'go', 'to', 'the', 'gap', '||questionmark||', '||return||', '||return||', 'darryl:', '||leftparen||', 'leaving', 'with', 'elaine', '||rightparen||', 'sure', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'having', 'lunch', 'with', 'jerry', 'and', 'his', 'parents', '||rightparen||', 'oh', '||comma||', 'well', '||period||', '||period||', '||period||', 'i', 'handed', 'out', 'all', 'the', 'wizards', '||period||', 'polls', 'close', 'in', 'one', 'hour', '||period||', 'whoo', 'hoo', 'hoo', '||exclammark||', 'i', 'think', "we've", 'got', 'this', 'baby', 'all', 'sewn', 'up', '||comma||', 'huh', '||questionmark||', 'oh', '||comma||', 'uh', '||comma||', 'there', 'was', 'an', 'extra', 'one', '||period||', 'norman', 'burgerman', '||comma||', 'he', "won't", 'be', "leavin'", 'any', 'tips', 'where', 'he', 'is', '||period||', '||return||', '||return||', 'jerry:', 'aw', '||period||', '||return||', '||return||', 'morty:', 'congratulations', '||comma||', 'mr', '||period||', 'president', '||period||', '||return||', '||return||', 'kramer:', 'congratulations', '||comma||', 'mr', '||period||', 'puppet', 'master', '||period||', '||return||', '||return||', 'old', 'man:', 'hey', '||comma||', 'morty', '||comma||', "what's", 'wrong', 'with', 'these', 'tip', 'calculators', '||questionmark||', '||return||', '||return||', 'morty:', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', '||return||', '||return||', 'old', 'man:', "it's", 'overtipping', '||period||', 'i', 'just', 'left', 'five', 'bucks', 'for', 'a', 'blt', '||period||', '||return||', '||return||', 'morty:', 'this', "isn't", 'a', 'wizard', '||comma||', "it's", 'a', 'willard', '||period||', '||return||', '||return||', 'jerry:', 'a', 'willard', '||questionmark||', 'saccamano', '||comma||', 'sr', '||period||', 'screwed', 'me', '||exclammark||', '||return||', '||return||', 'old', 'man', '#2:', 'mine', "doesn't", 'have', 'a', 'seven', '||exclammark||', '||return||', '||return||', 'old', 'man', '#3:', "i'm", 'ruined', '||exclammark||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', 'why', "didn't", 'you', 'get', 'them', 'wizards', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'a', 'real', "wizard's", 'two', 'hundred', 'dollars', '||period||', '||return||', '||return||', 'morty:', 'you', "didn't", 'have', 'a', 'deal', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', 'deal', '||period||', 'not', 'hot', '||period||', '||return||', '||return||', 'old', 'man:', 'morty', '||comma||', 'you', '||comma||', 'and', 'kramer', '||comma||', "you're", 'finished', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'old', 'man:', 'everyone', 'vote', 'for', 'the', 'guy', 'in', 'the', 'wheelchair', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'getting', 'up', 'to', 'leave', '||rightparen||', 'well', '||comma||', 'the', 'people', 'have', 'spoken', '||period||', 'well', '||comma||', "that's", 'it', 'for', 'me', '||period||', "i'm", '||comma||', "i'm", "headin'", 'back', 'to', 'new', 'york', '||period||', '||return||', '||return||', 'jerry:', 'dad', '||comma||', "i'm", 'sorry', '||period||', '||return||', '||return||', 'morty:', 'you', 'should', 'be', '||exclammark||', 'how', 'could', 'you', 'spend', 'two', 'hundred', 'dollars', 'on', 'a', 'tip', 'calculator', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'it', 'does', 'other', 'things', '||exclammark||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'where', 'are', 'we', '||comma||', 'george', '||questionmark||', '||return||', '||return||', 'george:', 'almost', 'there', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'well', '||comma||', 'this', 'is', 'the', 'end', 'of', 'long', 'island', '||period||', "where's", 'your', 'house', '||questionmark||', '||return||', '||return||', 'george:', 'we', '||comma||', 'uh', '||comma||', 'we', 'go', 'on', 'foot', 'from', 'here', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'all', 'right', '||period||', '||return||', '||return||', 'george:', "there's", 'no', 'house', '||exclammark||', "it's", 'a', 'lie', '||exclammark||', "there's", 'no', 'solarium', '||period||', "there's", 'no', 'prickly', 'pete', '||period||', "there's", 'no', 'other', 'solarium', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'we', 'know', '||period||', '||return||', '||return||', 'george:', 'then', '||comma||', 'why', '||questionmark||', 'why', 'did', 'you', 'make', 'me', 'drive', 'all', 'the', 'way', 'out', 'here', '||questionmark||', 'why', "didn't", 'you', 'say', 'something', '||questionmark||', 'why', '||questionmark||', 'why', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'we', "don't", 'like', 'you', '||comma||', 'george', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'and', 'we', 'always', 'blamed', 'you', 'for', 'what', 'happened', 'to', 'susan', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'all', 'right', '||exclammark||', "let's", 'head', 'back', '||period||', '||return||', '||return||', 'puddy:', 'alright', '||comma||', 'be', 'careful', 'with', 'the', 'car', '||comma||', 'babe', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'puddy:', 'and', "don't", 'move', 'the', 'seat', '||comma||', 'i', 'got', 'it', 'right', 'where', 'i', 'like', 'it', '||period||', '||return||', '||return||', 'elaine:', 'goodbye', '||questionmark||', '||return||', '||return||', 'puddy:', 'two', 'and', 'ten', '||comma||', 'babe', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'puddy:', "don't", 'peel', 'out', '||period||', '||return||', '||return||', 'elaine:', 'i', "won't", '||period||', '||return||', '||return||', '||leftparen||', 'elaine', 'peels', 'out', 'and', 'turns', 'on', 'the', 'car', 'stereo', '||period||', 'she', 'hears:', '||quotemark||', 'jesus', 'is', 'one', '||comma||', 'jesus', 'is', 'all', '||comma||', 'jesus', 'picks', 'me', 'up', 'when', 'i', 'fall', '||period||', '||period||', '||period||', '||quotemark||', 'elaine', 'changes', 'the', 'stations', 'but', 'all', 'of', 'the', 'presets', 'are', 'set', 'to', 'religious', 'radio', 'stations', '||semicolon||', '||quotemark||', 'and', 'he', 'said', 'unto', 'abraham', '||period||', '||period||', '||period||', '||quotemark||', '||comma||', '||quotemark||', 'amen', '||exclammark||', 'amen', '||exclammark||', '||quotemark||', '||comma||', '||quotemark||', 'so', 'we', 'pray', '||period||', '||period||', '||period||', '||quotemark||', '||comma||', '||quotemark||', 'saved', '||exclammark||', '||quotemark||', '||comma||', '||quotemark||', 'jey', '||dash||', 'sus', '||exclammark||', '||quotemark||', 'she', 'turns', 'off', 'the', 'radio', '||period||', '||rightparen||', '||return||', '||return||', 'elaine:', 'jesus', '||questionmark||', '||return||', '||return||', 'kruger:', 'according', 'to', 'our', 'latest', 'quarterly', 'thing', '||comma||', 'kruger', 'industrial', 'smoothing', 'is', 'heading', 'into', 'the', 'red', '||period||', 'or', 'the', 'black', '||comma||', 'or', 'whatever', 'the', 'bad', 'one', 'is', '||period||', 'any', 'thoughts', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'know', 'when', "i'm", 'a', 'little', 'strapped', '||comma||', 'i', 'sometimes', 'drop', 'off', 'my', 'rent', 'check', 'having', 'forgotten', 'to', 'sign', 'it', '||period||', 'that', 'could', 'buy', 'us', 'some', 'time', '||period||', '||return||', '||return||', 'kruger:', 'works', 'for', 'me', '||period||', 'good', 'thinking', '||comma||', 'george', '||period||', '||return||', '||return||', 'co', '||dash||', 'worker', '#1:', 'alright', '||comma||', 'george', '||period||', '||return||', '||return||', 'co', '||dash||', 'worker', '#2:', 'way', 'to', 'go', 'man', '||period||', '||return||', '||return||', 'george:', 'or', 'we', "don't", 'even', 'send', 'the', 'check', 'and', 'then', 'when', 'they', 'call', '||comma||', 'we', 'pretend', "we're", 'the', 'cleaning', 'service', '||period||', 'heh', 'heh', '||period||', '||quotemark||', 'hello', '||questionmark||', 'i', 'sorry', '||comma||', 'no', 'here', 'kruger', '||period||', '||quotemark||', '||return||', '||return||', 'kruger:', 'are', 'you', 'done', '||questionmark||', 'silly', 'voices', '||comma||', "c'mon", 'people', '||comma||', "let's", 'get', 'real', '||period||', '||return||', '||return||', 'co', '||dash||', 'worker', '#1:', 'good', 'one', '||period||', '||return||', '||return||', 'co', '||dash||', 'worker', '#2:', 'that', 'was', 'bad', '||period||', '||return||', '||return||', 'george:', 'i', 'had', "'em", '||comma||', 'jerry', '||period||', 'they', 'loved', 'me', '||period||', '||return||', '||return||', 'jerry:', 'and', 'then', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'lost', 'them', '||period||', 'i', 'can', 'usually', 'come', 'up', 'with', 'one', 'good', 'comment', 'during', 'a', 'meeting', 'but', 'by', 'the', 'end', "it's", 'buried', 'under', 'a', 'pile', 'of', 'gaffs', 'and', 'bad', 'puns', '||period||', '||return||', '||return||', 'jerry:', 'showmanship', '||comma||', 'george', '||period||', 'when', 'you', 'hit', 'that', 'high', 'note', '||comma||', 'you', 'say', 'goodnight', 'and', 'walk', 'off', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'just', 'leave', '||period||', '||return||', '||return||', 'jerry:', "that's", 'the', 'way', 'they', 'do', 'it', 'in', 'vegas', '||period||', '||return||', '||return||', 'george:', 'you', 'never', 'played', 'vegas', '||period||', '||return||', '||return||', 'jerry:', 'i', 'hear', 'things', '||period||', '||return||', '||return||', 'elaine:', "here's", 'one', '||period||', 'i', 'borrowed', "puddy's", 'car', 'and', 'all', 'the', 'presets', 'on', 'his', 'radio', 'were', 'christian', 'rock', 'stations', '||period||', '||return||', '||return||', 'george:', 'i', 'like', 'christian', 'rock', '||period||', "it's", 'very', 'positive', '||period||', "it's", 'not', 'like', 'those', 'real', 'musicians', 'who', 'think', "they're", 'so', 'cool', 'and', 'hip', '||period||', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'you', 'think', 'that', 'puddy', 'actually', 'believes', 'in', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'a', 'used', 'car', '||comma||', 'he', 'probably', 'never', 'changed', 'the', 'presets', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'he', 'is', 'lazy', '||period||', '||return||', '||return||', 'jerry:', 'plus', 'he', 'probably', "doesn't", 'even', 'know', 'how', 'to', 'program', 'the', 'buttons', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'he', 'is', 'dumb', '||period||', '||return||', '||return||', 'jerry:', 'so', 'you', 'prefer', 'dumb', 'and', 'lazy', 'to', 'religious', '||questionmark||', '||return||', '||return||', 'elaine:', 'dumb', 'and', 'lazy', '||comma||', 'i', 'understand', '||period||', '||return||', '||return||', 'george:', 'tell', 'you', 'how', 'you', 'could', 'check', '||period||', '||return||', '||return||', 'elaine:', 'how', '||questionmark||', '||return||', '||return||', 'george:', 'reprogram', 'all', 'the', 'buttons', '||comma||', 'see', 'if', 'he', 'changes', 'them', 'back', '||period||', 'you', 'know', '||questionmark||', 'the', 'old', 'switcheroo', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'the', 'old', 'switcheroo', 'is', 'you', 'poison', 'your', 'drink', 'then', 'you', 'switch', 'it', 'with', 'the', 'other', "person's", '||period||', '||return||', '||return||', 'george:', 'no', '||comma||', "it's", 'doing', 'the', 'same', 'thing', 'to', 'someone', 'that', 'they', 'did', 'to', 'you', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "elaine's", 'gonna', 'do', 'the', 'same', 'thing', 'to', "puddy's", 'radio', 'that', 'the', 'radio', 'did', 'to', 'her', '||period||', '||return||', '||return||', 'george:', 'well', "that's", 'the', 'gist', 'of', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'quiet', '||exclammark||', 'so', 'where', 'is', 'this', 'sophie', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', "she's", 'picking', 'me', 'up', 'in', 'a', 'few', 'minutes', '||period||', '||return||', '||return||', 'elaine:', 'how', 'long', 'have', 'you', 'two', 'been', 'together', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'dunno', '||period||', 'since', 'the', 'last', 'one', '||period||', 'oh', '||comma||', 'here', 'she', 'is', '||period||', 'you', 'wanna', 'meet', 'her', '||questionmark||', '||return||', '||return||', 'elaine', '&', 'george:', 'nah', '||period||', '||return||', '||return||', 'george:', 'by', 'the', 'way', '||comma||', 'how', 'did', 'puddy', 'get', 'back', 'in', 'the', 'picture', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'needed', 'to', 'move', 'a', 'bureau', '||period||', '||return||', '||return||', 'kramer:', 'hey', 'jerry', '||comma||', 'you', 'got', 'any', 'pepper', '||questionmark||', '||return||', '||return||', 'mickey:', 'hey', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'mickey', '||period||', 'check', 'the', 'pepper', 'shaker', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||leftparen||', 'inhales', 'some', 'pepper', 'then', 'sneezes', 'violently', '||rightparen||', 'see', '||questionmark||', 'it', 'should', 'sound', 'like', 'that', '||comma||', 'something', 'like', 'that', '||period||', '||return||', '||return||', 'mickey:', 'aah', '||dash||', 'choo', '||period||', '||return||', '||return||', 'kramer:', 'a', 'little', 'wetter', '||period||', 'see', '||comma||', 'i', "didn't", 'believe', 'it', '||period||', '||return||', '||return||', 'jerry:', "what's", 'with', 'the', 'fake', 'sneezing', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "we're", 'going', 'down', 'to', 'mt', '||period||', 'sinai', 'hospital', '||comma||', 'see', 'they', 'hire', 'actors', 'to', 'help', 'the', 'students', 'practice', 'diagnosing', '||period||', '||return||', '||return||', 'mickey:', 'they', 'assign', 'you', 'a', 'specific', 'disease', 'and', 'you', 'act', 'out', 'the', 'symptoms', '||period||', "it's", 'an', 'easy', 'gig', '||period||', '||return||', '||return||', 'jerry:', 'do', 'medical', 'schools', 'actually', 'do', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', 'the', 'better', 'ones', '||period||', 'alright', '||comma||', "let's", 'practice', 'retching', '||period||', '||return||', '||return||', 'kramer', '&', 'mickey:', 'huaahhh', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'the', 'phone', 'is', 'ringing', '||period||', '||return||', '||return||', 'kramer', '&', 'mickey:', 'huaahhh', '||exclammark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'would', 'you', 'hold', 'it', 'a', 'second', '||questionmark||', '||exclammark||', 'thank', 'you', '||comma||', 'will', 'you', 'get', 'out', 'of', 'here', 'with', 'that', 'stuff', '||questionmark||', '||return||', '||return||', 'kramer:', 'mickey', '||comma||', 'dts', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'sophie:', 'hey', '||period||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||return||', '||return||', 'sophie:', 'no', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', '||questionmark||', '||return||', '||return||', 'sophie:', 'jerry', '||comma||', "it's", 'sophie', '||period||', 'i', "can't", 'believe', 'you', "don't", 'recognize', 'my', 'voice', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'knew', 'it', 'was', 'you', '||comma||', 'i', 'was', 'joking', '||period||', "i'm", 'a', 'comedian', '||period||', '||return||', '||return||', 'kramer:', 'you', 'got', 'any', 'ipecac', '||questionmark||', '||return||', '||return||', 'jerry:', 'ipecac', '||questionmark||', 'kramer', '||comma||', 'i', 'really', 'think', 'you', 'guys', 'are', 'going', 'too', 'far', 'with', 'this', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'mickey', '||comma||', 'he', 'swallowed', 'twelve', 'aspirin', '||period||', '||return||', '||return||', 'jerry:', 'did', 'he', 'overdose', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', "it's", 'just', 'too', 'much', '||period||', '||return||', '||return||', 'kruger:', '||period||', '||period||', '||period||', 'and', 'it', 'gets', 'worse', '||period||', 'the', 'team', 'working', 'on', 'the', 'statue', 'in', 'lafayette', 'square', 'kind', 'of', 'over', '||dash||', 'smoothed', 'it', '||period||', 'they', 'ground', 'the', 'head', 'down', 'to', 'about', 'the', 'size', 'of', 'a', 'softball', '||comma||', 'and', 'that', 'spells', 'trouble', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', 'well', 'why', "don't", 'we', 'smooth', 'the', 'head', 'down', 'to', 'nothing', '||comma||', 'stick', 'a', 'pumpkin', 'under', 'its', 'arm', 'and', 'change', 'the', 'nameplate', 'to', 'ichabod', 'crane', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'getting', 'up', 'and', 'leaving', '||rightparen||', 'alright', '||exclammark||', "that's", 'it', 'for', 'me', '||period||', 'goodnight', 'everybody', '||period||', '||return||', '||return||', 'dr', '||period||', 'wexler:', 'in', 'your', 'packet', 'you', 'will', 'find', 'the', 'disease', 'you', 'have', 'been', 'assigned', 'and', 'the', 'symptoms', 'you', 'will', 'need', 'to', 'exhibit', '||period||', '||return||', '||return||', 'mickey:', 'bacterial', 'meningitis', '||period||', 'jackpot', '||exclammark||', '||return||', '||return||', 'kramer:', 'gonorrhea', '||questionmark||', 'you', 'wanna', 'trade', '||questionmark||', '||return||', '||return||', 'mickey:', 'sorry', 'buddy', '||comma||', 'this', 'is', 'the', '||quotemark||', 'hamlet', '||quotemark||', 'of', 'diseases', '||period||', 'severe', 'pain', '||comma||', 'nausea', '||comma||', 'delusions', '||comma||', "it's", 'got', 'everything', '||period||', '||return||', '||return||', 'man:', 'sure', '||period||', '||return||', '||return||', 'kramer:', 'okay', '||comma||', 'what', 'do', 'you', 'got', '||questionmark||', '||return||', '||return||', 'man:', 'the', 'surgeon', 'left', 'a', 'sponge', 'inside', 'me', '||period||', '||return||', '||return||', 'kramer:', 'good', 'luck', 'with', 'that', '||period||', '||return||', '||return||', 'george:', 'i', 'knew', 'i', 'had', 'hit', 'my', 'high', 'note', 'so', 'i', 'thanked', 'the', 'crowd', 'and', 'i', 'was', 'gone', '||period||', '||return||', '||return||', 'jerry:', 'what', 'did', 'you', 'do', 'the', 'rest', 'of', 'the', 'day', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'saw', '||quotemark||', 'titanic', '||quotemark||', '||period||', 'so', 'that', 'old', 'woman', '||comma||', "she's", 'just', 'a', 'liar', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'a', 'bit', 'of', 'a', 'tramp', 'if', 'you', 'ask', 'me', '||period||', '||return||', '||return||', 'elaine:', 'hello', 'boys', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'so', '||comma||', 'did', 'you', 'give', 'that', 'radio', 'the', 'old', 'switcheroo', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'did', '||period||', '||return||', '||return||', 'george:', 'and', 'the', 'christian', 'rock', '||questionmark||', '||return||', '||return||', 'elaine:', 'ressurected', '||exclammark||', 'and', 'look', 'what', 'i', 'pried', 'off', 'of', 'his', 'bumper', '||comma||', 'a', 'jesus', 'fish', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'do', 'you', 'have', 'any', 'fishsticks', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'so', "you're", 'disappointed', "he's", 'a', 'spiritual', 'person', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', 'yeah', '||comma||', 'i', 'got', 'him', 'because', 'he', 'seemed', 'so', 'one', '||dash||', 'dimensional', '||comma||', 'i', 'feel', 'misled', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "it's", 'neat', '||period||', 'you', "don't", 'hear', 'that', 'much', 'about', 'god', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'i', 'hear', 'things', '||period||', 'hey', '||comma||', 'so', 'sophie', 'gave', 'me', 'the', '||quotemark||', "it's", 'me', '||quotemark||', 'on', 'the', 'phone', 'today', '||period||', '||return||', '||return||', 'elaine:', '||quotemark||', "it's", 'me', '||questionmark||', '||quotemark||', "isn't", 'it', 'a', 'little', 'premature', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'so', '||period||', '||return||', '||return||', 'elaine:', 'hah', '||period||', "she's", 'not', 'a', '||quotemark||', 'me', '||quotemark||', '||period||', "i'm", 'a', '||quotemark||', 'me', '||quotemark||', '||period||', '||return||', '||return||', 'george:', "i'm", 'against', 'all', '||quotemark||', "it's", 'me', '||quotemark||', 's', '||period||', 'so', 'self', '||dash||', 'absorbed', 'and', 'egotistical', '||comma||', "it's", 'like', 'those', 'hip', 'musicians', 'with', 'their', 'complicated', 'shoes', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'got', 'gonorrhea', '||period||', '||return||', '||return||', 'elaine:', 'that', 'seems', 'about', 'right', '||period||', '||return||', '||return||', 'kramer:', "that's", 'what', 'they', 'gave', 'me', '||period||', '||return||', '||return||', 'george:', 'they', '||questionmark||', 'the', 'government', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||period||', "he's", 'pretending', "he's", 'got', 'gonorrhea', 'so', 'med', 'students', 'can', 'diagnose', 'it', '||period||', '||return||', '||return||', 'kramer:', 'and', "it's", 'a', 'waste', 'of', 'my', 'talent', '||period||', "it's", 'just', 'a', 'little', 'burning', '||period||', 'mickey', '||comma||', 'he', 'got', 'bacterial', 'meningitis', '||period||', '||return||', '||return||', 'george:', 'i', 'guess', 'there', 'are', 'no', 'small', 'diseases', '||comma||', 'only', 'small', 'actors', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'leaving', '||rightparen||', 'alright', "that's", 'it', 'for', 'me', '||period||', 'good', 'night', 'everybody', '||period||', '||return||', '||return||', 'elaine:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'showmanship', '||comma||', 'george', 'is', 'trying', 'to', 'get', 'out', 'on', 'a', 'high', 'note', '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', 'showmanship', '||period||', 'maybe', "that's", 'what', 'my', 'gonorrhea', 'is', 'missing', '||period||', '||return||', '||return||', 'jerry:', 'yes', '||exclammark||', 'step', 'into', 'that', 'spotlight', 'and', 'belt', 'that', 'gonorrhea', 'out', 'to', 'the', 'back', 'row', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'yes', 'i', 'will', '||exclammark||', "i'm", 'gonna', 'make', 'people', 'feel', 'my', 'gonorrhea', '||comma||', 'and', 'feel', 'the', 'gonorrhea', 'themselves', '||period||', '||return||', '||return||', 'student', '#1:', 'and', 'are', 'you', 'experiencing', 'any', 'discomfort', '||questionmark||', '||return||', '||return||', 'kramer:', 'just', 'a', 'little', 'burning', 'during', 'urination', '||period||', '||return||', '||return||', 'student', '#1:', 'okay', '||comma||', 'any', 'other', 'pain', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'haunting', 'memories', 'of', 'lost', 'love', '||period||', 'may', 'i', '||questionmark||', '||leftparen||', 'signals', 'to', 'mickey', '||rightparen||', 'lights', '||questionmark||', '||leftparen||', 'mickey', 'turns', 'down', 'the', 'lights', 'and', 'kramer', 'lights', 'a', 'cigar', '||rightparen||', 'our', 'eyes', 'met', 'across', 'the', 'crowded', 'hat', 'store', '||period||', 'i', '||comma||', 'a', 'customer', '||comma||', 'and', 'she', 'a', 'coquettish', 'haberdasher', '||period||', 'oh', '||comma||', 'i', 'pursued', 'and', 'she', 'withdrew', '||comma||', 'then', 'she', 'pursued', 'and', 'i', 'withdrew', '||comma||', 'and', 'so', 'we', 'danced', '||period||', 'i', 'burned', 'for', 'her', '||comma||', 'much', 'like', 'the', 'burning', 'during', 'urination', 'that', 'i', 'would', 'experience', 'soon', 'afterwards', '||period||', '||return||', '||return||', 'student', '#1:', 'gonorrhea', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'gonorrhea', '||exclammark||', '||return||', '||return||', 'jerry:', 'one', 'message', '||period||', 'hope', "it's", 'not', 'from', 'you', '||period||', '||return||', '||return||', 'answering', 'machine:', '||quotemark||', 'hey', 'jerry', '||comma||', "it's", 'me', '||period||', 'call', 'me', 'back', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'sophie', '||period||', '||return||', '||return||', 'george:', "she's", 'still', 'doing', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yep', '||period||', '||return||', '||return||', 'george:', 'alright', '||comma||', "i'll", 'tell', 'you', 'what', 'you', 'do', '||period||', 'you', 'call', 'her', 'back', 'and', 'give', 'her', 'the', '||quotemark||', "it's", 'me', '||quotemark||', '||comma||', 'heh', '||questionmark||', 'pull', 'the', 'old', 'switcheroo', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', "that's", 'a', '||quotemark||', "what's", 'good', 'for', 'the', 'goose', 'is', 'good', 'for', 'the', 'gander', '||quotemark||', '||period||', '||return||', '||return||', 'george:', 'what', 'the', 'hell', 'is', 'a', 'gander', '||comma||', 'anyway', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'picking', 'up', 'the', 'phone', 'and', 'dialing', '||rightparen||', "it's", 'a', 'goose', "that's", 'had', 'the', 'old', 'switcheroo', 'pulled', 'on', 'it', '||period||', 'hi', 'sophie', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'sophie:', 'hey', 'raef', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'george', '||rightparen||', 'she', 'thinks', "it's", 'someone', 'named', 'raef', '||period||', '||return||', '||return||', 'george:', 'good', '||comma||', 'let', 'her', 'think', 'it', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'into', 'the', 'phone', '||comma||', 'with', 'a', 'disguised', 'voice', '||rightparen||', 'so', '||comma||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'sophie:', 'not', 'a', 'lot', '||period||', '||return||', '||return||', 'george:', 'ask', 'about', 'you', '||comma||', 'ask', 'about', 'you', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'uh', '||comma||', 'how', 'are', 'things', 'with', 'jerry', '||questionmark||', '||return||', '||return||', 'sophie:', 'oh', '||comma||', 'i', 'really', 'like', 'him', 'but', '||comma||', 'well', '||comma||', 'i', 'still', "haven't", 'told', 'him', 'the', 'tractor', 'story', '||period||', '||return||', '||return||', 'jerry:', 'right', '||comma||', 'right', '||comma||', 'the', 'tractor', 'story', '||period||', '||return||', '||return||', 'sophie:', 'are', 'you', 'sick', '||comma||', 'raef', '||questionmark||', 'you', 'sound', 'kinda', 'funny', '||period||', '||return||', '||return||', 'jerry:', 'i', 'sound', 'funny', '||questionmark||', '||return||', '||return||', 'george:', 'abort', '||exclammark||', 'abort', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', 'i', 'better', 'get', 'to', 'a', 'doctor', '||comma||', 'bye', '||period||', '||leftparen||', 'hangs', 'up', '||rightparen||', 'that', 'was', 'close', '||exclammark||', 'what', 'drives', 'me', 'to', 'take', 'chances', 'like', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'that', 'was', 'very', 'real', '||period||', '||return||', '||return||', 'jerry:', 'she', 'said', "there's", 'some', 'tractor', 'story', 'that', 'she', "hasn't", 'told', 'me', 'about', '||period||', '||return||', '||return||', 'george:', 'woah', '||comma||', 'back', 'it', 'up', '||comma||', 'back', 'it', 'up', '||period||', 'beep', '||comma||', 'beep', '||comma||', 'beep', '||period||', 'tractor', 'story', '||questionmark||', '||return||', '||return||', 'jerry:', 'beep', '||comma||', 'beep', '||comma||', 'beep', '||questionmark||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'where', 'do', 'you', 'wanna', 'eat', '||questionmark||', '||return||', '||return||', 'puddy:', 'feels', 'like', 'an', "arby's", 'night', '||period||', '||return||', '||return||', 'elaine:', "arby's", '||period||', 'beef', 'and', 'cheese', 'and', 'do', 'you', 'believe', 'in', 'god', '||questionmark||', '||return||', '||return||', 'puddy:', 'yes', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'so', '||comma||', "you're", 'pretty', 'religious', '||questionmark||', '||return||', '||return||', 'puddy:', "that's", 'right', '||period||', '||return||', '||return||', 'elaine:', 'so', 'is', 'it', 'a', 'problem', 'that', "i'm", 'not', 'really', 'religious', '||questionmark||', '||return||', '||return||', 'puddy:', 'not', 'for', 'me', '||period||', '||return||', '||return||', 'elaine:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'puddy:', "i'm", 'not', 'the', 'one', 'going', 'to', 'hell', '||period||', '||return||', '||return||', 'george:', 'you', 'know', 'what', 'i', 'think', '||questionmark||', 'i', 'bet', 'she', 'stole', 'a', 'tractor', '||period||', '||return||', '||return||', 'jerry:', 'no', "one's", 'stealing', 'a', 'tractor', '||comma||', "it's", 'a', 'five', '||dash||', 'mile', '||dash||', 'an', '||dash||', 'hour', 'getaway', '||period||', "we're", 'dancing', 'around', 'the', 'obvious', '||comma||', "it's", 'gotta', 'be', 'disfigurement', '||period||', '||return||', '||return||', 'george:', 'does', 'she', 'walk', 'around', 'holding', 'a', 'pen', 'she', 'never', 'seems', 'to', 'need', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'she', 'looks', 'completely', 'normal', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', 'okay', '||comma||', 'here', 'it', 'is', '||comma||', 'i', 'got', 'it', '||period||', 'she', 'lost', 'her', 'thumbs', 'in', 'a', 'tractor', 'accident', 'and', 'they', 'grafted', 'her', 'big', 'toes', 'on', '||period||', 'they', 'do', 'it', 'every', 'day', '||period||', '||return||', '||return||', 'jerry:', 'you', 'think', "she's", 'got', 'toes', 'for', 'thumbs', '||questionmark||', '||return||', '||return||', 'george:', "how's", 'her', 'handshake', '||questionmark||', 'a', 'little', 'firm', '||comma||', "isn't", 'it', '||questionmark||', 'maybe', 'a', 'little', 'too', 'firm', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'hands', 'a', 'little', 'smelly', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', 'do', 'i', 'seek', 'your', 'counsel', '||questionmark||', '||return||', '||return||', 'elaine:', 'well', "i'm", 'going', 'to', 'hell', '||period||', '||return||', '||return||', 'jerry:', 'that', 'seems', 'about', 'right', '||period||', '||return||', '||return||', 'elaine:', 'according', 'to', 'puddy', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'have', 'you', 'heard', 'the', 'one', 'about', 'the', 'guy', 'in', 'hell', 'with', 'the', 'coffee', 'and', 'the', 'doughtnuts', 'and', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'in', 'the', 'mood', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'a', 'passing', 'waitress', '||rightparen||', "i'll", 'have', 'some', 'coffee', 'and', 'a', 'doughnut', '||period||', '||return||', '||return||', 'jerry:', 'what', 'do', 'you', 'care', '||questionmark||', 'you', "don't", 'believe', 'in', 'hell', '||period||', '||return||', '||return||', 'elaine:', 'i', 'know', '||comma||', 'but', 'he', 'does', '||period||', '||return||', '||return||', 'jerry:', 'so', "it's", 'more', 'of', 'a', 'relationship', 'problem', 'than', 'the', 'final', 'destination', 'of', 'your', 'soul', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'relationships', 'are', 'very', 'important', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'you', 'can', 'strike', 'one', 'up', 'with', 'the', 'prince', 'of', 'darkness', 'as', 'you', 'burn', 'for', 'all', 'eternity', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'the', 'waitress', 'bringing', 'his', 'doughnut', '||rightparen||', 'and', 'a', 'slice', 'of', "devil's", 'food', 'cake', '||period||', '||return||', '||return||', 'george:', 'hey', '||period||', 'where', 'is', 'everyone', '||questionmark||', '||return||', '||return||', 'kruger:', "they're", 'all', 'off', 'the', 'project', '||period||', 'they', 'were', 'boring', '||period||', 'george', '||comma||', 'you', 'are', 'my', 'main', 'man', '||period||', '||return||', '||return||', 'george:', 'i', 'am', '||questionmark||', '||return||', '||return||', 'kruger:', 'i', "don't", 'know', 'what', 'it', 'is', '||comma||', 'i', "can't", 'put', 'my', 'finger', 'on', 'it', '||comma||', 'but', 'lately', 'you', 'have', 'just', 'seemed', "'on'", '||period||', 'and', 'you', 'always', 'leave', 'me', 'wanting', 'more', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'huge', 'project', 'involving', 'lots', 'of', 'numbers', 'and', 'papers', 'and', 'folders', '||period||', '||return||', '||return||', 'kruger:', 'ah', '||comma||', "i'm", 'not', 'too', 'worried', 'about', 'it', '||period||', "let's", 'get', 'started', '||period||', '||return||', '||return||', 'george:', 'okay', '||period||', '||return||', '||return||', 'kruger:', 'george', '||questionmark||', 'check', 'it', 'out', '||period||', '||leftparen||', 'he', 'begins', 'to', 'spin', 'around', 'in', 'his', 'chair', '||rightparen||', 'three', 'times', 'around', '||comma||', 'no', 'feet', '||period||', '||return||', '||return||', 'george:', 'and', '||questionmark||', '||return||', '||return||', 'kruger:', 'all', 'me', '||period||', '||return||', '||return||', 'dr', '||period||', 'wexler:', 'alright', '||comma||', 'and', 'here', 'are', 'you', 'ailments', 'for', 'this', 'week', '||period||', 'by', 'the', 'way', '||comma||', 'mr', '||period||', 'kramer', '||comma||', 'you', 'were', 'excellent', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'mickey:', 'cirrhosis', 'of', 'the', 'liver', 'with', 'jaundice', '||exclammark||', 'alright', 'i', 'get', 'to', 'wear', 'make', '||dash||', 'up', '||exclammark||', 'what', 'did', 'you', 'get', '||questionmark||', '||return||', '||return||', 'kramer:', 'gonorrhea', '||questionmark||', 'excuse', 'me', '||comma||', 'i', 'think', "there's", 'been', 'a', 'mistake', '||comma||', 'see', '||comma||', 'i', 'had', 'gonorrhea', 'last', 'week', '||period||', '||return||', '||return||', 'dr', '||period||', 'wexler:', 'oh', '||comma||', "it's", 'no', 'mistake', '||period||', 'we', 'loved', 'what', 'you', 'did', 'with', 'it', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'believe', 'this', '||comma||', "i'm", 'being', 'typecast', '||period||', '||return||', '||return||', 'sophie:', 'i', 'move', 'my', 'knight', '||period||', '||period||', '||period||', 'here', '||period||', 'check', '||period||', '||return||', '||return||', 'jerry:', 'they', 'should', 'update', 'these', 'pieces', '||comma||', 'nobody', 'rides', 'horses', 'anymore', '||period||', 'maybe', 'they', 'should', 'change', 'it', 'to', 'a', 'tractor', '||period||', '||return||', '||return||', 'sophie:', 'jerry', '||comma||', 'are', 'you', 'embarrassed', 'that', "you're", 'losing', '||questionmark||', '||return||', '||return||', 'jerry:', 'losing', '||questionmark||', 'you', 'know', '||comma||', 'yesterday', 'i', 'lost', 'control', 'of', 'my', 'car', '||comma||', 'almost', 'bought', 'the', 'farm', '||period||', '||return||', '||return||', 'sophie:', 'bought', 'the', 'farm', '||questionmark||', '||return||', '||return||', 'jerry:', 'tractor', '||exclammark||', '||return||', '||return||', 'sophie:', 'this', 'is', 'an', 'odd', 'side', 'of', 'you', '||comma||', 'jerry', '||period||', 'i', 'feel', 'uncomfortable', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', "don't", 'go', '||period||', "let's", 'thumb', 'wrestle', '||period||', '||return||', '||return||', 'george:', 'a', 'scar', '||questionmark||', '||return||', '||return||', 'jerry:', 'a', 'big', 'long', 'scar', 'where', 'her', 'leg', 'would', 'dangle', 'when', "she's", 'riding', 'a', '||period||', '||period||', '||period||', '||questionmark||', '||return||', '||return||', 'george:', 'a', 'tractor', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'sure', "she's", 'a', 'little', 'self', '||dash||', 'conscious', 'and', "doesn't", 'like', 'to', 'talk', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'i', "don't", 'see', "why's", 'she', 'more', 'self', '||dash||', 'conscious', 'about', 'that', 'than', 'her', 'toe', 'thumbs', '||period||', '||return||', '||return||', 'jerry:', 'she', "doesn't", 'have', 'toe', 'thumbs', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'if', 'she', 'keeps', 'horsing', 'around', 'with', 'that', 'tractor', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'alright', '||period||', 'so', "how's", 'the', 'two', '||dash||', 'man', 'operation', 'at', 'kruger', '||questionmark||', '||return||', '||return||', 'george:', 'two', '||dash||', 'man', '||questionmark||', "it's", 'all', 'me', '||period||', 'kruger', "doesn't", 'do', 'anything', '||semicolon||', 'disappears', 'for', 'hours', 'at', 'a', 'time', '||comma||', 'gives', 'me', 'fake', 'excuses', '||period||', 'this', 'afternoon', 'i', 'found', 'him', 'with', 'sleep', 'creases', 'on', 'his', 'face', '||period||', 'the', 'only', 'reason', 'i', 'got', 'out', 'to', 'get', 'a', 'bite', 'today', 'was', 'that', 'he', 'finally', 'promised', 'to', 'buckle', 'down', 'and', 'do', 'some', 'actual', 'work', '||period||', '||leftparen||', 'turning', 'around', '||comma||', 'george', 'sees', 'mr', '||period||', 'kruger', 'at', 'a', 'booth', 'eating', 'a', 'piece', 'of', 'cake', '||rightparen||', 'oh', '||comma||', 'i', "don't", 'believe', 'this', '||period||', 'this', 'is', 'what', 'i', 'have', 'to', 'put', 'up', 'with', '||comma||', 'jerry', '||period||', '||leftparen||', 'he', 'walks', 'over', '||rightparen||', 'mr', '||period||', 'kruger', '||questionmark||', 'who', 'said', 'he', 'was', 'going', 'to', 'do', 'some', 'actual', 'work', 'today', '||questionmark||', 'who', '||questionmark||', '||return||', '||return||', 'kruger:', "i'm", 'not', 'too', 'worried', 'about', 'it', '||period||', '||return||', '||return||', 'george:', 'well', 'i', 'am', '||period||', "couldn't", 'you', 'try', 'to', 'go', 'through', 'some', 'of', 'that', 'stuff', 'i', 'put', 'in', 'your', 'shoebox', '||questionmark||', '||return||', '||return||', 'kruger:', 'alright', '||comma||', 'alright', "i'm", 'going', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'huh', '||dash||', 'ho', '||exclammark||', 'have', 'you', 'ever', 'seen', 'anything', 'like', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'never', '||period||', '||return||', '||return||', 'puddy:', 'elaine', '||comma||', 'they', 'forgot', 'to', 'deliver', 'your', 'paper', 'today', '||period||', 'why', "don't", 'you', 'just', 'grab', 'that', 'one', '||period||', '||return||', '||return||', 'elaine:', "'cause", 'that', 'belongs', 'to', 'mr', '||period||', 'potato', 'guy', '||comma||', "that's", 'his', '||period||', '||return||', '||return||', 'puddy:', "c'mon", '||comma||', 'get', 'it', '||period||', '||return||', '||return||', 'elaine:', 'well', 'if', 'you', 'want', 'it', '||comma||', 'you', 'get', 'it', '||period||', '||return||', '||return||', 'puddy:', 'sorry', '||comma||', 'thou', 'shalt', 'not', 'steal', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'but', "it's", 'ok', 'for', 'me', '||questionmark||', '||return||', '||return||', 'puddy:', 'what', 'do', 'you', 'care', '||comma||', 'you', 'know', 'where', "you're", 'going', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||comma||', 'that', 'is', 'it', '||exclammark||', 'i', "can't", 'live', 'like', 'this', '||period||', '||return||', '||return||', 'puddy:', 'nah', '||period||', '||return||', '||return||', 'elaine:', "c'mon", '||period||', '||return||', '||return||', 'puddy:', 'alright', '||comma||', 'what', 'did', 'i', 'do', '||questionmark||', '||return||', '||return||', 'elaine:', 'david', '||comma||', "i'm", 'going', 'to', 'hell', '||exclammark||', 'the', 'worst', 'place', 'in', 'the', 'world', '||exclammark||', 'with', 'devils', 'and', 'those', 'caves', 'and', 'the', 'ragged', 'clothing', '||exclammark||', 'and', 'the', 'heat', '||exclammark||', 'my', 'god', '||comma||', 'the', 'heat', '||exclammark||', 'i', 'mean', '||comma||', 'what', 'do', 'you', 'think', 'about', 'all', 'that', '||questionmark||', '||return||', '||return||', 'puddy:', 'gonna', 'be', 'rough', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'you', 'should', 'be', 'trying', 'to', 'save', 'me', '||exclammark||', '||return||', '||return||', 'puddy:', "don't", 'boss', 'me', '||exclammark||', 'this', 'is', 'why', "you're", 'going', 'to', 'hell', '||period||', '||return||', '||return||', 'elaine:', 'i', 'am', 'not', 'going', 'to', 'hell', 'and', 'if', 'you', 'think', "i'm", 'going', 'to', 'hell', '||comma||', 'you', 'should', 'care', 'that', "i'm", 'going', 'to', 'hell', 'even', 'though', 'i', 'am', 'not', '||period||', '||return||', '||return||', 'puddy:', 'you', 'stole', 'my', 'jesus', 'fish', '||comma||', "didn't", 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "that's", 'right', '||exclammark||', '||return||', '||return||', 'mickey:', 'oh', '||comma||', 'my', 'liver', '||exclammark||', 'why', 'did', 'i', 'drink', 'all', 'those', 'years', '||questionmark||', 'why', 'did', 'i', 'look', 'for', 'love', 'in', 'a', 'bottle', '||questionmark||', '||return||', '||return||', 'dr', '||period||', 'wexler:', 'mr', '||period||', 'kramer', '||questionmark||', "you're", 'up', '||period||', '||return||', '||return||', 'mickey:', 'wait', 'a', 'minute', '||period||', 'you', 'are', 'doing', 'gonorrhea', '||comma||', "aren't", 'you', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "we'll", 'see', '||period||', '||return||', '||return||', 'student', '#2:', 'so', '||comma||', 'what', 'seems', 'to', 'be', 'bothering', 'you', 'today', '||comma||', 'mr', '||period||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'pulling', 'a', 'liquor', 'bottle', 'from', 'his', 'jacket', 'pocket', '||rightparen||', 'well', '||comma||', 'i', 'guess', 'it', 'started', 'about', 'twenty', 'years', 'ago', 'when', 'i', 'got', 'back', 'from', 'viet', 'nam', '||comma||', 'and', 'this', 'was', 'the', 'only', 'friend', 'i', 'had', 'left', '||period||', '||return||', '||return||', 'mickey:', 'hey', '||exclammark||', "that's", 'my', 'cirrhosis', '||exclammark||', "he's", 'stealing', 'my', 'cirrhosis', '||exclammark||', '||leftparen||', 'he', 'jumps', 'kramer', '||rightparen||', 'you', 'wanna', 'be', 'sick', '||questionmark||', "i'll", 'make', 'you', 'sick', '||period||', '||return||', '||return||', 'student', '#2:', 'cirrhosis', 'of', 'the', 'liver', 'and', 'pcp', 'addiction', '||questionmark||', '||return||', '||return||', 'father', 'curtis:', 'let', 'me', 'see', 'if', 'i', 'understand', 'this', '||period||', "you're", 'concerned', 'that', 'he', "isn't", 'concerned', 'that', "you're", 'going', 'to', 'hell', '||period||', 'and', 'you', 'feel', 'that', "she's", 'too', 'bossy', '||period||', '||return||', '||return||', 'elaine', '&', 'puddy:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'father', 'curtis:', 'well', '||comma||', 'oftentimes', 'in', 'cases', 'of', 'inter', '||dash||', 'faith', 'marriages', '||comma||', 'couples', 'have', 'difficulty', '||dash||', '||dash||', '||return||', '||return||', 'father', 'curtis:', 'you', "aren't", '||questionmark||', '||return||', '||return||', 'puddy:', 'no', '||period||', '||return||', '||return||', 'elaine:', "we're", 'just', '||comma||', 'you', 'know', '||comma||', 'having', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'father', 'curtis:', 'oh', '||comma||', 'well', 'then', "it's", 'simple', '||period||', "you're", 'both', 'going', 'to', 'hell', '||period||', '||return||', '||return||', 'puddy:', 'no', 'way', '||comma||', 'this', 'is', 'bogus', '||comma||', 'man', '||exclammark||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'thank', 'you', 'father', '||period||', '||return||', '||return||', 'father', 'curtis:', 'oh', '||comma||', 'did', 'you', 'hear', 'the', 'one', 'about', 'the', 'new', 'guy', 'in', 'hell', "who's", 'talkng', 'to', 'the', 'devil', 'by', 'the', 'coffee', 'machine', '||questionmark||', '||return||', '||return||', 'puddy:', "i'm", 'really', 'not', 'in', 'the', 'mood', '||comma||', "i'm", 'going', 'to', 'hell', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'lighten', 'up', '||period||', "it'll", 'only', 'feel', 'like', 'an', 'eternity', '||period||', '||return||', '||return||', 'sophie:', 'you', 'know', '||comma||', 'jerry', '||comma||', "there's", 'this', 'thing', 'that', 'i', "haven't", 'told', 'you', 'about', '||period||', 'see', '||comma||', 'there', 'was', 'this', 'tractor', 'and', '||comma||', 'oh', 'boy', '||comma||', 'this', 'is', 'really', 'difficult', '||period||', '||return||', '||return||', 'jerry:', 'sophie', '||comma||', "it's", 'me', '||period||', 'i', 'know', 'about', 'the', 'tractor', 'story', 'and', "i'm", 'fine', 'with', 'it', '||period||', '||return||', '||return||', 'sophie:', 'how', 'could', 'you', 'know', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'putting', 'his', 'finger', 'to', "sophie's", 'lips', '||comma||', 'then', 'to', 'his', 'own', '||comma||', 'then', 'back', 'to', "sopie's", '||rightparen||', 'shh', '||period||', 'shh', '||period||', 'shh', '||period||', "it's", 'not', 'important', '||period||', "what's", 'important', 'is', "i'm", 'not', 'gonna', 'let', 'a', 'little', 'thing', 'like', 'that', 'ruin', 'what', 'could', 'be', 'a', 'very', 'long', '||dash||', 'term', 'and', 'meaningful', 'relationship', '||period||', '||return||', '||return||', 'kramer:', '||period||', '||period||', '||period||', 'i', "didn't", 'say', 'that', '||comma||', 'no', '||period||', '||return||', '||return||', 'mickey:', 'you', 'gave', 'me', 'gonorrhea', '||comma||', 'you', "didn't", 'even', 'tell', 'me', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "i'm", 'sorry', '||period||', 'i', 'gave', 'you', 'gonorrhea', 'because', 'i', 'thought', "you'd", 'have', 'fun', 'with', 'it', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'hey', '||exclammark||', "i'm", 'with', 'someone', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'hello', '||period||', '||return||', '||return||', 'sophie:', 'no', '||comma||', 'i', 'understand', '||period||', 'this', 'could', 'be', 'a', 'tough', 'thing', 'to', 'deal', 'with', '||period||', 'the', 'important', 'thing', 'is', 'that', 'you', 'have', 'a', 'partner', "who's", 'supportive', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'mickey', '||rightparen||', 'you', 'know', '||questionmark||', "she's", 'right', '||period||', '||return||', '||return||', 'sophie:', 'unfortunately', '||comma||', 'i', "didn't", 'have', 'a', 'partner', '||period||', 'i', 'got', 'gonorrhea', 'from', 'a', 'tractor', '||period||', '||return||', '||return||', 'jerry:', 'you', 'got', 'gonorrhea', 'from', 'a', 'tractor', '||questionmark||', '||questionmark||', 'and', 'you', 'call', '*that*', 'your', 'tractor', 'story', '||questionmark||', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', "can't", 'get', 'it', 'from', 'that', '||period||', '||return||', '||return||', 'sophie:', 'but', 'i', 'did', '||period||', 'my', 'boyfriend', 'said', 'i', 'got', 'gonorrhea', 'from', 'riding', 'the', 'tractor', 'in', 'my', 'bathing', 'suit', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'walking', 'out', '||rightparen||', 'alright', '||comma||', "that's", 'it', 'for', 'me', '||period||', "you've", 'been', 'great', '||period||', 'goodnight', 'everybody', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'mind', 'helping', 'me', 'out', 'with', 'some', 'of', 'this', 'stuff', '||questionmark||', '||exclammark||', '||questionmark||', '||return||', '||return||', 'kruger:', 'you', 'seem', 'like', "you've", 'got', 'a', 'pretty', 'good', 'handle', 'on', 'it', '||period||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'i', "don't", '||exclammark||', "don't", 'you', 'even', 'care', '||questionmark||', 'this', 'is', 'your', 'company', '||exclammark||', "it's", 'your', 'name', 'on', 'the', 'outside', 'of', 'the', 'building', '||exclammark||', 'speaking', 'of', 'which', '||comma||', 'the', "'r'", 'fell', 'off', 'and', 'all', 'it', 'says', 'now', 'is', 'k', '||dash||', 'uger', '||exclammark||', '||return||', '||return||', 'kruger:', 'k', '||dash||', 'uger', '||comma||', 'that', 'sounds', 'like', 'one', 'of', 'those', 'old', '||dash||', 'time', 'car', 'horns', '||comma||', 'huh', '||questionmark||', 'k', '||dash||', 'uger', '||exclammark||', 'k', '||dash||', 'uger', '||exclammark||', '||return||', '||return||', 'george:', 'huh', '||dash||', 'ho', '||exclammark||', 'oh', '||exclammark||', 'you', 'are', 'too', 'much', '||comma||', 'mr', '||period||', 'kruger', '||exclammark||', 'too', 'much', '||exclammark||', '||return||', '||return||', 'kruger:', '||leftparen||', 'getting', 'up', 'to', 'leave', '||rightparen||', 'thank', 'you', 'george', '||comma||', "you've", 'been', 'great', '||period||', "that's", 'it', 'for', 'me', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', '||comma||', "you're", 'not', 'going', 'out', 'on', 'a', 'high', 'note', 'with', 'me', 'mr', '||period||', 'kruger', '||exclammark||', '||return||', '||return||', 'kruger:', "it's", 'k', '||dash||', 'uger', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'no', '||exclammark||', '||return||', '||return||', 'kruger:', 'goodnight', 'everybody', '||exclammark||', '||return||', '||return||', 'dedication:', 'in', 'memory', 'of', 'our', 'friend', '||comma||', 'lloyd', 'bridges', '||period||', '||return||', '||return||', '[setting:', 'bookstore]', '||return||', '||return||', 'george:', 'i', 'read', 'somewhere', 'that', 'this', "brentano's", 'is', 'the', 'place', 'to', 'meet', 'girls', 'in', 'new', 'york', '||period||', '||return||', '||return||', 'jerry:', 'first', 'it', 'was', 'the', 'health', 'club', '||comma||', 'then', 'the', 'supermarket', '||comma||', 'now', 'the', 'bookstore', '||period||', 'they', 'could', 'put', 'it', 'anywhere', 'they', 'want', '||comma||', 'no', "one's", "meetin'", 'anybody', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'look', 'at', 'all', 'these', 'pagodas', '||comma||', 'huh', '||questionmark||', 'i', 'gotta', 'get', 'over', 'to', 'hong', 'kong', 'before', 'it', 'all', 'goes', 'back', 'to', 'china', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'you', 'better', 'hurry', '||period||', '||return||', '||return||', 'george:', "i'm", 'gonna', 'hit', 'the', 'head', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'boy', '||comma||', 'look', 'at', 'this', '||period||', 'hong', "kong's", 'outlawed', 'the', 'rickshaw', '||period||', 'see', '||comma||', 'i', 'always', 'thought', 'those', 'would', 'be', 'perfect', 'for', 'new', 'york', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'yes', '||period||', 'the', 'city', 'needs', 'more', 'slow', '||dash||', 'moving', 'wicker', 'vehicles', '||period||', '||return||', '||return||', 'kramer:', 'hmm', '||comma||', "elaine's", 'been', 'to', 'hong', 'kong', '||period||', 'i', 'should', 'give', 'her', 'a', 'call', '||period||', '||return||', '||return||', 'jerry:', "she's", 'at', 'that', 'annual', 'peterman', 'party', 'tonight', '||period||', 'you', 'know', 'the', 'one', 'she', 'danced', 'at', 'last', 'year', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'remembering', '||rightparen||', 'no', '||comma||', 'that', "wasn't", 'dancing', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', 'hey', '||comma||', "there's", 'leo', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||questionmark||', "who's", 'leo', '||questionmark||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||period||', 'right', '||period||', 'uncle', '||comma||', 'leo', '||period||', 'forgot', 'his', 'first', 'name', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'did', 'i', 'just', 'see', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'well', '||comma||', 'that', 'ougta', 'keep', 'you', 'busy', 'for', 'a', 'few', 'days', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', '[setting:', 'the', 'annual', 'peterman', 'party]', '||return||', '||return||', 'walter:', '||leftparen||', 'joking', 'around', 'with', 'her', '||rightparen||', 'so', '||comma||', 'elaine', '||period||', '||period||', 'are', 'you', 'going', 'to', 'dance', 'this', 'year', '||questionmark||', '||return||', '||return||', 'elaine:', 'maybe', '||period||', '||period||', 'all', 'over', 'your', 'face', '||exclammark||', '||return||', '||return||', 'waiter:', 'if', 'you', 'do', 'dance', '||comma||', 'the', 'cooks', 'want', 'to', 'know', '||dash||', 'so', 'they', 'can', 'be', 'brought', 'out', 'of', 'the', 'kitchen', '||period||', 'they', 'missed', 'it', 'last', 'year', '||period||', '||return||', '||return||', 'peterman:', 'my', 'friends', '||comma||', 'a', 'toast', '||period||', 'as', 'the', 'wolly', '||dash||', 'haired', 'melanasians', 'of', 'papua', '||comma||', 'new', 'guinea', 'once', 'said', '||comma||', '||leftparen||', 'makes', 'a', 'series', 'of', 'clicking', 'and', 'popping', 'sounds', '||period||', 'the', 'music', 'starts', 'up', '||rightparen||', 'all', 'right', '||exclammark||', "who's", 'dancing', '||questionmark||', '||leftparen||', 'no', 'one', 'makes', 'a', 'gesture', 'that', 'they', 'intend', 'to', 'dance', '||rightparen||', 'no', 'one', '||questionmark||', 'alright', '||comma||', "i'll", 'just', 'have', 'to', 'get', 'things', 'started', '||period||', '||leftparen||', 'grabs', 'a', 'female', 'employee', '||comma||', 'and', 'starts', 'dancing', 'with', 'her', '||period||', 'the', 'crowd', 'is', 'impressed', '||rightparen||', '||return||', '||return||', 'zach:', 'hi', '||comma||', "i'm", 'zach', '||period||', '||return||', '||return||', 'elaine:', 'hi', '||comma||', "i'm", 'miserable', '||period||', '||leftparen||', 'they', 'both', 'laugh', '||rightparen||', '||return||', '||return||', '[setting:', 'bookstore]', '||return||', '||return||', 'manager:', 'excuse', 'me', '||comma||', 'sir', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'acting', 'innocent', '||rightparen||', "i'm", 'all', 'set', '||period||', '||return||', '||return||', 'manager:', '||leftparen||', 'pointing', '||rightparen||', 'did', 'you', 'take', 'that', 'book', 'with', 'you', 'into', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'not', 'sure', 'what', 'the', 'answer', 'should', 'be', '||rightparen||', 'what', 'do', 'you', 'want', 'to', 'hear', '||questionmark||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'george:', 'they', 'made', 'me', 'buy', 'it', '||period||', '||period||', 'a', 'hundred', 'bucks', 'this', 'thing', 'cost', 'me', '||period||', '||leftparen||', 'gesturing', 'to', 'the', 'book', '||rightparen||', 'how', 'dare', 'they', '||questionmark||', '||exclammark||', 'i', 'got', 'news', 'for', 'you', '||comma||', 'if', 'it', "wasn't", 'for', 'the', 'toilet', '||comma||', 'there', 'would', 'be', 'no', 'books', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||period||', 'i', 'understand', 'guttenberg', 'used', 'to', 'spend', 'a', 'lot', 'of', 'time', 'in', 'there', '||period||', '||return||', '||return||', 'george:', "they're", 'selling', 'coffee', '||comma||', 'bran', 'muffins', '||period||', '||period||', "you're", 'surrounded', 'by', 'reading', 'material', '||period||', "it's", 'entrapment', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'reading', 'the', 'cover', 'of', 'the', 'book', 'george', 'was', 'forced', 'to', 'buy', '||rightparen||', "'french", 'impressionist', "paintings'", '||questionmark||', '||return||', '||return||', 'george:', 'i', 'find', 'the', 'soothing', 'pastorial', 'images', 'very', 'conduc', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'cutting', 'him', 'off', '||rightparen||', 'thank', 'you', 'very', 'much', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'gonna', 'go', 'back', 'there', 'later', 'and', 'return', 'it', 'when', "there's", 'different', 'people', 'working', '||period||', '||period||', 'you', 'want', 'to', 'catch', 'a', 'movie', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "can't", '||period||', "i'm", 'meeting', 'uncle', 'leo', '||period||', 'i', 'saw', 'him', 'shoplifting', 'at', 'the', 'bookstore', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'praising', "leo's", 'stealing', '||rightparen||', 'alright', '||comma||', 'leo', '||exclammark||', "stickin'", 'it', 'to', 'the', 'man', '||exclammark||', '||return||', '||return||', 'jerry:', 'sleeping', 'in', 'the', 'caragain', '||questionmark||', '||return||', '||return||', 'elaine:', 'cocktail', 'flu', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'remembering', '||rightparen||', 'oh', '||comma||', 'right', '||period||', 'the', 'big', 'party', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', '||comma||', 'uh', '||comma||', "didn't", 'dance', 'again', '||comma||', 'did', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'angered', '||rightparen||', 'no', '||comma||', 'i', 'found', 'a', 'better', 'way', 'to', 'humiliate', 'myself', '||period||', 'there', 'was', 'this', 'guy', '||comma||', 'and', 'we', 'had', 'a', 'few', 'too', 'many', '||period||', '||period||', '||return||', '||return||', 'george:', 'you', 'went', 'home', 'with', 'him', '||questionmark||', '||return||', '||return||', 'elaine:', 'worse', '||period||', 'we', 'made', 'out', 'at', 'the', 'table', 'like', 'our', 'plane', 'was', 'going', 'down', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'rubbing', 'it', 'in', '||rightparen||', 'ah', '||comma||', 'the', 'drunken', 'make', '||dash||', 'out', '||period||', 'an', 'office', 'classic', '||period||', 'did', 'you', 'end', 'up', 'xeroxing', 'anything', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'gives', 'jerry', 'a', 'look', '||rightparen||', 'do', 'you', 'know', 'how', 'embarrassing', 'this', 'is', 'to', 'someone', 'in', 'my', 'position', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', "what's", 'your', 'position', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'am', 'an', 'associate', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'waitress:', 'yeah', '||comma||', 'me', 'too', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'god', '||period||', 'why', 'did', 'i', 'do', 'this', '||questionmark||', 'now', "i'm", 'the', 'office', 'skank', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'unless', 'you', 'tell', 'everybody', "you're", 'dating', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'liking', 'the', 'idea', '||rightparen||', 'ohh', '||period||', '||period||', 'right', '||period||', 'cause', 'if', "we're", 'dating', '||comma||', 'what', 'everyone', 'saw', 'was', 'just', 'a', 'beautiful', 'moment', 'between', 'two', 'lovers', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jokingly', 'rubbing', 'it', 'in', '||rightparen||', 'as', 'opposed', 'to', 'a', 'spirited', 'bout', 'of', 'skanko', '||dash||', 'roman', 'wrestling', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'bravo', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', 'hey', '||period||', 'can', 'i', 'fix', 'you', 'fellas', 'some', 'drinks', 'and', 'sandwiches', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'taking', 'his', 'offer', 'seriously', '||rightparen||', 'no', '||comma||', "we've", 'already', 'eaten', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'gesturing', 'to', 'dishes', 'and', 'silverware', 'on', 'the', 'table', '||rightparen||', 'but', 'you', 'can', 'clear', 'some', 'of', 'this', 'stuff', 'out', 'of', 'the', 'way', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'check', 'this', 'out', '||period||', '||leftparen||', 'pointing', 'at', 'some', 'papers', 'on', 'the', 'table', '||rightparen||', 'remember', 'my', 'idea', 'about', 'rickshaws', 'in', 'new', 'youk', '||questionmark||', 'well', '||comma||', "we're", 'gonna', 'make', 'it', 'happen', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'jokingly', 'trying', 'to', 'be', 'skeptical', '||rightparen||', 'no', '||comma||', "you're", 'not', '||period||', '||return||', '||return||', 'kramer:', 'newman', '||comma||', 'he', 'knows', 'a', 'guy', 'in', 'the', 'hong', 'kong', 'post', 'office', '||period||', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'still', 'skeptical', '||rightparen||', 'no', '||comma||', 'he', "doesn't", '||period||', '||return||', '||return||', 'newman:', "he's", 'shipping', 'us', 'a', 'rickshaw', '||period||', 'it', "can't", 'miss', '||exclammark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'it', 'can', '||period||', '||return||', '||return||', 'kramer:', "we'll", 'start', 'out', 'with', 'one', '||comma||', 'and', 'they', 'when', 'it', 'catches', 'on', '||comma||', "we're", 'gonna', 'have', 'a', 'whole', 'fleet', '||exclammark||', '||return||', '||return||', 'newman:', "it's", 'the', 'romance', 'of', 'the', 'handsome', 'cab', 'without', 'the', 'guilt', 'or', 'dander', 'of', 'the', 'equine', '||period||', '||return||', '||return||', 'jerry:', 'so', '||comma||', "who's", 'gonna', 'pull', 'this', 'thing', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'newman', '||rightparen||', 'well', '||comma||', 'i', 'just', 'assumed', 'you', 'would', '||period||', '||return||', '||return||', 'newman:', 'yeah', '||comma||', 'but', 'i', 'though', '||dash||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stopping', 'his', 'thought', '||rightparen||', 'da', '||dash||', 'da', '||dash||', 'da', '||dash||', 'da', 'no', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'extremely', 'happy', 'about', 'kramer', 'and', "newman's", 'dilemma', '||rightparen||', 'my', '||comma||', "isn't", 'this', 'an', 'awkward', 'moment', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'brainstorming', '||rightparen||', 'what', 'about', 'the', 'homeless', '||questionmark||', '||return||', '||return||', 'newman:', "can't", 'we', 'worry', 'about', 'them', 'later', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'explaining', '||rightparen||', 'to', 'pull', 'the', 'rickshaw', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'pondering', "kramer's", 'plan', 'out', 'loud', '||rightparen||', 'they', 'do', 'have', 'an', 'intimate', 'knowledge', 'of', 'the', 'street', '||period||', '||period||', '||return||', '||return||', 'kramer:', "they're", 'always', "walkin'", 'around', 'the', 'city', '||period||', 'why', 'not', 'just', 'strap', 'something', 'to', 'them', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcastic', '||rightparen||', 'now', '||comma||', "that's", 'the', 'first', 'sensible', 'idea', "i've", 'heard', 'all', 'day', '||period||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'leo:', 'jerry', '||comma||', 'hello', '||exclammark||', '||leftparen||', 'sits', 'down', '||rightparen||', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'leo', '||comma||', "how's", 'everything', '||questionmark||', 'you', "doin'", 'okay', '||questionmark||', '||return||', '||return||', 'leo:', 'i', 'still', 'have', 'the', 'ringing', 'in', 'the', 'ears', '||period||', 'sounds', 'like', 'the', 'phone', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shrugging', 'his', 'problems', 'off', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', 'but', 'what', 'about', 'money', '||questionmark||', 'are', 'you', 'strapped', '||questionmark||', 'do', 'you', 'need', 'a', 'little', '||questionmark||', '||return||', '||return||', 'leo:', 'what', '||comma||', 'are', 'you', 'kidding', '||questionmark||', 'i', 'should', 'you', 'loaning', 'you', 'money', '||exclammark||', '||leftparen||', 'quickly', 'amending', 'what', 'he', 'just', 'said', '||rightparen||', 'but', "i'm", 'not', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'being', 'frank', '||rightparen||', 'leo', '||comma||', 'i', 'saw', 'you', 'in', "brentano's", 'yesterday', '||period||', '||return||', '||return||', 'leo:', 'why', "didn't", 'ya', 'say', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'because', 'you', 'were', 'too', 'busy', 'stealing', 'a', 'book', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'giving', 'a', 'courtesy', 'lesson', '||rightparen||', 'you', 'still', 'say', 'hello', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'showing', 'that', "it's", 'a', 'problem', '||rightparen||', 'leo', '||comma||', 'i', 'saw', 'you', 'steal', '||period||', '||return||', '||return||', 'leo:', 'oh', '||comma||', 'they', "don't", 'care', '||period||', 'we', 'all', 'do', 'it', '||period||', '||return||', '||return||', 'jerry:', 'who', '||comma||', 'criminals', '||questionmark||', '||return||', '||return||', 'leo:', 'senior', 'citizens', '||period||', 'no', 'big', 'deal', '||period||', '||return||', '||return||', 'jerry:', 'you', 'could', 'get', 'arrested', '||period||', '||return||', '||return||', 'leo:', 'arrested', '||questionmark||', 'come', 'on', '||exclammark||', '||leftparen||', 'goes', 'into', 'a', 'routine', 'explaination', 'for', 'his', 'stealing', '||rightparen||', "i'm", 'an', 'old', 'man', '||period||', "i'm", 'confused', '||exclammark||', 'i', 'thought', 'i', 'paid', 'for', 'it', '||period||', "what's", 'my', 'name', '||questionmark||', 'will', 'you', 'take', 'me', 'home', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'leo', '||period||', '||period||', '||return||', '||return||', 'leo:', 'alright', '||comma||', 'alright', '||period||', 'mr', '||period||', 'goody', 'two', '||dash||', 'shoes', '||period||', 'you', 'made', 'your', 'point', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'thinking', "he's", 'stopped', "leo's", 'thefts', '||rightparen||', 'thank', 'you', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'yelling', 'out', 'to', 'every', 'one', 'in', 'the', 'coffee', 'shop', '||rightparen||', 'will', 'somebody', 'answer', 'that', 'damn', 'phone', '||questionmark||', '||exclammark||', '||return||', '||return||', '[setting:', 'peterman', 'office', 'building', 'hallway]', '||return||', '||return||', 'elaine:', '||leftparen||', 'talking', 'to', 'a', 'co', '||dash||', 'worker', '||rightparen||', 'of', 'course', 'zach', 'and', 'i', 'have', 'been', 'dating', '||period||', "what'd", 'you', 'think', '||comma||', 'i', 'was', 'the', 'office', 'skank', '||questionmark||', '||return||', '||return||', 'walter:', 'well', '||period||', '||period||', '||return||', '||return||', 'elaine:', '||quotemark||', 'well', '||quotemark||', '||questionmark||', "we've", 'been', 'dating', 'for', 'three', 'months', '||period||', 'between', 'you', 'and', 'me', '||comma||', 'and', '||period||', '||period||', 'anyone', 'else', 'you', 'want', 'to', 'tell', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'exits', '||comma||', 'closing', 'the', 'door', 'behind', 'her', '||rightparen||', 'oh', 'man', '||period||', 'ugh', '||period||', '||period||', '||return||', '||return||', 'walter:', '||leftparen||', 'pointing', 'at', 'the', 'closed', 'door', '||rightparen||', "isn't", 'that', 'zach', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', '||return||', '||return||', 'walter:', "aren't", 'you', 'upset', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'starts', 'to', 'fake', 'cry', '||rightparen||', 'yes', '||period||', 'oh', '||comma||', 'man', '||exclammark||', 'oh', '||exclammark||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'kramer:', 'alright', '||comma||', 'listen', 'up', '||period||', 'now', '||comma||', 'you', 'three', 'have', 'been', 'hand', '||dash||', 'picked', 'out', 'of', 'possibly', 'dozens', 'that', 'applied', '||period||', 'now', '||comma||', 'what', "we're", 'looking', 'for', 'are', 'motivated', '||comma||', 'hard', '||dash||', 'working', '||comma||', 'homeless', 'gentlemen', 'like', 'yourselves', 'to', 'pull', 'rickshaws', '||period||', '||leftparen||', 'one', 'of', 'the', 'homeless', 'men', 'starts', 'to', 'wander', 'off', '||comma||', 'walking', 'away', '||rightparen||', 'now', '||comma||', 'i', "don't", 'caer', 'where', "you're", 'from', '||comma||', 'or', 'how', 'you', 'got', 'here', '||comma||', 'or', 'what', 'happened', 'to', 'your', 'homes', '||period||', 'but', 'you', 'will', 'have', 'to', 'be', 'physically', 'fit', '||period||', '||return||', '||return||', 'homeless', 'man:', 'the', 'government', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'continuing', 'as', 'if', 'nothing', 'happened', '||rightparen||', 'because', 'to', 'pull', 'rickshaws', 'means', 'more', 'than', 'just', 'strong', 'legs', '||period||', "you're", 'also', 'going', 'to', 'need', 'a', 'well', '||dash||', 'toned', 'upper', 'body', '||period||', '||return||', '||return||', 'newman:', 'alright', '||comma||', "who's", 'first', '||questionmark||', '||return||', '||return||', 'krmaer:', 'hey', '||period||', '||return||', '||return||', 'newman:', 'name', '||comma||', 'please', '||period||', '||return||', '||return||', 'homeless', 'man:', 'rusty', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'writing', 'on', 'a', 'clipboard', '||rightparen||', 'rusty', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'rusty', '||rightparen||', 'you', 'know', '||comma||', 'i', 'once', 'knew', 'a', 'horse', 'named', 'rusty', '||period||', 'no', 'offence', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'to', 'rusty', '||rightparen||', 'alright', '||comma||', 'uh', '||comma||', 'take', 'it', 'down', 'to', 'the', 'end', 'of', 'the', 'block', '||period||', 'make', 'a', 'controlled', 'turn', '||comma||', 'and', 'bring', 'her', 'back', '||period||', "let's", 'see', 'what', "you've", 'got', '||exclammark||', 'ok', '||questionmark||', 'ready', '||comma||', 'and', 'go', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'watching', "rusty's", 'pulling', 'of', 'the', 'rickshaw', '||rightparen||', 'giddy', 'up', '||exclammark||', 'good', 'form', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'yelling', 'out', 'to', 'rusty', '||rightparen||', 'alright', '||comma||', 'pace', 'yourself', '||comma||', "'cause", "you're", 'gonna', 'have', 'to', 'do', 'this', 'all', 'day', 'for', 'very', 'little', 'money', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "what's", 'he', "doin'", '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'think', 'he', 'stealing', 'our', 'rickshaw', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'then', '||comma||', "he's", 'out', '||exclammark||', '||return||', '||return||', 'homeless', 'man', '2:', '||leftparen||', 'salutes', 'kramer', '||rightparen||', "i'll", 'take', 'the', 'job', '||period||', 'potato', 'salad', '||exclammark||', '||quotemark||', '||return||', '||return||', '[setting:', 'bookstore]', '||return||', '||return||', 'george:', 'yes', '||comma||', 'i', '||comma||', 'uh', '||comma||', 'i', 'need', 'to', 'return', 'this', 'book', '||period||', '||return||', '||return||', 'cashier:', '||leftparen||', 'puts', 'the', "book's", 'code', 'into', 'the', 'computer', '||rightparen||', "i'm", 'sorry', '||comma||', 'we', "can't", 'take', 'this', 'book', 'back', '||period||', '||return||', '||return||', 'george:', 'why', 'not', '||questionmark||', '||return||', '||return||', 'cashier:', "it's", 'been', 'flagged', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'confused', '||rightparen||', 'flagged', '||questionmark||', '||return||', '||return||', 'cashier:', "it's", 'been', 'in', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'it', 'says', 'that', 'on', 'the', 'computer', '||questionmark||', '||return||', '||return||', 'cashier:', 'please', 'take', 'it', 'home', '||period||', 'we', "don't", 'want', 'it', 'near', 'the', 'other', 'books', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'outraged', '||period||', 'leaving', '||rightparen||', 'well', '||comma||', 'you', 'just', 'lost', 'a', 'lot', 'of', 'business', '||exclammark||', 'because', 'i', 'love', 'to', 'read', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'himself', '||rightparen||', 'i', "don't", 'believe', 'this', '||exclammark||', '||leftparen||', 'walks', 'over', 'to', 'a', 'security', 'guard', '||rightparen||', 'excuse', 'me', '||comma||', 'i', 'wonder', 'if', 'you', 'could', 'do', 'me', 'a', 'favor', '||questionmark||', 'my', "uncle's", 'having', 'a', 'little', 'problem', 'with', 'shoplifting', '||period||', '||period||', '||return||', '||return||', 'guard:', 'mm', '||dash||', 'hmm', '||period||', "where's", 'your', 'uncle', '||questionmark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', "he's", 'over', 'there', 'in', 'the', 'overcoat', '||period||', 'if', 'you', 'could', 'just', 'kind', 'of', 'put', 'a', 'scare', 'into', 'him', '||period||', '||period||', 'you', 'know', '||comma||', 'set', 'him', 'straight', '||period||', '||period||', '||return||', '||return||', 'gaurd:', '||leftparen||', 'into', 'his', 'walkie', '||dash||', 'talkie', '||rightparen||', 'we', 'have', 'a', '51', '||dash||', '50', 'in', 'paperbacks', '||period||', 'all', 'units', 'respond', '||period||', '||return||', '||return||', 'jerry:', "'51", '||dash||', "50'", '||questionmark||', 'that', '||dash||', "that's", 'just', 'a', 'scare', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'guard:', 'sir', '||comma||', "i'm", 'gonna', 'have', 'to', 'ask', 'you', 'to', 'stand', 'out', 'of', 'the', 'way', 'and', 'let', 'us', 'handle', 'this', '||period||', '||leftparen||', 'the', 'guard', 'rushes', 'tward', 'uncle', 'leo', '||rightparen||', 'swarm', '||exclammark||', 'swarm', '||exclammark||', '||return||', '||return||', 'leo:', 'what', '||questionmark||', '||exclammark||', "i'm", 'an', 'old', 'man', '||exclammark||', "i'm", 'confused', '||exclammark||', '||return||', '||return||', 'guard:', "you're", 'under', 'arrest', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'guard', '||rightparen||', 'i', 'just', 'wanted', 'you', 'to', 'scare', 'him', '||period||', '||return||', '||return||', 'leo:', 'jerry', '||comma||', 'you', 'ratted', 'me', 'out', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'unsure', 'of', 'what', 'to', 'say', '||dash||', 'he', "remember's", "leo's", 'courtesy', 'tip', '||rightparen||', 'hello', '||questionmark||', '||return||', '||return||', 'leo:', 'hello', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'apartment]', '||return||', '||return||', 'jerry:', 'mom', '||comma||', 'i', "didn't", 'rat', 'out', 'uncle', 'leo', '||period||', 'i', 'just', 'wanted', 'the', 'guard', 'to', 'scare', 'him', 'straight', '||period||', '||return||', '||return||', 'helen:', 'jerry', '||comma||', 'he', "won't", 'last', 'a', 'day', 'in', 'prison', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'scoffing', '||rightparen||', 'prison', '||period||', "i'm", 'sure', "it's", 'just', 'a', 'fine', '||period||', '||return||', '||return||', 'morty:', "she's", 'got', 'priors', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'not', 'believeing', 'it', '||rightparen||', 'prior', 'convictions', '||questionmark||', 'leo', '||questionmark||', '||return||', '||return||', 'helen:', 'it', 'was', 'a', 'crime', 'of', 'passion', '||period||', 'leave', 'it', 'alone', '||period||', '||return||', '||return||', 'morty:', 'besides', '||comma||', "it's", 'not', 'stealing', 'if', "it's", 'something', 'you', 'need', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'confused', '||rightparen||', 'what', 'does', 'that', 'mean', '||questionmark||', '||return||', '||return||', 'helen:', 'nobody', 'pays', 'for', 'everyting', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'shocked', 'at', 'his', 'parents', '||rightparen||', "you're", 'stealing', 'too', '||questionmark||', '||exclammark||', '||return||', '||return||', 'morty:', 'nothing', '||period||', 'batteries', '||period||', '||leftparen||', 'jerry', 'scoffs', '||rightparen||', 'well', '||comma||', 'they', 'wear', 'out', 'so', 'quick', '||period||', '||return||', '||return||', 'jerry:', 'mom', '||comma||', 'you', 'too', '||questionmark||', '||return||', '||return||', 'helen:', 'sometimes', 'your', 'father', 'forgets', '||comma||', 'so', 'i', 'have', 'to', 'steal', 'them', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'talk', 'to', 'you', 'later', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'while', 'washing', 'his', 'hands', 'in', "jerry's", 'kithen', 'sink', '||rightparen||', 'well', '||comma||', 'the', "rickshaw's", 'gone', '||period||', 'we', 'strapped', 'it', 'to', 'a', 'homeless', 'guy', 'and', 'he', '||leftparen||', 'makes', 'a', 'noise', '||rightparen||', '||comma||', 'he', 'bolted', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'joking', 'around', '||rightparen||', 'well', '||comma||', 'you', 'know', '||comma||', 'eighty', '||dash||', 'five', 'percent', 'of', 'all', 'homeless', 'rickshaw', 'businesses', 'fail', 'within', 'the', 'first', 'three', 'months', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'to', 'newman', '||rightparen||', 'see', '||comma||', 'we', "should've", 'gotten', 'some', 'collateral', 'from', 'him', '||period||', '||period||', 'like', 'his', 'bag', 'of', 'cans', '||comma||', 'or', '||period||', '||period||', 'his', 'other', 'bag', 'of', 'cans', '||period||', '||return||', '||return||', 'newman:', 'we', 'gotta', 'find', 'that', 'rickshaw', '||period||', 'you', 'check', 'the', 'sewers', 'and', 'dumpsters', '||period||', "i'll", 'hit', 'the', 'soup', 'kitchens', '||comma||', 'bakeries', '||comma||', 'and', 'smorgasbords', '||period||', '||return||', '||return||', 'jerry:', 'to', 'the', 'idiotmobile', '||exclammark||', '||return||', '||return||', '[setting:', 'the', 'coffee', 'shop]', '||return||', '||return||', 'jerry:', 'so', '||comma||', 'even', 'though', "you're", 'not', 'really', 'going', 'out', 'with', 'this', 'guy', '||comma||', "he's", 'cheating', 'on', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'that', 'is', 'correct', '||period||', 'but', "here's", 'the', 'beauty', 'part', '||dash||', 'now', 'i', 'stand', 'up', 'for', 'myself', 'by', 'telling', 'everybody', "i'm", 'dumping', 'his', 'sorry', 'ass', '||comma||', 'and', "i'm", 'the', 'office', '||dash||', '||return||', '||return||', 'jerry:', '||leftparen||', 'butting', 'in', '||rightparen||', 'tina', 'turner', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'accepting', '||rightparen||', 'alright', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "i've", 'to', 'every', "brentano's", '||period||', 'this', "thing's", 'flagged', 'in', 'every', 'database', 'in', 'town', '||exclammark||', '||return||', '||return||', 'jerry:', 'is', 'it', 'so', 'horrible', 'to', 'have', 'to', 'keep', 'a', 'book', '||questionmark||', '||return||', '||return||', 'george:', 'i', "don't", 'understand', 'what', 'the', 'big', 'deal', 'is', '||period||', 'they', 'let', 'you', 'try', 'on', 'pants', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'stern', 'on', 'george', '||rightparen||', 'not', 'underpants', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "that's", 'your', 'uncle', 'leo', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'getting', 'up', '||rightparen||', 'uncle', 'leo', '||period||', 'hello', '||exclammark||', '||return||', '||return||', 'leo:', '||leftparen||', 'bitter', '||rightparen||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'explain', '||rightparen||', 'uncle', 'leo', '||comma||', "i'm", 'sorry', '||period||', 'i', "didn't", 'know', 'about', 'your', '||period||', '||period||', 'past', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'exiting', '||rightparen||', 'you', 'mean', 'my', 'crime', 'of', 'passion', '||questionmark||', 'if', 'anyone', 'betrays', 'me', '||comma||', 'i', 'never', 'forget', '||exclammark||', '||return||', '||return||', 'jerry:', '||leftparen||', 'following', 'leo', 'out', 'the', 'door', '||rightparen||', 'uncle', 'leo', '||comma||', 'wait', '||exclammark||', 'hello', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'french', 'impressionism', '||period||', 'oh', '||comma||', 'i', 'love', 'this', '||period||', '||leftparen||', 'looking', 'up', 'at', 'george', '||rightparen||', 'now', '||comma||', 'what', 'is', 'the', 'problem', 'with', 'this', 'book', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||period||', '||return||', '||return||', 'elaine:', 'how', 'much', 'do', 'you', 'want', 'for', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'i', 'could', 'let', 'it', 'go', 'for', '||period||', '||period||', 'say', '||period||', '||period||', 'a', 'hundred', 'and', 'twenty', '||dash||', 'five', '||period||', '||return||', '||return||', 'jerry:', "leo's", 'furious', '||period||', '||leftparen||', 'he', 'stops', 'in', 'his', 'tracks', 'when', 'he', 'sees', 'elaine', 'looking', 'at', "george's", 'book', '||rightparen||', 'what', 'is', 'that', 'doing', 'on', 'the', 'table', '||questionmark||', '||return||', '||return||', 'george:', '||leftparen||', 'wanting', 'elaine', 'to', 'take', 'it', 'off', 'his', 'hands', '||comma||', 'he', 'tries', 'to', 'silence', 'jerry', '||rightparen||', 'jerry', '||comma||', 'simmer', 'down', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pointing', '||rightparen||', "i'm", 'not', 'eating', 'anything', 'in', 'the', 'vicinity', 'of', 'that', 'book', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', '||rightparen||', 'what', 'is', 'wrong', 'with', 'this', 'book', '||questionmark||', '||return||', '||return||', 'george:', 'simmer', '||exclammark||', '||return||', '||return||', 'jerry:', 'that', 'book', 'has', 'been', 'on', 'a', 'wild', 'ride', '||period||', 'george', 'took', 'it', 'into', 'the', 'bathroom', 'with', 'him', 'and', '||dash||', '||return||', '||return||', 'elaine:', '||leftparen||', 'cutting', 'jerry', 'off', '||comma||', 'she', 'stands', 'up', '||comma||', 'trying', 'to', 'get', 'away', 'from', 'the', 'book', '||period||', 'yelling', 'out', '||rightparen||', 'alright', '||exclammark||', 'everyone', 'clear', '||exclammark||', 'bio', '||dash||', 'hazard', 'coming', 'through', '||exclammark||', 'clear', '||exclammark||', 'clear', '||exclammark||', '||exclammark||', '||leftparen||', 'runs', 'to', 'the', 'bathroom', 'to', 'wash', 'her', 'hands', '||rightparen||', '||return||', '||return||', 'george:', '||leftparen||', 'the', 'damage', 'has', 'been', 'done', '||period||', 'he', 'is', 'slightly', 'angered', 'at', 'jerry', '||rightparen||', 'may', 'i', 'ask', '||comma||', 'what', 'do', 'you', 'read', 'in', 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'read', 'in', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', "aren't", 'you', 'something', '||questionmark||', '||return||', '||return||', '[setting:', "elaine's", 'office]', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'do', 'you', 'have', 'a', 'moment', '||questionmark||', "it's", 'about', 'your', 'lover', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'faking', 'a', 'broken', 'heart', '||rightparen||', 'oh', 'yes', '||period||', 'i', 'know', 'all', 'about', 'his', 'little', 'performance', 'in', 'the', 'break', 'room', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'who', 'among', 'us', "hasn't", 'snuck', 'into', 'the', 'break', 'room', 'to', 'nibble', 'on', 'a', 'love', 'newton', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'confused', '||rightparen||', 'love', 'newton', '||questionmark||', '||return||', '||return||', 'peterman:', "i'm", 'afraid', 'the', 'problem', 'with', 'zach', 'is', 'more', 'serious', '||period||', "he's", 'back', 'on', 'the', 'horse', '||comma||', 'elaine', '||period||', 'smack', '||period||', 'white', 'palace', '||period||', 'the', "chinaman's", 'nightcap', '||period||', '||return||', '||return||', 'elaine:', 'an', 'addict', '||questionmark||', '||leftparen||', 'sacrcastic', '||rightparen||', 'well', '||comma||', 'it', 'just', 'keeps', 'getting', 'better', '||exclammark||', '||return||', '||return||', 'peterman:', 'and', '||comma||', 'in', 'a', 'tiny', 'way', '||comma||', 'i', 'almost', 'feel', 'responsible', '||period||', "i'm", 'the', 'one', 'who', 'sent', 'him', 'to', 'thailand', '||dash||', 'in', 'search', 'of', 'low', '||dash||', 'cost', 'whistles', '||period||', 'filled', 'his', 'head', 'with', 'pseudoerotic', 'tales', 'of', 'my', 'own', 'opium', 'excursions', '||period||', 'plus', '||comma||', 'i', 'have', 'him', 'some', 'phone', 'numbers', 'of', 'places', 'he', 'could', 'score', 'near', 'the', 'hotel', '||period||', '||return||', '||return||', 'elaine:', 'look', '||comma||', 'uh', '||comma||', 'mr', '||period||', 'peterman', '||comma||', 'the', 'fact', 'is', 'that', 'i', 'was', 'planning', 'on', 'breaking', 'up', 'with', 'zach', 'anyway', '||period||', 'he', 'was', 'cheating', 'on', 'me', '||exclammark||', '||return||', '||return||', 'peterman:', 'damn', 'it', '||comma||', 'elaine', '||period||', 'that', "wasn't", 'zach', '||period||', 'that', 'was', 'the', 'yam', '||dash||', 'yam', '||period||', 'now', '||comma||', 'he', 'is', 'going', 'cold', 'turkey', '||period||', '||leftparen||', 'ordering', '||rightparen||', 'and', 'you', 'will', 'be', 'at', 'his', 'side', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'well', '||comma||', 'you', 'know', '||comma||', 'i', 'had', 'planned', 'to', 'uh', '||dash||', '||return||', '||return||', 'peterman:', '||leftparen||', 'cutting', 'her', 'off', '||rightparen||', 'no', 'buts', '||comma||', 'elaine', '||period||', 'or', 'i', 'will', 'strip', 'you', 'of', 'your', "'associate'", 'status', '||period||', '||leftparen||', 'goes', 'to', 'leave', '||rightparen||', 'uh', '||comma||', 'p', '||period||', 's', '||period||', '||comma||', 'the', 'first', 'twenty', '||dash||', 'four', 'hours', 'are', 'the', 'worst', '||period||', 'better', 'bring', 'a', 'poncho', '||period||', '||return||', '||return||', '[setting:', "jerry's", 'bedroom]', '||return||', '||return||', 'helen:', 'it', 'was', 'a', 'crime', 'of', 'passion', '||period||', '||return||', '||return||', 'leo:', 'if', 'anyone', 'betrays', 'me', '||comma||', 'i', 'never', 'forget', '||period||', '||return||', '||return||', 'helen:', 'he', "won't", 'last', 'a', 'day', 'in', 'prison', '||period||', '||return||', '||return||', 'leo:', '||leftparen||', 'leo', 'has', '||quotemark||', 'jerry', '||quotemark||', 'written', 'on', 'the', 'fingers', 'his', 'right', 'hand', '||comma||', 'and', '||quotemark||', 'hello', '||quotemark||', 'written', 'on', 'his', 'left', '||period||', "he's", 'doing', 'pull', '||dash||', 'ups', '||rightparen||', 'jerry', '||period||', 'hello', '||period||', 'jerry', '||period||', 'hello', '||period||', 'jerry', '||period||', '||leftparen||', 'turns', 'to', 'the', 'right', '||comma||', 'yelling', 'out', '||rightparen||', 'answer', 'that', 'damn', 'phone', '||exclammark||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'jerry:', 'uncle', 'leo', '||questionmark||', '||return||', '||return||', 'elaine:', '||leftparen||', 'sarcastic', '||rightparen||', 'oh', '||comma||', "that's", 'nice', '||period||', 'what', 'are', 'you', 'up', 'to', '||questionmark||', '||return||', '||return||', 'jerry:', 'nightmares', '||period||', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'my', 'fake', 'boyfriend', 'is', 'going', 'through', 'real', 'withdrawals', '||period||', '||return||', '||return||', 'zach:', '||leftparen||', 'yelling', 'out', 'from', 'off', '||dash||', 'camera', '||rightparen||', "i'm", 'burning', 'up', '||exclammark||', 'elaine', '||exclammark||', '||return||', '||return||', 'elaine:', 'eat', 'your', 'soup', '||exclammark||', '||return||', '||return||', 'jerry:', "you're", 'not', 'feeding', 'him', '||comma||', 'are', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||leftparen||', 'zach', 'vomits', '||period||', 'elaine', 'yells', 'out', 'to', 'him', '||rightparen||', 'i', 'told', 'you', '||comma||', 'away', 'from', 'the', 'curtains', '||period||', 'away', '||period||', '||leftparen||', 'pointing', '||rightparen||', 'use', 'your', 'bucket', '||period||', '||leftparen||', 'he', 'vomits', 'again', '||dash||', 'this', 'time', 'into', 'the', 'bucket', '||rightparen||', 'there', 'you', 'go', '||comma||', "that's", 'it', '||period||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'you', 'know', 'what', '||questionmark||', 'i', 'gotta', 'go', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'scared', '||rightparen||', 'ah', '||exclammark||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'i', 'thought', 'i', 'heard', 'you', '||period||', '||return||', '||return||', 'jerry:', 'get', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'newman:', '||leftparen||', 'from', 'outside', 'the', 'room', '||rightparen||', 'kramer', '||questionmark||', 'kramer', '||questionmark||', '||leftparen||', 'enters', "jerry's", 'bedroom', '||rightparen||', 'there', 'you', 'are', '||period||', '||return||', '||return||', 'jerry:', 'will', 'everybody', 'please', 'leave', '||questionmark||', '||exclammark||', '||return||', '||return||', 'newman:', 'i', 'just', 'heard', 'that', 'a', 'postman', 'spotted', 'a', 'rickshaw', 'down', 'in', 'battery', 'park', '||period||', '||return||', '||return||', 'kramer:', 'our', 'rickshaw', '||questionmark||', '||return||', '||return||', 'newman:', "it's", 'entirely', 'possible', '||period||', '||return||', '||return||', 'jerry:', 'i', 'want', 'everyone', 'out', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'exiting', 'the', 'bedroom', 'with', 'newman', '||rightparen||', "let's", 'talk', 'in', "jerry's", 'kitchen', '||period||', "i'll", 'make', 'some', 'cocoa', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'to', 'jerry', '||rightparen||', 'good', 'night', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'bitter', '||rightparen||', 'good', 'night', '||comma||', 'newman', '||period||', '||return||', '||return||', '[setting:', 'park]', '||return||', '||return||', 'newman:', 'there', 'it', 'is', '||exclammark||', '||return||', '||return||', 'kramer:', 'rusty', '||exclammark||', '||return||', '||return||', 'rusty:', 'oh', '||comma||', 'there', 'you', 'are', '||period||', 'oh', '||comma||', 'do', 'i', 'get', 'the', 'job', '||questionmark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'sarcastic', '||rightparen||', 'yeah', '||comma||', 'yeah', '||period||', "we'll", 'get', 'back', 'to', 'you', '||period||', '||leftparen||', 'pulling', 'the', 'rickshaw', 'with', 'newman', '||rightparen||', "let's", 'get', 'this', 'baby', 'home', '||period||', '||return||', '||return||', 'newman:', 'uh', '||period||', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'newman:', 'you', 'know', '||comma||', 'when', 'you', 'think', 'about', 'it', '||comma||', "it's", 'kind', 'of', 'silly', 'for', 'us', 'both', 'to', 'pull', 'this', 'thing', 'all', 't', 'he', 'way', 'back', 'uptown', '||period||', 'i', 'mean', '||comma||', 'after', 'all', '||comma||', 'it', 'is', 'a', 'conveyance', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', "that's", 'true', '||period||', '||return||', '||return||', 'newman:', 'so', '||comma||', 'which', 'one', 'of', 'us', 'is', 'gonna', 'pull', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "there's", 'only', 'one', 'way', 'to', 'settle', 'this', '||period||', '||leftparen||', 'starts', 'pointing', 'back', 'and', 'forth', 'between', 'newman', 'and', 'him', 'with', 'each', 'word', 'of', 'the', 'rhyme', '||rightparen||', 'one', 'spot', '||comma||', 'two', 'spot', '||comma||', 'zig', '||comma||', 'zag', '||comma||', 'tear', '||comma||', 'pop', '||dash||', 'die', '||comma||', 'pennygot', '||comma||', 'tennyum', '||comma||', 'tear', '||comma||', 'harum', '||comma||', 'scare', "'em", '||comma||', 'rip', "'em", '||comma||', 'tear', "'em", '||comma||', 'tay', '||comma||', 'taw', '||comma||', 'toe', '||period||', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'realizing', 'he', 'won', '||rightparen||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'best', 'two', 'out', 'of', 'three', '||questionmark||', '||leftparen||', 'starts', 'the', 'pointing', 'and', 'the', 'rhyme', 'again', '||rightparen||', 'one', 'spot', '||comma||', 'two', 'spot', '||period||', '||period||', '||return||', '||return||', 'nemwan:', 'hey', '||comma||', 'boy', '||period||', 'smooth', 'it', 'out', 'up', 'there', '||period||', 'too', 'much', 'jostling', '||exclammark||', '||return||', '||return||', '[setting:', 'a', 'homeless', 'charity', 'center]', '||return||', '||return||', 'rebecca:', '||leftparen||', 'gesturing', 'tward', 'the', 'book', '||rightparen||', 'so', '||comma||', 'you', 'want', 'to', 'donate', 'this', 'to', 'charity', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'assume', "there's", 'some', 'sort', 'of', 'write', '||dash||', 'off', '||period||', '||return||', '||return||', 'rebecca:', "what's", 'the', 'value', 'of', 'the', 'book', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'about', 'two', 'hundred', 'dollars', '||comma||', 'miss', 'demooney', '||period||', '||return||', '||return||', 'rebecca:', '||leftparen||', 'correcting', '||period||', 'stern', '||rightparen||', "it's", 'demornay', '||period||', 'rebecca', 'demornay', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||return||', '||return||', 'rebecca:', '||leftparen||', 'opens', 'the', 'cover', 'of', 'the', 'book', '||rightparen||', 'oh', '||comma||', 'wait', 'a', 'second', '||period||', '||leftparen||', 'certain', '||rightparen||', 'this', 'book', 'has', 'been', 'in', 'the', 'bathroom', '||period||', '||return||', '||return||', 'george:', '||leftparen||', 'nervous', '||rightparen||', 'wh', '||dash||', 'what', 'are', 'you', 'talking', 'about', '||questionmark||', 'that', '||dash||', "that's", 'rediculous', '||period||', '||return||', '||return||', 'rebecca:', "it's", 'been', 'flagged', '||period||', 'i', 'know', '||period||', 'i', 'used', 'to', 'work', 'in', 'a', "brentano's", '||period||', 'mister', '||comma||', "we're", 'trying', 'to', 'help', 'the', 'homeless', 'heare', '||dash||', "it's", 'bad', 'enough', 'that', 'we', 'have', 'some', 'nut', 'out', 'there', 'trying', 'to', 'strap', "'em", 'to', 'a', 'rickshaw', '||exclammark||', '||return||', '||return||', 'george:', '||leftparen||', 'desperate', 'to', 'get', 'rid', 'of', 'the', 'book', '||rightparen||', 'alright', '||comma||', 'i', '||comma||', "i'll", 'just', 'take', 'fifty', '||period||', 'do', '||dash||', 'do', 'we', 'have', 'a', 'deal', '||questionmark||', '||return||', '||return||', 'rebecca:', 'yeah', '||comma||', 'and', 'here', 'it', 'is', 'you', 'get', 'your', 'toilet', 'book', 'out', 'of', 'here', '||comma||', 'and', 'i', "won't", 'jump', 'over', 'this', 'counter', 'and', 'punch', 'you', 'in', 'the', 'brain', '||exclammark||', '||return||', '||return||', 'george:', 'i', 'could', 'take', 'it', 'in', 'merchandise', '||period||', '||period||', '||return||', '||return||', 'rebecca:', '||leftparen||', 'threatening', 'to', 'hit', 'him', '||rightparen||', 'here', 'i', 'come', '||period||', '||period||', '||return||', '||return||', '[setting:', 'bookstore]', '||return||', '||return||', 'elaine:', 'so', '||comma||', 'this', "book'll", 'tell', 'me', 'how', 'to', 'get', 'puke', 'out', 'of', 'cashmere', '||questionmark||', '||return||', '||return||', 'cashier:', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'great', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'elaine', '||rightparen||', 'so', '||comma||', 'the', 'worst', 'is', 'over', '||questionmark||', '||return||', '||return||', 'elaine:', 'yeah', '||period||', 'now', 'i', 'can', 'break', 'up', 'with', 'him', '||period||', "he's", 'clean', '||comma||', 'and', "i'm", 'the', 'office', 'hero', '||period||', '||return||', '||return||', 'jerry:', 'seems', 'like', "you're", 'better', 'at', 'fake', 'relationships', 'than', 'real', 'ones', '||period||', '||return||', '||return||', 'elaien:', 'yeah', '||comma||', 'huh', '||period||', 'i', 'even', 'got', 'an', 'idea', 'out', 'of', 'it', '||period||', 'the', 'detox', 'poncho', '||period||', '||return||', '||return||', 'elaine:', '||leftparen||', 'leaving', 'jerry', '||rightparen||', 'see', 'ya', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'to', 'cashier', '||rightparen||', "i'd", 'like', 'to', 'speak', 'with', 'the', 'manager', '||comma||', 'please', '||period||', '||return||', '||return||', '[setting:', 'nyc', 'street]', '||return||', '||return||', 'newman:', 'mind', 'your', 'pace', '||comma||', 'boy', '||period||', 'chop', '||comma||', 'chop', '||exclammark||', '||return||', '||return||', 'kramer:', '||leftparen||', 'tired', '||rightparen||', 'oh', '||comma||', 'i', "can't", 'go', 'on', '||period||', 'i', 'gotta', 'take', 'a', 'break', '||period||', '||leftparen||', 'sets', 'the', 'rickshaw', 'down', '||dash||', 'taking', 'a', 'rest', '||rightparen||', '||return||', '||return||', 'newman:', 'well', '||comma||', "don't", 'tarry', '||period||', "i'm", 'behind', 'schedule', 'as', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', '||leftparen||', 'stretching', '||rightparen||', 'oh', '||period||', '||period||', '||return||', '||return||', 'newman:', '||leftparen||', 'scared', '||rightparen||', 'boy', '||period||', '||period||', 'boy', '||period||', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'woah', '||exclammark||', 'wait', '||exclammark||', '||return||', '||return||', 'newman:', 'ahhh', '||exclammark||', 'yaaaahhh', '||exclammark||', '||return||', '||return||', 'zach:', '||leftparen||', 'optimistic', '||rightparen||', 'well', '||comma||', 'this', 'is', 'the', 'first', 'day', 'of', 'the', 'rest', 'of', 'my', 'life', '||exclammark||', '||return||', '||return||', 'newman:', 'waaaaahhhh', '||exclammark||', '||return||', '||return||', '[setting:', 'bookstore]', '||return||', '||return||', 'jerry:', 'george', '||questionmark||', 'what', 'are', 'you', "doin'", 'here', '||questionmark||', '||return||', '||return||', 'george:', 'i', "can't", 'sell', 'the', 'book', '||period||', "it's", 'been', 'marked', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'sarcasticly', 'joking', '||rightparen||', 'it', 'certainly', 'has', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', "i'm", 'gonna', 'steal', 'another', 'one', '||comma||', 'and', 'then', 'return', 'it', '||period||', 'that', 'way', '||comma||', 'everything', 'is', 'even', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'trying', 'to', 'straighten', 'things', 'out', '||rightparen||', 'you', 'defile', 'one', 'book', '||comma||', 'steal', 'another', '||comma||', 'ask', 'for', 'your', 'money', 'back', '||dash||', 'and', 'to', 'you', "that's", 'even', '||questionmark||', '||return||', '||return||', 'george:', "i'm", "goin'", 'in', '||exclammark||', '||return||', '||return||', 'manager:', 'did', 'you', 'want', 'to', 'speak', 'with', 'the', 'manager', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', 'my', 'uncle', 'leo', 'was', 'cought', 'shoplifing', 'here', 'the', 'other', 'day', '||period||', '||period||', '||return||', '||return||', 'manager:', 'yes', '||comma||', 'uncle', 'leo', '||period||', 'i', 'remember', 'him', '||period||', "i'm", 'sorry', '||comma||', 'our', 'policy', 'is', 'we', 'prosecute', 'all', 'shoplifters', '||period||', '||return||', '||return||', 'jerry:', '||leftparen||', 'pleading', '||rightparen||', 'oh', '||comma||', 'come', 'on', '||period||', "he's", 'just', 'a', 'lonely', 'old', 'man', '||period||', 'all', 'old', 'people', 'steal', '||period||', '||return||', '||return||', 'manager:', "that's", 'right', '||period||', "that's", 'why', 'we', 'stopped', 'carrying', 'batteries', '||period||', 'look', '||comma||', "i'll", 'be', 'honest', 'with', 'you', '||comma||', "we've", 'had', 'a', 'lot', 'of', 'trouble', 'with', 'theft', 'lately', '||dash||', 'and', 'my', 'boss', 'says', 'i', 'have', 'to', 'make', 'an', 'example', 'to', 'someone', '||period||', '||return||', '||return||', 'jerry:', 'so', 'it', 'could', 'be', 'anyone', '||questionmark||', '||return||', '||return||', 'manager:', 'i', '||period||', '||period||', 'guess', '||period||', 'as', 'long', 'as', 'we', 'catch', 'him', 'in', 'the', 'act', '||period||', '||return||', '||return||', 'jerry:', 'that', 'guy', '||exclammark||', '||leftparen||', 'pointing', 'at', 'george', '||rightparen||', 'swarm', '||exclammark||', 'swarm', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||exclammark||', 'jerry', '||exclammark||', '||return||', '||return||', 'all', '||leftparen||', 'singing', '||rightparen||', ':', 'happy', 'birthday', 'to', 'you', '||period||', '||return||', '||return||', 'walter:', 'thanks', '||period||', '||return||', '||return||', 'female', 'worker:', 'elaine', '||comma||', 'cake', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'no', '||comma||', 'thanks', '||period||', '||return||', '||return||', 'female', 'worker:', "it's", "walter's", 'special', 'day', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'there', 'are', '200', 'people', 'who', 'work', 'in', 'this', 'office', '||period||', 'every', 'day', 'is', "somebody's", 'special', 'day', '||period||', '||return||', '||return||', 'male', 'worker:', 'elaine', '||exclammark||', "where're", 'you', 'going', '||questionmark||', "it's", "walter's", 'last', 'day', '||period||', 'we', 'have', 'to', 'celebrate', '||period||', '||return||', '||return||', 'elaine:', "it's", 'his', 'birthday', 'and', "it's", 'his', 'last', 'day', '||questionmark||', '||return||', '||return||', 'male', 'worker:', 'this', 'is', 'other', '||dash||', 'walter', '||comma||', 'from', 'returns', '||period||', '||return||', '||return||', 'other', '||dash||', 'walter:', 'hey', '||comma||', "what's", 'going', 'on', 'here', '||questionmark||', '||return||', '||return||', 'all:', 'surprise', '||exclammark||', '||return||', '||return||', 'other', '||dash||', 'walter:', 'oh', 'guys', '||period||', '||return||', '||return||', 'other', '||dash||', 'walter:', 'elaine', '||comma||', "it's", 'my', 'last', 'day', '||period||', 'have', 'a', 'piece', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'pile', 'it', 'on', '||period||', '||return||', '||return||', 'all', '||leftparen||', 'singing', '||comma||', 'competing', '||rightparen||', ':', 'for', "he's", 'a', 'jolly', 'good', 'fellow', '||period||', '||period||', '||period||', 'happy', 'birthday', 'to', 'you', '||period||', '||period||', '||period||', 'for', "he's", 'a', 'jolly', 'good', 'fellow', '||period||', '||period||', '||period||', 'birthday', 'to', 'you', '||period||', '||period||', '||period||', 'which', 'nobody', 'can', 'deny', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'so', 'bad', 'about', 'having', 'a', 'little', 'piece', 'of', 'cake', '||questionmark||', '||return||', '||return||', 'elaine:', 'it', 'is', 'the', 'forced', 'socializing', '||period||', 'i', 'mean', '||comma||', 'just', 'because', 'we', 'work', 'in', 'the', 'same', 'office', '||comma||', 'why', 'do', 'we', 'have', 'to', 'act', 'like', "we're", 'friends', '||questionmark||', '||return||', '||return||', 'jerry:', 'why', "aren't", 'you', 'there', 'now', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'had', 'to', 'take', 'a', 'sick', 'day', '||period||', "i'm", 'so', 'sick', 'of', 'these', 'people', '||period||', 'by', 'the', 'way', '||comma||', 'i', 'talked', 'to', 'lisi', '||comma||', 'and', 'tomorrow', "night's", 'good', 'for', 'her', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'i', "shouldn't", 'go', 'out', 'with', 'a', 'friend', 'of', 'yours', '||period||', 'i', 'foresee', 'messiness', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||comma||', "you're", 'better', 'off', 'sitting', 'around', 'here', '||comma||', 'reading', 'comic', 'books', '||comma||', 'and', 'eating', 'spaghetti', 'at', 'two', 'in', 'the', 'morning', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'speaking', 'of', 'tomato', 'sauce', '||comma||', 'you', 'want', 'to', 'come', 'with', 'me', 'and', 'george', 'to', "mario's", 'pizza', '||questionmark||', '||return||', '||return||', 'elaine:', 'your', 'old', 'high', 'school', 'hangout', '||questionmark||', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', "they're", 'closing', '||period||', "we're", 'going', 'for', 'one', 'last', 'slice', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'all', 'right', '||period||', 'hi', '||period||', 'check', 'it', 'out', '||comma||', 'official', 'police', 'caution', 'tape', '||period||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'uh', '||dash||', 'uh', '||period||', 'step', 'back', '||comma||', 'son', '||comma||', "there's", 'nothing', 'to', 'see', 'here', '||period||', '||return||', '||return||', 'jerry:', 'where', 'did', 'you', 'get', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'got', 'it', 'from', 'my', 'cop', 'buddy', 'doug', '||period||', '||return||', '||return||', 'jerry:', 'you', 'sure', 'have', 'a', 'lot', 'of', 'friends', '||period||', 'how', 'come', 'i', 'never', 'see', 'any', 'of', 'these', 'people', '||questionmark||', '||return||', '||return||', 'kramer:', 'they', 'want', 'to', 'know', 'why', 'they', 'never', 'see', 'you', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'gonna', 'eat', 'that', 'later', '||period||', '||return||', '||return||', 'jerry:', 'so', 'they', 'just', 'gave', 'you', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', 'no', '||comma||', 'no', '||comma||', '||period||', 'no', '||period||', 'i', 'had', 'to', 'fish', 'around', 'in', 'the', 'evidence', 'room', 'for', 'it', '||period||', 'you', 'know', '||comma||', "they're", 'all', 'preoccupied', '||comma||', 'trying', 'to', 'hunt', 'down', 'this', 'new', 'psycho', '||dash||', 'serial', 'killer', '||comma||', 'the', 'lopper', '||period||', 'all', 'right', '||comma||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'elaine:', 'wait', 'a', 'minute', '||comma||', 'wait', 'a', 'minute', '||period||', 'who', 'is', 'the', 'lopper', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "it's", 'no', 'big', 'deal', '||period||', "it's", 'just', 'some', 'guy', "who's", 'been', 'running', 'around', 'riverside', 'park', '||dash||', 'pffff', '||period||', 'you', 'know', '||comma||', 'cutting', "people's", 'heads', 'off', '||period||', '||return||', '||return||', 'jerry:', 'how', 'come', 'i', "haven't", 'read', 'about', 'this', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', 'the', 'police', '||comma||', "they've", 'been', 'having', 'some', 'internal', 'dissension', 'about', 'the', 'name', '||period||', '||return||', '||return||', 'elaine:', 'really', '||questionmark||', "what're", 'the', 'other', 'titles', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'headso', '||period||', '||period||', '||period||', 'uh', '||period||', '||period||', '||period||', 'the', 'denogginizer', '||period||', '||period||', '||period||', 'son', 'of', 'dad', '||period||', '||return||', '||return||', 'jerry:', 'son', 'of', 'dad', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'that', 'was', 'my', 'suggestion', '||period||', "it's", 'sort', 'of', 'a', 'catchall', '||period||', '||return||', '||return||', 'george:', "mario's", 'pizza', '||period||', '||return||', '||return||', 'george:', 'just', 'as', 'she', 'was', '||period||', 'hey', '||comma||', 'mario', '||exclammark||', 'remember', 'us', '||questionmark||', '||return||', '||return||', 'mario:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'we', 'used', 'to', 'come', 'in', 'every', 'day', '||period||', '||return||', '||return||', 'mario:', 'so', 'where', 'ya', 'been', '||questionmark||', "we're", 'tanking', 'here', '||period||', '||return||', '||return||', 'george:', "we'll", 'have', '2', 'slices', 'and', '2', 'grape', 'sodas', '||period||', '||return||', '||return||', 'mario:', 'oh', '||comma||', 'thanks', '||period||', "that'll", 'save', 'us', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', 'make', 'it', 'the', 'large', 'sodas', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'jerry', '||comma||', 'remember', 'frogger', '||questionmark||', 'i', 'used', 'to', 'be', 'so', 'into', 'this', 'game', '||period||', "gettin'", 'that', 'frog', 'across', 'the', 'street', 'was', 'my', 'entire', 'life', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'and', 'then', 'you', 'went', 'on', 'to', '||period||', '||period||', '||period||', 'well', '||comma||', "it's", 'a', 'good', 'game', '||period||', '||return||', '||return||', 'george:', 'double', 'jump', '||exclammark||', 'eat', 'the', 'fly', '||exclammark||', 'eat', 'it', '||exclammark||', '||return||', '||return||', 'boy:', 'thanks', 'a', 'lot', '||period||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'beat', 'it', '||comma||', 'punk', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'look', 'at', 'the', 'high', 'score', '||dash||', '||dash||', '||quotemark||', 'g', '||period||', 'l', '||period||', 'c', '||period||', '||quotemark||', 'george', 'louis', 'costanza', '||period||', "that's", 'not', 'you', '||comma||', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||exclammark||', '860', '||comma||', '000', '||period||', 'i', "can't", 'believe', "it's", 'still', 'standing', '||period||', 'no', 'one', 'has', 'beaten', 'me', 'in', 'like', '10', 'years', '||period||', '||return||', '||return||', 'jerry:', 'i', 'remember', 'that', 'night', '||period||', '||return||', '||return||', 'george:', 'the', 'perfect', 'combination', 'of', 'mountain', 'dew', 'and', 'mozzarella', '||period||', '||period||', '||period||', 'just', 'the', 'right', 'amount', 'of', 'grease', 'on', 'the', 'joy', 'stick', '||period||', '||period||', '||period||', '||return||', '||return||', 'mario:', "here's", 'your', 'pizza', 'pea', 'brains', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'i', 'remember', 'why', 'we', 'stopped', 'coming', 'here', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'thinking', '||rightparen||', ':', 'this', 'pen', 'smells', 'really', 'bad', '||period||', 'so', 'why', 'do', 'i', 'keep', 'smelling', 'it', '||questionmark||', 'is', 'it', 'too', 'late', 'for', 'me', 'to', 'go', 'to', 'law', 'school', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'male', 'worker:', 'you', 'were', 'out', 'sick', 'yesterday', '||comma||', 'so', 'we', 'got', 'you', 'a', 'get', '||dash||', 'well', 'cake', '||period||', '||return||', '||return||', 'female', 'worker:', "it's", 'carrot', '||period||', "it's", 'good', 'for', 'you', '||period||', '||return||', '||return||', 'workers', '||leftparen||', 'singing', '||rightparen||', ':', 'get', 'well', 'get', 'well', 'soon', '||comma||', 'we', 'wish', 'you', 'to', 'get', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'stop', 'it', '||exclammark||', "that's", 'not', 'even', 'a', 'song', '||exclammark||', 'i', 'mean', '||comma||', 'now', "we're", 'celebrating', 'a', 'sick', 'day', '||questionmark||', '||return||', '||return||', 'male', 'worker:', 'i', 'think', "it's", 'nice', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'is', 'nice', '||questionmark||', 'trying', 'to', 'fill', 'the', 'void', 'in', 'your', 'life', 'with', 'flour', 'and', 'sugar', 'and', 'egg', 'and', 'vanilla', '||questionmark||', 'i', 'mean', '||comma||', 'we', 'are', 'all', 'unhappy', '||period||', 'do', 'we', 'have', 'to', 'be', 'fat', '||comma||', 'too', '||questionmark||', 'not', 'you', 'becky', '||comma||', 'i', 'know', 'you', 'have', 'a', 'slow', 'metabolism', '||period||', 'i', "don't", 'want', 'one', 'more', 'piece', 'of', 'cake', 'in', 'my', 'office', '||exclammark||', '||return||', '||return||', 'worker', '||leftparen||', 'singing', '||rightparen||', ':', 'get', 'well', '||comma||', 'get', 'well', 'soon', '||dash||', '||dash||', '||return||', '||return||', 'male', 'worker:', "it's", 'not', 'happening', '||period||', '||return||', '||return||', 'becky:', 'can', 'we', 'still', 'it', 'eat', '||questionmark||', '||return||', '||return||', 'jerry:', "i'll", 'tell', 'you', 'lisi', '||comma||', 'i', 'never', 'expected', 'that', 'movie', 'to', '||dash||', '||dash||', '||return||', '||return||', 'lisi:', 'end', 'under', 'water', '||questionmark||', '||return||', '||return||', 'jerry:', 'be', 'that', 'long', '||period||', 'i', 'mean', '||comma||', 'most', 'action', 'movies', 'are', '||dash||', '||dash||', '||return||', '||return||', 'lisi:', 'so', 'much', 'more', 'violent', '||period||', '||return||', '||return||', 'jerry:', 'not', 'as', 'long', '||period||', '||return||', '||return||', 'lisi:', 'well', '||comma||', 'i', 'should', 'probably', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'get', 'going', '||period||', '||return||', '||return||', 'lisi:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'it', 'was', 'nice', 'meeting', 'you', '||period||', "i'm", 'sure', "i'll", 'see', 'you', '||dash||', '||dash||', '||return||', '||return||', 'lisi:', 'eight', 'tomorrow', '||questionmark||', '||return||', '||return||', 'jerry:', 'actually', '||comma||', "that's", '||dash||', '||dash||', '||return||', '||return||', 'lisi:', 'what', 'you', 'were', 'thinking', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'george:', 'oh', '||exclammark||', 'here', 'you', 'are', '||period||', 'ha', 'ha', '||period||', '||period||', '||period||', 'you', '||comma||', 'uh', '||comma||', 'you', 'want', 'to', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||leftparen||', 'points', 'at', 'booth', '||rightparen||', 'how', 'about', 'this', 'one', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', "i'm", 'doing', 'it', '||comma||', 'jerry', '||period||', "i'm", 'buying', 'the', 'frogger', 'machine', '||period||', 'now', 'the', 'torch', 'will', 'burn', 'forever', '||period||', '||return||', '||return||', 'jerry:', 'fabulous', '||period||', 'see', '||comma||', 'now', "you're", 'really', 'do', 'something', '||period||', '||return||', '||return||', 'george:', 'so', '||comma||', 'you', 'want', 'to', 'come', 'down', 'to', "mario's", 'pizza', 'with', 'me', 'and', 'help', 'me', 'pick', 'up', 'the', 'frogger', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'how', 'you', 'gonna', 'keep', 'the', 'machine', 'plugged', 'in', 'while', 'you', 'move', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'once', 'you', 'unplug', 'the', 'machine', '||comma||', 'all', 'the', 'scores', 'will', 'be', 'erased', '||period||', '||return||', '||return||', 'george:', "you're", 'right', '||period||', 'why', 'must', 'there', 'always', 'be', 'a', 'problem', '||questionmark||', "you'd", 'think', 'just', 'once', 'i', 'could', 'get', 'a', 'break', '||period||', 'god', 'knows', 'i', 'earned', 'it', 'with', 'that', 'score', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'more', 'bad', 'news', 'jerry', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', 'the', 'police', '||comma||', 'they', 'found', 'another', 'victim', 'of', 'the', 'lopper', 'in', 'riverside', 'park', '||period||', 'i', 'saw', 'the', 'photo', '||comma||', 'and', 'it', 'looked', 'a', 'lot', 'like', 'you', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'come', 'on', '||period||', "there's", 'a', 'lot', 'of', 'people', 'walking', 'around', 'the', 'city', 'that', 'look', 'like', 'me', '||period||', '||return||', '||return||', 'kramer:', 'not', 'as', 'many', 'as', 'there', 'used', 'to', 'be', '||period||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', 'need', 'a', 'guy', 'that', 'can', 'rig', 'a', 'frogger', 'machine', 'so', 'that', 'i', 'can', 'move', 'it', 'without', 'losing', 'power', '||comma||', "'cause", 'i', 'have', 'the', 'high', 'score', '||period||', 'h', '||dash||', 'hello', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'george', '||comma||', "you're", 'not', 'gonna', 'find', 'an', 'electrician', 'like', 'that', 'in', 'the', 'yellow', 'pages', '||period||', 'now', '||comma||', 'i', 'know', 'just', 'the', 'guy', 'who', 'can', 'do', 'this', '||period||', '||return||', '||return||', 'jerry:', 'another', 'friend', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'this', 'guy', 'is', 'no', 'friend', '||period||', 'in', 'fact', '||comma||', 'we', "don't", 'even', 'get', 'along', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'is', 'he', 'good', '||comma||', 'kramer', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', "he's", 'the', 'best', '||period||', '||period||', '||period||', 'and', 'the', 'worst', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'listen', 'to', 'me', '||period||', "i'm", 'never', 'gonna', 'have', 'a', 'child', '||period||', 'if', 'i', 'lose', 'this', 'frogger', 'high', 'score', '||comma||', "that's", 'it', 'for', 'me', '||period||', '||return||', '||return||', 'kramer:', 'believe', 'me', 'george', '||comma||', 'you', 'can', 'count', 'on', 'slippery', 'pete', '||period||', '||return||', '||return||', 'george:', 'slippery', 'pete', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', "don't", 'care', 'for', 'the', 'name', '||comma||', 'either', '||period||', 'in', 'fact', '||comma||', "that's", 'one', 'of', 'the', 'things', 'that', 'we', 'argue', 'about', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "i'm", 'gonna', 'find', 'a', 'guy', 'with', 'a', 'truck', '||period||', 'glc', 'must', 'live', 'on', '||exclammark||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', '||return||', '||return||', 'kramer:', 'dng', '||dash||', 'ga', '||dash||', 'gng', '||dash||', 'ga', '||dash||', 'wt', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', "how's", 'it', 'going', 'with', 'my', 'friend', '||questionmark||', '||return||', '||return||', 'jerry:', "she's", 'a', 'sentence', 'finisher', '||period||', "it's", 'like', 'dating', 'mad', 'libs', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "it's", 'a', 'cake', 'party', '||period||', "it's", 'the', 'third', 'one', 'today', '||period||', 'i', "didn't", 'realize', 'how', 'hooked', 'i', 'got', 'on', 'that', '400', 'sugar', 'rush', '||period||', '||return||', '||return||', 'jerry:', 'so', 'join', 'in', '||period||', '||return||', '||return||', 'elaine:', 'i', "can't", '||period||', 'i', 'denounced', 'them', '||period||', 'maybe', "i'll", 'go', 'raid', "peterman's", 'fridge', '||period||', "he's", 'always', 'got', 'a', 'truffle', 'or', 'something', 'in', 'there', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'wh', '||dash||', 'what', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'i', 'dropped', 'an', 'egg', '||period||', 'be', 'careful', '||period||', '||return||', '||return||', 'elaine:', 'anybody', 'here', '||questionmark||', 'peterboy', '||questionmark||', '||return||', '||return||', 'elaine:', 'ooh', '||comma||', "it's", 'a', 'cake', 'walk', '||period||', '||return||', '||return||', 'peterman', '||leftparen||', 'singing', '||rightparen||', ':', 'get', 'well', '||comma||', 'get', 'well', 'soon', 'we', 'wish', 'you', 'to', 'get', 'well', '||period||', '||return||', '||return||', 'peterman:', 'ha', 'ha', 'ha', 'ha', '||period||', '||period||', '||period||', 'oh', '||comma||', 'what', 'a', 'stirring', 'little', 'anthem', 'of', 'wellness', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||comma||', 'um', '||dash||', '||dash||', '||return||', '||return||', 'peterman:', 'we', 'missed', 'you', 'at', 'the', 'get', 'well', 'party', '||period||', 'poor', 'old', 'walt', 'has', 'a', 'polyp', 'in', 'the', 'duodenum', '||period||', "it's", 'benign', '||comma||', 'but', '||dash||', '||dash||', 'ooh', '||dash||', '||dash||', 'still', 'a', 'bastard', '||period||', 'oh', '||comma||', 'elaine', '||comma||', 'can', 'you', 'keep', 'a', 'secret', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'sir', '||comma||', 'i', "can't", '||period||', '||return||', '||return||', 'peterman:', 'inside', 'that', 'small', 'college', 'boy', 'minifridge', 'is', 'my', 'latest', 'acquisition', '||period||', 'a', 'slice', 'of', 'cake', 'from', 'the', 'wedding', 'of', 'king', 'edward', 'viii', 'to', 'wallis', 'simpson', '||comma||', 'circa', '1937', '||comma||', 'price', '||dash||', '||dash||', '$29', '||comma||', '000', '||period||', '||return||', '||return||', 'jerry:', 'well', 'lisi', '||comma||', 'that', 'was', 'another', '||dash||', '||return||', '||return||', 'lisi:', 'lovely', 'evening', '||period||', '||return||', '||return||', 'jerry:', 'really', 'bad', 'meal', '||period||', 'i', 'was', 'thinking', 'maybe', 'we', 'should', '||dash||', '||dash||', '||return||', '||return||', 'lisi:', 'go', 'for', 'a', 'hansom', 'cab', 'ride', '||questionmark||', '||return||', '||return||', 'jerry:', 'call', 'it', 'a', 'night', '||period||', "i'll", 'walk', 'you', 'home', '||period||', 'where', 'do', 'you', 'live', '||questionmark||', '||return||', '||return||', 'lisi:', '84th', 'street', '||comma||', 'right', 'off', 'riverside', 'park', '||period||', '||return||', '||return||', 'jerry:', 'riverside', 'park', '||period||', '||return||', '||return||', 'lisi:', 'i', 'thought', 'we', 'were', 'going', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'back', 'to', 'my', 'place', '||period||', "that's", 'right', '||period||', '||return||', '||return||', 'george:', 'so', 'you', 'slept', 'with', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'she', 'lives', 'right', 'off', 'riverside', 'park', '||period||', 'i', 'was', 'scared', 'of', 'the', 'lopper', '||comma||', 'so', 'i', 'let', 'her', 'stay', 'over', '||period||', '||return||', '||return||', 'george:', 'and', 'you', 'automatically', 'sleep', 'with', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'just', 'wanted', 'to', 'make', 'out', 'a', 'little', '||comma||', 'but', 'she', 'kind', 'of', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'finished', 'your', 'thought', '||period||', '||return||', '||return||', 'elaine:', 'guess', 'what', 'i', 'ate', '||period||', '||return||', '||return||', 'george:', 'an', 'ostrich', 'burger', '||period||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'a', '$29', '||comma||', '000', 'piece', 'of', 'cake', '||period||', 'peterman', 'got', 'it', 'at', 'the', 'duke', 'of', 'windsor', 'auction', '||period||', 'it', 'was', 'the', 'most', 'romantic', 'thing', "i've", 'ever', 'eaten', '||period||', '||return||', '||return||', 'jerry:', "how'd", 'it', 'taste', '||questionmark||', '||return||', '||return||', 'elaine:', 'a', 'little', 'stale', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'nudges', 'elaine', 'with', 'his', 'elbow', '||rightparen||', ':', 'so', '||comma||', 'uh', 'are', 'you', 'sleeping', 'with', 'peterman', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'nudges', 'george', 'with', 'her', 'elbow', '||rightparen||', ':', 'no', '||period||', 'he', "doesn't", 'know', 'i', 'ate', 'it', '||period||', 'in', 'fact', '||comma||', 'he', 'almost', 'caught', 'me', '||period||', 'i', 'have', 'to', 'sneak', 'back', 'in', 'and', 'even', 'it', 'out', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'they', 'say', 'ostrich', 'has', 'less', 'fat', '||comma||', 'but', 'you', 'eat', 'more', 'of', 'it', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'so', 'i', 'talked', 'to', 'lisi', 'and', 'she', 'has', 'got', 'a', 'big', 'surprise', 'for', 'you', '||period||', "she's", 'planning', 'a', 'weekend', 'trip', 'to', 'pennsylvania', 'dutch', 'country', '||period||', '||return||', '||return||', 'jerry:', 'pennsylvania', 'dutch', 'country', '||questionmark||', 'oh', '||comma||', "that's", 'the', 'serious', 'relationship', 'weekend', 'place', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'going', 'on', 'with', 'you', 'two', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'think', 'by', 'sleeping', 'with', 'her', '||comma||', 'i', 'may', 'have', 'sent', 'her', 'the', 'wrong', 'message', '||period||', '||return||', '||return||', 'george:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'elaine:', '400', 'sugar', 'fix', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'calling', 'this', 'off', 'right', 'now', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', 'you', 'are', 'way', 'past', 'the', 'phone', 'call', 'breakup', 'stage', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'not', 'going', 'over', 'there', '||period||', "that's", 'where', 'the', 'lopper', 'is', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', "it's", 'daylight', '||period||', 'it', "won't", 'take', 'you', 'that', 'long', '||period||', 'just', 'make', 'a', 'clean', 'break', '||period||', '||return||', '||return||', 'elaine:', 'just', 'a', 'little', 'off', 'the', 'side', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'no', 'point', 'in', 'wasting', '$1', '||comma||', '200', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'thinking', '||rightparen||', ':', 'oh', '||comma||', 'commander', '||comma||', "isn't", 'the', 'wedding', 'marvelous', '||questionmark||', 'more', 'cake', '||questionmark||', 'oh', '||comma||', 'i', "shouldn't", '||period||', 'i', "mustn't", '||period||', 'ah', '||comma||', 'what', 'the', 'hell', '||questionmark||', '||return||', '||return||', 'george:', 'now', '||comma||', 'each', 'of', 'you', 'is', 'here', 'because', "you're", 'the', 'best', 'at', 'what', 'you', 'do', '||period||', '||return||', '||return||', 'george:', 'slippery', 'pete', '||comma||', 'kramer', 'tells', 'me', 'you', 'are', 'one', 'hell', 'of', 'a', 'rogue', 'electrician', '||period||', 'and', 'shlomo', '||comma||', "you're", 'the', 'best', 'truck', 'driver', '||period||', '||return||', '||return||', 'shlomo:', 'i', "don't", 'know', 'if', "i'm", 'the', 'best', '||period||', '||return||', '||return||', 'george:', 'oh', '||period||', '||period||', '||period||', "you're", 'very', 'good', '||period||', '||return||', '||return||', 'shlomo:', "let's", 'say', '||quotemark||', 'good', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'ok', '||period||', 'good', '||period||', 'and', 'kramer', '||comma||', "you're", 'in', 'charge', 'of', 'taping', 'off', 'the', 'loading', 'zone', '||period||', '||return||', '||return||', 'kramer:', 'lock', 'and', 'load', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'you', 'think', 'you', 'can', 'handle', 'that', '||comma||', 'numb', 'nuts', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'come', 'on', '||comma||', 'now', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'that', 'was', 'my', 'mail', '||dash||', 'order', 'bride', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'you', "weren't", 'home', '||comma||', 'so', 'i', 'signed', 'for', 'her', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'it', "doesn't", 'give', 'you', 'the', 'right', 'to', 'make', 'out', 'with', 'her', '||period||', '||return||', '||return||', 'kramer:', 'you', "weren't", 'even', 'married', 'yet', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'all', 'right', '||comma||', 'calm', 'down', '||comma||', 'calm', 'down', '||period||', 'whatever', 'happened', 'in', 'the', 'past', 'is', 'past', '||period||', '||return||', '||return||', 'george:', 'now', '||comma||', 'this', 'is', 'the', 'basic', 'layout', 'for', "mario's", 'pizza', '||period||', '||return||', '||return||', 'shlomo:', 'so', 'what', 'kind', 'of', 'jail', 'time', 'are', 'we', 'looking', 'at', 'if', "we're", 'caught', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'slippery', 'pete:', "we're", 'stealing', 'this', 'thing', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', 'i', '||dash||', '||dash||', 'i', 'paid', 'for', 'it', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'i', 'thought', 'we', 'were', 'stealing', 'it', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'it', 'feels', 'like', "we're", 'stealing', 'it', '||period||', '||return||', '||return||', 'george:', "we're", 'not', 'stealing', 'it', '||period||', '||return||', '||return||', 'shlomo:', 'i', 'definitely', 'thought', "we're", 'stealing', 'it', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "let's", '||dash||', '||dash||', "let's", 'focus', '||period||', 'can', 'we', 'get', 'back', 'to', 'the', 'plan', '||questionmark||', '||return||', '||return||', 'slippery', 'pete:', 'well', '||comma||', 'i', 'need', 'a', 'battery', 'for', 'this', 'kind', 'of', 'a', 'job', '||period||', 'can', 'i', 'at', 'least', 'steal', 'a', 'battery', '||questionmark||', '||return||', '||return||', 'george:', 'fine', '||period||', 'steal', 'the', 'battery', '||period||', 'now', '||comma||', 'all', 'right', '||comma||', 'here', 'is', 'the', 'frogger', '||period||', 'this', 'is', 'the', 'front', 'door', '||comma||', 'and', 'this', 'is', 'the', 'outlet', '||period||', '||return||', '||return||', 'slippery', 'pete:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'outlet', '||questionmark||', '||return||', '||return||', 'slippery', 'pete:', 'mm', '||dash||', 'hmm', '||period||', '||return||', '||return||', 'george:', "that's", 'where', 'the', 'electricity', 'comes', 'out', '||period||', '||return||', '||return||', 'slippert', 'pete:', 'oh', '||comma||', 'you', 'mean', 'the', 'holes', '||period||', '||return||', '||return||', 'shlomo:', 'which', "one's", 'the', 'bathroom', '||questionmark||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'here', '||period||', '||return||', '||return||', 'shlomo:', 'they', 'put', 'the', 'frogger', 'with', 'the', 'toilet', '||questionmark||', 'yecchh', '||period||', '||return||', '||return||', 'george:', 'the', 'frogger', 'is', 'here', '||period||', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'i', 'thought', 'that', 'was', 'the', 'door', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'where', 'are', 'all', 'the', 'pizza', 'ovens', '||questionmark||', '||return||', '||return||', 'shlomo:', 'i', 'thought', 'the', 'bathroom', 'was', 'here', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'you', 'understand', 'now', '||questionmark||', "it's", 'not', 'that', 'complicated', '||period||', '||return||', '||return||', 'elaine:', 'i', 'need', 'to', 'replace', 'an', 'antique', 'piece', 'of', 'cake', '||period||', '||return||', '||return||', 'elaine:', 'do', 'you', 'have', 'anything', "that's", 'been', '||period||', '||period||', '||period||', 'you', 'know', '||comma||', 'laying', 'around', 'for', 'a', 'while', '||questionmark||', 'something', 'prewar', 'would', 'be', 'just', 'great', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'elaine', '||period||', 'what', '||comma||', 'you', 'got', 'the', 'munchies', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'kramer', '||comma||', 'i', 'am', 'in', 'big', '||period||', 'big', '||comma||', 'big', 'trouble', '||period||', 'i', 'need', 'a', 'cake', 'that', 'looks', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||dash||', '||dash||', "sotheby's", '||period||', 'yeah', '||period||', 'they', 'make', 'good', 'cake', '||period||', '||return||', '||return||', 'elaine:', 'do', 'any', 'of', 'these', 'look', 'close', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'but', 'i', 'know', "i've", 'seen', 'cake', 'just', 'like', 'that', '||period||', 'oh', '||dash||', '||dash||', "entenmann's", '||period||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', "entenmann's", '||questionmark||', 'from', 'the', 'supermarket', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'no', '||period||', "they're", 'not', 'really', 'in', 'the', 'supermarket', '||period||', 'yeah', '||comma||', 'they', 'got', 'their', 'own', 'case', 'at', 'the', 'end', 'of', 'the', 'aisle', '||period||', '||return||', '||return||', 'jerry:', 'hi', '||comma||', 'lisi', '||period||', '||return||', '||return||', 'lisi:', 'hi', '||comma||', 'honey', '||period||', 'is', 'that', 'a', 'bat', '||questionmark||', '||return||', '||return||', 'jerry:', 'uh', '||comma||', 'yeah', '||period||', 'i', 'found', 'it', 'on', 'the', 'street', '||period||', "it's", 'gotta', 'be', 'worth', 'something', '||period||', '||return||', '||return||', 'lisi:', 'so', '||comma||', 'what', 'do', 'you', 'want', 'to', 'do', '||comma||', 'sweetheart', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'before', 'we', 'do', 'anything', '||period||', '||period||', '||period||', 'maybe', 'we', 'should', 'talk', '||period||', '||return||', '||return||', 'montage:', 'nan', '||return||', '||return||', 'jerry:', 'then', 'this', 'pennsylvania', 'dutch', 'thing', 'comes', 'out', 'of', 'nowhere', '||period||', 'i', 'mean', '||comma||', 'how', 'am', 'i', 'supposed', 'to', 'respond', 'to', 'that', '||questionmark||', '||return||', '||return||', 'lisi:', 'then', 'may', 'i', 'say', 'something', '||period||', '||period||', '||period||', 'without', 'being', 'interrupted', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', "i'm", 'sorry', 'if', 'i', 'ruined', 'your', 'life', '||period||', "that's", 'exactly', 'what', 'i', 'set', 'out', 'to', 'do', '||period||', '||return||', '||return||', 'lisi:', 'uh', '||dash||', 'huh', '||period||', 'uh', '||dash||', 'huh', '||period||', 'mm', '||dash||', 'hmm', '||period||', 'uh', '||dash||', 'huh', '||period||', '||period||', '||period||', '||return||', '||return||', 'lisi:', 'are', 'you', 'afraid', 'to', 'kiss', 'me', 'in', 'public', '||questionmark||', '||return||', '||return||', 'jerry:', 'have', 'we', 'even', 'been', 'in', 'public', '||questionmark||', '||return||', '||return||', 'lisi:', 'so', 'now', "you're", 'going', 'to', 'tell', 'me', 'what', "i'm", 'thinking', '||period||', 'well', '||comma||', 'go', 'ahead', '||comma||', "'cause", "i'd", 'really', 'like', 'to', 'know', '||period||', '||return||', '||return||', 'jerry:', 'you', 'are', 'not', 'dumb', '||period||', "don't", 'say', 'that', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'these', 'beans', 'are', 'pretty', 'good', '||period||', '||return||', '||return||', 'lisi:', '20', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "i'm", 'sorry', "i'm", 'not', 'brad', '||period||', "i'm", 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'nice', 'to', 'meet', 'ya', '||exclammark||', '||return||', '||return||', 'lisi:', 'boy', '||comma||', 'did', 'your', 'mother', 'do', 'a', 'number', 'on', 'you', '||period||', '||return||', '||return||', 'lisi:', 'fine', '||period||', 'so', "it's", 'over', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'thank', 'god', '||period||', 'why', 'is', 'it', 'dark', 'out', '||questionmark||', 'what', 'time', 'is', 'it', '||questionmark||', '||return||', '||return||', 'lisi:', '930', '||period||', '||return||', '||return||', 'jerry:', "we've", 'been', 'breaking', 'up', 'for', '10', 'hours', '||questionmark||', '||return||', '||return||', 'lisi:', 'good', '||dash||', 'bye', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'lopper', '||period||', 'you', 'know', '||comma||', 'lisi', '||comma||', 'maybe', 'we', 'should', 'give', 'this', 'a', 'little', 'more', 'time', '||period||', 'see', 'how', 'it', 'looks', 'in', 'the', 'light', 'of', 'day', '||period||', '||return||', '||return||', 'lisi:', 'out', '||exclammark||', '||return||', '||return||', 'jerry:', 'lopper', '||period||', '||return||', '||return||', 'jerry:', 'lisi', '||comma||', 'lisi', '||period||', 'let', 'me', 'in', '||exclammark||', 'we', 'can', 'work', 'this', 'out', '||period||', 'i', 'was', 'wrong', '||comma||', 'you', 'were', 'right', '||period||', "i'll", 'do', 'anything', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'you', 'came', 'for', 'the', 'big', 'moment', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', "i'm", 'waiting', 'for', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'ha', 'ha', '||period||', "everything's", 'timed', 'out', 'to', 'perfection', '||comma||', 'jerry', '||period||', 'slippery', "pete's", 'got', 'the', 'frogger', 'running', 'on', 'battery', 'power', '||comma||', 'the', 'truck', 'will', 'be', 'there', 'any', 'minute', '||comma||', 'and', "kramer's", 'taped', 'out', 'the', 'loading', 'zone', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', 'sounds', 'great', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'yeah', '||period||', 'you', 'gotta', 'come', 'over', 'tonight', '||period||', 'we', 'can', 'play', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', "can't", '||period||', "i'm", 'busy', '||period||', "i'm", 'going', 'away', 'on', 'a', 'long', 'weekend', '||period||', '||return||', '||return||', 'george:', 'where', '||questionmark||', '||return||', '||return||', 'lisi:', 'look', 'what', 'i', 'found', '||period||', 'i', 'got', 'one', 'for', 'you', '||comma||', 'too', '||period||', '||return||', '||return||', 'jerry:', 'great', '||period||', 'uh', '||comma||', 'you', 'know', 'what', '||questionmark||', 'why', "don't", 'you', 'put', 'it', 'in', 'the', 'car', 'so', 'i', "don't", 'toss', 'it', 'in', 'that', 'dumpster', '||questionmark||', '||return||', '||return||', 'lisi:', 'ha', 'ha', '||period||', 'ok', '||period||', "i'll", 'meet', 'thee', 'in', 'front', 'of', 'your', 'place', '||comma||', '15', 'minutes', '||period||', '||return||', '||return||', 'jerry:', 'a', 'long', '||comma||', 'long', 'weekend', '||period||', '||return||', '||return||', 'george:', 'i', 'hear', 'thee', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||exclammark||', 'excellent', '||period||', "i'd", 'like', 'you', 'to', 'meet', 'a', 'friend', 'of', 'mine', '||comma||', 'irwin', 'lubeck', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hello', '||period||', '||return||', '||return||', 'lubeck:', 'charmed', '||period||', '||return||', '||return||', 'peterman:', 'all', 'right', '||comma||', 'brace', 'yourself', '||comma||', 'lubeck', '||period||', 'you', 'are', 'about', 'to', 'be', 'launched', 'via', 'pastry', 'back', 'to', 'the', 'wedding', 'of', 'one', 'of', 'the', 'most', 'dashing', 'and', 'romantic', 'nazi', 'sympathizers', 'of', 'the', 'entire', 'british', 'royal', 'family', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', "i'll", 'just', '||dash||', '||dash||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'no', 'elaine', '||comma||', 'stay', '||period||', 'lubeck', 'here', 'is', 'the', "world's", 'foremost', 'appraiser', 'of', 'vintage', 'pastry', '||period||', '||return||', '||return||', 'peterman:', 'all', 'right', '||comma||', 'lubeck', '||period||', 'how', 'much', 'is', 'she', 'worth', '||questionmark||', '||return||', '||return||', 'lubeck:', "i'd", 'say', 'about', '219', '||period||', '||return||', '||return||', 'peterman:', 'ha', 'ha', 'ha', 'ha', 'ha', '||exclammark||', '$219', '||comma||', '000', '||exclammark||', 'lubeck', '||comma||', 'you', 'glorious', 'titwillow', '||period||', 'you', 'just', 'made', 'me', 'a', 'profit', 'of', '$190', '||comma||', '000', '||period||', '||return||', '||return||', 'lubeck:', 'no', '||comma||', '$2', '||period||', '19', '||period||', "it's", 'an', "entenmann's", '||period||', '||return||', '||return||', 'peterman:', 'do', 'they', 'have', 'a', 'castle', 'at', 'windsor', '||questionmark||', '||return||', '||return||', 'lubeck:', 'no', '||period||', 'they', 'have', 'a', 'display', 'case', 'at', 'the', 'end', 'of', 'the', 'aisle', '||period||', '||return||', '||return||', 'peterman:', 'oh', '||comma||', 'good', 'lord', '||period||', '||return||', '||return||', 'lubeck:', 'you', 'all', 'right', '||comma||', 'peterman', '||questionmark||', 'you', 'look', 'ill', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'singing', '||rightparen||', ':', 'get', 'well', '||comma||', 'get', 'well', 'soon', '||comma||', 'we', 'want', 'you', 'to', 'get', 'well', '||period||', 'get', 'well', '||comma||', 'get', 'well', 'soon', 'we', 'want', 'you', 'to', 'get', 'well', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'guys', 'doing', '||questionmark||', '||return||', '||return||', 'shlomo:', 'eat', 'the', 'fly', '||period||', 'eat', 'the', 'fly', '||period||', 'got', 'him', '||exclammark||', '||return||', '||return||', 'george:', 'you', 'idiots', '||period||', "you're", 'gonna', 'wear', 'down', 'the', 'battery', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'the', 'batteries', 'are', 'fine', '||period||', "we've", 'got', '||period||', '||period||', '||period||', 'oh', '||comma||', 'god', '||period||', 'only', '3', 'minutes', 'left', '||period||', '||return||', '||return||', 'george:', 'quick', '||period||', 'get', 'this', 'thing', 'back', 'in', 'the', 'pizzeria', '||return||', '||return||', 'kramer:', 'george', '||comma||', 'they', 'closed', 'up', '||period||', '||return||', '||return||', 'george:', 'i', 'need', 'an', 'outlet', '||exclammark||', '||return||', '||return||', 'slippery', 'pete:', 'a', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'holes', '||exclammark||', 'i', 'need', 'holes', '||exclammark||', '||return||', '||return||', 'kramer:', 'the', "pharmacy's", 'still', 'open', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'kramer', '||comma||', 'you', 'block', 'off', 'traffic', '||period||', 'you', 'to', 'go', 'sweet', '||dash||', 'talk', 'the', 'pharmacist', '||period||', '||return||', '||return||', 'slippery', 'pete', '||leftparen||', 'to', 'george', '||rightparen||', ':', 'you', 'owe', 'me', 'a', 'quarter', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'slippery', 'pete', '||period||', 'kramer', '||comma||', 'hurry', 'up', '||exclammark||', '||return||', '||return||', 'kramer:', 'ahh', '||exclammark||', "i'm", 'out', '||exclammark||', 'no', 'tape', 'left', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'come', 'on', 'george', '||comma||', "i'll", 'help', 'you', 'push', 'it', 'across', '||period||', '||return||', '||return||', 'george:', 'wait', 'a', 'minute', '||period||', 'this', 'looks', 'familiar', '||period||', 'this', 'reminds', 'me', 'of', 'something', '||period||', 'i', 'can', 'do', 'this', '||period||', '||return||', '||return||', 'jerry:', 'by', 'yourself', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', "i've", 'been', 'preparing', 'for', 'this', 'moment', 'my', 'entire', 'life', '||period||', '||return||', '||return||', 'shlomo:', 'he', 'looks', 'like', 'a', 'frog', '||period||', '||return||', '||return||', 'slippery', 'pete:', 'so', 'do', 'you', '||period||', '||return||', '||return||', 'jerry:', 'game', 'over', '||period||', '||return||', '||return||', 'elaine:', 'mr', '||period||', 'peterman', '||comma||', 'you', 'wanted', 'to', 'see', 'me', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'up', 'until', 'a', 'moment', 'ago', '||comma||', 'i', 'was', 'convinced', 'that', 'i', 'was', 'on', 'the', 'receiving', 'end', 'of', 'one', 'of', 'the', 'oldest', "baker's", 'grift', 'in', 'the', 'books', '||dash||', '||dash||', 'the', "entenmann's", 'shim', '||dash||', 'sham', '||period||', '||return||', '||return||', 'elaine:', 'ohh', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', 'until', 'i', 'remembered', 'the', 'videotape', 'surveillance', 'system', 'that', 'i', 'installed', 'to', 'catch', 'other', '||dash||', 'walter', 'using', 'my', 'latrine', '||period||', 'but', 'it', 'also', 'caught', 'this', '||period||', '||return||', '||return||', 'ealine:', 'mr', '||period||', 'peterman', '||comma||', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', '||return||', '||return||', 'peterman:', 'elaine', '||comma||', 'i', 'have', 'a', 'question', 'for', 'you', '||period||', 'is', 'the', 'item', 'still', '||period||', '||period||', '||period||', 'with', 'you', '||questionmark||', '||return||', '||return||', 'elaine:', 'um', '||period||', '||period||', '||period||', 'as', 'far', 'as', 'i', 'know', '||period||', '||return||', '||return||', 'peterman:', 'do', 'you', 'know', 'what', 'happens', 'to', 'a', 'butter', '||dash||', 'based', 'frosting', 'after', 'six', 'decades', 'in', 'a', 'poorly', 'ventilated', 'english', 'basement', '||questionmark||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'i', 'guess', 'i', "hadn't", '||dash||', '||dash||', '||return||', '||return||', 'peterman:', 'well', '||comma||', 'i', 'have', 'a', 'feeling', 'that', 'what', 'you', 'are', 'about', 'to', 'go', 'through', 'is', 'punishment', 'enough', '||period||', 'dismissed', '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'to', 'waitress', '||rightparen||', ':', 'cup', 'of', 'tea', 'with', 'lemon', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'your', 'voice', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', "screamin'", 'at', 'hecklers', 'all', 'night', '||period||', 'the', 'last', 'time', 'i', 'open', 'for', 'a', 'rodeo', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'jerry', '||comma||', 'i', 'been', "thinkin'", '||period||', "i've", 'gotten', 'as', 'far', 'as', 'i', 'can', 'go', 'with', 'george', 'costanza', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'the', 'suicide', 'talk', 'or', 'the', 'nickname', 'talk', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'nickname', '||period||', 'george', '||period||', 'what', 'is', 'that', '||questionmark||', "it's", 'nothing', '||period||', "it's", 'got', 'no', 'snap', '||comma||', 'no', 'zip', '||period||', 'i', 'need', 'a', 'nickname', 'that', 'makes', 'people', 'light', 'up', '||period||', '||return||', '||return||', 'jerry:', 'you', 'mean', 'like', '||period||', '||period||', '||period||', 'liza', '||exclammark||', '||return||', '||return||', 'george:', 'but', 'i', 'was', 'thinking', '||period||', '||period||', '||period||', 't', '||dash||', 'bone', '||period||', '||return||', '||return||', 'jerry:', 'but', "there's", 'no', '||quotemark||', 't', '||quotemark||', 'in', 'your', 'name', '||period||', 'what', 'about', 'g', '||dash||', 'bone', '||questionmark||', '||return||', '||return||', 'george:', "there's", 'no', 'g', '||dash||', 'bone', '||period||', '||return||', '||return||', 'jerry:', "there's", 'a', 'g', '||dash||', 'spot', '||period||', '||return||', '||return||', 'george:', "that's", 'a', 'myth', '||period||', '||return||', '||return||', 'jerry:', 't', '||dash||', 'bone', '||comma||', 'the', 'ladies', 'are', 'gonna', 'love', 'ya', '||period||', '||return||', '||return||', 'elaine:', 'why', 'did', 'they', 'hire', 'you', 'for', 'a', 'rodeo', '||questionmark||', '||return||', '||return||', 'jerry:', 'they', 'heard', 'i', 'opened', 'for', 'kenny', 'rogers', 'once', '||period||', '||return||', '||return||', 'elaine:', "didn't", 'he', 'throw', 'you', 'off', 'a', 'bus', 'in', 'the', 'middle', 'of', 'alabama', 'or', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'i', 'had', 'that', "comin'", 'to', 'me', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'kenny', 'rogers', 'has', 'a', '||dash||', '||return||', '||return||', 'elaine', '||leftparen||', 'whispering', '||rightparen||', ':', 'why', 'did', 'you', 'get', 'a', 'maid', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "don't", 'have', 'to', 'whisper', '||period||', 'she', 'knows', "she's", 'a', 'maid', '||period||', '||return||', '||return||', 'elaine:', 'where', 'did', 'you', 'get', 'her', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'hired', 'her', 'from', 'a', 'service', '||exclammark||', '||return||', '||return||', 'maid:', 'all', 'done', '||period||', '||return||', '||return||', 'jerry:', 'thank', 'you', '||period||', 'nice', 'job', '||period||', '||return||', '||return||', 'maid:', 'is', 'this', 'mine', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', 'jerry', '||period||', 'you', "didn't", 'notice', '||questionmark||', '||return||', '||return||', 'jerry:', 'notice', 'what', '||questionmark||', "she's", 'not', 'really', 'even', 'a', 'maid', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'she', 'wants', 'to', 'be', 'an', 'actress', '||period||', '||period||', '||period||', 'or', 'a', '||comma||', 'uh', '||comma||', 'model', '||period||', '||period||', '||period||', 'or', 'a', 'dancer', '||period||', '||period||', '||period||', 'or', 'a', '||period||', '||period||', '||period||', 'news', 'woman', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||dash||', 'huh', '||period||', 'news', 'woman', '||period||', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'well', '||comma||', 'bad', 'news', '||comma||', 'boys', '||period||', 'my', 'life', 'is', 'over', '||period||', 'my', "girlfriend's", "movin'", 'away', '||period||', '||return||', '||return||', 'jerry:', 'you', 'have', 'a', 'girlfriend', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'where', 'have', 'you', 'been', '||questionmark||', '||return||', '||return||', 'jerry:', 'at', 'a', 'rodeo', '||period||', "where's", 'she', 'moving', '||questionmark||', '||return||', '||return||', 'kramer:', 'downtown', '||period||', '||return||', '||return||', 'elaine:', 'downtown', 'new', 'york', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'i', "don't", 'know', 'if', 'i', 'can', 'handle', 'one', 'of', 'these', 'long', '||dash||', 'distance', 'relationships', '||period||', '||return||', '||return||', 'jerry:', "it's", 'like', '10', 'minutes', 'by', 'subway', '||period||', '||return||', '||return||', 'kramer:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'jeez', '||exclammark||', 'well', '||comma||', "you've", 'got', 'a', 'maid', '||period||', "it's", 'a', 'whole', 'different', 'world', 'downtown', '||dash||', '||dash||', 'different', 'gap', '||comma||', 'different', 'tower', 'records', '||comma||', 'and', "she's", 'a', '646', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'the', 'new', 'area', 'code', '||period||', "they've", 'run', 'out', 'of', '242s', '||comma||', 'so', 'all', 'the', 'new', 'numbers', 'are', '646', '||period||', '||return||', '||return||', 'elaine:', 'i', 'was', 'a', '718', 'when', 'i', 'first', 'moved', 'here', '||period||', 'i', 'cried', 'every', 'night', '||period||', '||return||', '||return||', 'kramer:', 'listen', '||period||', 'heads', 'up', '||comma||', 'elaine', '||period||', "i'm", 'gonna', 'have', 'to', 'stop', 'by', 'later', 'and', 'pick', 'up', 'a', 'fax', '||period||', '||return||', '||return||', 'elaine:', 'at', 'work', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', 'at', 'your', 'apartment', '||period||', '||return||', '||return||', 'elaine:', 'i', "don't", 'have', 'a', 'fax', 'machine', '||period||', '||return||', '||return||', 'jerry:', 'here', 'we', 'go', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'now', 'what', 'are', 'we', 'gonna', 'do', '||questionmark||', '||leftparen||', 'to', 'jerry', '||rightparen||', 'see', '||questionmark||', 'this', 'is', 'why', 'you', 'should', 'get', 'a', 'fax', 'and', 'a', 'xerox', '||period||', '||return||', '||return||', 'jerry:', 'and', 'a', 'dead', 'bolt', '||period||', '||return||', '||return||', 'elaine:', 'then', 'maybe', 'you', 'have', 'a', 'fax', 'machine', '||period||', '||return||', '||return||', 'kramer:', 'you', 'just', 'blew', 'my', 'mind', '||period||', '||return||', '||return||', 'kruger:', "let's", 'order', 'lunch', '||period||', '||return||', '||return||', 'kruger:', 'mary', '||comma||', 'i', 'will', 'have', 'a', "chef's", 'salad', '||period||', '||return||', '||return||', 'male', 'worker:', 'turkey', 'sandwich', '||period||', '||return||', '||return||', 'george:', 't', '||dash||', 'bone', 'steak', '||period||', '||return||', '||return||', 'kruger:', 'for', 'lunch', '||questionmark||', '||return||', '||return||', 'george:', 'well', '||comma||', 'i', 'am', 'just', 'a', 't', '||dash||', 'bone', 'kinda', 'guy', '||period||', 'love', 'that', 't', '||dash||', 'bone', '||period||', 'in', 'fact', '||comma||', 'you', 'might', 'as', 'well', 'call', 'me', '||dash||', '||dash||', '||return||', '||return||', 'watkins:', 'that', 'sounds', 'good', '||period||', "i'll", 'have', 'one', '||comma||', 'too', '||period||', '||return||', '||return||', 'kruger:', 'watkins', '||comma||', "you're", "havin'", 'a', 't', '||dash||', 'bone', '||questionmark||', '||return||', '||return||', 'watkins:', 'i', 'love', "'em", '||period||', '||return||', '||return||', 'kruger:', 'well', '||comma||', 'then', 'we', 'should', 'call', 'you', 't', '||dash||', 'bone', '||period||', '||return||', '||return||', 'george:', 'uh', '||comma||', 'no', '||period||', 'no', '||comma||', 'we', "shouldn't", '||period||', '||return||', '||return||', 'kruger:', 't', '||dash||', 'bone', '||exclammark||', '||return||', '||return||', 'all', '||leftparen||', 'chanting', '||rightparen||', ':', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', 't', '||dash||', 'bone', '||exclammark||', '||return||', '||return||', 'elaine:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'machine:', 'you', 'have', '57', 'messages', '||period||', 'message', 'one', '||period||', '||period||', '||period||', '||return||', '||return||', 'machine:', 'message', 'two', '||period||', '||period||', '||period||', '||return||', '||return||', 'machine:', 'message', 'three', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', "it's", 'george', '||period||', 'listen', '||comma||', 'i', '||dash||', '||return||', '||return||', 'machine:', 'message', 'four', '||period||', '||period||', '||period||', '||return||', '||return||', 'ealine:', 'hello', '||questionmark||', '||return||', '||return||', 'elaine:', 'aah', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', 'cindy', '||comma||', 'the', 'place', 'looks', 'great', '||period||', '||return||', '||return||', 'cindy:', 'thanks', 'jerry', '||comma||', 'gotta', 'run', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', "i'll", 'see', 'ya', '||period||', '||return||', '||return||', 'cindy:', 'hi', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||exclammark||', "you're", "foolin'", 'around', 'with', 'your', 'maid', '||period||', 'that', 'is', 'a', 'wise', 'decision', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'do', 'you', 'think', 'i', 'would', 'go', 'willy', '||dash||', 'nilly', 'into', 'a', 'situation', 'so', 'obviously', 'fraught', 'with', 'potential', 'complications', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'are', 'paying', 'a', 'woman', 'to', 'come', 'to', 'your', 'house', 'and', 'sleep', 'with', 'you', '||period||', '||return||', '||return||', 'jerry:', 'no', '||period||', 'i', 'pay', 'her', 'to', 'clean', '||period||', 'the', 'rest', 'is', '||dash||', '||dash||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'a', 'health', 'plan', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'going', 'to', 'say', '||comma||', '||quotemark||', 'being', 'a', 'good', 'host', '||period||', '||quotemark||', '||return||', '||return||', 'elaine:', 'oh', '||dash||', 'ho', '||dash||', 'ho', '||period||', 'oh', '||period||', '||return||', '||return||', 'jerry:', 'but', 'the', 'point', 'is', 'we', 'have', 'our', 'personal', 'relationship', '||comma||', 'and', 'we', 'have', 'our', 'work', 'relationship', '||period||', "they're", 'separate', 'and', '||comma||', 'i', 'think', '||comma||', 'some', 'what', 'sophisticated', '||period||', '||return||', '||return||', 'elaine:', 'so', 'you', 'consider', 'this', 'a', 'relationship', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'i', 'do', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'have', 'you', 'been', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||comma||', 'we', 'have', '||period||', '||return||', '||return||', 'elaine:', 'where', 'did', 'you', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'store', '||period||', '||return||', '||return||', 'elaine:', 'mm', '||exclammark||', 'to', 'get', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'stuff', '||period||', '||return||', '||return||', 'elaine:', 'cleaning', 'supplies', '||questionmark||', '||return||', '||return||', 'jerry:', 'and', 'gum', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||period||', 'well', '||comma||', "there's", "nothin'", 'more', 'sophisticated', 'than', "diddlin'", 'the', 'maid', 'and', 'then', "chewin'", 'some', 'gum', '||period||', '||return||', '||return||', 'jerry:', "she's", 'not', 'a', 'maid', '||period||', 'she', 'might', 'be', 'a', 'news', 'woman', '||exclammark||', '||return||', '||return||', 'kramer:', 'hey', '||period||', 'well', '||comma||', 'i', 'just', 'saw', 'madeline', 'off', '||period||', 'yeah', '||period||', "she's", 'in', 'a', 'cab', 'and', '||dash||', '||dash||', 'nguh', 'nguh', 'nguh', '||dash||', '||dash||', 'on', 'her', 'way', '||period||', 'i', 'miss', 'her', 'already', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'kramer', '||comma||', 'what', 'was', 'it', 'you', 'were', 'having', 'faxed', 'to', 'my', 'house', 'every', '30', 'seconds', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'i', 'signed', 'up', 'for', 'a', 'food', 'delivery', 'service', '||comma||', 'now', "we're", "cookin'", '||period||', "that's", 'a', 'play', 'on', 'words', '||period||', 'you', 'know', '||comma||', "they're", 'faxing', 'me', 'the', 'menus', 'from', 'some', 'restaurants', '||period||', '||return||', '||return||', 'elaine:', 'which', 'ones', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'all', 'of', 'them', '||period||', "it's", 'the', 'deluxe', 'package', '||period||', '||return||', '||return||', 'elaine:', 'so', 'this', 'is', 'never', 'gonna', 'stop', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'it', 'better', 'not', '||period||', 'paid', 'for', 'the', 'whole', 'year', '||period||', 'so', '||comma||', 'should', 'i', 'pick', 'those', 'up', 'later', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'can', 'pick', "'em", 'up', 'right', 'now', '||period||', '||return||', '||return||', 'kramer:', 'ah', '||exclammark||', '||return||', '||return||', 'elaine', '||leftparen||', 'thinking', '||rightparen||', ':', 'i', 'wonder', 'if', 'anyone', 'knows', "he's", 'here', '||period||', 'if', 'he', 'just', 'disappeared', '||period||', '||period||', '||period||', 'would', 'anybody', 'notice', '||questionmark||', '||return||', '||return||', 'phone', 'man:', 'all', 'right', '||comma||', 'miss', 'benes', '||comma||', 'all', 'finished', '||period||', "here's", 'your', 'new', 'number', '||period||', '||return||', '||return||', 'elaine:', 'ahem', '||period||', '646', '||questionmark||', 'what', 'is', 'this', '||questionmark||', '||return||', '||return||', 'phone', 'man:', "that's", 'your', 'new', 'area', 'code', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', '646', 'was', 'just', 'for', 'new', 'numbers', '||period||', '||return||', '||return||', 'phone', 'man:', 'this', 'is', 'a', 'new', 'number', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "it's", 'not', 'a', 'new', 'number', '||period||', "it's", '||dash||', '||dash||', "it's", '||dash||', '||dash||', "it's", 'just', 'a', 'changed', 'number', '||period||', 'see', '||questionmark||', "it's", 'not', 'different', '||period||', "it's", 'the', 'same', '||comma||', 'just', '||period||', '||period||', '||period||', 'changed', '||period||', '||return||', '||return||', 'phone', 'man:', 'look', '||comma||', 'i', 'work', 'for', 'the', 'phone', 'company', '||period||', "i've", 'had', 'a', 'lot', 'of', 'experience', 'with', 'semantics', '||comma||', 'so', "don't", 'try', 'to', 'lure', 'me', 'into', 'some', 'maze', 'of', 'circular', 'logic', '||period||', '||return||', '||return||', 'elaine:', 'you', 'know', '||comma||', 'i', "could've", 'killed', 'you', '||comma||', 'and', 'no', 'one', "would've", 'known', '||period||', '||return||', '||return||', 'phone', 'man:', 'i', "could've", 'killed', 'you', '||comma||', 'and', 'no', 'one', "would've", 'known', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', "you're", 'still', 'on', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'kramer:', 'madeline', 'and', 'i', 'are', 'watching', 'quincy', 'together', '||period||', 'jerry', '||comma||', 'you', 'know', 'this', 'comes', 'on', 'at', 'the', 'same', 'time', 'here', 'as', 'it', 'does', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'really', '||questionmark||', "it's", 'tuesday', 'here', '||period||', 'what', 'day', 'is', 'it', 'there', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'into', 'phone', '||rightparen||', ':', "jerry's", 'teasing', '||period||', 'uh', '||dash||', 'oh', '||exclammark||', 'commercial', '||period||', 'oh', '||comma||', 'you', 'going', 'to', 'the', 'bathroom', '||questionmark||', 'yeah', '||period||', "i'll", 'go', '||comma||', 'too', '||period||', '||return||', '||return||', 'jerry:', 'madeline', 'stays', 'here', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 't', '||dash||', 'bone', '||exclammark||', '||return||', '||return||', 'george:', 'no', '||period||', 'no', 't', '||dash||', 'bone', '||period||', '||return||', '||return||', 'jerry:', 'no', 't', '||dash||', 'bone', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'from', 'bathroom', '||rightparen||', ':', 'hey', '||comma||', 'is', 'that', 't', '||dash||', 'bone', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'no', '||exclammark||', "there's", 'no', 't', '||dash||', 'bone', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'why', 'no', 't', '||dash||', 'bone', '||questionmark||', '||exclammark||', '||return||', '||return||', 'jerry:', 'why', 'no', 't', '||dash||', 'bone', '||questionmark||', '||return||', '||return||', 'george:', "'cause", 'neil', 'watkins', 'from', 'accounting', 'is', 't', '||dash||', 'bone', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', "i'm", 'back', '||period||', 'hey', '||comma||', 'you', 'wanna', 'play', 'cards', 'over', 'the', 'phone', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'hey', '||comma||', 'uh', '||comma||', 'listen', '||comma||', 'jerry', '||comma||', 'uh', '||comma||', "laundry's", "pilin'", 'up', 'there', '||period||', 'you', 'might', 'want', 'to', 'tell', 'your', 'girlfriend', '||period||', 'mmm', '||period||', 'yeah', '||period||', '||return||', '||return||', 'george:', 'your', 'girlfriend', 'is', "doin'", 'your', 'laundry', '||questionmark||', '||return||', '||return||', 'kramer', '||leftparen||', 'from', 'hallway', '||rightparen||', ':', "he's", 'sleeping', 'with', 'his', 'maid', '||exclammark||', '||return||', '||return||', 'george:', "you're", "sleepin'", 'with', 'the', 'maid', '||questionmark||', '||return||', '||return||', 'jerry:', 'yes', '||period||', '||return||', '||return||', 'george:', "i've", 'done', 'that', '||period||', 'did', 'you', 'ever', 'eat', 'an', 'ostrich', 'burger', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'man:', "you're", 'probably', 'one', 'of', 'those', 'women', 'who', "doesn't", 'like', 'to', 'give', 'out', 'her', 'number', '||period||', '||return||', '||return||', 'elaine:', 'no', '||comma||', "i'm", 'not', '||period||', 'here', 'you', 'go', '||period||', '||return||', '||return||', 'man:', '646', '||questionmark||', '||return||', '||return||', 'elaine:', "it's", 'a', 'new', 'area', 'code', '||period||', '||return||', '||return||', 'man:', 'what', 'area', '||questionmark||', 'new', 'jersey', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||comma||', 'no', '||period||', "it's", 'right', 'here', 'in', 'the', 'city', '||period||', "it's", 'the', 'same', 'as', '212', '||period||', 'they', 'just', 'multiplied', 'it', 'by', '3', '||comma||', 'and', 'then', 'they', 'added', 'one', 'to', 'the', 'middle', 'number', '||period||', "it's", 'the', 'same', '||period||', '||return||', '||return||', 'man:', 'do', 'i', 'have', 'to', 'dial', 'a', 'one', 'first', '||questionmark||', '||return||', '||return||', 'man:', "i'm", 'really', 'kinda', "seein'", 'somebody', '||period||', '||return||', '||return||', 'elaine:', 'yeah', '||questionmark||', 'well', '||comma||', 'so', 'am', 'i', '||exclammark||', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', 'can', 'i', 'talk', 'to', 'you', 'for', 'a', 'second', 'there', '||comma||', 'watkins', '||questionmark||', '||return||', '||return||', 'watkins:', "it's", 't', '||dash||', 'bone', '||period||', '||return||', '||return||', 'george:', 'the', 'thing', 'is', '||period||', '||period||', '||period||', "i'm", 'supposed', 'to', 'be', 't', '||dash||', 'bone', '||period||', '||return||', '||return||', 'watkins:', 'heh', 'heh', '||period||', "you're", 'not', 'a', 't', '||dash||', 'bone', '||period||', "you're", 'a', 'perfect', 'george', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', 'now', '||comma||', 'you', 'listen', 'to', 'me', '||exclammark||', '||return||', '||return||', 'kruger:', 'hey', '||comma||', 'look', 'at', 'george', '||period||', "he's", "givin'", 'it', 'to', 't', '||dash||', 'bone', '||period||', "he's", "jumpin'", 'up', 'and', 'down', 'like', 'some', 'kind', 'of', 'monkey', '||period||', 'hey', '||comma||', 'what', 'was', 'the', 'name', 'of', 'that', 'monkey', 'that', 'could', 'read', 'sign', 'language', '||questionmark||', '||return||', '||return||', 'watkins:', 'all', 'right', '||comma||', 'you', 'can', 'have', 't', '||dash||', 'bone', '||period||', 'stop', 'crying', '||period||', '||return||', '||return||', 'george', '||leftparen||', 'sniffling', '||rightparen||', ':', "i'm", 'not', 'crying', '||period||', 'and', 'i', "shouldn't", 'have', 'said', 'that', 'about', 'your', 'wife', '||period||', 'please', 'accept', 'my', 'apologies', '||period||', '||return||', '||return||', 'george:', 'ok', '||comma||', 'everybody', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'have', 'an', 'announcement', 'to', 'make', '||period||', 'from', 'now', 'on', '||comma||', 'i', 'will', 'be', 'known', 'as', '||dash||', '||return||', '||return||', 'kruger:', 'koko', 'the', 'monkey', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'all', '||leftparen||', 'chanting', '||rightparen||', ':', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', 'koko', '||exclammark||', '||return||', '||return||', 'man:', 'thank', 'you', 'both', 'for', 'being', 'here', '||period||', '||return||', '||return||', 'ealine:', 'um', '||comma||', 'excuse', 'me', '||period||', 'i', 'live', 'in', 'the', 'building', '||period||', 'did', 'something', 'happen', 'to', 'mrs', '||period||', 'krantz', '||questionmark||', '||return||', '||return||', 'man:', 'she', 'passed', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "i'm", 'so', 'sorry', '||period||', '||return||', '||return||', 'man:', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', 'a', 'quick', 'question', '||dash||', '||dash||', 'did', 'she', 'by', 'any', 'chance', 'have', 'a', '212', 'phone', 'number', '||questionmark||', '||return||', '||return||', 'cindy:', 'i', "can't", 'find', 'my', 'earring', '||period||', 'oh', '||comma||', 'here', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'listen', '||comma||', 'can', 'i', 'borrow', 'your', 'suitcases', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "it's", 'in', 'your', 'closet', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'i', 'looked', '||period||', '||return||', '||return||', 'jerry:', "they're", 'behind', 'my', 'skis', 'and', 'my', 'tennis', 'racket', '||period||', '||return||', '||return||', 'kramer:', 'thanks', '||comma||', 'buddy', '||period||', '||return||', '||return||', 'jerry:', 'where', 'you', "goin'", '||questionmark||', '||return||', '||return||', 'kramer:', 'huh', '||questionmark||', 'well', '||comma||', "i'm", "gettin'", 'out', 'of', 'town', '||period||', "i'm", 'gonna', 'visit', 'madeline', 'for', 'the', 'weekend', '||period||', 'you', 'know', '||comma||', 'this', 'place', 'is', "lookin'", 'kinda', 'messy', '||period||', 'what', 'happened', 'to', 'cindy', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "she's", 'here', '||period||', 'she', 'just', "didn't", 'get', 'around', 'to', 'it', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', '||return||', '||return||', 'cindy:', 'hi', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'cindy:', 'thanks', '||comma||', 'jerry', '||period||', 'bye', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', "what's", 'the', 'matter', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'did', 'i', 'just', 'pay', 'for', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||dash||', 'oh', '||period||', "you're", 'a', 'john', '||period||', '||return||', '||return||', 'jerry:', 'koko', '||questionmark||', '||return||', '||return||', 'george:', 'koko', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'probably', 'the', 'most', 'intelligent', 'ape', 'there', 'is', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'so', '||comma||', "how's", 'cindy', 'the', 'maid', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "everything's", "goin'", 'great', 'except', '||comma||', 'basically', '||comma||', "i'm", "payin'", 'for', 'sex', '||period||', '||return||', '||return||', 'george:', 'tell', 'me', 'about', 'it', '||period||', 'i', 'went', 'out', 'with', 'this', 'girl', 'last', 'week', '||period||', 'first', 'i', 'had', 'to', 'pay', 'for', 'dinner', '||comma||', 'then', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'george', '||period||', "she's", 'coming', 'over', 'and', 'not', 'cleaning', '||period||', "it's", 'like', "i'm", "seein'", 'a', 'prostitute', '||period||', '||return||', '||return||', 'george:', 'how', 'much', 'you', 'pay', 'this', 'maid', '||questionmark||', '||return||', '||return||', 'jerry:', '40', '||period||', '||return||', '||return||', 'george:', '40', '||questionmark||', "i'm", "payin'", '60', 'to', 'my', 'maid', '||period||', 'she', "doesn't", 'do', 'laundry', 'and', "i'm", "gettin'", "nothin'", '||period||', 'all', 'right', '||period||', 'once', 'she', 'pinched', 'my', 'ass', '||comma||', 'but', 'i', "don't", 'know', 'what', 'that', 'was', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'what', 'this', 'is', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||period||', 'look', 'at', 'that', '||period||', '||return||', '||return||', 'jerry:', 'ooh', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'you', "wouldn't", 'believe', 'what', "it's", 'like', 'down', 'there', '||period||', 'taxicab', 'drivers', 'are', 'insane', '||period||', 'you', 'know', '||comma||', 'everybody', 'is', 'in', 'a', 'hurry', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'eat', 'with', 'you', "leanin'", 'over', 'like', 'this', '||period||', 'just', 'look', 'straight', 'forward', '||period||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'now', 'i', "can't", 'see', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'i', 'look', 'about', 'the', 'same', '||period||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'was', 'talking', 'to', 'him', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'never', 'mind', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||period||', "what'd", 'he', 'say', '||questionmark||', '||return||', '||return||', 'george:', 'never', 'mind', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', 'come', 'on', '||period||', "what'd", 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'come', 'on', '||period||', "where'd", 'you', 'go', '||questionmark||', '||return||', '||return||', 'jerry:', 'go', 'back', '||period||', '||return||', '||return||', 'kramer:', 'eh', '||exclammark||', 'come', 'on', '||period||', 'what', 'did', 'you', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'said', '||comma||', 'never', 'mind', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', 'i', 'know', 'that', '||period||', 'uh', '||comma||', 'uh', '||period||', '||return||', '||return||', 'jerry:', 'i', 'hate', 'the', 'counter', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||period||', '||return||', '||return||', 'elaine:', 'i', 'hate', 'the', 'counter', '||period||', '||return||', '||return||', 'kramer:', "who's", 'that', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'to', 'jerry', '||rightparen||', ':', 'well', '||comma||', 'i', 'got', 'a', '212', 'number', 'from', 'this', 'little', 'old', 'lady', 'in', 'my', 'building', '||dash||', '||dash||', 'mrs', '||period||', 'krantz', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'she', "didn't", 'mind', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'she', 'died', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "that's", 'great', '||period||', '||return||', '||return||', 'george:', 'what', 'happened', 'to', 'mrs', '||period||', 'krantz', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', 'got', 'a', 'new', 'number', 'because', 'she', 'died', '||period||', '||return||', '||return||', 'kramer:', 'newman', 'died', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', 'did', 'he', 'say', '||questionmark||', '||return||', '||return||', 'jerry:', 'some', 'new', 'kind', 'of', 'pie', '||period||', '||return||', '||return||', 'george:', "i'll", 'try', 'a', 'piece', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "who's", 'down', 'there', '||questionmark||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "there's", 'a', 'booth', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||period||', '||return||', '||return||', 'kramer:', 'did', 'you', 'hear', 'about', 'newman', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'so', "how's", 'it', "goin'", 'at', 'work', '||questionmark||', 'they', 'get', 'tired', 'of', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'double', 'zero', '||questionmark||', '||return||', '||return||', 'george:', "it's", '||quotemark||', 'ooh', '||quotemark||', 'as', 'in', '||quotemark||', 'ooh', 'ooh', 'ah', 'ah', '||period||', '||quotemark||', '||return||', '||return||', 'cindy:', 'your', "nickname's", 'koko', '||questionmark||', 'one', 'of', 'the', 'girls', 'down', 'at', 'the', 'maid', 'service', 'is', 'named', 'coco', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', 'coco', '||questionmark||', '||return||', '||return||', 'cindy:', 'yeah', '||period||', 'coco', '||period||', 'that', "girl's", 'all', 'right', '||period||', '||return||', '||return||', 'george:', 'you', 'know', '||comma||', 'if', 'i', 'could', 'get', 'this', 'coco', 'woman', 'down', 'to', 'kruger', '||comma||', 'they', "wouldn't", 'be', 'able', 'to', 'call', 'me', 'koko', 'anymore', 'because', 'kruger', 'would', 'never', 'allow', '2', 'kokos', '||period||', '||return||', '||return||', 'jerry:', 'sounds', 'like', 'he', 'runs', 'a', 'real', 'tight', 'ship', '||period||', '||return||', '||return||', 'george:', 'say', 'good', '||dash||', 'bye', 'to', 'koko', '||period||', '||return||', '||return||', 'jerry:', 'good', '||dash||', 'bye', '||comma||', 'koko', '||period||', '||return||', '||return||', 'kramer:', 'bye', '||comma||', 'koko', '||period||', 'whew', '||exclammark||', 'jerry', '||comma||', 'this', 'relationship', 'is', 'killing', 'me', '||period||', 'the', 'distance', '||comma||', 'the', 'longing', '||comma||', 'the', 'distance', '||comma||', 'the', '||dash||', '||dash||', 'you', 'know', '||comma||', 'i', "didn't", 'realize', 'it', '||comma||', 'but', "i'm", 'a', 'needy', 'person', '||period||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'maybe', 'this', 'relationship', "isn't", 'for', 'you', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'yeah', '||questionmark||', 'so', 'what', 'am', 'i', 'supposed', 'to', 'do', '||comma||', 'be', 'more', 'like', 'you', '||questionmark||', 'all', 'sealed', 'up', 'in', 'here', '||comma||', 'emotionally', 'unavailable', '||comma||', 'paying', 'scrubwomen', 'for', 'sexual', 'favors', '||exclammark||', 'no', '||exclammark||', 'jerry', '||comma||', 'i', "won't", 'be', 'like', 'you', '||exclammark||', 'never', '||exclammark||', "i'll", 'never', 'be', 'like', 'you', '||exclammark||', '||return||', '||return||', 'cindy:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "didn't", 'hear', 'anything', '||period||', '||return||', '||return||', 'cindy:', 'all', 'right', '||comma||', "i'm", "takin'", 'off', '||period||', "aren't", 'you', 'forgetting', 'something', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'right', '||exclammark||', 'hey', '||comma||', 'it', 'was', 'great', 'seeing', 'you', 'again', '||period||', 'i', 'love', 'your', 'outfit', '||period||', '||return||', '||return||', 'cindy:', 'no', '||period||', 'my', 'money', '||period||', '||return||', '||return||', 'jerry:', 'for', 'what', '||questionmark||', '||return||', '||return||', 'cindy:', 'for', 'my', 'maid', 'services', '||period||', 'you', 'booked', 'me', 'for', 'today', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', "didn't", 'really', 'do', 'any', 'work', '||period||', '||return||', '||return||', 'cindy:', 'i', 'made', 'the', 'bed', '||period||', '||return||', '||return||', 'jerry:', 'but', 'you', 'took', 'a', 'nap', 'in', 'it', '||period||', '||return||', '||return||', 'cindy:', 'so', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'thought', 'that', 'was', 'kind', 'of', 'girlfriend', 'bed', 'making', '||period||', '||return||', '||return||', 'cindy:', 'no', '||period||', 'that', 'was', 'the', 'maid', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'who', 'took', 'the', 'nap', '||questionmark||', '||return||', '||return||', 'cindy:', 'the', 'girlfriend', '||period||', '||return||', '||return||', 'jerry:', '$40', 'seems', 'kind', 'of', 'steep', 'for', 'a', 'nap', '||period||', '||return||', '||return||', 'cindy:', 'so', '||comma||', 'what', 'are', 'you', 'saying', '||questionmark||', 'that', "i'm", 'a', 'bad', 'maid', 'or', 'some', 'kind', 'of', 'a', 'prostitute', '||questionmark||', '||return||', '||return||', 'jerry:', 'ho', '||comma||', 'ho', '||period||', '||period||', '||period||', 'ho', '||exclammark||', 'hold', 'on', '||period||', "let's", 'keep', 'this', 'sophisticated', '||period||', '||return||', '||return||', 'cindy:', 'you', 'know', '||comma||', 'i', "don't", 'think', 'i', 'want', 'to', 'be', 'your', 'girlfriend', 'or', 'your', 'maid', '||period||', '||return||', '||return||', 'jerry:', 'so', 'is', 'this', 'a', 'breakup/quitting', '||questionmark||', '||return||', '||return||', 'cindy:', 'yeah', '||period||', "don't", 'ever', 'call', 'me', 'or', 'hire', 'me', 'again', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||questionmark||', 'well', '||comma||', 'then', '||comma||', "we're", 'through', '||exclammark||', 'and', "you're", 'fired', '||exclammark||', '||return||', '||return||', 'phone', 'man:', 'sign', 'here', '||period||', '||return||', '||return||', 'elaine:', 'yes', '||exclammark||', '212', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'what', 'happened', 'to', 'the', 'guy', 'i', 'had', 'last', 'time', '||questionmark||', '||return||', '||return||', 'phone', 'man:', 'oh', '||comma||', 'you', 'know', '||comma||', "it's", 'an', 'odd', 'thing', '||period||', 'he', 'went', 'out', 'on', 'a', 'job', 'and', 'never', 'came', 'back', '||period||', 'nobody', 'knows', 'what', 'happened', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||exclammark||', 'i', 'am', 'back', 'in', 'the', 'game', '||period||', '||return||', '||return||', 'elaine:', 'hello', '||questionmark||', '||return||', '||return||', 'boy:', 'gammy', '||exclammark||', '||return||', '||return||', 'elaine:', 'no', '||period||', 'you', 'got', 'the', 'wrong', 'number', '||comma||', 'kid', '||period||', '||return||', '||return||', 'boy:', 'gammy', 'krantz', '||comma||', "it's", 'your', 'grandson', 'bobby', '||period||', 'why', "haven't", 'you', 'called', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||period||', '||period||', '||period||', 'nuts', '||period||', '||return||', '||return||', 'boy:', 'do', 'you', 'hate', 'me', "'cause", 'of', 'my', 'lazy', 'eye', '||questionmark||', '||return||', '||return||', 'elaine:', 'no', '||period||', "it's", 'just', 'that', "i've", 'been', 'kind', 'of', 'buried', 'over', 'here', '||period||', '||return||', '||return||', 'jerry:', 'so', 'the', 'kid', "doesn't", 'know', 'his', 'grandmother', 'is', 'dead', '||questionmark||', 'g', '||dash||', '5', '||questionmark||', '||return||', '||return||', 'elaine:', 'hit', '||period||', 'no', '||period||', 'i', 'guess', 'his', 'parents', "didn't", 'want', 'to', 'tell', 'him', '||period||', 'b', '||dash||', '2', '||questionmark||', '||return||', '||return||', 'jerry:', 'miss', '||period||', '||return||', '||return||', 'elaine:', 'he', 'called', '6', 'times', 'yesterday', '||period||', 'what', 'a', 'nightmare', 'it', 'must', 'be', 'to', 'have', 'a', 'real', 'family', '||period||', '||return||', '||return||', 'jerry:', 'i', "wouldn't", 'worry', 'about', 'it', '||period||', 'b', '||dash||', '6', '||questionmark||', '||return||', '||return||', 'elaine:', 'hit', '||period||', 'uhh', '||period||', '||period||', '||period||', 'you', 'sank', 'my', 'submarine', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||questionmark||', '||return||', '||return||', 'computer', 'voice:', 'you', 'have', 'a', 'collect', 'call', 'from', '||dash||', '||dash||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'buddy', '||comma||', "don't", 'say', 'no', '||exclammark||', '||return||', '||return||', 'jerry:', 'i', 'accept', '||period||', '||return||', '||return||', 'kramer:', 'i', 'went', 'down', 'to', "madeline's", '||period||', 'i', 'told', 'her', '||comma||', '||quotemark||', 'you', 'gotta', 'move', '||comma||', 'or', "it's", 'over', '||period||', '||quotemark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'think', "it's", 'over', '||period||', 'we', 'had', 'a', 'big', 'fight', '||comma||', 'she', 'threw', 'me', 'out', '||comma||', 'i', 'started', "walkin'", '||comma||', 'and', 'now', "i'm", 'lost', 'downtown', '||exclammark||', 'i', "don't", 'have', 'any', 'money', '||period||', 'i', "don't", 'recognize', 'anybody', '||period||', 'i', 'miss', 'home', '||comma||', 'and', 'i', "don't", 'even', 'know', 'how', 'to', 'get', 'there', '||period||', '||return||', '||return||', 'jerry:', "what's", 'around', 'you', '||questionmark||', '||return||', '||return||', 'kramer:', "i'm", "lookin'", 'at', "ray's", 'pizza', '||period||', 'you', 'know', 'where', 'that', 'is', '||questionmark||', '||return||', '||return||', 'jerry:', 'is', 'it', 'famous', "ray's", '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||period||', "it's", 'original', "ray's", '||period||', '||return||', '||return||', 'jerry:', 'famous', 'original', "ray's", '||questionmark||', '||return||', '||return||', 'kramer:', "it's", 'just', 'original', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'street', 'are', 'you', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', "i'm", 'on', 'first', 'and', 'first', '||period||', 'how', 'can', 'the', 'same', 'street', 'intersect', 'with', 'itself', '||questionmark||', 'i', 'must', 'be', 'at', 'the', 'nexus', 'of', 'the', 'universe', '||period||', '||return||', '||return||', 'jerry:', 'just', 'wait', 'there', '||period||', "i'll", 'pick', 'you', 'up', '||comma||', 'and', '||comma||', 'kramer', '||comma||', 'stay', 'alive', 'no', 'matter', 'what', 'occurs', '||comma||', 'i', 'will', 'find', 'you', '||exclammark||', '||return||', '||return||', 'kramer:', 'aah', '||exclammark||', '||return||', '||return||', 'man:', 'you', 'steinfeld', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'man:', 'my', 'name', 'is', 'maxwell', '||period||', "i'm", 'from', 'maid', 'to', 'order', '||period||', "it's", 'a', 'pun', '||period||', 'i', 'sent', 'one', 'of', 'my', 'girls', 'over', 'to', 'your', 'place', '||period||', '||return||', '||return||', 'jerry:', 'cindy', '||period||', '||return||', '||return||', 'man:', 'she', 'says', 'she', 'had', 'a', 'little', 'problem', 'with', 'you', '||period||', 'you', "didn't", 'pay', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', '||comma||', 'she', "didn't", 'really', 'do', 'what', 'she', 'was', 'supposed', 'to', 'do', '||period||', '||return||', '||return||', 'man:', 'oh', '||comma||', 'yeah', '||questionmark||', 'she', 'told', 'me', 'what', 'you', 'like', '||period||', "you're", 'a', 'little', 'sickie', '||comma||', "aren't", 'you', '||questionmark||', 'disinfectant', 'on', 'the', 'blinds', '||comma||', 'vacuuming', 'the', 'counter', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'come', 'on', '||period||', 'come', 'on', '||period||', 'i', 'gotta', 'live', 'around', 'here', '||period||', '||return||', '||return||', 'man:', 'you', 'know', 'what', 'i', 'do', 'to', 'people', 'who', 'stiff', 'me', 'on', 'a', 'job', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'man:', 'well', '||comma||', 'it', 'kinda', 'depends', 'on', 'the', 'situation', '||comma||', 'but', 'if', 'i', "don't", 'get', 'my', 'money', 'from', 'you', '||comma||', "i'm", 'gonna', 'get', 'it', 'from', 'her', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'want', 'to', 'make', 'trouble', '||period||', 'you', 'want', 'the', 'money', '||questionmark||', 'here', '||period||', '||return||', '||return||', 'man:', 'hey', '||exclammark||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||exclammark||', 'whoa', '||exclammark||', 'give', 'it', 'to', 'the', 'girl', '||period||', "i'm", 'an', 'independent', 'contractor', '||period||', 'tax', 'purposes', '||period||', '||return||', '||return||', 'elaine:', 'bobby', '||comma||', 'you', 'gotta', 'stop', 'calling', 'your', 'gammy', '||period||', 'why', '||questionmark||', 'because', 'sometimes', 'you', 'call', 'very', 'early', 'in', 'the', 'morning', 'when', 'gammy', 'has', 'been', 'out', 'late', 'the', 'night', 'before', 'and', 'sometimes', 'when', "gammy's", 'not', 'alone', '||period||', 'your', 'parents', 'still', "haven't", 'said', 'anything', 'to', 'you', 'about', 'your', 'gammy', '||questionmark||', '||leftparen||', 'sighs', '||rightparen||', 'all', 'right', '||comma||', 'here', 'we', 'go', '||period||', '||leftparen||', 'coughing', '||rightparen||', 'gammy', "doesn't", 'feel', 'so', 'good', '||period||', 'i', 'think', 'gammy', 'might', 'be', 'dying', '||period||', 'yep', '||period||', 'yep', '||period||', 'ok', '||period||', 'good', '||dash||', 'bye', '||comma||', 'bobby', '||period||', "don't", 'call', 'anymore', '||period||', "i'm", 'dead', 'now', '||period||', 'gotta', 'go', '||period||', '||return||', '||return||', 'bobby:', '9', '||dash||', '1', '||dash||', '1', '||period||', '||return||', '||return||', 'jerry:', 'nexus', 'of', 'the', 'universe', '||period||', 'hey', '||comma||', 'cindy', '||period||', 'cindy', '||period||', '||return||', '||return||', 'cindy:', 'what', 'do', 'you', 'want', '||questionmark||', '||return||', '||return||', 'jerry:', 'here', '||period||', 'i', 'got', 'your', 'money', '||period||', '||return||', '||return||', 'cindy:', 'i', "don't", 'want', 'any', 'money', 'from', 'you', '||period||', '||return||', '||return||', 'jerry:', 'come', 'on', '||period||', 'take', 'it', '||period||', "it's", 'money', '||period||', 'let', 'me', 'give', 'it', 'to', 'ya', '||period||', '||return||', '||return||', 'police:', 'looking', 'for', 'a', 'good', 'time', '||comma||', 'sir', '||questionmark||', 'you', 'wanna', 'step', 'out', 'of', 'the', 'car', '||comma||', 'sickie', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'this', 'is', 'all', 'very', 'sophisticated', '||period||', '||return||', '||return||', 'fireman:', 'all', 'right', '||comma||', 'hang', 'on', '||comma||', 'gammy', '||exclammark||', "you're", 'gonna', 'make', 'it', '||exclammark||', '||return||', '||return||', 'elaine:', 'aah', '||exclammark||', '||return||', '||return||', 'maxwell:', 'hey', '||comma||', 'you', 'look', 'a', 'little', 'lost', '||period||', 'you', 'from', 'around', 'here', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', '||period||', '||return||', '||return||', 'maxwell:', 'you', 'know', 'where', "you're", 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'not', 'really', '||period||', 'my', 'friend', 'was', 'supposed', 'to', 'pick', 'me', 'up', '||comma||', 'but', 'i', "don't", 'know', 'where', 'he', 'is', '||period||', '||return||', '||return||', 'maxwell:', "doesn't", 'sound', 'like', 'much', 'of', 'a', 'friend', '||period||', 'you', 'got', 'any', 'money', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'no', '||period||', '||return||', '||return||', 'maxwell:', 'you', 'wanna', 'make', 'some', '||questionmark||', '||return||', '||return||', 'kramer:', 'ok', '||period||', '||return||', '||return||', 'maxwell:', 'do', 'you', 'know', 'how', 'to', 'use', 'a', 'mop', 'wringer', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'maxwell:', 'why', "don't", 'you', 'get', 'in', 'the', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'hi', '||period||', 'ahh', '||period||', '||period||', '||period||', 'these', 'are', 'soft', 'seats', '||period||', '||return||', '||return||', 'kruger:', 'hey', '||comma||', 'koko', '||comma||', "who's", 'this', '||questionmark||', '||return||', '||return||', 'george:', 'this', 'is', 'our', 'new', 'vice', '||dash||', 'president', 'of', 'acquisitions', '||comma||', 'sir', '||period||', '||return||', '||return||', 'kruger:', 'so', "you're", 'just', 'hiring', 'new', 'people', 'now', '||questionmark||', "that's", 'your', 'job', '||comma||', 'to', 'hire', 'people', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||questionmark||', '||return||', '||return||', 'kruger:', 'ok', '||comma||', 'good', 'enough', 'for', 'me', '||comma||', 'koko', '||period||', '||return||', '||return||', 'kruger:', 'ahem', '||period||', 'now', '||comma||', "what's", 'your', 'name', '||questionmark||', '||return||', '||return||', 'coco:', 'my', 'name', 'is', 'coco', '||period||', 'coco', 'higgins', '||period||', '||return||', '||return||', 'george:', 'coco', '||questionmark||', '||return||', '||return||', 'kruger:', 'we', "can't", 'have', '2', 'cocos', '||period||', 'so', 'i', 'guess', "you're", 'back', 'to', 'being', 'george', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'it', 'was', 'a', 'hell', 'of', 'a', 'ride', '||period||', '||return||', '||return||', 'kruger:', 'all', 'right', '||comma||', 'the', 'grace', 'building', '||period||', "there's", 'a', 'big', 'stain', 'on', 'the', 'front', '||period||', 'how', 'do', 'we', 'get', 'it', 'off', '||questionmark||', '||return||', '||return||', 'coco:', 'when', 'i', 'was', 'a', 'little', 'girl', 'in', 'jamaica', '||comma||', 'my', 'gammy', 'taught', 'me', 'to', 'take', 'a', 'wet', 'rag', 'and', 'in', 'a', 'circ', '||dash||', '||dash||', '||return||', '||return||', 'george:', 'ah', '||comma||', 'excuse', 'me', '||comma||', 'vice', '||dash||', 'president', 'coco', '||comma||', 'no', 'one', 'cares', 'about', 'your', 'gammy', '||period||', '||return||', '||return||', 'coco:', 'what', 'did', 'you', 'say', 'about', 'my', 'gammy', '||questionmark||', '||return||', '||return||', 'george:', 'forget', 'gammy', '||period||', '||return||', '||return||', 'kruger:', "who's", 'gammy', '||questionmark||', '||return||', '||return||', 'george:', "there's", 'no', 'gammy', '||period||', '||return||', '||return||', 'kruger:', 'maybe', 'there', 'should', 'be', 'a', 'gammy', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'kruger:', 'george', '||period||', '||return||', '||return||', 'all', '||leftparen||', 'chanting', '||rightparen||', ':', 'gammy', '||exclammark||', 'gammy', '||exclammark||', 'gammy', '||exclammark||', 'gammy', '||exclammark||', 'gammy', '||exclammark||', 'gammy', '||exclammark||', 'gammy', '||exclammark||', '||return||', '||return||', 'george:', "gammy's", "gettin'", 'upset', '||exclammark||', '||return||', '||return||', 'george:', 'man', '||comma||', "i'm", 'starving', '||period||', '||return||', '||return||', 'elaine:', 'how', 'can', 'you', 'be', 'hungry', 'after', 'what', 'you', 'ate', 'at', 'that', 'mets', 'game', '||questionmark||', '||return||', '||return||', 'george:', 'because', 'ballpark', 'food', "doesn't", 'count', 'as', 'real', 'food', '||period||', '||return||', '||return||', 'jerry:', 'right', '||period||', "it's", 'just', 'an', 'activity', '||period||', "it's", 'like', 'that', 'paddle', 'with', 'the', 'ball', 'and', 'the', 'rubber', 'band', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'my', 'friend', 'bob', 'saccamano', 'made', 'a', 'fortune', 'off', 'of', 'those', '||period||', 'see', 'he', 'came', 'up', 'with', 'the', 'idea', 'for', 'the', 'rubber', 'band', '||period||', 'before', 'that', '||comma||', 'people', 'would', 'just', 'hit', 'the', 'ball', '||comma||', 'and', 'it', 'would', 'fly', 'away', '||period||', '||return||', '||return||', 'jerry:', 'i', "can't", 'believe', 'you', 'all', 'made', 'me', 'leave', 'before', 'the', 'end', 'of', 'the', 'game', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'come', 'on', '||comma||', 'jerry', '||period||', 'it', 'was', '9', 'to', 'nothing', '||period||', 'we', 'were', 'getting', 'shellacked', '||period||', '||return||', '||return||', 'george:', 'those', 'nachos', 'are', 'killing', 'me', '||period||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'you', 'were', 'hungry', '||period||', '||return||', '||return||', 'george:', "it's", 'complicated', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'jerry', '||comma||', "you're", 'going', 'to', 'miss', 'the', 'exit', '||period||', '||return||', '||return||', 'jerry:', 'keep', 'your', 'shirt', 'on', '||period||', 'i', 'got', 'it', '||period||', '||return||', '||return||', 'elaine:', 'watch', 'out', 'for', 'that', 'maroon', 'golf', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'boy', '||period||', '||return||', '||return||', 'jerry:', 'look', 'at', 'this', 'guy', '||period||', "he's", 'trying', 'to', 'box', 'me', 'out', '||period||', '||return||', '||return||', 'kramer:', "i'll", 'tell', 'you', 'when', 'you', 'can', 'go', '||period||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||comma||', 'wait', '||dash||', '||dash||', 'now', '||comma||', 'now', '||comma||', 'now', '||period||', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'go', '||comma||', 'go', '||exclammark||', 'no', '||comma||', 'no', '||period||', 'wait', '||dash||', '||dash||', 'now', '||comma||', 'now', '||exclammark||', 'now', '||exclammark||', 'jerry', '||exclammark||', 'go', '||dash||', '||dash||', 'ahh', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'calm', 'down', '||comma||', 'maroon', 'golf', '||period||', 'he', 'thinks', 'i', 'cut', 'him', 'off', '||period||', 'he', 'accelerated', '||period||', '||return||', '||return||', 'kramer:', 'you', 'want', 'me', 'to', 'moon', 'him', '||questionmark||', 'ooh', '||comma||', "let's", 'moon', 'him', '||period||', 'roll', 'up', 'your', 'window', '||period||', "let's", 'do', 'a', 'pressed', 'ham', 'under', 'glass', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||comma||', 'i', "couldn't", 'do', 'that', '||period||', '||return||', '||return||', 'kramer:', 'look', 'at', 'this', '||comma||', 'look', 'at', 'this', '||period||', "he's", 'giving', 'us', 'the', 'finger', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'all', 'right', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'so', 'i', 'saw', 'that', 'new', 'movie', 'about', 'the', 'hindenburg', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', "what's", 'that', 'called', '||questionmark||', '||return||', '||return||', 'george:', 'blimp', 'the', 'hindenburg', 'story', '||period||', '||return||', '||return||', 'jerry:', 'how', 'was', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'found', 'it', 'morose', '||period||', 'why', 'dwell', 'on', 'these', 'negative', 'themes', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', 'they', 'should', 'make', 'a', 'movie', 'about', 'all', 'the', 'hindenburg', 'flights', 'that', 'made', 'it', '||period||', '||return||', '||return||', 'george:', 'anyway', '||comma||', 'right', 'in', 'the', 'middle', '||comma||', 'the', 'ship', 'blows', 'up', '||dash||', '||dash||', 'burning', 'debris', '||comma||', 'bodies', 'falling', '||dash||', '||dash||', 'and', 'then', 'just', 'as', 'this', 'eerie', 'silence', 'settles', 'over', 'the', 'airfield', '||comma||', 'i', 'yelled', 'out', '||comma||', '||quotemark||', "that's", 'gotta', 'hurt', '||exclammark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'heh', '||period||', '||return||', '||return||', 'george:', 'the', 'place', 'went', 'nuts', '||period||', '||return||', '||return||', 'jerry:', 'imagine', 'the', 'laugh', 'you', 'could', 'have', 'gotten', 'if', "you'd", 'yelled', 'that', 'out', 'at', 'the', 'actual', 'disaster', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'kramer:', 'why', 'are', 'we', 'slowing', 'down', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', 'music', '||questionmark||', '||return||', '||return||', 'george:', "what's", 'with', 'all', 'these', 'flags', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'elaine', 'and', 'jerry:', "it's", 'the', 'puerto', 'rican', 'day', 'parade', '||exclammark||', '||return||', '||return||', 'elaine:', 'ohh', '||exclammark||', 'oh', '||comma||', 'the', 'city', 'shuts', 'down', 'fifth', 'avenue', '||period||', 'they', 'never', 'let', 'anyone', 'through', '||period||', "we're", 'never', 'getting', 'home', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', "i'm", 'gonna', 'check', 'it', 'out', '||period||', 'aiee', '||period||', 'mucho', 'trafico', '||period||', '||return||', '||return||', '[stock', 'footage:', 'puerto', 'rican', 'day', 'parade', '||period||', ']', '||return||', '||return||', 'kramer:', 'yeah', '||period||', '||period||', '||period||', 'uhh', '||period||', '||period||', '||period||', 'well', '||comma||', 'the', 'streets', 'are', 'all', 'blocked', '||period||', 'i', 'think', 'every', 'puerto', 'rican', 'in', 'the', 'world', 'is', 'out', 'here', '||period||', '||return||', '||return||', 'puerto', 'rican', 'man:', 'well', '||comma||', 'it', 'is', 'our', 'day', '||period||', '||return||', '||return||', 'kramer:', 'whoo', '||period||', 'wrong', 'car', '||period||', 'sorry', '||period||', '||return||', '||return||', 'radio:', 'and', 'the', 'mets', 'score', 'two', 'in', 'the', 'eighth', 'inning', '||period||', '||return||', '||return||', 'jerry:', 'see', '||questionmark||', 'if', 'we', 'had', 'stayed', '||comma||', 'we', 'could', 'have', 'seen', 'those', 'runs', '||period||', '||return||', '||return||', 'george:', 'i', 'could', 'have', 'had', 'some', 'ice', 'cream', '||period||', 'i', 'think', 'that', 'might', 'have', 'calmed', 'down', 'the', 'nachos', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'going', 'to', 'miss', '60', 'minutes', '||period||', 'you', 'know', '||comma||', 'i', 'hate', 'to', 'miss', '60', 'minutes', '||period||', "it's", 'part', 'of', 'my', 'sunday', 'weekend', 'wind', '||dash||', 'down', '||period||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', 'how', 'you', 'can', 'unwind', 'with', 'that', 'clock', 'ticking', '||period||', 'it', 'makes', 'me', 'anxious', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'gentlemen', '||comma||', 'i', 'scouted', 'it', 'out', '||period||', 'i', 'think', 'we', 'can', 'get', 'out', 'over', 'there', '||period||', '||return||', '||return||', 'jerry:', 'but', "that's", 'a', 'one', '||dash||', 'way', 'street', 'coming', 'this', 'way', '||period||', 'besides', '||comma||', 'how', 'am', 'i', 'gonna', 'get', 'all', 'the', 'way', 'over', 'there', '||questionmark||', '||return||', '||return||', 'george:', 'just', 'inch', 'over', '||period||', 'you', 'worm', 'your', 'way', '||period||', '||return||', '||return||', 'elaine:', 'just', 'do', 'it', '||comma||', 'jerry', '||period||', 'uhh', '||period||', 'this', 'exhaust', '||period||', "i'm", 'gonna', 'throw', 'up', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'you', 'should', 'make', 'yourself', 'throw', 'up', '||period||', '||return||', '||return||', 'elaine:', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', "you're", 'going', 'to', '||period||', '||return||', '||return||', 'jerry:', 'all', 'right', '||comma||', "i'm", 'worming', '||period||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||period||', 'you', 'know', 'who', 'the', 'grand', 'marshal', 'is', 'of', 'this', 'thing', '||questionmark||', 'none', 'other', 'than', 'miss', 'chita', 'rivera', '||period||', '||return||', '||return||', 'jerry:', "they're", 'not', 'letting', 'me', 'in', '||period||', '||return||', '||return||', 'george:', 'my', 'hand', 'is', 'out', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'i', 'think', "we're", 'gonna', 'need', 'more', 'than', 'a', 'hand', '||period||', 'they', 'have', 'to', 'see', 'a', 'human', 'face', '||period||', '||return||', '||return||', 'elaine:', 'you', 'sure', 'you', 'want', 'his', 'face', '||questionmark||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', 'it', 'was', 'mara', 'conchita', 'alonso', '||period||', '||return||', '||return||', 'george:', 'this', "guy's", 'giving', 'me', 'the', 'stare', '||dash||', 'ahead', '||period||', '||return||', '||return||', 'jerry:', 'the', 'stare', '||dash||', 'ahead', '||period||', 'i', 'hate', 'that', '||period||', 'i', 'use', 'it', 'all', 'the', 'time', '||period||', '||return||', '||return||', 'george:', 'look', 'at', 'me', '||exclammark||', 'i', 'am', 'man', '||exclammark||', 'i', 'am', 'you', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', "he's", 'letting', 'you', 'in', '||period||', 'thank', 'you', '||exclammark||', 'creep', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||exclammark||', 'i', 'know', 'who', 'it', 'is', '||period||', 'stacy', 'keach', '||period||', '||return||', '||return||', 'jerry:', 'one', 'more', 'lane', 'to', 'go', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||exclammark||', "we're", 'here', '||exclammark||', '||return||', '||return||', 'lamar:', 'oh', '||comma||', 'look', "who's", 'here', '||period||', 'my', 'old', 'buddy', '||comma||', 'black', 'saab', '||period||', '||return||', '||return||', 'jerry:', 'maroon', 'golf', '||period||', '||return||', '||return||', 'lamar:', 'where', 'you', "goin'", '||comma||', 'black', 'saab', '||questionmark||', 'you', 'seem', 'to', 'be', 'a', 'tad', 'askew', '||period||', '||return||', '||return||', 'jerry:', 'could', 'you', 'move', 'your', 'car', 'back', 'a', 'little', '||questionmark||', '||return||', '||return||', 'lamar:', 'oh', '||period||', 'sorry', '||period||', 'i', 'seem', 'to', 'have', 'cut', 'you', 'off', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'i', 'think', 'i', 'know', 'where', 'this', 'is', 'going', '||comma||', 'and', 'i', 'am', 'going', 'somewhere', 'else', '||period||', '||return||', '||return||', 'jerry:', 'you', "can't", 'do', 'that', '||period||', 'you', "can't", 'just', 'leave', 'the', 'group', '||period||', '||return||', '||return||', 'elaine:', "i've", 'been', 'trying', 'to', 'leave', 'this', 'group', 'for', '10', 'years', '||period||', 'vaya', 'con', 'dios', '||period||', '||return||', '||return||', 'kramer:', 'con', 'dios', '||questionmark||', 'well', '||comma||', "that's", 'rude', '||period||', '||return||', '||return||', 'jerry:', 'can', 'you', 'believe', 'her', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', "i'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'you', 'going', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'movies', '||period||', 'blimp', 'is', 'playing', 'right', 'there', '||period||', '||return||', '||return||', 'jerry:', "you're", 'going', 'to', 'that', 'again', '||questionmark||', 'why', '||questionmark||', 'just', 'to', 'do', 'that', 'stupid', 'line', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'performance', '||comma||', 'jerry', '||period||', 'like', 'what', 'you', 'do', '||period||', '||return||', '||return||', 'jerry:', "that's", 'not', 'what', 'i', 'do', '||period||', '||return||', '||return||', 'george:', "isn't", 'it', '||questionmark||', '||return||', '||return||', 'jerry:', 'maybe', 'a', 'little', '||period||', 'ah', '||comma||', 'hell', '||comma||', 'i', 'guess', 'it', 'is', '||period||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'actually', '||comma||', 'jerry', '||comma||', 'you', "haven't", 'worked', 'a', 'room', 'that', 'big', 'in', 'a', 'while', '||period||', '||return||', '||return||', '[stock', 'footage:', 'taxis', 'stuck', 'in', 'traffic]', '||period||', '||return||', '||return||', 'elaine:', 'look', 'at', 'that', "guy's", 'dog', '||period||', 'i', 'hate', 'it', 'when', 'their', 'ears', 'get', 'flipped', 'inside', 'out', 'like', 'that', '||period||', 'why', "doesn't", 'he', 'fix', 'it', '||questionmark||', '||return||', '||return||', 'elaine', '||leftparen||', 'yelling', '||rightparen||', ':', 'hey', '||exclammark||', 'fold', 'your', "dog's", 'ear', 'back', '||exclammark||', '||return||', '||return||', 'elaine:', 'ooh', '||exclammark||', 'this', "isn't", 'moving', '||exclammark||', 'i', 'could', 'walk', 'faster', 'than', 'this', '||period||', '||return||', '||return||', 'cab', 'driver:', 'no', '||comma||', 'you', "can't", '||period||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'i', 'can', '||period||', 'here', '||period||', "i'm", 'outta', 'here', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'now', "it's", 'moving', '||period||', 'oh', '||comma||', 'yeah', '||period||', 'i', 'knew', 'it', '||period||', 'hey', '||exclammark||', 'hey', '||exclammark||', '||return||', '||return||', 'cab', 'driver:', 'where', 'to', '||questionmark||', '||return||', '||return||', 'elaine:', "that's", 'cute', '||period||', "that's", 'really', 'cute', '||period||', 'oh', '||exclammark||', 'come', 'on', '||exclammark||', 'all', 'right', '||period||', 'bye', 'again', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'taxi', '||exclammark||', 'taxi', '||exclammark||', '||return||', '||return||', 'george:', 'ladies', '||period||', 'i', '||comma||', 'uh', '||comma||', 'i', "haven't", 'seen', 'this', 'before', '||period||', '||return||', '||return||', 'lady', '1:', 'what', 'is', 'that', 'dot', '||questionmark||', '||return||', '||return||', 'lady', '2:', 'oh', '||comma||', 'i', 'think', 'someone', 'has', 'one', 'of', 'those', 'funny', 'laser', 'pointers', '||period||', '||return||', '||return||', 'laser', 'guy:', 'gimme', 'a', 'box', 'of', 'those', 'and', 'one', 'of', 'those', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||comma||', 'are', 'you', 'the', 'guy', 'with', 'that', 'funny', 'laser', '||questionmark||', '||return||', '||return||', 'laser', 'guy:', 'the', "laser's", 'not', 'funny', '||period||', "i'm", 'funny', '||period||', '||return||', '||return||', 'george:', 'yeah', '||period||', 'the', 'thing', 'is', '||comma||', 'i', '||comma||', 'uh', '||period||', '||period||', '||period||', 'i', 'had', 'this', 'little', 'zinger', 'of', 'my', 'own', 'i', 'wanted', 'to', 'try', '||period||', '||return||', '||return||', 'laser', 'guy:', 'uh', '||dash||', 'huh', '||period||', '||return||', '||return||', 'george:', "it's", 'right', 'in', 'the', 'explosion', 'scene', '||period||', 'so', 'if', 'you', 'could', 'just', '||period||', '||period||', '||period||', 'leave', 'me', 'a', 'little', 'window', '||period||', 'you', 'know', '||comma||', 'my', '||comma||', 'uh', '||comma||', 'my', 'aunt', 'had', 'a', 'thing', 'removed', 'with', 'a', 'laser', '||period||', 'all', 'right', '||comma||', 'i', "don't", 'want', 'to', 'interrupt', 'your', 'meal', '||comma||', 'so', '||period||', '||period||', '||period||', '||return||', '||return||', 'jerry:', "i've", 'gotta', 'see', 'this', 'game', '||period||', 'if', 'it', "wasn't", 'for', 'this', 'guy', '||comma||', 'we', 'could', 'get', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'lamar:', 'this', "traffic's", 'a', 'killer', '||comma||', "ain't", 'it', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'want', 'to', 'get', 'outta', 'here', '||questionmark||', "here's", 'what', 'we', 'do', '||period||', 'we', 'leave', 'the', 'car', 'here', '||comma||', 'we', 'take', 'the', 'plates', 'off', '||comma||', 'we', 'scratch', 'the', 'serial', 'number', 'off', 'the', 'engine', 'block', '||comma||', 'and', 'we', 'walk', 'away', '||period||', '||return||', '||return||', 'jerry:', 'walk', 'away', '||questionmark||', '||return||', '||return||', 'kramer:', "you've", 'got', 'insurance', '||period||', 'you', 'tell', 'them', 'that', 'the', 'car', 'was', 'stolen', '||comma||', 'and', 'then', 'you', 'get', 'another', 'one', 'free', '||period||', '||return||', '||return||', 'jerry:', "isn't", 'there', 'a', 'deductible', '||questionmark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', 'what', 'is', 'your', 'deductible', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'because', "they've", 'already', 'deducted', 'it', '||period||', '||return||', '||return||', 'jerry:', 'from', 'what', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'car', '||comma||', 'which', "we're", 'leaving', '||period||', 'so', 'the', 'net', 'is', 'zero', '||period||', 'see', 'you', 'pocket', 'the', 'money', '||comma||', 'if', 'there', 'is', 'any', '||comma||', 'and', 'you', 'get', 'a', 'new', 'car', '||period||', '||return||', '||return||', 'jerry:', "we're", 'not', 'leaving', 'the', 'car', '||exclammark||', '||return||', '||return||', 'kramer:', 'all', 'right', '||period||', 'if', 'you', 'refuse', 'to', 'grow', 'up', 'and', 'scam', 'your', 'insurance', 'company', '||comma||', "you'll", 'have', 'to', 'work', 'this', 'out', 'with', 'maroon', 'golf', '||period||', '||return||', '||return||', 'jerry:', 'absolutely', 'not', '||period||', 'he', 'sped', 'up', '||period||', '||return||', '||return||', 'radio:', 'swung', 'on', '||comma||', 'line', 'hard', 'toward', 'left', 'center', 'field', '||period||', "that's", 'in', 'the', 'gap', '||comma||', "that's", 'a', 'base', 'hit', '||period||', '||return||', '||return||', 'jerry:', "i'm", 'ready', 'to', 'talk', '||period||', '||return||', '||return||', 'lady', '1:', 'hey', '||exclammark||', "there's", 'that', 'laser', 'guy', 'again', '||period||', '||return||', '||return||', 'lady', '2:', "he's", 'funny', '||period||', 'i', 'never', 'meet', 'anyone', 'funny', '||period||', '||return||', '||return||', 'lady', '1:', 'i', 'know', '||period||', 'a', 'sense', 'of', 'humor', 'is', 'so', 'much', 'more', 'important', 'to', 'me', 'than', 'looks', 'or', 'hair', '||period||', '||return||', '||return||', 'lady', '2:', 'mmm', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'george:', "that's", 'gotta', 'hurt', '||exclammark||', '||return||', '||return||', 'george:', "it's", '||period||', '||period||', '||period||', 'gotta', 'hurt', '||exclammark||', 'hurt', '||exclammark||', 'because', '||period||', '||period||', '||period||', 'aaarrrrrgh', '||exclammark||', '||return||', '||return||', 'george:', 'damn', 'you', '||comma||', 'laser', 'guy', '||exclammark||', 'you', 'had', 'to', 'grab', 'it', 'all', 'with', 'your', 'lowbrow', 'laser', 'shtick', '||exclammark||', "you're", 'just', 'a', 'prop', 'comic', '||exclammark||', "where's", 'the', 'craft', '||questionmark||', '||exclammark||', '||return||', '||return||', 'lady', '1:', 'look', '||exclammark||', "it's", 'on', 'the', 'bald', 'guy', '||period||', '||return||', '||return||', 'lady', '2:', 'i', 'am', 'so', 'glad', 'we', 'came', 'to', 'this', 'showing', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||comma||', "here's", 'the', 'deal', '||period||', 'he', 'wants', 'you', 'to', 'acknowledge', 'that', 'you', 'cut', 'him', 'off', 'with', 'an', '||quotemark||', 'i', 'am', 'sorry', '||quotemark||', 'wave', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'raise', 'the', 'hand', '||comma||', 'lower', 'the', 'head', '||dash||', '||dash||', '||quotemark||', "i'm", 'sorry', '||comma||', "i'm", 'sorry', '||period||', 'the', 'buttons', 'are', 'really', 'big', 'on', 'the', 'car', '||period||', 'i', "don't", 'understand', 'it', '||period||', 'i', "haven't", 'read', 'the', 'manual', '||period||', 'ooh', '||exclammark||', '||quotemark||', 'you', 'get', 'my', 'drift', '||period||', '||return||', '||return||', 'jerry:', 'ok', '||exclammark||', '||return||', '||return||', 'lamar:', 'hallelujah', '||period||', 'praise', 'the', 'lord', '||period||', 'but', "i'll", 'take', 'it', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||exclammark||', 'all', 'right', '||comma||', 'lamar', '||comma||', 'back', 'it', 'up', 'a', 'little', 'bit', 'so', 'we', 'can', 'get', 'out', 'now', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||period||', 'at', 'last', '||comma||', "we're", 'finally', "gettin'", 'out', 'of', 'here', '||period||', '||return||', '||return||', 'jerry:', "what's", 'that', 'on', 'your', 'forehead', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'probably', 'chocolate', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'is', 'that', 'one', 'of', 'those', 'laser', 'pointers', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||comma||', 'jerry', '||comma||', 'crank', 'up', 'the', 'floyd', '||period||', "it's", 'a', 'george', 'laserium', '||exclammark||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'stop', 'it', '||exclammark||', 'stay', 'away', 'from', 'my', 'breasts', '||exclammark||', 'chest', '||exclammark||', '||return||', '||return||', 'jerry:', 'see', 'ya', 'around', 'maroon', 'golf', '||period||', 'and', '||comma||', 'by', 'the', 'way', '||comma||', 'that', 'was', 'an', '||quotemark||', "i'm", 'not', 'sorry', '||quotemark||', 'wave', '||period||', '||return||', '||return||', 'lamar:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "i'm", 'glad', 'i', 'cut', 'you', 'off', '||comma||', 'because', 'black', 'saab', 'rules', '||exclammark||', 'so', 'long', '||comma||', 'jackass', '||exclammark||', '||return||', '||return||', 'jerry:', 'elaine', '||questionmark||', '||exclammark||', '||return||', '||return||', 'elaine:', 'jerry', '||questionmark||', '||exclammark||', '||return||', '||return||', 'lamar:', 'jackass', '||questionmark||', 'so', "i'm", 'a', 'jackass', 'now', '||questionmark||', '||return||', '||return||', 'jerry:', 'so', 'if', 'everyone', 'would', 'just', 'put', 'their', 'cars', 'in', 'reverse', 'at', 'the', 'same', 'time', '||comma||', 'we', 'can', 'do', 'this', '||period||', 'all', 'right', '||comma||', 'on', 'the', 'count', 'of', 'three', '||period||', 'can', 'everyone', 'hear', 'me', '||questionmark||', 'hey', '||comma||', 'amigo', '||comma||', 'are', 'you', 'paying', 'attention', '||questionmark||', '||return||', '||return||', 'puerto', 'rican', 'man:', 'buenos', 'dias', '||comma||', 'my', 'friend', '||period||', '||return||', '||return||', 'jerry:', 'not', 'you', '||exclammark||', 'the', 'guy', 'in', 'the', 'amigo', '||period||', '||return||', '||return||', 'elaine:', 'uh', '||comma||', 'well', '||comma||', 'uh', '||comma||', 'here', '||dash||', '||dash||', 'here', 'is', 'good', '||period||', '||return||', '||return||', 'taxi', 'driver:', 'oh', '||comma||', 'yeah', '||comma||', 'sure', '||comma||', 'and', 'now', "i'm", 'gonna', 'be', 'stuck', 'here', '||period||', 'but', 'you', 'knew', 'the', 'way', 'to', 'go', '||exclammark||', 'you', 'went', 'to', 'college', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||comma||', 'i', 'went', 'to', 'tufts', '||exclammark||', 'that', 'was', 'my', 'safety', 'school', '||exclammark||', 'so', "don't", 'talk', 'to', 'me', 'about', 'hardship', '||period||', '||return||', '||return||', 'elaine:', 'boy', '||comma||', 'eh', '||comma||', 'can', 'you', 'believe', 'this', 'mess', '||questionmark||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'why', 'did', 'you', 'have', 'the', 'cab', 'come', 'down', 'the', 'street', '||questionmark||', '||exclammark||', 'we', 'were', 'almost', 'out', '||exclammark||', '||return||', '||return||', 'lamar:', 'so', 'that', 'was', 'your', 'girlfriend', 'that', 'blocked', 'you', 'in', '||period||', "that's", 'real', 'good', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'not', 'his', 'girlfriend', '||period||', 'well', '||comma||', 'actually', '||comma||', 'we', 'used', 'to', 'date', '||comma||', 'but', 'not', 'anymore', '||period||', '||return||', '||return||', 'jerry:', 'elaine', '||comma||', 'he', "doesn't", 'need', '||dash||', '||return||', '||return||', 'lamar:', 'used', 'to', 'date', '||questionmark||', 'so', 'i', 'guess', 'you', 'found', 'out', "he's", 'a', 'jackass', '||period||', '||return||', '||return||', 'jerry:', "'cause", "that's", "what's", 'gonna', 'happen', '||period||', '||return||', '||return||', 'kramer:', 'wow', '||period||', "he's", "givin'", 'you', 'a', 'mustache', '||period||', 'where', 'is', 'this', 'guy', '||questionmark||', '||return||', '||return||', 'george:', "don't", 'look', 'around', '||period||', "don't", 'look', 'around', '||period||', "that's", 'what', 'he', 'wants', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'well', '||comma||', "i'll", 'see', 'ya', '||period||', 'hey', '||comma||', 'george', '||comma||', 'i', 'think', "there's", 'a', 'sniper', "lookin'", 'to', 'pop', 'ya', '||period||', '||return||', '||return||', 'george:', 'this', 'thing', "can't", 'hurt', 'me', '||comma||', 'can', 'it', '||questionmark||', 'i', 'mean', '||comma||', 'it', 'is', 'a', 'laser', '||period||', 'what', 'if', 'it', 'hits', 'my', 'eye', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'be', 'blind', '||comma||', 'jerry', 'the', 'blind', 'are', 'courageous', '||period||', '||return||', '||return||', 'kramer:', "you'll", 'be', 'fine', 'as', 'long', 'as', 'it', "doesn't", 'hit', 'you', 'right', 'in', 'the', 'pupil', '||comma||', "'cause", 'then', 'the', 'whole', 'ball', 'will', 'go', 'up', 'like', 'the', 'death', 'star', '||period||', 'tchoo', '||exclammark||', 'i', 'gotta', 'go', 'find', 'a', 'bathroom', '||period||', '||return||', '||return||', 'jerry:', 'hold', 'it', '||comma||', 'george', '||period||', "don't", 'move', '||period||', "it's", 'right', 'between', 'your', 'eyes', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'my', 'god', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "there's", 'the', 'soda', 'guy', '||period||', '||return||', '||return||', 'lamar:', 'hey', '||comma||', 'jackass', '||exclammark||', 'get', 'me', 'a', 'diet', 'dr', '||period||', 'pepper', '||exclammark||', '||return||', '||return||', 'jerry', '||leftparen||', 'exasperated', '||rightparen||', ':', 'all', 'right', '||exclammark||', '||return||', '||return||', 'older', 'man:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'older', 'woman:', 'wha', '||dash||', '||dash||', 'ow', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'this', 'is', 'nuts', '||exclammark||', 'i', "can't", 'get', 'across', 'anywhere', '||exclammark||', '||return||', '||return||', 'older', 'man:', 'well', '||comma||', 'none', 'of', 'us', 'can', '||exclammark||', "we're", 'trapped', '||exclammark||', '||return||', '||return||', 'older', 'woman:', 'ow', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||exclammark||', 'hey', '||comma||', 'everyone', '||period||', 'this', 'way', '||period||', 'i', 'think', 'we', 'can', 'get', 'out', 'through', 'here', '||period||', '||return||', '||return||', 'older', 'man:', 'oh', '||comma||', 'i', "don't", 'know', 'if', "that's", 'such', 'a', 'good', 'idea', '||period||', '||return||', '||return||', 'elaine:', 'look', '||exclammark||', 'no', 'one', 'knows', 'how', 'long', 'this', 'parade', 'is', 'gonna', 'last', '||exclammark||', 'they', 'are', 'a', 'very', 'festive', 'people', '||period||', 'all', 'i', 'know', 'is', 'that', "it's", 'sunday', 'night', '||comma||', 'and', 'i', 'have', 'got', 'to', 'unwind', '||exclammark||', 'now', "who's", 'with', 'me', '||questionmark||', '||exclammark||', '||return||', '||return||', 'older', 'woman:', 'father', '||questionmark||', '||return||', '||return||', 'priest:', 'none', 'of', 'us', 'saw', 'the', 'nylon', 'flap', '||period||', 'that', 'might', 'mean', 'something', '||period||', '||return||', '||return||', 'pregnant', 'woman:', 'oh', '||comma||', 'all', 'right', '||comma||', 'all', 'right', '||exclammark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||exclammark||', 'come', 'on', '||period||', 'come', 'on', '||period||', "let's", 'go', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'business', 'man:', 'but', "it's", 'dark', '||exclammark||', '||return||', '||return||', 'elaine:', 'get', 'in', 'there', '||exclammark||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'uh', '||comma||', "i'm", 'interested', 'in', 'the', 'apartment', '||period||', '||return||', '||return||', 'sales', 'woman:', 'yes', '||exclammark||', 'come', 'in', '||comma||', 'come', 'in', '||period||', '||return||', '||return||', 'kramer:', 'ok', '||period||', '||return||', '||return||', 'sales', 'woman:', "i'm", 'christine', 'nyhart', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||period||', 'delicious', 'to', 'meet', 'you', '||period||', '||return||', '||return||', 'sales', 'woman:', 'did', 'the', 'broker', 'send', 'you', 'over', '||questionmark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yes', '||comma||', 'most', 'likely', '||comma||', 'yes', '||period||', "i'm", '||comma||', 'uh', '||comma||', 'h', '||period||', 'e', '||period||', 'pennypacker', '||period||', "i'm", 'a', 'wealthy', 'industrialist', 'and', 'philanthropist', 'and', '||comma||', 'uh', '||comma||', 'a', 'bicyclist', '||period||', 'and', '||comma||', 'um', '||comma||', 'yes', '||comma||', "i'm", 'looking', 'for', 'a', 'place', 'where', 'i', 'can', 'settle', 'down', 'with', 'my', '||comma||', 'uh', '||comma||', 'peculiar', 'habits', '||comma||', 'and', '||comma||', 'uh', '||comma||', 'the', 'women', 'that', 'i', 'frequent', 'with', '||period||', '||leftparen||', 'sniffing', 'wall', '||rightparen||', 'mmm', '||period||', 'mombassa', '||comma||', 'hmm', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'the', 'asking', 'price', 'is', '$1', '||period||', '5', 'million', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'i', 'spend', 'that', 'much', 'on', 'after', 'shave', '||period||', 'yes', '||comma||', 'i', 'buy', 'and', 'sell', 'men', 'like', 'myself', 'every', 'day', '||period||', 'now', '||comma||', 'i', 'assume', 'that', "there's", 'a', 'waterfall', 'grotto', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'no', '||period||', '||return||', '||return||', 'kramer:', 'how', 'about', 'a', 'bathroom', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'it', 'has', '4', '||period||', '||return||', '||return||', 'kramer:', 'yes', '||comma||', 'and', 'where', 'would', 'the', 'absolute', 'nearest', 'one', 'be', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'just', 'down', 'the', 'hall', '||period||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', "don't", 'worry', '||period||', "we'll", 'get', 'you', 'home', 'to', 'your', 'husband', 'real', 'soon', '||period||', '||return||', '||return||', 'pregnant', 'woman:', "i'm", 'not', 'married', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', '||comma||', 'for', 'one', '||comma||', 'really', 'respect', 'that', '||period||', '||return||', '||return||', 'pregnant', 'woman:', 'oh', '||comma||', 'thank', 'you', '||period||', '||return||', '||return||', 'elaine', '||leftparen||', 'whispering', '||rightparen||', ':', 'hey', '||exclammark||', 'guess', "who's", 'not', 'married', '||period||', '||return||', '||return||', 'older', 'man:', 'is', 'the', 'boyfriend', 'still', 'in', 'the', 'picture', '||questionmark||', '||return||', '||return||', 'elaine:', 'come', 'on', '||comma||', 'father', '||comma||', 'you', 'can', 'make', 'it', '||period||', '||return||', '||return||', 'priest:', 'no', '||comma||', 'i', "can't", '||period||', "i've", 'got', 'a', 'bad', 'hip', '||period||', 'go', 'on', 'without', 'me', '||period||', '||return||', '||return||', 'elaine:', 'no', '||exclammark||', 'i', "won't", '||exclammark||', '||return||', '||return||', 'priest:', 'leave', 'me', '||exclammark||', 'you', 'must', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||period||', 'take', 'it', 'easy', '||period||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'we', 'can', 'move', 'faster', 'without', 'father', "o'gimpy", '||period||', '||return||', '||return||', 'priest:', 'i', 'heard', 'that', '||exclammark||', '||return||', '||return||', 'lamar:', 'you', 'know', '||comma||', 'i', "don't", 'think', "i've", 'ever', 'seen', 'a', 'man', 'driving', 'a', 'saab', 'convertible', '||period||', 'still', "haven't", '||period||', '||return||', '||return||', 'jerry', '||leftparen||', 'sarcastically', '||rightparen||', ':', 'ho', 'ho', '||exclammark||', '||return||', '||return||', 'jerry:', 'what', 'seems', 'to', 'be', 'the', 'problem', '||comma||', 'officer', '||questionmark||', '||return||', '||return||', 'george:', "they're", 'for', 'protection', '||comma||', 'jerry', '||period||', 'can', 'you', 'tell', 'where', "i'm", "lookin'", '||questionmark||', '||return||', '||return||', 'jerry:', 'at', 'me', '||questionmark||', '||return||', '||return||', 'george:', 'no', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||period||', "it's", 'back', '||period||', '||return||', '||return||', 'george:', 'bring', 'it', 'on', '||comma||', 'baby', '||return||', '||return||', 'jerry:', 'what', 'if', 'it', 'gets', 'in', 'the', 'side', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'side', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', "wouldn't", 'it', 'just', 'bounce', 'back', 'and', 'forth', 'between', 'your', 'cornea', 'and', 'the', 'mirror', '||comma||', 'faster', 'and', 'faster', '||comma||', 'getting', 'more', 'and', 'more', 'intense', '||comma||', 'until', 'finally', '||dash||', '||return||', '||return||', 'george:', 'all', 'right', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||period||', "it's", 'in', 'your', 'eye', 'now', '||period||', '||return||', '||return||', 'kramer:', 'hola', '||comma||', 'jerry', '||exclammark||', "i'm", 'into', 'this', 'puerto', 'rican', 'day', '||exclammark||', 'the', 'sights', '||exclammark||', 'the', 'sounds', '||exclammark||', 'the', 'hot', '||comma||', 'spicy', 'flavor', 'of', 'it', 'all', '||exclammark||', "it's", 'caliente', '||comma||', 'jerry', '||exclammark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'the', 'mets', 'have', 'got', 'men', 'on', 'base', '||exclammark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'i', 'know', '||exclammark||', 'i', 'was', "watchin'", 'the', 'game', '||period||', '||return||', '||return||', 'jerry:', 'you', 'were', "watchin'", '||questionmark||', 'where', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'that', 'was', 'a', 'strike', '||exclammark||', 'did', 'you', 'see', 'that', '||questionmark||', '||exclammark||', '||return||', '||return||', 'sales', 'woman:', 'would', 'you', 'like', 'to', 'see', 'the', 'rest', 'of', 'the', 'apartment', '||comma||', 'mister', '||comma||', 'um', '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'eh', '||period||', '||period||', '||period||', 'varnsen', '||period||', 'kel', 'varnsen', '||period||', 'actually', '||comma||', 'this', 'room', 'intrigues', 'me', '||period||', 'why', 'is', 'it', 'called', 'the', 'tv', 'room', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'well', '||comma||', "it's", '||dash||', '||dash||', '||return||', '||return||', 'jerry:', 'balk', '||questionmark||', '||exclammark||', 'how', 'was', 'that', 'a', 'balk', '||questionmark||', '||exclammark||', 'you', 'have', 'any', 'snacks', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'mr', '||period||', 'varnsen', '||comma||', 'if', 'you', 'like', 'the', 'apartment', '||comma||', 'i', 'should', 'tell', 'you', "i've", 'also', 'had', 'some', 'interest', 'from', 'a', 'wealthy', 'industrialist', '||period||', '||return||', '||return||', 'jerry:', 'not', 'pennypacker', '||exclammark||', '||return||', '||return||', 'sales', 'woman:', 'you', 'know', 'him', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'wish', 'i', "didn't", '||period||', 'brace', 'yourself', '||comma||', 'madam', '||comma||', 'for', 'an', 'all', '||dash||', 'out', 'bidding', 'war', '||period||', 'but', 'this', 'time', '||comma||', 'advantage', 'varnsen', '||exclammark||', '||return||', '||return||', 'george:', 'wait', 'a', 'second', '||period||', 'i', 'think', 'i', 'see', 'where', 'that', 'laser', 'guy', 'is', '||period||', 'no', '||exclammark||', "don't", 'look', '||exclammark||', "don't", 'look', '||period||', 'oh', '||comma||', 'yeah', '||comma||', "that's", 'him', '||period||', 'ok', '||period||', "i'm", 'gonna', 'sneak', 'up', 'on', 'him', '||period||', 'now', 'the', 'hunted', 'becomes', 'the', 'hunter', '||period||', '||return||', '||return||', 'elaine:', 'we', 'should', 'be', 'able', 'to', 'get', 'across', 'right', 'through', 'here', '||exclammark||', '||return||', '||return||', 'older', 'woman:', "it's", 'a', 'dead', 'end', '||exclammark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'no', '||exclammark||', 'i', 'thought', '||dash||', '||dash||', '||return||', '||return||', 'business', 'man:', 'you', 'thought', '||questionmark||', '||exclammark||', "we're", 'gonna', 'die', 'in', 'the', 'dark', '||exclammark||', 'i', 'knew', 'it', '||exclammark||', 'i', 'knew', 'it', '||exclammark||', "we're", 'gonna', 'die', '||exclammark||', '||return||', '||return||', 'elaine:', 'get', 'a', 'hold', 'of', 'yourself', '||exclammark||', '||return||', '||return||', 'pregnant', 'woman:', 'oh', '||comma||', 'come', 'on', '||exclammark||', '||return||', '||return||', 'elaine:', 'sorry', '||period||', 'somebody', '||period||', '||period||', '||period||', 'help', 'us', '||exclammark||', '||return||', '||return||', 'man:', '||exclammark||', 'mira', '||exclammark||', '||exclammark||', 'mira', '||exclammark||', 'stacy', 'keach', '||exclammark||', '||return||', '||return||', 'elaine:', "we're", 'down', 'here', '||exclammark||', 'help', '||exclammark||', '||return||', '||return||', 'man:', "there's", 'people', 'down', 'there', '||exclammark||', 'hold', 'on', '||exclammark||', '||return||', '||return||', 'elaine:', 'let', 'us', 'out', '||period||', "there's", 'an', 'unmarried', 'pregnant', 'woman', 'down', 'here', '||period||', '||return||', '||return||', 'pregnant', 'woman:', "don't", 'judge', 'me', '||exclammark||', '||return||', '||return||', 'elaine:', 'help', 'us', 'up', 'so', 'we', 'can', 'cross', 'the', 'street', '||questionmark||', '||return||', '||return||', 'police', 'officer:', 'nah', '||comma||', 'nah', '||comma||', 'you', "can't", 'cross', 'here', '||period||', "there's", 'a', 'parade', '||period||', '||return||', '||return||', 'elaine:', 'but', "we've", 'come', 'so', 'far', '||period||', 'we', 'just', 'want', 'to', 'unwind', '||period||', '||return||', '||return||', 'police', 'officer:', 'hey', '||comma||', 'what', 'can', 'i', 'tell', 'ya', '||questionmark||', '||return||', '||return||', 'business', 'man:', 'wanna', 'make', 'out', 'some', 'more', '||questionmark||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'god', '||exclammark||', 'let', 'us', 'out', '||exclammark||', '||return||', '||return||', 'george:', 'that', "wasn't", 'a', 'laser', 'pen', '||period||', '||return||', '||return||', 'delivery', 'man:', 'no', '||period||', "it's", 'just', 'a', 'pen', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'funny', '||return||', '||return||', 'delivery', 'man:', 'no', '||period||', 'you', 'have', '||comma||', 'like', '||comma||', 'a', 'dot', 'on', 'your', 'face', '||period||', "whoever's", 'doing', 'that', 'is', 'very', 'clever', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', 'man', '||period||', 'you', 'need', 'to', 'lighten', 'up', '||period||', 'you', 'know', '||comma||', 'a', 'feeling', 'like', 'this', 'only', 'happens', 'once', 'a', 'year', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "it's", 'like', 'this', 'every', 'day', 'in', 'puerto', 'rico', '||period||', '||return||', '||return||', 'kramer:', 'see', '||comma||', 'now', "you're", 'getting', 'the', 'spirit', 'of', 'it', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'kramer:', 'ooh', '||exclammark||', '||exclammark||', 'dios', 'mio', '||exclammark||', '||return||', '||return||', 'man:', 'hey', '||exclammark||', "there's", 'a', 'guy', 'burning', 'the', 'puerto', 'rican', 'flag', '||exclammark||', '||return||', '||return||', 'bob:', 'who', '||exclammark||', 'who', 'is', 'burning', 'the', 'flag', '||questionmark||', '||exclammark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'no', '||period||', '||return||', '||return||', 'bob:', 'him', '||questionmark||', '||exclammark||', '||return||', '||return||', 'cedric:', "that's", 'not', 'very', 'nice', '||period||', '||return||', '||return||', 'kramer:', 'it', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'bob:', 'do', 'you', 'know', 'what', 'day', 'this', 'is', '||questionmark||', 'because', 'i', 'know', 'what', 'day', 'this', 'is', '||comma||', 'they', 'know', 'what', 'day', 'this', 'is', '||comma||', 'so', 'i', 'was', 'wondering', 'if', 'you', 'know', 'what', 'day', 'this', 'is', '||exclammark||', '||return||', '||return||', 'cedric:', 'because', "it's", 'puerto', 'rican', 'day', '||period||', '||return||', '||return||', 'bob:', 'maybe', 'we', 'should', 'stomp', 'you', 'like', 'you', 'stomp', 'the', 'flag', '||exclammark||', 'what', 'do', 'you', 'think', 'of', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'now', 'look', '||comma||', 'i', 'just', 'have', 'one', 'thing', 'to', 'say', 'to', 'you', 'boys', '||period||', 'mama', '||exclammark||', '||return||', '||return||', 'sales', 'woman:', 'right', 'this', 'way', '||comma||', 'mr', '||period||', 'vandelay', '||period||', '||return||', '||return||', 'george:', 'well', '||comma||', 'this', 'is', 'a', 'lovely', 'apartment', '||period||', 'lovely', '||exclammark||', 'my', 'kids', 'are', 'gonna', 'go', 'crazy', '||period||', 'i', '||comma||', 'uh', '||comma||', 'i', 'wonder', 'if', 'i', 'could', 'see', 'the', 'bathrooms', '||period||', 'preferably', 'one', 'with', 'some', 'paint', 'thinner', 'and', '||comma||', 'uh', '||comma||', 'some', 'rags', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', "it's", 'down', 'the', 'hall', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'hello', '||period||', '||period||', '||period||', '||return||', '||return||', 'george:', 'art', '||period||', '||return||', '||return||', 'jerry:', 'mr', '||period||', 'vandelay', '||comma||', 'of', 'course', '||period||', '||return||', '||return||', 'sales', 'woman:', 'you', 'two', 'know', 'each', 'other', '||questionmark||', '||return||', '||return||', 'sales', 'woman:', 'mr', '||period||', 'pennypacker', '||exclammark||', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'yes', '||comma||', 'uh', '||comma||', 'i', '||dash||', '||dash||', 'i', 'wanted', 'to', '||comma||', 'uh', '||comma||', 'stop', 'by', 'and', 'make', 'sure', 'that', 'my', 'shark', 'tank', 'fits', '||dash||', '||dash||', 'uh', '||comma||', 'hello', '||period||', '||return||', '||return||', 'sales', 'woman:', 'mr', '||period||', 'pennypacker', '||comma||', 'this', 'is', 'mr', '||period||', 'vandelay', '||comma||', 'and', 'you', 'know', 'mr', '||period||', 'varnsen', '||return||', '||return||', 'kramer:', 'uh', '||comma||', 'varnsen', '||period||', '||return||', '||return||', 'jerry:', 'pennypacker', '||period||', '||return||', '||return||', 'kramer:', 'vandelay', '||period||', '||return||', '||return||', 'george:', 'pennypacker', '||period||', 'varnsen', '||period||', '||return||', '||return||', 'jerry:', 'vandelay', '||period||', 'wait', 'a', 'second', '||period||', 'mr', '||period||', 'pennypacker', '||comma||', 'if', "you're", 'here', '||comma||', 'and', 'mr', '||period||', 'vandelay', 'is', 'also', 'here', '||comma||', 'then', "who's", 'watching', 'the', 'factory', '||questionmark||', '||return||', '||return||', 'kramer:', 'the', 'factory', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', 'saab', 'factory', '||questionmark||', '||return||', '||return||', 'kramer:', 'jerry', '||comma||', "that's", 'in', 'sweden', '||period||', '||return||', '||return||', 'jerry:', 'my', 'car', '||exclammark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'you', 'know', '||comma||', "it's", 'like', 'this', 'every', 'day', 'in', 'puerto', 'rico', '||period||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'the', 'mets', 'lost', '||period||', '||return||', '||return||', 'jerry:', 'i', 'love', 'a', 'parade', '||exclammark||', '||return||', '||return||', 'george:', 'how', 'do', 'you', 'suppose', 'they', 'did', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||period||', '||period||', '||period||', "there's", 'no', 'logical', 'explanation', '||period||', 'all', 'right', '||period||', 'well', '||comma||', 'shall', 'we', 'go', 'home', '||questionmark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'what', 'about', 'my', 'car', '||questionmark||', '||return||', '||return||', 'kramer:', 'well', '||comma||', 'jerry', '||comma||', 'you', "can't", 'deduct', 'it', 'now', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', "there's", 'elaine', '||period||', '||return||', '||return||', 'elaine:', 'hey', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'you', 'look', '||comma||', 'uh', '||period||', '||period||', '||period||', 'relaxed', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'it', 'is', 'sunday', 'night', '||comma||', 'and', 'you', 'know', 'how', 'i', 'like', 'to', 'unwind', '||period||', '||return||', '||return||', 'lamar:', 'hey', '||comma||', 'black', 'saab', '||period||', 'looks', 'like', 'that', 'building', 'cut', 'you', 'off', '||exclammark||', 'ha', 'ha', 'ha', '||exclammark||', 'see', 'ya', 'around', '||exclammark||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'at', 'least', 'he', "didn't", '||dash||', '||return||', '||return||', 'lamar:', 'jackass', '||exclammark||', '||return||', '||return||', 'jerry:', 'somebody', 'remember', 'where', 'we', 'parked', '||period||', '||return||', '||return||', 'kramer:', 'this', 'was', 'a', 'fun', 'day', '||period||', "it's", 'nice', 'to', 'get', 'out', '||period||', '||return||', '||return||', 'george:', 'i', "can't", 'eat', 'this', 'without', 'catsup', '||period||', 'would', 'it', 'kill', 'her', 'to', 'check', 'up', 'on', 'us', '||questionmark||', 'would', 'that', 'be', 'a', 'terrible', 'thing', '||questionmark||', '||quotemark||', "how's", 'everything', '||questionmark||', 'do', 'you', 'need', 'anything', '||questionmark||', 'what', 'can', 'i', 'do', 'for', 'you', '||questionmark||', '||quotemark||', '||return||', '||return||', 'jerry:', 'i', 'know', 'what', 'you', 'mean', '||period||', '||return||', '||return||', 'george:', 'do', 'ya', '||questionmark||', '||return||', '||return||', 'jerry:', "it's", 'like', 'going', 'out', 'with', 'someone', 'and', 'you', 'never', 'hear', 'from', 'them', 'again', '||period||', '||return||', '||return||', 'george:', 'same', 'thing', '||exclammark||', '||return||', '||return||', 'jerry:', 'not', 'really', '||comma||', 'but', "it's", 'something', '||period||', 'ask', 'the', 'people', 'behind', 'you', '||period||', '||return||', '||return||', 'george:', 'excuse', 'me', '||period||', 'are', 'you', 'using', 'your', 'catsup', '||questionmark||', '||return||', '||return||', 'woman:', 'what', 'do', 'you', 'think', '||questionmark||', 'you', 'want', 'to', 'give', 'him', 'the', 'catsup', '||questionmark||', '||return||', '||return||', 'man:', "it's", 'up', 'to', 'you', '||period||', '||return||', '||return||', 'woman:', 'you', 'know', 'what', '||questionmark||', 'i', "don't", 'think', 'so', '||period||', "i'm", 'going', 'to', 'need', 'it', 'from', 'time', 'to', 'time', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'are', 'you', 'doing', 'later', '||questionmark||', 'you', 'want', 'to', 'go', 'to', 'the', 'movies', '||questionmark||', '||return||', '||return||', 'george:', 'nah', '||dash||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'jerry:', 'to', 'see', 'a', 'movie', '||period||', '||return||', '||return||', 'george:', "i've", 'been', 'to', 'the', 'movies', '||period||', '||return||', '||return||', 'jerry:', 'not', 'this', 'movie', '||period||', '||return||', '||return||', 'george:', "they're", 'all', 'the', 'same', '||period||', 'you', 'go', '||comma||', 'you', 'sit', '||comma||', 'you', 'eat', 'popcorn', '||comma||', 'you', 'watch', '||period||', "i'm", 'sick', 'of', 'it', '||period||', '||return||', '||return||', 'jerry:', 'did', 'you', 'shower', 'today', '||questionmark||', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', "that's", 'usually', 'the', 'kind', 'of', 'mood', "i'm", 'in', 'when', 'i', "haven't", 'showered', '||period||', '||return||', '||return||', 'george:', 'when', 'is', 'it', 'going', 'to', 'be', 'my', 'turn', '||comma||', 'jerry', '||questionmark||', 'when', 'do', 'i', 'get', 'my', '15', 'minutes', '||questionmark||', 'i', 'want', 'my', '15', 'minutes', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'quit', 'complaining', '||period||', 'at', 'least', 'you', 'have', 'your', 'health', '||period||', '||return||', '||return||', 'george:', 'ah', '||exclammark||', "health's", 'not', 'good', 'enough', '||period||', 'i', 'want', 'more', 'than', 'health', '||period||', "health's", 'not', 'doing', 'it', 'for', 'me', 'anymore', '||period||', "i'm", 'sick', 'of', 'health', '||period||', '||return||', '||return||', 'woman:', 'all', 'right', '||comma||', "we're", 'done', '||period||', 'you', 'can', 'have', 'it', 'now', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', 'very', 'gracious', '||period||', '||return||', '||return||', 'man:', 'nice', 'day', '||return||', '||return||', 'george:', 'yeah', '||period||', '||return||', '||return||', 'jerry:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'kramer:', 'hey', '||exclammark||', 'jojo', '||exclammark||', '||return||', '||return||', 'jerry:', 'ey', '||comma||', 'ey', '||exclammark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', 'thanks', 'for', 'the', 'ride', '||comma||', 'kramer', '||period||', '||return||', '||return||', 'kramer:', 'no', '||comma||', 'thank', 'you', '||period||', 'so', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'nothing', '||period||', '||return||', '||return||', 'kramer:', 'come', 'on', '||comma||', "let's", 'go', 'to', 'the', 'beach', '||period||', '||return||', '||return||', 'george:', 'what', 'are', 'you', 'crazy', '||questionmark||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', "it's", 'a', 'beautiful', 'day', '||period||', '||return||', '||return||', 'jerry:', 'have', 'a', 'good', 'time', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "there's", 'something', 'in', 'the', 'air', 'today', '||period||', 'you', 'feel', 'it', '||questionmark||', "there's", 'something', 'in', 'the', 'air', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "you're", 'turning', 'into', 'burt', 'lancaster', '||questionmark||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', "there's", 'something', 'in', 'the', 'air', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'i', 'forgot', 'to', 'call', 'jill', '||period||', 'jill', '||period||', 'hi', '||comma||', "it's", 'elaine', '||period||', 'how', 'is', 'your', 'father', '||questionmark||', 'is', 'everything', 'okay', '||questionmark||', 'what', '||questionmark||', 'i', "can't", 'hear', 'you', 'so', 'good', '||period||', "there's", 'a', 'lot', 'of', 'static', '||period||', 'wha', '||questionmark||', "i'm", 'going', 'to', 'call', 'you', 'back', '||period||', '||return||', '||return||', 'jerry:', "jill's", 'father', 'is', 'in', 'the', 'hospital', 'and', 'you', 'call', 'to', 'ask', 'about', 'him', 'on', 'a', 'cell', 'phone', '||questionmark||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'no', 'good', '||questionmark||', '||return||', '||return||', 'jerry:', 'faux', 'pas', '||period||', '||return||', '||return||', 'elaine:', 'faux', 'pas', '||questionmark||', '||return||', '||return||', 'george:', 'big', 'hefty', 'stinking', 'faux', 'pas', '||period||', '||return||', '||return||', 'elaine:', 'why', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', "can't", 'make', 'a', 'health', 'inquiry', 'on', 'a', 'cell', 'phone', '||period||', "it's", 'like', 'saying', '||quotemark||', 'i', "don't", 'want', 'to', 'take', 'up', 'any', 'of', 'my', 'important', 'time', 'in', 'my', 'home', 'so', "i'll", 'just', 'get', 'it', 'out', 'of', 'the', 'way', 'on', 'the', 'street', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'on', '||dash||', 'the', '||dash||', 'street', 'cell', '||dash||', 'phone', 'call', 'is', 'the', 'lowest', 'phone', 'call', 'you', 'can', 'make', '||period||', '||return||', '||return||', 'jerry:', "it's", 'an', 'act', 'of', 'total', 'disregard', '||period||', "it's", 'selfish', '||period||', '||return||', '||return||', 'george:', "it's", 'dismissive', '||period||', '||return||', '||return||', 'jerry:', "it's", 'pompous', '||period||', '||return||', '||return||', 'george:', 'why', "don't", 'you', 'think', 'before', 'you', 'do', 'something', '||questionmark||', '||return||', '||return||', 'elaine:', "here's", 'a', 'thought', '||dash||', 'bye', 'bye', '||period||', '||return||', '||return||', 'george:', 'too', 'much', '||questionmark||', '||return||', '||return||', 'george:', 'boy', '||dash||', "i'm", 'really', 'surprised', 'at', 'elaine', '||dash||', 'that', 'whole', 'phone', 'business', '||dash||', 'she', 'should', 'know', 'better', 'than', 'that', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||dash||', 'hey', '||dash||', 'hey', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'where', 'do', 'you', 'think', 'this', 'relationship', 'is', '||questionmark||', 'if', 'you', 'are', 'thinking', 'of', 'instituting', 'an', 'open', '||dash||', 'door', 'urination', 'policy', '||comma||', 'let', 'me', 'disabuse', 'you', 'of', 'that', 'notion', 'right', 'now', '||comma||', 'my', 'friend', '||period||', '||return||', '||return||', 'george:', "you're", 'so', 'uptight', '||period||', '||return||', '||return||', 'jerry:', 'uptight', '||questionmark||', "let's", 'all', 'just', 'have', 'a', 'big', 'pee', 'party', '||period||', 'hey', 'everybody', '||comma||', 'grab', 'a', 'bucket', '||period||', "we're", 'going', 'up', 'to', "jerry's", '||period||', "it's", 'a', 'pee', 'party', '||period||', '||return||', '||return||', 'phone', 'tape:', 'jerry', '||comma||', 'this', 'is', 'elizabeth', 'clark', 'calling', 'from', 'james', "kimbrough's", 'office', 'at', 'nbc', '||period||', 'could', 'you', 'please', 'give', 'us', 'a', 'call', '||questionmark||', 'thanks', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||period||', 'yeah', '||comma||', 'hi', '||comma||', 'this', 'is', 'jerry', 'seinfeld', 'calling', 'for', 'james', 'kimbrough', '||period||', 'hello', '||questionmark||', 'hi', '||questionmark||', 'uh', 'huh', '||comma||', 'really', '||comma||', 'uh', '||comma||', 'no', 'problem', '||comma||', 'definitely', '||comma||', 'ok', '||comma||', 'buhbye', '||period||', 'that', 'was', 'james', 'kimbrough', '||period||', '||return||', '||return||', 'george:', "who's", 'he', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'is', 'the', 'new', 'president', 'of', 'nbc', '||period||', 'he', 'wants', 'to', 'sit', 'down', 'with', 'us', 'and', 'talk', 'about', '||quotemark||', 'jerry', '||period||', '||quotemark||', '||return||', '||return||', 'george:', 'our', 'show', '||comma||', '||quotemark||', 'jerry', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'right', '||period||', '||return||', '||return||', 'george:', '||quotemark||', 'jerry', '||quotemark||', '||comma||', 'oh', 'my', 'god', '||period||', 'he', 'wants', 'to', 'talk', 'about', '||quotemark||', 'jerry', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'george:', 'when', '||questionmark||', '||return||', '||return||', 'jerry:', 'today', '||comma||', 'like', 'right', 'now', '||period||', '||return||', '||return||', 'george:', 'right', 'now', '||questionmark||', '||quotemark||', 'jerry', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'jerry', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', 'he', 'wants', 'to', 'talk', 'about', '||quotemark||', 'jerry', '||quotemark||', '||questionmark||', '||return||', '||return||', 'jerry:', 'he', 'wants', 'to', 'talk', 'about', '||quotemark||', 'jerry', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', '||quotemark||', 'jerry', '||quotemark||', '||exclammark||', '||return||', '||return||', 'jerry:', '||quotemark||', 'jerry', '||quotemark||', '||exclammark||', '||return||', '||return||', 'george:', 'can', 'i', 'go', 'like', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||exclammark||', '||return||', '||return||', 'george:', 'no', 'sports', 'jacket', '||questionmark||', 'i', "don't", 'need', 'a', 'sports', 'jacket', '||questionmark||', 'writers', 'wear', 'sports', 'jackets', '||period||', '||return||', '||return||', 'jerry:', 'forget', 'the', 'sports', 'jacket', '||period||', '||return||', '||return||', 'george:', 'i', "won't", 'feel', 'like', 'a', 'writer', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'a', 'writer', '||period||', '||return||', '||return||', 'george:', 'right', '||exclammark||', '||return||', '||return||', 'george:', 'water', '||period||', 'need', 'some', 'water', '||exclammark||', 'water', 'here', '||exclammark||', '||return||', '||return||', 'jerry:', 'ok', '||comma||', 'now', 'listen', '||comma||', 'i', "don't", 'want', 'any', 'scenes', 'in', 'here', 'like', 'the', 'last', 'time', '||period||', '||return||', '||return||', 'george:', "don't", 'worry', '||comma||', "don't", 'worry', '||comma||', 'no', 'scenes', '||period||', '||return||', '||return||', 'jerry:', "don't", 'blow', 'this', '||period||', '||return||', '||return||', 'george:', 'i', 'will', 'not', 'blow', 'this', '||period||', '||return||', '||return||', 'jerry:', 'if', 'he', 'says', 'he', "doesn't", 'want', 'it', 'to', 'be', 'a', 'show', 'about', 'nothing', '||comma||', "don't", 'go', 'nuts', '||period||', '||return||', '||return||', 'george:', "it's", 'fine', '||comma||', 'it', "doesn't", 'have', 'to', 'be', 'about', 'nothing', '||period||', '||return||', '||return||', 'jerry:', 'he', 'might', 'not', 'want', 'nothing', '||period||', '||return||', '||return||', 'george:', 'something', '||comma||', 'nothing', '||comma||', 'i', 'could', 'care', 'less', '||period||', '||return||', '||return||', 'jerry:', 'he', 'might', 'want', 'a', 'show', 'about', 'anything', 'and', 'everything', '||period||', '||return||', '||return||', 'george:', 'anything', '||comma||', 'everything', '||comma||', 'something', '||comma||', 'nothing', '||dash||', 'who', 'the', 'hell', 'cares', '||questionmark||', 'put', 'me', 'down', '||period||', "i'm", 'down', '||exclammark||', '||return||', '||return||', 'jerry:', 'all', 'right', '||period||', '||return||', '||return||', 'receptionist:', 'mr', '||period||', 'kimbrough', 'is', 'ready', 'to', 'see', 'you', '||return||', '||return||', 'george:', 'magic', 'time', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'nothing', '||return||', '||return||', 'receptionist:', 'mr', '||period||', 'kimbrough', '||period||', '||return||', '||return||', 'stu:', 'hey', '||comma||', 'jerry', '||comma||', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'george:', 'hey', '||comma||', 'hey', '||comma||', 'hey', '||exclammark||', '||return||', '||return||', 'stu:', 'how', 'you', 'been', '||questionmark||', '||return||', '||return||', 'jerry:', 'good', '||comma||', 'good', '||period||', 'you', 'remember', 'george', '||period||', '||return||', '||return||', 'stu:', 'george', '||comma||', 'good', 'to', 'see', 'you', '||period||', '||return||', '||return||', 'george:', 'hello', 'stu', '||period||', '||return||', '||return||', 'stu:', 'you', 'remember', 'jay', 'crespi', '||period||', '||return||', '||return||', 'george:', 'jay', 'crespi', '||comma||', 'how', 'am', 'i', 'gonna', 'forget', 'jay', 'crespi', '||questionmark||', '||return||', '||return||', 'stu:', 'this', 'is', 'james', 'kimbrough', '||period||', '||return||', '||return||', 'kimbrough:', 'nice', 'to', 'meet', 'you', '||comma||', 'pleasure', '||comma||', 'thanks', 'for', 'coming', 'in', '||period||', '||return||', '||return||', 'george:', 'kimbrough', '||period||', '||return||', '||return||', 'jerry:', "don't", 'spell', '||period||', '||return||', '||return||', 'george:', 'k', '||dash||', 'i', '||dash||', 'm', '||dash||', 'b', '||dash||', 'r', '||dash||', 'o', '||dash||', 'u', '||dash||', 'g', '||dash||', 'h', '||return||', '||return||', 'kimbrough:', "that's", 'right', '||period||', '||return||', '||return||', 'george:', "it's", 'a', 'talent', 'i', 'have', '||period||', '||return||', '||return||', 'kimbrough:', 'why', "don't", 'we', 'sit', 'down', '||comma||', 'glad', "you're", 'here', '||period||', '||return||', '||return||', 'george:', 'woo', '||exclammark||', 'some', 'day', 'out', 'there', '||dash||', 'you', 'ever', 'see', 'weather', 'like', 'that', '||questionmark||', 'woo', '||exclammark||', "it's", 'crisp', '||dash||', "it's", 'crispy', 'crisp', '||period||', '||return||', '||return||', 'jerry:', 'shut', 'up', '||comma||', 'george', '||period||', '||return||', '||return||', 'kimbrough:', 'can', 'i', 'get', 'you', 'anything', '||questionmark||', '||return||', '||return||', 'george:', 'what', 'do', 'we', 'have', 'in', 'the', 'fruit', 'department', '||questionmark||', '||return||', '||return||', 'jerry:', 'oy', '||period||', '||return||', '||return||', 'stu:', 'pineapple', '||period||', '||return||', '||return||', 'george:', 'oh', '||comma||', "that's", 'a', 'dangerous', 'fruit', '||period||', "it's", 'like', 'a', 'weapon', 'that', 'thing', '||comma||', 'got', 'spikes', 'on', 'the', 'end', '||period||', 'you', 'can', 'get', 'killed', 'from', 'one', 'of', 'those', 'things', '||period||', '||return||', '||return||', 'kimbrough:', 'anyway', '||comma||', 'let', 'me', 'tell', 'you', 'why', 'i', 'called', '||period||', 'when', 'i', 'took', 'over', 'here', 'last', 'month', '||comma||', 'i', 'reviewed', 'what', 'was', 'in', 'development', '||comma||', 'and', 'it', 'was', 'pretty', 'much', 'same', 'old', '||comma||', 'same', 'old', '||period||', '||return||', '||return||', 'george:', 'been', 'there', '||comma||', 'done', 'that', '||period||', '||return||', '||return||', 'kimbrough:', 'right', '||period||', 'i', 'was', 'looking', 'for', 'something', 'different', '||period||', 'something', 'that', 'would', 'have', 'people', 'talking', 'at', 'the', 'water', 'coolers', '||period||', '||return||', '||return||', 'george:', 'water', 'coolers', '||questionmark||', '||return||', '||return||', 'crespi:', 'we', 'call', 'it', 'a', 'water', '||dash||', 'cooler', 'show', '||period||', '||return||', '||return||', 'jerry:', 'because', 'the', 'next', 'day', 'in', 'the', 'offices', '||comma||', 'people', 'gather', 'around', 'the', 'water', 'coolers', 'to', 'talk', 'about', 'it', '||comma||', 'right', '||questionmark||', '||return||', '||return||', 'george:', 'see', '||comma||', 'i', 'think', 'people', 'would', 'talk', 'about', 'it', 'at', 'the', 'coffee', 'machines', '||period||', '||return||', '||return||', 'jerry:', 'well', "it's", 'probably', 'just', 'easier', 'to', 'say', '||quotemark||', 'water', 'cooler', 'show', '||quotemark||', 'than', '||quotemark||', 'coffee', 'machine', 'show', '||period||', '||quotemark||', '||return||', '||return||', 'george:', "it's", 'really', 'not', 'accurate', '||period||', 'nobody', 'drinks', 'from', 'a', 'water', 'cooler', 'any', 'more', '||dash||', 'they', 'use', 'bottles', '||period||', '||return||', '||return||', 'jerry:', 'but', 'i', 'think', 'mr', '||period||', 'kimbrough', 'makes', 'a', 'good', 'point', '||period||', '||return||', '||return||', 'kimbrough:', 'anyway', '||comma||', 'stu', 'here', 'started', 'telling', 'me', 'about', 'a', 'show', '||comma||', '||quotemark||', 'jerry', '||quotemark||', '||comma||', 'that', 'he', 'developed', 'five', 'years', 'ago', '||period||', '||return||', '||return||', 'stu:', 'i', 'have', 'always', 'loved', 'it', '||period||', '||return||', '||return||', 'kimbrough:', 'he', 'said', 'it', 'was', 'a', 'show', 'about', 'nothing', '||period||', 'so', '||comma||', 'i', 'saw', 'the', 'pilot', 'and', "i've", 'got', 'to', 'tell', 'you', '||dash||', 'i', 'flipped', 'out', '||period||', '||return||', '||return||', 'crespi:', 'he', 'totally', 'flipped', 'out', '||period||', '||return||', '||return||', 'kimbrough:', 'what', 'i', 'want', 'to', 'do', 'is', 'put', 'it', 'on', 'the', 'air', '||period||', '13', '||dash||', 'episode', 'commitment', '||period||', 'start', 'it', 'off', 'on', 'wednesday', 'night', '||comma||', 'build', 'up', 'an', 'audience', '||period||', 'this', 'show', 'needs', 'time', 'to', 'grow', '||period||', 'i', 'love', 'that', 'kramer', 'guy', '||period||', '||return||', '||return||', 'jerry:', "he's", 'a', 'little', 'off', 'the', 'wall', '||period||', '||return||', '||return||', 'crespi:', 'oh', 'yeah', '||period||', '||return||', '||return||', 'stu:', 'kramer', '||period||', '||return||', '||return||', 'kimbrough:', 'and', 'elaine', '||dash||', 'i', "wouldn't", 'mind', 'seeing', 'something', 'happening', 'between', 'you', 'two', '||period||', '||return||', '||return||', 'jerry:', 'definitely', '||period||', '||return||', '||return||', 'george:', 'i', 'tell', 'you', '||comma||', 'i', 'really', "don't", 'think', 'so', '||dash||', 'called', 'relationship', 'humor', 'is', 'what', 'this', 'show', 'is', 'all', 'about', '||period||', '||return||', '||return||', 'kimbrough:', 'or', 'we', 'could', 'not', 'do', 'the', 'show', 'altogether', '||comma||', 'how', 'about', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'or', 'we', 'could', 'get', 'them', 'together', '||period||', 'woo', '||exclammark||', '||return||', '||return||', 'george:', 'yeah', '||exclammark||', '||return||', '||return||', 'jerry:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'jill', '||comma||', 'hi', '||comma||', "it's", 'elaine', '||period||', 'well', '||comma||', "i'm", 'calling', 'from', 'my', 'home', '||period||', 'indoors', '||period||', 'well', '||comma||', 'i', 'was', 'just', 'calling', 'to', 'see', 'how', 'your', 'fa', '||period||', '||period||', "i'm", 'sorry', '||comma||', "i'm", 'getting', 'another', 'call', '||period||', 'hang', 'on', 'just', 'a', 'second', '||period||', 'hello', '||questionmark||', '||return||', '||return||', 'jerry:', 'hi', '||period||', 'elaine', '||comma||', "it's", 'me', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "i'm", 'on', 'the', 'other', 'line', '||period||', '||return||', '||return||', 'jerry:', 'no', 'no', '||dash||', 'this', 'is', 'an', 'emergency', '||dash||', 'get', 'off', 'the', 'phone', '||period||', '||return||', '||return||', 'elaine:', "i'm", 'sorry', '||comma||', 'jill', '||period||', "i'm", 'going', 'to', 'have', 'to', 'take', 'this', 'call', '||period||', 'jerry', '||comma||', "what's", 'the', 'emergency', '||questionmark||', '||return||', '||return||', 'jerry:', 'the', '||quotemark||', 'jerry', '||quotemark||', "'s", 'back', 'on', '||dash||', 'the', 'tv', 'show', '||exclammark||', 'george', 'and', 'i', 'are', 'moving', 'to', 'california', '||exclammark||', '||return||', '||return||', 'elaine:', "that's", 'the', 'emergency', '||questionmark||', '||return||', '||return||', 'jerry:', 'did', 'you', 'hear', 'what', 'i', 'said', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'was', 'on', 'the', 'other', 'line', 'talking', 'to', 'jill', '||period||', '||return||', '||return||', 'jerry:', 'jill', '||questionmark||', 'well', '||comma||', 'why', "didn't", 'you', 'say', 'so', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'said', 'it', 'was', 'an', 'emergency', '||period||', '||return||', '||return||', 'jerry:', 'so', 'now', "she's", 'lost', 'a', 'phone', 'face', '||dash||', 'off', '||questionmark||', "that's", 'even', 'worse', 'than', 'your', 'cell', 'phone', 'walk', '||dash||', 'and', '||dash||', 'talk', '||period||', '||return||', '||return||', 'helen:', 'congratulations', '||comma||', "they're", 'doing', 'the', 'show', '||period||', '||return||', '||return||', 'morty:', 'they', 'should', 'have', 'put', 'that', 'show', 'on', '5', 'years', 'ago', '||period||', 'bunch', 'of', 'idiots', 'at', 'that', 'network', '||period||', 'can', 'i', 'tell', 'you', 'something', '||comma||', 'jerry', '||questionmark||', "it's", 'all', 'crap', 'on', 'tv', '||period||', 'the', 'only', 'thing', 'i', 'watch', 'is', 'xena', 'the', 'warrior', 'princess', '||period||', 'she', 'must', 'be', 'about', 'six', '||dash||', 'six', '||period||', '||return||', '||return||', 'helen:', "she's", 'not', 'six', '||dash||', 'six', '||period||', '||return||', '||return||', 'morty:', 'jerry', '||comma||', 'you', 'ever', 'watch', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "it's", 'pretty', 'good', '||period||', '||return||', '||return||', 'estelle:', 'they', 'picked', 'up', 'the', 'show', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'moving', 'to', 'california', '||period||', '||return||', '||return||', 'frank:', 'oh', 'baby', '||dash||', 'doll', '||comma||', 'this', "kid's", 'going', 'places', '||comma||', 'i', 'told', 'you', '||period||', '||return||', '||return||', 'estelle:', 'the', 'nbc', 'guy', 'liked', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'of', 'course', 'he', 'liked', 'it', '||period||', '||return||', '||return||', 'estelle:', 'he', 'told', 'you', 'he', 'liked', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'he', "wouldn't", 'put', 'it', 'on', 'if', 'he', "didn't", 'like', 'it', '||period||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'writing', '||period||', '||return||', '||return||', 'estelle:', 'you', 'know', 'how', 'to', 'write', '||questionmark||', '||return||', '||return||', 'frank:', 'without', 'the', 'writing', '||comma||', 'you', 'have', 'nothing', '||period||', "you're", 'the', 'ones', 'that', 'make', 'them', 'look', 'good', '||period||', '||return||', '||return||', 'estelle:', 'since', 'when', 'do', 'you', 'know', 'how', 'to', 'write', '||questionmark||', 'i', 'never', 'saw', 'you', 'write', 'anything', '||period||', '||return||', '||return||', 'george:', 'ma', '||questionmark||', '||exclammark||', '||return||', '||return||', 'estelle:', 'i', "don't", 'know', 'how', "you're", 'going', 'to', 'write', 'all', 'those', 'shows', '||period||', 'and', 'where', 'are', 'you', 'get', 'all', 'the', 'ideas', '||questionmark||', '||return||', '||return||', 'frank:', 'would', 'you', 'leave', 'him', 'alone', '||questionmark||', "you'll", 'shatter', 'his', 'confidence', '||exclammark||', '||return||', '||return||', 'george:', 'i', "don't", 'need', 'any', 'ideas', '||period||', "it's", 'a', 'show', 'about', 'nothing', '||period||', '||return||', '||return||', 'estelle:', 'nothing', '||period||', 'please', '||period||', "i'll", 'tell', 'you', 'the', 'truth', '||dash||', 'the', 'whole', 'thing', 'sounds', 'pretty', 'stupid', 'to', 'me', '||period||', '||return||', '||return||', 'jerry:', 'nbc', 'is', 'letting', 'me', 'use', 'their', 'private', 'jet', '||questionmark||', 'and', 'i', 'can', 'go', 'anywhere', 'i', 'want', '||questionmark||', "that's", 'fantastic', '||exclammark||', 'thanks', '||period||', 'great', '||period||', 'okay', '||comma||', 'bye', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'hey', '||exclammark||', '||return||', '||return||', 'jerry:', 'hey', '||dash||', 'how', 'was', 'the', 'beach', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||comma||', 'you', 'missed', 'it', '||comma||', 'buddy', '||dash||', 'lot', 'of', 'femininas', '||dash||', 'some', 'major', 'femininas', '||return||', '||return||', 'jerry:', 'i', 'had', 'a', 'little', 'meeting', 'today', 'at', 'nbc', '||period||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'kramer:', 'you', 'know', '||comma||', 'i', 'went', 'swimming', 'and', 'i', "can't", 'get', 'this', 'water', 'out', 'of', 'my', 'ear', '||period||', '||return||', '||return||', 'jerry:', 'so', 'do', 'you', 'remember', 'five', 'years', 'ago', '||comma||', 'we', 'did', 'that', 'pilot', '||comma||', '||quotemark||', 'jerry', '||quotemark||', '||questionmark||', 'well', '||comma||', 'the', 'new', 'guy', 'at', 'nbc', 'wants', 'to', 'do', 'it', '||period||', "they're", 'putting', 'it', 'on', 'the', 'air', '||exclammark||', "they're", 'giving', 'us', 'a', '13', '||dash||', 'episode', 'commitment', '||period||', 'george', 'and', 'i', 'are', 'moving', 'to', 'california', '||exclammark||', '||return||', '||return||', 'kramer:', "you're", 'moving', 'to', 'california', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'only', 'for', 'a', 'while', '||period||', '||return||', '||return||', 'kramer:', 'yeah', '||comma||', 'but', 'jerry', '||comma||', 'what', 'happens', 'if', 'the', "show's", 'a', 'hit', '||questionmark||', 'you', 'could', 'be', 'out', 'there', 'for', 'years', '||exclammark||', 'you', 'might', 'never', 'come', 'back', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', "i'll", 'be', 'back', '||period||', '||return||', '||return||', 'kramer:', 'jerry', '||period||', "it's", 'l', '||period||', 'a', '||period||', 'nobody', 'leaves', '||period||', "she's", 'a', 'seductress', '||comma||', "she's", 'a', 'siren', '||comma||', "she's", 'a', 'virgin', '||comma||', "she's", 'a', 'whore', '||period||', '||return||', '||return||', 'jerry:', 'and', 'my', 'agent', 'said', 'as', 'a', 'bonus', '||comma||', 'i', 'can', 'use', 'their', 'private', 'jet', '||comma||', 'so', "we'll", 'all', 'go', 'somewhere', '||dash||', 'the', 'four', 'of', 'us', '||comma||', 'one', 'big', 'fling', 'before', 'george', 'and', 'i', 'go', 'to', 'california', '||period||', '||return||', '||return||', 'kramer:', 'fling', '||exclammark||', '||return||', '||return||', 'elaine:', 'so', 'we', 'can', 'go', 'anywhere', 'we', 'want', '||questionmark||', '||return||', '||return||', 'jerry:', 'anywhere', '||period||', '||return||', '||return||', 'elaine:', 'why', 'are', 'they', 'doing', 'this', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'think', 'they', 'want', 'to', 'make', 'it', 'up', 'to', 'us', 'cause', 'they', 'let', 'this', 'thing', 'sit', 'on', 'their', 'shelf', 'for', 'five', 'years', '||period||', '||return||', '||return||', 'elaine:', 'this', 'is', 'all', 'very', 'exciting', '||period||', '||return||', '||return||', 'george:', 'so', '||questionmark||', 'where', 'are', 'we', 'going', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'say', 'japan', '||period||', '||return||', '||return||', 'elaine:', 'why', 'japan', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||dash||', 'geishas', '||dash||', 'they', 'cater', 'to', 'your', 'every', 'whim', '||period||', "they're", 'shy', 'at', 'first', '||comma||', 'but', "they're", 'quite', 'skilled', 'at', 'conversation', '||period||', 'they', 'can', 'discuss', 'anything', 'from', 'world', 'affairs', 'to', 'the', 'fine', 'art', 'of', 'fishing', '||dash||', 'or', 'baking', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||dash||', 'i', 'got', 'it', '||dash||', 'how', 'about', 'russia', '||questionmark||', '||return||', '||return||', 'jerry:', 'russia', '||comma||', "it's", 'so', 'bleak', '||period||', '||return||', '||return||', 'elaine:', "it's", 'not', 'bleak', '||dash||', "it's", 'springtime', '||period||', '||return||', '||return||', 'jerry:', "it's", 'still', 'bleak', '||period||', '||return||', '||return||', 'elaine:', 'you', "can't", 'be', 'bleak', 'in', 'spring', '||period||', '||return||', '||return||', 'jerry:', 'you', 'can', 'be', 'bleak', 'in', 'spring', '||period||', '||return||', '||return||', 'george:', 'if', "you're", 'bleak', '||comma||', "you're", 'bleak', '||period||', '||return||', '||return||', 'elaine:', 'what', 'about', 'switzerland', '||questionmark||', '||return||', '||return||', 'kramer:', 'oh', '||dash||', 'switzerland', '||dash||', 'the', 'von', 'trapp', 'family', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', "it's", 'a', 'bit', 'hilly', '||dash||', 'no', '||questionmark||', '||return||', '||return||', 'elaine:', "you're", 'not', 'going', 'to', 'do', 'any', 'walking', '||period||', '||return||', '||return||', 'george:', 'what', 'if', 'i', 'want', 'to', 'walk', 'around', 'a', 'little', '||questionmark||', '||return||', '||return||', 'elaine:', 'so', 'then', "you'll", 'walk', 'down', 'the', 'hill', 'and', "we'll", 'pick', 'you', 'up', '||period||', '||return||', '||return||', 'george:', 'what', 'if', "i'm", 'at', 'the', 'bottom', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||exclammark||', 'you', 'know', 'what', '||comma||', 'just', 'forget', 'it', '||exclammark||', '||return||', '||return||', 'jerry:', 'alright', '||dash||', 'come', 'on', '||dash||', 'come', 'on', 'now', '||comma||', 'people', '||period||', "let's", 'face', 'it', '||comma||', "we're", 'not', 'all', 'going', 'to', 'agree', 'on', 'anything', '||period||', 'why', "don't", 'we', 'all', 'just', 'go', 'to', 'paris', '||questionmark||', '||return||', '||return||', 'elaine:', "i'll", 'go', 'to', 'paris', '||period||', '||return||', '||return||', 'george:', 'me', 'too', '||period||', '||return||', '||return||', 'kramer:', 'oh', 'yeah', '||dash||', 'oui', 'oui', '||period||', '||return||', '||return||', 'jerry:', 'so', "that's", 'it', '||dash||', "it's", 'settled', '||comma||', "we're", 'going', 'to', 'paris', '||period||', '||return||', '||return||', 'group:', 'yeah', '||exclammark||', '||return||', '||return||', 'elaine:', 'hey', '||period||', 'nbc', 'limo', 'is', 'downstairs', '||dash||', 'beep', 'beep', 'beep', '||period||', '{nbc', 'tune}', "i'm", 'just', 'going', 'to', 'call', 'jill', 'one', 'more', 'time', 'before', 'we', 'go', '||period||', '||return||', '||return||', 'jerry:', 'wait', '||comma||', 'you', "can't", 'make', 'a', 'call', 'like', 'that', 'on', 'your', 'way', 'out', '||period||', 'you', "can't", 'rush', 'that', 'conversation', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'i', "can't", 'call', 'from', 'the', 'limo', '||period||', 'can', 'i', 'call', 'from', 'the', 'plane', '||questionmark||', '||return||', '||return||', 'jerry:', 'first', 'you', 'make', 'a', 'cell', '||dash||', 'phone', 'walk', '||dash||', 'and', '||dash||', 'talk', '||comma||', 'then', 'she', 'loses', 'a', 'call', '||dash||', 'waiting', 'face', '||dash||', 'off', '||comma||', 'now', "you're", 'talking', 'about', 'a', 'plane', 'call', '||questionmark||', '||return||', '||return||', 'elaine:', 'all', 'right', '||comma||', "i'll", 'just', 'have', 'to', 'call', 'her', 'from', 'paris', '||period||', '||return||', '||return||', 'newman:', 'hello', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'jerry:', 'hello', '||comma||', 'newman', '||period||', 'what', 'gives', '||questionmark||', '||return||', '||return||', 'newman:', 'i', 'was', 'speaking', 'earlier', 'with', 'kramer', 'and', 'he', 'mentioned', 'something', 'about', 'a', 'private', 'jet', 'to', 'paris', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', "that's", 'right', '||period||', '||return||', '||return||', 'newman:', 'well', '||comma||', 'i', 'hear', "it's", 'quite', 'beautiful', 'there', 'this', 'time', 'of', 'year', '||comma||', 'and', 'of', 'course', 'you', 'know', "i'm", 'one', '||dash||', 'quarter', 'french', '||period||', '||return||', '||return||', 'jerry:', 'really', '||period||', '||return||', '||return||', 'newman:', 'oh', 'yes', '||comma||', 'in', 'fact', 'i', 'still', 'have', 'family', 'there', '||period||', 'this', 'probably', "won't", 'interest', 'you', '||comma||', 'but', 'i', 'have', 'a', 'cousin', 'there', "who's", 'suffering', 'very', 'badly', '||period||', "she's", 'lost', 'all', 'use', 'of', 'her', 'muscles', '||period||', 'she', 'can', 'only', 'communicate', 'by', 'blinking', '||period||', 'i', 'would', 'so', 'love', 'to', 'see', 'her', '||dash||', 'bring', 'a', 'ray', 'of', 'sunshine', 'into', 'her', 'tragic', 'life', '||period||', 'but', 'alas', '||comma||', 'i', "can't", 'afford', 'it', '||comma||', 'for', 'i', 'am', '||comma||', 'as', 'you', 'know', '||comma||', 'but', 'a', 'simple', 'postal', 'worker', '||period||', '||return||', '||return||', 'jerry:', "that's", 'a', 'shame', '||period||', '||return||', '||return||', 'newman:', 'take', 'me', '||exclammark||', 'take', 'me', '||exclammark||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'forget', 'it', '||period||', 'pull', 'yourself', 'together', '||period||', "you're", 'making', 'me', 'sick', '||period||', 'be', 'a', 'man', '||exclammark||', '||return||', '||return||', 'newman:', 'all', 'right', '||exclammark||', 'but', 'hear', 'me', 'and', 'hear', 'me', 'well', '||dash||', 'the', 'day', 'will', 'come', '||period||', 'oh', 'yes', '||comma||', 'mark', 'my', 'words', '||comma||', 'seinfeld', '||dash||', 'your', 'day', 'of', 'reckoning', 'is', 'coming', '||period||', 'when', 'an', 'evil', 'wind', 'will', 'blow', 'through', 'your', 'little', 'playworld', '||comma||', 'and', 'wipe', 'that', 'smug', 'smile', 'off', 'your', 'face', '||period||', 'and', "i'll", 'be', 'there', '||comma||', 'in', 'all', 'my', 'glory', '||comma||', 'watching', '||dash||', 'watching', 'as', 'it', 'all', 'comes', 'crumbling', 'down', '||period||', '||return||', '||return||', 'captain:', 'ah', '||comma||', 'jerry', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'captain:', "i'm", 'captain', 'maddox', 'this', 'is', 'my', 'co', '||dash||', 'pilot', '||comma||', 'kurt', 'adams', '||period||', 'ready', 'to', 'go', 'to', 'paris', '||questionmark||', '||return||', '||return||', 'jerry:', 'all', 'set', '||period||', "we'll", 'just', 'grab', 'the', 'bags', '||period||', '||return||', '||return||', 'captain:', "don't", 'worry', 'about', 'that', '||period||', "we'll", 'take', 'care', 'of', 'them', 'for', 'you', '||period||', '||return||', '||return||', 'jerry:', 'just', 'keeps', 'on', 'getting', 'better', 'and', 'better', '||period||', '||return||', '||return||', 'jerry:', 'not', 'bad', '||period||', '||return||', '||return||', 'elaine:', 'wow', '||exclammark||', '||return||', '||return||', 'kramer:', 'the', 'only', 'way', 'to', 'fly', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', "i'm", 'sorry', '||dash||', 'i', 'have', 'to', 'say', '||comma||', "i'm", 'a', 'little', 'disappointed', '||comma||', 'i', 'thought', 'it', 'would', 'be', 'a', 'lot', 'nicer', '||period||', '||return||', '||return||', 'jerry:', "you're", 'complaining', 'about', 'a', 'private', 'jet', '||questionmark||', '||return||', '||return||', 'george:', 'you', 'think', 'this', 'is', 'the', 'plane', 'that', 'ted', 'danson', 'gets', '||questionmark||', '||return||', '||return||', 'jerry:', 'ted', 'danson', 'is', 'not', 'even', 'on', 'the', 'network', 'anymore', '||period||', '||return||', '||return||', 'george:', 'still', '||comma||', 'i', 'bet', 'when', 'they', 'gave', 'him', 'a', 'plane', '||comma||', 'it', 'was', 'a', 'lot', 'nicer', 'than', 'this', 'one', '||period||', '||return||', '||return||', 'elaine:', 'will', 'you', 'shut', 'up', '||questionmark||', 'you', 'are', 'ruining', 'the', 'whole', 'trip', '||period||', '||return||', '||return||', 'george:', 'this', 'is', 'a', 'real', 'piece', 'of', 'junk', '||period||', 'i', "don't", 'even', 'feel', 'safe', 'on', 'this', 'thing', '||period||', 'i', 'have', 'a', 'good', 'mind', 'to', 'write', 'a', 'letter', 'tomr', '||period||', 'kimbrough', '||period||', '||return||', '||return||', 'jerry:', "you're", 'not', 'writing', 'any', 'letters', '||exclammark||', '||return||', '||return||', 'elaine:', 'will', 'you', 'turn', 'around', '||questionmark||', '||return||', '||return||', 'george:', 'why', '||questionmark||', '||return||', '||return||', 'elaine:', 'you', 'are', 'annoying', 'me', 'sitting', 'like', 'that', '||period||', "it's", 'effeminate', '||period||', '||return||', '||return||', 'george:', "it's", 'effeminate', 'to', 'sit', 'like', 'this', '||questionmark||', '||return||', '||return||', 'elaine:', 'yes', '||comma||', 'i', 'think', "it's", 'a', 'little', 'effeminate', '||period||', '||return||', '||return||', 'george:', 'how', 'is', 'this', 'effeminate', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', "don't", 'know', '||dash||', 'it', 'just', 'is', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', 'what', 'are', 'you', 'doing', '||questionmark||', '||return||', '||return||', 'jerry:', 'still', 'got', 'water', 'in', 'your', 'ear', '||questionmark||', '||return||', '||return||', 'kramer:', "can't", 'get', 'rid', 'of', 'it', '||period||', 'maybe', 'it', 'leaked', 'inside', 'my', 'brain', '||period||', '||return||', '||return||', 'george:', 'would', 'you', 'stop', 'that', '||questionmark||', "it's", 'not', 'safe', 'to', 'be', 'jumping', 'up', 'and', 'down', 'on', 'a', 'plane', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'to', 'get', 'it', 'out', '||comma||', 'i', "can't", 'take', 'this', 'anymore', '||period||', '||return||', '||return||', 'george:', 'kramer', '||comma||', "don't", 'be', 'fooling', 'around', 'up', 'here', '||period||', '||return||', '||return||', 'george:', 'kramer', '||exclammark||', '||return||', '||return||', 'captain:', 'hey', '||comma||', 'get', 'the', 'hell', 'out', 'of', 'here', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', 'noise', '||questionmark||', 'what', 'is', 'that', 'noise', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||comma||', 'what', 'the', 'hell', 'did', 'you', 'do', '||questionmark||', '||return||', '||return||', 'kramer:', 'i', 'lost', 'my', 'balance', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||exclammark||', '||return||', '||return||', 'elaine:', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'jerry:', 'kramer', '||exclammark||', '||return||', '||return||', 'kramer:', 'it', 'was', 'an', 'accident', '||period||', '||return||', '||return||', 'george:', 'i', 'told', 'you', 'to', 'stop', 'with', 'the', 'hopping', '||period||', '||return||', '||return||', 'elaine:', 'oh', 'my', 'god', '||comma||', "we're", 'going', 'down', '||period||', "we're", 'going', 'to', 'die', '||exclammark||', '||return||', '||return||', 'george:', 'just', 'when', 'i', 'was', 'doing', 'great', '||period||', 'i', 'told', 'you', 'god', "wouldn't", 'let', 'me', 'be', 'successful', '||period||', '||return||', '||return||', 'jerry:', 'is', 'this', 'it', '||questionmark||', 'is', 'this', 'how', 'it', 'ends', '||questionmark||', 'it', "can't", '||dash||', 'it', "can't", 'end', 'like', 'this', '||period||', '||return||', '||return||', 'kramer:', "i'm", 'ready', '||exclammark||', "i'm", 'ready', '||exclammark||', 'glory', 'hallelujah', '||exclammark||', '||return||', '||return||', 'george:', 'jerry', '||questionmark||', 'jerry', 'can', 'you', 'hear', 'me', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', "there's", 'something', 'i', 'have', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', 'what', 'is', 'it', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'cheated', 'in', 'the', 'contest', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'the', 'contest', '||dash||', 'i', 'cheated', '||period||', '||return||', '||return||', 'jerry:', 'why', '||questionmark||', '||return||', '||return||', 'george:', 'because', "i'm", 'a', 'cheater', '||exclammark||', 'i', 'had', 'to', 'tell', 'you', '||period||', '||return||', '||return||', 'jerry:', 'great', '||dash||', 'i', 'won', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', 'i', 'gotta', 'tell', 'you', 'something', 'too', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'elaine', 'i', 'got', 'something', 'i', 'want', 'to', 'say', 'to', 'you', '||period||', '||return||', '||return||', 'elaine:', 'no', 'no', '||dash||', 'me', 'first', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||period||', '||return||', '||return||', 'elaine:', 'jerry', '||comma||', "i've", 'always', 'loved', '||period||', '||period||', 'u', '||period||', '||period||', '||return||', '||return||', 'george:', 'hey', '||dash||', "what's", 'going', 'on', '||questionmark||', '||return||', '||return||', 'kramer:', "we're", 'straightening', 'out', '||exclammark||', '||return||', '||return||', 'elaine:', "we're", 'straightening', 'out', '||questionmark||', '||return||', '||return||', 'jerry:', "we're", 'straightening', 'out', '||exclammark||', '||return||', '||return||', 'george:', "we're", 'straightening', 'out', '||exclammark||', '||return||', '||return||', 'group:', 'yeah', '||exclammark||', '||return||', '||return||', 'captain:', 'well', '||comma||', 'again', '||comma||', 'sorry', 'about', 'that', 'little', 'mishap', '||period||', 'but', 'once', 'you', 'get', 'everything', 'checked', 'out', 'there', "shouldn't", 'be', 'anymore', 'problems', '||period||', '||return||', '||return||', 'jerry:', 'where', 'are', 'we', '||questionmark||', '||return||', '||return||', 'captain:', 'latham', '||comma||', 'massachusetts', '||period||', 'why', "don't", 'you', 'take', 'a', 'cab', 'into', 'town', '||comma||', 'get', 'yourself', 'something', 'to', 'eat', '||period||', 'i', 'got', 'your', 'beeper', 'number', '||dash||', "i'll", 'beep', 'you', 'as', 'soon', 'as', "we're", 'ready', '||period||', '||return||', '||return||', 'jerry:', 'okay', '||period||', '||return||', '||return||', 'elaine:', 'okay', '||period||', '||return||', '||return||', 'jerry:', "we'll", 'see', 'you', 'later', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', 'what', 'are', 'we', 'going', 'to', 'do', 'about', 'paris', '||questionmark||', 'i', 'mean', 'are', 'we', 'actually', 'going', 'to', 'get', 'back', 'on', 'this', 'plane', '||questionmark||', '||return||', '||return||', 'jerry:', 'i', 'say', 'we', 'go', 'back', 'to', 'new', 'york', '||comma||', 'and', 'take', 'a', 'regular', 'flight', '||period||', '||return||', '||return||', 'george:', "i'm", 'not', 'getting', 'on', 'a', 'regular', 'plane', 'now', '||dash||', "i'm", 'all', 'psyched', 'up', 'to', 'go', 'on', 'a', 'private', 'jet', '||period||', 'no', 'way', "i'm", 'getting', 'on', 'a', 'regular', 'plane', '||period||', '||return||', '||return||', 'elaine:', 'well', '||comma||', "i'm", 'sure', 'that', 'they', 'would', 'fly', 'us', 'first', 'class', '||period||', '||return||', '||return||', 'george:', 'first', 'class', "doesn't", 'make', 'it', 'anymore', '||period||', 'now', 'you', 'get', 'on', 'the', 'phone', 'with', 'kimbrough', '||comma||', 'tell', 'him', 'what', 'happened', 'and', 'tell', 'him', 'to', 'get', 'another', 'plane', 'down', 'here', '||comma||', 'but', 'this', 'time', '||comma||', 'the', 'good', 'one', '||dash||', 'the', 'ted', 'danson', 'plane', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', "i'll", 'feel', 'him', 'out', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', 'just', 'tell', 'him', 'to', 'hurry', 'it', 'up', '||period||', '||return||', '||return||', 'stranger:', 'nice', 'day', '||period||', '||return||', '||return||', 'jerry:', 'another', 'one', '||questionmark||', '||return||', '||return||', 'robber:', 'alright', 'fatso', '||comma||', 'out', 'of', 'the', 'car', '||period||', '||return||', '||return||', 'kramer:', 'i', 'want', 'to', 'capture', 'this', '||period||', '||return||', '||return||', 'robber:', 'come', 'on', '||exclammark||', 'gimme', 'your', 'wallet', '||period||', '||return||', '||return||', 'vogel:', "don't", 'shoot', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'there', 'goes', 'the', 'money', 'for', 'the', 'lipo', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'the', 'great', 'thing', 'about', 'robbing', 'a', 'fat', 'guy', 'is', "it's", 'an', 'easy', 'getaway', '||period||', 'you', 'know', '||questionmark||', 'they', "can't", 'really', 'chase', 'ya', '||exclammark||', '||return||', '||return||', 'george:', "he's", 'actually', 'doing', 'him', 'a', 'favor', '||period||', "it's", 'less', 'money', 'for', 'him', 'to', 'buy', 'food', '||period||', '||return||', '||return||', 'robber:', 'i', 'want', 'your', 'wallet', '||period||', 'come', 'on', '||period||', 'come', 'on', '||comma||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', "that's", 'a', 'shame', '||period||', 'alright', '||comma||', "i'm", 'gonna', 'call', 'nbc', '||period||', '||return||', '||return||', 'vogel:', 'officer', '||comma||', "he's", 'stealing', 'my', 'car', '||exclammark||', 'officer', '||comma||', 'i', 'was', 'carjacked', '||period||', 'i', 'was', 'held', 'up', 'at', 'gunpoint', '||exclammark||', 'he', 'took', 'my', 'wallet', '||comma||', 'everything', '||exclammark||', '||return||', '||return||', 'jerry:', 'okay', '||comma||', 'thanks', 'anyway', '||period||', 'they', "can't", 'get', 'another', 'plane', '||period||', '||return||', '||return||', 'kramer:', 'all', 'right', '||comma||', "what's", 'wrong', 'with', 'the', 'plane', 'we', 'got', '||questionmark||', "they're", 'just', 'checking', 'it', 'out', '||period||', '||return||', '||return||', 'elaine:', 'forget', 'it', '||period||', '||return||', '||return||', 'jerry:', 'no', '||comma||', 'no', '||comma||', 'no', '||period||', "we're", 'not', 'getting', 'on', 'there', '||period||', 'come', 'on', '||comma||', "let's", 'go', 'get', 'something', 'to', 'eat', 'in', 'sticksville', '||period||', '||return||', '||return||', 'officer:', 'all', 'right', '||comma||', 'hold', 'it', 'right', 'there', '||period||', '||return||', '||return||', 'kramer:', 'what', '||questionmark||', '||return||', '||return||', 'officer:', "you're", 'under', 'arrest', '||period||', '||return||', '||return||', 'jerry:', 'under', 'arrest', '||questionmark||', 'what', 'for', '||questionmark||', '||return||', '||return||', 'officer:', 'article', '223', '||dash||', '7', 'of', 'the', 'latham', 'county', 'penal', 'code', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', 'no', '||comma||', 'no', '||dash||', 'we', "didn't", 'do', 'anything', '||period||', '||return||', '||return||', 'officer:', "that's", 'exactly', 'right', '||period||', 'the', 'law', 'requires', 'you', 'to', 'help', 'or', 'assist', 'anyone', 'in', 'danger', 'as', 'long', 'as', "it's", 'reasonable', 'todo', 'so', '||period||', '||return||', '||return||', 'george:', 'i', 'never', 'heard', 'of', 'that', '||period||', '||return||', '||return||', 'officer:', "it's", 'new', '||period||', "it's", 'called', 'the', 'good', 'samaritan', 'law', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'elaine:', 'the', 'good', 'samaritan', 'law', '||questionmark||', 'are', 'they', 'crazy', '||questionmark||', '||return||', '||return||', 'george:', 'why', 'would', 'we', 'want', 'to', 'help', 'somebody', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'know', '||period||', '||return||', '||return||', 'george:', "that's", 'what', 'nuns', 'and', 'red', 'cross', 'workers', 'are', 'for', '||period||', '||return||', '||return||', 'kramer:', 'the', 'samaritans', 'were', 'an', 'ancient', 'tribe', '||dash||', 'very', 'helpful', 'to', 'people', '||period||', '||return||', '||return||', 'elaine:', 'alright', '||dash||', 'um', '||comma||', 'excuse', 'me', '||comma||', 'hi', '||comma||', 'could', 'you', 'tell', 'me', 'what', 'kind', 'of', 'law', 'this', 'is', '||period||', '||return||', '||return||', 'deputy:', 'well', '||comma||', 'they', 'just', 'passed', 'it', 'last', 'year', '||period||', "it's", 'modeled', 'after', 'the', 'french', 'law', '||period||', 'i', 'heard', 'about', 'it', 'after', 'princess', 'diana', 'was', 'killed', 'and', 'all', 'those', 'photographers', 'were', 'just', 'standing', 'around', '||period||', '||return||', '||return||', 'jerry:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'yeah', '||period||', '||return||', '||return||', 'deputy:', "you're", 'the', 'first', 'ones', 'to', 'be', 'arrested', 'on', 'it', '||comma||', 'probably', 'in', 'the', 'whole', 'country', '||period||', '||return||', '||return||', 'george:', 'all', 'right', '||comma||', 'so', "what's", 'the', 'penalty', 'here', '||questionmark||', "let's", 'just', 'pay', 'the', 'fine', 'or', 'something', 'and', 'get', 'the', 'hell', 'out', 'of', 'here', '||period||', '||return||', '||return||', 'deputy:', 'well', '||comma||', "it's", 'not', 'that', 'easy', '||period||', 'now', 'see', '||comma||', 'the', 'law', 'calls', 'for', 'a', 'maximum', 'fine', 'of', '$85', '||comma||', '000', 'and', 'as', 'much', 'as', 'five', 'years', 'in', 'prison', '||period||', '||return||', '||return||', 'elaine:', 'what', '||questionmark||', '||return||', '||return||', 'george:', 'oh', 'no', 'no', 'no', 'no', '||dash||', 'we', 'have', 'to', 'be', 'in', 'california', 'next', 'week', '||period||', "we're", 'starting', 'a', 'tv', 'show', '||period||', '||return||', '||return||', 'deputy:', 'california', '||questionmark||', 'oh', 'gosh', '||comma||', 'i', "don't", 'think', 'so', '||period||', 'yeah', '||comma||', 'my', 'guess', 'is', "you're", 'gonna', 'be', 'prosecuted', '||period||', 'better', 'get', 'yourselves', 'a', 'good', 'lawyer', '||period||', '||return||', '||return||', 'chiles:', 'who', 'told', 'you', 'to', 'put', 'the', 'cheese', 'on', '||questionmark||', 'did', 'i', 'tell', 'you', 'to', 'put', 'the', 'cheese', 'on', '||questionmark||', 'i', "didn't", 'tell', 'you', 'to', 'put', 'the', 'cheese', 'on', '||period||', '||return||', '||return||', 'secretary:', 'jerry', 'seinfeld', 'on', 'the', 'phone', '||period||', '||return||', '||return||', 'chiles:', 'you', 'people', 'with', 'the', 'cheese', '||period||', 'it', 'never', 'ends', '||period||', 'hello', '||questionmark||', 'uh', 'huh', '||period||', 'uh', 'huh', '||period||', 'uh', 'huh', '||period||', 'good', 'samaritan', 'law', '||questionmark||', 'i', 'never', 'heard', 'of', 'it', '||period||', 'you', "don't", 'have', 'to', 'help', 'anybody', '||period||', "that's", 'what', 'this', "country's", 'all', 'about', '||period||', "that's", 'deplorable', '||comma||', 'unfathomable', '||comma||', 'improbable', '||period||', 'hold', 'on', '||period||', 'suzie', '||comma||', 'cancel', 'my', 'appointment', 'with', 'dr', '||period||', 'bison', '||period||', 'and', 'pack', 'a', 'bag', 'for', 'me', '||period||', 'i', 'want', 'to', 'get', 'to', 'latham', '||comma||', 'massachusetts', '||comma||', 'right', 'away', '||period||', '||return||', '||return||', 'hoyt:', 'so', 'they', 'got', 'jackie', 'chiles', '||comma||', 'huh', '||questionmark||', '||leftparen||', 'sets', 'down', 'the', 'newspaper', '||rightparen||', 'uh', 'hmm', '||period||', 'you', 'know', 'what', 'that', 'means', '||period||', 'this', 'whole', 'place', 'is', 'going', 'to', 'be', 'swarming', 'with', 'media', 'by', 'the', 'time', 'this', 'thing', 'is', 'over', '||period||', "you're", 'not', 'going', 'to', 'be', 'able', 'to', 'find', 'a', 'hotel', 'room', 'in', 'this', 'town', '||period||', 'the', 'whole', 'country', 'is', 'going', 'to', 'be', 'watching', 'us', '||period||', 'now', 'we', 'got', 'to', 'do', 'whatever', 'it', 'takes', 'to', 'win', 'it', '||comma||', 'no', 'matter', 'what', 'the', 'cost', '||period||', 'the', 'big', 'issue', 'in', 'this', 'trial', 'is', 'going', 'to', 'be', 'character', '||period||', 'i', 'want', 'you', 'to', 'find', 'out', 'everything', 'you', 'can', 'about', 'these', 'people', '||dash||', 'and', 'i', 'mean', 'everything', '||period||', '||return||', '||return||', 'kramer:', 'mmmm', '||comma||', 'this', 'is', 'pretty', 'good', 'chow', '||comma||', 'huh', '||questionmark||', '||return||', '||return||', 'george:', 'would', 'it', 'kill', 'him', 'to', 'check', 'up', 'on', 'us', '||questionmark||', 'no', '||dash||', 'drops', 'off', 'the', 'meals', 'and', "that's", 'it', '||period||', 'i', 'realize', "we're", 'prisoners', '||comma||', 'but', "we're", 'still', 'entitled', 'to', 'catsup', '||period||', '||return||', '||return||', 'elaine:', 'i', 'guess', 'we', "could've", 'called', 'for', 'help', '||period||', '||return||', '||return||', 'jerry:', 'but', 'then', 'we', 'would', 'have', 'missed', 'the', 'whole', 'thing', '||period||', '||return||', '||return||', 'kramer:', 'i', 'still', 'had', 'it', 'on', 'video', '||period||', 'we', 'could', 'have', 'watched', 'it', 'later', '||period||', '||return||', '||return||', 'george:', 'yeah', '||comma||', "he's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'i', 'forgot', 'about', 'the', 'video', '||period||', '||return||', '||return||', 'elaine:', 'sure', '||dash||', 'the', 'video', '||period||', '||return||', '||return||', 'elaine:', 'what', 'is', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', "plane's", 'ready', '||period||', '||return||', '||return||', 'rivera:', 'hi', 'everybody', '||comma||', "i'm", 'geraldo', 'rivera', '||period||', 'tonight', "we'll", 'be', 'talking', 'about', 'what', 'most', 'of', 'you', 'have', 'probably', 'been', 'discussing', 'in', 'your', 'homes', '||comma||', 'and', 'around', 'the', 'water', 'coolers', 'in', 'your', 'offices', '||period||', 'i', 'am', 'speaking', 'of', 'course', 'of', 'the', 'controversial', 'good', 'samaritan', 'trial', 'that', 'gets', 'underway', 'thursday', 'in', 'latham', '||comma||', 'massachusetts', '||period||', 'now', 'before', 'we', 'meet', 'our', 'distinguished', 'panel', '||comma||', "let's", 'go', 'to', 'latham', 'live', '||comma||', 'where', 'jane', 'wells', 'is', 'standing', 'by', '||period||', 'jane', '||dash||', '||return||', '||return||', 'wells:', 'yes', '||period||', 'good', 'evening', '||comma||', 'geraldo', '||period||', '||return||', '||return||', 'rivera:', "what's", 'the', 'mood', '||questionmark||', "what's", 'going', 'on', 'tonight', '||questionmark||', '||return||', '||return||', 'wells:', 'well', '||comma||', 'latham', 'is', 'fairly', 'quite', 'tonight', '||comma||', 'considering', 'the', 'media', 'circus', 'that', 'has', 'descended', 'upon', 'this', 'quaint', 'little', 'town', '||period||', '||return||', '||return||', 'rivera:', 'and', 'what', 'about', 'the', 'defendants', '||dash||', 'the', 'so', '||dash||', 'called', 'new', 'york', 'four', '||period||', 'how', 'are', 'they', 'holding', 'up', '||questionmark||', '||return||', '||return||', 'wells:', 'well', '||comma||', 'i', 'did', 'speak', 'with', 'one', 'of', 'the', 'deputies', 'who', 'had', 'some', 'contact', 'with', 'them', '||comma||', 'and', 'he', 'told', 'me', 'quote', '||quotemark||', "there's", 'no', 'love', 'lost', 'with', 'that', 'group', '||period||', '||quotemark||', '||return||', '||return||', 'rivera:', 'anything', 'else', '||comma||', 'jane', '||questionmark||', '||return||', '||return||', 'wells:', 'there', 'also', 'seems', 'to', 'be', 'some', 'friction', 'between', 'mr', '||period||', 'seinfeld', '||comma||', 'and', 'ms', '||period||', 'benes', '||period||', 'the', 'rumor', 'is', 'that', 'they', 'once', 'dated', '||comma||', 'and', "it's", 'possible', 'that', 'ended', 'badly', '||period||', '||return||', '||return||', 'rivera:', 'well', '||comma||', 'ladies', 'and', 'gentlemen', '||comma||', 'who', 'know', '||comma||', 'maybe', 'this', 'trial', 'will', 'bring', 'them', 'closer', 'together', '||period||', 'maybe', "they'll", 'even', 'end', 'up', 'getting', 'married', '||period||', '||return||', '||return||', 'helen:', 'i', 'hope', 'you', 'packed', 'enough', '||dash||', 'this', 'trial', 'could', 'last', 'for', 'weeks', '||period||', '||return||', '||return||', 'morty:', "what's", 'all', 'that', '||questionmark||', '||return||', '||return||', 'helen:', 'cereal', '||period||', '||return||', '||return||', 'morty:', "you're", 'packing', 'cereal', '||questionmark||', '||return||', '||return||', 'helen:', "i'm", 'bringing', 'it', 'for', 'jerry', '||period||', '||return||', '||return||', 'morty:', 'you', 'got', 'enough', 'here', 'for', 'a', 'life', 'sentence', '||period||', '||return||', '||return||', 'helen:', 'he', 'likes', 'it', '||period||', 'he', 'says', 'he', 'misses', 'that', 'more', 'that', 'anything', '||period||', '||return||', '||return||', 'morty:', 'so', 'bring', 'a', 'snack', '||dash||', 'pack', '||period||', '||return||', '||return||', 'estelle:', 'poor', 'georgie', '||comma||', 'was', 'it', 'our', 'fault', 'this', 'happened', 'to', 'him', '||questionmark||', 'did', 'we', 'do', 'something', 'wrong', '||questionmark||', 'maybe', 'it', 'was', 'our', 'fault', '||period||', '||return||', '||return||', 'frank:', 'maybe', 'it', 'was', 'your', 'fault', '||period||', 'it', "wasn't", 'my', 'fault', '||period||', 'i', 'can', 'tell', 'you', 'that', '||period||', '||return||', '||return||', 'estelle:', 'oh', '||comma||', 'so', 'it', 'was', 'my', 'fault', '||comma||', 'but', 'not', 'yours', '||period||', '||return||', '||return||', 'frank:', 'you', 'were', 'the', 'one', 'who', 'smothered', 'him', '||period||', '||return||', '||return||', 'estelle:', 'i', 'did', 'not', 'smother', 'him', '||period||', '||return||', '||return||', 'frank:', 'you', 'smothered', '||exclammark||', 'he', "couldn't", 'get', 'any', 'air', '||exclammark||', 'he', "couldn't", 'breathe', '||exclammark||', 'he', 'was', 'suffocating', '||exclammark||', '||return||', '||return||', 'estelle:', 'sure', '||comma||', 'and', 'you', 'were', 'always', 'in', 'korea', 'with', 'your', 'religious', 'chachkis', '||period||', '||return||', '||return||', 'frank:', 'i', 'had', 'to', 'make', 'a', 'living', '||exclammark||', '||return||', '||return||', 'kramer:', 'this', 'is', 'excellent', 'huh', '||questionmark||', "don't", 'worry', 'i', "didn't", 'use', 'too', 'much', 'milk', '||comma||', 'cause', 'i', 'know', 'we', 'gotta', 'make', 'it', 'last', '||period||', '||return||', '||return||', 'jerry:', 'you', 'know', "i've", 'had', 'to', 'reduce', 'my', 'milk', 'level', '||period||', 'my', 'whole', 'life', "i've", 'always', 'filled', 'to', 'at', 'least', 'three', 'quarters', '||dash||', 'sometimes', '||comma||', 'to', 'the', 'top', 'of', 'the', 'cereal', '||period||', 'now', '||comma||', 'to', 'conserve', '||comma||', 'i', "can't", 'even', 'see', 'the', 'milk', 'anymore', '||period||', "it's", 'a', 'big', 'adjustment', '||period||', '||return||', '||return||', 'kramer:', 'i', 'bet', '||period||', '||return||', '||return||', 'jerry:', "it's", 'one', 'of', 'the', 'hardest', 'things', "i've", 'ever', 'had', 'to', 'do', '||period||', '||return||', '||return||', 'chiles:', 'good', 'morning', '||period||', '||return||', '||return||', 'elaine:', 'good', 'morning', '||comma||', 'jackie', '||period||', '||return||', '||return||', 'jerry:', 'good', 'morning', '||period||', '||return||', '||return||', 'chiles:', 'is', 'everybody', 'ready', '||questionmark||', "didn't", 'i', 'tell', 'you', 'i', 'wanted', 'you', 'to', 'wear', 'the', 'cardigan', '||questionmark||', '||return||', '||return||', 'george:', 'it', 'makes', 'me', 'look', 'older', '||period||', '||return||', '||return||', 'chiles:', 'look', 'older', '||questionmark||', 'do', 'you', 'think', 'this', 'is', 'a', 'game', '||questionmark||', 'is', 'that', 'what', 'you', 'think', 'this', 'is', '||questionmark||', "i'm", 'trying', 'to', 'give', 'you', 'amoral', 'compass', '||period||', 'you', 'have', 'no', 'moral', 'compass', '||period||', "you're", 'going', 'to', 'walk', 'into', 'that', 'courtroom', '||comma||', 'and', 'the', "jury's", 'going', 'to', 'see', 'a', 'mean', '||comma||', 'nasty', '||comma||', 'evil', 'george', 'costanza', '||period||', 'i', 'want', 'them', 'to', 'see', 'perry', 'como', '||period||', 'no', "one's", 'going', 'to', 'convict', 'perry', 'como', '||period||', 'perry', 'como', 'helps', 'out', 'a', 'fat', 'tub', "who's", 'getting', 'robbed', '||period||', '||return||', '||return||', 'chiles:', 'do', 'you', 'think', "it's", 'funny', '||questionmark||', '||return||', '||return||', 'jerry:', 'no', '||period||', '||return||', '||return||', 'chiles:', 'you', 'damn', 'right', 'it', "isn't", '||period||', 'you', 'better', 'not', 'be', 'carrying', 'on', 'laughing', 'in', 'that', 'courtroom', '||comma||', 'funny', 'man', '||period||', 'cause', 'if', 'you', 'start', 'getting', 'all', 'smart', '||dash||', 'alecky', '||comma||', 'making', 'wisecracks', '||comma||', 'acting', 'a', 'fool', '||comma||', 'you', 'gonna', 'find', 'yourself', 'in', 'here', 'for', 'a', 'long', '||comma||', 'long', 'time', '||period||', 'i', "don't", 'like', 'that', 'tie', '||period||', 'suzie', '||comma||', 'get', 'one', 'of', 'my', 'ties', 'from', 'my', 'briefcase', '||period||', '||return||', '||return||', 'elaine:', 'how', 'do', 'i', 'look', '||comma||', 'jackie', '||questionmark||', '||return||', '||return||', 'chiles:', 'oh', '||comma||', 'you', 'looking', 'good', '||period||', 'you', 'look', 'strong', '||period||', 'you', 'one', 'fine', '||dash||', 'looking', 'sexy', 'lady', '||period||', '||return||', '||return||', 'elaine:', 'thank', 'you', '||comma||', 'jackie', '||period||', '||return||', '||return||', 'kramer:', 'how', 'bout', 'me', '||comma||', 'jackie', '||questionmark||', '||return||', '||return||', 'chiles:', 'kramer', '||comma||', 'you', 'always', 'look', 'good', '||period||', 'you', 'got', 'respect', 'for', 'yourself', '||period||', "you're", 'genuine', '||period||', "jury's", 'going', 'to', 'pick', 'up', 'on', 'that', '||period||', '||return||', '||return||', 'chiles:', 'here', '||period||', '||return||', '||return||', 'jerry:', 'this', 'one', '||questionmark||', '||return||', '||return||', 'chiles:', "that's", 'right', '||period||', '||return||', '||return||', 'jerry:', 'do', 'i', 'have', 'to', '||questionmark||', '||return||', '||return||', 'elaine:', 'jackie', 'says', 'put', 'it', 'on', '||comma||', 'jerry', '||period||', '||return||', '||return||', 'bailiff:', 'all', 'rise', '||period||', 'fourth', 'district', 'county', 'court', '||comma||', 'latham', '||comma||', 'massachusetts', 'is', 'now', 'in', 'session', '||period||', 'the', 'honorable', 'judge', 'arthur', 'vandelay', 'presiding', '||period||', '||return||', '||return||', 'george:', 'vandelay', '||questionmark||', 'the', "judge's", 'name', 'is', 'vandelay', '||questionmark||', '||return||', '||return||', 'chiles:', 'vanda', 'who', '||questionmark||', '||return||', '||return||', 'george:', 'jerry', '||comma||', 'did', 'you', 'hear', 'that', '||questionmark||', '||return||', '||return||', 'jerry:', 'yeah', '||period||', '||return||', '||return||', 'george:', 'i', 'think', "that's", 'a', 'good', 'sign', '||period||', '||return||', '||return||', 'vandelay:', 'is', 'the', 'district', 'attorney', 'ready', 'to', 'proceed', '||questionmark||', '||return||', '||return||', 'hoyt:', 'we', 'are', '||comma||', 'your', 'honor', '||period||', '||return||', '||return||', 'vandelay:', 'mr', '||period||', 'hoyt', '||period||', '||return||', '||return||', 'hoyt:', 'ladies', 'and', 'gentlemen', '||comma||', 'last', 'year', '||comma||', 'our', 'city', 'council', 'by', 'a', 'vote', 'of', 'twelve', 'to', 'two', '||comma||', 'passed', 'a', 'good', 'samaritan', 'law', '||period||', 'now', '||comma||', 'essentially', '||comma||', 'we', 'made', 'it', 'a', 'crime', 'to', 'ignore', 'a', 'fellow', 'human', 'being', 'in', 'trouble', '||period||', 'now', 'this', 'group', 'from', 'new', 'york', 'not', 'only', 'ignored', '||comma||', 'but', '||comma||', 'as', 'we', 'will', 'prove', '||comma||', 'they', 'actually', 'mocked', 'the', 'victim', 'as', 'he', 'was', 'being', 'robbed', 'at', 'gunpoint', '||period||', 'i', 'can', 'guarantee', 'you', 'one', 'other', 'thing', '||comma||', 'ladies', 'and', 'gentlemen', '||comma||', 'this', 'is', 'not', 'the', 'first', 'time', 'they', 'have', 'behaved', 'in', 'this', 'manner', '||period||', 'on', 'the', 'contrary', '||comma||', 'they', 'have', 'quite', 'a', 'record', 'of', 'mocking', 'and', 'maligning', '||period||', 'this', 'is', 'a', 'history', 'of', 'selfishness', '||comma||', 'self', '||dash||', 'absorption', '||comma||', 'immaturity', '||comma||', 'and', 'greed', '||period||', 'and', 'you', 'will', 'see', 'how', 'everyone', 'who', 'has', 'come', 'into', 'contact', 'with', 'these', 'four', 'individuals', 'has', 'been', 'abused', '||comma||', 'wronged', '||comma||', 'deceived', 'and', 'betrayed', '||period||', 'this', 'time', '||comma||', 'they', 'have', 'gone', 'too', 'far', '||period||', 'this', 'time', 'they', 'are', 'going', 'to', 'be', 'held', 'accountable', '||period||', 'this', 'time', '||comma||', 'they', 'are', 'the', 'ones', 'who', 'will', 'pay', '||period||', '||return||', '||return||', 'vandelay:', 'mr', '||period||', 'chiles', '||period||', '||return||', '||return||', 'chiles:', 'i', 'am', 'shocked', 'and', 'chagrined', '||comma||', 'mortified', 'and', 'stupefied', '||period||', 'this', 'trial', 'is', 'outrageous', '||exclammark||', 'it', 'is', 'a', 'waste', 'of', 'the', "taxpayers'", 'time', 'and', 'money', '||period||', 'it', 'is', 'a', 'travesty', 'of', 'justice', 'that', 'these', 'four', 'people', 'have', 'been', 'incarcerated', 'while', 'the', 'real', 'perpetrator', 'is', 'walking', 'around', 'laughing', '||dash||', 'lying', 'and', 'laughing', '||comma||', 'laughing', 'and', 'lying', '||period||', 'you', 'know', 'what', 'these', 'four', 'people', 'were', '||questionmark||', 'they', 'were', 'innocentbystanders', '||period||', 'now', '||comma||', 'you', 'just', 'think', 'about', 'that', 'term', '||period||', 'innocent', '||period||', 'bystanders', '||period||', 'because', "that's", 'exactly', 'what', 'they', 'were', '||period||', 'we', 'know', 'theywere', 'bystanders', '||comma||', "nobody's", 'disputing', 'that', '||period||', 'so', 'how', 'can', 'a', 'bystander', 'be', 'guilty', '||questionmark||', 'no', 'such', 'thing', '||period||', 'have', 'you', 'ever', 'heard', 'of', 'a', 'guilty', 'bystander', '||questionmark||', 'no', '||comma||', 'because', 'you', 'cannot', 'be', 'a', 'bystander', 'and', 'be', 'guilty', '||period||', 'bystanders', 'are', 'by', 'definition', '||comma||', 'innocent', '||period||', 'that', 'is', 'the', 'nature', 'of', 'bystanding', '||period||', 'but', 'no', '||comma||', 'they', 'want', 'to', 'change', 'nature', 'here', '||period||', 'they', 'want', 'to', 'create', 'a', 'whole', 'new', 'animal', '||dash||', 'the', 'guilty', 'bystander', '||period||', "don't", 'you', 'let', 'them', 'do', 'it', '||period||', 'only', 'you', 'can', 'stop', 'them', '||period||', '||return||', '||return||', 'vandelay:', 'is', 'the', 'prosecution', 'ready', 'to', 'present', 'its', 'first', 'witness', '||questionmark||', '||return||', '||return||', 'hoyt:', 'we', 'are', '||comma||', 'your', 'honor', '||period||', 'call', 'officer', 'matt', 'vogel', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'bailiff:', 'call', 'matt', 'vogel', '||period||', '||return||', '||return||', 'hoyt:', 'so', 'they', 'were', 'just', 'standing', 'there', '||questionmark||', '||return||', '||return||', 'vogel:', 'yes', '||period||', '||return||', '||return||', 'hoyt:', 'did', 'one', 'of', 'them', 'have', 'a', 'video', 'camera', '||questionmark||', '||return||', '||return||', 'vogel:', 'yes', '||period||', '||return||', '||return||', 'hoyt:', 'your', 'honor', '||comma||', 'with', 'the', "court's", 'permission', '||comma||', 'we', 'would', 'like', 'to', 'play', 'back', 'that', 'video', 'and', 'enter', 'it', 'into', 'evidence', 'as', 'exhibit', 'a', '||period||', '||return||', '||return||', 'vandelay:', 'proceed', '||period||', '||return||', '||return||', 'vogel:', "don't", 'shoot', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', 'there', 'goes', 'the', 'money', 'for', 'the', 'lipo', '||period||', '||return||', '||return||', 'elaine:', 'see', '||comma||', 'the', 'great', 'thing', 'about', 'robbing', 'a', 'fat', 'guy', 'is', "it's", 'an', 'easy', 'getaway', '||period||', 'they', "can't", 'really', 'chase', 'ya', '||exclammark||', '||return||', '||return||', 'george:', "he's", 'actually', 'doing', 'him', 'a', 'favor', '||period||', "it's", 'less', 'money', 'for', 'him', 'to', 'buy', 'food', '||period||', '||return||', '||return||', '[new', 'witness:', 'the', 'victim', 'of', 'the', 'robbery]', '||return||', '||return||', 'hoyt:', 'so', 'they', 'just', 'stood', 'there', 'and', 'did', 'nothing', '||questionmark||', '||return||', '||return||', 'vogel:', 'yeah', '||comma||', 'nothing', '||period||', 'nothing', '||exclammark||', '||return||', '||return||', 'hoyt:', 'no', 'further', 'questions', '||period||', '||return||', '||return||', 'george:', 'hey', '||exclammark||', 'great', 'plane', '||exclammark||', 'thanks', 'a', 'lot', '||period||', 'piece', 'of', 'junk', '||period||', 'you', 'know', 'you', 'almost', 'got', 'us', 'killed', '||exclammark||', '||return||', '||return||', 'hoyt:', 'call', 'mabel', 'choate', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'bailiff:', 'call', 'mabel', 'choate', '||period||', '||return||', '||return||', 'chiles:', 'your', 'honor', '||period||', 'i', 'most', 'strenuously', 'and', 'vigorously', 'object', 'to', 'this', 'witness', '||period||', 'she', 'was', 'not', 'present', 'at', 'the', 'time', 'of', 'the', 'incident', '||period||', 'her', 'testimony', 'is', 'irrelevant', '||comma||', 'irrational', '||comma||', 'and', 'inconsequential', '||period||', '||return||', '||return||', 'hoyt:', 'your', 'honor', '||comma||', 'the', 'prosecution', 'has', 'gone', 'to', 'great', 'lengths', 'and', 'considerable', 'cost', 'to', 'find', 'these', 'character', 'witnesses', '||period||', 'it', 'is', 'imperative', 'that', 'we', 'establish', 'this', 'is', 'not', 'merely', 'an', 'isolated', 'incident', '||period||', "it's", 'part', 'of', 'a', 'pattern', 'of', 'anti', '||dash||', 'social', 'behavior', "that's", 'been', 'going', 'on', 'for', 'years', '||period||', '||return||', '||return||', 'vandelay:', 'objection', 'overruled', '||period||', "i'll", 'hear', 'the', 'witness', '||period||', '||return||', '||return||', 'hoyt:', 'now', '||comma||', 'mrs', '||period||', 'choate', '||comma||', 'would', 'you', 'please', 'tell', 'the', 'court', 'what', 'happen', 'the', 'evening', 'of', 'january', '4th', '||period||', '||return||', '||return||', 'choate:', 'well', '||comma||', 'i', 'was', 'in', "snitzer's", 'bakery', 'when', 'i', 'got', 'accosted', 'by', 'that', 'man', '||period||', '||return||', '||return||', 'hoyt:', 'let', 'the', 'record', 'show', 'that', 'she', 'is', 'pointing', 'at', 'mr', '||period||', 'seinfeld', '||period||', '||return||', '||return||', 'hoyt:', 'what', 'did', 'he', 'want', '||questionmark||', '||return||', '||return||', 'choate:', 'my', 'marble', 'rye', '||period||', '||return||', '||return||', 'hoyt:', 'your', 'marble', 'rye', '||questionmark||', '||return||', '||return||', 'choate:', 'i', 'got', 'the', 'last', 'one', '||period||', 'he', 'kept', 'persisting', '||comma||', 'and', 'i', 'said', 'no', '||period||', '||return||', '||return||', 'hoyt:', 'and', 'then', 'you', 'left', 'the', 'bakery', '||period||', '||return||', '||return||', 'choate:', "that's", 'right', '||period||', '||return||', '||return||', 'hoyt:', 'but', 'it', "didn't", 'end', 'there', '||comma||', 'did', 'it', '||comma||', 'mrs', '||period||', 'choate', '||questionmark||', '||return||', '||return||', 'choate:', 'oh', 'no', '||period||', '||return||', '||return||', 'jerry:', 'gimme', 'that', 'rye', '||period||', '||return||', '||return||', 'choate:', 'stop', 'it', '||period||', '||return||', '||return||', 'jerry:', 'i', 'want', 'that', 'rye', 'lady', '||period||', '||return||', '||return||', 'choate:', 'help', '||dash||', 'someone', 'help', '||period||', '||return||', '||return||', 'jerry:', 'shut', 'up', '||comma||', 'you', 'old', 'bag', '||exclammark||', '||return||', '||return||', 'hoyt:', 'no', 'further', 'questions', '||period||', '||return||', '||return||', 'hoyt:', 'i', 'call', 'marla', 'penny', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'bailiff:', 'call', 'marla', 'penny', '||period||', '||return||', '||return||', 'jerry:', 'the', 'virgin', '||exclammark||', '||return||', '||return||', 'hoyt:', 'and', 'what', 'was', 'your', 'connection', 'to', 'the', 'defendants', '||questionmark||', '||return||', '||return||', 'penny:', 'i', 'dated', 'mr', '||period||', 'seinfeld', 'for', 'several', 'weeks', 'in', 'the', 'autumn', 'of', '1992', '||period||', '||return||', '||return||', 'hoyt:', 'then', 'on', 'the', 'evening', 'of', 'october', '28', '||comma||', 'there', 'was', 'an', 'abrupt', 'end', 'to', 'that', 'relationship', '||period||', 'tell', 'us', 'what', 'happened', '||period||', '||return||', '||return||', 'penny:', "it's", 'rather', 'difficult', 'to', 'talk', 'about', '||period||', '||return||', '||return||', 'hoyt:', "it's", 'alright', '||period||', 'take', 'your', 'time', '||period||', '||return||', '||return||', 'penny:', 'well', '||comma||', 'i', 'became', 'aware', 'of', 'a', '||dash||', '||return||', '||return||', 'hoyt:', 'a', 'what', '||questionmark||', '||return||', '||return||', 'penny:', 'a', '||comma||', 'uh', '||dash||', '||return||', '||return||', 'hoyt:', 'yes', '||questionmark||', '||return||', '||return||', 'penny:', 'a', 'contest', '||period||', '||return||', '||return||', 'hoyt:', 'contest', '||questionmark||', '||return||', '||return||', 'penny:', 'yes', '||period||', '||return||', '||return||', 'hoyt:', 'what', 'was', 'the', 'nature', 'of', 'the', 'contest', '||questionmark||', '||return||', '||return||', 'penny:', 'oh', 'please', '||comma||', 'i', "can't", '||period||', '||return||', '||return||', 'hoyt:', "it's", 'okay', '||period||', '||return||', '||return||', 'penny:', 'the', 'four', 'of', 'them', 'made', 'a', 'wager', 'to', 'see', 'if', 'they', 'could', '||dash||', '||return||', '||return||', 'hoyt:', 'yes', '||questionmark||', '||return||', '||return||', 'penny:', 'to', 'see', 'who', 'could', 'go', 'the', 'longest', 'without', 'gratifying', 'themselves', '||period||', '||return||', '||return||', 'peterman:', 'for', 'the', 'love', 'of', 'god', '||exclammark||', '||return||', '||return||', 'penny:', 'it', 'was', 'horrible', '||comma||', 'horrible', '||exclammark||', '||return||', '||return||', 'hoyt:', 'call', 'donald', 'sanger', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'jerry:', 'who', 'the', 'hell', 'is', 'that', '||questionmark||', '||return||', '||return||', 'mr', '||period||', 'sanger:', 'come', 'on', 'donald', '||comma||', "you're", 'doing', 'fine', '||period||', '||return||', '||return||', 'george:', 'the', 'bubble', 'boy', '||exclammark||', '||return||', '||return||', 'chiles:', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', "that's", 'right', '||comma||', 'the', 'bubble', 'boy', '||period||', '||return||', '||return||', 'chiles:', "what's", 'a', 'bubble', 'boy', '||questionmark||', '||return||', '||return||', 'jerry:', "he's", 'a', 'boy', 'who', 'lives', 'in', 'a', 'bubble', '||period||', '||return||', '||return||', 'bubble', 'boy:', 'what', 'the', 'hell', 'are', 'all', 'you', 'looking', 'at', '||questionmark||', '||return||', '||return||', 'hoyt:', 'so', 'donald', '||comma||', 'would', 'you', 'please', 'tell', 'the', 'court', 'about', 'the', 'incident', 'that', 'occurred', 'in', 'your', 'house', '||comma||', 'october', '7th', '||comma||', '1992', '||period||', '||return||', '||return||', 'bubble', 'boy:', 'well', '||comma||', 'jerry', 'seinfeld', 'was', 'supposed', 'to', 'come', 'to', 'my', 'house', '||comma||', 'but', 'his', 'friend', 'costanza', 'showed', 'up', 'instead', '||comma||', 'so', 'i', 'challenged', 'him', 'to', 'a', 'game', 'of', 'trivial', 'pursuit', '||period||', '||return||', '||return||', 'george:', 'who', 'invaded', 'spain', 'in', 'the', 'eighth', 'century', '||questionmark||', '||return||', '||return||', 'bubble', 'boy:', "that's", 'a', 'joke', '||dash||', 'the', 'moors', '||period||', '||return||', '||return||', 'george:', 'oh', 'no', '||dash||', "i'm", 'so', 'sorry', '||comma||', "it's", 'the', 'moops', '||period||', 'the', 'correct', 'answer', 'is', 'the', 'moops', '||period||', '||return||', '||return||', 'bubble', 'boy:', 'moops', '||questionmark||', 'let', 'me', 'see', 'that', '||period||', "that's", 'not', 'moops', '||comma||', 'you', 'jerk', '||period||', "it's", 'moors', '||period||', "it's", 'a', 'misprint', '||period||', '||return||', '||return||', 'george:', 'sorry', '||comma||', 'the', 'card', 'says', 'moops', '||period||', '||return||', '||return||', 'bubble', 'boy:', 'it', "doesn't", 'matter', '||period||', "it's", 'moors', '||dash||', "there's", 'no', 'moops', '||period||', '||return||', '||return||', 'george:', "it's", 'moops', '||period||', '||return||', '||return||', 'bubble', 'boy:', 'moors', '||exclammark||', '||return||', '||return||', 'george:', 'moops', '||exclammark||', '||return||', '||return||', 'george:', 'help', '||exclammark||', 'someone', '||exclammark||', '||return||', '||return||', 'bubble', 'boy:', "there's", 'no', 'moops', '||comma||', 'you', 'idiot', '||period||', '||return||', '||return||', 'susan:', 'stop', 'it', '||exclammark||', 'let', 'go', 'of', 'him', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'sanger:', 'donald', '||comma||', 'stop', 'it', '||period||', 'no', '||period||', 'donald', '||comma||', 'stop', 'it', '||period||', '||return||', '||return||', 'george:', 'it', 'was', 'moops', '||period||', '||return||', '||return||', 'bubble', 'boy:', 'moors', '||period||', '||return||', '||return||', '[new', 'witness:', 'the', 'lady', 'kramer', 'gave', 'a', 'defective', 'wheelchair', 'to', 'in', '||quotemark||', 'the', 'handicapped', 'spot', '||quotemark||', ']', '||return||', '||return||', 'hoyt:', 'so', 'mr', '||period||', 'costanza', 'parked', 'in', 'a', 'handicapped', 'spot', '||comma||', 'and', 'as', 'a', 'result', 'you', 'got', 'in', 'an', 'accident', '||comma||', 'and', 'your', 'wheelchair', 'was', 'destroyed', '||questionmark||', '||return||', '||return||', 'lady:', "that's", 'right', '||period||', '||return||', '||return||', 'hoyt:', 'and', 'then', 'mr', '||period||', 'kramer', 'gave', 'you', 'a', 'used', 'wheelchair', '||questionmark||', '||return||', '||return||', 'lady:', "that's", 'right', '||period||', '||return||', '||return||', '[new', 'witness:', 'dr', '||period||', 'wilcox', '||comma||', 'the', 'doctor', 'on', 'duty', 'when', 'susan', 'died]', '||return||', '||return||', 'hoyt:', 'so', 'you', 'were', 'the', 'doctor', 'on', 'duty', 'the', 'night', 'susan', 'ross', 'died', '||questionmark||', '||return||', '||return||', 'wilcox:', 'yes', '||comma||', "that's", 'right', '||period||', 'it', 'was', 'may', '16', '||comma||', '1996', '||period||', "i'll", 'never', 'forget', 'it', '||period||', '||return||', '||return||', 'hoyt:', 'so', 'you', 'broke', 'the', 'news', 'to', 'mr', '||period||', 'costanza', '||questionmark||', 'could', 'you', 'tell', 'the', 'court', '||comma||', 'please', '||comma||', 'what', 'his', 'reaction', 'was', '||questionmark||', '||return||', '||return||', 'wilcox:', 'i', 'would', 'describe', 'it', 'as', 'restrained', 'jubilation', '||period||', '||return||', '||return||', 'mr', '||period||', 'ross:', 'murderer', '||exclammark||', '||return||', '||return||', 'mrs', '||period||', 'ross:', 'he', 'killed', 'our', 'daughter', '||exclammark||', 'he', 'knew', 'those', 'envelopes', 'were', 'toxic', '||exclammark||', '||return||', '||return||', 'vandelay:', 'order', 'in', 'this', 'court', '||exclammark||', '||return||', '||return||', 'hoyt:', 'call', 'sidra', 'holland', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'chiles:', 'whew', '||exclammark||', 'look', 'at', 'this', 'one', '||comma||', 'she', 'fine', '||period||', 'you', 'dated', 'her', '||questionmark||', '||return||', '||return||', 'hoyt:', 'so', 'you', 'met', 'jerry', 'seinfeld', 'in', 'a', 'health', 'club', 'sometime', 'in', '1993', '||questionmark||', '||return||', '||return||', 'sidra:', 'yes', '||period||', '||return||', '||return||', 'hoyt:', 'and', 'you', 'also', 'met', 'miss', 'benes', 'in', 'that', 'same', 'health', 'club', '||questionmark||', '||return||', '||return||', 'sidra:', 'yes', '||comma||', "that's", 'true', '||period||', '||return||', '||return||', 'hoyt:', 'would', 'you', 'describe', 'the', 'circumstances', 'of', 'that', 'meeting', '||period||', '||return||', '||return||', 'sidra:', 'we', 'were', 'in', 'the', 'sauna', '||comma||', 'making', 'chit', '||dash||', 'chat', '||period||', '||return||', '||return||', 'sidra:', 'you', 'know', '||comma||', "i've", 'seen', 'you', 'around', 'the', 'club', '||period||', 'my', "name's", 'sidra', '||period||', 'this', 'is', 'marcie', '||period||', '||return||', '||return||', 'elaine:', 'oh', '||comma||', 'hi', '||comma||', "i'm", 'elaine', '||period||', '||return||', '||return||', 'hoyt:', 'so', '||comma||', 'she', 'pretended', 'to', 'trip', '||comma||', 'and', 'she', 'fell', 'into', 'your', 'breasts', '||questionmark||', '||return||', '||return||', 'sidra:', 'yes', '||period||', '||return||', '||return||', 'hoyt:', 'why', 'would', 'she', 'do', 'something', 'like', 'that', '||questionmark||', '||return||', '||return||', 'sidra:', 'because', 'he', 'sent', 'her', 'in', 'there', 'to', 'find', 'out', 'if', 'they', 'were', 'real', '||period||', '||return||', '||return||', '[new', 'witness:', 'joe', 'bookman', '||comma||', 'library', 'cop]', '||return||', '||return||', 'hoyt:', 'state', 'your', 'name', '||period||', '||return||', '||return||', 'bookman:', 'bookman', '||comma||', 'joe', 'bookman', '||period||', '||return||', '||return||', 'hoyt:', 'and', "what's", 'your', 'occupation', '||questionmark||', '||return||', '||return||', 'bookman:', "i'm", 'a', 'library', 'cop', '||period||', '||return||', '||return||', 'hoyt:', 'what', 'does', 'a', 'library', 'cop', 'do', '||questionmark||', '||return||', '||return||', 'bookman:', 'we', 'chase', 'down', 'library', 'delinquents', '||period||', '||return||', '||return||', 'hoyt:', 'anyone', 'in', 'this', 'room', 'ever', 'delinquent', '||questionmark||', '||return||', '||return||', 'bookman:', 'yeah', '||comma||', 'he', 'was', '||period||', 'right', 'over', 'there', '||dash||', 'seinfeld', '||period||', '||return||', '||return||', 'hoyt:', 'how', 'long', 'was', 'his', 'book', 'overdue', '||questionmark||', '||return||', '||return||', 'bookman:', '25', 'years', '||period||', 'we', "don't", 'call', 'them', 'delinquent', 'after', 'that', 'long', '||period||', '||return||', '||return||', 'hoyt:', 'what', 'do', 'you', 'call', 'them', '||questionmark||', '||return||', '||return||', 'bookman:', 'criminals', '||period||', '||return||', '||return||', '[new', 'witness:', "george's", 'old', 'girlfriend]', '||return||', '||return||', 'hoyt:', 'so', 'you', 'and', 'mr', '||period||', 'costanza', 'were', 'dating', '||period||', '||return||', '||return||', 'woman:', 'yes', '||period||', '||return||', '||return||', 'hoyt:', 'and', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'woman:', 'well', '||comma||', 'i', 'invited', 'him', 'to', 'attend', 'my', "son's", 'birthday', 'party', 'and', '||dash||', '||return||', '||return||', 'george:', 'fire', '||exclammark||', 'get', 'out', 'of', 'the', 'way', '||exclammark||', '||return||', '||return||', '[new', 'witness:', 'parking', 'lot', 'security', 'guard]', '||return||', '||return||', 'guard:', 'at', 'the', 'time', '||comma||', 'i', 'was', 'employed', 'as', 'a', 'security', 'guard', 'in', 'the', 'parking', 'lot', 'at', 'the', 'garden', 'valley', 'shopping', 'mall', '||period||', '||return||', '||return||', 'jerry:', 'why', 'would', 'i', 'do', 'it', 'unless', 'i', 'was', 'in', 'mortal', 'danger', '||questionmark||', 'i', 'know', "it's", 'against', 'the', 'law', '||period||', '||return||', '||return||', 'guard:', 'i', "don't", 'know', '||period||', '||return||', '||return||', 'jerry:', 'because', 'i', 'could', 'get', 'uromycitisis', 'poisoning', 'and', 'die', '||dash||', "that's", 'why', '||period||', '||return||', '||return||', 'hoyt:', 'uromycitisis', '||exclammark||', 'i', 'wonder', 'if', "they're", 'having', 'any', 'trouble', 'controlling', 'themselves', 'during', 'this', 'trial', '||questionmark||', 'perhaps', 'these', 'two', 'hooligans', 'would', 'like', 'to', 'have', 'a', 'pee', 'party', 'right', 'here', 'in', 'the', 'courtroom', '||exclammark||', '||return||', '||return||', 'chiles:', 'objection', '||comma||', 'your', 'honor', '||exclammark||', 'this', 'is', 'completely', 'inappropriate', '||exclammark||', 'my', "clients'", 'medical', 'condition', 'is', 'not', 'on', 'trial', 'here', '||exclammark||', 'i', 'refer', 'you', 'to', 'the', 'disability', 'act', 'of', '1990', '||period||', '||return||', '||return||', 'vandelay:', 'sit', 'down', '||comma||', 'mr', '||period||', 'chiles', '||period||', '||return||', '||return||', '[new', 'witness:', 'police', 'detective]', '||return||', '||return||', 'hoyt:', 'alright', '||comma||', 'detective', '||comma||', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'detective:', 'we', 'got', 'a', 'tip', 'that', 'a', 'lot', 'of', 'prostitutes', 'had', 'been', 'turning', 'tricks', 'in', 'the', 'parking', 'lot', '||period||', '||return||', '||return||', 'prostitute:', 'you', 'just', 'cost', 'me', 'some', 'money', '||period||', '||return||', '||return||', 'kramer:', 'cool', 'it', '||comma||', 'lady', '||period||', 'cool', 'it', '||period||', 'cool', 'it', '||comma||', 'lady', '||period||', 'cool', 'it', '||period||', '||return||', '||return||', 'police:', 'police', 'officers', '||dash||', 'freeze', 'right', 'there', '||exclammark||', '||return||', '||return||', 'hoyt:', 'so', 'cosmo', 'kramer', 'was', '||comma||', 'in', 'fact', '||comma||', 'a', 'pimp', '||period||', '||return||', '||return||', '[witness:', 'the', 'low', '||dash||', 'talker', 'from', '||quotemark||', 'the', 'puffy', 'shirt', '||quotemark||', ']', '||return||', '||return||', 'hoyt:', 'so', 'you', 'asked', 'mr', '||period||', 'seinfeld', 'if', 'he', 'would', 'wear', 'your', 'puffy', 'shirt', 'on', 'the', 'today', 'show', '||questionmark||', '||return||', '||return||', 'low', '||dash||', 'talker:', '||leftparen||', 'mumbles', '||rightparen||', '||return||', '||return||', 'hoyt:', 'excuse', 'me', '||questionmark||', '||return||', '||return||', 'chiles:', 'uh', '||comma||', 'excuse', 'me', '||comma||', 'your', 'honor', '||comma||', 'but', 'what', 'is', 'the', 'point', 'of', 'this', 'testimony', '||questionmark||', 'this', "woman's", 'a', 'low', '||dash||', 'talker', '||period||', 'i', "can't", 'hear', 'a', 'word', "she's", 'saying', '||period||', 'so', 'either', 'get', 'some', 'other', 'kind', 'of', 'microphone', 'up', 'there', '||comma||', 'or', "let's", 'move', 'on', '||period||', '||return||', '||return||', '[new', 'witness:', 'george', 'steinbrenner]', '||return||', '||return||', 'hoyt:', 'call', 'george', 'steinbrenner', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'bailiff:', 'call', 'george', 'steinbrenner', '||period||', '||return||', '||return||', 'hoyt:', 'so', 'george', 'costanza', 'came', 'to', 'work', 'for', 'you', 'in', 'may', 'of', '1994', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'yes', '||comma||', "that's", 'right', '||comma||', 'he', 'was', 'good', 'kid', '||dash||', 'a', 'lovely', 'boy', '||period||', 'shared', 'his', 'calzone', 'with', 'me', '||dash||', 'that', 'was', 'a', 'heck', 'of', 'a', 'sandwich', '||comma||', "wasn't", 'it', '||comma||', 'georgie', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'sir', '||comma||', 'that', 'was', 'a', 'good', 'sandwich', '||comma||', 'sir', '||period||', '||return||', '||return||', 'steinbrenner:', 'he', 'had', 'one', 'little', 'problem', 'though', '||period||', '||return||', '||return||', 'hoyt:', 'what', 'was', 'that', '||questionmark||', '||return||', '||return||', 'steinbrenner:', 'he', 'was', 'a', 'communist', '||period||', 'thick', 'as', 'they', 'come', '||period||', 'like', 'a', 'big', 'juicy', 'steak', '||period||', '||return||', '||return||', 'frank:', 'how', 'could', 'you', 'give', 'twelve', 'million', 'dollars', 'to', 'hideki', 'irabu', '||questionmark||', '||exclammark||', '||return||', '||return||', 'vandelay:', 'order', '||exclammark||', '||return||', '||return||', '[new', 'witness:', 'marcellino', 'from', '||quotemark||', 'the', 'little', 'jerry', '||quotemark||', ']', '||return||', '||return||', 'hoyt:', 'cock', 'fighting', '||questionmark||', '||return||', '||return||', 'marcellino:', 'cock', 'fighting', '||period||', '||return||', '||return||', '[new', 'witness:', 'pharmacist', 'from', '||quotemark||', 'the', 'sponge', '||quotemark||', ']', '||return||', '||return||', 'pharmacist:', 'sponges', '||period||', 'i', "don't", 'mean', 'the', 'kind', 'you', 'clean', 'your', 'tub', 'with', '||period||', "they're", 'for', 'sex', '||period||', 'said', 'she', 'needed', 'a', 'whole', 'case', 'of', 'them', '||period||', '||return||', '||return||', '[new', 'witness:', "elaine's", 'old', 'boyfriend', 'from', 'work]', '||return||', '||return||', 'man:', 'she', 'exposed', 'her', 'nipple', '||period||', '||return||', '||return||', '[new', 'witness:', 'mr', '||period||', 'pitt]', '||return||', '||return||', 'hoyt:', 'how', 'did', 'she', 'try', 'to', 'kill', 'you', '||questionmark||', '||return||', '||return||', 'pitt:', 'she', 'tried', 'to', 'smother', 'me', 'with', 'a', 'pillow', '||period||', '||return||', '||return||', 'hoyt:', 'call', 'yev', 'kassem', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'bailiff:', 'call', 'yev', 'kassem', '||period||', '||return||', '||return||', 'jerry:', 'who', '||questionmark||', '||return||', '||return||', 'elaine:', 'the', 'soup', 'nazi', '||exclammark||', '||return||', '||return||', 'chiles:', 'soup', 'nazi', '||questionmark||', 'you', 'people', 'have', 'a', 'little', 'pet', 'name', 'for', 'everybody', '||period||', '||return||', '||return||', 'hoyt:', 'state', 'your', 'name', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'yev', 'kassem', '||period||', '||return||', '||return||', 'hoyt:', 'could', 'you', 'spell', 'that', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'no', '||exclammark||', 'next', 'question', '||period||', '||return||', '||return||', 'hoyt:', 'how', 'do', 'you', 'know', 'the', 'defendants', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'they', 'used', 'to', 'come', 'to', 'my', 'restaurant', '||period||', '||return||', '||return||', 'george:', 'medium', 'turkey', 'chili', '||period||', '||return||', '||return||', 'jerry:', 'medium', 'crab', 'bisque', '||period||', '||return||', '||return||', 'george:', 'i', "didn't", 'get', 'any', 'bread', '||period||', '||return||', '||return||', 'jerry:', 'just', 'forget', 'it', '||period||', 'let', 'it', 'go', '||period||', '||return||', '||return||', 'george:', 'um', '||comma||', 'excuse', 'me', '||comma||', 'i', 'think', 'you', 'forgot', 'my', 'bread', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'you', 'want', 'bread', '||questionmark||', '||return||', '||return||', 'george:', 'yes', '||comma||', 'please', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'three', 'dollars', '||exclammark||', '||return||', '||return||', 'george:', 'what', '||questionmark||', '||return||', '||return||', 'soup', 'nazi:', 'no', 'soup', 'for', 'you', '||exclammark||', '||return||', '||return||', 'soup', 'nazi:', 'but', 'the', 'idiot', 'clowns', 'did', 'not', 'know', 'how', 'to', 'order', '||period||', 'i', 'banned', 'that', 'one', '||dash||', 'the', 'woman', '||dash||', 'for', 'a', 'year', '||period||', 'then', 'one', 'day', '||comma||', 'she', 'came', 'back', '||period||', '||return||', '||return||', 'elaine:', 'five', 'cups', 'chopped', 'porcini', 'mushrooms', '||period||', 'half', 'a', 'cup', 'of', 'olive', 'oil', '||period||', 'three', 'pounds', 'celery', '||period||', '||return||', '||return||', 'soup', 'nazi:', "that's", 'my', 'recipe', 'for', 'wild', 'mushroom', '||period||', '||return||', '||return||', 'elaine:', "you're", 'through', '||comma||', 'soup', 'nazi', '||period||', 'pack', 'it', 'up', '||period||', 'no', 'more', 'soup', 'for', 'you', '||period||', 'next', '||exclammark||', '||return||', '||return||', 'soup', 'nazi:', 'she', 'published', 'my', 'recipes', '||period||', 'i', 'had', 'to', 'close', 'the', 'store', '||comma||', 'move', 'to', 'argentina', '||period||', 'she', 'ruined', 'my', 'business', '||exclammark||', '||return||', '||return||', 'elaine:', "soup's", 'not', 'all', 'that', 'good', 'anyway', '||period||', '||return||', '||return||', 'soup', 'nazi:', 'what', 'did', 'you', 'say', '||questionmark||', '||exclammark||', '||return||', '||return||', 'hoyt:', 'the', 'state', 'calls', 'mr', '||period||', 'babu', 'bhatt', 'to', 'the', 'stand', '||period||', '||return||', '||return||', 'jerry:', 'how', 'did', 'they', 'find', 'babu', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'thought', 'he', 'was', 'deported', '||period||', '||return||', '||return||', 'hoyt:', 'you', 'came', 'a', 'long', 'way', 'to', 'be', 'here', 'today', '||comma||', "haven't", 'you', '||questionmark||', '||return||', '||return||', 'hoyt:', 'and', "what's", 'your', 'connection', 'to', 'the', 'defendant', '||questionmark||', '||return||', '||return||', 'hoyt:', 'and', 'then', 'what', 'happened', '||questionmark||', '||return||', '||return||', 'rivera:', 'hi', 'everybody', '||comma||', "i'm", 'geraldo', 'rivera', 'and', 'welcome', 'to', 'this', 'special', 'edition', 'of', 'rivera', 'live', '||period||', 'well', '||comma||', 'arguments', 'in', 'the', 'good', 'samaritan', 'trial', 'ended', 'today', '||period||', 'the', 'jury', 'has', 'been', 'in', 'deliberation', 'for', 'four', 'and', 'a', 'half', 'hours', 'now', '||period||', "let's", 'go', 'live', 'to', 'jane', 'wells', 'who', 'is', 'in', 'latham', '||comma||', 'massachusetts', '||comma||', 'covering', 'this', 'trial', 'for', 'us', '||period||', 'jane', '||dash||', '||return||', '||return||', 'wells:', 'geraldo', '||comma||', 'just', 'a', 'few', 'minutes', 'ago', '||comma||', 'the', 'jury', 'asked', 'to', 'see', 'the', 'video', 'tape', '||period||', '||return||', '||return||', 'rivera:', "that's", 'the', 'one', 'where', 'they', 'are', 'overheard', 'making', 'sarcastic', 'remarks', 'during', 'the', 'robbery', '||period||', '||return||', '||return||', 'wells:', 'yes', '||comma||', "it's", 'a', 'very', 'incriminating', 'piece', 'of', 'evidence', '||period||', 'but', 'i', 'must', 'tell', 'you', '||comma||', 'geraldo', '||comma||', 'this', 'courtroom', 'and', 'everyone', 'who', 'has', 'attended', 'this', 'trial', 'is', 'still', 'reeling', 'from', 'the', 'endless', 'parade', 'of', 'witness', 'who', 'have', 'come', 'forth', 'so', 'enthusiastically', 'to', 'testify', 'against', 'these', 'four', 'seemingly', 'ordinary', 'people', '||period||', 'one', 'even', 'had', 'the', 'feeling', 'that', 'if', 'judge', 'vandelay', "didn't", 'finally', 'put', 'a', 'stop', 'to', 'it', '||comma||', 'it', "could've", 'gone', 'on', 'for', 'months', '||period||', '||return||', '||return||', 'rivera:', 'jane', '||comma||', 'whose', 'testimony', 'do', 'you', 'think', 'resonated', 'most', 'strongly', 'with', 'this', 'jury', '||questionmark||', '||return||', '||return||', 'wells:', 'that', 'is', 'so', 'hard', 'to', 'say', '||period||', 'certainly', "there's", 'the', 'doctor', 'with', 'the', 'poison', 'invitations', '||period||', 'the', 'bubble', 'boy', 'was', 'an', 'extremely', 'sympathetic', 'and', 'tragic', 'figure', '||period||', 'and', 'that', 'bizarre', 'contest', 'certainly', "didn't", 'sit', 'well', 'with', 'this', 'small', 'town', 'jury', '||period||', "there's", 'the', 'woman', 'they', 'sold', 'the', 'defective', 'wheelchair', 'to', '||comma||', 'the', 'deported', 'pakistani', 'restaurateur', '||period||', 'geraldo', '||comma||', 'it', 'just', 'went', 'on', '||comma||', 'and', 'on', '||comma||', 'and', 'on', '||comma||', 'into', 'the', 'night', '||period||', '||return||', '||return||', 'rivera:', 'and', 'so', 'we', 'wait', '||period||', '||return||', '||return||', 'jerry:', 'do', 'they', 'make', 'you', 'wear', 'uniforms', 'in', 'prison', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'think', 'so', '||period||', '||return||', '||return||', 'jerry:', "it's", 'not', 'that', 'bright', 'orange', 'one', 'is', 'it', '||questionmark||', '||return||', '||return||', 'elaine:', 'i', 'hope', "it's", 'not', 'that', 'one', '||comma||', 'because', 'i', 'cannot', 'wear', 'orange', '||period||', '||return||', '||return||', 'kramer:', 'will', 'you', 'stop', 'worrying', '||questionmark||', "jackie's", 'going', 'to', 'get', 'us', 'off', '||period||', 'he', 'never', 'loses', '||period||', 'how', 'about', 'when', 'he', 'asked', 'that', 'cop', 'if', 'a', 'black', 'man', 'had', 'ever', 'been', 'to', 'his', 'house', '||period||', 'did', 'you', 'see', 'the', 'look', 'on', 'his', 'face', '||questionmark||', '||return||', '||return||', 'estelle:', 'sorry', 'to', 'bother', 'you', '||comma||', 'judge', '||period||', '||return||', '||return||', 'vandelay:', 'how', 'did', 'you', 'get', 'in', 'here', '||questionmark||', '||return||', '||return||', 'estelle:', 'please', '||comma||', 'if', "he's", 'found', 'guilty', '||comma||', 'please', 'be', 'kind', 'to', 'him', '||period||', "he's", 'a', 'good', 'boy', '||period||', '||return||', '||return||', 'vandelay:', 'this', 'is', 'highly', 'irregular', '||period||', '||return||', '||return||', 'estelle:', 'well', '||comma||', 'maybe', "there's", 'something', 'i', 'can', 'do', 'for', 'you', '||period||', '||return||', '||return||', 'vandelay:', 'what', 'do', 'you', 'mean', '||questionmark||', '||return||', '||return||', 'estelle:', 'you', 'know', '||return||', '||return||', 'sidra:', 'oh', '||comma||', 'jackie', '||comma||', "you're", 'so', 'articulate', '||period||', '||return||', '||return||', 'chiles:', 'we', 'have', 'plenty', 'of', 'time', '||comma||', 'too', '||period||', 'this', 'jury', 'could', 'be', 'out', 'for', 'days', '||period||', '||return||', '||return||', 'chiles:', 'hello', '||questionmark||', 'damn', '||period||', "they're", 'ready', '||period||', '||return||', '||return||', 'jerry:', 'hey', 'elaine', '||comma||', 'what', 'was', 'it', 'you', 'were', 'about', 'to', 'say', 'to', 'me', 'on', 'the', 'plane', 'when', 'it', 'was', 'going', 'down', '||questionmark||', '||return||', '||return||', 'elaine:', "i've", 'always', 'loved', '||period||', '||period||', '||period||', 'united', 'airlines', '||period||', '||return||', '||return||', 'kramer:', 'i', 'think', "it's", 'going', 'to', 'be', 'okay', '||dash||', 'that', 'girl', 'just', 'smiled', 'at', 'me', '||period||', '||return||', '||return||', 'jerry:', 'maybe', 'because', 'she', 'knows', "you're", 'going', 'to', 'jail', '||period||', '||return||', '||return||', 'bailiff:', 'all', 'rise', '||period||', '||return||', '||return||', 'vandelay:', 'ladies', 'and', 'gentlemen', 'of', 'the', 'jury', '||comma||', 'have', 'you', 'reached', 'a', 'verdict', '||questionmark||', '||return||', '||return||', 'foreman:', 'we', 'have', '||comma||', 'your', 'honor', '||period||', '||return||', '||return||', 'vandelay:', 'will', 'the', 'defendants', 'please', 'rise', '||period||', 'and', 'how', 'do', 'you', 'find', '||comma||', 'with', 'respect', 'to', 'the', 'charge', 'of', 'criminal', 'indifference', '||questionmark||', '||return||', '||return||', 'foreman:', 'we', 'find', 'the', 'defendants', '||dash||', 'guilty', '||period||', '||return||', '||return||', 'vandelay:', 'order', '||exclammark||', 'order', 'in', 'this', 'court', '||comma||', 'i', 'will', 'clear', 'this', 'room', '||exclammark||', 'i', 'do', 'not', 'know', 'how', '||comma||', 'or', 'under', 'what', 'circumstances', 'the', 'four', 'of', 'you', 'found', 'each', 'other', '||comma||', 'but', 'your', 'callous', 'indifference', 'and', 'utter', 'disregard', 'for', 'everything', 'that', 'is', 'good', 'and', 'decent', 'has', 'rocked', 'the', 'very', 'foundation', 'upon', 'which', 'our', 'society', 'is', 'built', '||period||', 'i', 'can', 'think', 'of', 'nothing', 'more', 'fitting', 'than', 'for', 'the', 'four', 'of', 'youto', 'spend', 'a', 'year', 'removed', 'from', 'society', 'so', 'that', 'you', 'can', 'contemplate', 'the', 'manner', 'in', 'which', 'you', 'have', 'conducted', 'yourselves', '||period||', 'i', 'know', 'i', 'will', '||period||', 'this', 'court', 'is', 'adjourned', '||period||', '||return||', '||return||', 'george:', 'you', 'had', 'to', 'hop', '||exclammark||', 'you', 'had', 'to', 'hop', 'on', 'the', 'plane', '||period||', '||return||', '||return||', 'elaine:', 'puddy', '||comma||', "don't", 'wait', 'for', 'me', '||period||', '||return||', '||return||', 'puddy:', 'alright', '||period||', '||return||', '||return||', 'frank:', 'we', 'gotta', 'get', 'out', 'of', 'here', '||period||', 'we', 'want', 'to', 'beat', 'the', 'traffic', '||period||', '||return||', '||return||', 'sidra:', 'come', 'on', '||comma||', 'jackie', '||period||', "let's", 'go', '||period||', '||return||', '||return||', 'jerry:', 'what', '||questionmark||', '||return||', '||return||', 'chiles:', 'oh', '||comma||', 'and', 'by', 'the', 'way', '||comma||', "they're", 'real', '||comma||', 'and', "they're", 'spectacular', '||period||', '||return||', '||return||', 'jerry:', 'well', '||comma||', "it's", 'only', 'a', 'year', '||period||', "that's", 'not', 'so', 'bad', '||period||', "we'll", 'be', 'out', 'in', 'a', 'year', '||comma||', 'and', 'then', "we'll", 'be', 'back', '||return||', '||return||', 'kramer:', 'could', 'be', 'fun', '||period||', "don't", 'have', 'to', 'worry', 'about', 'your', 'meals', '||comma||', 'or', 'what', "you're", 'going', 'to', 'do', 'saturday', 'night', '||period||', 'and', 'they', 'do', 'shows', '||period||', 'yeah', '||comma||', 'we', 'could', 'put', 'on', 'a', 'show', '||dash||', 'maybe', '||quotemark||', 'bye', 'bye', 'birdie', '||quotemark||', 'or', '||quotemark||', 'my', 'fair', 'lady', '||quotemark||', '||period||', 'elaine', '||comma||', 'you', 'could', 'be', 'liza', 'doolittle', '||period||', '||return||', '||return||', 'elaine:', 'why', "don't", 'you', 'just', 'blow', 'it', 'out', 'your', 'a', '||period||', '||period||', '||period||', '||return||', '||return||', 'elaine:', 'if', 'i', 'call', 'jill', 'from', 'prison', '||comma||', 'do', 'you', 'think', 'that', 'would', 'make', 'up', 'for', 'the', 'other', 'ones', '||questionmark||', '||return||', '||return||', 'jerry:', 'sure', '||period||', '||return||', '||return||', 'elaine:', 'cause', 'you', 'only', 'get', 'one', 'call', '||period||', 'the', 'prison', 'call', 'is', 'like', 'the', 'king', 'of', 'calls', '||period||', '||return||', '||return||', 'jerry:', 'i', 'think', 'that', 'would', 'be', 'a', 'very', 'nice', 'gesture', '||period||', '||return||', '||return||', 'kramer:', 'i', 'got', 'it', '||dash||', "it's", 'out', '||exclammark||', 'how', 'about', 'that', '||comma||', 'huh', '||questionmark||', 'oh', '||comma||', 'boy', '||comma||', 'what', 'a', 'relief', '||period||', '||return||', '||return||', 'jerry:', 'see', 'now', '||comma||', 'to', 'me', '||comma||', 'that', 'button', 'is', 'in', 'the', 'worst', 'possible', 'spot', '||period||', '||return||', '||return||', 'george:', 'really', '||questionmark||', '||return||', '||return||', 'jerry:', 'oh', 'yeah', '||period||', 'the', 'second', 'button', 'is', 'the', 'key', 'button', '||period||', 'it', 'literally', 'makes', 'or', 'breaks', 'the', 'shirt', '||period||', 'look', 'at', 'it', '||comma||', "it's", 'too', 'high', '||comma||', "it's", 'in', 'no', '||dash||', "man's", 'land', '||period||', '||return||', '||return||', 'george:', "haven't", 'we', 'had', 'this', 'conversation', 'before', '||questionmark||', '||return||', '||return||', 'jerry:', 'you', 'think', '||questionmark||', '||return||', '||return||', 'george:', 'i', 'think', 'we', 'have', '||period||', '||return||', '||return||', 'jerry:', 'yeah', '||comma||', 'maybe', 'we', 'have', '||period||', '||return||', '||return||', 'jerry:', 'so', 'what', 'is', 'the', 'deal', 'with', 'the', 'yard', '||questionmark||', 'i', 'mean', 'when', 'i', 'was', 'a', 'kid', 'my', 'mother', 'wanted', 'me', 'to', 'play', 'in', 'the', 'yard', '||period||', 'but', 'of', 'course', 'she', "didn't", 'have', 'to', 'worry', 'about', 'my', 'next', 'door', 'neighbor', 'tommy', 'sticking', 'a', 'shiv', 'in', 'my', 'thigh', '||period||', 'and', "what's", 'with', 'the', 'lockdown', '||questionmark||', 'why', 'do', 'we', 'have', 'to', 'be', 'locked', 'in', 'our', 'cells', '||questionmark||', 'are', 'we', 'that', 'bad', 'that', 'we', 'have', 'to', 'be', 'sent', 'to', 'prison', '||comma||', 'in', 'prison', '||questionmark||', 'you', 'would', 'think', 'the', 'weightlifting', 'and', 'the', 'sodomy', 'is', 'enough', '||period||', 'so', '||comma||', 'anyone', 'from', 'cellblock', 'd', '||questionmark||', '||return||', '||return||', 'prisoner', '1:', 'i', 'am', '||period||', '||return||', '||return||', 'jerry:', "i'll", 'talk', 'slower', '||period||', "i'm", 'kidding', '||dash||', 'i', 'love', 'cellblock', 'd', '||period||', 'my', 'friend', 'george', 'is', 'in', 'cellblock', 'd', '||period||', 'what', 'are', 'you', 'in', 'for', '||comma||', 'sir', '||questionmark||', '||return||', '||return||', 'prisoner', '2:', 'murder', 'one', '||period||', '||return||', '||return||', 'jerry:', 'murder', 'one', '||questionmark||', 'oooooo', '||comma||', 'watch', 'out', 'everybody', '||period||', 'better', 'be', 'nice', 'to', 'you', '||period||', "i'm", 'only', 'kidding', 'sir', '||dash||', 'lighten', 'up', '||period||', 'how', 'about', 'you', '||comma||', 'what', 'are', 'you', 'in', 'for', '||questionmark||', '||return||', '||return||', 'prisoner', '3:', 'grand', 'theft', 'auto', '||period||', '||return||', '||return||', 'jerry:', 'grand', 'theft', 'auto', '||dash||', "don't", 'steal', 'any', 'of', 'my', 'jokes', '||period||', '||return||', '||return||', 'prisoner', '3:', 'you', 'suck', '||dash||', "i'm", 'gonna', 'cut', 'you', '||period||', '||return||', '||return||', 'jerry:', 'hey', '||comma||', 'i', "don't", 'come', 'down', 'to', 'where', 'you', 'work', '||comma||', 'and', 'knock', 'the', 'license', 'plate', 'out', 'of', 'your', 'hand', '||period||', '||return||', '||return||', 'guard:', 'alright', '||comma||', 'seinfeld', '||comma||', "that's", 'it', '||period||', "let's", 'go', '||period||', 'come', 'on', '||period||', '||return||', '||return||', 'jerry:', 'alright', '||comma||', 'hey', '||comma||', "you've", 'been', 'great', '||exclammark||', 'see', 'you', 'in', 'the', 'cafeteria', '||period||', '||return||', '||return||']
This is your first checkpoint. If you ever decide to come back to this notebook or have to restart the notebook, you can start from here. The preprocessed data has been saved to disk.
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import helper
import problem_unittests as tests
int_text, vocab_to_int, int_to_vocab, token_dict = helper.load_preprocess()
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import torch
# Check for a GPU
train_on_gpu = torch.cuda.is_available()
if not train_on_gpu:
print('No GPU found. Please use a GPU to train your neural network.')
print(torch.cuda.is_available())
True
Let's start with the preprocessed input data. We'll use TensorDataset to provide a known format to our dataset; in combination with DataLoader, it will handle batching, shuffling, and other dataset iteration functions.
You can create data with TensorDataset by passing in feature and target tensors. Then create a DataLoader as usual.
data = TensorDataset(feature_tensors, target_tensors)
data_loader = torch.utils.data.DataLoader(data,
batch_size=batch_size)
Implement the batch_data function to batch words data into chunks of size batch_size using the TensorDataset and DataLoader classes.
You can batch words using the DataLoader, but it will be up to you to create
feature_tensorsandtarget_tensorsof the correct size and content for a givensequence_length.
For example, say we have these as input:
words = [1, 2, 3, 4, 5, 6, 7]
sequence_length = 4
Your first feature_tensor should contain the values:
[1, 2, 3, 4]
And the corresponding target_tensor should just be the next "word"/tokenized word value:
5
This should continue with the second feature_tensor, target_tensor being:
[2, 3, 4, 5] # features
6 # target
from torch.utils.data import TensorDataset, DataLoader
def batch_data(words, sequence_length, batch_size):
"""
Batch the neural network data using DataLoader
:param words: The word ids of the TV scripts
:param sequence_length: The sequence length of each batch
:param batch_size: The size of each batch; the number of sequences in a batch
:return: DataLoader with batched data
"""
# TODO: Implement function
# batch_size_total = batch_size * sequence_length
n_batches = len(words)//batch_size
words = words[:n_batches * batch_size]
y_len = len(words) - sequence_length
x, y = [], []
for idx in range(0, y_len):
idx_end = sequence_length + idx
x_batch = words[idx:idx_end]
x.append(x_batch)
batch_y = words[idx_end]
y.append(batch_y)
data = TensorDataset(torch.from_numpy(np.asarray(x)), torch.from_numpy(np.asarray(y)))
data_loader = DataLoader(data, shuffle=False, batch_size=batch_size)
# return a dataloader
return data_loader
# there is no test for this function, but you are encouraged to create
# print statements and tests of your own
You'll have to modify this code to test a batching function, but it should look fairly similar.
Below, we're generating some test text data and defining a dataloader using the function you defined, above. Then, we are getting some sample batch of inputs sample_x and targets sample_y from our dataloader.
Your code should return something like the following (likely in a different order, if you shuffled your data):
torch.Size([10, 5])
tensor([[ 28, 29, 30, 31, 32],
[ 21, 22, 23, 24, 25],
[ 17, 18, 19, 20, 21],
[ 34, 35, 36, 37, 38],
[ 11, 12, 13, 14, 15],
[ 23, 24, 25, 26, 27],
[ 6, 7, 8, 9, 10],
[ 38, 39, 40, 41, 42],
[ 25, 26, 27, 28, 29],
[ 7, 8, 9, 10, 11]])
torch.Size([10])
tensor([ 33, 26, 22, 39, 16, 28, 11, 43, 30, 12])
Your sample_x should be of size (batch_size, sequence_length) or (10, 5) in this case and sample_y should just have one dimension: batch_size (10).
You should also notice that the targets, sample_y, are the next value in the ordered test_text data. So, for an input sequence [ 28, 29, 30, 31, 32] that ends with the value 32, the corresponding output should be 33.
# test dataloader
test_text = np.array(range(50))
t_loader = batch_data(test_text, sequence_length=5, batch_size=10)
data_iter = iter(t_loader)
sample_x, sample_y = data_iter.next()
print(sample_x.shape)
print(sample_x)
print()
print(sample_y.shape)
print(sample_y)
torch.Size([10, 5])
tensor([[ 0, 1, 2, 3, 4],
[ 1, 2, 3, 4, 5],
[ 2, 3, 4, 5, 6],
[ 3, 4, 5, 6, 7],
[ 4, 5, 6, 7, 8],
[ 5, 6, 7, 8, 9],
[ 6, 7, 8, 9, 10],
[ 7, 8, 9, 10, 11],
[ 8, 9, 10, 11, 12],
[ 9, 10, 11, 12, 13]])
torch.Size([10])
tensor([ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14])
Implement an RNN using PyTorch's Module class. You may choose to use a GRU or an LSTM. To complete the RNN, you'll have to implement the following functions for the class:
__init__ - The initialize function. init_hidden - The initialization function for an LSTM/GRU hidden stateforward - Forward propagation function.The initialize function should create the layers of the neural network and save them to the class. The forward propagation function will use these layers to run forward propagation and generate an output and a hidden state.
The output of this model should be the last batch of word scores after a complete sequence has been processed. That is, for each input sequence of words, we only want to output the word scores for a single, most likely, next word.
lstm_output = lstm_output.contiguous().view(-1, self.hidden_dim)# reshape into (batch_size, seq_length, output_size)
output = output.view(batch_size, -1, self.output_size)
# get last batch
out = output[:, -1]
import torch.nn as nn
class RNN(nn.Module):
def __init__(self, vocab_size, output_size, embedding_dim, hidden_dim, n_layers, dropout=0.5):
"""
Initialize the PyTorch RNN Module
:param vocab_size: The number of input dimensions of the neural network (the size of the vocabulary)
:param output_size: The number of output dimensions of the neural network
:param embedding_dim: The size of embeddings, should you choose to use them
:param hidden_dim: The size of the hidden layer outputs
:param dropout: dropout to add in between LSTM/GRU layers
"""
super(RNN, self).__init__()
# TODO: Implement function
# set class variables
self.output_size = output_size
self.n_layers = n_layers
self.hidden_dim = hidden_dim
# define model layers
self.embedding = nn.Embedding(vocab_size, embedding_dim)
self.lstm = nn.LSTM(embedding_dim, hidden_dim, n_layers, dropout=dropout, batch_first=True)
self.drop_out = nn.Dropout(dropout)
self.fc = nn.Linear(hidden_dim, output_size)
def forward(self, nn_input, hidden):
"""
Forward propagation of the neural network
:param nn_input: The input to the neural network
:param hidden: The hidden state
:return: Two Tensors, the output of the neural network and the latest hidden state
"""
# TODO: Implement function
batch_size = nn_input.size(0)
embeddings = self.embedding(nn_input)
lstm_out, hidden = self.lstm(embeddings, hidden)
lstm_out = self.drop_out(lstm_out)
lstm_out = lstm_out.contiguous().view(-1, self.hidden_dim)
out_put = self.fc(lstm_out)
out_put = out_put.view(batch_size, -1, self.output_size)
out = out_put[:, -1]
# return one batch of output word scores and the hidden state
return out, hidden
def init_hidden(self, batch_size):
'''
Initialize the hidden state of an LSTM/GRU
:param batch_size: The batch_size of the hidden state
:return: hidden state of dims (n_layers, batch_size, hidden_dim)
'''
# Implement function
weight = next(self.parameters()).data
if (train_on_gpu):
hidden = (weight.new(self.n_layers, batch_size, self.hidden_dim).zero_().cuda(),
weight.new(self.n_layers, batch_size, self.hidden_dim).zero_().cuda())
else:
hidden = (weight.new(self.n_layers, batch_size, self.hidden_dim).zero_(),
weight.new(self.n_layers, batch_size, self.hidden_dim).zero_())
# initialize hidden state with zero weights, and move to GPU if available
return hidden
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_rnn(RNN, train_on_gpu)
Tests Passed
Use the RNN class you implemented to apply forward and back propagation. This function will be called, iteratively, in the training loop as follows:
loss = forward_back_prop(decoder, decoder_optimizer, criterion, inp, target)
And it should return the average loss over a batch and the hidden state returned by a call to RNN(inp, hidden). Recall that you can get this loss by computing it, as usual, and calling loss.item().
If a GPU is available, you should move your data to that GPU device, here.
def forward_back_prop(rnn, optimizer, criterion, inp, target, hidden):
"""
Forward and backward propagation on the neural network
:param decoder: The PyTorch Module that holds the neural network
:param decoder_optimizer: The PyTorch optimizer for the neural network
:param criterion: The PyTorch loss function
:param inp: A batch of input to the neural network
:param target: The target output for the batch of input
:return: The loss and the latest hidden state Tensor
"""
# TODO: Implement Function
# move data to GPU, if available
if train_on_gpu:
inp, target = inp.cuda(), target.cuda()
if train_on_gpu:
rnn.cuda()
rnn.zero_grad()
optimizer.zero_grad()
h = tuple([each.data for each in hidden])
# perform backpropagation and optimization
output, h = rnn(inp, h)
loss = criterion(output, target)
loss.backward()
# for preventing the gradient to explode
nn.utils.clip_grad_norm_(rnn.parameters(), 5)
optimizer.step()
# return the loss over a batch and the hidden state produced by our model
return loss.item(), h
# Note that these tests aren't completely extensive.
# they are here to act as general checks on the expected outputs of your functions
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_forward_back_prop(RNN, forward_back_prop, train_on_gpu)
Tests Passed
With the structure of the network complete and data ready to be fed in the neural network, it's time to train it.
The training loop is implemented for you in the train_decoder function. This function will train the network over all the batches for the number of epochs given. The model progress will be shown every number of batches. This number is set with the show_every_n_batches parameter. You'll set this parameter along with other parameters in the next section.
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
def train_rnn(rnn, batch_size, optimizer, criterion, n_epochs, show_every_n_batches=100):
batch_losses = []
rnn.train()
print("Training for %d epoch(s)..." % n_epochs)
for epoch_i in range(1, n_epochs + 1):
# initialize hidden state
hidden = rnn.init_hidden(batch_size)
for batch_i, (inputs, labels) in enumerate(train_loader, 1):
# make sure you iterate over completely full batches, only
n_batches = len(train_loader.dataset)//batch_size
if(batch_i > n_batches):
break
# forward, back prop
loss, hidden = forward_back_prop(rnn, optimizer, criterion, inputs, labels, hidden)
# record loss
batch_losses.append(loss)
# printing loss stats
if batch_i % show_every_n_batches == 0:
print('Epoch: {:>4}/{:<4} Loss: {}\n'.format(
epoch_i, n_epochs, np.average(batch_losses)))
batch_losses = []
# returns a trained rnn
return rnn
Set and train the neural network with the following parameters:
sequence_length to the length of a sequence.batch_size to the batch size.num_epochs to the number of epochs to train for.learning_rate to the learning rate for an Adam optimizer.vocab_size to the number of unique tokens in our vocabulary.output_size to the desired size of the output.embedding_dim to the embedding dimension; smaller than the vocab_size.hidden_dim to the hidden dimension of your RNN.n_layers to the number of layers/cells in your RNN.show_every_n_batches to the number of batches at which the neural network should print progress.If the network isn't getting the desired results, tweak these parameters and/or the layers in the RNN class.
# Data params
# Sequence Length
sequence_length = 10 # of words in a sequence
# Batch Size
batch_size = 256
# data loader - do not change
train_loader = batch_data(int_text, sequence_length, batch_size)
# Training parameters
# Number of Epochs
num_epochs = 10
# Learning Rate
learning_rate = 0.001
# Model parameters
# Vocab size
vocab_size = len(vocab_to_int)
# Output size
output_size = vocab_size
# Embedding Dimension
embedding_dim = 200
# Hidden Dimension
hidden_dim = 250
# Number of RNN Layers
n_layers = 2
# Show stats for every n number of batches
show_every_n_batches = 500
In the next cell, you'll train the neural network on the pre-processed data. If you have a hard time getting a good loss, you may consider changing your hyperparameters. In general, you may get better results with larger hidden and n_layer dimensions, but larger models take a longer time to train.
You should aim for a loss less than 3.5.
You should also experiment with different sequence lengths, which determine the size of the long range dependencies that a model can learn.
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# create model and move to gpu if available
rnn = RNN(vocab_size, output_size, embedding_dim, hidden_dim, n_layers, dropout=0.5)
if train_on_gpu:
rnn.cuda()
# defining loss and optimization functions for training
optimizer = torch.optim.Adam(rnn.parameters(), lr=learning_rate)
criterion = nn.CrossEntropyLoss()
# training the model
trained_rnn = train_rnn(rnn, batch_size, optimizer, criterion, num_epochs, show_every_n_batches)
# saving the trained model
helper.save_model('./save/trained_rnn', trained_rnn)
print('Model Trained and Saved')
Training for 10 epoch(s)... Epoch: 1/10 Loss: 5.5466210660934445 Epoch: 1/10 Loss: 4.907189992427826 Epoch: 1/10 Loss: 4.864486871242523 Epoch: 1/10 Loss: 4.713021720409393 Epoch: 1/10 Loss: 4.575934238910675 Epoch: 1/10 Loss: 4.645398590564728 Epoch: 2/10 Loss: 4.487658332589927 Epoch: 2/10 Loss: 4.252240093231201 Epoch: 2/10 Loss: 4.347676033496857 Epoch: 2/10 Loss: 4.274826327323914 Epoch: 2/10 Loss: 4.202430927753449 Epoch: 2/10 Loss: 4.325082033157349 Epoch: 3/10 Loss: 4.252948926884912 Epoch: 3/10 Loss: 4.071051448345185 Epoch: 3/10 Loss: 4.181015891551971 Epoch: 3/10 Loss: 4.116242689609527 Epoch: 3/10 Loss: 4.058483323574066 Epoch: 3/10 Loss: 4.183144378185272 Epoch: 4/10 Loss: 4.124727958095159 Epoch: 4/10 Loss: 3.966634600162506 Epoch: 4/10 Loss: 4.074584602355957 Epoch: 4/10 Loss: 4.015072421550751 Epoch: 4/10 Loss: 3.9592075695991515 Epoch: 4/10 Loss: 4.093537744522095 Epoch: 5/10 Loss: 4.03599997260442 Epoch: 5/10 Loss: 3.890634309768677 Epoch: 5/10 Loss: 3.997675196170807 Epoch: 5/10 Loss: 3.936672339916229 Epoch: 5/10 Loss: 3.895179546833038 Epoch: 5/10 Loss: 4.024286964893341 Epoch: 6/10 Loss: 3.9734041312461224 Epoch: 6/10 Loss: 3.8313576827049256 Epoch: 6/10 Loss: 3.941313045501709 Epoch: 6/10 Loss: 3.884488133430481 Epoch: 6/10 Loss: 3.84108446264267 Epoch: 6/10 Loss: 3.971156609535217 Epoch: 7/10 Loss: 3.9235346249379557 Epoch: 7/10 Loss: 3.7900247869491577 Epoch: 7/10 Loss: 3.897031011581421 Epoch: 7/10 Loss: 3.841602207183838 Epoch: 7/10 Loss: 3.7976693196296694 Epoch: 7/10 Loss: 3.9298892860412598 Epoch: 8/10 Loss: 3.88287920457058 Epoch: 8/10 Loss: 3.7583983101844787 Epoch: 8/10 Loss: 3.8592551336288454 Epoch: 8/10 Loss: 3.806867070674896 Epoch: 8/10 Loss: 3.7613826241493227 Epoch: 8/10 Loss: 3.8954823451042175 Epoch: 9/10 Loss: 3.8518157866333413 Epoch: 9/10 Loss: 3.724332188129425 Epoch: 9/10 Loss: 3.8309415941238405 Epoch: 9/10 Loss: 3.7806283373832703 Epoch: 9/10 Loss: 3.733501836776733 Epoch: 9/10 Loss: 3.8661820163726808 Epoch: 10/10 Loss: 3.821965149921173 Epoch: 10/10 Loss: 3.6997196497917177 Epoch: 10/10 Loss: 3.7993313283920287 Epoch: 10/10 Loss: 3.7569337792396547 Epoch: 10/10 Loss: 3.7051474266052247 Epoch: 10/10 Loss: 3.8393751187324523
/home/saeed/.conda/envs/deep-learning/lib/python3.6/site-packages/torch/serialization.py:250: UserWarning: Couldn't retrieve source code for container of type RNN. It won't be checked for correctness upon loading. "type " + obj.__name__ + ". It won't be checked "
Model Trained and Saved
For example, did you try different sequence_lengths and find that one size made the model converge faster? What about your hidden_dim and n_layers; how did you decide on those?
Answer: (Write answer, here)
Regarding to the embedding dimension and hidden dimension, I considered the convetion and the numbers that are typically selected. Hidden dimensionality of 250 and embedding dimensionality of 200 would be a good choice. Then, I started the learning rate of 0.01 and the decrease of the error within 5 epochs. So changed it to 0.001 and it worked pretty well.
After running the above training cell, your model will be saved by name, trained_rnn, and if you save your notebook progress, you can pause here and come back to this code at another time. You can resume your progress by running the next cell, which will load in our word:id dictionaries and load in your saved model by name!
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import torch
import helper
import problem_unittests as tests
_, vocab_to_int, int_to_vocab, token_dict = helper.load_preprocess()
trained_rnn = helper.load_model('./save/trained_rnn')
With the network trained and saved, you'll use it to generate a new, "fake" Seinfeld TV script in this section.
To generate the text, the network needs to start with a single word and repeat its predictions until it reaches a set length. You'll be using the generate function to do this. It takes a word id to start with, prime_id, and generates a set length of text, predict_len. Also note that it uses topk sampling to introduce some randomness in choosing the most likely next word, given an output set of word scores!
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
import torch.nn.functional as F
def generate(rnn, prime_id, int_to_vocab, token_dict, pad_value, predict_len=100):
"""
Generate text using the neural network
:param decoder: The PyTorch Module that holds the trained neural network
:param prime_id: The word id to start the first prediction
:param int_to_vocab: Dict of word id keys to word values
:param token_dict: Dict of puncuation tokens keys to puncuation values
:param pad_value: The value used to pad a sequence
:param predict_len: The length of text to generate
:return: The generated text
"""
rnn.eval()
# create a sequence (batch_size=1) with the prime_id
current_seq = np.full((1, sequence_length), pad_value)
current_seq[-1][-1] = prime_id
predicted = [int_to_vocab[prime_id]]
for _ in range(predict_len):
if train_on_gpu:
current_seq = torch.LongTensor(current_seq).cuda()
else:
current_seq = torch.LongTensor(current_seq)
# initialize the hidden state
hidden = rnn.init_hidden(current_seq.size(0))
# get the output of the rnn
output, _ = rnn(current_seq, hidden)
# get the next word probabilities
p = F.softmax(output, dim=1).data
if(train_on_gpu):
p = p.cpu() # move to cpu
# use top_k sampling to get the index of the next word
top_k = 5
p, top_i = p.topk(top_k)
top_i = top_i.numpy().squeeze()
# select the likely next word index with some element of randomness
p = p.numpy().squeeze()
word_i = np.random.choice(top_i, p=p/p.sum())
# retrieve that word from the dictionary
word = int_to_vocab[word_i]
predicted.append(word)
# the generated word becomes the next "current sequence" and the cycle can continue
# current_seq = np.roll(current_seq, -1, 1)
current_seq = np.roll(current_seq.cpu(), -1, 1)
current_seq[-1][-1] = word_i
gen_sentences = ' '.join(predicted)
# Replace punctuation tokens
for key, token in token_dict.items():
ending = ' ' if key in ['\n', '(', '"'] else ''
gen_sentences = gen_sentences.replace(' ' + token.lower(), key)
gen_sentences = gen_sentences.replace('\n ', '\n')
gen_sentences = gen_sentences.replace('( ', '(')
# return all the sentences
return gen_sentences
It's time to generate the text. Set gen_length to the length of TV script you want to generate and set prime_word to one of the following to start the prediction:
You can set the prime word to any word in our dictionary, but it's best to start with a name for generating a TV script. (You can also start with any other names you find in the original text file!)
# run the cell multiple times to get different results!
gen_length = 500 # modify the length to your preference
prime_word = 'george' # name for starting the script
"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
pad_word = helper.SPECIAL_WORDS['PADDING']
generated_script = generate(trained_rnn, vocab_to_int[prime_word + ':'], int_to_vocab, token_dict, vocab_to_int[pad_word], gen_length)
print(generated_script)
george: i have no idea. elaine: oh! i got the car. elaine:(to kramer) hey, hey, hey. jerry:(to jerry) you know what? i think i could get a lot of money. george: you have to go out to the hospital. i mean, i don't know what you do. elaine: what do i do? george: oh, no. you want to see me? george:(getting up to leave) yeah, i know. hoyt:(to the door) hey, i got to get a little bit of it. jerry: you know what the hell are you doing? george: i can't believe i have a little. george:(leaving) well, it's the only guy that was the only one that i was. elaine: well, i know what i was. george:(to the phone) hey, hey, you know what? george: well... jerry: you know what, you think i was going to be the same thing? elaine: i can't believe i can go to work. george: you know, i don't know, it's not like that. i got a lot. jerry: i know. i don't think so, i don't know what we do. elaine: i thought you should be able to go. i mean, you know, i was a little bit of the whole thing. kramer: yeah, yeah. jerry: what? kramer: no, i think it's not a big lot of things. elaine: yeah. elaine:(trying to go to the airport) hey, hey. hey, hey, hey, hey, george!(jerry leaves) george: you have to go. jerry: you don't think you can get the same? hoyt: i know, but, i'm going to go to a lot of coffee. elaine:(to elaine) oh! jerry: i can't believe you were going to get it in a few years, i don't know how the whole thing is the best. jerry: oh.. hoyt: you want to be a good guy. jerry: i don't want to see that. kramer: oh! george: you know what, i think i could have had to get the money in there. george: well, you know, i was thinking about
Once you have a script that you like (or find interesting), save it to a text file!
# save script to a text file
f = open("generated_script_1.txt","w")
f.write(generated_script)
f.close()
It's ok if the TV script doesn't make perfect sense. It should look like alternating lines of dialogue, here is one such example of a few generated lines.
jerry: what about me?
jerry: i don't have to wait.
kramer:(to the sales table)
elaine:(to jerry) hey, look at this, i'm a good doctor.
newman:(to elaine) you think i have no idea of this...
elaine: oh, you better take the phone, and he was a little nervous.
kramer:(to the phone) hey, hey, jerry, i don't want to be a little bit.(to kramer and jerry) you can't.
jerry: oh, yeah. i don't even know, i know.
jerry:(to the phone) oh, i know.
kramer:(laughing) you know...(to jerry) you don't know.
You can see that there are multiple characters that say (somewhat) complete sentences, but it doesn't have to be perfect! It takes quite a while to get good results, and often, you'll have to use a smaller vocabulary (and discard uncommon words), or get more data. The Seinfeld dataset is about 3.4 MB, which is big enough for our purposes; for script generation you'll want more than 1 MB of text, generally.
When submitting this project, make sure to run all the cells before saving the notebook. Save the notebook file as "dlnd_tv_script_generation.ipynb" and save another copy as an HTML file by clicking "File" -> "Download as.."->"html". Include the "helper.py" and "problem_unittests.py" files in your submission. Once you download these files, compress them into one zip file for submission.